diff --git a/.gitattributes b/.gitattributes index 8e948c5..e743365 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1 +1,7 @@ * text=auto !eol +copy_this/core/d3geoip.php -text +copy_this/modules/d3_geoip/views/d3_oxcmp_cur_geoip.php -text +copy_this/modules/d3_geoip/views/d3_oxcmp_lang_geoip.php -text +setup+doku/install.sql -text +setup+doku/install.txt -text +setup+doku/licence.txt -text diff --git a/copy_this/core/d3geoip.php b/copy_this/core/d3geoip.php new file mode 100644 index 0000000..525418f --- /dev/null +++ b/copy_this/core/d3geoip.php @@ -0,0 +1,107 @@ +init('d3geoip'); + } + + public function getUserLocationCountryObject() + { + + if (!$this->oCountry) + { + $sIP = $_SERVER['REMOTE_ADDR']; + + /* + $sIP = '62.4.77.32'; + $sIP = '62.4.77.48'; + $sIP = '41.188.100.127'; + */ + + $iIPNum = $this->_getNumIp($sIP); + $sISOAlpha = $this->LoadByIPNum($iIPNum); + $this->oCountry = $this->getCountryObject($sISOAlpha); + } + + return $this->oCountry; + } + + protected function _getNumIp($sIP) + { + $aIP = explode('.',$sIP); + $iIP = ($aIP[0] * 16777216) + ($aIP[1] * 65536) + ($aIP[2] * 256) + ($aIP[3] * 1); + return $iIP; + } + + public function LoadByIPNum($iIPNum) + { + $sSelect = "SELECT d3iso FROM ".$this->_sClassName." WHERE d3startipnum <= '$iIPNum' AND d3endipnum >= '$iIPNum'"; + return oxDb::getDb()->getOne($sSelect); + } + + public function getCountryObject($sISOAlpha) + { + $oCountry = &oxNew('oxcountry'); + $sSelect = "SELECT oxid FROM ".$oCountry->getViewName()." WHERE OXISOALPHA2 = '".$sISOAlpha."'"; + $oCountry->load(oxDb::getDb()->getOne($sSelect)); + + return $oCountry; + } + + public function setUserCountry() + { + if (!$this->getUser()) { + $oCountry = $this->getUserLocationCountryObject(); + $oUser = &oxNew('oxuser'); + $oUser->oxuser__oxcountryid = oxNew('oxfield'); + $oUser->oxuser__oxcountryid->setValue($oCountry->getId()); + $this->setUser($oUser); + } + + return; + } + + public function setCountryLanguage() + { + $oCountry = $this->getUserLocationCountryObject(); + $aCountryLangs = $this->getConfig()->getConfigParam('aCountryLangs'); + + if (!$this->getSession()->getVar('d3isSetLang') && $aCountryLangs && $oCountry->getFieldData('oxisoalpha2') && isset($aCountryLangs[$oCountry->getFieldData('oxisoalpha2')])) + { + $iNewLanguage = $aCountryLangs[$oCountry->getFieldData('oxisoalpha2')]; + oxLang::getInstance()->setTplLanguage((int) $iNewLanguage); + oxLang::getInstance()->setBaseLanguage((int) $iNewLanguage); + $this->getSession()->setVar('d3isSetLang', true); + } + + } + + public function setCountryCurrency() + { + $oCountry = $this->getUserLocationCountryObject(); + $aCountryCurrs = $this->getConfig()->getConfigParam('aCountryCurrs'); + + if (!$this->getSession()->getVar('d3isSetCurr') && $aCountryCurrs && $oCountry->getFieldData('oxisoalpha2') && isset($aCountryCurrs[$oCountry->getFieldData('oxisoalpha2')])) + { + $iNewCurrency = $aCountryCurrs[$oCountry->getFieldData('oxisoalpha2')]; + $this->getConfig()->setActShopCurrency((int) $iNewCurrency ); + $this->getSession()->setVar('d3isSetCurr', true); + } + + } +} \ No newline at end of file diff --git a/copy_this/modules/d3_geoip/views/d3_oxcmp_cur_geoip.php b/copy_this/modules/d3_geoip/views/d3_oxcmp_cur_geoip.php new file mode 100644 index 0000000..cbc4890 --- /dev/null +++ b/copy_this/modules/d3_geoip/views/d3_oxcmp_cur_geoip.php @@ -0,0 +1,16 @@ +setUserCountry(); + $oLocation->setCountryCurrency(); + + return parent::init(); + } + +} \ No newline at end of file diff --git a/copy_this/modules/d3_geoip/views/d3_oxcmp_lang_geoip.php b/copy_this/modules/d3_geoip/views/d3_oxcmp_lang_geoip.php new file mode 100644 index 0000000..d8453b4 --- /dev/null +++ b/copy_this/modules/d3_geoip/views/d3_oxcmp_lang_geoip.php @@ -0,0 +1,13 @@ +setUserCountry(); + $oLocation->setCountryLanguage(); + + return parent::init(); + } +} \ No newline at end of file diff --git a/setup+doku/install.sql b/setup+doku/install.sql new file mode 100644 index 0000000..6d8dddd --- /dev/null +++ b/setup+doku/install.sql @@ -0,0 +1,107579 @@ +CREATE TABLE IF NOT EXISTS `d3geoip` ( + `D3STARTIP` char(15) NOT NULL, + `D3ENDIP` char(15) NOT NULL, + `D3STARTIPNUM` int(10) NOT NULL, + `D3ENDIPNUM` int(10) NOT NULL, + `D3ISO` char(2) NOT NULL, + `D3COUNTRYNAME` varchar(50) NOT NULL +) TYPE=MyISAM COMMENT='GeoIP'; + +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('2.6.190.56', '2.6.190.63', 33996344, 33996351, 'GB', 'United Kingdom'), +('3.0.0.0', '4.17.135.31', 50331648, 68257567, 'US', 'United States'), +('4.17.135.32', '4.17.135.63', 68257568, 68257599, 'CA', 'Canada'), +('4.17.135.64', '4.17.142.255', 68257600, 68259583, 'US', 'United States'), +('4.17.143.0', '4.17.143.15', 68259584, 68259599, 'CA', 'Canada'), +('4.17.143.16', '4.18.32.71', 68259600, 68296775, 'US', 'United States'), +('4.18.32.72', '4.18.32.79', 68296776, 68296783, 'MX', 'Mexico'), +('4.18.32.80', '4.18.40.135', 68296784, 68298887, 'US', 'United States'), +('4.18.40.136', '4.18.40.143', 68298888, 68298895, 'CA', 'Canada'), +('4.18.40.144', '4.18.65.255', 68298896, 68305407, 'US', 'United States'), +('4.18.66.0', '4.18.67.255', 68305408, 68305919, 'MX', 'Mexico'), +('4.18.68.0', '4.18.100.31', 68305920, 68314143, 'US', 'United States'), +('4.18.100.32', '4.18.100.39', 68314144, 68314151, 'CA', 'Canada'), +('4.18.100.40', '4.19.162.143', 68314152, 68395663, 'US', 'United States'), +('4.19.162.144', '4.19.162.151', 68395664, 68395671, 'CA', 'Canada'), +('4.19.162.152', '4.20.73.15', 68395672, 68438287, 'US', 'United States'), +('4.20.73.16', '4.20.73.31', 68438288, 68438303, 'CA', 'Canada'), +('4.20.73.32', '4.23.128.183', 68438304, 68649143, 'US', 'United States'), +('4.23.128.184', '4.23.128.191', 68649144, 68649151, 'CA', 'Canada'), +('4.23.128.192', '4.37.0.255', 68649152, 69533951, 'US', 'United States'), +('4.37.1.0', '4.37.1.255', 69533952, 69534207, 'CA', 'Canada'), +('4.37.2.0', '4.42.209.231', 69534208, 69915111, 'US', 'United States'), +('4.42.209.232', '4.42.209.239', 69915112, 69915119, 'CA', 'Canada'), +('4.42.209.240', '4.43.114.7', 69915120, 69956103, 'US', 'United States'), +('4.43.114.8', '4.43.114.15', 69956104, 69956111, 'BM', 'Bermuda'), +('4.43.114.16', '4.79.65.159', 69956112, 72303007, 'US', 'United States'), +('4.79.65.160', '4.79.65.191', 72303008, 72303039, 'CA', 'Canada'), +('4.79.65.192', '4.79.244.223', 72303040, 72348895, 'US', 'United States'), +('4.79.244.224', '4.79.244.255', 72348896, 72348927, 'CA', 'Canada'), +('4.79.245.0', '4.255.255.255', 72348928, 83886079, 'US', 'United States'), +('5.163.66.80', '5.163.66.95', 94585424, 94585439, 'SE', 'Sweden'), +('6.0.0.0', '7.57.75.31', 100663296, 121195295, 'US', 'United States'), +('7.57.75.32', '7.57.75.63', 121195296, 121195327, 'IT', 'Italy'), +('7.57.75.64', '8.7.64.255', 121195328, 134693119, 'US', 'United States'), +('8.7.65.0', '8.7.65.255', 134693120, 134693375, 'CA', 'Canada'), +('8.7.66.0', '8.7.209.255', 134693376, 134730239, 'US', 'United States'), +('8.7.210.0', '8.7.210.255', 134730240, 134730495, 'CA', 'Canada'), +('8.7.211.0', '8.14.223.255', 134730496, 135192575, 'US', 'United States'), +('8.14.224.0', '8.14.255.255', 135192576, 135200767, 'MX', 'Mexico'), +('8.15.0.0', '9.19.255.255', 135200768, 152305663, 'US', 'United States'), +('9.20.0.0', '9.20.127.255', 152305664, 152338431, 'GB', 'United Kingdom'), +('9.20.128.0', '9.255.255.255', 152338432, 167772159, 'US', 'United States'), +('11.0.0.0', '12.1.52.63', 184549376, 201405503, 'US', 'United States'), +('12.1.52.64', '12.1.52.71', 201405504, 201405511, 'PR', 'Puerto Rico'), +('12.1.52.72', '12.4.123.79', 201405512, 201620303, 'US', 'United States'), +('12.4.123.80', '12.4.123.87', 201620304, 201620311, 'CA', 'Canada'), +('12.4.123.88', '12.5.77.111', 201620312, 201674095, 'US', 'United States'), +('12.5.77.112', '12.5.77.127', 201674096, 201674111, 'CA', 'Canada'), +('12.5.77.128', '12.6.100.255', 201674112, 201745663, 'US', 'United States'), +('12.6.101.0', '12.6.101.7', 201745664, 201745671, 'PR', 'Puerto Rico'), +('12.6.101.8', '12.8.31.255', 201745672, 201859071, 'US', 'United States'), +('12.8.32.0', '12.8.32.15', 201859072, 201859087, 'VI', 'Virgin Islands, U.S.'), +('12.8.32.16', '12.8.183.255', 201859088, 201897983, 'US', 'United States'), +('12.8.184.0', '12.8.184.255', 201897984, 201898239, 'PR', 'Puerto Rico'), +('12.8.185.0', '12.14.128.135', 201898240, 202276999, 'US', 'United States'), +('12.14.128.136', '12.14.128.151', 202277000, 202277015, 'PR', 'Puerto Rico'), +('12.14.128.152', '12.16.39.255', 202277016, 202385407, 'US', 'United States'), +('12.16.40.0', '12.16.41.255', 202385408, 202385919, 'PR', 'Puerto Rico'), +('12.16.42.0', '12.18.45.223', 202385920, 202517983, 'US', 'United States'), +('12.18.45.224', '12.18.45.231', 202517984, 202517991, 'PR', 'Puerto Rico'), +('12.18.45.232', '12.21.13.255', 202517992, 202706431, 'US', 'United States'), +('12.21.14.0', '12.21.15.255', 202706432, 202706943, 'PR', 'Puerto Rico'), +('12.21.16.0', '12.21.40.255', 202706944, 202713343, 'US', 'United States'), +('12.21.41.0', '12.21.41.7', 202713344, 202713351, 'PR', 'Puerto Rico'), +('12.21.41.8', '12.21.179.63', 202713352, 202748735, 'US', 'United States'), +('12.21.179.64', '12.21.179.71', 202748736, 202748743, 'PR', 'Puerto Rico'), +('12.21.179.72', '12.22.57.183', 202748744, 202783159, 'US', 'United States'), +('12.22.57.184', '12.22.57.191', 202783160, 202783167, 'PR', 'Puerto Rico'), +('12.22.57.192', '12.24.137.143', 202783168, 202934671, 'US', 'United States'), +('12.24.137.144', '12.24.137.159', 202934672, 202934687, 'VI', 'Virgin Islands, U.S.'), +('12.24.137.160', '12.24.140.255', 202934688, 202935551, 'US', 'United States'), +('12.24.141.0', '12.24.141.255', 202935552, 202935807, 'PR', 'Puerto Rico'), +('12.24.142.0', '12.24.152.111', 202935808, 202938479, 'US', 'United States'), +('12.24.152.112', '12.24.152.127', 202938480, 202938495, 'VI', 'Virgin Islands, U.S.'), +('12.24.152.128', '12.24.236.207', 202938496, 202960079, 'US', 'United States'), +('12.24.236.208', '12.24.236.223', 202960080, 202960095, 'PR', 'Puerto Rico'), +('12.24.236.224', '12.25.129.47', 202960096, 202998063, 'US', 'United States'), +('12.25.129.48', '12.25.129.55', 202998064, 202998071, 'PR', 'Puerto Rico'), +('12.25.129.56', '12.28.138.135', 202998072, 203197063, 'US', 'United States'), +('12.28.138.136', '12.28.138.143', 203197064, 203197071, 'CA', 'Canada'), +('12.28.138.144', '12.31.210.119', 203197072, 203412087, 'US', 'United States'), +('12.31.210.120', '12.31.210.127', 203412088, 203412095, 'PR', 'Puerto Rico'), +('12.31.210.128', '12.33.42.87', 203412096, 203500119, 'US', 'United States'), +('12.33.42.88', '12.33.42.95', 203500120, 203500127, 'PR', 'Puerto Rico'), +('12.33.42.96', '12.35.134.79', 203500128, 203654735, 'US', 'United States'), +('12.35.134.80', '12.35.134.95', 203654736, 203654751, 'PR', 'Puerto Rico'), +('12.35.134.96', '12.35.148.31', 203654752, 203658271, 'US', 'United States'), +('12.35.148.32', '12.35.148.47', 203658272, 203658287, 'PR', 'Puerto Rico'), +('12.35.148.48', '12.35.148.63', 203658288, 203658303, 'VI', 'Virgin Islands, U.S.'), +('12.35.148.64', '12.35.148.143', 203658304, 203658383, 'PR', 'Puerto Rico'), +('12.35.148.144', '12.35.148.159', 203658384, 203658399, 'US', 'United States'), +('12.35.148.160', '12.35.148.175', 203658400, 203658415, 'PR', 'Puerto Rico'), +('12.35.148.176', '12.35.148.183', 203658416, 203658423, 'VI', 'Virgin Islands, U.S.'), +('12.35.148.184', '12.35.148.239', 203658424, 203658479, 'US', 'United States'), +('12.35.148.240', '12.35.149.255', 203658480, 203658751, 'PR', 'Puerto Rico'), +('12.35.150.0', '12.35.150.79', 203658752, 203658831, 'VI', 'Virgin Islands, U.S.'), +('12.35.150.80', '12.35.150.95', 203658832, 203658847, 'US', 'United States'), +('12.35.150.96', '12.35.150.159', 203658848, 203658911, 'PR', 'Puerto Rico'), +('12.35.150.160', '12.35.150.175', 203658912, 203658927, 'VI', 'Virgin Islands, U.S.'), +('12.35.150.176', '12.35.150.199', 203658928, 203658951, 'PR', 'Puerto Rico'), +('12.35.150.200', '12.35.150.215', 203658952, 203658967, 'US', 'United States'), +('12.35.150.216', '12.35.150.239', 203658968, 203658991, 'VI', 'Virgin Islands, U.S.'), +('12.35.150.240', '12.35.150.255', 203658992, 203659007, 'PR', 'Puerto Rico'), +('12.35.151.0', '12.35.151.31', 203659008, 203659039, 'US', 'United States'), +('12.35.151.32', '12.35.151.87', 203659040, 203659095, 'VI', 'Virgin Islands, U.S.'), +('12.35.151.88', '12.35.151.95', 203659096, 203659103, 'US', 'United States'), +('12.35.151.96', '12.35.151.255', 203659104, 203659263, 'PR', 'Puerto Rico'), +('12.35.152.0', '12.36.41.103', 203659264, 203696487, 'US', 'United States'), +('12.36.41.104', '12.36.41.111', 203696488, 203696495, 'PR', 'Puerto Rico'), +('12.36.41.112', '12.36.241.239', 203696496, 203747823, 'US', 'United States'), +('12.36.241.240', '12.36.241.247', 203747824, 203747831, 'PR', 'Puerto Rico'), +('12.36.241.248', '12.37.188.55', 203747832, 203799607, 'US', 'United States'), +('12.37.188.56', '12.37.188.63', 203799608, 203799615, 'PR', 'Puerto Rico'), +('12.37.188.64', '12.37.209.159', 203799616, 203805087, 'US', 'United States'), +('12.37.209.160', '12.37.209.167', 203805088, 203805095, 'PR', 'Puerto Rico'), +('12.37.209.168', '12.38.131.183', 203805096, 203850679, 'US', 'United States'), +('12.38.131.184', '12.38.131.191', 203850680, 203850687, 'CA', 'Canada'), +('12.38.131.192', '12.41.127.255', 203850688, 204046335, 'US', 'United States'), +('12.41.128.0', '12.41.130.255', 204046336, 204047103, 'PR', 'Puerto Rico'), +('12.41.131.0', '12.41.131.15', 204047104, 204047119, 'VI', 'Virgin Islands, U.S.'), +('12.41.131.16', '12.41.131.127', 204047120, 204047231, 'PR', 'Puerto Rico'), +('12.41.131.128', '12.41.131.143', 204047232, 204047247, 'VI', 'Virgin Islands, U.S.'), +('12.41.131.144', '12.41.131.151', 204047248, 204047255, 'US', 'United States'), +('12.41.131.152', '12.41.131.159', 204047256, 204047263, 'PR', 'Puerto Rico'), +('12.41.131.160', '12.41.131.175', 204047264, 204047279, 'US', 'United States'), +('12.41.131.176', '12.41.131.199', 204047280, 204047303, 'VI', 'Virgin Islands, U.S.'), +('12.41.131.200', '12.41.131.207', 204047304, 204047311, 'PR', 'Puerto Rico'), +('12.41.131.208', '12.41.131.231', 204047312, 204047335, 'VI', 'Virgin Islands, U.S.'), +('12.41.131.232', '12.41.131.255', 204047336, 204047359, 'US', 'United States'), +('12.41.132.0', '12.41.132.15', 204047360, 204047375, 'PR', 'Puerto Rico'), +('12.41.132.16', '12.41.132.31', 204047376, 204047391, 'US', 'United States'), +('12.41.132.32', '12.41.132.63', 204047392, 204047423, 'PR', 'Puerto Rico'), +('12.41.132.64', '12.41.132.71', 204047424, 204047431, 'US', 'United States'), +('12.41.132.72', '12.41.132.95', 204047432, 204047455, 'VI', 'Virgin Islands, U.S.'), +('12.41.132.96', '12.41.132.103', 204047456, 204047463, 'PR', 'Puerto Rico'), +('12.41.132.104', '12.41.132.119', 204047464, 204047479, 'VI', 'Virgin Islands, U.S.'), +('12.41.132.120', '12.41.132.143', 204047480, 204047503, 'PR', 'Puerto Rico'), +('12.41.132.144', '12.41.132.175', 204047504, 204047535, 'VI', 'Virgin Islands, U.S.'), +('12.41.132.176', '12.41.132.191', 204047536, 204047551, 'PR', 'Puerto Rico'), +('12.41.132.192', '12.41.132.199', 204047552, 204047559, 'VI', 'Virgin Islands, U.S.'), +('12.41.132.200', '12.41.132.207', 204047560, 204047567, 'PR', 'Puerto Rico'), +('12.41.132.208', '12.41.132.223', 204047568, 204047583, 'VI', 'Virgin Islands, U.S.'), +('12.41.132.224', '12.41.134.127', 204047584, 204047999, 'PR', 'Puerto Rico'), +('12.41.134.128', '12.41.134.135', 204048000, 204048007, 'VI', 'Virgin Islands, U.S.'), +('12.41.134.136', '12.41.134.143', 204048008, 204048015, 'US', 'United States'), +('12.41.134.144', '12.41.134.159', 204048016, 204048031, 'VI', 'Virgin Islands, U.S.'), +('12.41.134.160', '12.41.134.191', 204048032, 204048063, 'PR', 'Puerto Rico'), +('12.41.134.192', '12.41.134.255', 204048064, 204048127, 'VI', 'Virgin Islands, U.S.'), +('12.41.135.0', '12.41.135.255', 204048128, 204048383, 'PR', 'Puerto Rico'), +('12.41.136.0', '12.42.39.239', 204048384, 204089327, 'US', 'United States'), +('12.42.39.240', '12.42.39.247', 204089328, 204089335, 'PR', 'Puerto Rico'), +('12.42.39.248', '12.43.31.255', 204089336, 204152831, 'US', 'United States'), +('12.43.32.0', '12.43.35.255', 204152832, 204153855, 'PR', 'Puerto Rico'), +('12.43.36.0', '12.47.12.87', 204153856, 204409943, 'US', 'United States'), +('12.47.12.88', '12.47.12.95', 204409944, 204409951, 'PR', 'Puerto Rico'), +('12.47.12.96', '12.47.144.55', 204409952, 204443703, 'US', 'United States'), +('12.47.144.56', '12.47.144.63', 204443704, 204443711, 'PR', 'Puerto Rico'), +('12.47.144.64', '12.47.144.87', 204443712, 204443735, 'US', 'United States'), +('12.47.144.88', '12.47.144.95', 204443736, 204443743, 'PR', 'Puerto Rico'), +('12.47.144.96', '12.63.178.59', 204443744, 205500987, 'US', 'United States'), +('12.63.178.60', '12.63.178.63', 205500988, 205500991, 'CA', 'Canada'), +('12.63.178.64', '12.106.65.79', 205500992, 208290127, 'US', 'United States'), +('12.106.65.80', '12.106.65.87', 208290128, 208290135, 'PR', 'Puerto Rico'), +('12.106.65.88', '12.109.8.111', 208290136, 208472175, 'US', 'United States'), +('12.109.8.112', '12.109.8.119', 208472176, 208472183, 'PR', 'Puerto Rico'), +('12.109.8.120', '12.129.72.31', 208472184, 209799199, 'US', 'United States'), +('12.129.72.32', '12.129.72.39', 209799200, 209799207, 'GB', 'United Kingdom'), +('12.129.72.40', '12.129.251.151', 209799208, 209845143, 'US', 'United States'), +('12.129.251.152', '12.129.251.159', 209845144, 209845151, 'DE', 'Germany'), +('12.129.251.160', '12.130.33.15', 209845152, 209854735, 'US', 'United States'), +('12.130.33.16', '12.130.33.23', 209854736, 209854743, 'SE', 'Sweden'), +('12.130.33.24', '12.130.81.95', 209854744, 209867103, 'US', 'United States'), +('12.130.81.96', '12.130.81.103', 209867104, 209867111, 'CA', 'Canada'), +('12.130.81.104', '12.130.87.255', 209867112, 209868799, 'US', 'United States'), +('12.130.88.0', '12.130.88.255', 209868800, 209869055, 'IR', 'Iran, Islamic Republic of'), +('12.130.89.0', '12.144.79.255', 209869056, 210784255, 'US', 'United States'), +('12.144.80.0', '12.144.80.127', 210784256, 210784383, 'BO', 'Bolivia'), +('12.144.80.128', '12.144.81.255', 210784384, 210784767, 'US', 'United States'), +('12.144.82.0', '12.144.87.255', 210784768, 210786303, 'BO', 'Bolivia'), +('12.144.88.0', '12.147.40.223', 210786304, 210970847, 'US', 'United States'), +('12.147.40.224', '12.147.40.231', 210970848, 210970855, 'PR', 'Puerto Rico'), +('12.147.40.232', '12.148.98.191', 210970856, 211051199, 'US', 'United States'), +('12.148.98.192', '12.148.98.199', 211051200, 211051207, 'PR', 'Puerto Rico'), +('12.148.98.200', '12.149.137.255', 211051208, 211126783, 'US', 'United States'), +('12.149.138.0', '12.149.138.127', 211126784, 211126911, 'PR', 'Puerto Rico'), +('12.149.138.128', '12.149.149.7', 211126912, 211129607, 'US', 'United States'), +('12.149.149.8', '12.149.149.15', 211129608, 211129615, 'PR', 'Puerto Rico'), +('12.149.149.16', '12.152.99.239', 211129616, 211313647, 'US', 'United States'), +('12.152.99.240', '12.152.99.247', 211313648, 211313655, 'PR', 'Puerto Rico'), +('12.152.99.248', '12.153.39.167', 211313656, 211363751, 'US', 'United States'), +('12.153.39.168', '12.153.39.175', 211363752, 211363759, 'PR', 'Puerto Rico'), +('12.153.39.176', '12.153.58.207', 211363760, 211368655, 'US', 'United States'), +('12.153.58.208', '12.153.58.215', 211368656, 211368663, 'PR', 'Puerto Rico'), +('12.153.58.216', '12.153.195.7', 211368664, 211403527, 'US', 'United States'), +('12.153.195.8', '12.153.195.15', 211403528, 211403535, 'MS', 'Montserrat'), +('12.153.195.16', '12.155.201.239', 211403536, 211536367, 'US', 'United States'), +('12.155.201.240', '12.155.201.247', 211536368, 211536375, 'PR', 'Puerto Rico'), +('12.155.201.248', '12.156.177.55', 211536376, 211595575, 'US', 'United States'), +('12.156.177.56', '12.156.177.63', 211595576, 211595583, 'VI', 'Virgin Islands, U.S.'), +('12.156.177.64', '12.156.177.95', 211595584, 211595615, 'US', 'United States'), +('12.156.177.96', '12.156.177.103', 211595616, 211595623, 'VI', 'Virgin Islands, U.S.'), +('12.156.177.104', '12.156.177.119', 211595624, 211595639, 'PR', 'Puerto Rico'), +('12.156.177.120', '12.156.182.15', 211595640, 211596815, 'US', 'United States'), +('12.156.182.16', '12.156.182.31', 211596816, 211596831, 'VI', 'Virgin Islands, U.S.'), +('12.156.182.32', '12.156.182.255', 211596832, 211597055, 'US', 'United States'), +('12.156.183.0', '12.156.183.15', 211597056, 211597071, 'VI', 'Virgin Islands, U.S.'), +('12.156.183.16', '12.156.184.63', 211597072, 211597375, 'US', 'United States'), +('12.156.184.64', '12.156.184.191', 211597376, 211597503, 'VI', 'Virgin Islands, U.S.'), +('12.156.184.192', '12.156.185.159', 211597504, 211597727, 'US', 'United States'), +('12.156.185.160', '12.156.185.175', 211597728, 211597743, 'PR', 'Puerto Rico'), +('12.156.185.176', '12.156.185.191', 211597744, 211597759, 'US', 'United States'), +('12.156.185.192', '12.156.185.207', 211597760, 211597775, 'PR', 'Puerto Rico'), +('12.156.185.208', '12.156.185.223', 211597776, 211597791, 'VI', 'Virgin Islands, U.S.'), +('12.156.185.224', '12.156.188.63', 211597792, 211598399, 'US', 'United States'), +('12.156.188.64', '12.156.188.127', 211598400, 211598463, 'VI', 'Virgin Islands, U.S.'), +('12.156.188.128', '12.156.189.31', 211598464, 211598623, 'US', 'United States'), +('12.156.189.32', '12.156.189.39', 211598624, 211598631, 'VI', 'Virgin Islands, U.S.'), +('12.156.189.40', '12.156.189.47', 211598632, 211598639, 'US', 'United States'), +('12.156.189.48', '12.156.189.127', 211598640, 211598719, 'VI', 'Virgin Islands, U.S.'), +('12.156.189.128', '12.158.15.31', 211598720, 211685151, 'US', 'United States'), +('12.158.15.32', '12.158.15.39', 211685152, 211685159, 'PR', 'Puerto Rico'), +('12.158.15.40', '12.158.226.39', 211685160, 211739175, 'US', 'United States'), +('12.158.226.40', '12.158.226.47', 211739176, 211739183, 'PR', 'Puerto Rico'), +('12.158.226.48', '12.159.5.111', 211739184, 211748207, 'US', 'United States'), +('12.159.5.112', '12.159.5.127', 211748208, 211748223, 'PR', 'Puerto Rico'), +('12.159.5.128', '12.159.182.15', 211748224, 211793423, 'US', 'United States'), +('12.159.182.16', '12.159.182.23', 211793424, 211793431, 'PR', 'Puerto Rico'), +('12.159.182.24', '12.160.14.151', 211793432, 211816087, 'US', 'United States'), +('12.160.14.152', '12.160.14.159', 211816088, 211816095, 'PR', 'Puerto Rico'), +('12.160.14.160', '12.162.38.135', 211816096, 211953287, 'US', 'United States'), +('12.162.38.136', '12.162.38.143', 211953288, 211953295, 'PR', 'Puerto Rico'), +('12.162.38.144', '12.164.129.55', 211953296, 212107575, 'US', 'United States'), +('12.164.129.56', '12.164.129.63', 212107576, 212107583, 'PR', 'Puerto Rico'), +('12.164.129.64', '12.169.60.255', 212107584, 212417791, 'US', 'United States'), +('12.169.61.0', '12.169.61.7', 212417792, 212417799, 'PR', 'Puerto Rico'), +('12.169.61.8', '12.170.193.79', 212417800, 212517199, 'US', 'United States'), +('12.170.193.80', '12.170.193.95', 212517200, 212517215, 'VI', 'Virgin Islands, U.S.'), +('12.170.193.96', '12.170.207.111', 212517216, 212520815, 'US', 'United States'), +('12.170.207.112', '12.170.207.127', 212520816, 212520831, 'VI', 'Virgin Islands, U.S.'), +('12.170.207.128', '12.174.223.255', 212520832, 212787199, 'US', 'United States'), +('12.174.224.0', '12.174.227.255', 212787200, 212788223, 'PR', 'Puerto Rico'), +('12.174.228.0', '12.174.228.255', 212788224, 212788479, 'US', 'United States'), +('12.174.229.0', '12.174.229.127', 212788480, 212788607, 'VI', 'Virgin Islands, U.S.'), +('12.174.229.128', '12.174.229.167', 212788608, 212788647, 'US', 'United States'), +('12.174.229.168', '12.174.229.183', 212788648, 212788663, 'PR', 'Puerto Rico'), +('12.174.229.184', '12.174.229.191', 212788664, 212788671, 'US', 'United States'), +('12.174.229.192', '12.174.230.63', 212788672, 212788799, 'PR', 'Puerto Rico'), +('12.174.230.64', '12.174.230.79', 212788800, 212788815, 'US', 'United States'), +('12.174.230.80', '12.174.230.87', 212788816, 212788823, 'PR', 'Puerto Rico'), +('12.174.230.88', '12.174.230.127', 212788824, 212788863, 'US', 'United States'), +('12.174.230.128', '12.174.231.15', 212788864, 212789007, 'PR', 'Puerto Rico'), +('12.174.231.16', '12.174.231.47', 212789008, 212789039, 'US', 'United States'), +('12.174.231.48', '12.174.231.63', 212789040, 212789055, 'VI', 'Virgin Islands, U.S.'), +('12.174.231.64', '12.174.231.71', 212789056, 212789063, 'PR', 'Puerto Rico'), +('12.174.231.72', '12.174.231.87', 212789064, 212789079, 'VI', 'Virgin Islands, U.S.'), +('12.174.231.88', '12.174.231.95', 212789080, 212789087, 'US', 'United States'), +('12.174.231.96', '12.174.231.103', 212789088, 212789095, 'VI', 'Virgin Islands, U.S.'), +('12.174.231.104', '12.174.231.119', 212789096, 212789111, 'US', 'United States'), +('12.174.231.120', '12.174.231.127', 212789112, 212789119, 'PR', 'Puerto Rico'), +('12.174.231.128', '12.174.231.135', 212789120, 212789127, 'VI', 'Virgin Islands, U.S.'), +('12.174.231.136', '12.174.231.143', 212789128, 212789135, 'US', 'United States'), +('12.174.231.144', '12.174.231.151', 212789136, 212789143, 'PR', 'Puerto Rico'), +('12.174.231.152', '12.174.231.159', 212789144, 212789151, 'US', 'United States'), +('12.174.231.160', '12.174.231.167', 212789152, 212789159, 'PR', 'Puerto Rico'), +('12.174.231.168', '12.174.231.175', 212789160, 212789167, 'US', 'United States'), +('12.174.231.176', '12.174.231.199', 212789168, 212789191, 'PR', 'Puerto Rico'), +('12.174.231.200', '12.174.231.207', 212789192, 212789199, 'US', 'United States'), +('12.174.231.208', '12.174.231.223', 212789200, 212789215, 'VI', 'Virgin Islands, U.S.'), +('12.174.231.224', '12.174.231.239', 212789216, 212789231, 'US', 'United States'), +('12.174.231.240', '12.174.231.255', 212789232, 212789247, 'VI', 'Virgin Islands, U.S.'), +('12.174.232.0', '12.174.239.255', 212789248, 212791295, 'US', 'United States'), +('12.174.240.0', '12.174.240.127', 212791296, 212791423, 'VI', 'Virgin Islands, U.S.'), +('12.174.240.128', '12.174.240.135', 212791424, 212791431, 'PR', 'Puerto Rico'), +('12.174.240.136', '12.174.240.151', 212791432, 212791447, 'VI', 'Virgin Islands, U.S.'), +('12.174.240.152', '12.174.240.159', 212791448, 212791455, 'US', 'United States'), +('12.174.240.160', '12.174.241.255', 212791456, 212791807, 'PR', 'Puerto Rico'), +('12.174.242.0', '12.174.242.7', 212791808, 212791815, 'US', 'United States'), +('12.174.242.8', '12.174.242.31', 212791816, 212791839, 'VI', 'Virgin Islands, U.S.'), +('12.174.242.32', '12.174.242.255', 212791840, 212792063, 'US', 'United States'), +('12.174.243.0', '12.174.243.127', 212792064, 212792191, 'VI', 'Virgin Islands, U.S.'), +('12.174.243.128', '12.174.243.199', 212792192, 212792263, 'PR', 'Puerto Rico'), +('12.174.243.200', '12.174.243.207', 212792264, 212792271, 'US', 'United States'), +('12.174.243.208', '12.174.243.215', 212792272, 212792279, 'PR', 'Puerto Rico'), +('12.174.243.216', '12.174.243.223', 212792280, 212792287, 'US', 'United States'), +('12.174.243.224', '12.174.243.255', 212792288, 212792319, 'PR', 'Puerto Rico'), +('12.174.244.0', '12.174.246.255', 212792320, 212793087, 'US', 'United States'), +('12.174.247.0', '12.174.247.63', 212793088, 212793151, 'VI', 'Virgin Islands, U.S.'), +('12.174.247.64', '12.174.247.111', 212793152, 212793199, 'US', 'United States'), +('12.174.247.112', '12.174.247.119', 212793200, 212793207, 'VI', 'Virgin Islands, U.S.'), +('12.174.247.120', '12.174.247.127', 212793208, 212793215, 'PR', 'Puerto Rico'), +('12.174.247.128', '12.174.247.255', 212793216, 212793343, 'US', 'United States'), +('12.174.248.0', '12.174.251.255', 212793344, 212794367, 'VI', 'Virgin Islands, U.S.'), +('12.174.252.0', '12.174.252.191', 212794368, 212794559, 'PR', 'Puerto Rico'), +('12.174.252.192', '12.174.252.231', 212794560, 212794599, 'US', 'United States'), +('12.174.252.232', '12.174.253.159', 212794600, 212794783, 'PR', 'Puerto Rico'), +('12.174.253.160', '12.174.253.167', 212794784, 212794791, 'VI', 'Virgin Islands, U.S.'), +('12.174.253.168', '12.174.253.175', 212794792, 212794799, 'US', 'United States'), +('12.174.253.176', '12.174.253.207', 212794800, 212794831, 'VI', 'Virgin Islands, U.S.'), +('12.174.253.208', '12.174.253.255', 212794832, 212794879, 'US', 'United States'), +('12.174.254.0', '12.174.254.7', 212794880, 212794887, 'VI', 'Virgin Islands, U.S.'), +('12.174.254.8', '12.174.254.31', 212794888, 212794911, 'US', 'United States'), +('12.174.254.32', '12.174.254.63', 212794912, 212794943, 'VI', 'Virgin Islands, U.S.'), +('12.174.254.64', '12.174.254.79', 212794944, 212794959, 'US', 'United States'), +('12.174.254.80', '12.174.254.103', 212794960, 212794983, 'VI', 'Virgin Islands, U.S.'), +('12.174.254.104', '12.174.254.111', 212794984, 212794991, 'US', 'United States'), +('12.174.254.112', '12.174.254.127', 212794992, 212795007, 'VI', 'Virgin Islands, U.S.'), +('12.174.254.128', '12.174.254.255', 212795008, 212795135, 'PR', 'Puerto Rico'), +('12.174.255.0', '12.177.111.47', 212795136, 212954927, 'US', 'United States'), +('12.177.111.48', '12.177.111.55', 212954928, 212954935, 'PR', 'Puerto Rico'), +('12.177.111.56', '12.177.111.207', 212954936, 212955087, 'US', 'United States'), +('12.177.111.208', '12.177.111.215', 212955088, 212955095, 'PR', 'Puerto Rico'), +('12.177.111.216', '12.179.166.151', 212955096, 213100183, 'US', 'United States'), +('12.179.166.152', '12.179.166.159', 213100184, 213100191, 'PR', 'Puerto Rico'), +('12.179.166.160', '12.180.47.247', 213100192, 213135351, 'US', 'United States'), +('12.180.47.248', '12.180.47.255', 213135352, 213135359, 'PR', 'Puerto Rico'), +('12.180.48.0', '12.182.55.207', 213135360, 213268431, 'US', 'United States'), +('12.182.55.208', '12.182.55.215', 213268432, 213268439, 'PR', 'Puerto Rico'), +('12.182.55.216', '12.189.15.167', 213268440, 213716903, 'US', 'United States'), +('12.189.15.168', '12.189.15.175', 213716904, 213716911, 'CA', 'Canada'), +('12.189.15.176', '12.190.5.135', 213716912, 213779847, 'US', 'United States'), +('12.190.5.136', '12.190.5.143', 213779848, 213779855, 'PR', 'Puerto Rico'), +('12.190.5.144', '12.190.120.7', 213779856, 213809159, 'US', 'United States'), +('12.190.120.8', '12.190.120.15', 213809160, 213809167, 'PR', 'Puerto Rico'), +('12.190.120.16', '12.191.201.255', 213809168, 213895679, 'US', 'United States'), +('12.191.202.0', '12.191.202.63', 213895680, 213895743, 'VI', 'Virgin Islands, U.S.'), +('12.191.202.64', '12.191.206.95', 213895744, 213896799, 'US', 'United States'), +('12.191.206.96', '12.191.206.127', 213896800, 213896831, 'VI', 'Virgin Islands, U.S.'), +('12.191.206.128', '12.192.55.255', 213896832, 213923839, 'US', 'United States'), +('12.192.56.0', '12.192.59.255', 213923840, 213924863, 'PR', 'Puerto Rico'), +('12.192.60.0', '12.192.60.143', 213924864, 213925007, 'US', 'United States'), +('12.192.60.144', '12.192.60.159', 213925008, 213925023, 'PR', 'Puerto Rico'), +('12.192.60.160', '12.192.60.191', 213925024, 213925055, 'VI', 'Virgin Islands, U.S.'), +('12.192.60.192', '12.192.62.255', 213925056, 213925631, 'US', 'United States'), +('12.192.63.0', '12.192.63.255', 213925632, 213925887, 'PR', 'Puerto Rico'), +('12.192.64.0', '12.196.51.255', 213925888, 214184959, 'US', 'United States'), +('12.196.52.0', '12.196.52.191', 214184960, 214185151, 'PR', 'Puerto Rico'), +('12.196.52.192', '12.196.52.223', 214185152, 214185183, 'VI', 'Virgin Islands, U.S.'), +('12.196.52.224', '12.196.52.239', 214185184, 214185199, 'US', 'United States'), +('12.196.52.240', '12.196.53.255', 214185200, 214185471, 'PR', 'Puerto Rico'), +('12.196.54.0', '12.196.55.255', 214185472, 214185983, 'US', 'United States'), +('12.196.56.0', '12.196.59.255', 214185984, 214187007, 'PR', 'Puerto Rico'), +('12.196.60.0', '12.196.62.255', 214187008, 214187775, 'VI', 'Virgin Islands, U.S.'), +('12.196.63.0', '12.196.63.31', 214187776, 214187807, 'US', 'United States'), +('12.196.63.32', '12.196.63.39', 214187808, 214187815, 'PR', 'Puerto Rico'), +('12.196.63.40', '12.196.63.47', 214187816, 214187823, 'US', 'United States'), +('12.196.63.48', '12.196.63.55', 214187824, 214187831, 'PR', 'Puerto Rico'), +('12.196.63.56', '12.196.63.111', 214187832, 214187887, 'US', 'United States'), +('12.196.63.112', '12.196.63.119', 214187888, 214187895, 'PR', 'Puerto Rico'), +('12.196.63.120', '12.196.63.255', 214187896, 214188031, 'VI', 'Virgin Islands, U.S.'), +('12.196.64.0', '12.197.0.63', 214188032, 214237247, 'US', 'United States'), +('12.197.0.64', '12.197.0.127', 214237248, 214237311, 'PR', 'Puerto Rico'), +('12.197.0.128', '12.197.47.255', 214237312, 214249471, 'US', 'United States'), +('12.197.48.0', '12.197.63.255', 214249472, 214253567, 'VI', 'Virgin Islands, U.S.'), +('12.197.64.0', '12.204.7.255', 214253568, 214697983, 'US', 'United States'), +('12.204.8.0', '12.204.8.23', 214697984, 214698007, 'VI', 'Virgin Islands, U.S.'), +('12.204.8.24', '12.204.8.31', 214698008, 214698015, 'PR', 'Puerto Rico'), +('12.204.8.32', '12.204.8.39', 214698016, 214698023, 'US', 'United States'), +('12.204.8.40', '12.204.8.47', 214698024, 214698031, 'PR', 'Puerto Rico'), +('12.204.8.48', '12.204.8.111', 214698032, 214698095, 'VI', 'Virgin Islands, U.S.'), +('12.204.8.112', '12.204.8.119', 214698096, 214698103, 'US', 'United States'), +('12.204.8.120', '12.204.8.151', 214698104, 214698135, 'VI', 'Virgin Islands, U.S.'), +('12.204.8.152', '12.204.8.159', 214698136, 214698143, 'PR', 'Puerto Rico'), +('12.204.8.160', '12.204.8.175', 214698144, 214698159, 'VI', 'Virgin Islands, U.S.'), +('12.204.8.176', '12.204.8.183', 214698160, 214698167, 'PR', 'Puerto Rico'), +('12.204.8.184', '12.204.8.191', 214698168, 214698175, 'VI', 'Virgin Islands, U.S.'), +('12.204.8.192', '12.204.8.255', 214698176, 214698239, 'PR', 'Puerto Rico'), +('12.204.9.0', '12.204.9.79', 214698240, 214698319, 'VI', 'Virgin Islands, U.S.'), +('12.204.9.80', '12.204.9.127', 214698320, 214698367, 'PR', 'Puerto Rico'), +('12.204.9.128', '12.204.9.135', 214698368, 214698375, 'VI', 'Virgin Islands, U.S.'), +('12.204.9.136', '12.204.9.143', 214698376, 214698383, 'US', 'United States'), +('12.204.9.144', '12.204.10.143', 214698384, 214698639, 'PR', 'Puerto Rico'), +('12.204.10.144', '12.206.123.159', 214698640, 214858655, 'US', 'United States'), +('12.206.123.160', '12.206.123.175', 214858656, 214858671, 'NL', 'Netherlands'), +('12.206.123.176', '12.230.69.127', 214858672, 216417663, 'US', 'United States'), +('12.230.69.128', '12.230.69.191', 216417664, 216417727, 'PR', 'Puerto Rico'), +('12.230.69.192', '12.233.160.199', 216417728, 216637639, 'US', 'United States'), +('12.233.160.200', '12.233.160.207', 216637640, 216637647, 'PR', 'Puerto Rico'), +('12.233.160.208', '13.255.255.255', 216637648, 234881023, 'US', 'United States'), +('15.0.0.0', '17.57.247.79', 251658240, 289011535, 'US', 'United States'), +('17.57.247.80', '17.57.247.87', 289011536, 289011543, 'IT', 'Italy'), +('17.57.247.88', '19.68.79.119', 289011544, 323243895, 'US', 'United States'), +('19.68.79.120', '19.68.79.127', 323243896, 323243903, 'FR', 'France'), +('19.68.79.128', '19.203.239.23', 323243904, 332132119, 'US', 'United States'), +('19.203.239.24', '19.203.239.31', 332132120, 332132127, 'IL', 'Israel'), +('19.203.239.32', '21.56.9.31', 332132128, 355993887, 'US', 'United States'), +('21.56.9.32', '21.56.9.39', 355993888, 355993895, 'IT', 'Italy'), +('21.56.9.40', '21.249.132.255', 355993896, 368674047, 'US', 'United States'), +('21.249.133.0', '21.249.133.255', 368674048, 368674303, 'ES', 'Spain'), +('21.249.134.0', '22.255.255.255', 368674304, 385875967, 'US', 'United States'), +('23.0.0.0', '23.127.255.255', 385875968, 394264575, 'GB', 'United Kingdom'), +('24.0.0.0', '24.35.255.255', 402653184, 405012479, 'US', 'United States'), +('24.36.0.0', '24.37.255.255', 405012480, 405143551, 'CA', 'Canada'), +('24.38.144.0', '24.38.159.255', 405180416, 405184511, 'CA', 'Canada'), +('24.38.160.0', '24.41.255.255', 405184512, 405405695, 'US', 'United States'), +('24.42.0.0', '24.42.63.255', 405405696, 405422079, 'PR', 'Puerto Rico'), +('24.42.64.0', '24.47.255.255', 405422080, 405798911, 'US', 'United States'), +('24.48.128.0', '24.48.191.255', 405831680, 405848063, 'US', 'United States'), +('24.49.64.0', '24.49.191.255', 405880832, 405913599, 'US', 'United States'), +('24.49.224.0', '24.49.255.255', 405921792, 405929983, 'CA', 'Canada'), +('24.50.0.0', '24.52.255.255', 405929984, 406126591, 'US', 'United States'), +('24.53.64.0', '24.53.79.255', 406142976, 406147071, 'US', 'United States'), +('24.53.128.0', '24.53.191.255', 406159360, 406175743, 'US', 'United States'), +('24.53.224.0', '24.53.239.255', 406183936, 406188031, 'CA', 'Canada'), +('24.54.96.0', '24.54.191.255', 406216704, 406241279, 'US', 'United States'), +('24.54.192.0', '24.55.255.255', 406241280, 406323199, 'PR', 'Puerto Rico'), +('24.56.0.0', '24.56.255.255', 406323200, 406388735, 'US', 'United States'), +('24.57.0.0', '24.57.255.255', 406388736, 406454271, 'CA', 'Canada'), +('24.58.0.0', '24.63.255.255', 406454272, 406847487, 'US', 'United States'), +('24.64.0.0', '24.72.143.255', 406847488, 407408639, 'CA', 'Canada'), +('24.72.144.0', '24.75.255.255', 407408640, 407633919, 'US', 'United States'), +('24.76.0.0', '24.87.255.255', 407633920, 408420351, 'CA', 'Canada'), +('24.88.0.0', '24.89.63.255', 408420352, 408502271, 'US', 'United States'), +('24.89.64.0', '24.89.127.255', 408502272, 408518655, 'CA', 'Canada'), +('24.89.128.0', '24.89.191.255', 408518656, 408535039, 'US', 'United States'), +('24.89.192.0', '24.89.255.255', 408535040, 408551423, 'CA', 'Canada'), +('24.90.0.0', '24.101.255.255', 408551424, 409337855, 'US', 'United States'), +('24.102.0.0', '24.102.63.255', 409337856, 409354239, 'CA', 'Canada'), +('24.102.128.0', '24.107.255.255', 409370624, 409731071, 'US', 'United States'), +('24.108.0.0', '24.109.255.255', 409731072, 409862143, 'CA', 'Canada'), +('24.110.0.0', '24.113.255.255', 409862144, 410124287, 'US', 'United States'), +('24.114.0.0', '24.114.245.39', 410124288, 410187047, 'CA', 'Canada'), +('24.114.245.40', '24.114.245.47', 410187048, 410187055, 'US', 'United States'), +('24.114.245.48', '24.114.245.167', 410187056, 410187175, 'CA', 'Canada'), +('24.114.245.168', '24.114.245.175', 410187176, 410187183, 'US', 'United States'), +('24.114.245.176', '24.114.255.255', 410187184, 410189823, 'CA', 'Canada'), +('24.115.0.0', '24.121.255.255', 410189824, 410648575, 'US', 'United States'), +('24.122.0.0', '24.122.255.255', 410648576, 410714111, 'CA', 'Canada'), +('24.123.0.0', '24.129.223.255', 410714112, 411164671, 'US', 'United States'), +('24.129.224.0', '24.129.239.255', 411164672, 411168767, 'CA', 'Canada'), +('24.130.0.0', '24.131.255.255', 411172864, 411303935, 'US', 'United States'), +('24.132.0.0', '24.132.255.255', 411303936, 411369471, 'NL', 'Netherlands'), +('24.136.0.0', '24.137.31.255', 411566080, 411639807, 'US', 'United States'), +('24.137.32.0', '24.137.47.255', 411639808, 411643903, 'CA', 'Canada'), +('24.137.64.0', '24.137.127.255', 411648000, 411664383, 'CA', 'Canada'), +('24.137.128.0', '24.137.191.255', 411664384, 411680767, 'US', 'United States'), +('24.137.192.0', '24.137.223.255', 411680768, 411688959, 'CA', 'Canada'), +('24.138.0.0', '24.138.191.255', 411697152, 411746303, 'CA', 'Canada'), +('24.138.192.0', '24.138.255.255', 411746304, 411762687, 'PR', 'Puerto Rico'), +('24.139.0.0', '24.139.31.255', 411762688, 411770879, 'CA', 'Canada'), +('24.139.32.0', '24.139.63.255', 411770880, 411779071, 'US', 'United States'), +('24.139.64.0', '24.139.255.255', 411779072, 411828223, 'PR', 'Puerto Rico'), +('24.140.0.0', '24.140.255.255', 411828224, 411893759, 'US', 'United States'), +('24.141.0.0', '24.141.255.255', 411893760, 411959295, 'CA', 'Canada'), +('24.142.96.0', '24.142.127.255', 411983872, 411992063, 'A2', 'Satellite Provider'), +('24.143.0.0', '24.145.255.255', 412024832, 412221439, 'US', 'United States'), +('24.146.0.0', '24.146.31.255', 412221440, 412229631, 'CA', 'Canada'), +('24.147.0.0', '24.149.255.255', 412286976, 412483583, 'US', 'United States'), +('24.150.0.0', '24.150.255.255', 412483584, 412549119, 'CA', 'Canada'), +('24.151.0.0', '24.151.255.255', 412549120, 412614655, 'US', 'United States'), +('24.152.0.0', '24.152.127.255', 412614656, 412647423, 'CL', 'Chile'), +('24.152.128.0', '24.152.255.255', 412647424, 412680191, 'US', 'United States'), +('24.153.0.0', '24.153.31.255', 412680192, 412688383, 'CA', 'Canada'), +('24.153.64.0', '24.156.127.255', 412696576, 412909567, 'US', 'United States'), +('24.156.128.0', '24.156.159.255', 412909568, 412917759, 'CA', 'Canada'), +('24.157.0.0', '24.157.15.255', 412942336, 412946431, 'US', 'United States'), +('24.158.0.0', '24.171.191.255', 413007872, 413908991, 'US', 'United States'), +('24.171.192.0', '24.171.255.255', 413908992, 413925375, 'PR', 'Puerto Rico'), +('24.172.0.0', '24.199.255.255', 413925376, 415760383, 'US', 'United States'), +('24.200.0.0', '24.203.255.255', 415760384, 416022527, 'CA', 'Canada'), +('24.204.0.0', '24.206.255.255', 416022528, 416219135, 'US', 'United States'), +('24.207.0.0', '24.207.127.255', 416219136, 416251903, 'CA', 'Canada'), +('24.207.128.0', '24.211.255.255', 416251904, 416546815, 'US', 'United States'), +('24.212.0.0', '24.212.127.255', 416546816, 416579583, 'CA', 'Canada'), +('24.213.0.0', '24.213.63.255', 416612352, 416628735, 'US', 'United States'), +('24.213.64.0', '24.213.95.255', 416628736, 416636927, 'CA', 'Canada'), +('24.213.96.0', '24.213.111.255', 416636928, 416641023, 'US', 'United States'), +('24.213.128.0', '24.214.255.255', 416645120, 416743423, 'US', 'United States'), +('24.215.0.0', '24.215.127.255', 416743424, 416776191, 'CA', 'Canada'), +('24.215.128.0', '24.221.255.255', 416776192, 417202175, 'US', 'United States'), +('24.222.0.0', '24.222.255.255', 417202176, 417267711, 'CA', 'Canada'), +('24.223.0.0', '24.224.127.255', 417267712, 417366015, 'US', 'United States'), +('24.224.128.0', '24.224.255.255', 417366016, 417398783, 'CA', 'Canada'), +('24.225.0.0', '24.225.255.255', 417398784, 417464319, 'US', 'United States'), +('24.226.0.0', '24.226.255.255', 417464320, 417529855, 'CA', 'Canada'), +('24.227.0.0', '24.230.191.255', 417529856, 417775615, 'US', 'United States'), +('24.230.192.0', '24.231.15.255', 417775616, 417796095, 'CA', 'Canada'), +('24.231.16.0', '24.231.31.255', 417796096, 417800191, 'US', 'United States'), +('24.231.32.0', '24.231.63.255', 417800192, 417808383, 'BS', 'Bahamas'), +('24.231.64.0', '24.231.127.255', 417808384, 417824767, 'CA', 'Canada'), +('24.231.128.0', '24.231.255.255', 417824768, 417857535, 'US', 'United States'), +('24.232.0.0', '24.232.255.255', 417857536, 417923071, 'AR', 'Argentina'), +('24.233.0.0', '24.235.31.255', 417923072, 418062335, 'US', 'United States'), +('24.235.32.0', '24.235.63.255', 418062336, 418070527, 'CA', 'Canada'), +('24.235.64.0', '24.235.79.255', 418070528, 418074623, 'US', 'United States'), +('24.235.96.0', '24.235.255.255', 418078720, 418119679, 'CA', 'Canada'), +('24.236.0.0', '24.238.255.255', 418119680, 418316287, 'US', 'United States'), +('24.239.0.0', '24.239.15.255', 418316288, 418320383, 'CA', 'Canada'), +('24.239.32.0', '24.243.255.255', 418324480, 418643967, 'US', 'United States'), +('24.244.0.0', '24.244.127.255', 418643968, 418676735, 'CA', 'Canada'), +('24.244.128.0', '24.244.170.255', 418676736, 418687743, 'BS', 'Bahamas'), +('24.244.171.0', '24.244.171.254', 418687744, 418687998, 'DM', 'Dominica'), +('24.244.171.255', '24.244.191.255', 418687999, 418693119, 'BS', 'Bahamas'), +('24.244.192.0', '24.244.255.255', 418693120, 418709503, 'CA', 'Canada'), +('24.245.0.0', '24.245.223.255', 418709504, 418766847, 'US', 'United States'), +('24.245.224.0', '24.245.239.255', 418766848, 418770943, 'CA', 'Canada'), +('24.246.0.0', '24.255.255.255', 418775040, 419430399, 'US', 'United States'), +('25.0.0.0', '25.255.255.255', 419430400, 436207615, 'GB', 'United Kingdom'), +('26.0.0.0', '26.255.255.255', 436207616, 452984831, 'US', 'United States'), +('28.0.0.0', '32.58.34.191', 469762048, 540680895, 'US', 'United States'), +('32.58.34.192', '32.58.34.255', 540680896, 540680959, 'BE', 'Belgium'), +('32.58.35.0', '32.58.45.255', 540680960, 540683775, 'US', 'United States'), +('32.58.46.0', '32.58.46.7', 540683776, 540683783, 'DE', 'Germany'), +('32.58.46.8', '32.58.52.255', 540683784, 540685567, 'US', 'United States'), +('32.58.53.0', '32.58.53.63', 540685568, 540685631, 'FR', 'France'), +('32.58.53.64', '32.58.56.255', 540685632, 540686591, 'US', 'United States'), +('32.58.57.0', '32.58.57.7', 540686592, 540686599, 'GB', 'United Kingdom'), +('32.58.57.8', '32.58.57.255', 540686600, 540686847, 'US', 'United States'), +('32.58.58.0', '32.58.58.15', 540686848, 540686863, 'GB', 'United Kingdom'), +('32.58.58.16', '32.58.58.255', 540686864, 540687103, 'US', 'United States'), +('32.58.59.0', '32.58.59.7', 540687104, 540687111, 'GB', 'United Kingdom'), +('32.58.59.8', '32.58.59.127', 540687112, 540687231, 'US', 'United States'), +('32.58.59.128', '32.58.59.255', 540687232, 540687359, 'CA', 'Canada'), +('32.58.60.0', '32.58.87.255', 540687360, 540694527, 'US', 'United States'), +('32.58.88.0', '32.58.88.63', 540694528, 540694591, 'IT', 'Italy'), +('32.58.88.64', '32.58.128.255', 540694592, 540705023, 'US', 'United States'), +('32.58.129.0', '32.58.129.7', 540705024, 540705031, 'IE', 'Ireland'), +('32.58.129.8', '32.58.130.255', 540705032, 540705535, 'US', 'United States'), +('32.58.131.0', '32.58.131.63', 540705536, 540705599, 'IE', 'Ireland'), +('32.58.131.64', '32.58.155.255', 540705600, 540711935, 'US', 'United States'), +('32.58.156.0', '32.58.157.255', 540711936, 540712447, 'NL', 'Netherlands'), +('32.58.158.0', '32.58.255.255', 540712448, 540737535, 'US', 'United States'), +('32.59.0.0', '32.59.0.255', 540737536, 540737791, 'BZ', 'Belize'), +('32.59.1.0', '32.59.1.127', 540737792, 540737919, 'BR', 'Brazil'), +('32.59.1.128', '32.59.49.95', 540737920, 540750175, 'BZ', 'Belize'), +('32.59.49.96', '32.59.49.127', 540750176, 540750207, 'MX', 'Mexico'), +('32.59.49.128', '32.59.49.159', 540750208, 540750239, 'BZ', 'Belize'), +('32.59.49.160', '32.59.49.175', 540750240, 540750255, 'MX', 'Mexico'), +('32.59.49.176', '32.59.255.255', 540750256, 540803071, 'BZ', 'Belize'), +('32.60.0.0', '32.60.34.15', 540803072, 540811791, 'US', 'United States'), +('32.60.34.16', '32.60.34.23', 540811792, 540811799, 'JP', 'Japan'), +('32.60.34.24', '32.60.34.95', 540811800, 540811871, 'US', 'United States'), +('32.60.34.96', '32.60.34.127', 540811872, 540811903, 'GB', 'United Kingdom'), +('32.60.34.128', '32.60.34.159', 540811904, 540811935, 'US', 'United States'), +('32.60.34.160', '32.60.34.191', 540811936, 540811967, 'DE', 'Germany'), +('32.60.34.192', '32.60.34.207', 540811968, 540811983, 'JP', 'Japan'), +('32.60.34.208', '32.60.34.215', 540811984, 540811991, 'US', 'United States'), +('32.60.34.216', '32.60.34.223', 540811992, 540811999, 'DE', 'Germany'), +('32.60.34.224', '32.60.36.15', 540812000, 540812303, 'US', 'United States'), +('32.60.36.16', '32.60.36.31', 540812304, 540812319, 'DE', 'Germany'), +('32.60.36.32', '32.60.63.255', 540812320, 540819455, 'US', 'United States'), +('32.60.64.0', '32.60.79.255', 540819456, 540823551, 'CA', 'Canada'), +('32.60.80.0', '32.60.92.47', 540823552, 540826671, 'US', 'United States'), +('32.60.92.48', '32.60.92.63', 540826672, 540826687, 'CA', 'Canada'), +('32.60.92.64', '32.60.93.255', 540826688, 540827135, 'US', 'United States'), +('32.60.94.0', '32.60.94.127', 540827136, 540827263, 'CA', 'Canada'), +('32.60.94.128', '32.60.94.159', 540827264, 540827295, 'US', 'United States'), +('32.60.94.160', '32.60.94.175', 540827296, 540827311, 'CA', 'Canada'), +('32.60.94.176', '32.60.94.223', 540827312, 540827359, 'US', 'United States'), +('32.60.94.224', '32.60.94.239', 540827360, 540827375, 'CA', 'Canada'), +('32.60.94.240', '32.60.94.255', 540827376, 540827391, 'US', 'United States'), +('32.60.95.0', '32.60.95.31', 540827392, 540827423, 'CA', 'Canada'), +('32.60.95.32', '32.60.95.79', 540827424, 540827471, 'US', 'United States'), +('32.60.95.80', '32.60.95.95', 540827472, 540827487, 'CA', 'Canada'), +('32.60.95.96', '32.60.95.127', 540827488, 540827519, 'US', 'United States'), +('32.60.95.128', '32.60.95.159', 540827520, 540827551, 'CA', 'Canada'), +('32.60.95.160', '32.60.95.191', 540827552, 540827583, 'US', 'United States'), +('32.60.95.192', '32.60.95.255', 540827584, 540827647, 'CA', 'Canada'), +('32.60.96.0', '32.60.103.255', 540827648, 540829695, 'US', 'United States'), +('32.60.104.0', '32.60.104.255', 540829696, 540829951, 'CA', 'Canada'), +('32.60.105.0', '32.60.107.47', 540829952, 540830511, 'US', 'United States'), +('32.60.107.48', '32.60.107.63', 540830512, 540830527, 'CA', 'Canada'), +('32.60.107.64', '32.60.107.95', 540830528, 540830559, 'US', 'United States'), +('32.60.107.96', '32.60.107.111', 540830560, 540830575, 'CA', 'Canada'), +('32.60.107.112', '32.60.107.159', 540830576, 540830623, 'US', 'United States'), +('32.60.107.160', '32.60.108.15', 540830624, 540830735, 'CA', 'Canada'), +('32.60.108.16', '32.60.108.95', 540830736, 540830815, 'US', 'United States'), +('32.60.108.96', '32.60.108.111', 540830816, 540830831, 'CA', 'Canada'), +('32.60.108.112', '32.60.108.127', 540830832, 540830847, 'US', 'United States'), +('32.60.108.128', '32.60.108.175', 540830848, 540830895, 'CA', 'Canada'), +('32.60.108.176', '32.104.15.255', 540830896, 543690751, 'US', 'United States'), +('32.104.16.0', '32.104.16.255', 543690752, 543691007, 'AR', 'Argentina'), +('32.104.17.0', '32.106.103.255', 543691008, 543844351, 'US', 'United States'), +('32.106.104.0', '32.106.104.255', 543844352, 543844607, 'CH', 'Switzerland'), +('32.106.105.0', '35.255.255.255', 543844608, 603979775, 'US', 'United States'), +('38.0.0.0', '38.255.255.255', 637534208, 654311423, 'US', 'United States'), +('40.0.0.0', '40.255.255.255', 671088640, 687865855, 'US', 'United States'), +('41.0.0.0', '41.31.255.255', 687865856, 689963007, 'ZA', 'South Africa'), +('41.96.0.0', '41.111.255.255', 694157312, 695205887, 'DZ', 'Algeria'), +('41.112.0.0', '41.127.255.255', 695205888, 696254463, 'ZA', 'South Africa'), +('41.128.0.0', '41.131.255.255', 696254464, 696516607, 'EG', 'Egypt'), +('41.136.0.0', '41.136.255.255', 696778752, 696844287, 'MU', 'Mauritius'), +('41.138.0.0', '41.138.31.255', 696909824, 696918015, 'UG', 'Uganda'), +('41.138.240.0', '41.138.255.255', 696971264, 696975359, 'KE', 'Kenya'), +('41.139.128.0', '41.139.255.255', 697008128, 697040895, 'KE', 'Kenya'), +('41.140.0.0', '41.143.255.255', 697040896, 697303039, 'MA', 'Morocco'), +('41.144.0.0', '41.151.255.255', 697303040, 697827327, 'ZA', 'South Africa'), +('41.152.0.0', '41.153.255.255', 697827328, 697958399, 'EG', 'Egypt'), +('41.154.0.0', '41.154.255.255', 697958400, 698023935, 'ZA', 'South Africa'), +('41.155.0.0', '41.155.127.255', 698023936, 698056703, 'NG', 'Nigeria'), +('41.155.128.0', '41.155.255.255', 698056704, 698089471, 'EG', 'Egypt'), +('41.156.0.0', '41.157.255.255', 698089472, 698220543, 'ZA', 'South Africa'), +('41.158.0.0', '41.159.255.255', 698220544, 698351615, 'GA', 'Gabon'), +('41.160.0.0', '41.175.255.255', 698351616, 699400191, 'ZA', 'South Africa'), +('41.176.0.0', '41.176.255.255', 699400192, 699465727, 'EG', 'Egypt'), +('41.177.0.0', '41.177.255.255', 699465728, 699531263, 'ZA', 'South Africa'), +('41.178.0.0', '41.179.255.255', 699531264, 699662335, 'EG', 'Egypt'), +('41.180.0.0', '41.181.255.255', 699662336, 699793407, 'ZA', 'South Africa'), +('41.182.0.0', '41.182.255.255', 699793408, 699858943, 'NA', 'Namibia'), +('41.183.0.0', '41.183.255.255', 699858944, 699924479, 'ZA', 'South Africa'), +('41.184.0.0', '41.184.255.255', 699924480, 699990015, 'NG', 'Nigeria'), +('41.185.0.0', '41.185.255.255', 699990016, 700055551, 'ZA', 'South Africa'), +('41.186.0.0', '41.186.255.255', 700055552, 700121087, 'RW', 'Rwanda'), +('41.187.0.0', '41.187.255.255', 700121088, 700186623, 'EG', 'Egypt'), +('41.188.0.0', '41.188.63.255', 700186624, 700203007, 'MG', 'Madagascar'), +('41.188.64.0', '41.188.127.255', 700203008, 700219391, 'MR', 'Mauritania'), +('41.188.128.0', '41.188.191.255', 700219392, 700235775, 'TZ', 'Tanzania, United Republic of'), +('41.188.192.0', '41.188.255.255', 700235776, 700252159, 'ZA', 'South Africa'), +('41.189.0.0', '41.189.31.255', 700252160, 700260351, 'NG', 'Nigeria'), +('41.189.32.0', '41.189.63.255', 700260352, 700268543, 'CI', 'Cote D''Ivoire'), +('41.189.64.0', '41.189.95.255', 700268544, 700276735, 'ZA', 'South Africa'), +('41.189.96.0', '41.189.127.255', 700276736, 700284927, 'CI', 'Cote D''Ivoire'), +('41.189.128.0', '41.189.159.255', 700284928, 700293119, 'GH', 'Ghana'), +('41.189.160.0', '41.189.191.255', 700293120, 700301311, 'EG', 'Egypt'), +('41.189.192.0', '41.189.223.255', 700301312, 700309503, 'CD', 'Congo, The Democratic Republic of the'), +('41.189.224.0', '41.189.255.255', 700309504, 700317695, 'DJ', 'Djibouti'), +('41.190.0.0', '41.190.31.255', 700317696, 700325887, 'NG', 'Nigeria'), +('41.190.32.0', '41.190.63.255', 700325888, 700334079, 'ZW', 'Zimbabwe'), +('41.190.64.0', '41.190.67.255', 700334080, 700335103, 'BJ', 'Benin'), +('41.190.68.0', '41.190.71.255', 700335104, 700336127, 'GH', 'Ghana'), +('41.190.72.0', '41.190.75.255', 700336128, 700337151, 'CG', 'Congo'), +('41.190.80.0', '41.190.83.255', 700338176, 700339199, 'CD', 'Congo, The Democratic Republic of the'), +('41.190.84.0', '41.190.87.255', 700339200, 700340223, 'NA', 'Namibia'), +('41.190.88.0', '41.190.91.255', 700340224, 700341247, 'GH', 'Ghana'), +('41.190.92.0', '41.190.95.255', 700341248, 700342271, 'MW', 'Malawi'), +('41.190.96.0', '41.190.127.255', 700342272, 700350463, 'NA', 'Namibia'), +('41.190.128.0', '41.190.159.255', 700350464, 700358655, 'UG', 'Uganda'), +('41.190.160.0', '41.190.191.255', 700358656, 700366847, 'MZ', 'Mozambique'), +('41.190.192.0', '41.190.223.255', 700366848, 700375039, 'MW', 'Malawi'), +('41.190.224.0', '41.190.227.255', 700375040, 700376063, 'CM', 'Cameroon'), +('41.190.228.0', '41.190.231.255', 700376064, 700377087, 'NE', 'Niger'), +('41.190.232.0', '41.190.235.255', 700377088, 700378111, 'KE', 'Kenya'), +('41.190.236.0', '41.190.239.255', 700378112, 700379135, 'MG', 'Madagascar'), +('41.190.240.0', '41.190.243.255', 700379136, 700380159, 'NG', 'Nigeria'), +('41.190.244.0', '41.190.247.255', 700380160, 700381183, 'BW', 'Botswana'), +('41.190.248.0', '41.190.251.255', 700381184, 700382207, 'EG', 'Egypt'), +('41.190.252.0', '41.190.255.255', 700382208, 700383231, 'KE', 'Kenya'), +('41.191.0.0', '41.191.63.255', 700383232, 700399615, 'EG', 'Egypt'), +('41.191.64.0', '41.191.67.255', 700399616, 700400639, 'AO', 'Angola'), +('41.191.68.0', '41.191.71.255', 700400640, 700401663, 'CI', 'Cote D''Ivoire'), +('41.191.72.0', '41.191.75.255', 700401664, 700402687, 'MZ', 'Mozambique'), +('41.191.76.0', '41.191.79.255', 700402688, 700403711, 'UG', 'Uganda'), +('41.191.80.0', '41.191.83.255', 700403712, 700404735, 'EG', 'Egypt'), +('41.191.84.0', '41.191.87.255', 700404736, 700405759, 'BJ', 'Benin'), +('41.191.88.0', '41.191.91.255', 700405760, 700406783, 'ZA', 'South Africa'), +('41.191.92.0', '41.191.95.255', 700406784, 700407807, 'TZ', 'Tanzania, United Republic of'), +('41.191.96.0', '41.191.99.255', 700407808, 700408831, 'GH', 'Ghana'), +('41.191.100.0', '41.191.103.255', 700408832, 700409855, 'CM', 'Cameroon'), +('41.191.104.0', '41.191.107.255', 700409856, 700410879, 'LR', 'Liberia'), +('41.191.108.0', '41.191.111.255', 700410880, 700411903, 'NG', 'Nigeria'), +('41.191.112.0', '41.191.115.255', 700411904, 700412927, 'KE', 'Kenya'), +('41.191.116.0', '41.191.119.255', 700412928, 700413951, 'ZM', 'Zambia'), +('41.191.120.0', '41.191.123.255', 700413952, 700414975, 'SC', 'Seychelles'), +('41.191.124.0', '41.191.127.255', 700414976, 700415999, 'MU', 'Mauritius'), +('41.191.128.0', '41.191.191.255', 700416000, 700432383, 'ZA', 'South Africa'), +('41.191.192.0', '41.191.199.255', 700432384, 700434431, 'KE', 'Kenya'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('41.191.200.0', '41.191.207.255', 700434432, 700436479, 'LS', 'Lesotho'), +('41.191.208.0', '41.191.215.255', 700436480, 700438527, 'UG', 'Uganda'), +('41.191.216.0', '41.191.231.255', 700438528, 700442623, 'KE', 'Kenya'), +('41.191.232.0', '41.191.239.255', 700442624, 700444671, 'ZW', 'Zimbabwe'), +('41.191.240.0', '41.191.247.255', 700444672, 700446719, 'GH', 'Ghana'), +('41.191.248.0', '41.191.251.255', 700446720, 700447743, 'SL', 'Sierra Leone'), +('41.191.252.0', '41.191.255.255', 700447744, 700448767, 'DZ', 'Algeria'), +('41.192.0.0', '41.193.255.255', 700448768, 700579839, 'ZA', 'South Africa'), +('41.194.0.0', '41.194.3.255', 700579840, 700580863, 'SC', 'Seychelles'), +('41.194.4.0', '41.194.22.255', 700580864, 700585727, 'A2', 'Satellite Provider'), +('41.194.23.0', '41.194.26.7', 700585728, 700586503, 'TZ', 'Tanzania, United Republic of'), +('41.194.26.8', '41.194.31.255', 700586504, 700588031, 'A2', 'Satellite Provider'), +('41.194.32.0', '41.194.32.254', 700588032, 700588286, 'KM', 'Comoros'), +('41.194.32.255', '41.194.37.255', 700588287, 700589567, 'A2', 'Satellite Provider'), +('41.194.38.0', '41.194.38.127', 700589568, 700589695, 'TZ', 'Tanzania, United Republic of'), +('41.194.38.128', '41.194.48.255', 700589696, 700592383, 'A2', 'Satellite Provider'), +('41.194.49.0', '41.194.49.255', 700592384, 700592639, 'KE', 'Kenya'), +('41.194.50.0', '41.194.51.255', 700592640, 700593151, 'A2', 'Satellite Provider'), +('41.194.52.0', '41.194.55.255', 700593152, 700594175, 'NG', 'Nigeria'), +('41.194.56.0', '41.194.255.255', 700594176, 700645375, 'A2', 'Satellite Provider'), +('41.195.0.0', '41.195.255.255', 700645376, 700710911, 'ZA', 'South Africa'), +('41.196.0.0', '41.196.255.255', 700710912, 700776447, 'EG', 'Egypt'), +('41.197.0.0', '41.197.255.255', 700776448, 700841983, 'RW', 'Rwanda'), +('41.198.0.0', '41.198.207.255', 700841984, 700895231, 'ZA', 'South Africa'), +('41.198.208.0', '41.198.223.255', 700895232, 700899327, 'NG', 'Nigeria'), +('41.198.224.0', '41.198.255.255', 700899328, 700907519, 'ZA', 'South Africa'), +('41.199.0.0', '41.199.255.255', 700907520, 700973055, 'EG', 'Egypt'), +('41.200.0.0', '41.201.255.255', 700973056, 701104127, 'DZ', 'Algeria'), +('41.202.0.0', '41.202.31.255', 701104128, 701112319, 'GH', 'Ghana'), +('41.202.32.0', '41.202.63.255', 701112320, 701120511, 'ZA', 'South Africa'), +('41.202.64.0', '41.202.159.255', 701120512, 701145087, 'CI', 'Cote D''Ivoire'), +('41.202.160.0', '41.202.191.255', 701145088, 701153279, 'SD', 'Sudan'), +('41.202.192.0', '41.202.223.255', 701153280, 701161471, 'CM', 'Cameroon'), +('41.202.224.0', '41.202.255.255', 701161472, 701169663, 'UG', 'Uganda'), +('41.203.0.0', '41.203.63.255', 701169664, 701186047, 'ZA', 'South Africa'), +('41.203.64.0', '41.203.127.255', 701186048, 701202431, 'NG', 'Nigeria'), +('41.203.128.0', '41.203.159.255', 701202432, 701210623, 'NE', 'Niger'), +('41.203.160.0', '41.203.175.255', 701210624, 701214719, 'ZA', 'South Africa'), +('41.203.176.0', '41.203.191.255', 701214720, 701218815, 'LS', 'Lesotho'), +('41.203.192.0', '41.203.207.255', 701218816, 701222911, 'ML', 'Mali'), +('41.203.208.0', '41.203.223.255', 701222912, 701227007, 'KE', 'Kenya'), +('41.203.224.0', '41.203.239.255', 701227008, 701231103, 'BF', 'Burkina Faso'), +('41.203.240.0', '41.203.255.255', 701231104, 701235199, 'SC', 'Seychelles'), +('41.204.0.0', '41.204.31.255', 701235200, 701243391, 'SZ', 'Swaziland'), +('41.204.32.0', '41.204.63.255', 701243392, 701251583, 'GH', 'Ghana'), +('41.204.64.0', '41.204.95.255', 701251584, 701259775, 'CM', 'Cameroon'), +('41.204.96.0', '41.204.127.255', 701259776, 701267967, 'MG', 'Madagascar'), +('41.204.128.0', '41.204.159.255', 701267968, 701276159, 'TZ', 'Tanzania, United Republic of'), +('41.204.160.0', '41.204.191.255', 701276160, 701284351, 'KE', 'Kenya'), +('41.204.192.0', '41.204.223.255', 701284352, 701292543, 'ZA', 'South Africa'), +('41.204.224.0', '41.204.255.255', 701292544, 701300735, 'NG', 'Nigeria'), +('41.205.0.0', '41.205.31.255', 701300736, 701308927, 'CM', 'Cameroon'), +('41.205.32.0', '41.205.63.255', 701308928, 701317119, 'AO', 'Angola'), +('41.205.64.0', '41.205.95.255', 701317120, 701325311, 'CM', 'Cameroon'), +('41.205.96.0', '41.205.127.255', 701325312, 701333503, 'EG', 'Egypt'), +('41.205.128.0', '41.205.159.255', 701333504, 701341695, 'NA', 'Namibia'), +('41.205.160.0', '41.205.191.255', 701341696, 701349887, 'NG', 'Nigeria'), +('41.205.192.0', '41.205.223.255', 701349888, 701358079, 'MA', 'Morocco'), +('41.205.224.0', '41.205.255.255', 701358080, 701366271, 'SL', 'Sierra Leone'), +('41.206.0.0', '41.206.31.255', 701366272, 701374463, 'NG', 'Nigeria'), +('41.206.32.0', '41.206.63.255', 701374464, 701382655, 'KE', 'Kenya'), +('41.206.64.0', '41.206.95.255', 701382656, 701390847, 'CI', 'Cote D''Ivoire'), +('41.206.96.0', '41.206.127.255', 701390848, 701399039, 'GA', 'Gabon'), +('41.206.128.0', '41.206.159.255', 701399040, 701407231, 'EG', 'Egypt'), +('41.206.160.0', '41.206.191.255', 701407232, 701415423, 'CA', 'Canada'), +('41.206.192.0', '41.206.223.255', 701415424, 701423615, 'ZA', 'South Africa'), +('41.206.224.0', '41.206.255.255', 701423616, 701431807, 'NG', 'Nigeria'), +('41.207.0.0', '41.207.31.255', 701431808, 701439999, 'CI', 'Cote D''Ivoire'), +('41.207.32.0', '41.207.63.255', 701440000, 701448191, 'MG', 'Madagascar'), +('41.207.64.0', '41.207.127.255', 701448192, 701464575, 'KE', 'Kenya'), +('41.207.128.0', '41.207.159.255', 701464576, 701472767, 'MU', 'Mauritius'), +('41.207.160.0', '41.207.191.255', 701472768, 701480959, 'TG', 'Togo'), +('41.207.192.0', '41.207.223.255', 701480960, 701489151, 'CI', 'Cote D''Ivoire'), +('41.207.224.0', '41.208.63.255', 701489152, 701513727, 'ZA', 'South Africa'), +('41.208.64.0', '41.208.127.255', 701513728, 701530111, 'LY', 'Libyan Arab Jamahiriya'), +('41.208.128.0', '41.208.191.255', 701530112, 701546495, 'SN', 'Senegal'), +('41.208.192.0', '41.208.255.255', 701546496, 701562879, 'ZA', 'South Africa'), +('41.209.0.0', '41.209.63.255', 701562880, 701579263, 'KE', 'Kenya'), +('41.209.64.0', '41.209.127.255', 701579264, 701595647, 'SD', 'Sudan'), +('41.209.128.0', '41.209.191.255', 701595648, 701612031, 'DZ', 'Algeria'), +('41.209.192.0', '41.209.255.255', 701612032, 701628415, 'EG', 'Egypt'), +('41.210.0.0', '41.210.63.255', 701628416, 701644799, 'GH', 'Ghana'), +('41.210.64.0', '41.210.127.255', 701644800, 701661183, 'DZ', 'Algeria'), +('41.210.128.0', '41.210.191.255', 701661184, 701677567, 'UG', 'Uganda'), +('41.210.192.0', '41.210.255.255', 701677568, 701693951, 'AO', 'Angola'), +('41.211.0.0', '41.211.31.255', 701693952, 701702143, 'GH', 'Ghana'), +('41.211.32.0', '41.211.63.255', 701702144, 701710335, 'SZ', 'Swaziland'), +('41.211.64.0', '41.211.95.255', 701710336, 701718527, 'MU', 'Mauritius'), +('41.211.96.0', '41.211.127.255', 701718528, 701726719, 'CM', 'Cameroon'), +('41.211.128.0', '41.211.191.255', 701726720, 701743103, 'GA', 'Gabon'), +('41.211.192.0', '41.211.255.255', 701743104, 701759487, 'NG', 'Nigeria'), +('41.212.0.0', '41.212.127.255', 701759488, 701792255, 'KE', 'Kenya'), +('41.212.128.0', '41.212.255.255', 701792256, 701825023, 'MU', 'Mauritius'), +('41.213.0.0', '41.213.127.255', 701825024, 701857791, 'ZA', 'South Africa'), +('41.213.128.0', '41.213.255.255', 701857792, 701890559, 'RE', 'Reunion'), +('41.214.0.0', '41.214.127.255', 701890560, 701923327, 'SN', 'Senegal'), +('41.214.128.0', '41.214.255.255', 701923328, 701956095, 'MA', 'Morocco'), +('41.215.0.0', '41.215.143.255', 701956096, 701992959, 'KE', 'Kenya'), +('41.215.144.0', '41.215.159.255', 701992960, 701997055, 'SZ', 'Swaziland'), +('41.215.160.0', '41.215.175.255', 701997056, 702001151, 'GH', 'Ghana'), +('41.215.176.0', '41.215.191.255', 702001152, 702005247, 'ZM', 'Zambia'), +('41.215.192.0', '41.215.207.255', 702005248, 702009343, 'KE', 'Kenya'), +('41.215.208.0', '41.215.223.255', 702009344, 702013439, 'CV', 'Cape Verde'), +('41.215.224.0', '41.215.231.255', 702013440, 702015487, 'KE', 'Kenya'), +('41.215.232.0', '41.215.239.255', 702015488, 702017535, 'ZA', 'South Africa'), +('41.215.240.0', '41.215.243.255', 702017536, 702018559, 'EG', 'Egypt'), +('41.215.244.0', '41.215.247.255', 702018560, 702019583, 'NG', 'Nigeria'), +('41.215.248.0', '41.215.251.255', 702019584, 702020607, 'RW', 'Rwanda'), +('41.215.252.0', '41.215.255.255', 702020608, 702021631, 'CD', 'Congo, The Democratic Republic of the'), +('41.216.0.0', '41.216.31.255', 702021632, 702029823, 'ZM', 'Zambia'), +('41.216.32.0', '41.216.63.255', 702029824, 702038015, 'BJ', 'Benin'), +('41.216.64.0', '41.216.95.255', 702038016, 702046207, 'ZM', 'Zambia'), +('41.216.96.0', '41.216.127.255', 702046208, 702054399, 'RW', 'Rwanda'), +('41.216.128.0', '41.216.143.255', 702054400, 702058495, 'ZA', 'South Africa'), +('41.216.144.0', '41.216.159.255', 702058496, 702062591, 'BF', 'Burkina Faso'), +('41.216.160.0', '41.216.175.255', 702062592, 702066687, 'NG', 'Nigeria'), +('41.216.176.0', '41.216.191.255', 702066688, 702070783, 'CM', 'Cameroon'), +('41.216.192.0', '41.216.207.255', 702070784, 702074879, 'ZA', 'South Africa'), +('41.216.208.0', '41.216.215.255', 702074880, 702076927, 'BW', 'Botswana'), +('41.216.216.0', '41.216.223.255', 702076928, 702078975, 'TZ', 'Tanzania, United Republic of'), +('41.216.224.0', '41.216.227.255', 702078976, 702079999, 'MA', 'Morocco'), +('41.216.228.0', '41.216.231.255', 702080000, 702081023, 'MW', 'Malawi'), +('41.216.232.0', '41.216.235.255', 702081024, 702082047, 'NG', 'Nigeria'), +('41.216.236.0', '41.216.239.255', 702082048, 702083071, 'AO', 'Angola'), +('41.216.240.0', '41.216.255.255', 702083072, 702087167, 'CI', 'Cote D''Ivoire'), +('41.217.0.0', '41.217.127.255', 702087168, 702119935, 'NG', 'Nigeria'), +('41.217.128.0', '41.217.159.255', 702119936, 702128127, 'CM', 'Cameroon'), +('41.217.160.0', '41.217.191.255', 702128128, 702136319, 'EG', 'Egypt'), +('41.217.192.0', '41.217.195.255', 702136320, 702137343, 'ZA', 'South Africa'), +('41.217.196.0', '41.217.199.255', 702137344, 702138367, 'MG', 'Madagascar'), +('41.217.220.0', '41.217.223.255', 702143488, 702144511, 'KE', 'Kenya'), +('41.217.224.0', '41.217.231.255', 702144512, 702146559, 'EG', 'Egypt'), +('41.218.0.0', '41.218.63.255', 702152704, 702169087, 'SD', 'Sudan'), +('41.218.64.0', '41.218.127.255', 702169088, 702185471, 'NA', 'Namibia'), +('41.218.128.0', '41.218.191.255', 702185472, 702201855, 'EG', 'Egypt'), +('41.218.192.0', '41.218.255.255', 702201856, 702218239, 'GH', 'Ghana'), +('41.219.0.0', '41.219.63.255', 702218240, 702234623, 'SN', 'Senegal'), +('41.219.64.0', '41.219.127.255', 702234624, 702251007, 'NA', 'Namibia'), +('41.219.128.0', '41.219.255.255', 702251008, 702283775, 'NG', 'Nigeria'), +('41.220.0.0', '41.220.15.255', 702283776, 702287871, 'UG', 'Uganda'), +('41.220.16.0', '41.220.31.255', 702287872, 702291967, 'ZW', 'Zimbabwe'), +('41.220.32.0', '41.220.47.255', 702291968, 702296063, 'MZ', 'Mozambique'), +('41.220.48.0', '41.220.63.255', 702296064, 702300159, 'GH', 'Ghana'), +('41.220.64.0', '41.220.79.255', 702300160, 702304255, 'NG', 'Nigeria'), +('41.220.80.0', '41.220.95.255', 702304256, 702308351, 'SL', 'Sierra Leone'), +('41.220.96.0', '41.220.111.255', 702308352, 702312447, 'SC', 'Seychelles'), +('41.220.112.0', '41.220.127.255', 702312448, 702316543, 'KE', 'Kenya'), +('41.220.128.0', '41.220.143.255', 702316544, 702320639, 'TZ', 'Tanzania, United Republic of'), +('41.220.144.0', '41.220.159.255', 702320640, 702324735, 'DZ', 'Algeria'), +('41.220.160.0', '41.220.175.255', 702324736, 702328831, 'MZ', 'Mozambique'), +('41.220.176.0', '41.220.191.255', 702328832, 702332927, 'TZ', 'Tanzania, United Republic of'), +('41.220.192.0', '41.220.207.255', 702332928, 702337023, 'MZ', 'Mozambique'), +('41.220.208.0', '41.220.223.255', 702337024, 702341119, 'UG', 'Uganda'), +('41.220.224.0', '41.220.239.255', 702341120, 702345215, 'KE', 'Kenya'), +('41.220.240.0', '41.220.255.255', 702345216, 702349311, 'TZ', 'Tanzania, United Republic of'), +('41.221.0.0', '41.221.15.255', 702349312, 702353407, 'ZA', 'South Africa'), +('41.221.16.0', '41.221.31.255', 702353408, 702357503, 'DZ', 'Algeria'), +('41.221.32.0', '41.221.63.255', 702357504, 702365695, 'TZ', 'Tanzania, United Republic of'), +('41.221.64.0', '41.221.79.255', 702365696, 702369791, 'MZ', 'Mozambique'), +('41.221.80.0', '41.221.95.255', 702369792, 702373887, 'UG', 'Uganda'), +('41.221.96.0', '41.221.111.255', 702373888, 702377983, 'MW', 'Malawi'), +('41.221.112.0', '41.221.127.255', 702377984, 702382079, 'NG', 'Nigeria'), +('41.221.128.0', '41.221.143.255', 702382080, 702386175, 'EG', 'Egypt'), +('41.221.144.0', '41.221.159.255', 702386176, 702390271, 'ZW', 'Zimbabwe'), +('41.221.160.0', '41.221.175.255', 702390272, 702394367, 'NG', 'Nigeria'), +('41.221.176.0', '41.221.191.255', 702394368, 702398463, 'ML', 'Mali'), +('41.221.192.0', '41.221.207.255', 702398464, 702402559, 'CV', 'Cape Verde'), +('41.221.208.0', '41.221.223.255', 702402560, 702406655, 'GH', 'Ghana'), +('41.221.224.0', '41.221.239.255', 702406656, 702410751, 'ZA', 'South Africa'), +('41.221.240.0', '41.221.255.255', 702410752, 702414847, 'AO', 'Angola'), +('41.222.0.0', '41.222.7.255', 702414848, 702416895, 'UG', 'Uganda'), +('41.222.8.0', '41.222.15.255', 702416896, 702418943, 'KE', 'Kenya'), +('41.222.16.0', '41.222.23.255', 702418944, 702420991, 'ZM', 'Zambia'), +('41.222.24.0', '41.222.31.255', 702420992, 702423039, 'TZ', 'Tanzania, United Republic of'), +('41.222.32.0', '41.222.39.255', 702423040, 702425087, 'ZA', 'South Africa'), +('41.222.40.0', '41.222.47.255', 702425088, 702427135, 'NG', 'Nigeria'), +('41.222.48.0', '41.222.55.255', 702427136, 702429183, 'ZA', 'South Africa'), +('41.222.56.0', '41.222.63.255', 702429184, 702431231, 'TZ', 'Tanzania, United Republic of'), +('41.222.64.0', '41.222.79.255', 702431232, 702435327, 'NG', 'Nigeria'), +('41.222.80.0', '41.222.87.255', 702435328, 702437375, 'MZ', 'Mozambique'), +('41.222.88.0', '41.222.95.255', 702437376, 702439423, 'TZ', 'Tanzania, United Republic of'), +('41.222.96.0', '41.222.103.255', 702439424, 702441471, 'MU', 'Mauritius'), +('41.222.104.0', '41.222.111.255', 702441472, 702443519, 'ZA', 'South Africa'), +('41.222.112.0', '41.222.119.255', 702443520, 702445567, 'GQ', 'Equatorial Guinea'), +('41.222.120.0', '41.222.127.255', 702445568, 702447615, 'KE', 'Kenya'), +('41.222.128.0', '41.222.135.255', 702447616, 702449663, 'EG', 'Egypt'), +('41.222.136.0', '41.222.143.255', 702449664, 702451711, 'ZA', 'South Africa'), +('41.222.144.0', '41.222.151.255', 702451712, 702453759, 'NG', 'Nigeria'), +('41.222.152.0', '41.222.159.255', 702453760, 702455807, 'TZ', 'Tanzania, United Republic of'), +('41.222.160.0', '41.222.167.255', 702455808, 702457855, 'KE', 'Kenya'), +('41.222.168.0', '41.222.175.255', 702457856, 702459903, 'EG', 'Egypt'), +('41.222.176.0', '41.222.183.255', 702459904, 702461951, 'TZ', 'Tanzania, United Republic of'), +('41.222.184.0', '41.222.191.255', 702461952, 702463999, 'MW', 'Malawi'), +('41.222.192.0', '41.222.195.255', 702464000, 702465023, 'BJ', 'Benin'), +('41.222.196.0', '41.222.199.255', 702465024, 702466047, 'CD', 'Congo, The Democratic Republic of the'), +('41.222.204.0', '41.222.207.255', 702467072, 702468095, 'SC', 'Seychelles'), +('41.222.208.0', '41.222.211.255', 702468096, 702469119, 'NG', 'Nigeria'), +('41.222.212.0', '41.222.215.255', 702469120, 702470143, 'ZA', 'South Africa'), +('41.222.216.0', '41.222.219.255', 702470144, 702471167, 'CD', 'Congo, The Democratic Republic of the'), +('41.222.220.0', '41.222.231.255', 702471168, 702474239, 'ZA', 'South Africa'), +('41.222.232.0', '41.222.235.255', 702474240, 702475263, 'GH', 'Ghana'), +('41.222.236.0', '41.222.239.255', 702475264, 702476287, 'AO', 'Angola'), +('41.222.240.0', '41.222.243.255', 702476288, 702477311, 'ZM', 'Zambia'), +('41.222.244.0', '41.222.247.255', 702477312, 702478335, 'RW', 'Rwanda'), +('41.222.248.0', '41.223.3.255', 702478336, 702481407, 'AO', 'Angola'), +('41.223.4.0', '41.223.7.255', 702481408, 702482431, 'TZ', 'Tanzania, United Republic of'), +('41.223.8.0', '41.223.11.255', 702482432, 702483455, 'ZA', 'South Africa'), +('41.223.12.0', '41.223.15.255', 702483456, 702484479, 'BW', 'Botswana'), +('41.223.16.0', '41.223.19.255', 702484480, 702485503, 'TZ', 'Tanzania, United Republic of'), +('41.223.20.0', '41.223.23.255', 702485504, 702486527, 'EG', 'Egypt'), +('41.223.24.0', '41.223.27.255', 702486528, 702487551, 'NG', 'Nigeria'), +('41.223.28.0', '41.223.31.255', 702487552, 702488575, 'CM', 'Cameroon'), +('41.223.32.0', '41.223.39.255', 702488576, 702490623, 'ZA', 'South Africa'), +('41.223.40.0', '41.223.43.255', 702490624, 702491647, 'AO', 'Angola'), +('41.223.44.0', '41.223.47.255', 702491648, 702492671, 'LR', 'Liberia'), +('41.223.48.0', '41.223.51.255', 702492672, 702493695, 'KE', 'Kenya'), +('41.223.52.0', '41.223.55.255', 702493696, 702494719, 'EG', 'Egypt'), +('41.223.56.0', '41.223.59.255', 702494720, 702495743, 'KE', 'Kenya'), +('41.223.60.0', '41.223.63.255', 702495744, 702496767, 'ZA', 'South Africa'), +('41.223.64.0', '41.223.67.255', 702496768, 702497791, 'NG', 'Nigeria'), +('41.223.68.0', '41.223.71.255', 702497792, 702498815, 'ZA', 'South Africa'), +('41.223.72.0', '41.223.75.255', 702498816, 702499839, 'BW', 'Botswana'), +('41.223.76.0', '41.223.79.255', 702499840, 702500863, 'MU', 'Mauritius'), +('41.223.80.0', '41.223.83.255', 702500864, 702501887, 'NA', 'Namibia'), +('41.223.84.0', '41.223.87.255', 702501888, 702502911, 'UG', 'Uganda'), +('41.223.88.0', '41.223.91.255', 702502912, 702503935, 'SL', 'Sierra Leone'), +('41.223.92.0', '41.223.99.255', 702503936, 702505983, 'GA', 'Gabon'), +('41.223.100.0', '41.223.103.255', 702505984, 702507007, 'AO', 'Angola'), +('41.223.104.0', '41.223.107.255', 702507008, 702508031, 'CD', 'Congo, The Democratic Republic of the'), +('41.223.108.0', '41.223.111.255', 702508032, 702509055, 'KE', 'Kenya'), +('41.223.112.0', '41.223.115.255', 702509056, 702510079, 'ZA', 'South Africa'), +('41.223.116.0', '41.223.119.255', 702510080, 702511103, 'ZM', 'Zambia'), +('41.223.120.0', '41.223.123.255', 702511104, 702512127, 'ZA', 'South Africa'), +('41.223.124.0', '41.223.127.255', 702512128, 702513151, 'MZ', 'Mozambique'), +('41.223.128.0', '41.223.131.255', 702513152, 702514175, 'NG', 'Nigeria'), +('41.223.132.0', '41.223.135.255', 702514176, 702515199, 'SL', 'Sierra Leone'), +('41.223.136.0', '41.223.139.255', 702515200, 702516223, 'NG', 'Nigeria'), +('41.223.140.0', '41.223.143.255', 702516224, 702517247, 'BW', 'Botswana'), +('41.223.144.0', '41.223.147.255', 702517248, 702518271, 'NG', 'Nigeria'), +('41.223.148.0', '41.223.151.255', 702518272, 702519295, 'KE', 'Kenya'), +('41.223.152.0', '41.223.155.255', 702519296, 702520319, 'MZ', 'Mozambique'), +('41.223.156.0', '41.223.159.255', 702520320, 702521343, 'AO', 'Angola'), +('41.223.160.0', '41.223.163.255', 702521344, 702522367, 'SD', 'Sudan'), +('41.223.164.0', '41.223.167.255', 702522368, 702523391, 'AO', 'Angola'), +('41.223.168.0', '41.223.171.255', 702523392, 702524415, 'NG', 'Nigeria'), +('41.223.172.0', '41.223.175.255', 702524416, 702525439, 'ZA', 'South Africa'), +('41.223.176.0', '41.223.179.255', 702525440, 702526463, 'DZ', 'Algeria'), +('41.223.180.0', '41.223.183.255', 702526464, 702527487, 'TZ', 'Tanzania, United Republic of'), +('41.223.184.0', '41.223.187.255', 702527488, 702528511, 'CF', 'Central African Republic'), +('41.223.192.0', '41.223.195.255', 702529536, 702530559, 'NG', 'Nigeria'), +('41.223.196.0', '41.223.199.255', 702530560, 702531583, 'EG', 'Egypt'), +('41.223.200.0', '41.223.203.255', 702531584, 702532607, 'SD', 'Sudan'), +('41.223.204.0', '41.223.207.255', 702532608, 702533631, 'SC', 'Seychelles'), +('41.223.208.0', '41.223.211.255', 702533632, 702534655, 'CI', 'Cote D''Ivoire'), +('41.223.212.0', '41.223.215.255', 702534656, 702535679, 'GM', 'Gambia'), +('41.223.216.0', '41.223.219.255', 702535680, 702536703, 'SC', 'Seychelles'), +('41.223.220.0', '41.223.223.255', 702536704, 702537727, 'MU', 'Mauritius'), +('41.223.224.0', '41.223.227.255', 702537728, 702538751, 'RW', 'Rwanda'), +('41.223.228.0', '41.223.231.255', 702538752, 702539775, 'TZ', 'Tanzania, United Republic of'), +('41.223.232.0', '41.223.235.255', 702539776, 702540799, 'BF', 'Burkina Faso'), +('41.223.236.0', '41.223.239.255', 702540800, 702541823, 'ZA', 'South Africa'), +('41.223.240.0', '41.223.243.255', 702541824, 702542847, 'EG', 'Egypt'), +('41.223.244.0', '41.223.247.255', 702542848, 702543871, 'ZA', 'South Africa'), +('41.223.248.0', '41.223.251.255', 702543872, 702544895, 'BJ', 'Benin'), +('41.223.252.0', '41.223.255.255', 702544896, 702545919, 'ZA', 'South Africa'), +('41.224.0.0', '41.231.255.255', 702545920, 703070207, 'TN', 'Tunisia'), +('41.232.0.0', '41.239.255.255', 703070208, 703594495, 'EG', 'Egypt'), +('41.240.0.0', '41.247.255.255', 703594496, 704118783, 'ZA', 'South Africa'), +('41.248.0.0', '41.251.255.255', 704118784, 704380927, 'MA', 'Morocco'), +('41.252.0.0', '41.255.255.255', 704380928, 704643071, 'LY', 'Libyan Arab Jamahiriya'), +('43.0.0.0', '43.255.255.255', 721420288, 738197503, 'JP', 'Japan'), +('44.0.0.0', '45.255.255.255', 738197504, 771751935, 'US', 'United States'), +('47.0.0.0', '47.255.255.255', 788529152, 805306367, 'CA', 'Canada'), +('48.0.0.0', '48.255.255.255', 805306368, 822083583, 'US', 'United States'), +('51.0.0.0', '51.255.255.255', 855638016, 872415231, 'GB', 'United Kingdom'), +('52.0.0.0', '52.255.255.255', 872415232, 889192447, 'US', 'United States'), +('53.0.0.0', '53.255.255.255', 889192448, 905969663, 'DE', 'Germany'), +('54.0.0.0', '56.255.255.255', 905969664, 956301311, 'US', 'United States'), +('57.0.0.0', '57.255.255.255', 956301312, 973078527, 'EU', 'Europe'), +('58.0.0.0', '58.1.255.255', 973078528, 973209599, 'JP', 'Japan'), +('58.2.0.0', '58.2.255.255', 973209600, 973275135, 'IN', 'India'), +('58.3.0.0', '58.5.255.255', 973275136, 973471743, 'JP', 'Japan'), +('58.6.0.0', '58.7.255.255', 973471744, 973602815, 'AU', 'Australia'), +('58.8.0.0', '58.11.255.255', 973602816, 973864959, 'TH', 'Thailand'), +('58.12.0.0', '58.13.255.255', 973864960, 973996031, 'JP', 'Japan'), +('58.14.0.0', '58.25.255.255', 973996032, 974782463, 'CN', 'China'), +('58.26.0.0', '58.27.127.255', 974782464, 974880767, 'MY', 'Malaysia'), +('58.27.128.0', '58.27.255.255', 974880768, 974913535, 'PK', 'Pakistan'), +('58.28.0.0', '58.28.255.255', 974913536, 974979071, 'NZ', 'New Zealand'), +('58.29.0.0', '58.29.255.255', 974979072, 975044607, 'KR', 'Korea, Republic of'), +('58.30.0.0', '58.63.255.255', 975044608, 977272831, 'CN', 'China'), +('58.64.0.0', '58.64.127.255', 977272832, 977305599, 'TH', 'Thailand'), +('58.64.128.0', '58.64.255.255', 977305600, 977338367, 'HK', 'Hong Kong'), +('58.65.0.0', '58.65.31.255', 977338368, 977346559, 'SG', 'Singapore'), +('58.65.32.0', '58.65.63.255', 977346560, 977354751, 'JP', 'Japan'), +('58.65.64.0', '58.65.127.255', 977354752, 977371135, 'KR', 'Korea, Republic of'), +('58.65.128.0', '58.65.223.255', 977371136, 977395711, 'PK', 'Pakistan'), +('58.65.224.0', '58.65.231.255', 977395712, 977397759, 'BD', 'Bangladesh'), +('58.65.232.0', '58.65.239.255', 977397760, 977399807, 'HK', 'Hong Kong'), +('58.65.240.0', '58.65.247.255', 977399808, 977401855, 'ID', 'Indonesia'), +('58.65.248.0', '58.65.255.255', 977401856, 977403903, 'AU', 'Australia'), +('58.66.0.0', '58.67.255.255', 977403904, 977534975, 'CN', 'China'), +('58.68.0.0', '58.68.127.255', 977534976, 977567743, 'IN', 'India'), +('58.68.128.0', '58.68.255.255', 977567744, 977600511, 'CN', 'China'), +('58.69.0.0', '58.69.255.255', 977600512, 977666047, 'PH', 'Philippines'), +('58.70.0.0', '58.70.255.255', 977666048, 977731583, 'JP', 'Japan'), +('58.71.0.0', '58.71.127.255', 977731584, 977764351, 'PH', 'Philippines'), +('58.71.128.0', '58.71.255.255', 977764352, 977797119, 'MY', 'Malaysia'), +('58.72.0.0', '58.79.255.255', 977797120, 978321407, 'KR', 'Korea, Republic of'), +('58.80.0.0', '58.81.255.255', 978321408, 978452479, 'JP', 'Japan'), +('58.82.0.0', '58.83.255.255', 978452480, 978583551, 'CN', 'China'), +('58.84.0.0', '58.84.63.255', 978583552, 978599935, 'JP', 'Japan'), +('58.84.64.0', '58.84.223.255', 978599936, 978640895, 'AU', 'Australia'), +('58.84.224.0', '58.84.239.255', 978640896, 978644991, 'NZ', 'New Zealand'), +('58.85.0.0', '58.85.255.255', 978649088, 978714623, 'JP', 'Japan'), +('58.86.0.0', '58.86.255.255', 978714624, 978780159, 'TW', 'Taiwan'), +('58.87.0.0', '58.87.15.255', 978780160, 978784255, 'AU', 'Australia'), +('58.87.16.0', '58.87.31.255', 978784256, 978788351, 'JP', 'Japan'), +('58.87.32.0', '58.87.63.255', 978788352, 978796543, 'KR', 'Korea, Republic of'), +('58.87.64.0', '58.87.127.255', 978796544, 978812927, 'CN', 'China'), +('58.87.128.0', '58.95.255.255', 978812928, 979369983, 'JP', 'Japan'), +('58.96.0.0', '58.96.255.255', 979369984, 979435519, 'AU', 'Australia'), +('58.97.0.0', '58.97.127.255', 979435520, 979468287, 'TH', 'Thailand'), +('58.98.0.0', '58.98.255.255', 979501056, 979566591, 'JP', 'Japan'), +('58.99.0.0', '58.99.127.255', 979566592, 979599359, 'TW', 'Taiwan'), +('58.99.128.0', '58.101.255.255', 979599360, 979763199, 'CN', 'China'), +('58.102.0.0', '58.103.255.255', 979763200, 979894271, 'KR', 'Korea, Republic of'), +('58.104.0.0', '58.111.255.255', 979894272, 980418559, 'AU', 'Australia'), +('58.112.0.0', '58.113.255.255', 980418560, 980549631, 'JP', 'Japan'), +('58.114.0.0', '58.115.255.255', 980549632, 980680703, 'TW', 'Taiwan'), +('58.116.0.0', '58.119.255.255', 980680704, 980942847, 'CN', 'China'), +('58.120.0.0', '58.127.255.255', 980942848, 981467135, 'KR', 'Korea, Republic of'), +('58.128.0.0', '58.135.255.255', 981467136, 981991423, 'CN', 'China'), +('58.136.0.0', '58.137.255.255', 981991424, 982122495, 'TH', 'Thailand'), +('58.138.0.0', '58.138.191.255', 982122496, 982171647, 'JP', 'Japan'), +('58.138.192.0', '58.138.255.255', 982171648, 982188031, 'KR', 'Korea, Republic of'), +('58.139.0.0', '58.139.255.255', 982188032, 982253567, 'MY', 'Malaysia'), +('58.140.0.0', '58.143.255.255', 982253568, 982515711, 'KR', 'Korea, Republic of'), +('58.144.0.0', '58.144.255.255', 982515712, 982581247, 'CN', 'China'), +('58.145.0.0', '58.145.127.255', 982581248, 982614015, 'KR', 'Korea, Republic of'), +('58.145.128.0', '58.145.159.255', 982614016, 982622207, 'AU', 'Australia'), +('58.145.160.0', '58.145.167.255', 982622208, 982624255, 'JP', 'Japan'), +('58.145.168.0', '58.145.175.255', 982624256, 982626303, 'ID', 'Indonesia'), +('58.145.184.0', '58.145.191.255', 982628352, 982630399, 'BD', 'Bangladesh'), +('58.145.192.0', '58.145.255.255', 982630400, 982646783, 'SG', 'Singapore'), +('58.146.0.0', '58.146.95.255', 982646784, 982671359, 'JP', 'Japan'), +('58.146.96.0', '58.146.127.255', 982671360, 982679551, 'IN', 'India'), +('58.146.128.0', '58.146.191.255', 982679552, 982695935, 'SG', 'Singapore'), +('58.146.192.0', '58.146.255.255', 982695936, 982712319, 'KR', 'Korea, Republic of'), +('58.147.0.0', '58.147.127.255', 982712320, 982745087, 'TH', 'Thailand'), +('58.147.128.0', '58.147.159.255', 982745088, 982753279, 'AF', 'Afghanistan'), +('58.147.160.0', '58.147.167.255', 982753280, 982755327, 'JP', 'Japan'), +('58.147.168.0', '58.147.175.255', 982755328, 982757375, 'BD', 'Bangladesh'), +('58.147.184.0', '58.147.191.255', 982759424, 982761471, 'ID', 'Indonesia'), +('58.147.192.0', '58.147.255.255', 982761472, 982777855, 'JP', 'Japan'), +('58.148.0.0', '58.151.255.255', 982777856, 983039999, 'KR', 'Korea, Republic of'), +('58.152.0.0', '58.153.255.255', 983040000, 983171071, 'HK', 'Hong Kong'), +('58.154.0.0', '58.155.255.255', 983171072, 983302143, 'CN', 'China'), +('58.156.0.0', '58.159.255.255', 983302144, 983564287, 'JP', 'Japan'), +('58.160.0.0', '58.175.255.255', 983564288, 984612863, 'AU', 'Australia'), +('58.176.0.0', '58.177.255.255', 984612864, 984743935, 'HK', 'Hong Kong'), +('58.178.0.0', '58.179.255.255', 984743936, 984875007, 'AU', 'Australia'), +('58.180.0.0', '58.181.63.255', 984875008, 984956927, 'KR', 'Korea, Republic of'), +('58.181.64.0', '58.181.95.255', 984956928, 984965119, 'AU', 'Australia'), +('58.181.96.0', '58.181.111.255', 984965120, 984969215, 'PK', 'Pakistan'), +('58.181.128.0', '58.181.255.255', 984973312, 985006079, 'TH', 'Thailand'), +('58.182.0.0', '58.182.255.255', 985006080, 985071615, 'SG', 'Singapore'), +('58.183.0.0', '58.183.255.255', 985071616, 985137151, 'JP', 'Japan'), +('58.184.0.0', '58.184.255.255', 985137152, 985202687, 'KR', 'Korea, Republic of'), +('58.185.0.0', '58.185.255.255', 985202688, 985268223, 'SG', 'Singapore'), +('58.186.0.0', '58.187.255.255', 985268224, 985399295, 'VN', 'Vietnam'), +('58.188.0.0', '58.191.255.255', 985399296, 985661439, 'JP', 'Japan'), +('58.192.0.0', '58.223.255.255', 985661440, 987758591, 'CN', 'China'), +('58.224.0.0', '58.239.255.255', 987758592, 988807167, 'KR', 'Korea, Republic of'), +('58.240.0.0', '58.255.255.255', 988807168, 989855743, 'CN', 'China'), +('59.0.0.0', '59.31.255.255', 989855744, 991952895, 'KR', 'Korea, Republic of'), +('59.32.0.0', '59.83.255.255', 991952896, 995360767, 'CN', 'China'), +('59.84.0.0', '59.86.159.255', 995360768, 995532799, 'JP', 'Japan'), +('59.86.160.0', '59.86.191.255', 995532800, 995540991, 'AU', 'Australia'), +('59.86.192.0', '59.86.255.255', 995540992, 995557375, 'KR', 'Korea, Republic of'), +('59.87.0.0', '59.87.255.255', 995557376, 995622911, 'JP', 'Japan'), +('59.88.0.0', '59.99.255.255', 995622912, 996409343, 'IN', 'India'), +('59.100.0.0', '59.102.127.255', 996409344, 996573183, 'AU', 'Australia'), +('59.103.0.0', '59.103.255.255', 996605952, 996671487, 'PK', 'Pakistan'), +('59.104.0.0', '59.105.255.255', 996671488, 996802559, 'TW', 'Taiwan'), +('59.106.0.0', '59.106.255.255', 996802560, 996868095, 'JP', 'Japan'), +('59.107.0.0', '59.111.255.255', 996868096, 997195775, 'CN', 'China'), +('59.112.0.0', '59.127.255.255', 997195776, 998244351, 'TW', 'Taiwan'), +('59.128.0.0', '59.143.255.255', 998244352, 999292927, 'JP', 'Japan'), +('59.144.0.0', '59.145.255.255', 999292928, 999423999, 'IN', 'India'), +('59.146.0.0', '59.147.255.255', 999424000, 999555071, 'JP', 'Japan'), +('59.148.0.0', '59.149.255.255', 999555072, 999686143, 'HK', 'Hong Kong'), +('59.150.0.0', '59.150.255.255', 999686144, 999751679, 'KR', 'Korea, Republic of'), +('59.151.0.0', '59.151.127.255', 999751680, 999784447, 'CN', 'China'), +('59.151.128.0', '59.151.191.255', 999784448, 999800831, 'AP', 'Asia/Pacific Region'), +('59.151.192.0', '59.151.255.255', 999800832, 999817215, 'KR', 'Korea, Republic of'), +('59.152.0.0', '59.152.127.255', 999817216, 999849983, 'BD', 'Bangladesh'), +('59.152.128.0', '59.152.191.255', 999849984, 999866367, 'KR', 'Korea, Republic of'), +('59.152.192.0', '59.152.255.255', 999866368, 999882751, 'HK', 'Hong Kong'), +('59.153.0.0', '59.153.255.255', 999882752, 999948287, 'JP', 'Japan'), +('59.154.0.0', '59.154.255.255', 999948288, 1000013823, 'AU', 'Australia'), +('59.155.0.0', '59.155.255.255', 1000013824, 1000079359, 'CN', 'China'), +('59.156.0.0', '59.159.255.255', 1000079360, 1000341503, 'JP', 'Japan'), +('59.160.0.0', '59.165.255.255', 1000341504, 1000734719, 'IN', 'India'), +('59.166.0.0', '59.166.255.255', 1000734720, 1000800255, 'JP', 'Japan'), +('59.167.0.0', '59.167.255.255', 1000800256, 1000865791, 'AU', 'Australia'), +('59.168.0.0', '59.171.255.255', 1000865792, 1001127935, 'JP', 'Japan'), +('59.172.0.0', '59.175.255.255', 1001127936, 1001390079, 'CN', 'China'), +('59.176.0.0', '59.185.255.255', 1001390080, 1002045439, 'IN', 'India'), +('59.186.0.0', '59.187.255.255', 1002045440, 1002176511, 'KR', 'Korea, Republic of'), +('59.188.0.0', '59.188.255.255', 1002176512, 1002242047, 'HK', 'Hong Kong'), +('59.189.0.0', '59.189.255.255', 1002242048, 1002307583, 'SG', 'Singapore'), +('59.190.0.0', '59.190.255.255', 1002307584, 1002373119, 'JP', 'Japan'), +('59.191.0.0', '59.191.127.255', 1002373120, 1002405887, 'CN', 'China'), +('59.191.128.0', '59.191.191.255', 1002405888, 1002422271, 'JP', 'Japan'), +('59.191.192.0', '59.191.231.255', 1002422272, 1002432511, 'AU', 'Australia'), +('59.191.240.0', '60.31.255.255', 1002434560, 1008730111, 'CN', 'China'), +('60.32.0.0', '60.47.255.255', 1008730112, 1009778687, 'JP', 'Japan'), +('60.48.0.0', '60.54.255.255', 1009778688, 1010237439, 'MY', 'Malaysia'), +('60.55.0.0', '60.55.255.255', 1010237440, 1010302975, 'CN', 'China'), +('60.56.0.0', '60.62.255.255', 1010302976, 1010761727, 'JP', 'Japan'), +('60.63.0.0', '60.63.255.255', 1010761728, 1010827263, 'CN', 'China'), +('60.64.0.0', '60.159.255.255', 1010827264, 1017118719, 'JP', 'Japan'), +('60.160.0.0', '60.191.255.255', 1017118720, 1019215871, 'CN', 'China'), +('60.192.0.0', '60.193.255.255', 1019215872, 1019346943, 'JP', 'Japan'), +('60.194.0.0', '60.195.255.255', 1019346944, 1019478015, 'CN', 'China'), +('60.196.0.0', '60.197.255.255', 1019478016, 1019609087, 'KR', 'Korea, Republic of'), +('60.198.0.0', '60.199.255.255', 1019609088, 1019740159, 'TW', 'Taiwan'), +('60.200.0.0', '60.223.255.255', 1019740160, 1021313023, 'CN', 'China'), +('60.224.0.0', '60.231.255.255', 1021313024, 1021837311, 'AU', 'Australia'), +('60.232.0.0', '60.233.255.255', 1021837312, 1021968383, 'CN', 'China'), +('60.234.0.0', '60.234.49.79', 1021968384, 1021981007, 'NZ', 'New Zealand'), +('60.234.49.80', '60.234.49.95', 1021981008, 1021981023, 'AU', 'Australia'), +('60.234.49.96', '60.234.66.23', 1021981024, 1021985303, 'NZ', 'New Zealand'), +('60.234.66.24', '60.234.66.31', 1021985304, 1021985311, 'AU', 'Australia'), +('60.234.66.32', '60.234.70.191', 1021985312, 1021986495, 'NZ', 'New Zealand'), +('60.234.70.192', '60.234.70.255', 1021986496, 1021986559, 'PA', 'Panama'), +('60.234.71.0', '60.234.122.127', 1021986560, 1021999743, 'NZ', 'New Zealand'), +('60.234.122.128', '60.234.122.159', 1021999744, 1021999775, 'AU', 'Australia'), +('60.234.122.160', '60.234.255.255', 1021999776, 1022033919, 'NZ', 'New Zealand'), +('60.235.0.0', '60.235.255.255', 1022033920, 1022099455, 'CN', 'China'), +('60.236.0.0', '60.239.255.255', 1022099456, 1022361599, 'JP', 'Japan'), +('60.240.0.0', '60.242.255.255', 1022361600, 1022558207, 'AU', 'Australia'), +('60.243.0.0', '60.243.255.255', 1022558208, 1022623743, 'IN', 'India'), +('60.244.0.0', '60.245.127.255', 1022623744, 1022722047, 'TW', 'Taiwan'), +('60.245.128.0', '60.245.255.255', 1022722048, 1022754815, 'CN', 'China'), +('60.247.0.0', '60.247.255.255', 1022820352, 1022885887, 'CN', 'China'), +('60.248.0.0', '60.251.255.255', 1022885888, 1023148031, 'TW', 'Taiwan'), +('60.252.0.0', '60.252.255.255', 1023148032, 1023213567, 'CN', 'China'), +('60.253.96.0', '60.253.127.255', 1023238144, 1023246335, 'ID', 'Indonesia'), +('60.253.128.0', '60.253.255.255', 1023246336, 1023279103, 'CN', 'China'), +('60.254.0.0', '60.254.127.255', 1023279104, 1023311871, 'IN', 'India'), +('60.254.128.0', '60.254.191.255', 1023311872, 1023328255, 'US', 'United States'), +('60.254.192.0', '60.254.255.255', 1023328256, 1023344639, 'JP', 'Japan'), +('60.255.0.0', '60.255.255.255', 1023344640, 1023410175, 'CN', 'China'), +('61.0.0.0', '61.3.255.255', 1023410176, 1023672319, 'IN', 'India'), +('61.4.0.0', '61.4.63.255', 1023672320, 1023688703, 'HK', 'Hong Kong'), +('61.4.80.0', '61.4.95.255', 1023692800, 1023696895, 'CN', 'China'), +('61.4.96.0', '61.4.127.255', 1023696896, 1023705087, 'MY', 'Malaysia'), +('61.4.128.0', '61.4.175.255', 1023705088, 1023717375, 'JP', 'Japan'), +('61.4.176.0', '61.4.191.255', 1023717376, 1023721471, 'CN', 'China'), +('61.4.192.0', '61.4.255.255', 1023721472, 1023737855, 'KR', 'Korea, Republic of'), +('61.5.0.0', '61.5.127.255', 1023737856, 1023770623, 'ID', 'Indonesia'), +('61.5.128.0', '61.5.159.255', 1023770624, 1023778815, 'PK', 'Pakistan'), +('61.5.160.0', '61.5.191.255', 1023778816, 1023787007, 'KR', 'Korea, Republic of'), +('61.5.208.0', '61.5.223.255', 1023791104, 1023795199, 'NC', 'New Caledonia'), +('61.5.224.0', '61.5.255.255', 1023795200, 1023803391, 'JP', 'Japan'), +('61.6.0.0', '61.6.191.255', 1023803392, 1023852543, 'MY', 'Malaysia'), +('61.6.192.0', '61.6.255.255', 1023852544, 1023868927, 'BN', 'Brunei Darussalam'), +('61.7.0.0', '61.7.127.255', 1023868928, 1023901695, 'JP', 'Japan'), +('61.7.128.0', '61.7.255.255', 1023901696, 1023934463, 'TH', 'Thailand'), +('61.8.0.0', '61.8.63.255', 1023934464, 1023950847, 'AU', 'Australia'), +('61.8.64.0', '61.8.79.255', 1023950848, 1023954943, 'ID', 'Indonesia'), +('61.8.80.0', '61.8.95.255', 1023954944, 1023959039, 'JP', 'Japan'), +('61.8.96.0', '61.8.127.255', 1023959040, 1023967231, 'AU', 'Australia'), +('61.8.128.0', '61.8.159.255', 1023967232, 1023975423, 'IN', 'India'), +('61.8.160.0', '61.8.175.255', 1023975424, 1023979519, 'CN', 'China'), +('61.8.176.0', '61.8.191.255', 1023979520, 1023983615, 'AU', 'Australia'), +('61.8.192.0', '61.8.255.255', 1023983616, 1023999999, 'SG', 'Singapore'), +('61.9.0.0', '61.9.127.255', 1024000000, 1024032767, 'PH', 'Philippines'), +('61.9.128.0', '61.9.255.255', 1024032768, 1024065535, 'AU', 'Australia'), +('61.10.0.0', '61.10.255.255', 1024065536, 1024131071, 'HK', 'Hong Kong'), +('61.11.0.0', '61.11.127.255', 1024131072, 1024163839, 'IN', 'India'), +('61.11.128.0', '61.11.207.255', 1024163840, 1024184319, 'JP', 'Japan'), +('61.11.208.0', '61.11.223.255', 1024184320, 1024188415, 'MY', 'Malaysia'), +('61.11.224.0', '61.11.255.255', 1024188416, 1024196607, 'TH', 'Thailand'), +('61.12.0.0', '61.12.127.255', 1024196608, 1024229375, 'IN', 'India'), +('61.12.128.0', '61.12.255.255', 1024229376, 1024262143, 'JP', 'Japan'), +('61.13.0.0', '61.13.255.255', 1024262144, 1024327679, 'SG', 'Singapore'), +('61.14.0.0', '61.14.3.255', 1024327680, 1024328703, 'US', 'United States'), +('61.14.4.0', '61.14.6.63', 1024328704, 1024329279, 'IN', 'India'), +('61.14.6.64', '61.14.6.127', 1024329280, 1024329343, 'US', 'United States'), +('61.14.6.128', '61.14.6.255', 1024329344, 1024329471, 'IN', 'India'), +('61.14.7.0', '61.14.11.255', 1024329472, 1024330751, 'US', 'United States'), +('61.14.12.0', '61.14.12.7', 1024330752, 1024330759, 'IN', 'India'), +('61.14.12.8', '61.14.14.63', 1024330760, 1024331327, 'US', 'United States'), +('61.14.14.64', '61.14.14.255', 1024331328, 1024331519, 'IN', 'India'), +('61.14.15.0', '61.14.15.31', 1024331520, 1024331551, 'US', 'United States'), +('61.14.15.32', '61.14.15.63', 1024331552, 1024331583, 'IN', 'India'), +('61.14.15.64', '61.14.17.255', 1024331584, 1024332287, 'US', 'United States'), +('61.14.18.0', '61.14.18.127', 1024332288, 1024332415, 'IN', 'India'), +('61.14.18.128', '61.14.18.199', 1024332416, 1024332487, 'US', 'United States'), +('61.14.18.200', '61.14.18.207', 1024332488, 1024332495, 'IN', 'India'), +('61.14.18.208', '61.14.20.127', 1024332496, 1024332927, 'US', 'United States'), +('61.14.20.128', '61.14.20.255', 1024332928, 1024333055, 'IN', 'India'), +('61.14.21.0', '61.14.21.191', 1024333056, 1024333247, 'US', 'United States'), +('61.14.21.192', '61.14.21.255', 1024333248, 1024333311, 'HK', 'Hong Kong'), +('61.14.22.0', '61.14.22.55', 1024333312, 1024333367, 'US', 'United States'), +('61.14.22.56', '61.14.22.63', 1024333368, 1024333375, 'IN', 'India'), +('61.14.22.64', '61.14.23.223', 1024333376, 1024333791, 'US', 'United States'), +('61.14.23.224', '61.14.23.255', 1024333792, 1024333823, 'ID', 'Indonesia'), +('61.14.24.0', '61.14.24.127', 1024333824, 1024333951, 'US', 'United States'), +('61.14.24.128', '61.14.24.255', 1024333952, 1024334079, 'IN', 'India'), +('61.14.25.0', '61.14.27.135', 1024334080, 1024334727, 'US', 'United States'), +('61.14.27.136', '61.14.27.143', 1024334728, 1024334735, 'SG', 'Singapore'), +('61.14.27.144', '61.14.27.255', 1024334736, 1024334847, 'US', 'United States'), +('61.14.28.0', '61.14.28.63', 1024334848, 1024334911, 'PH', 'Philippines'), +('61.14.28.64', '61.14.29.7', 1024334912, 1024335111, 'US', 'United States'), +('61.14.29.8', '61.14.29.15', 1024335112, 1024335119, 'CN', 'China'), +('61.14.29.16', '61.14.29.39', 1024335120, 1024335143, 'US', 'United States'), +('61.14.29.40', '61.14.29.47', 1024335144, 1024335151, 'ID', 'Indonesia'), +('61.14.29.48', '61.14.29.63', 1024335152, 1024335167, 'JP', 'Japan'), +('61.14.29.64', '61.14.29.79', 1024335168, 1024335183, 'US', 'United States'), +('61.14.29.80', '61.14.29.95', 1024335184, 1024335199, 'CN', 'China'), +('61.14.29.96', '61.14.31.63', 1024335200, 1024335679, 'US', 'United States'), +('61.14.31.64', '61.14.31.127', 1024335680, 1024335743, 'IN', 'India'), +('61.14.31.128', '61.14.31.135', 1024335744, 1024335751, 'US', 'United States'), +('61.14.31.136', '61.14.31.143', 1024335752, 1024335759, 'AU', 'Australia'), +('61.14.31.144', '61.14.31.191', 1024335760, 1024335807, 'US', 'United States'), +('61.14.31.192', '61.14.31.255', 1024335808, 1024335871, 'IN', 'India'), +('61.14.32.0', '61.14.41.135', 1024335872, 1024338311, 'US', 'United States'), +('61.14.41.136', '61.14.41.143', 1024338312, 1024338319, 'PH', 'Philippines'), +('61.14.41.144', '61.14.42.199', 1024338320, 1024338631, 'US', 'United States'), +('61.14.42.200', '61.14.42.207', 1024338632, 1024338639, 'MY', 'Malaysia'), +('61.14.42.208', '61.14.46.127', 1024338640, 1024339583, 'US', 'United States'), +('61.14.46.128', '61.14.46.255', 1024339584, 1024339711, 'HK', 'Hong Kong'), +('61.14.47.0', '61.14.47.255', 1024339712, 1024339967, 'ID', 'Indonesia'), +('61.14.48.0', '61.14.50.31', 1024339968, 1024340511, 'US', 'United States'), +('61.14.50.32', '61.14.50.39', 1024340512, 1024340519, 'TH', 'Thailand'), +('61.14.50.40', '61.14.63.255', 1024340520, 1024344063, 'US', 'United States'), +('61.14.64.0', '61.14.95.255', 1024344064, 1024352255, 'SG', 'Singapore'), +('61.14.96.0', '61.14.127.255', 1024352256, 1024360447, 'AU', 'Australia'), +('61.14.128.0', '61.14.128.87', 1024360448, 1024360535, 'HK', 'Hong Kong'), +('61.14.128.88', '61.14.128.95', 1024360536, 1024360543, 'AP', 'Asia/Pacific Region'), +('61.14.128.96', '61.14.130.47', 1024360544, 1024361007, 'HK', 'Hong Kong'), +('61.14.130.48', '61.14.130.63', 1024361008, 1024361023, 'AP', 'Asia/Pacific Region'), +('61.14.130.64', '61.14.130.135', 1024361024, 1024361095, 'HK', 'Hong Kong'), +('61.14.130.136', '61.14.130.143', 1024361096, 1024361103, 'AP', 'Asia/Pacific Region'), +('61.14.130.144', '61.14.131.255', 1024361104, 1024361471, 'HK', 'Hong Kong'), +('61.14.132.0', '61.14.132.15', 1024361472, 1024361487, 'TW', 'Taiwan'), +('61.14.132.16', '61.14.132.31', 1024361488, 1024361503, 'AP', 'Asia/Pacific Region'), +('61.14.132.32', '61.14.132.95', 1024361504, 1024361567, 'PH', 'Philippines'), +('61.14.132.96', '61.14.132.127', 1024361568, 1024361599, 'AP', 'Asia/Pacific Region'), +('61.14.132.128', '61.14.132.255', 1024361600, 1024361727, 'PH', 'Philippines'), +('61.14.133.0', '61.14.133.31', 1024361728, 1024361759, 'TW', 'Taiwan'), +('61.14.133.32', '61.14.133.47', 1024361760, 1024361775, 'PH', 'Philippines'), +('61.14.133.48', '61.14.133.63', 1024361776, 1024361791, 'TW', 'Taiwan'), +('61.14.133.64', '61.14.133.79', 1024361792, 1024361807, 'PH', 'Philippines'), +('61.14.133.80', '61.14.134.255', 1024361808, 1024362239, 'TW', 'Taiwan'), +('61.14.135.0', '61.14.135.47', 1024362240, 1024362287, 'MY', 'Malaysia'), +('61.14.135.48', '61.14.135.63', 1024362288, 1024362303, 'SG', 'Singapore'), +('61.14.135.64', '61.14.135.95', 1024362304, 1024362335, 'MY', 'Malaysia'), +('61.14.135.96', '61.14.135.111', 1024362336, 1024362351, 'AP', 'Asia/Pacific Region'), +('61.14.135.112', '61.14.135.159', 1024362352, 1024362399, 'SG', 'Singapore'), +('61.14.135.160', '61.14.135.255', 1024362400, 1024362495, 'AP', 'Asia/Pacific Region'), +('61.14.136.0', '61.14.136.103', 1024362496, 1024362599, 'MY', 'Malaysia'), +('61.14.136.104', '61.14.136.175', 1024362600, 1024362671, 'SG', 'Singapore'), +('61.14.136.176', '61.14.136.191', 1024362672, 1024362687, 'MY', 'Malaysia'), +('61.14.136.192', '61.14.136.207', 1024362688, 1024362703, 'AP', 'Asia/Pacific Region'), +('61.14.136.208', '61.14.136.223', 1024362704, 1024362719, 'MY', 'Malaysia'), +('61.14.136.224', '61.14.136.239', 1024362720, 1024362735, 'SG', 'Singapore'), +('61.14.136.240', '61.14.136.255', 1024362736, 1024362751, 'AP', 'Asia/Pacific Region'), +('61.14.137.0', '61.14.137.7', 1024362752, 1024362759, 'SG', 'Singapore'), +('61.14.137.8', '61.14.137.31', 1024362760, 1024362783, 'MY', 'Malaysia'), +('61.14.137.32', '61.14.137.224', 1024362784, 1024362976, 'SG', 'Singapore'), +('61.14.137.225', '61.14.137.255', 1024362977, 1024363007, 'AP', 'Asia/Pacific Region'), +('61.14.138.0', '61.14.138.7', 1024363008, 1024363015, 'SG', 'Singapore'), +('61.14.138.8', '61.14.138.15', 1024363016, 1024363023, 'AP', 'Asia/Pacific Region'), +('61.14.138.16', '61.14.138.95', 1024363024, 1024363103, 'SG', 'Singapore'), +('61.14.138.96', '61.14.138.103', 1024363104, 1024363111, 'MY', 'Malaysia'), +('61.14.138.104', '61.14.138.191', 1024363112, 1024363199, 'SG', 'Singapore'), +('61.14.138.192', '61.14.138.207', 1024363200, 1024363215, 'MY', 'Malaysia'), +('61.14.138.208', '61.14.139.31', 1024363216, 1024363295, 'SG', 'Singapore'), +('61.14.139.32', '61.14.139.55', 1024363296, 1024363319, 'MY', 'Malaysia'), +('61.14.139.56', '61.14.139.127', 1024363320, 1024363391, 'SG', 'Singapore'), +('61.14.139.128', '61.14.139.159', 1024363392, 1024363423, 'MY', 'Malaysia'), +('61.14.139.160', '61.14.139.175', 1024363424, 1024363439, 'SG', 'Singapore'), +('61.14.139.176', '61.14.139.183', 1024363440, 1024363447, 'MY', 'Malaysia'), +('61.14.139.184', '61.14.139.191', 1024363448, 1024363455, 'AP', 'Asia/Pacific Region'), +('61.14.139.192', '61.14.139.255', 1024363456, 1024363519, 'SG', 'Singapore'), +('61.14.140.0', '61.14.140.39', 1024363520, 1024363559, 'AU', 'Australia'), +('61.14.140.40', '61.14.140.47', 1024363560, 1024363567, 'AP', 'Asia/Pacific Region'), +('61.14.140.48', '61.14.140.255', 1024363568, 1024363775, 'AU', 'Australia'), +('61.14.141.0', '61.14.141.31', 1024363776, 1024363807, 'AP', 'Asia/Pacific Region'), +('61.14.141.32', '61.14.141.223', 1024363808, 1024363999, 'AU', 'Australia'), +('61.14.141.224', '61.14.141.239', 1024364000, 1024364015, 'NZ', 'New Zealand'), +('61.14.141.240', '61.14.141.255', 1024364016, 1024364031, 'AU', 'Australia'), +('61.14.142.0', '61.14.142.31', 1024364032, 1024364063, 'AP', 'Asia/Pacific Region'), +('61.14.142.32', '61.14.142.47', 1024364064, 1024364079, 'AU', 'Australia'), +('61.14.142.48', '61.14.142.63', 1024364080, 1024364095, 'AP', 'Asia/Pacific Region'), +('61.14.142.64', '61.14.142.95', 1024364096, 1024364127, 'AU', 'Australia'), +('61.14.142.96', '61.14.142.255', 1024364128, 1024364287, 'AP', 'Asia/Pacific Region'), +('61.14.143.0', '61.14.143.223', 1024364288, 1024364511, 'AU', 'Australia'), +('61.14.143.224', '61.14.144.255', 1024364512, 1024364799, 'AP', 'Asia/Pacific Region'), +('61.14.145.0', '61.14.145.127', 1024364800, 1024364927, 'MY', 'Malaysia'), +('61.14.145.128', '61.14.147.255', 1024364928, 1024365567, 'AP', 'Asia/Pacific Region'), +('61.14.148.0', '61.14.148.255', 1024365568, 1024365823, 'HK', 'Hong Kong'), +('61.14.149.0', '61.14.150.255', 1024365824, 1024366335, 'PH', 'Philippines'), +('61.14.151.0', '61.14.154.255', 1024366336, 1024367359, 'AP', 'Asia/Pacific Region'), +('61.14.155.0', '61.14.155.255', 1024367360, 1024367615, 'TW', 'Taiwan'), +('61.14.156.0', '61.14.157.255', 1024367616, 1024368127, 'JP', 'Japan'), +('61.14.158.0', '61.14.158.255', 1024368128, 1024368383, 'PH', 'Philippines'), +('61.14.159.0', '61.14.159.255', 1024368384, 1024368639, 'AP', 'Asia/Pacific Region'), +('61.14.160.0', '61.14.162.255', 1024368640, 1024369407, 'MY', 'Malaysia'), +('61.14.163.0', '61.14.163.255', 1024369408, 1024369663, 'AP', 'Asia/Pacific Region'), +('61.14.164.0', '61.14.164.255', 1024369664, 1024369919, 'PH', 'Philippines'), +('61.14.165.0', '61.14.165.255', 1024369920, 1024370175, 'TW', 'Taiwan'), +('61.14.166.0', '61.14.166.255', 1024370176, 1024370431, 'AU', 'Australia'), +('61.14.167.0', '61.14.167.255', 1024370432, 1024370687, 'AP', 'Asia/Pacific Region'), +('61.14.168.0', '61.14.170.255', 1024370688, 1024371455, 'PH', 'Philippines'), +('61.14.171.0', '61.14.171.255', 1024371456, 1024371711, 'JP', 'Japan'), +('61.14.172.0', '61.14.172.255', 1024371712, 1024371967, 'AP', 'Asia/Pacific Region'), +('61.14.173.0', '61.14.173.255', 1024371968, 1024372223, 'JP', 'Japan'), +('61.14.174.0', '61.14.174.255', 1024372224, 1024372479, 'PH', 'Philippines'), +('61.14.175.0', '61.14.175.255', 1024372480, 1024372735, 'HK', 'Hong Kong'), +('61.14.176.0', '61.14.177.255', 1024372736, 1024373247, 'AP', 'Asia/Pacific Region'), +('61.14.178.0', '61.14.178.255', 1024373248, 1024373503, 'PH', 'Philippines'), +('61.14.179.0', '61.14.180.63', 1024373504, 1024373823, 'AP', 'Asia/Pacific Region'), +('61.14.180.64', '61.14.180.127', 1024373824, 1024373887, 'TW', 'Taiwan'), +('61.14.180.128', '61.14.180.255', 1024373888, 1024374015, 'PH', 'Philippines'), +('61.14.181.0', '61.14.184.63', 1024374016, 1024374847, 'AP', 'Asia/Pacific Region'), +('61.14.184.64', '61.14.184.95', 1024374848, 1024374879, 'JP', 'Japan'), +('61.14.184.96', '61.14.184.111', 1024374880, 1024374895, 'AP', 'Asia/Pacific Region'), +('61.14.184.112', '61.14.184.127', 1024374896, 1024374911, 'JP', 'Japan'), +('61.14.184.128', '61.14.184.151', 1024374912, 1024374935, 'AP', 'Asia/Pacific Region'), +('61.14.184.152', '61.14.184.167', 1024374936, 1024374951, 'JP', 'Japan'), +('61.14.184.168', '61.14.184.191', 1024374952, 1024374975, 'AP', 'Asia/Pacific Region'), +('61.14.184.192', '61.14.185.15', 1024374976, 1024375055, 'JP', 'Japan'), +('61.14.185.16', '61.14.185.127', 1024375056, 1024375167, 'AP', 'Asia/Pacific Region'), +('61.14.185.128', '61.14.185.255', 1024375168, 1024375295, 'JP', 'Japan'), +('61.14.186.0', '61.14.186.7', 1024375296, 1024375303, 'AP', 'Asia/Pacific Region'), +('61.14.186.8', '61.14.186.15', 1024375304, 1024375311, 'AU', 'Australia'), +('61.14.186.16', '61.14.186.79', 1024375312, 1024375375, 'AP', 'Asia/Pacific Region'), +('61.14.186.80', '61.14.186.87', 1024375376, 1024375383, 'AU', 'Australia'), +('61.14.186.88', '61.14.186.95', 1024375384, 1024375391, 'AP', 'Asia/Pacific Region'), +('61.14.186.96', '61.14.186.127', 1024375392, 1024375423, 'AU', 'Australia'), +('61.14.186.128', '61.14.186.143', 1024375424, 1024375439, 'AP', 'Asia/Pacific Region'), +('61.14.186.144', '61.14.186.159', 1024375440, 1024375455, 'AU', 'Australia'), +('61.14.186.160', '61.14.186.191', 1024375456, 1024375487, 'AP', 'Asia/Pacific Region'), +('61.14.186.192', '61.14.186.199', 1024375488, 1024375495, 'AU', 'Australia'), +('61.14.186.200', '61.14.187.127', 1024375496, 1024375679, 'AP', 'Asia/Pacific Region'), +('61.14.187.128', '61.14.187.255', 1024375680, 1024375807, 'AU', 'Australia'), +('61.14.188.0', '61.14.188.127', 1024375808, 1024375935, 'TW', 'Taiwan'), +('61.14.188.128', '61.14.189.127', 1024375936, 1024376191, 'AP', 'Asia/Pacific Region'), +('61.14.189.128', '61.14.189.255', 1024376192, 1024376319, 'PH', 'Philippines'), +('61.14.190.0', '61.14.190.127', 1024376320, 1024376447, 'TW', 'Taiwan'), +('61.14.190.128', '61.14.190.159', 1024376448, 1024376479, 'AP', 'Asia/Pacific Region'), +('61.14.190.160', '61.14.190.191', 1024376480, 1024376511, 'PH', 'Philippines'), +('61.14.190.192', '61.14.191.127', 1024376512, 1024376703, 'TW', 'Taiwan'), +('61.14.191.128', '61.14.191.255', 1024376704, 1024376831, 'AP', 'Asia/Pacific Region'), +('61.14.192.0', '61.14.255.255', 1024376832, 1024393215, 'PH', 'Philippines'), +('61.15.0.0', '61.15.255.255', 1024393216, 1024458751, 'HK', 'Hong Kong'), +('61.16.0.0', '61.16.127.255', 1024458752, 1024491519, 'SG', 'Singapore'), +('61.16.128.0', '61.17.255.255', 1024491520, 1024589823, 'IN', 'India'), +('61.18.0.0', '61.18.255.255', 1024589824, 1024655359, 'HK', 'Hong Kong'), +('61.19.0.0', '61.19.255.255', 1024655360, 1024720895, 'TH', 'Thailand'), +('61.20.0.0', '61.20.255.255', 1024720896, 1024786431, 'TW', 'Taiwan'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('61.21.0.0', '61.27.255.255', 1024786432, 1025245183, 'JP', 'Japan'), +('61.28.0.0', '61.28.127.255', 1025245184, 1025277951, 'CN', 'China'), +('61.28.128.0', '61.28.191.255', 1025277952, 1025294335, 'PH', 'Philippines'), +('61.28.192.0', '61.28.192.255', 1025294336, 1025294591, 'JP', 'Japan'), +('61.28.193.0', '61.28.194.255', 1025294592, 1025295103, 'AU', 'Australia'), +('61.28.195.0', '61.28.196.255', 1025295104, 1025295615, 'CN', 'China'), +('61.28.197.0', '61.28.198.255', 1025295616, 1025296127, 'AU', 'Australia'), +('61.28.199.0', '61.28.200.255', 1025296128, 1025296639, 'FR', 'France'), +('61.28.201.0', '61.28.201.255', 1025296640, 1025296895, 'MY', 'Malaysia'), +('61.28.202.0', '61.28.205.255', 1025296896, 1025297919, 'AU', 'Australia'), +('61.28.206.0', '61.28.206.255', 1025297920, 1025298175, 'NZ', 'New Zealand'), +('61.28.207.0', '61.28.223.255', 1025298176, 1025302527, 'AU', 'Australia'), +('61.28.224.0', '61.28.255.255', 1025302528, 1025310719, 'VN', 'Vietnam'), +('61.29.0.0', '61.29.127.255', 1025310720, 1025343487, 'AU', 'Australia'), +('61.29.128.0', '61.29.255.255', 1025343488, 1025376255, 'CN', 'China'), +('61.30.0.0', '61.31.255.255', 1025376256, 1025507327, 'TW', 'Taiwan'), +('61.32.0.0', '61.43.255.255', 1025507328, 1026293759, 'KR', 'Korea, Republic of'), +('61.44.0.0', '61.45.127.255', 1026293760, 1026392063, 'JP', 'Japan'), +('61.45.128.0', '61.45.191.255', 1026392064, 1026408447, 'CN', 'China'), +('61.45.192.0', '61.45.223.255', 1026408448, 1026416639, 'JP', 'Japan'), +('61.45.224.0', '61.45.239.255', 1026416640, 1026420735, 'ID', 'Indonesia'), +('61.46.0.0', '61.46.255.255', 1026424832, 1026490367, 'JP', 'Japan'), +('61.47.0.0', '61.47.127.255', 1026490368, 1026523135, 'TH', 'Thailand'), +('61.47.128.0', '61.47.191.255', 1026523136, 1026539519, 'CN', 'China'), +('61.47.192.0', '61.47.255.255', 1026539520, 1026555903, 'KR', 'Korea, Republic of'), +('61.48.0.0', '61.55.255.255', 1026555904, 1027080191, 'CN', 'China'), +('61.56.0.0', '61.67.255.255', 1027080192, 1027866623, 'TW', 'Taiwan'), +('61.68.0.0', '61.69.255.255', 1027866624, 1027997695, 'AU', 'Australia'), +('61.70.0.0', '61.71.255.255', 1027997696, 1028128767, 'TW', 'Taiwan'), +('61.72.0.0', '61.85.255.255', 1028128768, 1029046271, 'KR', 'Korea, Republic of'), +('61.86.0.0', '61.87.127.255', 1029046272, 1029144575, 'JP', 'Japan'), +('61.87.128.0', '61.87.191.255', 1029144576, 1029160959, 'SG', 'Singapore'), +('61.87.192.0', '61.87.255.255', 1029160960, 1029177343, 'CN', 'China'), +('61.88.0.0', '61.88.255.255', 1029177344, 1029242879, 'AU', 'Australia'), +('61.89.0.0', '61.89.255.255', 1029242880, 1029308415, 'JP', 'Japan'), +('61.90.0.0', '61.91.255.255', 1029308416, 1029439487, 'TH', 'Thailand'), +('61.92.0.0', '61.93.255.255', 1029439488, 1029570559, 'HK', 'Hong Kong'), +('61.94.0.0', '61.94.255.255', 1029570560, 1029636095, 'ID', 'Indonesia'), +('61.95.0.0', '61.95.127.255', 1029636096, 1029668863, 'AU', 'Australia'), +('61.95.128.0', '61.95.255.255', 1029668864, 1029701631, 'IN', 'India'), +('61.96.0.0', '61.111.255.255', 1029701632, 1030750207, 'KR', 'Korea, Republic of'), +('61.112.0.0', '61.127.255.255', 1030750208, 1031798783, 'JP', 'Japan'), +('61.128.0.0', '61.161.83.67', 1031798784, 1033982787, 'CN', 'China'), +('61.161.83.68', '61.161.83.68', 1033982788, 1033982788, 'FR', 'France'), +('61.161.83.69', '61.161.155.55', 1033982789, 1034001207, 'CN', 'China'), +('61.161.155.56', '61.161.155.63', 1034001208, 1034001215, 'FR', 'France'), +('61.161.155.64', '61.191.255.255', 1034001216, 1035993087, 'CN', 'China'), +('61.192.0.0', '61.215.255.255', 1035993088, 1037565951, 'JP', 'Japan'), +('61.216.0.0', '61.216.99.203', 1037565952, 1037591499, 'TW', 'Taiwan'), +('61.216.99.204', '61.216.99.207', 1037591500, 1037591503, 'CN', 'China'), +('61.216.99.208', '61.231.255.255', 1037591504, 1038614527, 'TW', 'Taiwan'), +('61.232.0.0', '61.237.255.255', 1038614528, 1039007743, 'CN', 'China'), +('61.238.0.0', '61.239.255.255', 1039007744, 1039138815, 'HK', 'Hong Kong'), +('61.240.0.0', '61.243.255.255', 1039138816, 1039400959, 'CN', 'China'), +('61.244.0.0', '61.244.255.255', 1039400960, 1039466495, 'HK', 'Hong Kong'), +('61.245.0.0', '61.245.127.255', 1039466496, 1039499263, 'JP', 'Japan'), +('61.245.128.0', '61.245.159.255', 1039499264, 1039507455, 'AP', 'Asia/Pacific Region'), +('61.245.192.0', '61.245.223.255', 1039515648, 1039523839, 'JP', 'Japan'), +('61.245.224.0', '61.245.255.255', 1039523840, 1039532031, 'KR', 'Korea, Republic of'), +('61.246.0.0', '61.246.255.255', 1039532032, 1039597567, 'IN', 'India'), +('61.247.0.0', '61.247.63.255', 1039597568, 1039613951, 'ID', 'Indonesia'), +('61.247.64.0', '61.247.159.255', 1039613952, 1039638527, 'KR', 'Korea, Republic of'), +('61.247.160.0', '61.247.175.255', 1039638528, 1039642623, 'TW', 'Taiwan'), +('61.247.192.0', '61.247.223.255', 1039646720, 1039654911, 'KR', 'Korea, Republic of'), +('61.247.224.0', '61.247.255.255', 1039654912, 1039663103, 'IN', 'India'), +('61.248.0.0', '61.255.255.255', 1039663104, 1040187391, 'KR', 'Korea, Republic of'), +('62.0.0.0', '62.0.255.255', 1040187392, 1040252927, 'IL', 'Israel'), +('62.1.0.0', '62.1.255.255', 1040252928, 1040318463, 'GR', 'Greece'), +('62.2.0.0', '62.2.255.255', 1040318464, 1040383999, 'CH', 'Switzerland'), +('62.3.0.0', '62.3.9.255', 1040384000, 1040386559, 'SA', 'Saudi Arabia'), +('62.3.10.0', '62.3.27.255', 1040386560, 1040391167, 'A2', 'Satellite Provider'), +('62.3.28.0', '62.3.31.255', 1040391168, 1040392191, 'SA', 'Saudi Arabia'), +('62.3.32.0', '62.3.32.255', 1040392192, 1040392447, 'GB', 'United Kingdom'), +('62.3.33.0', '62.3.59.255', 1040392448, 1040399359, 'SA', 'Saudi Arabia'), +('62.3.60.0', '62.3.62.255', 1040399360, 1040400127, 'GB', 'United Kingdom'), +('62.3.63.0', '62.3.63.255', 1040400128, 1040400383, 'SA', 'Saudi Arabia'), +('62.3.64.0', '62.3.127.255', 1040400384, 1040416767, 'GB', 'United Kingdom'), +('62.3.128.0', '62.3.159.255', 1040416768, 1040424959, 'SE', 'Sweden'), +('62.3.160.0', '62.3.191.255', 1040424960, 1040433151, 'PL', 'Poland'), +('62.3.192.0', '62.3.255.255', 1040433152, 1040449535, 'GB', 'United Kingdom'), +('62.4.0.0', '62.4.0.255', 1040449536, 1040449791, 'FR', 'France'), +('62.4.1.0', '62.4.1.255', 1040449792, 1040450047, 'DE', 'Germany'), +('62.4.2.0', '62.4.31.255', 1040450048, 1040457727, 'FR', 'France'), +('62.4.32.0', '62.4.63.255', 1040457728, 1040465919, 'ME', 'Montenegro'), +('62.4.64.0', '62.4.68.127', 1040465920, 1040467071, 'DE', 'Germany'), +('62.4.68.128', '62.4.68.143', 1040467072, 1040467087, 'FR', 'France'), +('62.4.68.144', '62.4.68.159', 1040467088, 1040467103, 'DE', 'Germany'), +('62.4.68.160', '62.4.68.191', 1040467104, 1040467135, 'FR', 'France'), +('62.4.68.192', '62.4.70.127', 1040467136, 1040467583, 'DE', 'Germany'), +('62.4.70.128', '62.4.70.191', 1040467584, 1040467647, 'FR', 'France'), +('62.4.70.192', '62.4.70.255', 1040467648, 1040467711, 'DE', 'Germany'), +('62.4.71.0', '62.4.71.31', 1040467712, 1040467743, 'FR', 'France'), +('62.4.71.32', '62.4.71.47', 1040467744, 1040467759, 'DE', 'Germany'), +('62.4.71.48', '62.4.71.111', 1040467760, 1040467823, 'FR', 'France'), +('62.4.71.112', '62.4.71.223', 1040467824, 1040467935, 'DE', 'Germany'), +('62.4.71.224', '62.4.71.239', 1040467936, 1040467951, 'FR', 'France'), +('62.4.71.240', '62.4.71.255', 1040467952, 1040467967, 'DE', 'Germany'), +('62.4.72.0', '62.4.72.255', 1040467968, 1040468223, 'FR', 'France'), +('62.4.73.0', '62.4.73.7', 1040468224, 1040468231, 'DE', 'Germany'), +('62.4.73.8', '62.4.73.31', 1040468232, 1040468255, 'FR', 'France'), +('62.4.73.32', '62.4.73.39', 1040468256, 1040468263, 'DE', 'Germany'), +('62.4.73.40', '62.4.73.63', 1040468264, 1040468287, 'FR', 'France'), +('62.4.73.64', '62.4.73.191', 1040468288, 1040468415, 'DE', 'Germany'), +('62.4.73.192', '62.4.73.255', 1040468416, 1040468479, 'FR', 'France'), +('62.4.74.0', '62.4.74.255', 1040468480, 1040468735, 'DE', 'Germany'), +('62.4.75.0', '62.4.75.31', 1040468736, 1040468767, 'NL', 'Netherlands'), +('62.4.75.32', '62.4.75.63', 1040468768, 1040468799, 'DE', 'Germany'), +('62.4.75.64', '62.4.75.111', 1040468800, 1040468847, 'NL', 'Netherlands'), +('62.4.75.112', '62.4.75.127', 1040468848, 1040468863, 'DE', 'Germany'), +('62.4.75.128', '62.4.75.255', 1040468864, 1040468991, 'NL', 'Netherlands'), +('62.4.76.0', '62.4.76.63', 1040468992, 1040469055, 'DE', 'Germany'), +('62.4.76.64', '62.4.76.79', 1040469056, 1040469071, 'FR', 'France'), +('62.4.76.80', '62.4.76.95', 1040469072, 1040469087, 'DE', 'Germany'), +('62.4.76.96', '62.4.76.191', 1040469088, 1040469183, 'FR', 'France'), +('62.4.76.192', '62.4.76.223', 1040469184, 1040469215, 'DE', 'Germany'), +('62.4.76.224', '62.4.77.31', 1040469216, 1040469279, 'FR', 'France'), +('62.4.77.32', '62.4.77.63', 1040469280, 1040469311, 'DE', 'Germany'), +('62.4.77.64', '62.4.77.95', 1040469312, 1040469343, 'FR', 'France'), +('62.4.77.96', '62.4.77.127', 1040469344, 1040469375, 'DE', 'Germany'), +('62.4.77.128', '62.4.78.63', 1040469376, 1040469567, 'FR', 'France'), +('62.4.78.64', '62.4.78.127', 1040469568, 1040469631, 'DE', 'Germany'), +('62.4.78.128', '62.4.79.127', 1040469632, 1040469887, 'FR', 'France'), +('62.4.79.128', '62.4.79.143', 1040469888, 1040469903, 'DE', 'Germany'), +('62.4.79.144', '62.4.79.159', 1040469904, 1040469919, 'FR', 'France'), +('62.4.79.160', '62.4.79.207', 1040469920, 1040469967, 'DE', 'Germany'), +('62.4.79.208', '62.4.79.239', 1040469968, 1040469999, 'FR', 'France'), +('62.4.79.240', '62.4.82.255', 1040470000, 1040470783, 'DE', 'Germany'), +('62.4.83.0', '62.4.84.255', 1040470784, 1040471295, 'NL', 'Netherlands'), +('62.4.85.0', '62.4.85.191', 1040471296, 1040471487, 'DE', 'Germany'), +('62.4.85.192', '62.4.86.159', 1040471488, 1040471711, 'NL', 'Netherlands'), +('62.4.86.160', '62.4.86.191', 1040471712, 1040471743, 'DE', 'Germany'), +('62.4.86.192', '62.4.86.223', 1040471744, 1040471775, 'NL', 'Netherlands'), +('62.4.86.224', '62.4.91.159', 1040471776, 1040472991, 'DE', 'Germany'), +('62.4.91.160', '62.4.92.255', 1040472992, 1040473343, 'NL', 'Netherlands'), +('62.4.93.0', '62.4.93.191', 1040473344, 1040473535, 'DE', 'Germany'), +('62.4.93.192', '62.4.93.255', 1040473536, 1040473599, 'NL', 'Netherlands'), +('62.4.94.0', '62.4.94.255', 1040473600, 1040473855, 'DE', 'Germany'), +('62.4.95.0', '62.4.95.255', 1040473856, 1040474111, 'NL', 'Netherlands'), +('62.4.96.0', '62.4.127.255', 1040474112, 1040482303, 'CZ', 'Czech Republic'), +('62.4.128.0', '62.4.255.255', 1040482304, 1040515071, 'BE', 'Belgium'), +('62.5.0.0', '62.5.127.255', 1040515072, 1040547839, 'GB', 'United Kingdom'), +('62.5.128.0', '62.5.255.255', 1040547840, 1040580607, 'RU', 'Russian Federation'), +('62.6.0.0', '62.7.255.255', 1040580608, 1040711679, 'GB', 'United Kingdom'), +('62.8.0.0', '62.8.31.255', 1040711680, 1040719871, 'FR', 'France'), +('62.8.32.0', '62.8.63.255', 1040719872, 1040728063, 'DE', 'Germany'), +('62.8.64.0', '62.8.95.255', 1040728064, 1040736255, 'KE', 'Kenya'), +('62.8.96.0', '62.8.127.255', 1040736256, 1040744447, 'GB', 'United Kingdom'), +('62.8.128.0', '62.8.255.255', 1040744448, 1040777215, 'DE', 'Germany'), +('62.9.0.0', '62.9.255.255', 1040777216, 1040842751, 'IE', 'Ireland'), +('62.10.0.0', '62.10.0.255', 1040842752, 1040843007, 'DE', 'Germany'), +('62.10.1.0', '62.11.255.255', 1040843008, 1040973823, 'IT', 'Italy'), +('62.12.0.0', '62.12.31.255', 1040973824, 1040982015, 'NL', 'Netherlands'), +('62.12.32.0', '62.12.34.103', 1040982016, 1040982631, 'A2', 'Satellite Provider'), +('62.12.34.104', '62.12.34.111', 1040982632, 1040982639, 'DE', 'Germany'), +('62.12.34.112', '62.12.37.255', 1040982640, 1040983551, 'A2', 'Satellite Provider'), +('62.12.38.0', '62.12.38.15', 1040983552, 1040983567, 'NG', 'Nigeria'), +('62.12.38.16', '62.12.39.255', 1040983568, 1040984063, 'A2', 'Satellite Provider'), +('62.12.40.0', '62.12.40.7', 1040984064, 1040984071, 'NG', 'Nigeria'), +('62.12.40.8', '62.12.40.39', 1040984072, 1040984103, 'A2', 'Satellite Provider'), +('62.12.40.40', '62.12.40.87', 1040984104, 1040984151, 'NG', 'Nigeria'), +('62.12.40.88', '62.12.40.95', 1040984152, 1040984159, 'A2', 'Satellite Provider'), +('62.12.40.96', '62.12.40.103', 1040984160, 1040984167, 'UG', 'Uganda'), +('62.12.40.104', '62.12.40.111', 1040984168, 1040984175, 'A2', 'Satellite Provider'), +('62.12.40.112', '62.12.40.119', 1040984176, 1040984183, 'NG', 'Nigeria'), +('62.12.40.120', '62.12.63.255', 1040984184, 1040990207, 'A2', 'Satellite Provider'), +('62.12.64.0', '62.12.79.255', 1040990208, 1040994303, 'CY', 'Cyprus'), +('62.12.80.0', '62.12.81.255', 1040994304, 1040994815, 'RU', 'Russian Federation'), +('62.12.82.0', '62.12.95.255', 1040994816, 1040998399, 'CY', 'Cyprus'), +('62.12.96.0', '62.12.127.255', 1040998400, 1041006591, 'EG', 'Egypt'), +('62.12.128.0', '62.12.255.255', 1041006592, 1041039359, 'CH', 'Switzerland'), +('62.13.0.0', '62.13.47.255', 1041039360, 1041051647, 'SE', 'Sweden'), +('62.13.48.0', '62.13.48.191', 1041051648, 1041051839, 'NO', 'Norway'), +('62.13.48.192', '62.13.49.255', 1041051840, 1041052159, 'SE', 'Sweden'), +('62.13.50.0', '62.13.50.15', 1041052160, 1041052175, 'NO', 'Norway'), +('62.13.50.16', '62.13.127.255', 1041052176, 1041072127, 'SE', 'Sweden'), +('62.13.128.0', '62.13.159.255', 1041072128, 1041080319, 'GB', 'United Kingdom'), +('62.13.160.0', '62.13.191.255', 1041080320, 1041088511, 'IT', 'Italy'), +('62.13.192.0', '62.13.223.255', 1041088512, 1041096703, 'AT', 'Austria'), +('62.13.224.0', '62.15.255.255', 1041096704, 1041235967, 'ES', 'Spain'), +('62.16.0.0', '62.16.31.255', 1041235968, 1041244159, 'UA', 'Ukraine'), +('62.16.32.0', '62.16.63.255', 1041244160, 1041252351, 'RU', 'Russian Federation'), +('62.16.64.0', '62.16.65.255', 1041252352, 1041252863, 'TJ', 'Tajikistan'), +('62.16.66.0', '62.16.66.255', 1041252864, 1041253119, 'RU', 'Russian Federation'), +('62.16.67.0', '62.16.67.255', 1041253120, 1041253375, 'TJ', 'Tajikistan'), +('62.16.68.0', '62.16.127.255', 1041253376, 1041268735, 'RU', 'Russian Federation'), +('62.16.128.0', '62.16.255.255', 1041268736, 1041301503, 'NO', 'Norway'), +('62.17.0.0', '62.17.255.255', 1041301504, 1041367039, 'IE', 'Ireland'), +('62.18.0.0', '62.19.255.255', 1041367040, 1041498111, 'GB', 'United Kingdom'), +('62.20.0.0', '62.20.255.255', 1041498112, 1041563647, 'SE', 'Sweden'), +('62.21.0.0', '62.21.127.255', 1041563648, 1041596415, 'PL', 'Poland'), +('62.21.128.0', '62.21.255.255', 1041596416, 1041629183, 'NL', 'Netherlands'), +('62.22.0.0', '62.22.15.79', 1041629184, 1041633103, 'ES', 'Spain'), +('62.22.15.80', '62.22.15.95', 1041633104, 1041633119, 'GB', 'United Kingdom'), +('62.22.15.96', '62.22.255.255', 1041633120, 1041694719, 'ES', 'Spain'), +('62.23.0.0', '62.23.0.175', 1041694720, 1041694895, 'FR', 'France'), +('62.23.0.176', '62.23.0.191', 1041694896, 1041694911, 'GB', 'United Kingdom'), +('62.23.0.192', '62.23.0.199', 1041694912, 1041694919, 'FR', 'France'), +('62.23.0.200', '62.23.0.223', 1041694920, 1041694943, 'GB', 'United Kingdom'), +('62.23.0.224', '62.23.0.239', 1041694944, 1041694959, 'FR', 'France'), +('62.23.0.240', '62.23.0.255', 1041694960, 1041694975, 'GB', 'United Kingdom'), +('62.23.1.0', '62.23.2.223', 1041694976, 1041695455, 'FR', 'France'), +('62.23.2.224', '62.23.2.255', 1041695456, 1041695487, 'GB', 'United Kingdom'), +('62.23.3.0', '62.23.3.63', 1041695488, 1041695551, 'FR', 'France'), +('62.23.3.64', '62.23.3.79', 1041695552, 1041695567, 'GB', 'United Kingdom'), +('62.23.3.80', '62.23.3.127', 1041695568, 1041695615, 'FR', 'France'), +('62.23.3.128', '62.23.3.215', 1041695616, 1041695703, 'GB', 'United Kingdom'), +('62.23.3.216', '62.23.3.223', 1041695704, 1041695711, 'FR', 'France'), +('62.23.3.224', '62.23.3.255', 1041695712, 1041695743, 'GB', 'United Kingdom'), +('62.23.4.0', '62.23.4.15', 1041695744, 1041695759, 'FR', 'France'), +('62.23.4.16', '62.23.5.23', 1041695760, 1041696023, 'GB', 'United Kingdom'), +('62.23.5.24', '62.23.6.159', 1041696024, 1041696415, 'FR', 'France'), +('62.23.6.160', '62.23.6.175', 1041696416, 1041696431, 'GB', 'United Kingdom'), +('62.23.6.176', '62.23.9.127', 1041696432, 1041697151, 'FR', 'France'), +('62.23.9.128', '62.23.9.131', 1041697152, 1041697155, 'GB', 'United Kingdom'), +('62.23.9.132', '62.23.9.159', 1041697156, 1041697183, 'FR', 'France'), +('62.23.9.160', '62.23.9.175', 1041697184, 1041697199, 'GB', 'United Kingdom'), +('62.23.9.176', '62.23.10.111', 1041697200, 1041697391, 'FR', 'France'), +('62.23.10.112', '62.23.10.127', 1041697392, 1041697407, 'GB', 'United Kingdom'), +('62.23.10.128', '62.23.11.127', 1041697408, 1041697663, 'FR', 'France'), +('62.23.11.128', '62.23.11.135', 1041697664, 1041697671, 'GB', 'United Kingdom'), +('62.23.11.136', '62.23.11.163', 1041697672, 1041697699, 'FR', 'France'), +('62.23.11.164', '62.23.11.167', 1041697700, 1041697703, 'GB', 'United Kingdom'), +('62.23.11.168', '62.23.12.23', 1041697704, 1041697815, 'FR', 'France'), +('62.23.12.24', '62.23.12.31', 1041697816, 1041697823, 'GB', 'United Kingdom'), +('62.23.12.32', '62.23.12.63', 1041697824, 1041697855, 'FR', 'France'), +('62.23.12.64', '62.23.12.71', 1041697856, 1041697863, 'GB', 'United Kingdom'), +('62.23.12.72', '62.23.12.103', 1041697864, 1041697895, 'FR', 'France'), +('62.23.12.104', '62.23.12.111', 1041697896, 1041697903, 'GB', 'United Kingdom'), +('62.23.12.112', '62.23.12.127', 1041697904, 1041697919, 'FR', 'France'), +('62.23.12.128', '62.23.12.191', 1041697920, 1041697983, 'GB', 'United Kingdom'), +('62.23.12.192', '62.23.13.79', 1041697984, 1041698127, 'FR', 'France'), +('62.23.13.80', '62.23.13.95', 1041698128, 1041698143, 'GB', 'United Kingdom'), +('62.23.13.96', '62.23.13.199', 1041698144, 1041698247, 'FR', 'France'), +('62.23.13.200', '62.23.13.207', 1041698248, 1041698255, 'GB', 'United Kingdom'), +('62.23.13.208', '62.23.13.215', 1041698256, 1041698263, 'FR', 'France'), +('62.23.13.216', '62.23.13.223', 1041698264, 1041698271, 'GB', 'United Kingdom'), +('62.23.13.224', '62.23.13.239', 1041698272, 1041698287, 'FR', 'France'), +('62.23.13.240', '62.23.13.255', 1041698288, 1041698303, 'GB', 'United Kingdom'), +('62.23.14.0', '62.23.15.31', 1041698304, 1041698591, 'FR', 'France'), +('62.23.15.32', '62.23.15.47', 1041698592, 1041698607, 'GB', 'United Kingdom'), +('62.23.15.48', '62.23.15.87', 1041698608, 1041698647, 'FR', 'France'), +('62.23.15.88', '62.23.15.103', 1041698648, 1041698663, 'GB', 'United Kingdom'), +('62.23.15.104', '62.23.15.143', 1041698664, 1041698703, 'FR', 'France'), +('62.23.15.144', '62.23.15.159', 1041698704, 1041698719, 'GB', 'United Kingdom'), +('62.23.15.160', '62.23.15.167', 1041698720, 1041698727, 'FR', 'France'), +('62.23.15.168', '62.23.15.175', 1041698728, 1041698735, 'GB', 'United Kingdom'), +('62.23.15.176', '62.23.15.247', 1041698736, 1041698807, 'FR', 'France'), +('62.23.15.248', '62.23.15.255', 1041698808, 1041698815, 'GB', 'United Kingdom'), +('62.23.16.0', '62.23.17.191', 1041698816, 1041699263, 'FR', 'France'), +('62.23.17.192', '62.23.17.199', 1041699264, 1041699271, 'GB', 'United Kingdom'), +('62.23.17.200', '62.23.17.215', 1041699272, 1041699287, 'FR', 'France'), +('62.23.17.216', '62.23.17.223', 1041699288, 1041699295, 'GB', 'United Kingdom'), +('62.23.17.224', '62.23.18.255', 1041699296, 1041699583, 'FR', 'France'), +('62.23.19.0', '62.23.19.7', 1041699584, 1041699591, 'IT', 'Italy'), +('62.23.19.8', '62.23.19.31', 1041699592, 1041699615, 'GB', 'United Kingdom'), +('62.23.19.32', '62.23.19.39', 1041699616, 1041699623, 'FR', 'France'), +('62.23.19.40', '62.23.19.47', 1041699624, 1041699631, 'GB', 'United Kingdom'), +('62.23.19.48', '62.23.19.183', 1041699632, 1041699767, 'FR', 'France'), +('62.23.19.184', '62.23.19.223', 1041699768, 1041699807, 'GB', 'United Kingdom'), +('62.23.19.224', '62.23.22.15', 1041699808, 1041700367, 'FR', 'France'), +('62.23.22.16', '62.23.22.255', 1041700368, 1041700607, 'GB', 'United Kingdom'), +('62.23.23.0', '62.23.23.255', 1041700608, 1041700863, 'FR', 'France'), +('62.23.24.0', '62.23.24.31', 1041700864, 1041700895, 'GB', 'United Kingdom'), +('62.23.24.32', '62.23.24.55', 1041700896, 1041700919, 'FR', 'France'), +('62.23.24.56', '62.23.24.63', 1041700920, 1041700927, 'GB', 'United Kingdom'), +('62.23.24.64', '62.23.24.95', 1041700928, 1041700959, 'FR', 'France'), +('62.23.24.96', '62.23.24.103', 1041700960, 1041700967, 'GB', 'United Kingdom'), +('62.23.24.104', '62.23.24.119', 1041700968, 1041700983, 'FR', 'France'), +('62.23.24.120', '62.23.24.127', 1041700984, 1041700991, 'GB', 'United Kingdom'), +('62.23.24.128', '62.23.24.255', 1041700992, 1041701119, 'FR', 'France'), +('62.23.25.0', '62.23.25.31', 1041701120, 1041701151, 'GB', 'United Kingdom'), +('62.23.25.32', '62.23.25.55', 1041701152, 1041701175, 'FR', 'France'), +('62.23.25.56', '62.23.25.111', 1041701176, 1041701231, 'GB', 'United Kingdom'), +('62.23.25.112', '62.23.25.119', 1041701232, 1041701239, 'FR', 'France'), +('62.23.25.120', '62.23.25.127', 1041701240, 1041701247, 'GB', 'United Kingdom'), +('62.23.25.128', '62.23.25.159', 1041701248, 1041701279, 'FR', 'France'), +('62.23.25.160', '62.23.26.175', 1041701280, 1041701551, 'GB', 'United Kingdom'), +('62.23.26.176', '62.23.26.191', 1041701552, 1041701567, 'FR', 'France'), +('62.23.26.192', '62.23.26.255', 1041701568, 1041701631, 'GB', 'United Kingdom'), +('62.23.27.0', '62.23.27.7', 1041701632, 1041701639, 'FR', 'France'), +('62.23.27.8', '62.23.27.15', 1041701640, 1041701647, 'GB', 'United Kingdom'), +('62.23.27.16', '62.23.27.95', 1041701648, 1041701727, 'FR', 'France'), +('62.23.27.96', '62.23.27.103', 1041701728, 1041701735, 'GB', 'United Kingdom'), +('62.23.27.104', '62.23.27.151', 1041701736, 1041701783, 'FR', 'France'), +('62.23.27.152', '62.23.27.159', 1041701784, 1041701791, 'GB', 'United Kingdom'), +('62.23.27.160', '62.23.27.199', 1041701792, 1041701831, 'FR', 'France'), +('62.23.27.200', '62.23.27.215', 1041701832, 1041701847, 'GB', 'United Kingdom'), +('62.23.27.216', '62.23.27.231', 1041701848, 1041701863, 'FR', 'France'), +('62.23.27.232', '62.23.27.239', 1041701864, 1041701871, 'GB', 'United Kingdom'), +('62.23.27.240', '62.23.27.255', 1041701872, 1041701887, 'FR', 'France'), +('62.23.28.0', '62.23.28.31', 1041701888, 1041701919, 'GB', 'United Kingdom'), +('62.23.28.32', '62.23.28.79', 1041701920, 1041701967, 'FR', 'France'), +('62.23.28.80', '62.23.28.87', 1041701968, 1041701975, 'GB', 'United Kingdom'), +('62.23.28.88', '62.23.28.223', 1041701976, 1041702111, 'FR', 'France'), +('62.23.28.224', '62.23.28.255', 1041702112, 1041702143, 'GB', 'United Kingdom'), +('62.23.29.0', '62.23.29.39', 1041702144, 1041702183, 'FR', 'France'), +('62.23.29.40', '62.23.29.47', 1041702184, 1041702191, 'GB', 'United Kingdom'), +('62.23.29.48', '62.23.29.159', 1041702192, 1041702303, 'FR', 'France'), +('62.23.29.160', '62.23.29.167', 1041702304, 1041702311, 'GB', 'United Kingdom'), +('62.23.29.168', '62.23.29.175', 1041702312, 1041702319, 'FR', 'France'), +('62.23.29.176', '62.23.29.191', 1041702320, 1041702335, 'GB', 'United Kingdom'), +('62.23.29.192', '62.23.29.207', 1041702336, 1041702351, 'FR', 'France'), +('62.23.29.208', '62.23.30.223', 1041702352, 1041702623, 'GB', 'United Kingdom'), +('62.23.30.224', '62.23.30.239', 1041702624, 1041702639, 'FR', 'France'), +('62.23.30.240', '62.23.30.255', 1041702640, 1041702655, 'GB', 'United Kingdom'), +('62.23.31.0', '62.23.31.63', 1041702656, 1041702719, 'FR', 'France'), +('62.23.31.64', '62.23.31.71', 1041702720, 1041702727, 'GB', 'United Kingdom'), +('62.23.31.72', '62.23.31.79', 1041702728, 1041702735, 'FR', 'France'), +('62.23.31.80', '62.23.31.127', 1041702736, 1041702783, 'GB', 'United Kingdom'), +('62.23.31.128', '62.23.31.191', 1041702784, 1041702847, 'FR', 'France'), +('62.23.31.192', '62.23.32.199', 1041702848, 1041703111, 'GB', 'United Kingdom'), +('62.23.32.200', '62.23.32.207', 1041703112, 1041703119, 'FR', 'France'), +('62.23.32.208', '62.23.32.231', 1041703120, 1041703143, 'GB', 'United Kingdom'), +('62.23.32.232', '62.23.32.235', 1041703144, 1041703147, 'FR', 'France'), +('62.23.32.236', '62.23.32.255', 1041703148, 1041703167, 'GB', 'United Kingdom'), +('62.23.33.0', '62.23.34.47', 1041703168, 1041703471, 'FR', 'France'), +('62.23.34.48', '62.23.34.55', 1041703472, 1041703479, 'GB', 'United Kingdom'), +('62.23.34.56', '62.23.34.63', 1041703480, 1041703487, 'FR', 'France'), +('62.23.34.64', '62.23.34.79', 1041703488, 1041703503, 'GB', 'United Kingdom'), +('62.23.34.80', '62.23.34.87', 1041703504, 1041703511, 'FR', 'France'), +('62.23.34.88', '62.23.34.103', 1041703512, 1041703527, 'GB', 'United Kingdom'), +('62.23.34.104', '62.23.34.127', 1041703528, 1041703551, 'FR', 'France'), +('62.23.34.128', '62.23.34.159', 1041703552, 1041703583, 'GB', 'United Kingdom'), +('62.23.34.160', '62.23.34.207', 1041703584, 1041703631, 'FR', 'France'), +('62.23.34.208', '62.23.34.215', 1041703632, 1041703639, 'GB', 'United Kingdom'), +('62.23.34.216', '62.23.35.39', 1041703640, 1041703719, 'FR', 'France'), +('62.23.35.40', '62.23.35.95', 1041703720, 1041703775, 'GB', 'United Kingdom'), +('62.23.35.96', '62.23.35.103', 1041703776, 1041703783, 'FR', 'France'), +('62.23.35.104', '62.23.35.127', 1041703784, 1041703807, 'GB', 'United Kingdom'), +('62.23.35.128', '62.23.35.223', 1041703808, 1041703903, 'FR', 'France'), +('62.23.35.224', '62.23.35.255', 1041703904, 1041703935, 'GB', 'United Kingdom'), +('62.23.36.0', '62.23.36.15', 1041703936, 1041703951, 'FR', 'France'), +('62.23.36.16', '62.23.36.31', 1041703952, 1041703967, 'GB', 'United Kingdom'), +('62.23.36.32', '62.23.36.55', 1041703968, 1041703991, 'FR', 'France'), +('62.23.36.56', '62.23.36.63', 1041703992, 1041703999, 'GB', 'United Kingdom'), +('62.23.36.64', '62.23.36.79', 1041704000, 1041704015, 'FR', 'France'), +('62.23.36.80', '62.23.36.103', 1041704016, 1041704039, 'GB', 'United Kingdom'), +('62.23.36.104', '62.23.36.175', 1041704040, 1041704111, 'FR', 'France'), +('62.23.36.176', '62.23.36.207', 1041704112, 1041704143, 'GB', 'United Kingdom'), +('62.23.36.208', '62.23.36.223', 1041704144, 1041704159, 'FR', 'France'), +('62.23.36.224', '62.23.36.239', 1041704160, 1041704175, 'GB', 'United Kingdom'), +('62.23.36.240', '62.23.37.63', 1041704176, 1041704255, 'FR', 'France'), +('62.23.37.64', '62.23.37.79', 1041704256, 1041704271, 'GB', 'United Kingdom'), +('62.23.37.80', '62.23.37.127', 1041704272, 1041704319, 'FR', 'France'), +('62.23.37.128', '62.23.37.143', 1041704320, 1041704335, 'GB', 'United Kingdom'), +('62.23.37.144', '62.23.37.207', 1041704336, 1041704399, 'FR', 'France'), +('62.23.37.208', '62.23.37.239', 1041704400, 1041704431, 'GB', 'United Kingdom'), +('62.23.37.240', '62.23.37.255', 1041704432, 1041704447, 'FR', 'France'), +('62.23.38.0', '62.23.38.7', 1041704448, 1041704455, 'GB', 'United Kingdom'), +('62.23.38.8', '62.23.38.15', 1041704456, 1041704463, 'FR', 'France'), +('62.23.38.16', '62.23.38.39', 1041704464, 1041704487, 'GB', 'United Kingdom'), +('62.23.38.40', '62.23.38.55', 1041704488, 1041704503, 'FR', 'France'), +('62.23.38.56', '62.23.38.127', 1041704504, 1041704575, 'GB', 'United Kingdom'), +('62.23.38.128', '62.23.38.159', 1041704576, 1041704607, 'FR', 'France'), +('62.23.38.160', '62.23.38.175', 1041704608, 1041704623, 'GB', 'United Kingdom'), +('62.23.38.176', '62.23.38.199', 1041704624, 1041704647, 'FR', 'France'), +('62.23.38.200', '62.23.38.207', 1041704648, 1041704655, 'GB', 'United Kingdom'), +('62.23.38.208', '62.23.38.223', 1041704656, 1041704671, 'FR', 'France'), +('62.23.38.224', '62.23.38.239', 1041704672, 1041704687, 'GB', 'United Kingdom'), +('62.23.38.240', '62.23.38.255', 1041704688, 1041704703, 'FR', 'France'), +('62.23.39.0', '62.23.39.7', 1041704704, 1041704711, 'GB', 'United Kingdom'), +('62.23.39.8', '62.23.39.39', 1041704712, 1041704743, 'FR', 'France'), +('62.23.39.40', '62.23.39.55', 1041704744, 1041704759, 'GB', 'United Kingdom'), +('62.23.39.56', '62.23.39.71', 1041704760, 1041704775, 'FR', 'France'), +('62.23.39.72', '62.23.39.79', 1041704776, 1041704783, 'GB', 'United Kingdom'), +('62.23.39.80', '62.23.39.103', 1041704784, 1041704807, 'FR', 'France'), +('62.23.39.104', '62.23.39.159', 1041704808, 1041704863, 'GB', 'United Kingdom'), +('62.23.39.160', '62.23.39.175', 1041704864, 1041704879, 'FR', 'France'), +('62.23.39.176', '62.23.39.183', 1041704880, 1041704887, 'GB', 'United Kingdom'), +('62.23.39.184', '62.23.39.207', 1041704888, 1041704911, 'FR', 'France'), +('62.23.39.208', '62.23.39.223', 1041704912, 1041704927, 'GB', 'United Kingdom'), +('62.23.39.224', '62.23.41.31', 1041704928, 1041705247, 'FR', 'France'), +('62.23.41.32', '62.23.41.63', 1041705248, 1041705279, 'GB', 'United Kingdom'), +('62.23.41.64', '62.23.41.87', 1041705280, 1041705303, 'FR', 'France'), +('62.23.41.88', '62.23.41.95', 1041705304, 1041705311, 'GB', 'United Kingdom'), +('62.23.41.96', '62.23.41.127', 1041705312, 1041705343, 'FR', 'France'), +('62.23.41.128', '62.23.41.151', 1041705344, 1041705367, 'GB', 'United Kingdom'), +('62.23.41.152', '62.23.41.175', 1041705368, 1041705391, 'FR', 'France'), +('62.23.41.176', '62.23.41.223', 1041705392, 1041705439, 'GB', 'United Kingdom'), +('62.23.41.224', '62.23.41.231', 1041705440, 1041705447, 'FR', 'France'), +('62.23.41.232', '62.23.41.247', 1041705448, 1041705463, 'GB', 'United Kingdom'), +('62.23.41.248', '62.23.41.255', 1041705464, 1041705471, 'FR', 'France'), +('62.23.42.0', '62.23.42.23', 1041705472, 1041705495, 'GB', 'United Kingdom'), +('62.23.42.24', '62.23.42.39', 1041705496, 1041705511, 'FR', 'France'), +('62.23.42.40', '62.23.42.47', 1041705512, 1041705519, 'GB', 'United Kingdom'), +('62.23.42.48', '62.23.42.55', 1041705520, 1041705527, 'FR', 'France'), +('62.23.42.56', '62.23.42.63', 1041705528, 1041705535, 'GB', 'United Kingdom'), +('62.23.42.64', '62.23.42.127', 1041705536, 1041705599, 'FR', 'France'), +('62.23.42.128', '62.23.42.191', 1041705600, 1041705663, 'GB', 'United Kingdom'), +('62.23.42.192', '62.23.42.223', 1041705664, 1041705695, 'FR', 'France'), +('62.23.42.224', '62.23.42.231', 1041705696, 1041705703, 'GB', 'United Kingdom'), +('62.23.42.232', '62.23.42.255', 1041705704, 1041705727, 'FR', 'France'), +('62.23.43.0', '62.23.43.87', 1041705728, 1041705815, 'GB', 'United Kingdom'), +('62.23.43.88', '62.23.43.143', 1041705816, 1041705871, 'FR', 'France'), +('62.23.43.144', '62.23.43.191', 1041705872, 1041705919, 'GB', 'United Kingdom'), +('62.23.43.192', '62.23.43.207', 1041705920, 1041705935, 'FR', 'France'), +('62.23.43.208', '62.23.43.255', 1041705936, 1041705983, 'GB', 'United Kingdom'), +('62.23.44.0', '62.23.44.15', 1041705984, 1041705999, 'FR', 'France'), +('62.23.44.16', '62.23.44.23', 1041706000, 1041706007, 'GB', 'United Kingdom'), +('62.23.44.24', '62.23.44.63', 1041706008, 1041706047, 'FR', 'France'), +('62.23.44.64', '62.23.44.95', 1041706048, 1041706079, 'GB', 'United Kingdom'), +('62.23.44.96', '62.23.44.103', 1041706080, 1041706087, 'FR', 'France'), +('62.23.44.104', '62.23.44.111', 1041706088, 1041706095, 'GB', 'United Kingdom'), +('62.23.44.112', '62.23.44.127', 1041706096, 1041706111, 'FR', 'France'), +('62.23.44.128', '62.23.44.159', 1041706112, 1041706143, 'GB', 'United Kingdom'), +('62.23.44.160', '62.23.44.207', 1041706144, 1041706191, 'FR', 'France'), +('62.23.44.208', '62.23.45.47', 1041706192, 1041706287, 'GB', 'United Kingdom'), +('62.23.45.48', '62.23.45.79', 1041706288, 1041706319, 'FR', 'France'), +('62.23.45.80', '62.23.45.103', 1041706320, 1041706343, 'GB', 'United Kingdom'), +('62.23.45.104', '62.23.45.119', 1041706344, 1041706359, 'FR', 'France'), +('62.23.45.120', '62.23.45.127', 1041706360, 1041706367, 'GB', 'United Kingdom'), +('62.23.45.128', '62.23.45.207', 1041706368, 1041706447, 'FR', 'France'), +('62.23.45.208', '62.23.45.223', 1041706448, 1041706463, 'GB', 'United Kingdom'), +('62.23.45.224', '62.23.45.231', 1041706464, 1041706471, 'FR', 'France'), +('62.23.45.232', '62.23.45.247', 1041706472, 1041706487, 'GB', 'United Kingdom'), +('62.23.45.248', '62.23.45.255', 1041706488, 1041706495, 'FR', 'France'), +('62.23.46.0', '62.23.46.15', 1041706496, 1041706511, 'GB', 'United Kingdom'), +('62.23.46.16', '62.23.46.39', 1041706512, 1041706535, 'FR', 'France'), +('62.23.46.40', '62.23.46.47', 1041706536, 1041706543, 'GB', 'United Kingdom'), +('62.23.46.48', '62.23.46.63', 1041706544, 1041706559, 'FR', 'France'), +('62.23.46.64', '62.23.46.79', 1041706560, 1041706575, 'GB', 'United Kingdom'), +('62.23.46.80', '62.23.46.87', 1041706576, 1041706583, 'FR', 'France'), +('62.23.46.88', '62.23.46.95', 1041706584, 1041706591, 'GB', 'United Kingdom'), +('62.23.46.96', '62.23.46.127', 1041706592, 1041706623, 'FR', 'France'), +('62.23.46.128', '62.23.46.135', 1041706624, 1041706631, 'GB', 'United Kingdom'), +('62.23.46.136', '62.23.47.15', 1041706632, 1041706767, 'FR', 'France'), +('62.23.47.16', '62.23.47.47', 1041706768, 1041706799, 'GB', 'United Kingdom'), +('62.23.47.48', '62.23.47.63', 1041706800, 1041706815, 'FR', 'France'), +('62.23.47.64', '62.23.47.95', 1041706816, 1041706847, 'GB', 'United Kingdom'), +('62.23.47.96', '62.23.47.119', 1041706848, 1041706871, 'FR', 'France'), +('62.23.47.120', '62.23.47.127', 1041706872, 1041706879, 'GB', 'United Kingdom'), +('62.23.47.128', '62.23.47.199', 1041706880, 1041706951, 'FR', 'France'), +('62.23.47.200', '62.23.47.223', 1041706952, 1041706975, 'GB', 'United Kingdom'), +('62.23.47.224', '62.23.47.231', 1041706976, 1041706983, 'FR', 'France'), +('62.23.47.232', '62.23.47.239', 1041706984, 1041706991, 'GB', 'United Kingdom'), +('62.23.47.240', '62.23.47.247', 1041706992, 1041706999, 'FR', 'France'), +('62.23.47.248', '62.23.47.255', 1041707000, 1041707007, 'GB', 'United Kingdom'), +('62.23.48.0', '62.23.49.7', 1041707008, 1041707271, 'FR', 'France'), +('62.23.49.8', '62.23.49.15', 1041707272, 1041707279, 'GB', 'United Kingdom'), +('62.23.49.16', '62.23.49.47', 1041707280, 1041707311, 'FR', 'France'), +('62.23.49.48', '62.23.49.55', 1041707312, 1041707319, 'GB', 'United Kingdom'), +('62.23.49.56', '62.23.49.95', 1041707320, 1041707359, 'FR', 'France'), +('62.23.49.96', '62.23.49.103', 1041707360, 1041707367, 'GB', 'United Kingdom'), +('62.23.49.104', '62.23.49.127', 1041707368, 1041707391, 'FR', 'France'), +('62.23.49.128', '62.23.49.151', 1041707392, 1041707415, 'GB', 'United Kingdom'), +('62.23.49.152', '62.23.49.175', 1041707416, 1041707439, 'FR', 'France'), +('62.23.49.176', '62.23.49.199', 1041707440, 1041707463, 'GB', 'United Kingdom'), +('62.23.49.200', '62.23.49.223', 1041707464, 1041707487, 'FR', 'France'), +('62.23.49.224', '62.23.49.231', 1041707488, 1041707495, 'GB', 'United Kingdom'), +('62.23.49.232', '62.23.50.39', 1041707496, 1041707559, 'FR', 'France'), +('62.23.50.40', '62.23.50.47', 1041707560, 1041707567, 'GB', 'United Kingdom'), +('62.23.50.48', '62.23.50.55', 1041707568, 1041707575, 'FR', 'France'), +('62.23.50.56', '62.23.50.63', 1041707576, 1041707583, 'GB', 'United Kingdom'), +('62.23.50.64', '62.23.50.95', 1041707584, 1041707615, 'FR', 'France'), +('62.23.50.96', '62.23.50.111', 1041707616, 1041707631, 'GB', 'United Kingdom'), +('62.23.50.112', '62.23.50.127', 1041707632, 1041707647, 'FR', 'France'), +('62.23.50.128', '62.23.50.135', 1041707648, 1041707655, 'GB', 'United Kingdom'), +('62.23.50.136', '62.23.50.159', 1041707656, 1041707679, 'FR', 'France'), +('62.23.50.160', '62.23.50.175', 1041707680, 1041707695, 'GB', 'United Kingdom'), +('62.23.50.176', '62.23.50.191', 1041707696, 1041707711, 'FR', 'France'), +('62.23.50.192', '62.23.50.223', 1041707712, 1041707743, 'GB', 'United Kingdom'), +('62.23.50.224', '62.23.51.55', 1041707744, 1041707831, 'FR', 'France'), +('62.23.51.56', '62.23.51.63', 1041707832, 1041707839, 'GB', 'United Kingdom'), +('62.23.51.64', '62.23.51.119', 1041707840, 1041707895, 'FR', 'France'), +('62.23.51.120', '62.23.51.127', 1041707896, 1041707903, 'GB', 'United Kingdom'), +('62.23.51.128', '62.23.51.223', 1041707904, 1041707999, 'FR', 'France'), +('62.23.51.224', '62.23.51.231', 1041708000, 1041708007, 'GB', 'United Kingdom'), +('62.23.51.232', '62.23.53.7', 1041708008, 1041708295, 'FR', 'France'), +('62.23.53.8', '62.23.53.15', 1041708296, 1041708303, 'GB', 'United Kingdom'), +('62.23.53.16', '62.23.53.23', 1041708304, 1041708311, 'FR', 'France'), +('62.23.53.24', '62.23.53.31', 1041708312, 1041708319, 'GB', 'United Kingdom'), +('62.23.53.32', '62.23.53.39', 1041708320, 1041708327, 'FR', 'France'), +('62.23.53.40', '62.23.53.63', 1041708328, 1041708351, 'GB', 'United Kingdom'), +('62.23.53.64', '62.23.53.79', 1041708352, 1041708367, 'FR', 'France'), +('62.23.53.80', '62.23.53.95', 1041708368, 1041708383, 'GB', 'United Kingdom'), +('62.23.53.96', '62.23.53.127', 1041708384, 1041708415, 'FR', 'France'), +('62.23.53.128', '62.23.53.143', 1041708416, 1041708431, 'GB', 'United Kingdom'), +('62.23.53.144', '62.23.53.191', 1041708432, 1041708479, 'FR', 'France'), +('62.23.53.192', '62.23.53.199', 1041708480, 1041708487, 'GB', 'United Kingdom'), +('62.23.53.200', '62.23.53.207', 1041708488, 1041708495, 'FR', 'France'), +('62.23.53.208', '62.23.53.223', 1041708496, 1041708511, 'GB', 'United Kingdom'), +('62.23.53.224', '62.23.54.7', 1041708512, 1041708551, 'FR', 'France'), +('62.23.54.8', '62.23.54.15', 1041708552, 1041708559, 'GB', 'United Kingdom'), +('62.23.54.16', '62.23.54.63', 1041708560, 1041708607, 'FR', 'France'), +('62.23.54.64', '62.23.54.71', 1041708608, 1041708615, 'GB', 'United Kingdom'), +('62.23.54.72', '62.23.54.127', 1041708616, 1041708671, 'FR', 'France'), +('62.23.54.128', '62.23.54.143', 1041708672, 1041708687, 'GB', 'United Kingdom'), +('62.23.54.144', '62.23.54.159', 1041708688, 1041708703, 'FR', 'France'), +('62.23.54.160', '62.23.54.191', 1041708704, 1041708735, 'GB', 'United Kingdom'), +('62.23.54.192', '62.23.54.255', 1041708736, 1041708799, 'FR', 'France'), +('62.23.55.0', '62.23.55.15', 1041708800, 1041708815, 'GB', 'United Kingdom'), +('62.23.55.16', '62.23.55.31', 1041708816, 1041708831, 'FR', 'France'), +('62.23.55.32', '62.23.55.39', 1041708832, 1041708839, 'GB', 'United Kingdom'), +('62.23.55.40', '62.23.55.47', 1041708840, 1041708847, 'FR', 'France'), +('62.23.55.48', '62.23.55.55', 1041708848, 1041708855, 'GB', 'United Kingdom'), +('62.23.55.56', '62.23.55.103', 1041708856, 1041708903, 'FR', 'France'), +('62.23.55.104', '62.23.55.111', 1041708904, 1041708911, 'GB', 'United Kingdom'), +('62.23.55.112', '62.23.55.127', 1041708912, 1041708927, 'FR', 'France'), +('62.23.55.128', '62.23.55.143', 1041708928, 1041708943, 'GB', 'United Kingdom'), +('62.23.55.144', '62.23.55.191', 1041708944, 1041708991, 'FR', 'France'), +('62.23.55.192', '62.23.55.199', 1041708992, 1041708999, 'GB', 'United Kingdom'), +('62.23.55.200', '62.23.55.223', 1041709000, 1041709023, 'FR', 'France'), +('62.23.55.224', '62.23.55.255', 1041709024, 1041709055, 'GB', 'United Kingdom'), +('62.23.56.0', '62.23.57.31', 1041709056, 1041709343, 'FR', 'France'), +('62.23.57.32', '62.23.57.63', 1041709344, 1041709375, 'GB', 'United Kingdom'), +('62.23.57.64', '62.23.57.151', 1041709376, 1041709463, 'FR', 'France'), +('62.23.57.152', '62.23.57.159', 1041709464, 1041709471, 'GB', 'United Kingdom'), +('62.23.57.160', '62.23.58.199', 1041709472, 1041709767, 'FR', 'France'), +('62.23.58.200', '62.23.58.207', 1041709768, 1041709775, 'GB', 'United Kingdom'), +('62.23.58.208', '62.23.58.255', 1041709776, 1041709823, 'FR', 'France'), +('62.23.59.0', '62.23.59.7', 1041709824, 1041709831, 'GB', 'United Kingdom'), +('62.23.59.8', '62.23.59.95', 1041709832, 1041709919, 'FR', 'France'), +('62.23.59.96', '62.23.59.103', 1041709920, 1041709927, 'GB', 'United Kingdom'), +('62.23.59.104', '62.23.59.111', 1041709928, 1041709935, 'FR', 'France'), +('62.23.59.112', '62.23.59.119', 1041709936, 1041709943, 'GB', 'United Kingdom'), +('62.23.59.120', '62.23.59.127', 1041709944, 1041709951, 'FR', 'France'), +('62.23.59.128', '62.23.59.159', 1041709952, 1041709983, 'GB', 'United Kingdom'), +('62.23.59.160', '62.23.59.167', 1041709984, 1041709991, 'FR', 'France'), +('62.23.59.168', '62.23.59.175', 1041709992, 1041709999, 'GB', 'United Kingdom'), +('62.23.59.176', '62.23.59.183', 1041710000, 1041710007, 'FR', 'France'), +('62.23.59.184', '62.23.59.191', 1041710008, 1041710015, 'GB', 'United Kingdom'), +('62.23.59.192', '62.23.59.223', 1041710016, 1041710047, 'FR', 'France'), +('62.23.59.224', '62.23.59.231', 1041710048, 1041710055, 'GB', 'United Kingdom'), +('62.23.59.232', '62.23.59.239', 1041710056, 1041710063, 'FR', 'France'), +('62.23.59.240', '62.23.59.255', 1041710064, 1041710079, 'GB', 'United Kingdom'), +('62.23.60.0', '62.23.61.7', 1041710080, 1041710343, 'FR', 'France'), +('62.23.61.8', '62.23.61.23', 1041710344, 1041710359, 'GB', 'United Kingdom'), +('62.23.61.24', '62.23.61.31', 1041710360, 1041710367, 'FR', 'France'), +('62.23.61.32', '62.23.61.47', 1041710368, 1041710383, 'GB', 'United Kingdom'), +('62.23.61.48', '62.23.61.55', 1041710384, 1041710391, 'FR', 'France'), +('62.23.61.56', '62.23.61.71', 1041710392, 1041710407, 'GB', 'United Kingdom'), +('62.23.61.72', '62.23.61.87', 1041710408, 1041710423, 'FR', 'France'), +('62.23.61.88', '62.23.61.95', 1041710424, 1041710431, 'GB', 'United Kingdom'), +('62.23.61.96', '62.23.61.103', 1041710432, 1041710439, 'FR', 'France'), +('62.23.61.104', '62.23.61.111', 1041710440, 1041710447, 'GB', 'United Kingdom'), +('62.23.61.112', '62.23.61.135', 1041710448, 1041710471, 'FR', 'France'), +('62.23.61.136', '62.23.61.151', 1041710472, 1041710487, 'GB', 'United Kingdom'), +('62.23.61.152', '62.23.61.167', 1041710488, 1041710503, 'FR', 'France'), +('62.23.61.168', '62.23.61.175', 1041710504, 1041710511, 'GB', 'United Kingdom'), +('62.23.61.176', '62.23.61.199', 1041710512, 1041710535, 'FR', 'France'), +('62.23.61.200', '62.23.61.207', 1041710536, 1041710543, 'GB', 'United Kingdom'), +('62.23.61.208', '62.23.61.223', 1041710544, 1041710559, 'FR', 'France'), +('62.23.61.224', '62.23.61.231', 1041710560, 1041710567, 'GB', 'United Kingdom'), +('62.23.61.232', '62.23.61.239', 1041710568, 1041710575, 'FR', 'France'), +('62.23.61.240', '62.23.61.247', 1041710576, 1041710583, 'GB', 'United Kingdom'), +('62.23.61.248', '62.23.62.71', 1041710584, 1041710663, 'FR', 'France'), +('62.23.62.72', '62.23.62.79', 1041710664, 1041710671, 'GB', 'United Kingdom'), +('62.23.62.80', '62.23.62.95', 1041710672, 1041710687, 'FR', 'France'), +('62.23.62.96', '62.23.62.103', 1041710688, 1041710695, 'GB', 'United Kingdom'), +('62.23.62.104', '62.23.62.111', 1041710696, 1041710703, 'FR', 'France'), +('62.23.62.112', '62.23.62.119', 1041710704, 1041710711, 'GB', 'United Kingdom'), +('62.23.62.120', '62.23.62.127', 1041710712, 1041710719, 'FR', 'France'), +('62.23.62.128', '62.23.62.135', 1041710720, 1041710727, 'GB', 'United Kingdom'), +('62.23.62.136', '62.23.62.143', 1041710728, 1041710735, 'FR', 'France'), +('62.23.62.144', '62.23.62.151', 1041710736, 1041710743, 'GB', 'United Kingdom'), +('62.23.62.152', '62.23.62.183', 1041710744, 1041710775, 'FR', 'France'), +('62.23.62.184', '62.23.62.191', 1041710776, 1041710783, 'GB', 'United Kingdom'), +('62.23.62.192', '62.23.62.215', 1041710784, 1041710807, 'FR', 'France'), +('62.23.62.216', '62.23.62.223', 1041710808, 1041710815, 'GB', 'United Kingdom'), +('62.23.62.224', '62.23.65.7', 1041710816, 1041711367, 'FR', 'France'), +('62.23.65.8', '62.23.65.15', 1041711368, 1041711375, 'GB', 'United Kingdom'), +('62.23.65.16', '62.23.65.63', 1041711376, 1041711423, 'FR', 'France'), +('62.23.65.64', '62.23.65.79', 1041711424, 1041711439, 'GB', 'United Kingdom'), +('62.23.65.80', '62.23.65.95', 1041711440, 1041711455, 'FR', 'France'), +('62.23.65.96', '62.23.65.103', 1041711456, 1041711463, 'GB', 'United Kingdom'), +('62.23.65.104', '62.23.65.111', 1041711464, 1041711471, 'FR', 'France'), +('62.23.65.112', '62.23.65.159', 1041711472, 1041711519, 'GB', 'United Kingdom'), +('62.23.65.160', '62.23.65.175', 1041711520, 1041711535, 'FR', 'France'), +('62.23.65.176', '62.23.65.207', 1041711536, 1041711567, 'GB', 'United Kingdom'), +('62.23.65.208', '62.23.65.223', 1041711568, 1041711583, 'FR', 'France'), +('62.23.65.224', '62.23.65.239', 1041711584, 1041711599, 'GB', 'United Kingdom'), +('62.23.65.240', '62.23.67.15', 1041711600, 1041711887, 'FR', 'France'), +('62.23.67.16', '62.23.67.31', 1041711888, 1041711903, 'GB', 'United Kingdom'), +('62.23.67.32', '62.23.67.39', 1041711904, 1041711911, 'FR', 'France'), +('62.23.67.40', '62.23.67.55', 1041711912, 1041711927, 'GB', 'United Kingdom'), +('62.23.67.56', '62.23.67.63', 1041711928, 1041711935, 'FR', 'France'), +('62.23.67.64', '62.23.67.79', 1041711936, 1041711951, 'GB', 'United Kingdom'), +('62.23.67.80', '62.23.67.95', 1041711952, 1041711967, 'FR', 'France'), +('62.23.67.96', '62.23.67.111', 1041711968, 1041711983, 'GB', 'United Kingdom'), +('62.23.67.112', '62.23.69.63', 1041711984, 1041712447, 'FR', 'France'), +('62.23.69.64', '62.23.69.79', 1041712448, 1041712463, 'GB', 'United Kingdom'), +('62.23.69.80', '62.23.71.15', 1041712464, 1041712911, 'FR', 'France'), +('62.23.71.16', '62.23.71.23', 1041712912, 1041712919, 'GB', 'United Kingdom'), +('62.23.71.24', '62.23.71.31', 1041712920, 1041712927, 'FR', 'France'), +('62.23.71.32', '62.23.71.47', 1041712928, 1041712943, 'GB', 'United Kingdom'), +('62.23.71.48', '62.23.71.95', 1041712944, 1041712991, 'FR', 'France'), +('62.23.71.96', '62.23.71.103', 1041712992, 1041712999, 'GB', 'United Kingdom'), +('62.23.71.104', '62.23.71.111', 1041713000, 1041713007, 'FR', 'France'), +('62.23.71.112', '62.23.71.119', 1041713008, 1041713015, 'GB', 'United Kingdom'), +('62.23.71.120', '62.23.71.127', 1041713016, 1041713023, 'FR', 'France'), +('62.23.71.128', '62.23.71.135', 1041713024, 1041713031, 'GB', 'United Kingdom'), +('62.23.71.136', '62.23.71.159', 1041713032, 1041713055, 'FR', 'France'), +('62.23.71.160', '62.23.71.167', 1041713056, 1041713063, 'GB', 'United Kingdom'), +('62.23.71.168', '62.23.71.183', 1041713064, 1041713079, 'FR', 'France'), +('62.23.71.184', '62.23.71.191', 1041713080, 1041713087, 'GB', 'United Kingdom'), +('62.23.71.192', '62.23.71.223', 1041713088, 1041713119, 'FR', 'France'), +('62.23.71.224', '62.23.71.239', 1041713120, 1041713135, 'GB', 'United Kingdom'), +('62.23.71.240', '62.23.71.247', 1041713136, 1041713143, 'FR', 'France'), +('62.23.71.248', '62.23.71.255', 1041713144, 1041713151, 'GB', 'United Kingdom'), +('62.23.72.0', '62.23.73.255', 1041713152, 1041713663, 'FR', 'France'), +('62.23.74.0', '62.23.74.31', 1041713664, 1041713695, 'GB', 'United Kingdom'), +('62.23.74.32', '62.23.74.127', 1041713696, 1041713791, 'FR', 'France'), +('62.23.74.128', '62.23.74.135', 1041713792, 1041713799, 'GB', 'United Kingdom'), +('62.23.74.136', '62.23.74.159', 1041713800, 1041713823, 'FR', 'France'), +('62.23.74.160', '62.23.74.167', 1041713824, 1041713831, 'GB', 'United Kingdom'), +('62.23.74.168', '62.23.74.175', 1041713832, 1041713839, 'FR', 'France'), +('62.23.74.176', '62.23.74.191', 1041713840, 1041713855, 'GB', 'United Kingdom'), +('62.23.74.192', '62.23.74.207', 1041713856, 1041713871, 'FR', 'France'), +('62.23.74.208', '62.23.74.223', 1041713872, 1041713887, 'GB', 'United Kingdom'), +('62.23.74.224', '62.23.74.255', 1041713888, 1041713919, 'FR', 'France'), +('62.23.75.0', '62.23.75.31', 1041713920, 1041713951, 'GB', 'United Kingdom'), +('62.23.75.32', '62.23.75.71', 1041713952, 1041713991, 'FR', 'France'), +('62.23.75.72', '62.23.75.79', 1041713992, 1041713999, 'GB', 'United Kingdom'), +('62.23.75.80', '62.23.75.127', 1041714000, 1041714047, 'FR', 'France'), +('62.23.75.128', '62.23.75.143', 1041714048, 1041714063, 'GB', 'United Kingdom'), +('62.23.75.144', '62.23.75.151', 1041714064, 1041714071, 'FR', 'France'), +('62.23.75.152', '62.23.75.159', 1041714072, 1041714079, 'GB', 'United Kingdom'), +('62.23.75.160', '62.23.75.175', 1041714080, 1041714095, 'FR', 'France'), +('62.23.75.176', '62.23.75.183', 1041714096, 1041714103, 'GB', 'United Kingdom'), +('62.23.75.184', '62.23.76.255', 1041714104, 1041714431, 'FR', 'France'), +('62.23.77.0', '62.23.77.7', 1041714432, 1041714439, 'GB', 'United Kingdom'), +('62.23.77.8', '62.23.77.15', 1041714440, 1041714447, 'FR', 'France'), +('62.23.77.16', '62.23.77.23', 1041714448, 1041714455, 'GB', 'United Kingdom'), +('62.23.77.24', '62.23.77.87', 1041714456, 1041714519, 'FR', 'France'), +('62.23.77.88', '62.23.77.95', 1041714520, 1041714527, 'GB', 'United Kingdom'), +('62.23.77.96', '62.23.77.111', 1041714528, 1041714543, 'FR', 'France'), +('62.23.77.112', '62.23.77.119', 1041714544, 1041714551, 'GB', 'United Kingdom'), +('62.23.77.120', '62.23.77.127', 1041714552, 1041714559, 'FR', 'France'), +('62.23.77.128', '62.23.77.143', 1041714560, 1041714575, 'GB', 'United Kingdom'), +('62.23.77.144', '62.23.77.191', 1041714576, 1041714623, 'FR', 'France'), +('62.23.77.192', '62.23.78.7', 1041714624, 1041714695, 'GB', 'United Kingdom'), +('62.23.78.8', '62.23.78.23', 1041714696, 1041714711, 'FR', 'France'), +('62.23.78.24', '62.23.78.39', 1041714712, 1041714727, 'GB', 'United Kingdom'), +('62.23.78.40', '62.23.78.79', 1041714728, 1041714767, 'FR', 'France'), +('62.23.78.80', '62.23.78.95', 1041714768, 1041714783, 'GB', 'United Kingdom'), +('62.23.78.96', '62.23.78.127', 1041714784, 1041714815, 'FR', 'France'), +('62.23.78.128', '62.23.78.191', 1041714816, 1041714879, 'GB', 'United Kingdom'), +('62.23.78.192', '62.23.78.223', 1041714880, 1041714911, 'FR', 'France'), +('62.23.78.224', '62.23.78.231', 1041714912, 1041714919, 'GB', 'United Kingdom'), +('62.23.78.232', '62.23.78.255', 1041714920, 1041714943, 'FR', 'France'), +('62.23.79.0', '62.23.79.95', 1041714944, 1041715039, 'GB', 'United Kingdom'), +('62.23.79.96', '62.23.79.111', 1041715040, 1041715055, 'FR', 'France'), +('62.23.79.112', '62.23.79.127', 1041715056, 1041715071, 'GB', 'United Kingdom'), +('62.23.79.128', '62.23.79.135', 1041715072, 1041715079, 'FR', 'France'), +('62.23.79.136', '62.23.79.143', 1041715080, 1041715087, 'GB', 'United Kingdom'), +('62.23.79.144', '62.23.79.159', 1041715088, 1041715103, 'FR', 'France'), +('62.23.79.160', '62.23.79.167', 1041715104, 1041715111, 'GB', 'United Kingdom'), +('62.23.79.168', '62.23.79.175', 1041715112, 1041715119, 'FR', 'France'), +('62.23.79.176', '62.23.79.199', 1041715120, 1041715143, 'GB', 'United Kingdom'), +('62.23.79.200', '62.23.79.207', 1041715144, 1041715151, 'FR', 'France'), +('62.23.79.208', '62.23.79.223', 1041715152, 1041715167, 'GB', 'United Kingdom'), +('62.23.79.224', '62.23.79.239', 1041715168, 1041715183, 'FR', 'France'), +('62.23.79.240', '62.23.79.255', 1041715184, 1041715199, 'GB', 'United Kingdom'), +('62.23.80.0', '62.23.81.47', 1041715200, 1041715503, 'FR', 'France'), +('62.23.81.48', '62.23.81.79', 1041715504, 1041715535, 'GB', 'United Kingdom'), +('62.23.81.80', '62.23.81.95', 1041715536, 1041715551, 'FR', 'France'), +('62.23.81.96', '62.23.81.111', 1041715552, 1041715567, 'GB', 'United Kingdom'), +('62.23.81.112', '62.23.81.127', 1041715568, 1041715583, 'FR', 'France'), +('62.23.81.128', '62.23.81.159', 1041715584, 1041715615, 'GB', 'United Kingdom'), +('62.23.81.160', '62.23.81.175', 1041715616, 1041715631, 'FR', 'France'), +('62.23.81.176', '62.23.81.191', 1041715632, 1041715647, 'GB', 'United Kingdom'), +('62.23.81.192', '62.23.81.255', 1041715648, 1041715711, 'FR', 'France'), +('62.23.82.0', '62.23.82.15', 1041715712, 1041715727, 'GB', 'United Kingdom'), +('62.23.82.16', '62.23.82.31', 1041715728, 1041715743, 'FR', 'France'), +('62.23.82.32', '62.23.82.63', 1041715744, 1041715775, 'GB', 'United Kingdom'), +('62.23.82.64', '62.23.82.79', 1041715776, 1041715791, 'FR', 'France'), +('62.23.82.80', '62.23.82.111', 1041715792, 1041715823, 'GB', 'United Kingdom'), +('62.23.82.112', '62.23.82.151', 1041715824, 1041715863, 'FR', 'France'), +('62.23.82.152', '62.23.82.199', 1041715864, 1041715911, 'GB', 'United Kingdom'), +('62.23.82.200', '62.23.82.231', 1041715912, 1041715943, 'FR', 'France'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('62.23.82.232', '62.23.82.239', 1041715944, 1041715951, 'GB', 'United Kingdom'), +('62.23.82.240', '62.23.82.255', 1041715952, 1041715967, 'FR', 'France'), +('62.23.83.0', '62.23.83.47', 1041715968, 1041716015, 'GB', 'United Kingdom'), +('62.23.83.48', '62.23.83.71', 1041716016, 1041716039, 'FR', 'France'), +('62.23.83.72', '62.23.83.95', 1041716040, 1041716063, 'GB', 'United Kingdom'), +('62.23.83.96', '62.23.83.143', 1041716064, 1041716111, 'FR', 'France'), +('62.23.83.144', '62.23.83.255', 1041716112, 1041716223, 'GB', 'United Kingdom'), +('62.23.84.0', '62.23.84.31', 1041716224, 1041716255, 'FR', 'France'), +('62.23.84.32', '62.23.84.63', 1041716256, 1041716287, 'GB', 'United Kingdom'), +('62.23.84.64', '62.23.84.79', 1041716288, 1041716303, 'FR', 'France'), +('62.23.84.80', '62.23.84.95', 1041716304, 1041716319, 'GB', 'United Kingdom'), +('62.23.84.96', '62.23.84.111', 1041716320, 1041716335, 'FR', 'France'), +('62.23.84.112', '62.23.84.119', 1041716336, 1041716343, 'GB', 'United Kingdom'), +('62.23.84.120', '62.23.84.159', 1041716344, 1041716383, 'FR', 'France'), +('62.23.84.160', '62.23.84.175', 1041716384, 1041716399, 'GB', 'United Kingdom'), +('62.23.84.176', '62.23.84.183', 1041716400, 1041716407, 'FR', 'France'), +('62.23.84.184', '62.23.84.191', 1041716408, 1041716415, 'GB', 'United Kingdom'), +('62.23.84.192', '62.23.85.7', 1041716416, 1041716487, 'FR', 'France'), +('62.23.85.8', '62.23.85.47', 1041716488, 1041716527, 'GB', 'United Kingdom'), +('62.23.85.48', '62.23.85.79', 1041716528, 1041716559, 'FR', 'France'), +('62.23.85.80', '62.23.85.127', 1041716560, 1041716607, 'GB', 'United Kingdom'), +('62.23.85.128', '62.23.85.191', 1041716608, 1041716671, 'FR', 'France'), +('62.23.85.192', '62.23.85.223', 1041716672, 1041716703, 'GB', 'United Kingdom'), +('62.23.85.224', '62.23.86.255', 1041716704, 1041716991, 'FR', 'France'), +('62.23.87.0', '62.23.87.15', 1041716992, 1041717007, 'GB', 'United Kingdom'), +('62.23.87.16', '62.23.87.47', 1041717008, 1041717039, 'FR', 'France'), +('62.23.87.48', '62.23.87.111', 1041717040, 1041717103, 'GB', 'United Kingdom'), +('62.23.87.112', '62.23.87.119', 1041717104, 1041717111, 'FR', 'France'), +('62.23.87.120', '62.23.87.127', 1041717112, 1041717119, 'GB', 'United Kingdom'), +('62.23.87.128', '62.23.87.175', 1041717120, 1041717167, 'FR', 'France'), +('62.23.87.176', '62.23.87.191', 1041717168, 1041717183, 'GB', 'United Kingdom'), +('62.23.87.192', '62.23.87.207', 1041717184, 1041717199, 'FR', 'France'), +('62.23.87.208', '62.23.87.255', 1041717200, 1041717247, 'GB', 'United Kingdom'), +('62.23.88.0', '62.23.89.15', 1041717248, 1041717519, 'FR', 'France'), +('62.23.89.16', '62.23.89.23', 1041717520, 1041717527, 'GB', 'United Kingdom'), +('62.23.89.24', '62.23.89.55', 1041717528, 1041717559, 'FR', 'France'), +('62.23.89.56', '62.23.89.63', 1041717560, 1041717567, 'GB', 'United Kingdom'), +('62.23.89.64', '62.23.89.183', 1041717568, 1041717687, 'FR', 'France'), +('62.23.89.184', '62.23.89.191', 1041717688, 1041717695, 'GB', 'United Kingdom'), +('62.23.89.192', '62.23.91.7', 1041717696, 1041718023, 'FR', 'France'), +('62.23.91.8', '62.23.91.15', 1041718024, 1041718031, 'GB', 'United Kingdom'), +('62.23.91.16', '62.23.91.39', 1041718032, 1041718055, 'FR', 'France'), +('62.23.91.40', '62.23.91.47', 1041718056, 1041718063, 'GB', 'United Kingdom'), +('62.23.91.48', '62.23.91.63', 1041718064, 1041718079, 'FR', 'France'), +('62.23.91.64', '62.23.91.79', 1041718080, 1041718095, 'GB', 'United Kingdom'), +('62.23.91.80', '62.23.91.87', 1041718096, 1041718103, 'FR', 'France'), +('62.23.91.88', '62.23.91.95', 1041718104, 1041718111, 'GB', 'United Kingdom'), +('62.23.91.96', '62.23.91.127', 1041718112, 1041718143, 'FR', 'France'), +('62.23.91.128', '62.23.91.143', 1041718144, 1041718159, 'GB', 'United Kingdom'), +('62.23.91.144', '62.23.91.175', 1041718160, 1041718191, 'FR', 'France'), +('62.23.91.176', '62.23.91.199', 1041718192, 1041718215, 'GB', 'United Kingdom'), +('62.23.91.200', '62.23.91.215', 1041718216, 1041718231, 'FR', 'France'), +('62.23.91.216', '62.23.91.239', 1041718232, 1041718255, 'GB', 'United Kingdom'), +('62.23.91.240', '62.23.91.255', 1041718256, 1041718271, 'FR', 'France'), +('62.23.92.0', '62.23.92.39', 1041718272, 1041718311, 'GB', 'United Kingdom'), +('62.23.92.40', '62.23.92.47', 1041718312, 1041718319, 'FR', 'France'), +('62.23.92.48', '62.23.92.55', 1041718320, 1041718327, 'GB', 'United Kingdom'), +('62.23.92.56', '62.23.92.63', 1041718328, 1041718335, 'FR', 'France'), +('62.23.92.64', '62.23.92.79', 1041718336, 1041718351, 'GB', 'United Kingdom'), +('62.23.92.80', '62.23.92.135', 1041718352, 1041718407, 'FR', 'France'), +('62.23.92.136', '62.23.92.183', 1041718408, 1041718455, 'GB', 'United Kingdom'), +('62.23.92.184', '62.23.92.191', 1041718456, 1041718463, 'FR', 'France'), +('62.23.92.192', '62.23.92.207', 1041718464, 1041718479, 'GB', 'United Kingdom'), +('62.23.92.208', '62.23.92.223', 1041718480, 1041718495, 'FR', 'France'), +('62.23.92.224', '62.23.92.231', 1041718496, 1041718503, 'GB', 'United Kingdom'), +('62.23.92.232', '62.23.93.63', 1041718504, 1041718591, 'FR', 'France'), +('62.23.93.64', '62.23.93.79', 1041718592, 1041718607, 'GB', 'United Kingdom'), +('62.23.93.80', '62.23.93.95', 1041718608, 1041718623, 'FR', 'France'), +('62.23.93.96', '62.23.93.111', 1041718624, 1041718639, 'GB', 'United Kingdom'), +('62.23.93.112', '62.23.93.135', 1041718640, 1041718663, 'FR', 'France'), +('62.23.93.136', '62.23.93.143', 1041718664, 1041718671, 'GB', 'United Kingdom'), +('62.23.93.144', '62.23.93.159', 1041718672, 1041718687, 'FR', 'France'), +('62.23.93.160', '62.23.93.175', 1041718688, 1041718703, 'GB', 'United Kingdom'), +('62.23.93.176', '62.23.93.255', 1041718704, 1041718783, 'FR', 'France'), +('62.23.94.0', '62.23.94.15', 1041718784, 1041718799, 'GB', 'United Kingdom'), +('62.23.94.16', '62.23.94.31', 1041718800, 1041718815, 'FR', 'France'), +('62.23.94.32', '62.23.94.47', 1041718816, 1041718831, 'GB', 'United Kingdom'), +('62.23.94.48', '62.23.94.95', 1041718832, 1041718879, 'FR', 'France'), +('62.23.94.96', '62.23.94.127', 1041718880, 1041718911, 'GB', 'United Kingdom'), +('62.23.94.128', '62.23.94.151', 1041718912, 1041718935, 'FR', 'France'), +('62.23.94.152', '62.23.94.159', 1041718936, 1041718943, 'GB', 'United Kingdom'), +('62.23.94.160', '62.23.94.191', 1041718944, 1041718975, 'FR', 'France'), +('62.23.94.192', '62.23.94.207', 1041718976, 1041718991, 'GB', 'United Kingdom'), +('62.23.94.208', '62.23.94.215', 1041718992, 1041718999, 'FR', 'France'), +('62.23.94.216', '62.23.94.223', 1041719000, 1041719007, 'GB', 'United Kingdom'), +('62.23.94.224', '62.23.95.163', 1041719008, 1041719203, 'FR', 'France'), +('62.23.95.164', '62.23.95.167', 1041719204, 1041719207, 'GB', 'United Kingdom'), +('62.23.95.168', '62.23.95.184', 1041719208, 1041719224, 'FR', 'France'), +('62.23.95.185', '62.23.95.187', 1041719225, 1041719227, 'GB', 'United Kingdom'), +('62.23.95.188', '62.23.95.188', 1041719228, 1041719228, 'FR', 'France'), +('62.23.95.189', '62.23.95.191', 1041719229, 1041719231, 'GB', 'United Kingdom'), +('62.23.95.192', '62.23.95.207', 1041719232, 1041719247, 'FR', 'France'), +('62.23.95.208', '62.23.95.215', 1041719248, 1041719255, 'GB', 'United Kingdom'), +('62.23.95.216', '62.23.95.232', 1041719256, 1041719272, 'FR', 'France'), +('62.23.95.233', '62.23.95.239', 1041719273, 1041719279, 'GB', 'United Kingdom'), +('62.23.95.240', '62.23.96.79', 1041719280, 1041719375, 'FR', 'France'), +('62.23.96.80', '62.23.96.111', 1041719376, 1041719407, 'GB', 'United Kingdom'), +('62.23.96.112', '62.23.96.143', 1041719408, 1041719439, 'FR', 'France'), +('62.23.96.144', '62.23.96.191', 1041719440, 1041719487, 'GB', 'United Kingdom'), +('62.23.96.192', '62.23.97.7', 1041719488, 1041719559, 'FR', 'France'), +('62.23.97.8', '62.23.97.15', 1041719560, 1041719567, 'GB', 'United Kingdom'), +('62.23.97.16', '62.23.97.31', 1041719568, 1041719583, 'FR', 'France'), +('62.23.97.32', '62.23.97.79', 1041719584, 1041719631, 'GB', 'United Kingdom'), +('62.23.97.80', '62.23.97.95', 1041719632, 1041719647, 'FR', 'France'), +('62.23.97.96', '62.23.97.111', 1041719648, 1041719663, 'GB', 'United Kingdom'), +('62.23.97.112', '62.23.97.127', 1041719664, 1041719679, 'FR', 'France'), +('62.23.97.128', '62.23.97.159', 1041719680, 1041719711, 'GB', 'United Kingdom'), +('62.23.97.160', '62.23.97.191', 1041719712, 1041719743, 'FR', 'France'), +('62.23.97.192', '62.23.97.207', 1041719744, 1041719759, 'GB', 'United Kingdom'), +('62.23.97.208', '62.23.97.255', 1041719760, 1041719807, 'FR', 'France'), +('62.23.98.0', '62.23.98.47', 1041719808, 1041719855, 'GB', 'United Kingdom'), +('62.23.98.48', '62.23.98.71', 1041719856, 1041719879, 'FR', 'France'), +('62.23.98.72', '62.23.98.95', 1041719880, 1041719903, 'GB', 'United Kingdom'), +('62.23.98.96', '62.23.98.111', 1041719904, 1041719919, 'FR', 'France'), +('62.23.98.112', '62.23.98.127', 1041719920, 1041719935, 'GB', 'United Kingdom'), +('62.23.98.128', '62.23.98.143', 1041719936, 1041719951, 'FR', 'France'), +('62.23.98.144', '62.23.98.159', 1041719952, 1041719967, 'GB', 'United Kingdom'), +('62.23.98.160', '62.23.98.207', 1041719968, 1041720015, 'FR', 'France'), +('62.23.98.208', '62.23.98.223', 1041720016, 1041720031, 'GB', 'United Kingdom'), +('62.23.98.224', '62.23.99.15', 1041720032, 1041720079, 'FR', 'France'), +('62.23.99.16', '62.23.99.23', 1041720080, 1041720087, 'GB', 'United Kingdom'), +('62.23.99.24', '62.23.100.31', 1041720088, 1041720351, 'FR', 'France'), +('62.23.100.32', '62.23.100.47', 1041720352, 1041720367, 'GB', 'United Kingdom'), +('62.23.100.48', '62.23.100.199', 1041720368, 1041720519, 'FR', 'France'), +('62.23.100.200', '62.23.100.207', 1041720520, 1041720527, 'GB', 'United Kingdom'), +('62.23.100.208', '62.23.100.215', 1041720528, 1041720535, 'FR', 'France'), +('62.23.100.216', '62.23.100.223', 1041720536, 1041720543, 'GB', 'United Kingdom'), +('62.23.100.224', '62.23.100.231', 1041720544, 1041720551, 'FR', 'France'), +('62.23.100.232', '62.23.100.239', 1041720552, 1041720559, 'GB', 'United Kingdom'), +('62.23.100.240', '62.23.100.247', 1041720560, 1041720567, 'FR', 'France'), +('62.23.100.248', '62.23.101.31', 1041720568, 1041720607, 'GB', 'United Kingdom'), +('62.23.101.32', '62.23.101.39', 1041720608, 1041720615, 'FR', 'France'), +('62.23.101.40', '62.23.101.63', 1041720616, 1041720639, 'GB', 'United Kingdom'), +('62.23.101.64', '62.23.101.111', 1041720640, 1041720687, 'FR', 'France'), +('62.23.101.112', '62.23.101.127', 1041720688, 1041720703, 'GB', 'United Kingdom'), +('62.23.101.128', '62.23.101.143', 1041720704, 1041720719, 'FR', 'France'), +('62.23.101.144', '62.23.101.159', 1041720720, 1041720735, 'GB', 'United Kingdom'), +('62.23.101.160', '62.23.101.175', 1041720736, 1041720751, 'FR', 'France'), +('62.23.101.176', '62.23.101.191', 1041720752, 1041720767, 'GB', 'United Kingdom'), +('62.23.101.192', '62.23.101.255', 1041720768, 1041720831, 'FR', 'France'), +('62.23.102.0', '62.23.102.15', 1041720832, 1041720847, 'GB', 'United Kingdom'), +('62.23.102.16', '62.23.102.63', 1041720848, 1041720895, 'FR', 'France'), +('62.23.102.64', '62.23.102.95', 1041720896, 1041720927, 'GB', 'United Kingdom'), +('62.23.102.96', '62.23.102.127', 1041720928, 1041720959, 'FR', 'France'), +('62.23.102.128', '62.23.102.175', 1041720960, 1041721007, 'GB', 'United Kingdom'), +('62.23.102.176', '62.23.102.191', 1041721008, 1041721023, 'FR', 'France'), +('62.23.102.192', '62.23.102.255', 1041721024, 1041721087, 'GB', 'United Kingdom'), +('62.23.103.0', '62.23.103.255', 1041721088, 1041721343, 'FR', 'France'), +('62.23.104.0', '62.23.104.31', 1041721344, 1041721375, 'GB', 'United Kingdom'), +('62.23.104.32', '62.23.104.47', 1041721376, 1041721391, 'FR', 'France'), +('62.23.104.48', '62.23.104.95', 1041721392, 1041721439, 'GB', 'United Kingdom'), +('62.23.104.96', '62.23.104.175', 1041721440, 1041721519, 'FR', 'France'), +('62.23.104.176', '62.23.104.255', 1041721520, 1041721599, 'GB', 'United Kingdom'), +('62.23.105.0', '62.23.105.127', 1041721600, 1041721727, 'FR', 'France'), +('62.23.105.128', '62.23.105.191', 1041721728, 1041721791, 'GB', 'United Kingdom'), +('62.23.105.192', '62.23.105.207', 1041721792, 1041721807, 'FR', 'France'), +('62.23.105.208', '62.23.105.255', 1041721808, 1041721855, 'GB', 'United Kingdom'), +('62.23.106.0', '62.23.107.7', 1041721856, 1041722119, 'FR', 'France'), +('62.23.107.8', '62.23.107.15', 1041722120, 1041722127, 'GB', 'United Kingdom'), +('62.23.107.16', '62.23.107.23', 1041722128, 1041722135, 'FR', 'France'), +('62.23.107.24', '62.23.107.79', 1041722136, 1041722191, 'GB', 'United Kingdom'), +('62.23.107.80', '62.23.107.111', 1041722192, 1041722223, 'FR', 'France'), +('62.23.107.112', '62.23.107.167', 1041722224, 1041722279, 'GB', 'United Kingdom'), +('62.23.107.168', '62.23.107.175', 1041722280, 1041722287, 'FR', 'France'), +('62.23.107.176', '62.23.108.15', 1041722288, 1041722383, 'GB', 'United Kingdom'), +('62.23.108.16', '62.23.108.23', 1041722384, 1041722391, 'FR', 'France'), +('62.23.108.24', '62.23.108.31', 1041722392, 1041722399, 'GB', 'United Kingdom'), +('62.23.108.32', '62.23.108.47', 1041722400, 1041722415, 'FR', 'France'), +('62.23.108.48', '62.23.108.63', 1041722416, 1041722431, 'GB', 'United Kingdom'), +('62.23.108.64', '62.23.108.95', 1041722432, 1041722463, 'FR', 'France'), +('62.23.108.96', '62.23.108.143', 1041722464, 1041722511, 'GB', 'United Kingdom'), +('62.23.108.144', '62.23.108.167', 1041722512, 1041722535, 'FR', 'France'), +('62.23.108.168', '62.23.108.183', 1041722536, 1041722551, 'GB', 'United Kingdom'), +('62.23.108.184', '62.23.108.199', 1041722552, 1041722567, 'FR', 'France'), +('62.23.108.200', '62.23.108.207', 1041722568, 1041722575, 'GB', 'United Kingdom'), +('62.23.108.208', '62.23.108.215', 1041722576, 1041722583, 'FR', 'France'), +('62.23.108.216', '62.23.108.255', 1041722584, 1041722623, 'GB', 'United Kingdom'), +('62.23.109.0', '62.23.109.31', 1041722624, 1041722655, 'FR', 'France'), +('62.23.109.32', '62.23.109.39', 1041722656, 1041722663, 'GB', 'United Kingdom'), +('62.23.109.40', '62.23.109.231', 1041722664, 1041722855, 'FR', 'France'), +('62.23.109.232', '62.23.109.239', 1041722856, 1041722863, 'GB', 'United Kingdom'), +('62.23.109.240', '62.23.109.255', 1041722864, 1041722879, 'FR', 'France'), +('62.23.110.0', '62.23.110.7', 1041722880, 1041722887, 'GB', 'United Kingdom'), +('62.23.110.8', '62.23.110.47', 1041722888, 1041722927, 'FR', 'France'), +('62.23.110.48', '62.23.110.55', 1041722928, 1041722935, 'GB', 'United Kingdom'), +('62.23.110.56', '62.23.110.63', 1041722936, 1041722943, 'FR', 'France'), +('62.23.110.64', '62.23.110.127', 1041722944, 1041723007, 'GB', 'United Kingdom'), +('62.23.110.128', '62.23.110.151', 1041723008, 1041723031, 'FR', 'France'), +('62.23.110.152', '62.23.110.255', 1041723032, 1041723135, 'GB', 'United Kingdom'), +('62.23.111.0', '62.23.111.31', 1041723136, 1041723167, 'FR', 'France'), +('62.23.111.32', '62.23.111.39', 1041723168, 1041723175, 'GB', 'United Kingdom'), +('62.23.111.40', '62.23.111.55', 1041723176, 1041723191, 'FR', 'France'), +('62.23.111.56', '62.23.111.63', 1041723192, 1041723199, 'GB', 'United Kingdom'), +('62.23.111.64', '62.23.111.71', 1041723200, 1041723207, 'FR', 'France'), +('62.23.111.72', '62.23.111.79', 1041723208, 1041723215, 'GB', 'United Kingdom'), +('62.23.111.80', '62.23.111.159', 1041723216, 1041723295, 'FR', 'France'), +('62.23.111.160', '62.23.111.255', 1041723296, 1041723391, 'GB', 'United Kingdom'), +('62.23.112.0', '62.23.113.63', 1041723392, 1041723711, 'FR', 'France'), +('62.23.113.64', '62.23.113.255', 1041723712, 1041723903, 'GB', 'United Kingdom'), +('62.23.114.0', '62.23.116.47', 1041723904, 1041724463, 'FR', 'France'), +('62.23.116.48', '62.23.116.63', 1041724464, 1041724479, 'GB', 'United Kingdom'), +('62.23.116.64', '62.23.116.95', 1041724480, 1041724511, 'FR', 'France'), +('62.23.116.96', '62.23.116.111', 1041724512, 1041724527, 'GB', 'United Kingdom'), +('62.23.116.112', '62.23.116.175', 1041724528, 1041724591, 'FR', 'France'), +('62.23.116.176', '62.23.116.191', 1041724592, 1041724607, 'GB', 'United Kingdom'), +('62.23.116.192', '62.23.116.255', 1041724608, 1041724671, 'FR', 'France'), +('62.23.117.0', '62.23.117.255', 1041724672, 1041724927, 'GB', 'United Kingdom'), +('62.23.118.0', '62.23.118.79', 1041724928, 1041725007, 'FR', 'France'), +('62.23.118.80', '62.23.118.95', 1041725008, 1041725023, 'GB', 'United Kingdom'), +('62.23.118.96', '62.23.118.103', 1041725024, 1041725031, 'FR', 'France'), +('62.23.118.104', '62.23.118.111', 1041725032, 1041725039, 'GB', 'United Kingdom'), +('62.23.118.112', '62.23.118.207', 1041725040, 1041725135, 'FR', 'France'), +('62.23.118.208', '62.23.118.239', 1041725136, 1041725167, 'GB', 'United Kingdom'), +('62.23.118.240', '62.23.118.255', 1041725168, 1041725183, 'FR', 'France'), +('62.23.119.0', '62.23.119.47', 1041725184, 1041725231, 'GB', 'United Kingdom'), +('62.23.119.48', '62.23.119.71', 1041725232, 1041725255, 'FR', 'France'), +('62.23.119.72', '62.23.119.87', 1041725256, 1041725271, 'GB', 'United Kingdom'), +('62.23.119.88', '62.23.119.159', 1041725272, 1041725343, 'FR', 'France'), +('62.23.119.160', '62.23.119.223', 1041725344, 1041725407, 'GB', 'United Kingdom'), +('62.23.119.224', '62.23.121.7', 1041725408, 1041725703, 'FR', 'France'), +('62.23.121.8', '62.23.121.15', 1041725704, 1041725711, 'GB', 'United Kingdom'), +('62.23.121.16', '62.23.121.103', 1041725712, 1041725799, 'FR', 'France'), +('62.23.121.104', '62.23.121.111', 1041725800, 1041725807, 'GB', 'United Kingdom'), +('62.23.121.112', '62.23.121.119', 1041725808, 1041725815, 'FR', 'France'), +('62.23.121.120', '62.23.121.127', 1041725816, 1041725823, 'GB', 'United Kingdom'), +('62.23.121.128', '62.23.122.31', 1041725824, 1041725983, 'FR', 'France'), +('62.23.122.32', '62.23.122.47', 1041725984, 1041725999, 'GB', 'United Kingdom'), +('62.23.122.48', '62.23.122.111', 1041726000, 1041726063, 'FR', 'France'), +('62.23.122.112', '62.23.122.127', 1041726064, 1041726079, 'GB', 'United Kingdom'), +('62.23.122.128', '62.23.122.175', 1041726080, 1041726127, 'FR', 'France'), +('62.23.122.176', '62.23.122.199', 1041726128, 1041726151, 'GB', 'United Kingdom'), +('62.23.122.200', '62.23.122.207', 1041726152, 1041726159, 'FR', 'France'), +('62.23.122.208', '62.23.122.215', 1041726160, 1041726167, 'GB', 'United Kingdom'), +('62.23.122.216', '62.23.124.15', 1041726168, 1041726479, 'FR', 'France'), +('62.23.124.16', '62.23.124.79', 1041726480, 1041726543, 'GB', 'United Kingdom'), +('62.23.124.80', '62.23.124.95', 1041726544, 1041726559, 'FR', 'France'), +('62.23.124.96', '62.23.124.127', 1041726560, 1041726591, 'GB', 'United Kingdom'), +('62.23.124.128', '62.23.124.183', 1041726592, 1041726647, 'FR', 'France'), +('62.23.124.184', '62.23.124.191', 1041726648, 1041726655, 'GB', 'United Kingdom'), +('62.23.124.192', '62.23.124.207', 1041726656, 1041726671, 'FR', 'France'), +('62.23.124.208', '62.23.124.223', 1041726672, 1041726687, 'GB', 'United Kingdom'), +('62.23.124.224', '62.23.125.15', 1041726688, 1041726735, 'FR', 'France'), +('62.23.125.16', '62.23.125.31', 1041726736, 1041726751, 'GB', 'United Kingdom'), +('62.23.125.32', '62.23.125.127', 1041726752, 1041726847, 'FR', 'France'), +('62.23.125.128', '62.23.125.135', 1041726848, 1041726855, 'GB', 'United Kingdom'), +('62.23.125.136', '62.23.125.159', 1041726856, 1041726879, 'FR', 'France'), +('62.23.125.160', '62.23.125.183', 1041726880, 1041726903, 'GB', 'United Kingdom'), +('62.23.125.184', '62.23.127.7', 1041726904, 1041727239, 'FR', 'France'), +('62.23.127.8', '62.23.127.15', 1041727240, 1041727247, 'GB', 'United Kingdom'), +('62.23.127.16', '62.23.127.255', 1041727248, 1041727487, 'FR', 'France'), +('62.23.128.0', '62.23.130.47', 1041727488, 1041728047, 'GB', 'United Kingdom'), +('62.23.130.48', '62.23.130.63', 1041728048, 1041728063, 'FR', 'France'), +('62.23.130.64', '62.23.130.95', 1041728064, 1041728095, 'GB', 'United Kingdom'), +('62.23.130.96', '62.23.130.111', 1041728096, 1041728111, 'FR', 'France'), +('62.23.130.112', '62.23.130.127', 1041728112, 1041728127, 'GB', 'United Kingdom'), +('62.23.130.128', '62.23.130.255', 1041728128, 1041728255, 'FR', 'France'), +('62.23.131.0', '62.23.131.255', 1041728256, 1041728511, 'GB', 'United Kingdom'), +('62.23.132.0', '62.23.133.119', 1041728512, 1041728887, 'FR', 'France'), +('62.23.133.120', '62.23.133.127', 1041728888, 1041728895, 'GB', 'United Kingdom'), +('62.23.133.128', '62.23.133.255', 1041728896, 1041729023, 'FR', 'France'), +('62.23.134.0', '62.23.135.111', 1041729024, 1041729391, 'GB', 'United Kingdom'), +('62.23.135.112', '62.23.135.151', 1041729392, 1041729431, 'FR', 'France'), +('62.23.135.152', '62.23.135.183', 1041729432, 1041729463, 'GB', 'United Kingdom'), +('62.23.135.184', '62.23.135.223', 1041729464, 1041729503, 'FR', 'France'), +('62.23.135.224', '62.23.135.255', 1041729504, 1041729535, 'GB', 'United Kingdom'), +('62.23.136.0', '62.23.136.25', 1041729536, 1041729561, 'FR', 'France'), +('62.23.136.26', '62.23.136.28', 1041729562, 1041729564, 'GB', 'United Kingdom'), +('62.23.136.29', '62.23.136.30', 1041729565, 1041729566, 'FR', 'France'), +('62.23.136.31', '62.23.136.31', 1041729567, 1041729567, 'GB', 'United Kingdom'), +('62.23.136.32', '62.23.136.79', 1041729568, 1041729615, 'FR', 'France'), +('62.23.136.80', '62.23.136.87', 1041729616, 1041729623, 'GB', 'United Kingdom'), +('62.23.136.88', '62.23.136.127', 1041729624, 1041729663, 'FR', 'France'), +('62.23.136.128', '62.23.137.47', 1041729664, 1041729839, 'GB', 'United Kingdom'), +('62.23.137.48', '62.23.137.79', 1041729840, 1041729871, 'FR', 'France'), +('62.23.137.80', '62.23.137.95', 1041729872, 1041729887, 'GB', 'United Kingdom'), +('62.23.137.96', '62.23.137.135', 1041729888, 1041729927, 'FR', 'France'), +('62.23.137.136', '62.23.137.223', 1041729928, 1041730015, 'GB', 'United Kingdom'), +('62.23.137.224', '62.23.137.239', 1041730016, 1041730031, 'FR', 'France'), +('62.23.137.240', '62.23.137.255', 1041730032, 1041730047, 'GB', 'United Kingdom'), +('62.23.138.0', '62.23.138.39', 1041730048, 1041730087, 'FR', 'France'), +('62.23.138.40', '62.23.138.47', 1041730088, 1041730095, 'GB', 'United Kingdom'), +('62.23.138.48', '62.23.138.127', 1041730096, 1041730175, 'FR', 'France'), +('62.23.138.128', '62.23.138.135', 1041730176, 1041730183, 'GB', 'United Kingdom'), +('62.23.138.136', '62.23.138.191', 1041730184, 1041730239, 'FR', 'France'), +('62.23.138.192', '62.23.138.199', 1041730240, 1041730247, 'GB', 'United Kingdom'), +('62.23.138.200', '62.23.140.79', 1041730248, 1041730639, 'FR', 'France'), +('62.23.140.80', '62.23.140.95', 1041730640, 1041730655, 'GB', 'United Kingdom'), +('62.23.140.96', '62.23.145.63', 1041730656, 1041731903, 'FR', 'France'), +('62.23.145.64', '62.23.145.95', 1041731904, 1041731935, 'GB', 'United Kingdom'), +('62.23.145.96', '62.23.145.127', 1041731936, 1041731967, 'FR', 'France'), +('62.23.145.128', '62.23.145.191', 1041731968, 1041732031, 'GB', 'United Kingdom'), +('62.23.145.192', '62.23.145.215', 1041732032, 1041732055, 'FR', 'France'), +('62.23.145.216', '62.23.145.223', 1041732056, 1041732063, 'GB', 'United Kingdom'), +('62.23.145.224', '62.23.145.255', 1041732064, 1041732095, 'FR', 'France'), +('62.23.146.0', '62.23.146.15', 1041732096, 1041732111, 'GB', 'United Kingdom'), +('62.23.146.16', '62.23.146.23', 1041732112, 1041732119, 'FR', 'France'), +('62.23.146.24', '62.23.146.95', 1041732120, 1041732191, 'GB', 'United Kingdom'), +('62.23.146.96', '62.23.146.159', 1041732192, 1041732255, 'FR', 'France'), +('62.23.146.160', '62.23.146.199', 1041732256, 1041732295, 'GB', 'United Kingdom'), +('62.23.146.200', '62.23.146.255', 1041732296, 1041732351, 'FR', 'France'), +('62.23.147.0', '62.23.147.7', 1041732352, 1041732359, 'GB', 'United Kingdom'), +('62.23.147.8', '62.23.147.95', 1041732360, 1041732447, 'FR', 'France'), +('62.23.147.96', '62.23.147.103', 1041732448, 1041732455, 'GB', 'United Kingdom'), +('62.23.147.104', '62.23.147.111', 1041732456, 1041732463, 'FR', 'France'), +('62.23.147.112', '62.23.147.159', 1041732464, 1041732511, 'GB', 'United Kingdom'), +('62.23.147.160', '62.23.148.255', 1041732512, 1041732863, 'FR', 'France'), +('62.23.149.0', '62.23.149.7', 1041732864, 1041732871, 'GB', 'United Kingdom'), +('62.23.149.8', '62.23.149.15', 1041732872, 1041732879, 'FR', 'France'), +('62.23.149.16', '62.23.149.63', 1041732880, 1041732927, 'GB', 'United Kingdom'), +('62.23.149.64', '62.23.149.95', 1041732928, 1041732959, 'FR', 'France'), +('62.23.149.96', '62.23.149.103', 1041732960, 1041732967, 'GB', 'United Kingdom'), +('62.23.149.104', '62.23.149.127', 1041732968, 1041732991, 'FR', 'France'), +('62.23.149.128', '62.23.149.247', 1041732992, 1041733111, 'GB', 'United Kingdom'), +('62.23.149.248', '62.23.150.255', 1041733112, 1041733375, 'FR', 'France'), +('62.23.151.0', '62.23.151.159', 1041733376, 1041733535, 'GB', 'United Kingdom'), +('62.23.151.160', '62.23.152.255', 1041733536, 1041733887, 'FR', 'France'), +('62.23.153.0', '62.23.153.255', 1041733888, 1041734143, 'GB', 'United Kingdom'), +('62.23.154.0', '62.23.156.255', 1041734144, 1041734911, 'FR', 'France'), +('62.23.157.0', '62.23.157.95', 1041734912, 1041735007, 'GB', 'United Kingdom'), +('62.23.157.96', '62.23.157.143', 1041735008, 1041735055, 'FR', 'France'), +('62.23.157.144', '62.23.157.175', 1041735056, 1041735087, 'GB', 'United Kingdom'), +('62.23.157.176', '62.23.157.207', 1041735088, 1041735119, 'FR', 'France'), +('62.23.157.208', '62.23.157.223', 1041735120, 1041735135, 'GB', 'United Kingdom'), +('62.23.157.224', '62.23.158.255', 1041735136, 1041735423, 'FR', 'France'), +('62.23.159.0', '62.23.159.79', 1041735424, 1041735503, 'GB', 'United Kingdom'), +('62.23.159.80', '62.23.159.87', 1041735504, 1041735511, 'FR', 'France'), +('62.23.159.88', '62.23.159.135', 1041735512, 1041735559, 'GB', 'United Kingdom'), +('62.23.159.136', '62.23.159.143', 1041735560, 1041735567, 'FR', 'France'), +('62.23.159.144', '62.23.159.159', 1041735568, 1041735583, 'GB', 'United Kingdom'), +('62.23.159.160', '62.23.159.191', 1041735584, 1041735615, 'FR', 'France'), +('62.23.159.192', '62.23.159.255', 1041735616, 1041735679, 'GB', 'United Kingdom'), +('62.23.160.0', '62.23.161.255', 1041735680, 1041736191, 'FR', 'France'), +('62.23.162.0', '62.23.162.7', 1041736192, 1041736199, 'GB', 'United Kingdom'), +('62.23.162.8', '62.23.162.63', 1041736200, 1041736255, 'FR', 'France'), +('62.23.162.64', '62.23.162.71', 1041736256, 1041736263, 'GB', 'United Kingdom'), +('62.23.162.72', '62.23.162.175', 1041736264, 1041736367, 'FR', 'France'), +('62.23.162.176', '62.23.162.199', 1041736368, 1041736391, 'GB', 'United Kingdom'), +('62.23.162.200', '62.23.162.231', 1041736392, 1041736423, 'FR', 'France'), +('62.23.162.232', '62.23.163.15', 1041736424, 1041736463, 'GB', 'United Kingdom'), +('62.23.163.16', '62.23.163.55', 1041736464, 1041736503, 'FR', 'France'), +('62.23.163.56', '62.23.163.63', 1041736504, 1041736511, 'GB', 'United Kingdom'), +('62.23.163.64', '62.23.163.79', 1041736512, 1041736527, 'FR', 'France'), +('62.23.163.80', '62.23.163.87', 1041736528, 1041736535, 'GB', 'United Kingdom'), +('62.23.163.88', '62.23.163.95', 1041736536, 1041736543, 'FR', 'France'), +('62.23.163.96', '62.23.163.103', 1041736544, 1041736551, 'GB', 'United Kingdom'), +('62.23.163.104', '62.23.163.119', 1041736552, 1041736567, 'FR', 'France'), +('62.23.163.120', '62.23.163.151', 1041736568, 1041736599, 'GB', 'United Kingdom'), +('62.23.163.152', '62.23.163.159', 1041736600, 1041736607, 'FR', 'France'), +('62.23.163.160', '62.23.163.183', 1041736608, 1041736631, 'GB', 'United Kingdom'), +('62.23.163.184', '62.23.163.223', 1041736632, 1041736671, 'FR', 'France'), +('62.23.163.224', '62.23.163.255', 1041736672, 1041736703, 'GB', 'United Kingdom'), +('62.23.164.0', '62.23.165.63', 1041736704, 1041737023, 'FR', 'France'), +('62.23.165.64', '62.23.165.71', 1041737024, 1041737031, 'GB', 'United Kingdom'), +('62.23.165.72', '62.23.165.79', 1041737032, 1041737039, 'FR', 'France'), +('62.23.165.80', '62.23.165.87', 1041737040, 1041737047, 'GB', 'United Kingdom'), +('62.23.165.88', '62.23.165.103', 1041737048, 1041737063, 'FR', 'France'), +('62.23.165.104', '62.23.165.159', 1041737064, 1041737119, 'GB', 'United Kingdom'), +('62.23.165.160', '62.23.165.167', 1041737120, 1041737127, 'FR', 'France'), +('62.23.165.168', '62.23.165.175', 1041737128, 1041737135, 'GB', 'United Kingdom'), +('62.23.165.176', '62.23.165.183', 1041737136, 1041737143, 'FR', 'France'), +('62.23.165.184', '62.23.165.191', 1041737144, 1041737151, 'GB', 'United Kingdom'), +('62.23.165.192', '62.23.166.31', 1041737152, 1041737247, 'FR', 'France'), +('62.23.166.32', '62.23.166.63', 1041737248, 1041737279, 'GB', 'United Kingdom'), +('62.23.166.64', '62.23.166.79', 1041737280, 1041737295, 'FR', 'France'), +('62.23.166.80', '62.23.166.87', 1041737296, 1041737303, 'GB', 'United Kingdom'), +('62.23.166.88', '62.23.166.183', 1041737304, 1041737399, 'FR', 'France'), +('62.23.166.184', '62.23.166.207', 1041737400, 1041737423, 'GB', 'United Kingdom'), +('62.23.166.208', '62.23.166.239', 1041737424, 1041737455, 'FR', 'France'), +('62.23.166.240', '62.23.166.255', 1041737456, 1041737471, 'GB', 'United Kingdom'), +('62.23.167.0', '62.23.167.31', 1041737472, 1041737503, 'FR', 'France'), +('62.23.167.32', '62.23.167.63', 1041737504, 1041737535, 'GB', 'United Kingdom'), +('62.23.167.64', '62.23.167.111', 1041737536, 1041737583, 'FR', 'France'), +('62.23.167.112', '62.23.167.127', 1041737584, 1041737599, 'GB', 'United Kingdom'), +('62.23.167.128', '62.23.167.135', 1041737600, 1041737607, 'FR', 'France'), +('62.23.167.136', '62.23.167.143', 1041737608, 1041737615, 'GB', 'United Kingdom'), +('62.23.167.144', '62.23.167.151', 1041737616, 1041737623, 'FR', 'France'), +('62.23.167.152', '62.23.167.159', 1041737624, 1041737631, 'GB', 'United Kingdom'), +('62.23.167.160', '62.23.167.175', 1041737632, 1041737647, 'FR', 'France'), +('62.23.167.176', '62.23.167.191', 1041737648, 1041737663, 'GB', 'United Kingdom'), +('62.23.167.192', '62.23.167.199', 1041737664, 1041737671, 'FR', 'France'), +('62.23.167.200', '62.23.167.207', 1041737672, 1041737679, 'GB', 'United Kingdom'), +('62.23.167.208', '62.23.167.255', 1041737680, 1041737727, 'FR', 'France'), +('62.23.168.0', '62.23.168.31', 1041737728, 1041737759, 'GB', 'United Kingdom'), +('62.23.168.32', '62.23.168.47', 1041737760, 1041737775, 'FR', 'France'), +('62.23.168.48', '62.23.168.111', 1041737776, 1041737839, 'GB', 'United Kingdom'), +('62.23.168.112', '62.23.168.119', 1041737840, 1041737847, 'FR', 'France'), +('62.23.168.120', '62.23.168.135', 1041737848, 1041737863, 'GB', 'United Kingdom'), +('62.23.168.136', '62.23.168.143', 1041737864, 1041737871, 'FR', 'France'), +('62.23.168.144', '62.23.168.151', 1041737872, 1041737879, 'GB', 'United Kingdom'), +('62.23.168.152', '62.23.168.183', 1041737880, 1041737911, 'FR', 'France'), +('62.23.168.184', '62.23.168.207', 1041737912, 1041737935, 'GB', 'United Kingdom'), +('62.23.168.208', '62.23.169.175', 1041737936, 1041738159, 'FR', 'France'), +('62.23.169.176', '62.23.169.183', 1041738160, 1041738167, 'GB', 'United Kingdom'), +('62.23.169.184', '62.23.171.7', 1041738168, 1041738503, 'FR', 'France'), +('62.23.171.8', '62.23.171.15', 1041738504, 1041738511, 'GB', 'United Kingdom'), +('62.23.171.16', '62.23.171.23', 1041738512, 1041738519, 'FR', 'France'), +('62.23.171.24', '62.23.171.63', 1041738520, 1041738559, 'GB', 'United Kingdom'), +('62.23.171.64', '62.23.171.71', 1041738560, 1041738567, 'FR', 'France'), +('62.23.171.72', '62.23.171.79', 1041738568, 1041738575, 'GB', 'United Kingdom'), +('62.23.171.80', '62.23.171.87', 1041738576, 1041738583, 'FR', 'France'), +('62.23.171.88', '62.23.171.95', 1041738584, 1041738591, 'GB', 'United Kingdom'), +('62.23.171.96', '62.23.171.103', 1041738592, 1041738599, 'FR', 'France'), +('62.23.171.104', '62.23.171.111', 1041738600, 1041738607, 'GB', 'United Kingdom'), +('62.23.171.112', '62.23.171.207', 1041738608, 1041738703, 'FR', 'France'), +('62.23.171.208', '62.23.171.215', 1041738704, 1041738711, 'GB', 'United Kingdom'), +('62.23.171.216', '62.23.171.223', 1041738712, 1041738719, 'FR', 'France'), +('62.23.171.224', '62.23.171.247', 1041738720, 1041738743, 'GB', 'United Kingdom'), +('62.23.171.248', '62.23.173.23', 1041738744, 1041739031, 'FR', 'France'), +('62.23.173.24', '62.23.173.31', 1041739032, 1041739039, 'GB', 'United Kingdom'), +('62.23.173.32', '62.23.173.47', 1041739040, 1041739055, 'FR', 'France'), +('62.23.173.48', '62.23.173.55', 1041739056, 1041739063, 'GB', 'United Kingdom'), +('62.23.173.56', '62.23.173.63', 1041739064, 1041739071, 'FR', 'France'), +('62.23.173.64', '62.23.173.87', 1041739072, 1041739095, 'GB', 'United Kingdom'), +('62.23.173.88', '62.23.173.111', 1041739096, 1041739119, 'FR', 'France'), +('62.23.173.112', '62.23.173.167', 1041739120, 1041739175, 'GB', 'United Kingdom'), +('62.23.173.168', '62.23.173.175', 1041739176, 1041739183, 'FR', 'France'), +('62.23.173.176', '62.23.173.199', 1041739184, 1041739207, 'GB', 'United Kingdom'), +('62.23.173.200', '62.23.173.207', 1041739208, 1041739215, 'FR', 'France'), +('62.23.173.208', '62.23.173.231', 1041739216, 1041739239, 'GB', 'United Kingdom'), +('62.23.173.232', '62.23.174.23', 1041739240, 1041739287, 'FR', 'France'), +('62.23.174.24', '62.23.174.39', 1041739288, 1041739303, 'GB', 'United Kingdom'), +('62.23.174.40', '62.23.174.111', 1041739304, 1041739375, 'FR', 'France'), +('62.23.174.112', '62.23.174.119', 1041739376, 1041739383, 'GB', 'United Kingdom'), +('62.23.174.120', '62.23.174.127', 1041739384, 1041739391, 'FR', 'France'), +('62.23.174.128', '62.23.174.159', 1041739392, 1041739423, 'GB', 'United Kingdom'), +('62.23.174.160', '62.23.174.199', 1041739424, 1041739463, 'FR', 'France'), +('62.23.174.200', '62.23.174.207', 1041739464, 1041739471, 'GB', 'United Kingdom'), +('62.23.174.208', '62.23.174.223', 1041739472, 1041739487, 'FR', 'France'), +('62.23.174.224', '62.23.174.239', 1041739488, 1041739503, 'GB', 'United Kingdom'), +('62.23.174.240', '62.23.174.255', 1041739504, 1041739519, 'FR', 'France'), +('62.23.175.0', '62.23.175.15', 1041739520, 1041739535, 'GB', 'United Kingdom'), +('62.23.175.16', '62.23.175.223', 1041739536, 1041739743, 'FR', 'France'), +('62.23.175.224', '62.23.175.231', 1041739744, 1041739751, 'GB', 'United Kingdom'), +('62.23.175.232', '62.23.176.255', 1041739752, 1041740031, 'FR', 'France'), +('62.23.177.0', '62.23.177.7', 1041740032, 1041740039, 'GB', 'United Kingdom'), +('62.23.177.8', '62.23.177.231', 1041740040, 1041740263, 'FR', 'France'), +('62.23.177.232', '62.23.177.239', 1041740264, 1041740271, 'GB', 'United Kingdom'), +('62.23.177.240', '62.23.179.47', 1041740272, 1041740591, 'FR', 'France'), +('62.23.179.48', '62.23.179.63', 1041740592, 1041740607, 'GB', 'United Kingdom'), +('62.23.179.64', '62.23.179.103', 1041740608, 1041740647, 'FR', 'France'), +('62.23.179.104', '62.23.179.111', 1041740648, 1041740655, 'GB', 'United Kingdom'), +('62.23.179.112', '62.23.179.135', 1041740656, 1041740679, 'FR', 'France'), +('62.23.179.136', '62.23.179.175', 1041740680, 1041740719, 'GB', 'United Kingdom'), +('62.23.179.176', '62.23.179.183', 1041740720, 1041740727, 'FR', 'France'), +('62.23.179.184', '62.23.179.191', 1041740728, 1041740735, 'GB', 'United Kingdom'), +('62.23.179.192', '62.23.179.215', 1041740736, 1041740759, 'FR', 'France'), +('62.23.179.216', '62.23.179.223', 1041740760, 1041740767, 'GB', 'United Kingdom'), +('62.23.179.224', '62.23.180.39', 1041740768, 1041740839, 'FR', 'France'), +('62.23.180.40', '62.23.180.47', 1041740840, 1041740847, 'GB', 'United Kingdom'), +('62.23.180.48', '62.23.180.63', 1041740848, 1041740863, 'FR', 'France'), +('62.23.180.64', '62.23.180.79', 1041740864, 1041740879, 'GB', 'United Kingdom'), +('62.23.180.80', '62.23.180.159', 1041740880, 1041740959, 'FR', 'France'), +('62.23.180.160', '62.23.180.175', 1041740960, 1041740975, 'GB', 'United Kingdom'), +('62.23.180.176', '62.23.180.191', 1041740976, 1041740991, 'FR', 'France'), +('62.23.180.192', '62.23.181.63', 1041740992, 1041741119, 'GB', 'United Kingdom'), +('62.23.181.64', '62.23.181.79', 1041741120, 1041741135, 'FR', 'France'), +('62.23.181.80', '62.23.181.95', 1041741136, 1041741151, 'GB', 'United Kingdom'), +('62.23.181.96', '62.23.181.175', 1041741152, 1041741231, 'FR', 'France'), +('62.23.181.176', '62.23.181.255', 1041741232, 1041741311, 'GB', 'United Kingdom'), +('62.23.182.0', '62.23.183.39', 1041741312, 1041741607, 'FR', 'France'), +('62.23.183.40', '62.23.183.47', 1041741608, 1041741615, 'GB', 'United Kingdom'), +('62.23.183.48', '62.23.183.63', 1041741616, 1041741631, 'FR', 'France'), +('62.23.183.64', '62.23.183.79', 1041741632, 1041741647, 'GB', 'United Kingdom'), +('62.23.183.80', '62.23.183.95', 1041741648, 1041741663, 'FR', 'France'), +('62.23.183.96', '62.23.183.111', 1041741664, 1041741679, 'GB', 'United Kingdom'), +('62.23.183.112', '62.23.183.119', 1041741680, 1041741687, 'FR', 'France'), +('62.23.183.120', '62.23.183.255', 1041741688, 1041741823, 'GB', 'United Kingdom'), +('62.23.184.0', '62.23.185.15', 1041741824, 1041742095, 'FR', 'France'), +('62.23.185.16', '62.23.185.31', 1041742096, 1041742111, 'GB', 'United Kingdom'), +('62.23.185.32', '62.23.185.47', 1041742112, 1041742127, 'FR', 'France'), +('62.23.185.48', '62.23.185.55', 1041742128, 1041742135, 'GB', 'United Kingdom'), +('62.23.185.56', '62.23.185.71', 1041742136, 1041742151, 'FR', 'France'), +('62.23.185.72', '62.23.185.79', 1041742152, 1041742159, 'GB', 'United Kingdom'), +('62.23.185.80', '62.23.185.143', 1041742160, 1041742223, 'FR', 'France'), +('62.23.185.144', '62.23.185.159', 1041742224, 1041742239, 'GB', 'United Kingdom'), +('62.23.185.160', '62.23.185.223', 1041742240, 1041742303, 'FR', 'France'), +('62.23.185.224', '62.23.186.7', 1041742304, 1041742343, 'GB', 'United Kingdom'), +('62.23.186.8', '62.23.186.23', 1041742344, 1041742359, 'FR', 'France'), +('62.23.186.24', '62.23.186.31', 1041742360, 1041742367, 'GB', 'United Kingdom'), +('62.23.186.32', '62.23.186.39', 1041742368, 1041742375, 'FR', 'France'), +('62.23.186.40', '62.23.186.87', 1041742376, 1041742423, 'GB', 'United Kingdom'), +('62.23.186.88', '62.23.186.119', 1041742424, 1041742455, 'FR', 'France'), +('62.23.186.120', '62.23.186.127', 1041742456, 1041742463, 'GB', 'United Kingdom'), +('62.23.186.128', '62.23.186.135', 1041742464, 1041742471, 'FR', 'France'), +('62.23.186.136', '62.23.186.143', 1041742472, 1041742479, 'GB', 'United Kingdom'), +('62.23.186.144', '62.23.186.175', 1041742480, 1041742511, 'FR', 'France'), +('62.23.186.176', '62.23.186.255', 1041742512, 1041742591, 'GB', 'United Kingdom'), +('62.23.187.0', '62.23.189.7', 1041742592, 1041743111, 'FR', 'France'), +('62.23.189.8', '62.23.189.15', 1041743112, 1041743119, 'GB', 'United Kingdom'), +('62.23.189.16', '62.23.189.31', 1041743120, 1041743135, 'FR', 'France'), +('62.23.189.32', '62.23.189.39', 1041743136, 1041743143, 'GB', 'United Kingdom'), +('62.23.189.40', '62.23.189.63', 1041743144, 1041743167, 'FR', 'France'), +('62.23.189.64', '62.23.189.119', 1041743168, 1041743223, 'GB', 'United Kingdom'), +('62.23.189.120', '62.23.189.199', 1041743224, 1041743303, 'FR', 'France'), +('62.23.189.200', '62.23.189.207', 1041743304, 1041743311, 'GB', 'United Kingdom'), +('62.23.189.208', '62.23.190.255', 1041743312, 1041743615, 'FR', 'France'), +('62.23.191.0', '62.23.191.31', 1041743616, 1041743647, 'GB', 'United Kingdom'), +('62.23.191.32', '62.23.191.55', 1041743648, 1041743671, 'FR', 'France'), +('62.23.191.56', '62.23.191.63', 1041743672, 1041743679, 'GB', 'United Kingdom'), +('62.23.191.64', '62.23.191.87', 1041743680, 1041743703, 'FR', 'France'), +('62.23.191.88', '62.23.191.111', 1041743704, 1041743727, 'GB', 'United Kingdom'), +('62.23.191.112', '62.23.191.127', 1041743728, 1041743743, 'FR', 'France'), +('62.23.191.128', '62.23.191.143', 1041743744, 1041743759, 'GB', 'United Kingdom'), +('62.23.191.144', '62.23.191.151', 1041743760, 1041743767, 'FR', 'France'), +('62.23.191.152', '62.23.191.159', 1041743768, 1041743775, 'GB', 'United Kingdom'), +('62.23.191.160', '62.23.191.175', 1041743776, 1041743791, 'FR', 'France'), +('62.23.191.176', '62.23.191.183', 1041743792, 1041743799, 'GB', 'United Kingdom'), +('62.23.191.184', '62.23.191.191', 1041743800, 1041743807, 'FR', 'France'), +('62.23.191.192', '62.23.191.207', 1041743808, 1041743823, 'GB', 'United Kingdom'), +('62.23.191.208', '62.23.191.215', 1041743824, 1041743831, 'FR', 'France'), +('62.23.191.216', '62.23.191.239', 1041743832, 1041743855, 'GB', 'United Kingdom'), +('62.23.191.240', '62.23.191.247', 1041743856, 1041743863, 'FR', 'France'), +('62.23.191.248', '62.23.191.255', 1041743864, 1041743871, 'GB', 'United Kingdom'), +('62.23.192.0', '62.23.193.15', 1041743872, 1041744143, 'FR', 'France'), +('62.23.193.16', '62.23.193.23', 1041744144, 1041744151, 'GB', 'United Kingdom'), +('62.23.193.24', '62.23.193.127', 1041744152, 1041744255, 'FR', 'France'), +('62.23.193.128', '62.23.193.135', 1041744256, 1041744263, 'GB', 'United Kingdom'), +('62.23.193.136', '62.23.193.143', 1041744264, 1041744271, 'FR', 'France'), +('62.23.193.144', '62.23.193.167', 1041744272, 1041744295, 'GB', 'United Kingdom'), +('62.23.193.168', '62.23.193.183', 1041744296, 1041744311, 'FR', 'France'), +('62.23.193.184', '62.23.193.199', 1041744312, 1041744327, 'GB', 'United Kingdom'), +('62.23.193.200', '62.23.194.95', 1041744328, 1041744479, 'FR', 'France'), +('62.23.194.96', '62.23.194.127', 1041744480, 1041744511, 'GB', 'United Kingdom'), +('62.23.194.128', '62.23.194.215', 1041744512, 1041744599, 'FR', 'France'), +('62.23.194.216', '62.23.194.223', 1041744600, 1041744607, 'GB', 'United Kingdom'), +('62.23.194.224', '62.23.194.239', 1041744608, 1041744623, 'FR', 'France'), +('62.23.194.240', '62.23.195.255', 1041744624, 1041744895, 'GB', 'United Kingdom'), +('62.23.196.0', '62.23.196.23', 1041744896, 1041744919, 'FR', 'France'), +('62.23.196.24', '62.23.196.31', 1041744920, 1041744927, 'GB', 'United Kingdom'), +('62.23.196.32', '62.23.196.47', 1041744928, 1041744943, 'FR', 'France'), +('62.23.196.48', '62.23.196.55', 1041744944, 1041744951, 'GB', 'United Kingdom'), +('62.23.196.56', '62.23.196.79', 1041744952, 1041744975, 'FR', 'France'), +('62.23.196.80', '62.23.196.87', 1041744976, 1041744983, 'GB', 'United Kingdom'), +('62.23.196.88', '62.23.196.111', 1041744984, 1041745007, 'FR', 'France'), +('62.23.196.112', '62.23.196.135', 1041745008, 1041745031, 'GB', 'United Kingdom'), +('62.23.196.136', '62.23.196.159', 1041745032, 1041745055, 'FR', 'France'), +('62.23.196.160', '62.23.196.175', 1041745056, 1041745071, 'GB', 'United Kingdom'), +('62.23.196.176', '62.23.196.199', 1041745072, 1041745095, 'FR', 'France'), +('62.23.196.200', '62.23.196.247', 1041745096, 1041745143, 'GB', 'United Kingdom'), +('62.23.196.248', '62.23.196.255', 1041745144, 1041745151, 'FR', 'France'), +('62.23.197.0', '62.23.197.7', 1041745152, 1041745159, 'GB', 'United Kingdom'), +('62.23.197.8', '62.23.197.15', 1041745160, 1041745167, 'FR', 'France'), +('62.23.197.16', '62.23.197.39', 1041745168, 1041745191, 'GB', 'United Kingdom'), +('62.23.197.40', '62.23.197.55', 1041745192, 1041745207, 'FR', 'France'), +('62.23.197.56', '62.23.197.63', 1041745208, 1041745215, 'GB', 'United Kingdom'), +('62.23.197.64', '62.23.197.95', 1041745216, 1041745247, 'FR', 'France'), +('62.23.197.96', '62.23.197.127', 1041745248, 1041745279, 'GB', 'United Kingdom'), +('62.23.197.128', '62.23.197.175', 1041745280, 1041745327, 'FR', 'France'), +('62.23.197.176', '62.23.197.191', 1041745328, 1041745343, 'GB', 'United Kingdom'), +('62.23.197.192', '62.23.197.207', 1041745344, 1041745359, 'FR', 'France'), +('62.23.197.208', '62.23.197.231', 1041745360, 1041745383, 'GB', 'United Kingdom'), +('62.23.197.232', '62.23.198.7', 1041745384, 1041745415, 'FR', 'France'), +('62.23.198.8', '62.23.198.15', 1041745416, 1041745423, 'GB', 'United Kingdom'), +('62.23.198.16', '62.23.198.39', 1041745424, 1041745447, 'FR', 'France'), +('62.23.198.40', '62.23.198.63', 1041745448, 1041745471, 'GB', 'United Kingdom'), +('62.23.198.64', '62.23.198.71', 1041745472, 1041745479, 'FR', 'France'), +('62.23.198.72', '62.23.198.79', 1041745480, 1041745487, 'GB', 'United Kingdom'), +('62.23.198.80', '62.23.198.87', 1041745488, 1041745495, 'FR', 'France'), +('62.23.198.88', '62.23.198.127', 1041745496, 1041745535, 'GB', 'United Kingdom'), +('62.23.198.128', '62.23.198.135', 1041745536, 1041745543, 'FR', 'France'), +('62.23.198.136', '62.23.198.143', 1041745544, 1041745551, 'GB', 'United Kingdom'), +('62.23.198.144', '62.23.198.159', 1041745552, 1041745567, 'FR', 'France'), +('62.23.198.160', '62.23.198.167', 1041745568, 1041745575, 'GB', 'United Kingdom'), +('62.23.198.168', '62.23.198.191', 1041745576, 1041745599, 'FR', 'France'), +('62.23.198.192', '62.23.198.207', 1041745600, 1041745615, 'GB', 'United Kingdom'), +('62.23.198.208', '62.23.198.215', 1041745616, 1041745623, 'FR', 'France'), +('62.23.198.216', '62.23.198.223', 1041745624, 1041745631, 'GB', 'United Kingdom'), +('62.23.198.224', '62.23.198.231', 1041745632, 1041745639, 'FR', 'France'), +('62.23.198.232', '62.23.198.239', 1041745640, 1041745647, 'GB', 'United Kingdom'), +('62.23.198.240', '62.23.198.247', 1041745648, 1041745655, 'FR', 'France'), +('62.23.198.248', '62.23.199.23', 1041745656, 1041745687, 'GB', 'United Kingdom'), +('62.23.199.24', '62.23.199.87', 1041745688, 1041745751, 'FR', 'France'), +('62.23.199.88', '62.23.199.103', 1041745752, 1041745767, 'GB', 'United Kingdom'), +('62.23.199.104', '62.23.199.159', 1041745768, 1041745823, 'FR', 'France'), +('62.23.199.160', '62.23.199.207', 1041745824, 1041745871, 'GB', 'United Kingdom'), +('62.23.199.208', '62.23.199.223', 1041745872, 1041745887, 'FR', 'France'), +('62.23.199.224', '62.23.200.39', 1041745888, 1041745959, 'GB', 'United Kingdom'), +('62.23.200.40', '62.23.200.47', 1041745960, 1041745967, 'FR', 'France'), +('62.23.200.48', '62.23.200.63', 1041745968, 1041745983, 'GB', 'United Kingdom'), +('62.23.200.64', '62.23.200.79', 1041745984, 1041745999, 'FR', 'France'), +('62.23.200.80', '62.23.200.95', 1041746000, 1041746015, 'GB', 'United Kingdom'), +('62.23.200.96', '62.23.200.103', 1041746016, 1041746023, 'FR', 'France'), +('62.23.200.104', '62.23.200.127', 1041746024, 1041746047, 'GB', 'United Kingdom'), +('62.23.200.128', '62.23.200.143', 1041746048, 1041746063, 'FR', 'France'), +('62.23.200.144', '62.23.200.175', 1041746064, 1041746095, 'GB', 'United Kingdom'), +('62.23.200.176', '62.23.200.191', 1041746096, 1041746111, 'FR', 'France'), +('62.23.200.192', '62.23.200.199', 1041746112, 1041746119, 'GB', 'United Kingdom'), +('62.23.200.200', '62.23.200.207', 1041746120, 1041746127, 'FR', 'France'), +('62.23.200.208', '62.23.200.215', 1041746128, 1041746135, 'GB', 'United Kingdom'), +('62.23.200.216', '62.23.202.255', 1041746136, 1041746687, 'FR', 'France'), +('62.23.203.0', '62.23.203.47', 1041746688, 1041746735, 'GB', 'United Kingdom'), +('62.23.203.48', '62.23.203.55', 1041746736, 1041746743, 'FR', 'France'), +('62.23.203.56', '62.23.203.63', 1041746744, 1041746751, 'GB', 'United Kingdom'), +('62.23.203.64', '62.23.203.111', 1041746752, 1041746799, 'FR', 'France'), +('62.23.203.112', '62.23.203.159', 1041746800, 1041746847, 'GB', 'United Kingdom'), +('62.23.203.160', '62.23.203.175', 1041746848, 1041746863, 'FR', 'France'), +('62.23.203.176', '62.23.203.199', 1041746864, 1041746887, 'GB', 'United Kingdom'), +('62.23.203.200', '62.23.203.215', 1041746888, 1041746903, 'FR', 'France'), +('62.23.203.216', '62.23.203.239', 1041746904, 1041746927, 'GB', 'United Kingdom'), +('62.23.203.240', '62.23.204.127', 1041746928, 1041747071, 'FR', 'France'), +('62.23.204.128', '62.23.205.255', 1041747072, 1041747455, 'GB', 'United Kingdom'), +('62.23.206.0', '62.23.206.7', 1041747456, 1041747463, 'FR', 'France'), +('62.23.206.8', '62.23.206.31', 1041747464, 1041747487, 'GB', 'United Kingdom'), +('62.23.206.32', '62.23.206.47', 1041747488, 1041747503, 'FR', 'France'), +('62.23.206.48', '62.23.206.63', 1041747504, 1041747519, 'GB', 'United Kingdom'), +('62.23.206.64', '62.23.213.255', 1041747520, 1041749503, 'FR', 'France'), +('62.23.214.0', '62.23.214.3', 1041749504, 1041749507, 'GB', 'United Kingdom'), +('62.23.214.4', '62.23.214.7', 1041749508, 1041749511, 'FR', 'France'), +('62.23.214.8', '62.23.214.51', 1041749512, 1041749555, 'GB', 'United Kingdom'), +('62.23.214.52', '62.23.214.55', 1041749556, 1041749559, 'FR', 'France'), +('62.23.214.56', '62.23.214.135', 1041749560, 1041749639, 'GB', 'United Kingdom'), +('62.23.214.136', '62.23.214.139', 1041749640, 1041749643, 'FR', 'France'), +('62.23.214.140', '62.23.214.187', 1041749644, 1041749691, 'GB', 'United Kingdom'), +('62.23.214.188', '62.23.214.191', 1041749692, 1041749695, 'FR', 'France'), +('62.23.214.192', '62.23.214.211', 1041749696, 1041749715, 'GB', 'United Kingdom'), +('62.23.214.212', '62.23.214.215', 1041749716, 1041749719, 'FR', 'France'), +('62.23.214.216', '62.23.214.255', 1041749720, 1041749759, 'GB', 'United Kingdom'), +('62.23.215.0', '62.23.215.47', 1041749760, 1041749807, 'FR', 'France'), +('62.23.215.48', '62.23.215.55', 1041749808, 1041749815, 'GB', 'United Kingdom'), +('62.23.215.56', '62.23.215.239', 1041749816, 1041749999, 'FR', 'France'), +('62.23.215.240', '62.23.215.247', 1041750000, 1041750007, 'GB', 'United Kingdom'), +('62.23.215.248', '62.23.217.255', 1041750008, 1041750527, 'FR', 'France'), +('62.23.218.0', '62.23.218.15', 1041750528, 1041750543, 'GB', 'United Kingdom'), +('62.23.218.16', '62.23.218.31', 1041750544, 1041750559, 'FR', 'France'), +('62.23.218.32', '62.23.218.63', 1041750560, 1041750591, 'GB', 'United Kingdom'), +('62.23.218.64', '62.23.219.15', 1041750592, 1041750799, 'FR', 'France'), +('62.23.219.16', '62.23.219.23', 1041750800, 1041750807, 'GB', 'United Kingdom'), +('62.23.219.24', '62.23.219.79', 1041750808, 1041750863, 'FR', 'France'), +('62.23.219.80', '62.23.219.87', 1041750864, 1041750871, 'GB', 'United Kingdom'), +('62.23.219.88', '62.23.221.15', 1041750872, 1041751311, 'FR', 'France'), +('62.23.221.16', '62.23.221.31', 1041751312, 1041751327, 'GB', 'United Kingdom'), +('62.23.221.32', '62.23.221.47', 1041751328, 1041751343, 'FR', 'France'), +('62.23.221.48', '62.23.221.63', 1041751344, 1041751359, 'GB', 'United Kingdom'), +('62.23.221.64', '62.23.221.143', 1041751360, 1041751439, 'FR', 'France'), +('62.23.221.144', '62.23.221.159', 1041751440, 1041751455, 'GB', 'United Kingdom'), +('62.23.221.160', '62.23.222.71', 1041751456, 1041751623, 'FR', 'France'), +('62.23.222.72', '62.23.222.79', 1041751624, 1041751631, 'GB', 'United Kingdom'), +('62.23.222.80', '62.23.222.87', 1041751632, 1041751639, 'FR', 'France'), +('62.23.222.88', '62.23.222.95', 1041751640, 1041751647, 'GB', 'United Kingdom'), +('62.23.222.96', '62.23.222.135', 1041751648, 1041751687, 'FR', 'France'), +('62.23.222.136', '62.23.222.167', 1041751688, 1041751719, 'GB', 'United Kingdom'), +('62.23.222.168', '62.23.222.191', 1041751720, 1041751743, 'FR', 'France'), +('62.23.222.192', '62.23.222.199', 1041751744, 1041751751, 'GB', 'United Kingdom'), +('62.23.222.200', '62.23.222.215', 1041751752, 1041751767, 'FR', 'France'), +('62.23.222.216', '62.23.222.223', 1041751768, 1041751775, 'GB', 'United Kingdom'), +('62.23.222.224', '62.23.228.255', 1041751776, 1041753343, 'FR', 'France'), +('62.23.229.0', '62.23.231.255', 1041753344, 1041754111, 'GB', 'United Kingdom'), +('62.23.232.0', '62.23.232.31', 1041754112, 1041754143, 'FR', 'France'), +('62.23.232.32', '62.23.232.39', 1041754144, 1041754151, 'GB', 'United Kingdom'), +('62.23.232.40', '62.23.232.127', 1041754152, 1041754239, 'FR', 'France'), +('62.23.232.128', '62.23.232.135', 1041754240, 1041754247, 'GB', 'United Kingdom'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('62.23.232.136', '62.23.233.47', 1041754248, 1041754415, 'FR', 'France'), +('62.23.233.48', '62.23.233.55', 1041754416, 1041754423, 'GB', 'United Kingdom'), +('62.23.233.56', '62.23.233.111', 1041754424, 1041754479, 'FR', 'France'), +('62.23.233.112', '62.23.233.127', 1041754480, 1041754495, 'GB', 'United Kingdom'), +('62.23.233.128', '62.23.236.95', 1041754496, 1041755231, 'FR', 'France'), +('62.23.236.96', '62.23.236.103', 1041755232, 1041755239, 'GB', 'United Kingdom'), +('62.23.236.104', '62.23.236.159', 1041755240, 1041755295, 'FR', 'France'), +('62.23.236.160', '62.23.236.167', 1041755296, 1041755303, 'GB', 'United Kingdom'), +('62.23.236.168', '62.23.236.175', 1041755304, 1041755311, 'FR', 'France'), +('62.23.236.176', '62.23.236.191', 1041755312, 1041755327, 'GB', 'United Kingdom'), +('62.23.236.192', '62.23.236.199', 1041755328, 1041755335, 'FR', 'France'), +('62.23.236.200', '62.23.236.207', 1041755336, 1041755343, 'GB', 'United Kingdom'), +('62.23.236.208', '62.23.236.255', 1041755344, 1041755391, 'FR', 'France'), +('62.23.237.0', '62.23.237.7', 1041755392, 1041755399, 'GB', 'United Kingdom'), +('62.23.237.8', '62.23.237.63', 1041755400, 1041755455, 'FR', 'France'), +('62.23.237.64', '62.23.237.79', 1041755456, 1041755471, 'GB', 'United Kingdom'), +('62.23.237.80', '62.23.237.239', 1041755472, 1041755631, 'FR', 'France'), +('62.23.237.240', '62.23.237.255', 1041755632, 1041755647, 'GB', 'United Kingdom'), +('62.23.238.0', '62.23.241.47', 1041755648, 1041756463, 'FR', 'France'), +('62.23.241.48', '62.23.241.55', 1041756464, 1041756471, 'GB', 'United Kingdom'), +('62.23.241.56', '62.23.241.143', 1041756472, 1041756559, 'FR', 'France'), +('62.23.241.144', '62.23.241.151', 1041756560, 1041756567, 'GB', 'United Kingdom'), +('62.23.241.152', '62.23.241.183', 1041756568, 1041756599, 'FR', 'France'), +('62.23.241.184', '62.23.241.191', 1041756600, 1041756607, 'GB', 'United Kingdom'), +('62.23.241.192', '62.23.241.239', 1041756608, 1041756655, 'FR', 'France'), +('62.23.241.240', '62.23.241.247', 1041756656, 1041756663, 'GB', 'United Kingdom'), +('62.23.241.248', '62.23.242.23', 1041756664, 1041756695, 'FR', 'France'), +('62.23.242.24', '62.23.242.31', 1041756696, 1041756703, 'GB', 'United Kingdom'), +('62.23.242.32', '62.23.242.47', 1041756704, 1041756719, 'FR', 'France'), +('62.23.242.48', '62.23.242.55', 1041756720, 1041756727, 'GB', 'United Kingdom'), +('62.23.242.56', '62.23.242.223', 1041756728, 1041756895, 'FR', 'France'), +('62.23.242.224', '62.23.242.239', 1041756896, 1041756911, 'GB', 'United Kingdom'), +('62.23.242.240', '62.23.242.247', 1041756912, 1041756919, 'FR', 'France'), +('62.23.242.248', '62.23.242.255', 1041756920, 1041756927, 'GB', 'United Kingdom'), +('62.23.243.0', '62.23.243.95', 1041756928, 1041757023, 'FR', 'France'), +('62.23.243.96', '62.23.243.111', 1041757024, 1041757039, 'GB', 'United Kingdom'), +('62.23.243.112', '62.23.243.159', 1041757040, 1041757087, 'FR', 'France'), +('62.23.243.160', '62.23.243.199', 1041757088, 1041757127, 'GB', 'United Kingdom'), +('62.23.243.200', '62.23.243.247', 1041757128, 1041757175, 'FR', 'France'), +('62.23.243.248', '62.23.243.251', 1041757176, 1041757179, 'GB', 'United Kingdom'), +('62.23.243.252', '62.23.245.63', 1041757180, 1041757503, 'FR', 'France'), +('62.23.245.64', '62.23.245.79', 1041757504, 1041757519, 'GB', 'United Kingdom'), +('62.23.245.80', '62.23.245.143', 1041757520, 1041757583, 'FR', 'France'), +('62.23.245.144', '62.23.245.151', 1041757584, 1041757591, 'GB', 'United Kingdom'), +('62.23.245.152', '62.23.245.223', 1041757592, 1041757663, 'FR', 'France'), +('62.23.245.224', '62.23.245.231', 1041757664, 1041757671, 'GB', 'United Kingdom'), +('62.23.245.232', '62.23.247.79', 1041757672, 1041758031, 'FR', 'France'), +('62.23.247.80', '62.23.247.87', 1041758032, 1041758039, 'GB', 'United Kingdom'), +('62.23.247.88', '62.23.247.255', 1041758040, 1041758207, 'FR', 'France'), +('62.23.248.0', '62.23.255.255', 1041758208, 1041760255, 'GB', 'United Kingdom'), +('62.24.0.0', '62.24.31.255', 1041760256, 1041768447, 'DE', 'Germany'), +('62.24.32.0', '62.24.63.255', 1041768448, 1041776639, 'GB', 'United Kingdom'), +('62.24.64.0', '62.24.95.255', 1041776640, 1041784831, 'CZ', 'Czech Republic'), +('62.24.96.0', '62.24.127.255', 1041784832, 1041793023, 'KE', 'Kenya'), +('62.24.128.0', '62.24.255.255', 1041793024, 1041825791, 'GB', 'United Kingdom'), +('62.25.0.0', '62.25.63.255', 1041825792, 1041842175, 'NL', 'Netherlands'), +('62.25.64.0', '62.25.255.255', 1041842176, 1041891327, 'GB', 'United Kingdom'), +('62.26.0.0', '62.26.117.255', 1041891328, 1041921535, 'DE', 'Germany'), +('62.26.118.0', '62.26.118.191', 1041921536, 1041921727, 'US', 'United States'), +('62.26.118.192', '62.26.191.213', 1041921728, 1041940437, 'DE', 'Germany'), +('62.26.191.214', '62.26.191.214', 1041940438, 1041940438, 'A2', 'Satellite Provider'), +('62.26.191.215', '62.26.209.255', 1041940439, 1041945087, 'DE', 'Germany'), +('62.26.210.0', '62.26.210.63', 1041945088, 1041945151, 'AT', 'Austria'), +('62.26.210.64', '62.27.6.63', 1041945152, 1041958463, 'DE', 'Germany'), +('62.27.6.64', '62.27.6.127', 1041958464, 1041958527, 'DK', 'Denmark'), +('62.27.6.128', '62.27.9.255', 1041958528, 1041959423, 'DE', 'Germany'), +('62.27.10.0', '62.27.10.255', 1041959424, 1041959679, 'US', 'United States'), +('62.27.11.0', '62.27.255.255', 1041959680, 1042022399, 'DE', 'Germany'), +('62.28.0.0', '62.28.255.255', 1042022400, 1042087935, 'PT', 'Portugal'), +('62.29.0.0', '62.29.127.255', 1042087936, 1042120703, 'TR', 'Turkey'), +('62.29.128.0', '62.29.255.255', 1042120704, 1042153471, 'PL', 'Poland'), +('62.30.0.0', '62.31.255.255', 1042153472, 1042284543, 'GB', 'United Kingdom'), +('62.32.0.0', '62.32.15.15', 1042284544, 1042288399, 'CH', 'Switzerland'), +('62.32.15.16', '62.32.15.31', 1042288400, 1042288415, 'GB', 'United Kingdom'), +('62.32.15.32', '62.32.31.255', 1042288416, 1042292735, 'CH', 'Switzerland'), +('62.32.32.0', '62.32.33.255', 1042292736, 1042293247, 'NL', 'Netherlands'), +('62.32.34.0', '62.32.34.255', 1042293248, 1042293503, 'GB', 'United Kingdom'), +('62.32.35.0', '62.32.35.31', 1042293504, 1042293535, 'NL', 'Netherlands'), +('62.32.35.32', '62.32.35.127', 1042293536, 1042293631, 'IR', 'Iran, Islamic Republic of'), +('62.32.35.128', '62.32.44.255', 1042293632, 1042296063, 'GE', 'Georgia'), +('62.32.45.0', '62.32.45.127', 1042296064, 1042296191, 'CY', 'Cyprus'), +('62.32.45.128', '62.32.46.255', 1042296192, 1042296575, 'GE', 'Georgia'), +('62.32.47.0', '62.32.47.255', 1042296576, 1042296831, 'BY', 'Belarus'), +('62.32.48.0', '62.32.49.127', 1042296832, 1042297215, 'NL', 'Netherlands'), +('62.32.49.128', '62.32.49.231', 1042297216, 1042297319, 'IR', 'Iran, Islamic Republic of'), +('62.32.49.232', '62.32.49.239', 1042297320, 1042297327, 'GE', 'Georgia'), +('62.32.49.240', '62.32.50.255', 1042297328, 1042297599, 'IR', 'Iran, Islamic Republic of'), +('62.32.51.0', '62.32.51.255', 1042297600, 1042297855, 'GB', 'United Kingdom'), +('62.32.52.0', '62.32.52.255', 1042297856, 1042298111, 'NL', 'Netherlands'), +('62.32.53.0', '62.32.53.31', 1042298112, 1042298143, 'US', 'United States'), +('62.32.53.32', '62.32.53.63', 1042298144, 1042298175, 'NL', 'Netherlands'), +('62.32.53.64', '62.32.53.127', 1042298176, 1042298239, 'IR', 'Iran, Islamic Republic of'), +('62.32.53.128', '62.32.53.167', 1042298240, 1042298279, 'IQ', 'Iraq'), +('62.32.53.168', '62.32.53.175', 1042298280, 1042298287, 'IR', 'Iran, Islamic Republic of'), +('62.32.53.176', '62.32.53.191', 1042298288, 1042298303, 'GB', 'United Kingdom'), +('62.32.53.192', '62.32.53.223', 1042298304, 1042298335, 'IQ', 'Iraq'), +('62.32.53.224', '62.32.53.239', 1042298336, 1042298351, 'IR', 'Iran, Islamic Republic of'), +('62.32.53.240', '62.32.53.255', 1042298352, 1042298367, 'NL', 'Netherlands'), +('62.32.54.0', '62.32.54.255', 1042298368, 1042298623, 'GB', 'United Kingdom'), +('62.32.55.0', '62.32.55.255', 1042298624, 1042298879, 'NL', 'Netherlands'), +('62.32.56.0', '62.32.56.255', 1042298880, 1042299135, 'GB', 'United Kingdom'), +('62.32.57.0', '62.32.57.255', 1042299136, 1042299391, 'IQ', 'Iraq'), +('62.32.58.0', '62.32.60.255', 1042299392, 1042300159, 'NL', 'Netherlands'), +('62.32.61.0', '62.32.61.15', 1042300160, 1042300175, 'BY', 'Belarus'), +('62.32.61.16', '62.32.61.63', 1042300176, 1042300223, 'IQ', 'Iraq'), +('62.32.61.64', '62.32.61.95', 1042300224, 1042300255, 'AM', 'Armenia'), +('62.32.61.96', '62.32.61.127', 1042300256, 1042300287, 'IR', 'Iran, Islamic Republic of'), +('62.32.61.128', '62.32.61.191', 1042300288, 1042300351, 'IT', 'Italy'), +('62.32.61.192', '62.32.61.223', 1042300352, 1042300383, 'IQ', 'Iraq'), +('62.32.61.224', '62.32.61.255', 1042300384, 1042300415, 'IR', 'Iran, Islamic Republic of'), +('62.32.62.0', '62.32.62.63', 1042300416, 1042300479, 'NL', 'Netherlands'), +('62.32.62.64', '62.32.62.79', 1042300480, 1042300495, 'IQ', 'Iraq'), +('62.32.62.80', '62.32.62.127', 1042300496, 1042300543, 'GB', 'United Kingdom'), +('62.32.62.128', '62.32.62.223', 1042300544, 1042300639, 'IQ', 'Iraq'), +('62.32.62.224', '62.32.62.231', 1042300640, 1042300647, 'NL', 'Netherlands'), +('62.32.62.232', '62.32.62.239', 1042300648, 1042300655, 'IQ', 'Iraq'), +('62.32.62.240', '62.32.62.255', 1042300656, 1042300671, 'LB', 'Lebanon'), +('62.32.63.0', '62.32.63.127', 1042300672, 1042300799, 'IQ', 'Iraq'), +('62.32.63.128', '62.32.63.191', 1042300800, 1042300863, 'IR', 'Iran, Islamic Republic of'), +('62.32.63.192', '62.32.63.223', 1042300864, 1042300895, 'LB', 'Lebanon'), +('62.32.63.224', '62.32.63.231', 1042300896, 1042300903, 'MD', 'Moldova, Republic of'), +('62.32.63.232', '62.32.63.239', 1042300904, 1042300911, 'UA', 'Ukraine'), +('62.32.63.240', '62.32.63.247', 1042300912, 1042300919, 'NL', 'Netherlands'), +('62.32.63.248', '62.32.63.255', 1042300920, 1042300927, 'UA', 'Ukraine'), +('62.32.64.0', '62.32.95.255', 1042300928, 1042309119, 'RU', 'Russian Federation'), +('62.32.96.0', '62.32.127.255', 1042309120, 1042317311, 'GB', 'United Kingdom'), +('62.32.128.0', '62.32.255.255', 1042317312, 1042350079, 'ES', 'Spain'), +('62.33.0.0', '62.33.255.255', 1042350080, 1042415615, 'RU', 'Russian Federation'), +('62.34.0.0', '62.35.255.255', 1042415616, 1042546687, 'FR', 'France'), +('62.36.0.0', '62.37.255.255', 1042546688, 1042677759, 'ES', 'Spain'), +('62.38.0.0', '62.38.255.255', 1042677760, 1042743295, 'GR', 'Greece'), +('62.39.0.0', '62.39.255.255', 1042743296, 1042808831, 'FR', 'France'), +('62.40.0.0', '62.40.31.255', 1042808832, 1042817023, 'DE', 'Germany'), +('62.40.32.0', '62.40.63.255', 1042817024, 1042825215, 'IE', 'Ireland'), +('62.40.64.0', '62.40.95.255', 1042825216, 1042833407, 'CZ', 'Czech Republic'), +('62.40.96.0', '62.40.127.255', 1042833408, 1042841599, 'GB', 'United Kingdom'), +('62.40.128.0', '62.40.255.255', 1042841600, 1042874367, 'AT', 'Austria'), +('62.41.0.0', '62.41.5.255', 1042874368, 1042875903, 'NL', 'Netherlands'), +('62.41.6.0', '62.41.6.255', 1042875904, 1042876159, 'GB', 'United Kingdom'), +('62.41.7.0', '62.41.7.255', 1042876160, 1042876415, 'NL', 'Netherlands'), +('62.41.8.0', '62.41.8.63', 1042876416, 1042876479, 'GB', 'United Kingdom'), +('62.41.8.64', '62.41.8.255', 1042876480, 1042876671, 'NL', 'Netherlands'), +('62.41.9.0', '62.41.9.255', 1042876672, 1042876927, 'DE', 'Germany'), +('62.41.10.0', '62.41.24.127', 1042876928, 1042880639, 'NL', 'Netherlands'), +('62.41.24.128', '62.41.24.255', 1042880640, 1042880767, 'GB', 'United Kingdom'), +('62.41.25.0', '62.41.31.255', 1042880768, 1042882559, 'NL', 'Netherlands'), +('62.41.32.0', '62.41.32.255', 1042882560, 1042882815, 'DE', 'Germany'), +('62.41.33.0', '62.41.55.255', 1042882816, 1042888703, 'NL', 'Netherlands'), +('62.41.56.0', '62.41.56.255', 1042888704, 1042888959, 'GB', 'United Kingdom'), +('62.41.57.0', '62.41.57.255', 1042888960, 1042889215, 'NL', 'Netherlands'), +('62.41.58.0', '62.41.58.255', 1042889216, 1042889471, 'US', 'United States'), +('62.41.59.0', '62.41.63.255', 1042889472, 1042890751, 'NL', 'Netherlands'), +('62.41.64.0', '62.41.64.31', 1042890752, 1042890783, 'GB', 'United Kingdom'), +('62.41.64.32', '62.41.64.63', 1042890784, 1042890815, 'NL', 'Netherlands'), +('62.41.64.64', '62.41.64.67', 1042890816, 1042890819, 'FR', 'France'), +('62.41.64.68', '62.41.64.95', 1042890820, 1042890847, 'NL', 'Netherlands'), +('62.41.64.96', '62.41.64.127', 1042890848, 1042890879, 'GB', 'United Kingdom'), +('62.41.64.128', '62.41.64.192', 1042890880, 1042890944, 'NL', 'Netherlands'), +('62.41.64.193', '62.41.64.198', 1042890945, 1042890950, 'GB', 'United Kingdom'), +('62.41.64.199', '62.41.64.207', 1042890951, 1042890959, 'NL', 'Netherlands'), +('62.41.64.208', '62.41.64.239', 1042890960, 1042890991, 'GB', 'United Kingdom'), +('62.41.64.240', '62.41.67.255', 1042890992, 1042891775, 'NL', 'Netherlands'), +('62.41.68.0', '62.41.68.63', 1042891776, 1042891839, 'GB', 'United Kingdom'), +('62.41.68.64', '62.41.68.239', 1042891840, 1042892015, 'NL', 'Netherlands'), +('62.41.68.240', '62.41.68.255', 1042892016, 1042892031, 'DE', 'Germany'), +('62.41.69.0', '62.41.69.255', 1042892032, 1042892287, 'NL', 'Netherlands'), +('62.41.70.0', '62.41.70.31', 1042892288, 1042892319, 'SE', 'Sweden'), +('62.41.70.32', '62.41.70.95', 1042892320, 1042892383, 'PT', 'Portugal'), +('62.41.70.96', '62.41.70.159', 1042892384, 1042892447, 'IT', 'Italy'), +('62.41.70.160', '62.41.70.191', 1042892448, 1042892479, 'BE', 'Belgium'), +('62.41.70.192', '62.41.70.255', 1042892480, 1042892543, 'PL', 'Poland'), +('62.41.71.0', '62.41.72.63', 1042892544, 1042892863, 'NL', 'Netherlands'), +('62.41.72.64', '62.41.72.127', 1042892864, 1042892927, 'GB', 'United Kingdom'), +('62.41.72.128', '62.41.72.167', 1042892928, 1042892967, 'NL', 'Netherlands'), +('62.41.72.168', '62.41.72.175', 1042892968, 1042892975, 'PL', 'Poland'), +('62.41.72.176', '62.41.72.183', 1042892976, 1042892983, 'CH', 'Switzerland'), +('62.41.72.184', '62.41.72.255', 1042892984, 1042893055, 'NL', 'Netherlands'), +('62.41.73.0', '62.41.73.31', 1042893056, 1042893087, 'GB', 'United Kingdom'), +('62.41.73.32', '62.41.73.79', 1042893088, 1042893135, 'NL', 'Netherlands'), +('62.41.73.80', '62.41.73.87', 1042893136, 1042893143, 'DE', 'Germany'), +('62.41.73.88', '62.41.73.127', 1042893144, 1042893183, 'NL', 'Netherlands'), +('62.41.73.128', '62.41.73.255', 1042893184, 1042893311, 'GB', 'United Kingdom'), +('62.41.74.0', '62.41.76.255', 1042893312, 1042894079, 'NL', 'Netherlands'), +('62.41.77.0', '62.41.77.63', 1042894080, 1042894143, 'DE', 'Germany'), +('62.41.77.64', '62.41.77.95', 1042894144, 1042894175, 'SE', 'Sweden'), +('62.41.77.96', '62.41.78.223', 1042894176, 1042894559, 'NL', 'Netherlands'), +('62.41.78.224', '62.41.78.255', 1042894560, 1042894591, 'DE', 'Germany'), +('62.41.79.0', '62.41.79.63', 1042894592, 1042894655, 'FR', 'France'), +('62.41.79.64', '62.41.79.191', 1042894656, 1042894783, 'NL', 'Netherlands'), +('62.41.79.192', '62.41.79.255', 1042894784, 1042894847, 'DE', 'Germany'), +('62.41.80.0', '62.41.81.255', 1042894848, 1042895359, 'NL', 'Netherlands'), +('62.41.82.0', '62.41.82.255', 1042895360, 1042895615, 'FR', 'France'), +('62.41.83.0', '62.41.83.255', 1042895616, 1042895871, 'GB', 'United Kingdom'), +('62.41.84.0', '62.41.101.255', 1042895872, 1042900479, 'NL', 'Netherlands'), +('62.41.102.0', '62.41.102.255', 1042900480, 1042900735, 'GB', 'United Kingdom'), +('62.41.103.0', '62.41.255.255', 1042900736, 1042939903, 'NL', 'Netherlands'), +('62.42.0.0', '62.43.255.255', 1042939904, 1043070975, 'ES', 'Spain'), +('62.44.0.0', '62.44.31.255', 1043070976, 1043079167, 'CZ', 'Czech Republic'), +('62.44.32.0', '62.44.63.255', 1043079168, 1043087359, 'DE', 'Germany'), +('62.44.64.0', '62.44.95.255', 1043087360, 1043095551, 'GB', 'United Kingdom'), +('62.44.96.0', '62.44.127.255', 1043095552, 1043103743, 'BG', 'Bulgaria'), +('62.44.128.0', '62.44.191.255', 1043103744, 1043120127, 'DK', 'Denmark'), +('62.44.192.0', '62.44.255.255', 1043120128, 1043136511, 'FI', 'Finland'), +('62.45.0.0', '62.45.255.255', 1043136512, 1043202047, 'NL', 'Netherlands'), +('62.46.0.0', '62.47.255.255', 1043202048, 1043333119, 'AT', 'Austria'), +('62.48.0.0', '62.48.31.255', 1043333120, 1043341311, 'CH', 'Switzerland'), +('62.48.32.0', '62.48.63.255', 1043341312, 1043349503, 'IT', 'Italy'), +('62.48.64.0', '62.48.68.59', 1043349504, 1043350587, 'DE', 'Germany'), +('62.48.68.60', '62.48.68.63', 1043350588, 1043350591, 'AT', 'Austria'), +('62.48.68.64', '62.48.95.255', 1043350592, 1043357695, 'DE', 'Germany'), +('62.48.96.0', '62.48.127.255', 1043357696, 1043365887, 'CH', 'Switzerland'), +('62.48.128.0', '62.48.255.255', 1043365888, 1043398655, 'PT', 'Portugal'), +('62.49.0.0', '62.49.255.255', 1043398656, 1043464191, 'GB', 'United Kingdom'), +('62.50.0.0', '62.50.3.255', 1043464192, 1043465215, 'NL', 'Netherlands'), +('62.50.4.0', '62.50.31.255', 1043465216, 1043472383, 'GB', 'United Kingdom'), +('62.50.32.0', '62.50.63.255', 1043472384, 1043480575, 'DE', 'Germany'), +('62.50.64.0', '62.50.95.255', 1043480576, 1043488767, 'CH', 'Switzerland'), +('62.50.96.0', '62.50.127.255', 1043488768, 1043496959, 'DE', 'Germany'), +('62.50.128.0', '62.50.159.255', 1043496960, 1043505151, 'FR', 'France'), +('62.50.160.0', '62.50.191.255', 1043505152, 1043513343, 'NO', 'Norway'), +('62.50.192.0', '62.50.255.255', 1043513344, 1043529727, 'GB', 'United Kingdom'), +('62.51.0.0', '62.51.255.255', 1043529728, 1043595263, 'NL', 'Netherlands'), +('62.52.0.0', '62.52.20.255', 1043595264, 1043600639, 'DE', 'Germany'), +('62.52.21.0', '62.52.21.255', 1043600640, 1043600895, 'FR', 'France'), +('62.52.22.0', '62.52.48.127', 1043600896, 1043607679, 'DE', 'Germany'), +('62.52.48.128', '62.52.48.159', 1043607680, 1043607711, 'FR', 'France'), +('62.52.48.160', '62.52.54.191', 1043607712, 1043609279, 'DE', 'Germany'), +('62.52.54.192', '62.52.54.255', 1043609280, 1043609343, 'AT', 'Austria'), +('62.52.55.0', '62.52.55.119', 1043609344, 1043609463, 'DE', 'Germany'), +('62.52.55.120', '62.52.55.127', 1043609464, 1043609471, 'IE', 'Ireland'), +('62.52.55.128', '62.52.95.255', 1043609472, 1043619839, 'DE', 'Germany'), +('62.52.96.0', '62.52.96.255', 1043619840, 1043620095, 'IE', 'Ireland'), +('62.52.97.0', '62.52.102.127', 1043620096, 1043621503, 'DE', 'Germany'), +('62.52.102.128', '62.52.102.191', 1043621504, 1043621567, 'GB', 'United Kingdom'), +('62.52.102.192', '62.52.109.47', 1043621568, 1043623215, 'DE', 'Germany'), +('62.52.109.48', '62.52.109.63', 1043623216, 1043623231, 'GB', 'United Kingdom'), +('62.52.109.64', '62.52.149.255', 1043623232, 1043633663, 'DE', 'Germany'), +('62.52.150.0', '62.52.150.255', 1043633664, 1043633919, 'FR', 'France'), +('62.52.151.0', '62.53.125.255', 1043633920, 1043693055, 'DE', 'Germany'), +('62.53.126.0', '62.53.126.71', 1043693056, 1043693127, 'GB', 'United Kingdom'), +('62.53.126.72', '62.53.126.127', 1043693128, 1043693183, 'DE', 'Germany'), +('62.53.126.128', '62.53.127.255', 1043693184, 1043693567, 'GB', 'United Kingdom'), +('62.53.128.0', '62.53.226.127', 1043693568, 1043718783, 'DE', 'Germany'), +('62.53.226.128', '62.53.226.159', 1043718784, 1043718815, 'FR', 'France'), +('62.53.226.160', '62.55.255.255', 1043718816, 1043857407, 'DE', 'Germany'), +('62.56.0.0', '62.56.127.255', 1043857408, 1043890175, 'GB', 'United Kingdom'), +('62.56.128.0', '62.56.129.63', 1043890176, 1043890495, 'A2', 'Satellite Provider'), +('62.56.129.64', '62.56.129.159', 1043890496, 1043890591, 'NG', 'Nigeria'), +('62.56.129.160', '62.56.134.63', 1043890592, 1043891775, 'A2', 'Satellite Provider'), +('62.56.134.64', '62.56.134.127', 1043891776, 1043891839, 'NG', 'Nigeria'), +('62.56.134.128', '62.56.135.255', 1043891840, 1043892223, 'A2', 'Satellite Provider'), +('62.56.136.0', '62.56.136.15', 1043892224, 1043892239, 'MZ', 'Mozambique'), +('62.56.136.16', '62.56.136.31', 1043892240, 1043892255, 'A2', 'Satellite Provider'), +('62.56.136.32', '62.56.136.63', 1043892256, 1043892287, 'MZ', 'Mozambique'), +('62.56.136.64', '62.56.136.255', 1043892288, 1043892479, 'A2', 'Satellite Provider'), +('62.56.137.0', '62.56.137.255', 1043892480, 1043892735, 'NG', 'Nigeria'), +('62.56.138.0', '62.56.138.255', 1043892736, 1043892991, 'MZ', 'Mozambique'), +('62.56.139.0', '62.56.139.255', 1043892992, 1043893247, 'NG', 'Nigeria'), +('62.56.140.0', '62.56.140.63', 1043893248, 1043893311, 'A2', 'Satellite Provider'), +('62.56.140.64', '62.56.140.127', 1043893312, 1043893375, 'NG', 'Nigeria'), +('62.56.140.128', '62.56.141.63', 1043893376, 1043893567, 'A2', 'Satellite Provider'), +('62.56.141.64', '62.56.141.79', 1043893568, 1043893583, 'NG', 'Nigeria'), +('62.56.141.80', '62.56.141.255', 1043893584, 1043893759, 'A2', 'Satellite Provider'), +('62.56.142.0', '62.56.142.255', 1043893760, 1043894015, 'NG', 'Nigeria'), +('62.56.143.0', '62.56.143.255', 1043894016, 1043894271, 'MZ', 'Mozambique'), +('62.56.144.0', '62.56.145.31', 1043894272, 1043894559, 'A2', 'Satellite Provider'), +('62.56.145.32', '62.56.145.63', 1043894560, 1043894591, 'NG', 'Nigeria'), +('62.56.145.64', '62.56.145.223', 1043894592, 1043894751, 'A2', 'Satellite Provider'), +('62.56.145.224', '62.56.145.255', 1043894752, 1043894783, 'NG', 'Nigeria'), +('62.56.146.0', '62.56.146.63', 1043894784, 1043894847, 'A2', 'Satellite Provider'), +('62.56.146.64', '62.56.146.95', 1043894848, 1043894879, 'NG', 'Nigeria'), +('62.56.146.96', '62.56.146.255', 1043894880, 1043895039, 'A2', 'Satellite Provider'), +('62.56.147.0', '62.56.147.127', 1043895040, 1043895167, 'NG', 'Nigeria'), +('62.56.147.128', '62.56.150.175', 1043895168, 1043895983, 'A2', 'Satellite Provider'), +('62.56.150.176', '62.56.150.191', 1043895984, 1043895999, 'AO', 'Angola'), +('62.56.150.192', '62.56.150.255', 1043896000, 1043896063, 'A2', 'Satellite Provider'), +('62.56.151.0', '62.56.151.255', 1043896064, 1043896319, 'NG', 'Nigeria'), +('62.56.152.0', '62.56.152.255', 1043896320, 1043896575, 'GH', 'Ghana'), +('62.56.153.0', '62.56.155.255', 1043896576, 1043897343, 'A2', 'Satellite Provider'), +('62.56.156.0', '62.56.157.255', 1043897344, 1043897855, 'KE', 'Kenya'), +('62.56.158.0', '62.56.159.255', 1043897856, 1043898367, 'A2', 'Satellite Provider'), +('62.56.160.0', '62.56.161.255', 1043898368, 1043898879, 'CD', 'Congo, The Democratic Republic of the'), +('62.56.162.0', '62.56.164.255', 1043898880, 1043899647, 'MG', 'Madagascar'), +('62.56.165.0', '62.56.165.255', 1043899648, 1043899903, 'A2', 'Satellite Provider'), +('62.56.166.0', '62.56.166.255', 1043899904, 1043900159, 'TZ', 'Tanzania, United Republic of'), +('62.56.167.0', '62.56.167.255', 1043900160, 1043900415, 'MG', 'Madagascar'), +('62.56.168.0', '62.56.185.255', 1043900416, 1043905023, 'A2', 'Satellite Provider'), +('62.56.186.0', '62.56.186.255', 1043905024, 1043905279, 'TG', 'Togo'), +('62.56.187.0', '62.56.193.255', 1043905280, 1043907071, 'A2', 'Satellite Provider'), +('62.56.194.0', '62.56.195.255', 1043907072, 1043907583, 'MZ', 'Mozambique'), +('62.56.196.0', '62.56.205.255', 1043907584, 1043910143, 'A2', 'Satellite Provider'), +('62.56.206.0', '62.56.206.255', 1043910144, 1043910399, 'TZ', 'Tanzania, United Republic of'), +('62.56.207.0', '62.56.207.255', 1043910400, 1043910655, 'KE', 'Kenya'), +('62.56.208.0', '62.56.214.255', 1043910656, 1043912447, 'A2', 'Satellite Provider'), +('62.56.215.0', '62.56.215.255', 1043912448, 1043912703, 'KE', 'Kenya'), +('62.56.216.0', '62.56.217.255', 1043912704, 1043913215, 'ZM', 'Zambia'), +('62.56.218.0', '62.56.218.255', 1043913216, 1043913471, 'TZ', 'Tanzania, United Republic of'), +('62.56.219.0', '62.56.223.255', 1043913472, 1043914751, 'A2', 'Satellite Provider'), +('62.56.224.0', '62.56.224.127', 1043914752, 1043914879, 'NG', 'Nigeria'), +('62.56.224.128', '62.56.231.255', 1043914880, 1043916799, 'A2', 'Satellite Provider'), +('62.56.232.0', '62.56.232.255', 1043916800, 1043917055, 'NG', 'Nigeria'), +('62.56.233.0', '62.56.233.255', 1043917056, 1043917311, 'A2', 'Satellite Provider'), +('62.56.234.0', '62.56.234.255', 1043917312, 1043917567, 'CM', 'Cameroon'), +('62.56.235.0', '62.56.239.255', 1043917568, 1043918847, 'A2', 'Satellite Provider'), +('62.56.240.0', '62.56.243.255', 1043918848, 1043919871, 'MG', 'Madagascar'), +('62.56.244.0', '62.56.251.255', 1043919872, 1043921919, 'A2', 'Satellite Provider'), +('62.56.252.0', '62.56.255.255', 1043921920, 1043922943, 'IL', 'Israel'), +('62.57.0.0', '62.57.255.255', 1043922944, 1043988479, 'ES', 'Spain'), +('62.58.0.0', '62.58.96.3', 1043988480, 1044013059, 'NL', 'Netherlands'), +('62.58.96.4', '62.58.96.15', 1044013060, 1044013071, 'BE', 'Belgium'), +('62.58.96.16', '62.58.96.31', 1044013072, 1044013087, 'NL', 'Netherlands'), +('62.58.96.32', '62.58.96.55', 1044013088, 1044013111, 'BE', 'Belgium'), +('62.58.96.56', '62.58.96.87', 1044013112, 1044013143, 'NL', 'Netherlands'), +('62.58.96.88', '62.58.96.191', 1044013144, 1044013247, 'BE', 'Belgium'), +('62.58.96.192', '62.58.96.207', 1044013248, 1044013263, 'NL', 'Netherlands'), +('62.58.96.208', '62.58.96.215', 1044013264, 1044013271, 'BE', 'Belgium'), +('62.58.96.216', '62.58.96.231', 1044013272, 1044013287, 'NL', 'Netherlands'), +('62.58.96.232', '62.58.97.63', 1044013288, 1044013375, 'BE', 'Belgium'), +('62.58.97.64', '62.58.97.255', 1044013376, 1044013567, 'NL', 'Netherlands'), +('62.58.98.0', '62.58.98.7', 1044013568, 1044013575, 'BE', 'Belgium'), +('62.58.98.8', '62.58.98.15', 1044013576, 1044013583, 'NL', 'Netherlands'), +('62.58.98.16', '62.58.98.47', 1044013584, 1044013615, 'BE', 'Belgium'), +('62.58.98.48', '62.58.98.55', 1044013616, 1044013623, 'NL', 'Netherlands'), +('62.58.98.56', '62.58.98.71', 1044013624, 1044013639, 'BE', 'Belgium'), +('62.58.98.72', '62.58.98.79', 1044013640, 1044013647, 'NL', 'Netherlands'), +('62.58.98.80', '62.58.98.87', 1044013648, 1044013655, 'BE', 'Belgium'), +('62.58.98.88', '62.58.98.95', 1044013656, 1044013663, 'NL', 'Netherlands'), +('62.58.98.96', '62.58.98.167', 1044013664, 1044013735, 'BE', 'Belgium'), +('62.58.98.168', '62.58.98.175', 1044013736, 1044013743, 'NL', 'Netherlands'), +('62.58.98.176', '62.58.99.15', 1044013744, 1044013839, 'BE', 'Belgium'), +('62.58.99.16', '62.58.99.23', 1044013840, 1044013847, 'NL', 'Netherlands'), +('62.58.99.24', '62.58.99.135', 1044013848, 1044013959, 'BE', 'Belgium'), +('62.58.99.136', '62.58.99.143', 1044013960, 1044013967, 'NL', 'Netherlands'), +('62.58.99.144', '62.58.99.223', 1044013968, 1044014047, 'BE', 'Belgium'), +('62.58.99.224', '62.58.99.231', 1044014048, 1044014055, 'NL', 'Netherlands'), +('62.58.99.232', '62.58.99.239', 1044014056, 1044014063, 'BE', 'Belgium'), +('62.58.99.240', '62.58.99.255', 1044014064, 1044014079, 'NL', 'Netherlands'), +('62.58.100.0', '62.58.100.15', 1044014080, 1044014095, 'BE', 'Belgium'), +('62.58.100.16', '62.58.100.55', 1044014096, 1044014135, 'NL', 'Netherlands'), +('62.58.100.56', '62.58.100.63', 1044014136, 1044014143, 'BE', 'Belgium'), +('62.58.100.64', '62.58.100.127', 1044014144, 1044014207, 'NL', 'Netherlands'), +('62.58.100.128', '62.58.100.143', 1044014208, 1044014223, 'BE', 'Belgium'), +('62.58.100.144', '62.58.100.151', 1044014224, 1044014231, 'NL', 'Netherlands'), +('62.58.100.152', '62.58.100.159', 1044014232, 1044014239, 'BE', 'Belgium'), +('62.58.100.160', '62.58.100.167', 1044014240, 1044014247, 'NL', 'Netherlands'), +('62.58.100.168', '62.58.102.255', 1044014248, 1044014847, 'BE', 'Belgium'), +('62.58.103.0', '62.58.105.127', 1044014848, 1044015487, 'NL', 'Netherlands'), +('62.58.105.128', '62.58.105.171', 1044015488, 1044015531, 'BE', 'Belgium'), +('62.58.105.172', '62.58.105.183', 1044015532, 1044015543, 'NL', 'Netherlands'), +('62.58.105.184', '62.58.105.207', 1044015544, 1044015567, 'BE', 'Belgium'), +('62.58.105.208', '62.58.105.223', 1044015568, 1044015583, 'NL', 'Netherlands'), +('62.58.105.224', '62.58.106.15', 1044015584, 1044015631, 'BE', 'Belgium'), +('62.58.106.16', '62.58.106.31', 1044015632, 1044015647, 'NL', 'Netherlands'), +('62.58.106.32', '62.58.106.63', 1044015648, 1044015679, 'BE', 'Belgium'), +('62.58.106.64', '62.58.106.87', 1044015680, 1044015703, 'NL', 'Netherlands'), +('62.58.106.88', '62.58.106.111', 1044015704, 1044015727, 'BE', 'Belgium'), +('62.58.106.112', '62.58.106.127', 1044015728, 1044015743, 'NL', 'Netherlands'), +('62.58.106.128', '62.58.106.175', 1044015744, 1044015791, 'BE', 'Belgium'), +('62.58.106.176', '62.58.106.207', 1044015792, 1044015823, 'NL', 'Netherlands'), +('62.58.106.208', '62.58.110.7', 1044015824, 1044016647, 'BE', 'Belgium'), +('62.58.110.8', '62.58.110.15', 1044016648, 1044016655, 'NL', 'Netherlands'), +('62.58.110.16', '62.58.110.31', 1044016656, 1044016671, 'BE', 'Belgium'), +('62.58.110.32', '62.58.110.63', 1044016672, 1044016703, 'NL', 'Netherlands'), +('62.58.110.64', '62.58.110.143', 1044016704, 1044016783, 'BE', 'Belgium'), +('62.58.110.144', '62.58.110.159', 1044016784, 1044016799, 'NL', 'Netherlands'), +('62.58.110.160', '62.58.112.15', 1044016800, 1044017167, 'BE', 'Belgium'), +('62.58.112.16', '62.58.112.127', 1044017168, 1044017279, 'NL', 'Netherlands'), +('62.58.112.128', '62.58.112.207', 1044017280, 1044017359, 'BE', 'Belgium'), +('62.58.112.208', '62.58.112.231', 1044017360, 1044017383, 'NL', 'Netherlands'), +('62.58.112.232', '62.58.112.247', 1044017384, 1044017399, 'BE', 'Belgium'), +('62.58.112.248', '62.58.115.63', 1044017400, 1044017983, 'NL', 'Netherlands'), +('62.58.115.64', '62.58.115.79', 1044017984, 1044017999, 'BE', 'Belgium'), +('62.58.115.80', '62.58.115.87', 1044018000, 1044018007, 'NL', 'Netherlands'), +('62.58.115.88', '62.58.115.111', 1044018008, 1044018031, 'BE', 'Belgium'), +('62.58.115.112', '62.58.115.127', 1044018032, 1044018047, 'NL', 'Netherlands'), +('62.58.115.128', '62.58.115.255', 1044018048, 1044018175, 'BE', 'Belgium'), +('62.58.116.0', '62.58.119.255', 1044018176, 1044019199, 'NL', 'Netherlands'), +('62.58.120.0', '62.58.120.31', 1044019200, 1044019231, 'BE', 'Belgium'), +('62.58.120.32', '62.58.120.35', 1044019232, 1044019235, 'NL', 'Netherlands'), +('62.58.120.36', '62.58.120.79', 1044019236, 1044019279, 'BE', 'Belgium'), +('62.58.120.80', '62.58.120.83', 1044019280, 1044019283, 'NL', 'Netherlands'), +('62.58.120.84', '62.58.120.91', 1044019284, 1044019291, 'BE', 'Belgium'), +('62.58.120.92', '62.58.120.95', 1044019292, 1044019295, 'NL', 'Netherlands'), +('62.58.120.96', '62.58.120.115', 1044019296, 1044019315, 'BE', 'Belgium'), +('62.58.120.116', '62.58.120.123', 1044019316, 1044019323, 'NL', 'Netherlands'), +('62.58.120.124', '62.58.120.147', 1044019324, 1044019347, 'BE', 'Belgium'), +('62.58.120.148', '62.58.120.151', 1044019348, 1044019351, 'NL', 'Netherlands'), +('62.58.120.152', '62.58.120.179', 1044019352, 1044019379, 'BE', 'Belgium'), +('62.58.120.180', '62.58.120.199', 1044019380, 1044019399, 'NL', 'Netherlands'), +('62.58.120.200', '62.58.120.203', 1044019400, 1044019403, 'BE', 'Belgium'), +('62.58.120.204', '62.58.120.207', 1044019404, 1044019407, 'NL', 'Netherlands'), +('62.58.120.208', '62.58.120.215', 1044019408, 1044019415, 'BE', 'Belgium'), +('62.58.120.216', '62.58.120.239', 1044019416, 1044019439, 'NL', 'Netherlands'), +('62.58.120.240', '62.58.120.243', 1044019440, 1044019443, 'BE', 'Belgium'), +('62.58.120.244', '62.58.121.19', 1044019444, 1044019475, 'NL', 'Netherlands'), +('62.58.121.20', '62.58.121.27', 1044019476, 1044019483, 'BE', 'Belgium'), +('62.58.121.28', '62.58.121.31', 1044019484, 1044019487, 'NL', 'Netherlands'), +('62.58.121.32', '62.58.121.35', 1044019488, 1044019491, 'BE', 'Belgium'), +('62.58.121.36', '62.58.121.39', 1044019492, 1044019495, 'NL', 'Netherlands'), +('62.58.121.40', '62.58.121.47', 1044019496, 1044019503, 'BE', 'Belgium'), +('62.58.121.48', '62.58.121.51', 1044019504, 1044019507, 'NL', 'Netherlands'), +('62.58.121.52', '62.58.121.59', 1044019508, 1044019515, 'BE', 'Belgium'), +('62.58.121.60', '62.58.121.71', 1044019516, 1044019527, 'NL', 'Netherlands'), +('62.58.121.72', '62.58.121.75', 1044019528, 1044019531, 'BE', 'Belgium'), +('62.58.121.76', '62.58.121.83', 1044019532, 1044019539, 'NL', 'Netherlands'), +('62.58.121.84', '62.58.121.107', 1044019540, 1044019563, 'BE', 'Belgium'), +('62.58.121.108', '62.58.121.115', 1044019564, 1044019571, 'NL', 'Netherlands'), +('62.58.121.116', '62.58.121.119', 1044019572, 1044019575, 'BE', 'Belgium'), +('62.58.121.120', '62.58.121.127', 1044019576, 1044019583, 'NL', 'Netherlands'), +('62.58.121.128', '62.58.121.239', 1044019584, 1044019695, 'BE', 'Belgium'), +('62.58.121.240', '62.58.121.255', 1044019696, 1044019711, 'NL', 'Netherlands'), +('62.58.122.0', '62.58.122.11', 1044019712, 1044019723, 'BE', 'Belgium'), +('62.58.122.12', '62.58.122.19', 1044019724, 1044019731, 'NL', 'Netherlands'), +('62.58.122.20', '62.58.122.23', 1044019732, 1044019735, 'BE', 'Belgium'), +('62.58.122.24', '62.58.122.27', 1044019736, 1044019739, 'NL', 'Netherlands'), +('62.58.122.28', '62.58.122.31', 1044019740, 1044019743, 'BE', 'Belgium'), +('62.58.122.32', '62.58.122.35', 1044019744, 1044019747, 'NL', 'Netherlands'), +('62.58.122.36', '62.58.122.39', 1044019748, 1044019751, 'BE', 'Belgium'), +('62.58.122.40', '62.58.122.43', 1044019752, 1044019755, 'NL', 'Netherlands'), +('62.58.122.44', '62.58.122.47', 1044019756, 1044019759, 'BE', 'Belgium'), +('62.58.122.48', '62.58.122.59', 1044019760, 1044019771, 'NL', 'Netherlands'), +('62.58.122.60', '62.58.122.63', 1044019772, 1044019775, 'BE', 'Belgium'), +('62.58.122.64', '62.58.122.67', 1044019776, 1044019779, 'NL', 'Netherlands'), +('62.58.122.68', '62.58.122.75', 1044019780, 1044019787, 'BE', 'Belgium'), +('62.58.122.76', '62.58.122.87', 1044019788, 1044019799, 'NL', 'Netherlands'), +('62.58.122.88', '62.58.122.91', 1044019800, 1044019803, 'BE', 'Belgium'), +('62.58.122.92', '62.58.122.95', 1044019804, 1044019807, 'NL', 'Netherlands'), +('62.58.122.96', '62.58.122.99', 1044019808, 1044019811, 'BE', 'Belgium'), +('62.58.122.100', '62.58.122.115', 1044019812, 1044019827, 'NL', 'Netherlands'), +('62.58.122.116', '62.58.122.123', 1044019828, 1044019835, 'BE', 'Belgium'), +('62.58.122.124', '62.58.122.131', 1044019836, 1044019843, 'NL', 'Netherlands'), +('62.58.122.132', '62.58.122.139', 1044019844, 1044019851, 'BE', 'Belgium'), +('62.58.122.140', '62.58.122.147', 1044019852, 1044019859, 'NL', 'Netherlands'), +('62.58.122.148', '62.58.122.155', 1044019860, 1044019867, 'BE', 'Belgium'), +('62.58.122.156', '62.58.122.159', 1044019868, 1044019871, 'NL', 'Netherlands'), +('62.58.122.160', '62.58.122.163', 1044019872, 1044019875, 'BE', 'Belgium'), +('62.58.122.164', '62.58.122.175', 1044019876, 1044019887, 'NL', 'Netherlands'), +('62.58.122.176', '62.58.122.179', 1044019888, 1044019891, 'BE', 'Belgium'), +('62.58.122.180', '62.58.122.191', 1044019892, 1044019903, 'NL', 'Netherlands'), +('62.58.122.192', '62.58.122.195', 1044019904, 1044019907, 'BE', 'Belgium'), +('62.58.122.196', '62.58.122.199', 1044019908, 1044019911, 'NL', 'Netherlands'), +('62.58.122.200', '62.58.122.203', 1044019912, 1044019915, 'BE', 'Belgium'), +('62.58.122.204', '62.58.122.207', 1044019916, 1044019919, 'NL', 'Netherlands'), +('62.58.122.208', '62.58.122.211', 1044019920, 1044019923, 'BE', 'Belgium'), +('62.58.122.212', '62.58.122.219', 1044019924, 1044019931, 'NL', 'Netherlands'), +('62.58.122.220', '62.58.122.227', 1044019932, 1044019939, 'BE', 'Belgium'), +('62.58.122.228', '62.58.122.243', 1044019940, 1044019955, 'NL', 'Netherlands'), +('62.58.122.244', '62.58.122.251', 1044019956, 1044019963, 'BE', 'Belgium'), +('62.58.122.252', '62.58.123.11', 1044019964, 1044019979, 'NL', 'Netherlands'), +('62.58.123.12', '62.58.123.19', 1044019980, 1044019987, 'BE', 'Belgium'), +('62.58.123.20', '62.58.123.23', 1044019988, 1044019991, 'NL', 'Netherlands'), +('62.58.123.24', '62.58.123.27', 1044019992, 1044019995, 'BE', 'Belgium'), +('62.58.123.28', '62.58.123.35', 1044019996, 1044020003, 'NL', 'Netherlands'), +('62.58.123.36', '62.58.123.47', 1044020004, 1044020015, 'BE', 'Belgium'), +('62.58.123.48', '62.58.123.51', 1044020016, 1044020019, 'NL', 'Netherlands'), +('62.58.123.52', '62.58.123.63', 1044020020, 1044020031, 'BE', 'Belgium'), +('62.58.123.64', '62.58.123.67', 1044020032, 1044020035, 'NL', 'Netherlands'), +('62.58.123.68', '62.58.123.71', 1044020036, 1044020039, 'BE', 'Belgium'), +('62.58.123.72', '62.58.123.79', 1044020040, 1044020047, 'NL', 'Netherlands'), +('62.58.123.80', '62.58.123.91', 1044020048, 1044020059, 'BE', 'Belgium'), +('62.58.123.92', '62.58.123.103', 1044020060, 1044020071, 'NL', 'Netherlands'), +('62.58.123.104', '62.58.123.107', 1044020072, 1044020075, 'BE', 'Belgium'), +('62.58.123.108', '62.58.123.115', 1044020076, 1044020083, 'NL', 'Netherlands'), +('62.58.123.116', '62.58.123.159', 1044020084, 1044020127, 'BE', 'Belgium'), +('62.58.123.160', '62.58.123.163', 1044020128, 1044020131, 'NL', 'Netherlands'), +('62.58.123.164', '62.58.123.179', 1044020132, 1044020147, 'BE', 'Belgium'), +('62.58.123.180', '62.58.123.183', 1044020148, 1044020151, 'NL', 'Netherlands'), +('62.58.123.184', '62.58.123.187', 1044020152, 1044020155, 'BE', 'Belgium'), +('62.58.123.188', '62.58.123.191', 1044020156, 1044020159, 'NL', 'Netherlands'), +('62.58.123.192', '62.58.123.195', 1044020160, 1044020163, 'BE', 'Belgium'), +('62.58.123.196', '62.58.123.199', 1044020164, 1044020167, 'NL', 'Netherlands'), +('62.58.123.200', '62.58.123.219', 1044020168, 1044020187, 'BE', 'Belgium'), +('62.58.123.220', '62.58.123.231', 1044020188, 1044020199, 'NL', 'Netherlands'), +('62.58.123.232', '62.58.123.235', 1044020200, 1044020203, 'BE', 'Belgium'), +('62.58.123.236', '62.58.123.239', 1044020204, 1044020207, 'NL', 'Netherlands'), +('62.58.123.240', '62.58.123.243', 1044020208, 1044020211, 'BE', 'Belgium'), +('62.58.123.244', '62.58.123.251', 1044020212, 1044020219, 'NL', 'Netherlands'), +('62.58.123.252', '62.58.124.31', 1044020220, 1044020255, 'BE', 'Belgium'), +('62.58.124.32', '62.58.124.39', 1044020256, 1044020263, 'NL', 'Netherlands'), +('62.58.124.40', '62.58.124.79', 1044020264, 1044020303, 'BE', 'Belgium'), +('62.58.124.80', '62.58.124.95', 1044020304, 1044020319, 'NL', 'Netherlands'), +('62.58.124.96', '62.58.125.31', 1044020320, 1044020511, 'BE', 'Belgium'), +('62.58.125.32', '62.58.125.71', 1044020512, 1044020551, 'NL', 'Netherlands'), +('62.58.125.72', '62.58.125.87', 1044020552, 1044020567, 'BE', 'Belgium'), +('62.58.125.88', '62.58.125.111', 1044020568, 1044020591, 'NL', 'Netherlands'), +('62.58.125.112', '62.58.125.127', 1044020592, 1044020607, 'BE', 'Belgium'), +('62.58.125.128', '62.58.125.191', 1044020608, 1044020671, 'NL', 'Netherlands'), +('62.58.125.192', '62.58.125.255', 1044020672, 1044020735, 'BE', 'Belgium'), +('62.58.126.0', '62.58.138.255', 1044020736, 1044024063, 'NL', 'Netherlands'), +('62.58.139.0', '62.58.139.255', 1044024064, 1044024319, 'BE', 'Belgium'), +('62.58.140.0', '62.58.223.255', 1044024320, 1044045823, 'NL', 'Netherlands'), +('62.58.224.0', '62.58.224.31', 1044045824, 1044045855, 'BE', 'Belgium'), +('62.58.224.32', '62.58.224.63', 1044045856, 1044045887, 'NL', 'Netherlands'), +('62.58.224.64', '62.58.224.87', 1044045888, 1044045911, 'BE', 'Belgium'), +('62.58.224.88', '62.58.224.95', 1044045912, 1044045919, 'NL', 'Netherlands'), +('62.58.224.96', '62.58.224.255', 1044045920, 1044046079, 'BE', 'Belgium'), +('62.58.225.0', '62.58.225.159', 1044046080, 1044046239, 'NL', 'Netherlands'), +('62.58.225.160', '62.58.225.239', 1044046240, 1044046319, 'BE', 'Belgium'), +('62.58.225.240', '62.58.225.247', 1044046320, 1044046327, 'NL', 'Netherlands'), +('62.58.225.248', '62.58.227.255', 1044046328, 1044046847, 'BE', 'Belgium'), +('62.58.228.0', '62.58.247.255', 1044046848, 1044051967, 'NL', 'Netherlands'), +('62.58.248.0', '62.58.248.19', 1044051968, 1044051987, 'BE', 'Belgium'), +('62.58.248.20', '62.58.248.23', 1044051988, 1044051991, 'NL', 'Netherlands'), +('62.58.248.24', '62.58.248.43', 1044051992, 1044052011, 'BE', 'Belgium'), +('62.58.248.44', '62.58.248.47', 1044052012, 1044052015, 'NL', 'Netherlands'), +('62.58.248.48', '62.58.248.63', 1044052016, 1044052031, 'BE', 'Belgium'), +('62.58.248.64', '62.58.248.71', 1044052032, 1044052039, 'NL', 'Netherlands'), +('62.58.248.72', '62.58.248.95', 1044052040, 1044052063, 'BE', 'Belgium'), +('62.58.248.96', '62.58.248.99', 1044052064, 1044052067, 'NL', 'Netherlands'), +('62.58.248.100', '62.58.248.139', 1044052068, 1044052107, 'BE', 'Belgium'), +('62.58.248.140', '62.58.248.143', 1044052108, 1044052111, 'NL', 'Netherlands'), +('62.58.248.144', '62.58.248.163', 1044052112, 1044052131, 'BE', 'Belgium'), +('62.58.248.164', '62.58.248.167', 1044052132, 1044052135, 'NL', 'Netherlands'), +('62.58.248.168', '62.58.248.183', 1044052136, 1044052151, 'BE', 'Belgium'), +('62.58.248.184', '62.58.248.187', 1044052152, 1044052155, 'NL', 'Netherlands'), +('62.58.248.188', '62.58.248.255', 1044052156, 1044052223, 'BE', 'Belgium'), +('62.58.249.0', '62.58.249.3', 1044052224, 1044052227, 'NL', 'Netherlands'), +('62.58.249.4', '62.58.249.31', 1044052228, 1044052255, 'BE', 'Belgium'), +('62.58.249.32', '62.58.249.35', 1044052256, 1044052259, 'NL', 'Netherlands'), +('62.58.249.36', '62.58.249.123', 1044052260, 1044052347, 'BE', 'Belgium'), +('62.58.249.124', '62.58.249.135', 1044052348, 1044052359, 'NL', 'Netherlands'), +('62.58.249.136', '62.58.249.139', 1044052360, 1044052363, 'BE', 'Belgium'), +('62.58.249.140', '62.58.251.235', 1044052364, 1044052971, 'NL', 'Netherlands'), +('62.58.251.236', '62.58.251.247', 1044052972, 1044052983, 'BE', 'Belgium'), +('62.58.251.248', '62.58.252.7', 1044052984, 1044052999, 'NL', 'Netherlands'), +('62.58.252.8', '62.58.252.63', 1044053000, 1044053055, 'BE', 'Belgium'), +('62.58.252.64', '62.58.252.79', 1044053056, 1044053071, 'NL', 'Netherlands'), +('62.58.252.80', '62.58.253.7', 1044053072, 1044053255, 'BE', 'Belgium'), +('62.58.253.8', '62.58.253.15', 1044053256, 1044053263, 'NL', 'Netherlands'), +('62.58.253.16', '62.58.253.151', 1044053264, 1044053399, 'BE', 'Belgium'), +('62.58.253.152', '62.58.253.167', 1044053400, 1044053415, 'NL', 'Netherlands'), +('62.58.253.168', '62.58.253.175', 1044053416, 1044053423, 'BE', 'Belgium'), +('62.58.253.176', '62.58.253.183', 1044053424, 1044053431, 'NL', 'Netherlands'), +('62.58.253.184', '62.58.253.207', 1044053432, 1044053455, 'BE', 'Belgium'), +('62.58.253.208', '62.58.253.215', 1044053456, 1044053463, 'NL', 'Netherlands'), +('62.58.253.216', '62.58.253.255', 1044053464, 1044053503, 'BE', 'Belgium'), +('62.58.254.0', '62.59.203.255', 1044053504, 1044106239, 'NL', 'Netherlands'), +('62.59.204.0', '62.59.204.127', 1044106240, 1044106367, 'BE', 'Belgium'), +('62.59.204.128', '62.59.204.255', 1044106368, 1044106495, 'NL', 'Netherlands'), +('62.59.205.0', '62.59.206.11', 1044106496, 1044106763, 'BE', 'Belgium'), +('62.59.206.12', '62.59.206.15', 1044106764, 1044106767, 'NL', 'Netherlands'), +('62.59.206.16', '62.59.206.19', 1044106768, 1044106771, 'BE', 'Belgium'), +('62.59.206.20', '62.59.206.23', 1044106772, 1044106775, 'NL', 'Netherlands'), +('62.59.206.24', '62.59.206.35', 1044106776, 1044106787, 'BE', 'Belgium'), +('62.59.206.36', '62.59.206.43', 1044106788, 1044106795, 'NL', 'Netherlands'), +('62.59.206.44', '62.59.206.55', 1044106796, 1044106807, 'BE', 'Belgium'), +('62.59.206.56', '62.59.247.255', 1044106808, 1044117503, 'NL', 'Netherlands'), +('62.59.248.0', '62.59.248.39', 1044117504, 1044117543, 'BE', 'Belgium'), +('62.59.248.40', '62.59.248.63', 1044117544, 1044117567, 'NL', 'Netherlands'), +('62.59.248.64', '62.59.249.87', 1044117568, 1044117847, 'BE', 'Belgium'), +('62.59.249.88', '62.59.249.95', 1044117848, 1044117855, 'NL', 'Netherlands'), +('62.59.249.96', '62.59.251.255', 1044117856, 1044118527, 'BE', 'Belgium'), +('62.59.252.0', '62.59.255.255', 1044118528, 1044119551, 'NL', 'Netherlands'), +('62.60.0.0', '62.60.127.255', 1044119552, 1044152319, 'GB', 'United Kingdom'), +('62.60.128.0', '62.60.255.255', 1044152320, 1044185087, 'IR', 'Iran, Islamic Republic of'), +('62.61.0.0', '62.61.31.255', 1044185088, 1044193279, 'RU', 'Russian Federation'), +('62.61.32.0', '62.61.63.255', 1044193280, 1044201471, 'PL', 'Poland'), +('62.61.64.0', '62.61.127.255', 1044201472, 1044217855, 'FI', 'Finland'), +('62.61.128.0', '62.61.159.255', 1044217856, 1044226047, 'DK', 'Denmark'), +('62.61.160.0', '62.61.191.255', 1044226048, 1044234239, 'OM', 'Oman'), +('62.61.192.0', '62.61.255.255', 1044234240, 1044250623, 'DZ', 'Algeria'), +('62.62.0.0', '62.62.2.255', 1044250624, 1044251391, 'BE', 'Belgium'), +('62.62.3.0', '62.62.3.255', 1044251392, 1044251647, 'EU', 'Europe'), +('62.62.4.0', '62.62.6.255', 1044251648, 1044252415, 'BE', 'Belgium'), +('62.62.7.0', '62.62.8.255', 1044252416, 1044252927, 'EU', 'Europe'), +('62.62.9.0', '62.62.10.255', 1044252928, 1044253439, 'BE', 'Belgium'), +('62.62.11.0', '62.62.11.255', 1044253440, 1044253695, 'EU', 'Europe'), +('62.62.12.0', '62.62.14.255', 1044253696, 1044254463, 'BE', 'Belgium'), +('62.62.15.0', '62.62.16.255', 1044254464, 1044254975, 'EU', 'Europe'), +('62.62.17.0', '62.62.18.255', 1044254976, 1044255487, 'BE', 'Belgium'), +('62.62.19.0', '62.62.20.255', 1044255488, 1044255999, 'EU', 'Europe'), +('62.62.21.0', '62.62.22.255', 1044256000, 1044256511, 'BE', 'Belgium'), +('62.62.23.0', '62.62.23.255', 1044256512, 1044256767, 'EU', 'Europe'), +('62.62.24.0', '62.62.26.255', 1044256768, 1044257535, 'BE', 'Belgium'), +('62.62.27.0', '62.62.27.255', 1044257536, 1044257791, 'EU', 'Europe'), +('62.62.28.0', '62.62.30.255', 1044257792, 1044258559, 'BE', 'Belgium'), +('62.62.31.0', '62.62.32.255', 1044258560, 1044259071, 'EU', 'Europe'), +('62.62.33.0', '62.62.34.255', 1044259072, 1044259583, 'BE', 'Belgium'), +('62.62.35.0', '62.62.36.255', 1044259584, 1044260095, 'EU', 'Europe'), +('62.62.37.0', '62.62.42.255', 1044260096, 1044261631, 'BE', 'Belgium'), +('62.62.43.0', '62.62.44.255', 1044261632, 1044262143, 'EU', 'Europe'), +('62.62.45.0', '62.62.45.255', 1044262144, 1044262399, 'BE', 'Belgium'), +('62.62.46.0', '62.62.48.255', 1044262400, 1044263167, 'EU', 'Europe'), +('62.62.49.0', '62.62.49.255', 1044263168, 1044263423, 'BE', 'Belgium'), +('62.62.50.0', '62.62.52.255', 1044263424, 1044264191, 'EU', 'Europe'), +('62.62.53.0', '62.62.53.255', 1044264192, 1044264447, 'BE', 'Belgium'), +('62.62.54.0', '62.62.56.255', 1044264448, 1044265215, 'EU', 'Europe'), +('62.62.57.0', '62.62.57.255', 1044265216, 1044265471, 'BE', 'Belgium'), +('62.62.58.0', '62.62.59.255', 1044265472, 1044265983, 'EU', 'Europe'), +('62.62.60.0', '62.62.62.255', 1044265984, 1044266751, 'BE', 'Belgium'), +('62.62.63.0', '62.62.65.255', 1044266752, 1044267519, 'EU', 'Europe'), +('62.62.66.0', '62.62.73.255', 1044267520, 1044269567, 'BE', 'Belgium'), +('62.62.74.0', '62.62.75.255', 1044269568, 1044270079, 'EU', 'Europe'), +('62.62.76.0', '62.62.81.255', 1044270080, 1044271615, 'BE', 'Belgium'), +('62.62.82.0', '62.62.83.255', 1044271616, 1044272127, 'EU', 'Europe'), +('62.62.84.0', '62.62.84.255', 1044272128, 1044272383, 'BE', 'Belgium'), +('62.62.85.0', '62.62.86.255', 1044272384, 1044272895, 'EU', 'Europe'), +('62.62.87.0', '62.62.87.255', 1044272896, 1044273151, 'BE', 'Belgium'), +('62.62.88.0', '62.62.127.255', 1044273152, 1044283391, 'EU', 'Europe'), +('62.62.128.0', '62.62.255.255', 1044283392, 1044316159, 'FR', 'France'), +('62.63.0.0', '62.63.63.255', 1044316160, 1044332543, 'NO', 'Norway'), +('62.63.64.0', '62.63.127.255', 1044332544, 1044348927, 'RU', 'Russian Federation'), +('62.63.128.0', '62.63.191.255', 1044348928, 1044365311, 'LV', 'Latvia'), +('62.63.192.0', '62.63.255.255', 1044365312, 1044381695, 'SE', 'Sweden'), +('62.64.0.0', '62.64.10.255', 1044381696, 1044384511, 'RU', 'Russian Federation'), +('62.64.11.0', '62.64.11.255', 1044384512, 1044384767, 'KZ', 'Kazakstan'), +('62.64.12.0', '62.64.31.255', 1044384768, 1044389887, 'RU', 'Russian Federation'), +('62.64.32.0', '62.64.63.255', 1044389888, 1044398079, 'FR', 'France'), +('62.64.64.0', '62.64.127.255', 1044398080, 1044414463, 'UA', 'Ukraine'), +('62.64.128.0', '62.64.255.255', 1044414464, 1044447231, 'GB', 'United Kingdom'), +('62.65.0.0', '62.65.16.255', 1044447232, 1044451583, 'SE', 'Sweden'), +('62.65.17.0', '62.65.17.255', 1044451584, 1044451839, 'NO', 'Norway'), +('62.65.18.0', '62.65.23.63', 1044451840, 1044453183, 'SE', 'Sweden'), +('62.65.23.64', '62.65.23.143', 1044453184, 1044453263, 'NO', 'Norway'), +('62.65.23.144', '62.65.27.255', 1044453264, 1044454399, 'SE', 'Sweden'), +('62.65.28.0', '62.65.28.15', 1044454400, 1044454415, 'NO', 'Norway'), +('62.65.28.16', '62.65.28.23', 1044454416, 1044454423, 'SE', 'Sweden'), +('62.65.28.24', '62.65.28.27', 1044454424, 1044454427, 'NO', 'Norway'), +('62.65.28.28', '62.65.28.63', 1044454428, 1044454463, 'SE', 'Sweden'), +('62.65.28.64', '62.65.28.95', 1044454464, 1044454495, 'NO', 'Norway'), +('62.65.28.96', '62.65.28.111', 1044454496, 1044454511, 'SE', 'Sweden'), +('62.65.28.112', '62.65.28.159', 1044454512, 1044454559, 'NO', 'Norway'), +('62.65.28.160', '62.65.28.183', 1044454560, 1044454583, 'SE', 'Sweden'), +('62.65.28.184', '62.65.28.255', 1044454584, 1044454655, 'NO', 'Norway'), +('62.65.29.0', '62.65.29.255', 1044454656, 1044454911, 'SE', 'Sweden'), +('62.65.30.0', '62.65.31.255', 1044454912, 1044455423, 'NO', 'Norway'), +('62.65.32.0', '62.65.63.255', 1044455424, 1044463615, 'EE', 'Estonia'), +('62.65.64.0', '62.65.127.255', 1044463616, 1044479999, 'SE', 'Sweden'), +('62.65.128.0', '62.65.159.255', 1044480000, 1044488191, 'CH', 'Switzerland'), +('62.65.160.0', '62.65.191.255', 1044488192, 1044496383, 'SK', 'Slovakia'), +('62.65.192.0', '62.65.255.255', 1044496384, 1044512767, 'EE', 'Estonia'), +('62.66.0.0', '62.66.255.255', 1044512768, 1044578303, 'DK', 'Denmark'), +('62.67.0.0', '62.67.31.255', 1044578304, 1044586495, 'GB', 'United Kingdom'), +('62.67.32.0', '62.67.33.255', 1044586496, 1044587007, 'DE', 'Germany'), +('62.67.34.0', '62.67.35.255', 1044587008, 1044587519, 'GB', 'United Kingdom'), +('62.67.36.0', '62.67.36.255', 1044587520, 1044587775, 'DE', 'Germany'), +('62.67.37.0', '62.67.37.255', 1044587776, 1044588031, 'GB', 'United Kingdom'), +('62.67.38.0', '62.67.38.255', 1044588032, 1044588287, 'DE', 'Germany'), +('62.67.39.0', '62.67.40.31', 1044588288, 1044588575, 'GB', 'United Kingdom'), +('62.67.40.32', '62.67.40.63', 1044588576, 1044588607, 'DE', 'Germany'), +('62.67.40.64', '62.67.41.255', 1044588608, 1044589055, 'GB', 'United Kingdom'), +('62.67.42.0', '62.67.46.255', 1044589056, 1044590335, 'DE', 'Germany'), +('62.67.47.0', '62.67.47.255', 1044590336, 1044590591, 'GB', 'United Kingdom'), +('62.67.48.0', '62.67.48.79', 1044590592, 1044590671, 'DE', 'Germany'), +('62.67.48.80', '62.67.48.255', 1044590672, 1044590847, 'GB', 'United Kingdom'), +('62.67.49.0', '62.67.50.255', 1044590848, 1044591359, 'DE', 'Germany'), +('62.67.51.0', '62.67.52.255', 1044591360, 1044591871, 'GB', 'United Kingdom'), +('62.67.53.0', '62.67.53.255', 1044591872, 1044592127, 'DE', 'Germany'), +('62.67.54.0', '62.67.54.15', 1044592128, 1044592143, 'GB', 'United Kingdom'), +('62.67.54.16', '62.67.54.47', 1044592144, 1044592175, 'DE', 'Germany'), +('62.67.54.48', '62.67.54.63', 1044592176, 1044592191, 'GB', 'United Kingdom'), +('62.67.54.64', '62.67.54.127', 1044592192, 1044592255, 'DE', 'Germany'), +('62.67.54.128', '62.67.55.255', 1044592256, 1044592639, 'GB', 'United Kingdom'), +('62.67.56.0', '62.67.56.15', 1044592640, 1044592655, 'DE', 'Germany'), +('62.67.56.16', '62.67.56.191', 1044592656, 1044592831, 'GB', 'United Kingdom'), +('62.67.56.192', '62.67.61.255', 1044592832, 1044594175, 'DE', 'Germany'), +('62.67.62.0', '62.67.183.255', 1044594176, 1044625407, 'GB', 'United Kingdom'), +('62.67.184.0', '62.67.184.55', 1044625408, 1044625463, 'DE', 'Germany'), +('62.67.184.56', '62.67.184.63', 1044625464, 1044625471, 'GB', 'United Kingdom'), +('62.67.184.64', '62.67.184.79', 1044625472, 1044625487, 'DE', 'Germany'), +('62.67.184.80', '62.67.184.255', 1044625488, 1044625663, 'GB', 'United Kingdom'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('62.67.185.0', '62.67.185.15', 1044625664, 1044625679, 'DE', 'Germany'), +('62.67.185.16', '62.67.193.255', 1044625680, 1044627967, 'GB', 'United Kingdom'), +('62.67.194.0', '62.67.195.255', 1044627968, 1044628479, 'DE', 'Germany'), +('62.67.196.0', '62.67.199.255', 1044628480, 1044629503, 'GB', 'United Kingdom'), +('62.67.200.0', '62.67.200.255', 1044629504, 1044629759, 'DE', 'Germany'), +('62.67.201.0', '62.67.203.255', 1044629760, 1044630527, 'GB', 'United Kingdom'), +('62.67.204.0', '62.67.204.255', 1044630528, 1044630783, 'DE', 'Germany'), +('62.67.205.0', '62.67.207.255', 1044630784, 1044631551, 'GB', 'United Kingdom'), +('62.67.208.0', '62.67.209.127', 1044631552, 1044631935, 'DE', 'Germany'), +('62.67.209.128', '62.67.209.143', 1044631936, 1044631951, 'GB', 'United Kingdom'), +('62.67.209.144', '62.67.209.159', 1044631952, 1044631967, 'DE', 'Germany'), +('62.67.209.160', '62.67.209.255', 1044631968, 1044632063, 'GB', 'United Kingdom'), +('62.67.210.0', '62.67.216.255', 1044632064, 1044633855, 'DE', 'Germany'), +('62.67.217.0', '62.67.217.255', 1044633856, 1044634111, 'GB', 'United Kingdom'), +('62.67.218.0', '62.67.218.255', 1044634112, 1044634367, 'DE', 'Germany'), +('62.67.219.0', '62.67.219.255', 1044634368, 1044634623, 'GB', 'United Kingdom'), +('62.67.220.0', '62.67.220.255', 1044634624, 1044634879, 'DE', 'Germany'), +('62.67.221.0', '62.67.221.255', 1044634880, 1044635135, 'GB', 'United Kingdom'), +('62.67.222.0', '62.67.222.255', 1044635136, 1044635391, 'DE', 'Germany'), +('62.67.223.0', '62.67.223.255', 1044635392, 1044635647, 'GB', 'United Kingdom'), +('62.67.224.0', '62.67.225.255', 1044635648, 1044636159, 'US', 'United States'), +('62.67.226.0', '62.67.233.255', 1044636160, 1044638207, 'DE', 'Germany'), +('62.67.234.0', '62.67.234.15', 1044638208, 1044638223, 'GB', 'United Kingdom'), +('62.67.234.16', '62.67.234.31', 1044638224, 1044638239, 'DE', 'Germany'), +('62.67.234.32', '62.67.234.63', 1044638240, 1044638271, 'GB', 'United Kingdom'), +('62.67.234.64', '62.67.234.127', 1044638272, 1044638335, 'DE', 'Germany'), +('62.67.234.128', '62.67.234.255', 1044638336, 1044638463, 'GB', 'United Kingdom'), +('62.67.235.0', '62.67.235.255', 1044638464, 1044638719, 'DE', 'Germany'), +('62.67.236.0', '62.67.236.255', 1044638720, 1044638975, 'GB', 'United Kingdom'), +('62.67.237.0', '62.67.237.255', 1044638976, 1044639231, 'DE', 'Germany'), +('62.67.238.0', '62.67.239.255', 1044639232, 1044639743, 'GB', 'United Kingdom'), +('62.67.240.0', '62.67.253.255', 1044639744, 1044643327, 'DE', 'Germany'), +('62.67.254.0', '62.67.255.255', 1044643328, 1044643839, 'GB', 'United Kingdom'), +('62.68.0.0', '62.68.31.255', 1044643840, 1044652031, 'DE', 'Germany'), +('62.68.32.0', '62.68.63.255', 1044652032, 1044660223, 'LY', 'Libyan Arab Jamahiriya'), +('62.68.64.0', '62.68.82.63', 1044660224, 1044664895, 'GR', 'Greece'), +('62.68.82.64', '62.68.82.127', 1044664896, 1044664959, 'IR', 'Iran, Islamic Republic of'), +('62.68.82.128', '62.68.95.255', 1044664960, 1044668415, 'GR', 'Greece'), +('62.68.96.0', '62.68.127.255', 1044668416, 1044676607, 'BA', 'Bosnia and Herzegovina'), +('62.68.128.0', '62.68.159.255', 1044676608, 1044684799, 'RU', 'Russian Federation'), +('62.68.160.0', '62.68.191.255', 1044684800, 1044692991, 'HU', 'Hungary'), +('62.68.192.0', '62.68.223.255', 1044692992, 1044701183, 'AT', 'Austria'), +('62.68.224.0', '62.68.255.255', 1044701184, 1044709375, 'EG', 'Egypt'), +('62.69.0.0', '62.69.31.255', 1044709376, 1044717567, 'RU', 'Russian Federation'), +('62.69.32.0', '62.69.127.255', 1044717568, 1044742143, 'GB', 'United Kingdom'), +('62.69.128.0', '62.69.159.255', 1044742144, 1044750335, 'KW', 'Kuwait'), +('62.69.160.0', '62.69.191.255', 1044750336, 1044758527, 'NL', 'Netherlands'), +('62.69.192.0', '62.69.255.255', 1044758528, 1044774911, 'PL', 'Poland'), +('62.70.0.0', '62.70.4.239', 1044774912, 1044776175, 'NO', 'Norway'), +('62.70.4.240', '62.70.4.255', 1044776176, 1044776191, 'GB', 'United Kingdom'), +('62.70.5.0', '62.70.99.127', 1044776192, 1044800383, 'NO', 'Norway'), +('62.70.99.128', '62.70.99.255', 1044800384, 1044800511, 'IT', 'Italy'), +('62.70.100.0', '62.70.255.255', 1044800512, 1044840447, 'NO', 'Norway'), +('62.71.0.0', '62.71.8.255', 1044840448, 1044842751, 'FI', 'Finland'), +('62.71.9.0', '62.71.9.63', 1044842752, 1044842815, 'AX', 'Aland Islands'), +('62.71.9.64', '62.71.255.255', 1044842816, 1044905983, 'FI', 'Finland'), +('62.72.0.0', '62.72.7.255', 1044905984, 1044908031, 'GB', 'United Kingdom'), +('62.72.8.0', '62.72.11.255', 1044908032, 1044909055, 'US', 'United States'), +('62.72.12.0', '62.72.18.255', 1044909056, 1044910847, 'GB', 'United Kingdom'), +('62.72.19.0', '62.72.19.255', 1044910848, 1044911103, 'DE', 'Germany'), +('62.72.20.0', '62.72.31.31', 1044911104, 1044913951, 'GB', 'United Kingdom'), +('62.72.31.32', '62.72.31.47', 1044913952, 1044913967, 'DE', 'Germany'), +('62.72.31.48', '62.72.31.63', 1044913968, 1044913983, 'GB', 'United Kingdom'), +('62.72.31.64', '62.72.31.95', 1044913984, 1044914015, 'DE', 'Germany'), +('62.72.31.96', '62.72.31.127', 1044914016, 1044914047, 'GB', 'United Kingdom'), +('62.72.31.128', '62.72.31.191', 1044914048, 1044914111, 'DE', 'Germany'), +('62.72.31.192', '62.72.41.255', 1044914112, 1044916735, 'GB', 'United Kingdom'), +('62.72.42.0', '62.72.43.255', 1044916736, 1044917247, 'DE', 'Germany'), +('62.72.44.0', '62.72.44.31', 1044917248, 1044917279, 'GB', 'United Kingdom'), +('62.72.44.32', '62.72.44.47', 1044917280, 1044917295, 'US', 'United States'), +('62.72.44.48', '62.72.44.63', 1044917296, 1044917311, 'DE', 'Germany'), +('62.72.44.64', '62.72.44.95', 1044917312, 1044917343, 'GB', 'United Kingdom'), +('62.72.44.96', '62.72.44.111', 1044917344, 1044917359, 'DE', 'Germany'), +('62.72.44.112', '62.72.44.255', 1044917360, 1044917503, 'GB', 'United Kingdom'), +('62.72.45.0', '62.72.45.255', 1044917504, 1044917759, 'DE', 'Germany'), +('62.72.46.0', '62.72.46.63', 1044917760, 1044917823, 'GB', 'United Kingdom'), +('62.72.46.64', '62.72.47.255', 1044917824, 1044918271, 'DE', 'Germany'), +('62.72.48.0', '62.72.48.15', 1044918272, 1044918287, 'GB', 'United Kingdom'), +('62.72.48.16', '62.72.51.255', 1044918288, 1044919295, 'DE', 'Germany'), +('62.72.52.0', '62.72.55.127', 1044919296, 1044920191, 'GB', 'United Kingdom'), +('62.72.55.128', '62.72.55.255', 1044920192, 1044920319, 'DE', 'Germany'), +('62.72.56.0', '62.72.59.255', 1044920320, 1044921343, 'GB', 'United Kingdom'), +('62.72.60.0', '62.72.63.255', 1044921344, 1044922367, 'US', 'United States'), +('62.72.64.0', '62.72.95.255', 1044922368, 1044930559, 'DE', 'Germany'), +('62.72.96.0', '62.72.96.135', 1044930560, 1044930695, 'BE', 'Belgium'), +('62.72.96.136', '62.72.96.143', 1044930696, 1044930703, 'GB', 'United Kingdom'), +('62.72.96.144', '62.72.96.215', 1044930704, 1044930775, 'BE', 'Belgium'), +('62.72.96.216', '62.72.96.223', 1044930776, 1044930783, 'GB', 'United Kingdom'), +('62.72.96.224', '62.72.96.231', 1044930784, 1044930791, 'BE', 'Belgium'), +('62.72.96.232', '62.72.96.235', 1044930792, 1044930795, 'GB', 'United Kingdom'), +('62.72.96.236', '62.72.96.239', 1044930796, 1044930799, 'BE', 'Belgium'), +('62.72.96.240', '62.72.96.247', 1044930800, 1044930807, 'GB', 'United Kingdom'), +('62.72.96.248', '62.72.97.7', 1044930808, 1044930823, 'BE', 'Belgium'), +('62.72.97.8', '62.72.97.15', 1044930824, 1044930831, 'GB', 'United Kingdom'), +('62.72.97.16', '62.72.97.31', 1044930832, 1044930847, 'BE', 'Belgium'), +('62.72.97.32', '62.72.97.63', 1044930848, 1044930879, 'GB', 'United Kingdom'), +('62.72.97.64', '62.72.97.95', 1044930880, 1044930911, 'BE', 'Belgium'), +('62.72.97.96', '62.72.97.111', 1044930912, 1044930927, 'DE', 'Germany'), +('62.72.97.112', '62.72.97.151', 1044930928, 1044930967, 'BE', 'Belgium'), +('62.72.97.152', '62.72.97.163', 1044930968, 1044930979, 'GB', 'United Kingdom'), +('62.72.97.164', '62.72.97.207', 1044930980, 1044931023, 'BE', 'Belgium'), +('62.72.97.208', '62.72.97.211', 1044931024, 1044931027, 'GB', 'United Kingdom'), +('62.72.97.212', '62.72.98.31', 1044931028, 1044931103, 'BE', 'Belgium'), +('62.72.98.32', '62.72.98.35', 1044931104, 1044931107, 'GB', 'United Kingdom'), +('62.72.98.36', '62.72.98.39', 1044931108, 1044931111, 'BE', 'Belgium'), +('62.72.98.40', '62.72.98.47', 1044931112, 1044931119, 'GB', 'United Kingdom'), +('62.72.98.48', '62.72.98.143', 1044931120, 1044931215, 'BE', 'Belgium'), +('62.72.98.144', '62.72.98.159', 1044931216, 1044931231, 'GB', 'United Kingdom'), +('62.72.98.160', '62.72.98.167', 1044931232, 1044931239, 'BE', 'Belgium'), +('62.72.98.168', '62.72.98.175', 1044931240, 1044931247, 'GB', 'United Kingdom'), +('62.72.98.176', '62.72.98.191', 1044931248, 1044931263, 'BE', 'Belgium'), +('62.72.98.192', '62.72.98.223', 1044931264, 1044931295, 'GB', 'United Kingdom'), +('62.72.98.224', '62.72.99.47', 1044931296, 1044931375, 'BE', 'Belgium'), +('62.72.99.48', '62.72.99.63', 1044931376, 1044931391, 'GB', 'United Kingdom'), +('62.72.99.64', '62.72.99.79', 1044931392, 1044931407, 'BE', 'Belgium'), +('62.72.99.80', '62.72.99.95', 1044931408, 1044931423, 'GB', 'United Kingdom'), +('62.72.99.96', '62.72.99.159', 1044931424, 1044931487, 'BE', 'Belgium'), +('62.72.99.160', '62.72.99.167', 1044931488, 1044931495, 'GB', 'United Kingdom'), +('62.72.99.168', '62.72.99.207', 1044931496, 1044931535, 'BE', 'Belgium'), +('62.72.99.208', '62.72.99.215', 1044931536, 1044931543, 'GB', 'United Kingdom'), +('62.72.99.216', '62.72.99.223', 1044931544, 1044931551, 'BE', 'Belgium'), +('62.72.99.224', '62.72.99.239', 1044931552, 1044931567, 'GB', 'United Kingdom'), +('62.72.99.240', '62.72.100.31', 1044931568, 1044931615, 'BE', 'Belgium'), +('62.72.100.32', '62.72.100.39', 1044931616, 1044931623, 'GB', 'United Kingdom'), +('62.72.100.40', '62.72.100.175', 1044931624, 1044931759, 'BE', 'Belgium'), +('62.72.100.176', '62.72.100.191', 1044931760, 1044931775, 'GB', 'United Kingdom'), +('62.72.100.192', '62.72.101.15', 1044931776, 1044931855, 'BE', 'Belgium'), +('62.72.101.16', '62.72.101.31', 1044931856, 1044931871, 'GB', 'United Kingdom'), +('62.72.101.32', '62.72.101.63', 1044931872, 1044931903, 'BE', 'Belgium'), +('62.72.101.64', '62.72.101.79', 1044931904, 1044931919, 'GB', 'United Kingdom'), +('62.72.101.80', '62.72.101.135', 1044931920, 1044931975, 'BE', 'Belgium'), +('62.72.101.136', '62.72.101.143', 1044931976, 1044931983, 'GB', 'United Kingdom'), +('62.72.101.144', '62.72.101.223', 1044931984, 1044932063, 'BE', 'Belgium'), +('62.72.101.224', '62.72.101.239', 1044932064, 1044932079, 'GB', 'United Kingdom'), +('62.72.101.240', '62.72.102.39', 1044932080, 1044932135, 'BE', 'Belgium'), +('62.72.102.40', '62.72.102.47', 1044932136, 1044932143, 'GB', 'United Kingdom'), +('62.72.102.48', '62.72.102.63', 1044932144, 1044932159, 'BE', 'Belgium'), +('62.72.102.64', '62.72.102.95', 1044932160, 1044932191, 'GB', 'United Kingdom'), +('62.72.102.96', '62.72.102.207', 1044932192, 1044932303, 'BE', 'Belgium'), +('62.72.102.208', '62.72.102.211', 1044932304, 1044932307, 'GB', 'United Kingdom'), +('62.72.102.212', '62.72.102.247', 1044932308, 1044932343, 'BE', 'Belgium'), +('62.72.102.248', '62.72.102.255', 1044932344, 1044932351, 'GB', 'United Kingdom'), +('62.72.103.0', '62.72.103.39', 1044932352, 1044932391, 'BE', 'Belgium'), +('62.72.103.40', '62.72.103.55', 1044932392, 1044932407, 'GB', 'United Kingdom'), +('62.72.103.56', '62.72.103.151', 1044932408, 1044932503, 'BE', 'Belgium'), +('62.72.103.152', '62.72.103.191', 1044932504, 1044932543, 'GB', 'United Kingdom'), +('62.72.103.192', '62.72.104.67', 1044932544, 1044932675, 'BE', 'Belgium'), +('62.72.104.68', '62.72.104.79', 1044932676, 1044932687, 'GB', 'United Kingdom'), +('62.72.104.80', '62.72.104.95', 1044932688, 1044932703, 'BE', 'Belgium'), +('62.72.104.96', '62.72.104.99', 1044932704, 1044932707, 'GB', 'United Kingdom'), +('62.72.104.100', '62.72.104.111', 1044932708, 1044932719, 'BE', 'Belgium'), +('62.72.104.112', '62.72.104.119', 1044932720, 1044932727, 'GB', 'United Kingdom'), +('62.72.104.120', '62.72.104.127', 1044932728, 1044932735, 'BE', 'Belgium'), +('62.72.104.128', '62.72.104.191', 1044932736, 1044932799, 'GB', 'United Kingdom'), +('62.72.104.192', '62.72.104.199', 1044932800, 1044932807, 'BE', 'Belgium'), +('62.72.104.200', '62.72.104.207', 1044932808, 1044932815, 'GB', 'United Kingdom'), +('62.72.104.208', '62.72.104.223', 1044932816, 1044932831, 'BE', 'Belgium'), +('62.72.104.224', '62.72.104.231', 1044932832, 1044932839, 'GB', 'United Kingdom'), +('62.72.104.232', '62.72.104.247', 1044932840, 1044932855, 'BE', 'Belgium'), +('62.72.104.248', '62.72.104.255', 1044932856, 1044932863, 'GB', 'United Kingdom'), +('62.72.105.0', '62.72.105.55', 1044932864, 1044932919, 'BE', 'Belgium'), +('62.72.105.56', '62.72.105.63', 1044932920, 1044932927, 'GB', 'United Kingdom'), +('62.72.105.64', '62.72.105.79', 1044932928, 1044932943, 'BE', 'Belgium'), +('62.72.105.80', '62.72.105.83', 1044932944, 1044932947, 'GB', 'United Kingdom'), +('62.72.105.84', '62.72.105.87', 1044932948, 1044932951, 'BE', 'Belgium'), +('62.72.105.88', '62.72.105.95', 1044932952, 1044932959, 'GB', 'United Kingdom'), +('62.72.105.96', '62.72.105.159', 1044932960, 1044933023, 'BE', 'Belgium'), +('62.72.105.160', '62.72.105.175', 1044933024, 1044933039, 'GB', 'United Kingdom'), +('62.72.105.176', '62.72.105.191', 1044933040, 1044933055, 'BE', 'Belgium'), +('62.72.105.192', '62.72.105.207', 1044933056, 1044933071, 'GB', 'United Kingdom'), +('62.72.105.208', '62.72.106.95', 1044933072, 1044933215, 'BE', 'Belgium'), +('62.72.106.96', '62.72.106.107', 1044933216, 1044933227, 'GB', 'United Kingdom'), +('62.72.106.108', '62.72.106.183', 1044933228, 1044933303, 'BE', 'Belgium'), +('62.72.106.184', '62.72.106.191', 1044933304, 1044933311, 'GB', 'United Kingdom'), +('62.72.106.192', '62.72.106.239', 1044933312, 1044933359, 'BE', 'Belgium'), +('62.72.106.240', '62.72.106.255', 1044933360, 1044933375, 'GB', 'United Kingdom'), +('62.72.107.0', '62.72.107.39', 1044933376, 1044933415, 'BE', 'Belgium'), +('62.72.107.40', '62.72.107.63', 1044933416, 1044933439, 'GB', 'United Kingdom'), +('62.72.107.64', '62.72.107.239', 1044933440, 1044933615, 'BE', 'Belgium'), +('62.72.107.240', '62.72.107.247', 1044933616, 1044933623, 'GB', 'United Kingdom'), +('62.72.107.248', '62.72.108.79', 1044933624, 1044933711, 'BE', 'Belgium'), +('62.72.108.80', '62.72.108.87', 1044933712, 1044933719, 'GB', 'United Kingdom'), +('62.72.108.88', '62.72.108.95', 1044933720, 1044933727, 'BE', 'Belgium'), +('62.72.108.96', '62.72.108.103', 1044933728, 1044933735, 'GB', 'United Kingdom'), +('62.72.108.104', '62.72.108.111', 1044933736, 1044933743, 'BE', 'Belgium'), +('62.72.108.112', '62.72.108.127', 1044933744, 1044933759, 'GB', 'United Kingdom'), +('62.72.108.128', '62.72.108.191', 1044933760, 1044933823, 'BE', 'Belgium'), +('62.72.108.192', '62.72.108.199', 1044933824, 1044933831, 'GB', 'United Kingdom'), +('62.72.108.200', '62.72.108.211', 1044933832, 1044933843, 'BE', 'Belgium'), +('62.72.108.212', '62.72.108.215', 1044933844, 1044933847, 'GB', 'United Kingdom'), +('62.72.108.216', '62.72.108.231', 1044933848, 1044933863, 'BE', 'Belgium'), +('62.72.108.232', '62.72.108.239', 1044933864, 1044933871, 'GB', 'United Kingdom'), +('62.72.108.240', '62.72.110.47', 1044933872, 1044934191, 'BE', 'Belgium'), +('62.72.110.48', '62.72.110.55', 1044934192, 1044934199, 'GB', 'United Kingdom'), +('62.72.110.56', '62.72.110.95', 1044934200, 1044934239, 'BE', 'Belgium'), +('62.72.110.96', '62.72.110.103', 1044934240, 1044934247, 'GB', 'United Kingdom'), +('62.72.110.104', '62.72.110.167', 1044934248, 1044934311, 'BE', 'Belgium'), +('62.72.110.168', '62.72.110.175', 1044934312, 1044934319, 'GB', 'United Kingdom'), +('62.72.110.176', '62.72.110.215', 1044934320, 1044934359, 'BE', 'Belgium'), +('62.72.110.216', '62.72.110.223', 1044934360, 1044934367, 'GB', 'United Kingdom'), +('62.72.110.224', '62.72.110.255', 1044934368, 1044934399, 'BE', 'Belgium'), +('62.72.111.0', '62.72.111.95', 1044934400, 1044934495, 'GB', 'United Kingdom'), +('62.72.111.96', '62.72.111.175', 1044934496, 1044934575, 'BE', 'Belgium'), +('62.72.111.176', '62.72.111.183', 1044934576, 1044934583, 'GB', 'United Kingdom'), +('62.72.111.184', '62.72.111.191', 1044934584, 1044934591, 'BE', 'Belgium'), +('62.72.111.192', '62.72.111.199', 1044934592, 1044934599, 'GB', 'United Kingdom'), +('62.72.111.200', '62.72.112.63', 1044934600, 1044934719, 'BE', 'Belgium'), +('62.72.112.64', '62.72.112.255', 1044934720, 1044934911, 'GB', 'United Kingdom'), +('62.72.113.0', '62.72.113.67', 1044934912, 1044934979, 'BE', 'Belgium'), +('62.72.113.68', '62.72.113.71', 1044934980, 1044934983, 'GB', 'United Kingdom'), +('62.72.113.72', '62.72.113.115', 1044934984, 1044935027, 'BE', 'Belgium'), +('62.72.113.116', '62.72.113.127', 1044935028, 1044935039, 'GB', 'United Kingdom'), +('62.72.113.128', '62.72.114.63', 1044935040, 1044935231, 'BE', 'Belgium'), +('62.72.114.64', '62.72.114.79', 1044935232, 1044935247, 'GB', 'United Kingdom'), +('62.72.114.80', '62.72.114.111', 1044935248, 1044935279, 'BE', 'Belgium'), +('62.72.114.112', '62.72.114.127', 1044935280, 1044935295, 'GB', 'United Kingdom'), +('62.72.114.128', '62.72.114.163', 1044935296, 1044935331, 'BE', 'Belgium'), +('62.72.114.164', '62.72.114.167', 1044935332, 1044935335, 'GB', 'United Kingdom'), +('62.72.114.168', '62.72.114.183', 1044935336, 1044935351, 'BE', 'Belgium'), +('62.72.114.184', '62.72.114.191', 1044935352, 1044935359, 'GB', 'United Kingdom'), +('62.72.114.192', '62.72.114.223', 1044935360, 1044935391, 'BE', 'Belgium'), +('62.72.114.224', '62.72.115.7', 1044935392, 1044935431, 'GB', 'United Kingdom'), +('62.72.115.8', '62.72.115.55', 1044935432, 1044935479, 'BE', 'Belgium'), +('62.72.115.56', '62.72.115.63', 1044935480, 1044935487, 'GB', 'United Kingdom'), +('62.72.115.64', '62.72.115.167', 1044935488, 1044935591, 'BE', 'Belgium'), +('62.72.115.168', '62.72.115.191', 1044935592, 1044935615, 'GB', 'United Kingdom'), +('62.72.115.192', '62.72.115.223', 1044935616, 1044935647, 'BE', 'Belgium'), +('62.72.115.224', '62.72.115.231', 1044935648, 1044935655, 'GB', 'United Kingdom'), +('62.72.115.232', '62.72.115.239', 1044935656, 1044935663, 'BE', 'Belgium'), +('62.72.115.240', '62.72.115.247', 1044935664, 1044935671, 'GB', 'United Kingdom'), +('62.72.115.248', '62.72.116.63', 1044935672, 1044935743, 'BE', 'Belgium'), +('62.72.116.64', '62.72.116.71', 1044935744, 1044935751, 'GB', 'United Kingdom'), +('62.72.116.72', '62.72.116.199', 1044935752, 1044935879, 'BE', 'Belgium'), +('62.72.116.200', '62.72.116.207', 1044935880, 1044935887, 'GB', 'United Kingdom'), +('62.72.116.208', '62.72.116.223', 1044935888, 1044935903, 'BE', 'Belgium'), +('62.72.116.224', '62.72.117.127', 1044935904, 1044936063, 'GB', 'United Kingdom'), +('62.72.117.128', '62.72.117.167', 1044936064, 1044936103, 'BE', 'Belgium'), +('62.72.117.168', '62.72.117.175', 1044936104, 1044936111, 'GB', 'United Kingdom'), +('62.72.117.176', '62.72.117.187', 1044936112, 1044936123, 'BE', 'Belgium'), +('62.72.117.188', '62.72.117.215', 1044936124, 1044936151, 'GB', 'United Kingdom'), +('62.72.117.216', '62.72.118.15', 1044936152, 1044936207, 'BE', 'Belgium'), +('62.72.118.16', '62.72.118.23', 1044936208, 1044936215, 'GB', 'United Kingdom'), +('62.72.118.24', '62.72.118.79', 1044936216, 1044936271, 'BE', 'Belgium'), +('62.72.118.80', '62.72.118.95', 1044936272, 1044936287, 'GB', 'United Kingdom'), +('62.72.118.96', '62.72.118.111', 1044936288, 1044936303, 'BE', 'Belgium'), +('62.72.118.112', '62.72.118.119', 1044936304, 1044936311, 'GB', 'United Kingdom'), +('62.72.118.120', '62.72.118.143', 1044936312, 1044936335, 'BE', 'Belgium'), +('62.72.118.144', '62.72.118.159', 1044936336, 1044936351, 'GB', 'United Kingdom'), +('62.72.118.160', '62.72.118.247', 1044936352, 1044936439, 'BE', 'Belgium'), +('62.72.118.248', '62.72.119.15', 1044936440, 1044936463, 'GB', 'United Kingdom'), +('62.72.119.16', '62.72.119.47', 1044936464, 1044936495, 'BE', 'Belgium'), +('62.72.119.48', '62.72.119.55', 1044936496, 1044936503, 'GB', 'United Kingdom'), +('62.72.119.56', '62.72.120.7', 1044936504, 1044936711, 'BE', 'Belgium'), +('62.72.120.8', '62.72.120.15', 1044936712, 1044936719, 'GB', 'United Kingdom'), +('62.72.120.16', '62.72.120.127', 1044936720, 1044936831, 'BE', 'Belgium'), +('62.72.120.128', '62.72.120.143', 1044936832, 1044936847, 'GB', 'United Kingdom'), +('62.72.120.144', '62.72.121.55', 1044936848, 1044937015, 'BE', 'Belgium'), +('62.72.121.56', '62.72.121.63', 1044937016, 1044937023, 'GB', 'United Kingdom'), +('62.72.121.64', '62.72.121.223', 1044937024, 1044937183, 'BE', 'Belgium'), +('62.72.121.224', '62.72.121.227', 1044937184, 1044937187, 'GB', 'United Kingdom'), +('62.72.121.228', '62.72.121.231', 1044937188, 1044937191, 'BE', 'Belgium'), +('62.72.121.232', '62.72.121.235', 1044937192, 1044937195, 'GB', 'United Kingdom'), +('62.72.121.236', '62.72.122.71', 1044937196, 1044937287, 'BE', 'Belgium'), +('62.72.122.72', '62.72.122.95', 1044937288, 1044937311, 'GB', 'United Kingdom'), +('62.72.122.96', '62.72.122.175', 1044937312, 1044937391, 'BE', 'Belgium'), +('62.72.122.176', '62.72.122.183', 1044937392, 1044937399, 'GB', 'United Kingdom'), +('62.72.122.184', '62.72.123.63', 1044937400, 1044937535, 'BE', 'Belgium'), +('62.72.123.64', '62.72.123.79', 1044937536, 1044937551, 'GB', 'United Kingdom'), +('62.72.123.80', '62.72.123.119', 1044937552, 1044937591, 'BE', 'Belgium'), +('62.72.123.120', '62.72.123.127', 1044937592, 1044937599, 'GB', 'United Kingdom'), +('62.72.123.128', '62.72.123.143', 1044937600, 1044937615, 'BE', 'Belgium'), +('62.72.123.144', '62.72.123.159', 1044937616, 1044937631, 'GB', 'United Kingdom'), +('62.72.123.160', '62.72.123.207', 1044937632, 1044937679, 'BE', 'Belgium'), +('62.72.123.208', '62.72.123.215', 1044937680, 1044937687, 'GB', 'United Kingdom'), +('62.72.123.216', '62.72.123.231', 1044937688, 1044937703, 'BE', 'Belgium'), +('62.72.123.232', '62.72.123.239', 1044937704, 1044937711, 'GB', 'United Kingdom'), +('62.72.123.240', '62.72.124.7', 1044937712, 1044937735, 'BE', 'Belgium'), +('62.72.124.8', '62.72.124.15', 1044937736, 1044937743, 'GB', 'United Kingdom'), +('62.72.124.16', '62.72.124.23', 1044937744, 1044937751, 'BE', 'Belgium'), +('62.72.124.24', '62.72.124.31', 1044937752, 1044937759, 'GB', 'United Kingdom'), +('62.72.124.32', '62.72.124.119', 1044937760, 1044937847, 'BE', 'Belgium'), +('62.72.124.120', '62.72.124.127', 1044937848, 1044937855, 'GB', 'United Kingdom'), +('62.72.124.128', '62.72.124.175', 1044937856, 1044937903, 'BE', 'Belgium'), +('62.72.124.176', '62.72.124.183', 1044937904, 1044937911, 'GB', 'United Kingdom'), +('62.72.124.184', '62.72.125.119', 1044937912, 1044938103, 'BE', 'Belgium'), +('62.72.125.120', '62.72.125.123', 1044938104, 1044938107, 'GB', 'United Kingdom'), +('62.72.125.124', '62.72.125.127', 1044938108, 1044938111, 'BE', 'Belgium'), +('62.72.125.128', '62.72.125.159', 1044938112, 1044938143, 'GB', 'United Kingdom'), +('62.72.125.160', '62.72.125.255', 1044938144, 1044938239, 'BE', 'Belgium'), +('62.72.126.0', '62.72.126.31', 1044938240, 1044938271, 'GB', 'United Kingdom'), +('62.72.126.32', '62.72.126.127', 1044938272, 1044938367, 'BE', 'Belgium'), +('62.72.126.128', '62.72.126.159', 1044938368, 1044938399, 'GB', 'United Kingdom'), +('62.72.126.160', '62.72.126.167', 1044938400, 1044938407, 'BE', 'Belgium'), +('62.72.126.168', '62.72.126.175', 1044938408, 1044938415, 'GB', 'United Kingdom'), +('62.72.126.176', '62.72.126.183', 1044938416, 1044938423, 'BE', 'Belgium'), +('62.72.126.184', '62.72.126.191', 1044938424, 1044938431, 'GB', 'United Kingdom'), +('62.72.126.192', '62.72.126.247', 1044938432, 1044938487, 'BE', 'Belgium'), +('62.72.126.248', '62.72.127.15', 1044938488, 1044938511, 'GB', 'United Kingdom'), +('62.72.127.16', '62.72.127.23', 1044938512, 1044938519, 'BE', 'Belgium'), +('62.72.127.24', '62.72.127.31', 1044938520, 1044938527, 'GB', 'United Kingdom'), +('62.72.127.32', '62.72.127.135', 1044938528, 1044938631, 'BE', 'Belgium'), +('62.72.127.136', '62.72.159.255', 1044938632, 1044946943, 'GB', 'United Kingdom'), +('62.72.160.0', '62.72.191.255', 1044946944, 1044955135, 'UA', 'Ukraine'), +('62.72.192.0', '62.72.223.255', 1044955136, 1044963327, 'NL', 'Netherlands'), +('62.72.224.0', '62.72.255.255', 1044963328, 1044971519, 'FI', 'Finland'), +('62.73.0.0', '62.73.31.255', 1044971520, 1044979711, 'FR', 'France'), +('62.73.32.0', '62.73.63.255', 1044979712, 1044987903, 'FI', 'Finland'), +('62.73.64.0', '62.73.127.255', 1044987904, 1045004287, 'BG', 'Bulgaria'), +('62.73.128.0', '62.73.129.127', 1045004288, 1045004671, 'GB', 'United Kingdom'), +('62.73.129.128', '62.73.129.207', 1045004672, 1045004751, 'IE', 'Ireland'), +('62.73.129.208', '62.73.182.95', 1045004752, 1045018207, 'GB', 'United Kingdom'), +('62.73.182.96', '62.73.182.119', 1045018208, 1045018231, 'FI', 'Finland'), +('62.73.182.120', '62.73.191.255', 1045018232, 1045020671, 'GB', 'United Kingdom'), +('62.73.192.0', '62.73.255.255', 1045020672, 1045037055, 'NO', 'Norway'), +('62.74.0.0', '62.75.64.255', 1045037056, 1045119231, 'GR', 'Greece'), +('62.75.65.0', '62.75.66.255', 1045119232, 1045119743, 'AL', 'Albania'), +('62.75.67.0', '62.75.127.255', 1045119744, 1045135359, 'GR', 'Greece'), +('62.75.128.0', '62.75.152.255', 1045135360, 1045141759, 'DE', 'Germany'), +('62.75.153.0', '62.75.153.255', 1045141760, 1045142015, 'PL', 'Poland'), +('62.75.154.0', '62.75.255.255', 1045142016, 1045168127, 'DE', 'Germany'), +('62.76.0.0', '62.76.255.255', 1045168128, 1045233663, 'RU', 'Russian Federation'), +('62.77.0.0', '62.77.31.255', 1045233664, 1045241855, 'GB', 'United Kingdom'), +('62.77.32.0', '62.77.63.255', 1045241856, 1045250047, 'IT', 'Italy'), +('62.77.64.0', '62.77.127.255', 1045250048, 1045266431, 'CZ', 'Czech Republic'), +('62.77.128.0', '62.77.159.255', 1045266432, 1045274623, 'HU', 'Hungary'), +('62.77.160.0', '62.77.191.255', 1045274624, 1045282815, 'IE', 'Ireland'), +('62.77.192.0', '62.77.255.255', 1045282816, 1045299199, 'HU', 'Hungary'), +('62.78.0.0', '62.78.11.255', 1045299200, 1045302271, 'GB', 'United Kingdom'), +('62.78.12.0', '62.78.15.255', 1045302272, 1045303295, 'EU', 'Europe'), +('62.78.16.0', '62.78.25.255', 1045303296, 1045305855, 'DE', 'Germany'), +('62.78.26.0', '62.78.31.255', 1045305856, 1045307391, 'EU', 'Europe'), +('62.78.32.0', '62.78.63.255', 1045307392, 1045315583, 'GB', 'United Kingdom'), +('62.78.64.0', '62.78.79.255', 1045315584, 1045319679, 'DE', 'Germany'), +('62.78.80.0', '62.78.95.255', 1045319680, 1045323775, 'RU', 'Russian Federation'), +('62.78.96.0', '62.78.255.255', 1045323776, 1045364735, 'FI', 'Finland'), +('62.79.0.0', '62.79.255.255', 1045364736, 1045430271, 'DK', 'Denmark'), +('62.80.0.0', '62.80.25.239', 1045430272, 1045436911, 'DE', 'Germany'), +('62.80.25.240', '62.80.25.247', 1045436912, 1045436919, 'GB', 'United Kingdom'), +('62.80.25.248', '62.80.63.255', 1045436920, 1045446655, 'DE', 'Germany'), +('62.80.64.0', '62.80.64.255', 1045446656, 1045446911, 'HU', 'Hungary'), +('62.80.65.0', '62.80.65.255', 1045446912, 1045447167, 'SK', 'Slovakia'), +('62.80.66.0', '62.80.66.63', 1045447168, 1045447231, 'HU', 'Hungary'), +('62.80.66.64', '62.80.66.71', 1045447232, 1045447239, 'SK', 'Slovakia'), +('62.80.66.72', '62.80.66.95', 1045447240, 1045447263, 'HU', 'Hungary'), +('62.80.66.96', '62.80.66.111', 1045447264, 1045447279, 'SK', 'Slovakia'), +('62.80.66.112', '62.80.66.119', 1045447280, 1045447287, 'HU', 'Hungary'), +('62.80.66.120', '62.80.66.127', 1045447288, 1045447295, 'SK', 'Slovakia'), +('62.80.66.128', '62.80.66.143', 1045447296, 1045447311, 'HU', 'Hungary'), +('62.80.66.144', '62.80.66.255', 1045447312, 1045447423, 'SK', 'Slovakia'), +('62.80.67.0', '62.80.67.7', 1045447424, 1045447431, 'HU', 'Hungary'), +('62.80.67.8', '62.80.67.15', 1045447432, 1045447439, 'SK', 'Slovakia'), +('62.80.67.16', '62.80.67.23', 1045447440, 1045447447, 'HU', 'Hungary'), +('62.80.67.24', '62.80.67.47', 1045447448, 1045447471, 'SK', 'Slovakia'), +('62.80.67.48', '62.80.67.127', 1045447472, 1045447551, 'HU', 'Hungary'), +('62.80.67.128', '62.80.69.95', 1045447552, 1045448031, 'SK', 'Slovakia'), +('62.80.69.96', '62.80.69.103', 1045448032, 1045448039, 'HU', 'Hungary'), +('62.80.69.104', '62.80.69.119', 1045448040, 1045448055, 'SK', 'Slovakia'), +('62.80.69.120', '62.80.69.127', 1045448056, 1045448063, 'HU', 'Hungary'), +('62.80.69.128', '62.80.69.223', 1045448064, 1045448159, 'SK', 'Slovakia'), +('62.80.69.224', '62.80.69.255', 1045448160, 1045448191, 'HU', 'Hungary'), +('62.80.70.0', '62.80.70.47', 1045448192, 1045448239, 'SK', 'Slovakia'), +('62.80.70.48', '62.80.70.71', 1045448240, 1045448263, 'HU', 'Hungary'), +('62.80.70.72', '62.80.71.255', 1045448264, 1045448703, 'SK', 'Slovakia'), +('62.80.72.0', '62.80.72.63', 1045448704, 1045448767, 'HU', 'Hungary'), +('62.80.72.64', '62.80.74.255', 1045448768, 1045449471, 'SK', 'Slovakia'), +('62.80.75.0', '62.80.75.255', 1045449472, 1045449727, 'HU', 'Hungary'), +('62.80.76.0', '62.80.79.255', 1045449728, 1045450751, 'SK', 'Slovakia'), +('62.80.80.0', '62.80.81.255', 1045450752, 1045451263, 'CZ', 'Czech Republic'), +('62.80.82.0', '62.80.83.255', 1045451264, 1045451775, 'SK', 'Slovakia'), +('62.80.84.0', '62.80.85.47', 1045451776, 1045452079, 'CZ', 'Czech Republic'), +('62.80.85.48', '62.80.85.55', 1045452080, 1045452087, 'SK', 'Slovakia'), +('62.80.85.56', '62.80.85.63', 1045452088, 1045452095, 'CZ', 'Czech Republic'), +('62.80.85.64', '62.80.85.127', 1045452096, 1045452159, 'SK', 'Slovakia'), +('62.80.85.128', '62.80.85.255', 1045452160, 1045452287, 'CZ', 'Czech Republic'), +('62.80.86.0', '62.80.87.255', 1045452288, 1045452799, 'SK', 'Slovakia'), +('62.80.88.0', '62.80.88.255', 1045452800, 1045453055, 'CZ', 'Czech Republic'), +('62.80.89.0', '62.80.95.255', 1045453056, 1045454847, 'SK', 'Slovakia'), +('62.80.96.0', '62.80.118.255', 1045454848, 1045460735, 'DE', 'Germany'), +('62.80.119.0', '62.80.119.255', 1045460736, 1045460991, 'NL', 'Netherlands'), +('62.80.120.0', '62.80.121.255', 1045460992, 1045461503, 'FR', 'France'), +('62.80.122.0', '62.80.122.127', 1045461504, 1045461631, 'DE', 'Germany'), +('62.80.122.128', '62.80.122.191', 1045461632, 1045461695, 'FR', 'France'), +('62.80.122.192', '62.80.122.199', 1045461696, 1045461703, 'DE', 'Germany'), +('62.80.122.200', '62.80.122.207', 1045461704, 1045461711, 'GB', 'United Kingdom'), +('62.80.122.208', '62.80.122.215', 1045461712, 1045461719, 'FR', 'France'), +('62.80.122.216', '62.80.122.223', 1045461720, 1045461727, 'IT', 'Italy'), +('62.80.122.224', '62.80.122.231', 1045461728, 1045461735, 'ES', 'Spain'), +('62.80.122.232', '62.80.122.239', 1045461736, 1045461743, 'NL', 'Netherlands'), +('62.80.122.240', '62.80.127.255', 1045461744, 1045463039, 'DE', 'Germany'), +('62.80.128.0', '62.80.145.95', 1045463040, 1045467487, 'FI', 'Finland'), +('62.80.145.96', '62.80.145.127', 1045467488, 1045467519, 'AX', 'Aland Islands'), +('62.80.145.128', '62.80.159.255', 1045467520, 1045471231, 'FI', 'Finland'), +('62.80.160.0', '62.80.191.255', 1045471232, 1045479423, 'UA', 'Ukraine'), +('62.80.192.0', '62.80.223.255', 1045479424, 1045487615, 'SE', 'Sweden'), +('62.80.224.0', '62.80.255.255', 1045487616, 1045495807, 'LT', 'Lithuania'), +('62.81.0.0', '62.83.255.255', 1045495808, 1045692415, 'ES', 'Spain'), +('62.84.0.0', '62.84.31.255', 1045692416, 1045700607, 'LV', 'Latvia'), +('62.84.32.0', '62.84.63.255', 1045700608, 1045708799, 'KZ', 'Kazakstan'), +('62.84.64.0', '62.84.95.255', 1045708800, 1045716991, 'LB', 'Lebanon'), +('62.84.96.0', '62.84.127.255', 1045716992, 1045725183, 'RU', 'Russian Federation'), +('62.84.128.0', '62.84.159.255', 1045725184, 1045733375, 'CZ', 'Czech Republic'), +('62.84.160.0', '62.84.191.255', 1045733376, 1045741567, 'GB', 'United Kingdom'), +('62.84.192.0', '62.84.193.63', 1045741568, 1045741887, 'SE', 'Sweden'), +('62.84.193.64', '62.84.193.191', 1045741888, 1045742015, 'GB', 'United Kingdom'), +('62.84.193.192', '62.84.193.199', 1045742016, 1045742023, 'SE', 'Sweden'), +('62.84.193.200', '62.84.193.215', 1045742024, 1045742039, 'GB', 'United Kingdom'), +('62.84.193.216', '62.84.193.223', 1045742040, 1045742047, 'SE', 'Sweden'), +('62.84.193.224', '62.84.193.239', 1045742048, 1045742063, 'GB', 'United Kingdom'), +('62.84.193.240', '62.84.194.47', 1045742064, 1045742127, 'SE', 'Sweden'), +('62.84.194.48', '62.84.194.95', 1045742128, 1045742175, 'GB', 'United Kingdom'), +('62.84.194.96', '62.84.194.119', 1045742176, 1045742199, 'SE', 'Sweden'), +('62.84.194.120', '62.84.194.127', 1045742200, 1045742207, 'GB', 'United Kingdom'), +('62.84.194.128', '62.84.194.159', 1045742208, 1045742239, 'SE', 'Sweden'), +('62.84.194.160', '62.84.194.167', 1045742240, 1045742247, 'GB', 'United Kingdom'), +('62.84.194.168', '62.84.194.191', 1045742248, 1045742271, 'SE', 'Sweden'), +('62.84.194.192', '62.84.194.255', 1045742272, 1045742335, 'GB', 'United Kingdom'), +('62.84.195.0', '62.84.195.15', 1045742336, 1045742351, 'SE', 'Sweden'), +('62.84.195.16', '62.84.195.31', 1045742352, 1045742367, 'GB', 'United Kingdom'), +('62.84.195.32', '62.84.195.47', 1045742368, 1045742383, 'SE', 'Sweden'), +('62.84.195.48', '62.84.195.55', 1045742384, 1045742391, 'GB', 'United Kingdom'), +('62.84.195.56', '62.84.195.63', 1045742392, 1045742399, 'SE', 'Sweden'), +('62.84.195.64', '62.84.195.95', 1045742400, 1045742431, 'GB', 'United Kingdom'), +('62.84.195.96', '62.84.195.159', 1045742432, 1045742495, 'SE', 'Sweden'), +('62.84.195.160', '62.84.195.199', 1045742496, 1045742535, 'GB', 'United Kingdom'), +('62.84.195.200', '62.84.195.215', 1045742536, 1045742551, 'SE', 'Sweden'), +('62.84.195.216', '62.84.195.223', 1045742552, 1045742559, 'GB', 'United Kingdom'), +('62.84.195.224', '62.84.196.171', 1045742560, 1045742763, 'SE', 'Sweden'), +('62.84.196.172', '62.84.196.175', 1045742764, 1045742767, 'GB', 'United Kingdom'), +('62.84.196.176', '62.84.196.191', 1045742768, 1045742783, 'SE', 'Sweden'), +('62.84.196.192', '62.84.196.239', 1045742784, 1045742831, 'GB', 'United Kingdom'), +('62.84.196.240', '62.84.196.247', 1045742832, 1045742839, 'SE', 'Sweden'), +('62.84.196.248', '62.84.196.255', 1045742840, 1045742847, 'GB', 'United Kingdom'), +('62.84.197.0', '62.84.197.175', 1045742848, 1045743023, 'SE', 'Sweden'), +('62.84.197.176', '62.84.197.183', 1045743024, 1045743031, 'GB', 'United Kingdom'), +('62.84.197.184', '62.84.197.191', 1045743032, 1045743039, 'SE', 'Sweden'), +('62.84.197.192', '62.84.197.215', 1045743040, 1045743063, 'GB', 'United Kingdom'), +('62.84.197.216', '62.84.197.247', 1045743064, 1045743095, 'SE', 'Sweden'), +('62.84.197.248', '62.84.198.79', 1045743096, 1045743183, 'GB', 'United Kingdom'), +('62.84.198.80', '62.84.198.87', 1045743184, 1045743191, 'SE', 'Sweden'), +('62.84.198.88', '62.84.198.95', 1045743192, 1045743199, 'GB', 'United Kingdom'), +('62.84.198.96', '62.84.198.143', 1045743200, 1045743247, 'SE', 'Sweden'), +('62.84.198.144', '62.84.198.159', 1045743248, 1045743263, 'GB', 'United Kingdom'), +('62.84.198.160', '62.84.200.63', 1045743264, 1045743679, 'SE', 'Sweden'), +('62.84.200.64', '62.84.200.127', 1045743680, 1045743743, 'GB', 'United Kingdom'), +('62.84.200.128', '62.84.200.167', 1045743744, 1045743783, 'SE', 'Sweden'), +('62.84.200.168', '62.84.200.175', 1045743784, 1045743791, 'GB', 'United Kingdom'), +('62.84.200.176', '62.84.200.187', 1045743792, 1045743803, 'SE', 'Sweden'), +('62.84.200.188', '62.84.200.191', 1045743804, 1045743807, 'GB', 'United Kingdom'), +('62.84.200.192', '62.84.201.127', 1045743808, 1045743999, 'SE', 'Sweden'), +('62.84.201.128', '62.84.201.135', 1045744000, 1045744007, 'LU', 'Luxembourg'), +('62.84.201.136', '62.84.201.191', 1045744008, 1045744063, 'GB', 'United Kingdom'), +('62.84.201.192', '62.84.202.255', 1045744064, 1045744383, 'SE', 'Sweden'), +('62.84.203.0', '62.84.206.255', 1045744384, 1045745407, 'GB', 'United Kingdom'), +('62.84.207.0', '62.84.207.199', 1045745408, 1045745607, 'SE', 'Sweden'), +('62.84.207.200', '62.84.207.215', 1045745608, 1045745623, 'GB', 'United Kingdom'), +('62.84.207.216', '62.84.207.231', 1045745624, 1045745639, 'SE', 'Sweden'), +('62.84.207.232', '62.84.207.239', 1045745640, 1045745647, 'GB', 'United Kingdom'), +('62.84.207.240', '62.84.207.247', 1045745648, 1045745655, 'SE', 'Sweden'), +('62.84.207.248', '62.84.207.255', 1045745656, 1045745663, 'GB', 'United Kingdom'), +('62.84.208.0', '62.84.208.31', 1045745664, 1045745695, 'SE', 'Sweden'), +('62.84.208.32', '62.84.208.95', 1045745696, 1045745759, 'GB', 'United Kingdom'), +('62.84.208.96', '62.84.208.104', 1045745760, 1045745768, 'SE', 'Sweden'), +('62.84.208.105', '62.84.208.215', 1045745769, 1045745879, 'GB', 'United Kingdom'), +('62.84.208.216', '62.84.208.255', 1045745880, 1045745919, 'SE', 'Sweden'), +('62.84.209.0', '62.84.209.79', 1045745920, 1045745999, 'GB', 'United Kingdom'), +('62.84.209.80', '62.84.209.159', 1045746000, 1045746079, 'SE', 'Sweden'), +('62.84.209.160', '62.84.209.175', 1045746080, 1045746095, 'GB', 'United Kingdom'), +('62.84.209.176', '62.84.209.191', 1045746096, 1045746111, 'SE', 'Sweden'), +('62.84.209.192', '62.84.209.223', 1045746112, 1045746143, 'GB', 'United Kingdom'), +('62.84.209.224', '62.84.209.239', 1045746144, 1045746159, 'SE', 'Sweden'), +('62.84.209.240', '62.84.209.255', 1045746160, 1045746175, 'GB', 'United Kingdom'), +('62.84.210.0', '62.84.210.255', 1045746176, 1045746431, 'SE', 'Sweden'), +('62.84.211.0', '62.84.211.15', 1045746432, 1045746447, 'GB', 'United Kingdom'), +('62.84.211.16', '62.84.211.31', 1045746448, 1045746463, 'SE', 'Sweden'), +('62.84.211.32', '62.84.211.111', 1045746464, 1045746543, 'GB', 'United Kingdom'), +('62.84.211.112', '62.84.211.127', 1045746544, 1045746559, 'SE', 'Sweden'), +('62.84.211.128', '62.84.211.255', 1045746560, 1045746687, 'GB', 'United Kingdom'), +('62.84.212.0', '62.84.213.127', 1045746688, 1045747071, 'SE', 'Sweden'), +('62.84.213.128', '62.84.213.255', 1045747072, 1045747199, 'GB', 'United Kingdom'), +('62.84.214.0', '62.84.214.255', 1045747200, 1045747455, 'SE', 'Sweden'), +('62.84.215.0', '62.84.215.127', 1045747456, 1045747583, 'GB', 'United Kingdom'), +('62.84.215.128', '62.84.215.159', 1045747584, 1045747615, 'SE', 'Sweden'), +('62.84.215.160', '62.84.215.223', 1045747616, 1045747679, 'GB', 'United Kingdom'), +('62.84.215.224', '62.84.215.255', 1045747680, 1045747711, 'SE', 'Sweden'), +('62.84.216.0', '62.84.216.31', 1045747712, 1045747743, 'GB', 'United Kingdom'), +('62.84.216.32', '62.84.216.39', 1045747744, 1045747751, 'SE', 'Sweden'), +('62.84.216.40', '62.84.216.47', 1045747752, 1045747759, 'GB', 'United Kingdom'), +('62.84.216.48', '62.84.216.63', 1045747760, 1045747775, 'SE', 'Sweden'), +('62.84.216.64', '62.84.216.103', 1045747776, 1045747815, 'GB', 'United Kingdom'), +('62.84.216.104', '62.84.216.111', 1045747816, 1045747823, 'SE', 'Sweden'), +('62.84.216.112', '62.84.216.127', 1045747824, 1045747839, 'GB', 'United Kingdom'), +('62.84.216.128', '62.84.216.159', 1045747840, 1045747871, 'SE', 'Sweden'), +('62.84.216.160', '62.84.216.207', 1045747872, 1045747919, 'GB', 'United Kingdom'), +('62.84.216.208', '62.84.216.223', 1045747920, 1045747935, 'SE', 'Sweden'), +('62.84.216.224', '62.84.216.255', 1045747936, 1045747967, 'GB', 'United Kingdom'), +('62.84.217.0', '62.84.217.255', 1045747968, 1045748223, 'SE', 'Sweden'), +('62.84.218.0', '62.84.218.15', 1045748224, 1045748239, 'GB', 'United Kingdom'), +('62.84.218.16', '62.84.218.63', 1045748240, 1045748287, 'SE', 'Sweden'), +('62.84.218.64', '62.84.218.71', 1045748288, 1045748295, 'GB', 'United Kingdom'), +('62.84.218.72', '62.84.218.79', 1045748296, 1045748303, 'SE', 'Sweden'), +('62.84.218.80', '62.84.218.95', 1045748304, 1045748319, 'GB', 'United Kingdom'), +('62.84.218.96', '62.84.218.127', 1045748320, 1045748351, 'SE', 'Sweden'), +('62.84.218.128', '62.84.218.175', 1045748352, 1045748399, 'GB', 'United Kingdom'), +('62.84.218.176', '62.84.218.183', 1045748400, 1045748407, 'SE', 'Sweden'), +('62.84.218.184', '62.84.218.239', 1045748408, 1045748463, 'GB', 'United Kingdom'), +('62.84.218.240', '62.84.218.255', 1045748464, 1045748479, 'SE', 'Sweden'), +('62.84.219.0', '62.84.255.255', 1045748480, 1045757951, 'GB', 'United Kingdom'), +('62.85.0.0', '62.85.127.255', 1045757952, 1045790719, 'LV', 'Latvia'), +('62.85.128.0', '62.85.159.255', 1045790720, 1045798911, 'FR', 'France'), +('62.85.160.0', '62.86.255.255', 1045798912, 1045889023, 'IT', 'Italy'), +('62.87.0.0', '62.87.127.255', 1045889024, 1045921791, 'ES', 'Spain'), +('62.87.128.0', '62.87.255.255', 1045921792, 1045954559, 'PL', 'Poland'), +('62.88.0.0', '62.88.127.255', 1045954560, 1045987327, 'BE', 'Belgium'), +('62.88.128.0', '62.88.255.255', 1045987328, 1046020095, 'SE', 'Sweden'), +('62.89.0.0', '62.89.31.255', 1046020096, 1046028287, 'AM', 'Armenia'), +('62.89.32.0', '62.89.63.255', 1046028288, 1046036479, 'NO', 'Norway'), +('62.89.64.0', '62.89.127.255', 1046036480, 1046052863, 'PL', 'Poland'), +('62.89.128.0', '62.89.159.255', 1046052864, 1046061055, 'GB', 'United Kingdom'), +('62.89.160.0', '62.89.191.255', 1046061056, 1046069247, 'DE', 'Germany'), +('62.89.192.0', '62.89.255.255', 1046069248, 1046085631, 'RU', 'Russian Federation'), +('62.90.0.0', '62.90.251.255', 1046085632, 1046150143, 'IL', 'Israel'), +('62.90.252.0', '62.90.252.255', 1046150144, 1046150399, 'LR', 'Liberia'), +('62.90.253.0', '62.90.255.255', 1046150400, 1046151167, 'IL', 'Israel'), +('62.91.0.0', '62.91.255.255', 1046151168, 1046216703, 'DE', 'Germany'), +('62.92.0.0', '62.92.16.159', 1046216704, 1046220959, 'NO', 'Norway'), +('62.92.16.160', '62.92.16.175', 1046220960, 1046220975, 'SE', 'Sweden'), +('62.92.16.176', '62.92.34.239', 1046220976, 1046225647, 'NO', 'Norway'), +('62.92.34.240', '62.92.34.247', 1046225648, 1046225655, 'SE', 'Sweden'), +('62.92.34.248', '62.92.48.119', 1046225656, 1046229111, 'NO', 'Norway'), +('62.92.48.120', '62.92.48.127', 1046229112, 1046229119, 'SE', 'Sweden'), +('62.92.48.128', '62.92.255.255', 1046229120, 1046282239, 'NO', 'Norway'), +('62.93.0.0', '62.93.31.255', 1046282240, 1046290431, 'GB', 'United Kingdom'), +('62.93.32.0', '62.93.63.255', 1046290432, 1046298623, 'PL', 'Poland'), +('62.93.64.0', '62.93.68.255', 1046298624, 1046299903, 'AT', 'Austria'), +('62.93.69.0', '62.93.69.255', 1046299904, 1046300159, 'MK', 'Macedonia'), +('62.93.70.0', '62.93.72.127', 1046300160, 1046300799, 'AT', 'Austria'), +('62.93.72.128', '62.93.72.255', 1046300800, 1046300927, 'MK', 'Macedonia'), +('62.93.73.0', '62.93.77.191', 1046300928, 1046302143, 'AT', 'Austria'), +('62.93.77.192', '62.93.77.255', 1046302144, 1046302207, 'MK', 'Macedonia'), +('62.93.78.0', '62.93.80.191', 1046302208, 1046302911, 'AT', 'Austria'), +('62.93.80.192', '62.93.80.255', 1046302912, 1046302975, 'MK', 'Macedonia'), +('62.93.81.0', '62.93.89.255', 1046302976, 1046305279, 'AT', 'Austria'), +('62.93.90.0', '62.93.90.127', 1046305280, 1046305407, 'MK', 'Macedonia'), +('62.93.90.128', '62.93.90.255', 1046305408, 1046305535, 'AT', 'Austria'), +('62.93.91.0', '62.93.91.127', 1046305536, 1046305663, 'MK', 'Macedonia'), +('62.93.91.128', '62.93.91.255', 1046305664, 1046305791, 'AT', 'Austria'), +('62.93.92.0', '62.93.95.255', 1046305792, 1046306815, 'MK', 'Macedonia'), +('62.93.96.0', '62.93.104.63', 1046306816, 1046308927, 'AT', 'Austria'), +('62.93.104.64', '62.93.106.127', 1046308928, 1046309503, 'MK', 'Macedonia'), +('62.93.106.128', '62.93.107.255', 1046309504, 1046309887, 'AT', 'Austria'), +('62.93.108.0', '62.93.108.255', 1046309888, 1046310143, 'MK', 'Macedonia'), +('62.93.109.0', '62.93.109.255', 1046310144, 1046310399, 'AT', 'Austria'), +('62.93.110.0', '62.93.115.255', 1046310400, 1046311935, 'MK', 'Macedonia'), +('62.93.116.0', '62.93.127.255', 1046311936, 1046315007, 'AT', 'Austria'), +('62.93.128.0', '62.93.129.255', 1046315008, 1046315519, 'FR', 'France'), +('62.93.130.0', '62.93.131.255', 1046315520, 1046316031, 'IT', 'Italy'), +('62.93.132.0', '62.93.133.255', 1046316032, 1046316543, 'FR', 'France'), +('62.93.134.0', '62.93.135.255', 1046316544, 1046317055, 'DK', 'Denmark'), +('62.93.136.0', '62.93.137.255', 1046317056, 1046317567, 'ES', 'Spain'), +('62.93.138.0', '62.93.138.255', 1046317568, 1046317823, 'GB', 'United Kingdom'), +('62.93.139.0', '62.93.140.255', 1046317824, 1046318335, 'NL', 'Netherlands'), +('62.93.141.0', '62.93.141.255', 1046318336, 1046318591, 'GB', 'United Kingdom'), +('62.93.142.0', '62.93.147.255', 1046318592, 1046320127, 'NL', 'Netherlands'), +('62.93.148.0', '62.93.159.255', 1046320128, 1046323199, 'GB', 'United Kingdom'), +('62.93.160.0', '62.93.175.111', 1046323200, 1046327151, 'ES', 'Spain'), +('62.93.175.112', '62.93.175.115', 1046327152, 1046327155, 'FR', 'France'), +('62.93.175.116', '62.93.191.247', 1046327156, 1046331383, 'ES', 'Spain'), +('62.93.191.248', '62.93.191.255', 1046331384, 1046331391, 'PT', 'Portugal'), +('62.93.192.0', '62.93.193.255', 1046331392, 1046331903, 'DE', 'Germany'), +('62.93.194.0', '62.93.194.255', 1046331904, 1046332159, 'NL', 'Netherlands'), +('62.93.195.0', '62.93.195.255', 1046332160, 1046332415, 'FR', 'France'), +('62.93.196.0', '62.93.224.255', 1046332416, 1046339839, 'DE', 'Germany'), +('62.93.225.0', '62.93.225.255', 1046339840, 1046340095, 'FR', 'France'), +('62.93.226.0', '62.93.230.31', 1046340096, 1046341151, 'NL', 'Netherlands'), +('62.93.230.32', '62.93.231.255', 1046341152, 1046341631, 'DE', 'Germany'), +('62.93.232.0', '62.93.233.255', 1046341632, 1046342143, 'FR', 'France'), +('62.93.234.0', '62.93.236.63', 1046342144, 1046342719, 'NL', 'Netherlands'), +('62.93.236.64', '62.93.238.255', 1046342720, 1046343423, 'DE', 'Germany'), +('62.93.239.0', '62.93.240.255', 1046343424, 1046343935, 'NL', 'Netherlands'), +('62.93.241.0', '62.93.255.255', 1046343936, 1046347775, 'DE', 'Germany'), +('62.94.0.0', '62.94.8.15', 1046347776, 1046349839, 'IT', 'Italy'), +('62.94.8.16', '62.94.8.23', 1046349840, 1046349847, 'FR', 'France'), +('62.94.8.24', '62.94.19.191', 1046349848, 1046352831, 'IT', 'Italy'), +('62.94.19.192', '62.94.19.207', 1046352832, 1046352847, 'SM', 'San Marino'), +('62.94.19.208', '62.94.74.87', 1046352848, 1046366807, 'IT', 'Italy'), +('62.94.74.88', '62.94.74.95', 1046366808, 1046366815, 'PL', 'Poland'), +('62.94.74.96', '62.94.145.207', 1046366816, 1046385103, 'IT', 'Italy'), +('62.94.145.208', '62.94.145.215', 1046385104, 1046385111, 'A2', 'Satellite Provider'), +('62.94.145.216', '62.94.163.255', 1046385112, 1046389759, 'IT', 'Italy'), +('62.94.164.0', '62.94.167.255', 1046389760, 1046390783, 'A2', 'Satellite Provider'), +('62.94.168.0', '62.94.255.255', 1046390784, 1046413311, 'IT', 'Italy'), +('62.95.0.0', '62.95.127.255', 1046413312, 1046446079, 'SE', 'Sweden'), +('62.95.128.0', '62.96.2.151', 1046446080, 1046479511, 'DE', 'Germany'), +('62.96.2.152', '62.96.2.190', 1046479512, 1046479550, 'GB', 'United Kingdom'), +('62.96.2.191', '62.96.3.71', 1046479551, 1046479687, 'DE', 'Germany'), +('62.96.3.72', '62.96.3.127', 1046479688, 1046479743, 'GB', 'United Kingdom'), +('62.96.3.128', '62.96.4.23', 1046479744, 1046479895, 'DE', 'Germany'), +('62.96.4.24', '62.96.4.31', 1046479896, 1046479903, 'GB', 'United Kingdom'), +('62.96.4.32', '62.96.4.63', 1046479904, 1046479935, 'DE', 'Germany'), +('62.96.4.64', '62.96.4.79', 1046479936, 1046479951, 'GB', 'United Kingdom'), +('62.96.4.80', '62.96.6.91', 1046479952, 1046480475, 'DE', 'Germany'), +('62.96.6.92', '62.96.6.95', 1046480476, 1046480479, 'GB', 'United Kingdom'), +('62.96.6.96', '62.96.7.63', 1046480480, 1046480703, 'DE', 'Germany'), +('62.96.7.64', '62.96.7.95', 1046480704, 1046480735, 'GB', 'United Kingdom'), +('62.96.7.96', '62.96.7.127', 1046480736, 1046480767, 'DE', 'Germany'), +('62.96.7.128', '62.96.7.255', 1046480768, 1046480895, 'GB', 'United Kingdom'), +('62.96.8.0', '62.96.9.23', 1046480896, 1046481175, 'DE', 'Germany'), +('62.96.9.24', '62.96.9.31', 1046481176, 1046481183, 'GB', 'United Kingdom'), +('62.96.9.32', '62.96.9.175', 1046481184, 1046481327, 'DE', 'Germany'), +('62.96.9.176', '62.96.9.223', 1046481328, 1046481375, 'GB', 'United Kingdom'), +('62.96.9.224', '62.96.10.63', 1046481376, 1046481471, 'DE', 'Germany'), +('62.96.10.64', '62.96.12.7', 1046481472, 1046481927, 'GB', 'United Kingdom'), +('62.96.12.8', '62.96.12.43', 1046481928, 1046481963, 'DE', 'Germany'), +('62.96.12.44', '62.96.12.47', 1046481964, 1046481967, 'GB', 'United Kingdom'), +('62.96.12.48', '62.96.13.31', 1046481968, 1046482207, 'DE', 'Germany'), +('62.96.13.32', '62.96.13.63', 1046482208, 1046482239, 'GB', 'United Kingdom'), +('62.96.13.64', '62.96.13.191', 1046482240, 1046482367, 'DE', 'Germany'), +('62.96.13.192', '62.96.15.255', 1046482368, 1046482943, 'GB', 'United Kingdom'), +('62.96.16.0', '62.96.17.31', 1046482944, 1046483231, 'DE', 'Germany'), +('62.96.17.32', '62.96.18.15', 1046483232, 1046483471, 'GB', 'United Kingdom'), +('62.96.18.16', '62.96.19.159', 1046483472, 1046483871, 'DE', 'Germany'), +('62.96.19.160', '62.96.19.255', 1046483872, 1046483967, 'GB', 'United Kingdom'), +('62.96.20.0', '62.96.21.127', 1046483968, 1046484351, 'DE', 'Germany'), +('62.96.21.128', '62.96.21.255', 1046484352, 1046484479, 'GB', 'United Kingdom'), +('62.96.22.0', '62.96.22.31', 1046484480, 1046484511, 'DE', 'Germany'), +('62.96.22.32', '62.96.22.127', 1046484512, 1046484607, 'GB', 'United Kingdom'), +('62.96.22.128', '62.96.22.143', 1046484608, 1046484623, 'DE', 'Germany'), +('62.96.22.144', '62.96.23.255', 1046484624, 1046484991, 'GB', 'United Kingdom'), +('62.96.24.0', '62.96.24.31', 1046484992, 1046485023, 'DE', 'Germany'), +('62.96.24.32', '62.96.24.39', 1046485024, 1046485031, 'GB', 'United Kingdom'), +('62.96.24.40', '62.96.24.135', 1046485032, 1046485127, 'DE', 'Germany'), +('62.96.24.136', '62.96.24.143', 1046485128, 1046485135, 'GB', 'United Kingdom'), +('62.96.24.144', '62.96.24.167', 1046485136, 1046485159, 'DE', 'Germany'), +('62.96.24.168', '62.96.24.175', 1046485160, 1046485167, 'GB', 'United Kingdom'), +('62.96.24.176', '62.96.25.31', 1046485168, 1046485279, 'DE', 'Germany'), +('62.96.25.32', '62.96.25.39', 1046485280, 1046485287, 'GB', 'United Kingdom'), +('62.96.25.40', '62.96.25.119', 1046485288, 1046485367, 'DE', 'Germany'), +('62.96.25.120', '62.96.25.127', 1046485368, 1046485375, 'GB', 'United Kingdom'), +('62.96.25.128', '62.96.25.247', 1046485376, 1046485495, 'DE', 'Germany'), +('62.96.25.248', '62.96.26.39', 1046485496, 1046485543, 'GB', 'United Kingdom'), +('62.96.26.40', '62.96.26.127', 1046485544, 1046485631, 'DE', 'Germany'), +('62.96.26.128', '62.96.26.135', 1046485632, 1046485639, 'GB', 'United Kingdom'), +('62.96.26.136', '62.96.26.143', 1046485640, 1046485647, 'DE', 'Germany'), +('62.96.26.144', '62.96.26.159', 1046485648, 1046485663, 'GB', 'United Kingdom'), +('62.96.26.160', '62.96.26.255', 1046485664, 1046485759, 'DE', 'Germany'), +('62.96.27.0', '62.96.27.31', 1046485760, 1046485791, 'GB', 'United Kingdom'), +('62.96.27.32', '62.96.27.63', 1046485792, 1046485823, 'DE', 'Germany'), +('62.96.27.64', '62.96.27.95', 1046485824, 1046485855, 'GB', 'United Kingdom'), +('62.96.27.96', '62.96.27.231', 1046485856, 1046485991, 'DE', 'Germany'), +('62.96.27.232', '62.96.27.239', 1046485992, 1046485999, 'GB', 'United Kingdom'), +('62.96.27.240', '62.96.28.39', 1046486000, 1046486055, 'DE', 'Germany'), +('62.96.28.40', '62.96.28.47', 1046486056, 1046486063, 'GB', 'United Kingdom'), +('62.96.28.48', '62.96.28.143', 1046486064, 1046486159, 'DE', 'Germany'), +('62.96.28.144', '62.96.28.159', 1046486160, 1046486175, 'GB', 'United Kingdom'), +('62.96.28.160', '62.96.28.167', 1046486176, 1046486183, 'DE', 'Germany'), +('62.96.28.168', '62.96.28.175', 1046486184, 1046486191, 'GB', 'United Kingdom'), +('62.96.28.176', '62.96.29.103', 1046486192, 1046486375, 'DE', 'Germany'), +('62.96.29.104', '62.96.29.111', 1046486376, 1046486383, 'GB', 'United Kingdom'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('62.96.29.112', '62.96.29.215', 1046486384, 1046486487, 'DE', 'Germany'), +('62.96.29.216', '62.96.29.223', 1046486488, 1046486495, 'GB', 'United Kingdom'), +('62.96.29.224', '62.96.48.255', 1046486496, 1046491391, 'DE', 'Germany'), +('62.96.49.0', '62.96.49.7', 1046491392, 1046491399, 'GB', 'United Kingdom'), +('62.96.49.8', '62.96.49.31', 1046491400, 1046491423, 'DE', 'Germany'), +('62.96.49.32', '62.96.49.39', 1046491424, 1046491431, 'GB', 'United Kingdom'), +('62.96.49.40', '62.96.49.199', 1046491432, 1046491591, 'DE', 'Germany'), +('62.96.49.200', '62.96.49.207', 1046491592, 1046491599, 'GB', 'United Kingdom'), +('62.96.49.208', '62.96.50.63', 1046491600, 1046491711, 'DE', 'Germany'), +('62.96.50.64', '62.96.50.79', 1046491712, 1046491727, 'GB', 'United Kingdom'), +('62.96.50.80', '62.96.50.95', 1046491728, 1046491743, 'DE', 'Germany'), +('62.96.50.96', '62.96.50.127', 1046491744, 1046491775, 'GB', 'United Kingdom'), +('62.96.50.128', '62.96.50.191', 1046491776, 1046491839, 'DE', 'Germany'), +('62.96.50.192', '62.96.51.255', 1046491840, 1046492159, 'GB', 'United Kingdom'), +('62.96.52.0', '62.96.52.159', 1046492160, 1046492319, 'DE', 'Germany'), +('62.96.52.160', '62.96.52.167', 1046492320, 1046492327, 'GB', 'United Kingdom'), +('62.96.52.168', '62.96.52.255', 1046492328, 1046492415, 'DE', 'Germany'), +('62.96.53.0', '62.96.53.31', 1046492416, 1046492447, 'GB', 'United Kingdom'), +('62.96.53.32', '62.96.53.87', 1046492448, 1046492503, 'DE', 'Germany'), +('62.96.53.88', '62.96.53.95', 1046492504, 1046492511, 'GB', 'United Kingdom'), +('62.96.53.96', '62.96.53.127', 1046492512, 1046492543, 'DE', 'Germany'), +('62.96.53.128', '62.96.53.135', 1046492544, 1046492551, 'GB', 'United Kingdom'), +('62.96.53.136', '62.96.53.239', 1046492552, 1046492655, 'DE', 'Germany'), +('62.96.53.240', '62.96.53.247', 1046492656, 1046492663, 'GB', 'United Kingdom'), +('62.96.53.248', '62.96.54.15', 1046492664, 1046492687, 'DE', 'Germany'), +('62.96.54.16', '62.96.54.23', 1046492688, 1046492695, 'GB', 'United Kingdom'), +('62.96.54.24', '62.96.54.239', 1046492696, 1046492911, 'DE', 'Germany'), +('62.96.54.240', '62.96.55.39', 1046492912, 1046492967, 'GB', 'United Kingdom'), +('62.96.55.40', '62.96.55.143', 1046492968, 1046493071, 'DE', 'Germany'), +('62.96.55.144', '62.96.55.159', 1046493072, 1046493087, 'GB', 'United Kingdom'), +('62.96.55.160', '62.96.55.167', 1046493088, 1046493095, 'DE', 'Germany'), +('62.96.55.168', '62.96.55.175', 1046493096, 1046493103, 'GB', 'United Kingdom'), +('62.96.55.176', '62.96.55.247', 1046493104, 1046493175, 'DE', 'Germany'), +('62.96.55.248', '62.96.55.255', 1046493176, 1046493183, 'GB', 'United Kingdom'), +('62.96.56.0', '62.96.56.207', 1046493184, 1046493391, 'DE', 'Germany'), +('62.96.56.208', '62.96.57.31', 1046493392, 1046493471, 'GB', 'United Kingdom'), +('62.96.57.32', '62.96.57.39', 1046493472, 1046493479, 'DE', 'Germany'), +('62.96.57.40', '62.96.57.71', 1046493480, 1046493511, 'GB', 'United Kingdom'), +('62.96.57.72', '62.96.57.79', 1046493512, 1046493519, 'DE', 'Germany'), +('62.96.57.80', '62.96.57.95', 1046493520, 1046493535, 'GB', 'United Kingdom'), +('62.96.57.96', '62.96.57.111', 1046493536, 1046493551, 'DE', 'Germany'), +('62.96.57.112', '62.96.57.135', 1046493552, 1046493575, 'GB', 'United Kingdom'), +('62.96.57.136', '62.96.57.143', 1046493576, 1046493583, 'DE', 'Germany'), +('62.96.57.144', '62.96.57.151', 1046493584, 1046493591, 'GB', 'United Kingdom'), +('62.96.57.152', '62.96.57.159', 1046493592, 1046493599, 'DE', 'Germany'), +('62.96.57.160', '62.96.57.191', 1046493600, 1046493631, 'GB', 'United Kingdom'), +('62.96.57.192', '62.96.57.199', 1046493632, 1046493639, 'DE', 'Germany'), +('62.96.57.200', '62.96.57.255', 1046493640, 1046493695, 'GB', 'United Kingdom'), +('62.96.58.0', '62.96.58.255', 1046493696, 1046493951, 'DE', 'Germany'), +('62.96.59.0', '62.96.59.31', 1046493952, 1046493983, 'GB', 'United Kingdom'), +('62.96.59.32', '62.96.59.79', 1046493984, 1046494031, 'DE', 'Germany'), +('62.96.59.80', '62.96.59.87', 1046494032, 1046494039, 'GB', 'United Kingdom'), +('62.96.59.88', '62.96.59.135', 1046494040, 1046494087, 'DE', 'Germany'), +('62.96.59.136', '62.96.59.143', 1046494088, 1046494095, 'GB', 'United Kingdom'), +('62.96.59.144', '62.96.60.95', 1046494096, 1046494303, 'DE', 'Germany'), +('62.96.60.96', '62.96.60.103', 1046494304, 1046494311, 'GB', 'United Kingdom'), +('62.96.60.104', '62.96.60.119', 1046494312, 1046494327, 'DE', 'Germany'), +('62.96.60.120', '62.96.60.127', 1046494328, 1046494335, 'GB', 'United Kingdom'), +('62.96.60.128', '62.96.61.143', 1046494336, 1046494607, 'DE', 'Germany'), +('62.96.61.144', '62.96.61.151', 1046494608, 1046494615, 'GB', 'United Kingdom'), +('62.96.61.152', '62.96.61.159', 1046494616, 1046494623, 'DE', 'Germany'), +('62.96.61.160', '62.96.62.31', 1046494624, 1046494751, 'GB', 'United Kingdom'), +('62.96.62.32', '62.96.62.39', 1046494752, 1046494759, 'DE', 'Germany'), +('62.96.62.40', '62.96.62.55', 1046494760, 1046494775, 'GB', 'United Kingdom'), +('62.96.62.56', '62.96.62.79', 1046494776, 1046494799, 'DE', 'Germany'), +('62.96.62.80', '62.96.62.87', 1046494800, 1046494807, 'GB', 'United Kingdom'), +('62.96.62.88', '62.96.62.95', 1046494808, 1046494815, 'DE', 'Germany'), +('62.96.62.96', '62.96.62.103', 1046494816, 1046494823, 'GB', 'United Kingdom'), +('62.96.62.104', '62.96.62.111', 1046494824, 1046494831, 'DE', 'Germany'), +('62.96.62.112', '62.96.62.119', 1046494832, 1046494839, 'GB', 'United Kingdom'), +('62.96.62.120', '62.96.62.255', 1046494840, 1046494975, 'DE', 'Germany'), +('62.96.63.0', '62.96.63.31', 1046494976, 1046495007, 'GB', 'United Kingdom'), +('62.96.63.32', '62.96.63.39', 1046495008, 1046495015, 'DE', 'Germany'), +('62.96.63.40', '62.96.63.47', 1046495016, 1046495023, 'GB', 'United Kingdom'), +('62.96.63.48', '62.96.63.63', 1046495024, 1046495039, 'DE', 'Germany'), +('62.96.63.64', '62.96.63.71', 1046495040, 1046495047, 'GB', 'United Kingdom'), +('62.96.63.72', '62.96.63.87', 1046495048, 1046495063, 'DE', 'Germany'), +('62.96.63.88', '62.96.63.95', 1046495064, 1046495071, 'GB', 'United Kingdom'), +('62.96.63.96', '62.96.63.103', 1046495072, 1046495079, 'DE', 'Germany'), +('62.96.63.104', '62.96.63.111', 1046495080, 1046495087, 'GB', 'United Kingdom'), +('62.96.63.112', '62.96.63.127', 1046495088, 1046495103, 'DE', 'Germany'), +('62.96.63.128', '62.96.63.151', 1046495104, 1046495127, 'GB', 'United Kingdom'), +('62.96.63.152', '62.96.63.247', 1046495128, 1046495223, 'DE', 'Germany'), +('62.96.63.248', '62.96.63.255', 1046495224, 1046495231, 'GB', 'United Kingdom'), +('62.96.64.0', '62.96.64.119', 1046495232, 1046495351, 'DE', 'Germany'), +('62.96.64.120', '62.96.64.127', 1046495352, 1046495359, 'GB', 'United Kingdom'), +('62.96.64.128', '62.96.64.175', 1046495360, 1046495407, 'DE', 'Germany'), +('62.96.64.176', '62.96.64.183', 1046495408, 1046495415, 'GB', 'United Kingdom'), +('62.96.64.184', '62.96.64.207', 1046495416, 1046495439, 'DE', 'Germany'), +('62.96.64.208', '62.96.64.215', 1046495440, 1046495447, 'GB', 'United Kingdom'), +('62.96.64.216', '62.96.64.255', 1046495448, 1046495487, 'DE', 'Germany'), +('62.96.65.0', '62.96.65.31', 1046495488, 1046495519, 'GB', 'United Kingdom'), +('62.96.65.32', '62.96.65.39', 1046495520, 1046495527, 'DE', 'Germany'), +('62.96.65.40', '62.96.65.47', 1046495528, 1046495535, 'GB', 'United Kingdom'), +('62.96.65.48', '62.96.65.55', 1046495536, 1046495543, 'DE', 'Germany'), +('62.96.65.56', '62.96.65.63', 1046495544, 1046495551, 'GB', 'United Kingdom'), +('62.96.65.64', '62.96.65.79', 1046495552, 1046495567, 'DE', 'Germany'), +('62.96.65.80', '62.96.65.87', 1046495568, 1046495575, 'GB', 'United Kingdom'), +('62.96.65.88', '62.96.65.111', 1046495576, 1046495599, 'DE', 'Germany'), +('62.96.65.112', '62.96.65.119', 1046495600, 1046495607, 'GB', 'United Kingdom'), +('62.96.65.120', '62.96.65.127', 1046495608, 1046495615, 'DE', 'Germany'), +('62.96.65.128', '62.96.65.135', 1046495616, 1046495623, 'GB', 'United Kingdom'), +('62.96.65.136', '62.96.65.143', 1046495624, 1046495631, 'DE', 'Germany'), +('62.96.65.144', '62.96.65.151', 1046495632, 1046495639, 'GB', 'United Kingdom'), +('62.96.65.152', '62.96.65.159', 1046495640, 1046495647, 'DE', 'Germany'), +('62.96.65.160', '62.96.65.175', 1046495648, 1046495663, 'GB', 'United Kingdom'), +('62.96.65.176', '62.96.65.215', 1046495664, 1046495703, 'DE', 'Germany'), +('62.96.65.216', '62.96.65.231', 1046495704, 1046495719, 'GB', 'United Kingdom'), +('62.96.65.232', '62.96.66.135', 1046495720, 1046495879, 'DE', 'Germany'), +('62.96.66.136', '62.96.66.151', 1046495880, 1046495895, 'GB', 'United Kingdom'), +('62.96.66.152', '62.96.66.255', 1046495896, 1046495999, 'DE', 'Germany'), +('62.96.67.0', '62.96.67.71', 1046496000, 1046496071, 'GB', 'United Kingdom'), +('62.96.67.72', '62.96.67.127', 1046496072, 1046496127, 'DE', 'Germany'), +('62.96.67.128', '62.96.67.135', 1046496128, 1046496135, 'GB', 'United Kingdom'), +('62.96.67.136', '62.96.67.151', 1046496136, 1046496151, 'DE', 'Germany'), +('62.96.67.152', '62.96.67.159', 1046496152, 1046496159, 'GB', 'United Kingdom'), +('62.96.67.160', '62.96.67.191', 1046496160, 1046496191, 'DE', 'Germany'), +('62.96.67.192', '62.96.67.215', 1046496192, 1046496215, 'GB', 'United Kingdom'), +('62.96.67.216', '62.96.67.231', 1046496216, 1046496231, 'DE', 'Germany'), +('62.96.67.232', '62.96.67.239', 1046496232, 1046496239, 'GB', 'United Kingdom'), +('62.96.67.240', '62.96.67.247', 1046496240, 1046496247, 'DE', 'Germany'), +('62.96.67.248', '62.96.68.31', 1046496248, 1046496287, 'GB', 'United Kingdom'), +('62.96.68.32', '62.96.68.47', 1046496288, 1046496303, 'DE', 'Germany'), +('62.96.68.48', '62.96.68.255', 1046496304, 1046496511, 'GB', 'United Kingdom'), +('62.96.69.0', '62.96.72.183', 1046496512, 1046497463, 'DE', 'Germany'), +('62.96.72.184', '62.96.73.31', 1046497464, 1046497567, 'GB', 'United Kingdom'), +('62.96.73.32', '62.96.73.103', 1046497568, 1046497639, 'DE', 'Germany'), +('62.96.73.104', '62.96.73.111', 1046497640, 1046497647, 'GB', 'United Kingdom'), +('62.96.73.112', '62.96.73.127', 1046497648, 1046497663, 'DE', 'Germany'), +('62.96.73.128', '62.96.73.135', 1046497664, 1046497671, 'GB', 'United Kingdom'), +('62.96.73.136', '62.96.73.175', 1046497672, 1046497711, 'DE', 'Germany'), +('62.96.73.176', '62.96.73.191', 1046497712, 1046497727, 'GB', 'United Kingdom'), +('62.96.73.192', '62.96.73.223', 1046497728, 1046497759, 'DE', 'Germany'), +('62.96.73.224', '62.96.73.239', 1046497760, 1046497775, 'GB', 'United Kingdom'), +('62.96.73.240', '62.96.74.23', 1046497776, 1046497815, 'DE', 'Germany'), +('62.96.74.24', '62.96.74.31', 1046497816, 1046497823, 'GB', 'United Kingdom'), +('62.96.74.32', '62.96.74.111', 1046497824, 1046497903, 'DE', 'Germany'), +('62.96.74.112', '62.96.74.119', 1046497904, 1046497911, 'GB', 'United Kingdom'), +('62.96.74.120', '62.96.74.183', 1046497912, 1046497975, 'DE', 'Germany'), +('62.96.74.184', '62.96.74.191', 1046497976, 1046497983, 'GB', 'United Kingdom'), +('62.96.74.192', '62.96.74.255', 1046497984, 1046498047, 'DE', 'Germany'), +('62.96.75.0', '62.96.75.31', 1046498048, 1046498079, 'GB', 'United Kingdom'), +('62.96.75.32', '62.96.75.55', 1046498080, 1046498103, 'DE', 'Germany'), +('62.96.75.56', '62.96.75.63', 1046498104, 1046498111, 'GB', 'United Kingdom'), +('62.96.75.64', '62.96.75.111', 1046498112, 1046498159, 'DE', 'Germany'), +('62.96.75.112', '62.96.75.119', 1046498160, 1046498167, 'GB', 'United Kingdom'), +('62.96.75.120', '62.96.75.127', 1046498168, 1046498175, 'DE', 'Germany'), +('62.96.75.128', '62.96.75.135', 1046498176, 1046498183, 'GB', 'United Kingdom'), +('62.96.75.136', '62.96.75.159', 1046498184, 1046498207, 'DE', 'Germany'), +('62.96.75.160', '62.96.75.167', 1046498208, 1046498215, 'GB', 'United Kingdom'), +('62.96.75.168', '62.96.75.191', 1046498216, 1046498239, 'DE', 'Germany'), +('62.96.75.192', '62.96.75.207', 1046498240, 1046498255, 'GB', 'United Kingdom'), +('62.96.75.208', '62.96.75.215', 1046498256, 1046498263, 'DE', 'Germany'), +('62.96.75.216', '62.96.75.223', 1046498264, 1046498271, 'GB', 'United Kingdom'), +('62.96.75.224', '62.96.75.231', 1046498272, 1046498279, 'DE', 'Germany'), +('62.96.75.232', '62.96.75.247', 1046498280, 1046498295, 'GB', 'United Kingdom'), +('62.96.75.248', '62.96.76.55', 1046498296, 1046498359, 'DE', 'Germany'), +('62.96.76.56', '62.96.76.63', 1046498360, 1046498367, 'GB', 'United Kingdom'), +('62.96.76.64', '62.96.76.151', 1046498368, 1046498455, 'DE', 'Germany'), +('62.96.76.152', '62.96.77.31', 1046498456, 1046498591, 'GB', 'United Kingdom'), +('62.96.77.32', '62.96.77.47', 1046498592, 1046498607, 'DE', 'Germany'), +('62.96.77.48', '62.96.77.55', 1046498608, 1046498615, 'GB', 'United Kingdom'), +('62.96.77.56', '62.96.77.71', 1046498616, 1046498631, 'DE', 'Germany'), +('62.96.77.72', '62.96.77.79', 1046498632, 1046498639, 'GB', 'United Kingdom'), +('62.96.77.80', '62.96.77.95', 1046498640, 1046498655, 'DE', 'Germany'), +('62.96.77.96', '62.96.77.103', 1046498656, 1046498663, 'GB', 'United Kingdom'), +('62.96.77.104', '62.96.77.119', 1046498664, 1046498679, 'DE', 'Germany'), +('62.96.77.120', '62.96.77.127', 1046498680, 1046498687, 'GB', 'United Kingdom'), +('62.96.77.128', '62.96.77.159', 1046498688, 1046498719, 'DE', 'Germany'), +('62.96.77.160', '62.96.77.167', 1046498720, 1046498727, 'GB', 'United Kingdom'), +('62.96.77.168', '62.96.78.3', 1046498728, 1046498819, 'DE', 'Germany'), +('62.96.78.4', '62.96.79.255', 1046498820, 1046499327, 'GB', 'United Kingdom'), +('62.96.80.0', '62.96.92.255', 1046499328, 1046502655, 'DE', 'Germany'), +('62.96.93.0', '62.96.93.63', 1046502656, 1046502719, 'GB', 'United Kingdom'), +('62.96.93.64', '62.96.93.191', 1046502720, 1046502847, 'DE', 'Germany'), +('62.96.93.192', '62.96.93.199', 1046502848, 1046502855, 'GB', 'United Kingdom'), +('62.96.93.200', '62.96.93.207', 1046502856, 1046502863, 'DE', 'Germany'), +('62.96.93.208', '62.96.94.39', 1046502864, 1046502951, 'GB', 'United Kingdom'), +('62.96.94.40', '62.96.94.55', 1046502952, 1046502967, 'DE', 'Germany'), +('62.96.94.56', '62.96.94.63', 1046502968, 1046502975, 'GB', 'United Kingdom'), +('62.96.94.64', '62.96.94.103', 1046502976, 1046503015, 'DE', 'Germany'), +('62.96.94.104', '62.96.94.111', 1046503016, 1046503023, 'GB', 'United Kingdom'), +('62.96.94.112', '62.96.94.223', 1046503024, 1046503135, 'DE', 'Germany'), +('62.96.94.224', '62.96.94.231', 1046503136, 1046503143, 'GB', 'United Kingdom'), +('62.96.94.232', '62.96.94.255', 1046503144, 1046503167, 'DE', 'Germany'), +('62.96.95.0', '62.96.95.39', 1046503168, 1046503207, 'GB', 'United Kingdom'), +('62.96.95.40', '62.96.95.135', 1046503208, 1046503303, 'DE', 'Germany'), +('62.96.95.136', '62.96.95.151', 1046503304, 1046503319, 'GB', 'United Kingdom'), +('62.96.95.152', '62.96.95.159', 1046503320, 1046503327, 'DE', 'Germany'), +('62.96.95.160', '62.96.95.183', 1046503328, 1046503351, 'GB', 'United Kingdom'), +('62.96.95.184', '62.96.96.191', 1046503352, 1046503615, 'DE', 'Germany'), +('62.96.96.192', '62.96.96.255', 1046503616, 1046503679, 'GB', 'United Kingdom'), +('62.96.97.0', '62.96.97.127', 1046503680, 1046503807, 'DE', 'Germany'), +('62.96.97.128', '62.96.97.255', 1046503808, 1046503935, 'GB', 'United Kingdom'), +('62.96.98.0', '62.96.99.191', 1046503936, 1046504383, 'DE', 'Germany'), +('62.96.99.192', '62.96.100.39', 1046504384, 1046504487, 'GB', 'United Kingdom'), +('62.96.100.40', '62.96.100.103', 1046504488, 1046504551, 'DE', 'Germany'), +('62.96.100.104', '62.96.100.111', 1046504552, 1046504559, 'GB', 'United Kingdom'), +('62.96.100.112', '62.96.100.135', 1046504560, 1046504583, 'DE', 'Germany'), +('62.96.100.136', '62.96.100.167', 1046504584, 1046504615, 'GB', 'United Kingdom'), +('62.96.100.168', '62.96.100.223', 1046504616, 1046504671, 'DE', 'Germany'), +('62.96.100.224', '62.96.100.231', 1046504672, 1046504679, 'GB', 'United Kingdom'), +('62.96.100.232', '62.96.100.247', 1046504680, 1046504695, 'DE', 'Germany'), +('62.96.100.248', '62.96.101.31', 1046504696, 1046504735, 'GB', 'United Kingdom'), +('62.96.101.32', '62.96.101.95', 1046504736, 1046504799, 'DE', 'Germany'), +('62.96.101.96', '62.96.101.103', 1046504800, 1046504807, 'GB', 'United Kingdom'), +('62.96.101.104', '62.96.101.167', 1046504808, 1046504871, 'DE', 'Germany'), +('62.96.101.168', '62.96.101.175', 1046504872, 1046504879, 'GB', 'United Kingdom'), +('62.96.101.176', '62.96.101.183', 1046504880, 1046504887, 'DE', 'Germany'), +('62.96.101.184', '62.96.101.207', 1046504888, 1046504911, 'GB', 'United Kingdom'), +('62.96.101.208', '62.96.101.215', 1046504912, 1046504919, 'DE', 'Germany'), +('62.96.101.216', '62.96.101.223', 1046504920, 1046504927, 'GB', 'United Kingdom'), +('62.96.101.224', '62.96.101.239', 1046504928, 1046504943, 'DE', 'Germany'), +('62.96.101.240', '62.96.101.247', 1046504944, 1046504951, 'GB', 'United Kingdom'), +('62.96.101.248', '62.96.101.255', 1046504952, 1046504959, 'DE', 'Germany'), +('62.96.102.0', '62.96.102.39', 1046504960, 1046504999, 'GB', 'United Kingdom'), +('62.96.102.40', '62.96.102.71', 1046505000, 1046505031, 'DE', 'Germany'), +('62.96.102.72', '62.96.102.79', 1046505032, 1046505039, 'GB', 'United Kingdom'), +('62.96.102.80', '62.96.102.95', 1046505040, 1046505055, 'DE', 'Germany'), +('62.96.102.96', '62.96.102.103', 1046505056, 1046505063, 'GB', 'United Kingdom'), +('62.96.102.104', '62.96.102.111', 1046505064, 1046505071, 'DE', 'Germany'), +('62.96.102.112', '62.96.102.127', 1046505072, 1046505087, 'GB', 'United Kingdom'), +('62.96.102.128', '62.96.102.135', 1046505088, 1046505095, 'DE', 'Germany'), +('62.96.102.136', '62.96.102.143', 1046505096, 1046505103, 'GB', 'United Kingdom'), +('62.96.102.144', '62.96.102.199', 1046505104, 1046505159, 'DE', 'Germany'), +('62.96.102.200', '62.96.102.207', 1046505160, 1046505167, 'GB', 'United Kingdom'), +('62.96.102.208', '62.96.102.215', 1046505168, 1046505175, 'DE', 'Germany'), +('62.96.102.216', '62.96.102.231', 1046505176, 1046505191, 'GB', 'United Kingdom'), +('62.96.102.232', '62.96.102.247', 1046505192, 1046505207, 'DE', 'Germany'), +('62.96.102.248', '62.96.103.31', 1046505208, 1046505247, 'GB', 'United Kingdom'), +('62.96.103.32', '62.96.103.39', 1046505248, 1046505255, 'DE', 'Germany'), +('62.96.103.40', '62.96.103.55', 1046505256, 1046505271, 'GB', 'United Kingdom'), +('62.96.103.56', '62.96.103.127', 1046505272, 1046505343, 'DE', 'Germany'), +('62.96.103.128', '62.96.103.143', 1046505344, 1046505359, 'GB', 'United Kingdom'), +('62.96.103.144', '62.96.103.199', 1046505360, 1046505415, 'DE', 'Germany'), +('62.96.103.200', '62.96.103.207', 1046505416, 1046505423, 'GB', 'United Kingdom'), +('62.96.103.208', '62.96.103.215', 1046505424, 1046505431, 'DE', 'Germany'), +('62.96.103.216', '62.96.103.223', 1046505432, 1046505439, 'GB', 'United Kingdom'), +('62.96.103.224', '62.96.103.247', 1046505440, 1046505463, 'DE', 'Germany'), +('62.96.103.248', '62.96.104.39', 1046505464, 1046505511, 'GB', 'United Kingdom'), +('62.96.104.40', '62.96.104.79', 1046505512, 1046505551, 'DE', 'Germany'), +('62.96.104.80', '62.96.104.87', 1046505552, 1046505559, 'GB', 'United Kingdom'), +('62.96.104.88', '62.96.104.111', 1046505560, 1046505583, 'DE', 'Germany'), +('62.96.104.112', '62.96.104.119', 1046505584, 1046505591, 'GB', 'United Kingdom'), +('62.96.104.120', '62.96.104.135', 1046505592, 1046505607, 'DE', 'Germany'), +('62.96.104.136', '62.96.104.159', 1046505608, 1046505631, 'GB', 'United Kingdom'), +('62.96.104.160', '62.96.104.191', 1046505632, 1046505663, 'DE', 'Germany'), +('62.96.104.192', '62.96.104.199', 1046505664, 1046505671, 'GB', 'United Kingdom'), +('62.96.104.200', '62.96.104.207', 1046505672, 1046505679, 'DE', 'Germany'), +('62.96.104.208', '62.96.104.215', 1046505680, 1046505687, 'GB', 'United Kingdom'), +('62.96.104.216', '62.96.104.223', 1046505688, 1046505695, 'DE', 'Germany'), +('62.96.104.224', '62.96.104.231', 1046505696, 1046505703, 'GB', 'United Kingdom'), +('62.96.104.232', '62.96.104.255', 1046505704, 1046505727, 'DE', 'Germany'), +('62.96.105.0', '62.96.105.31', 1046505728, 1046505759, 'GB', 'United Kingdom'), +('62.96.105.32', '62.96.105.79', 1046505760, 1046505807, 'DE', 'Germany'), +('62.96.105.80', '62.96.105.95', 1046505808, 1046505823, 'GB', 'United Kingdom'), +('62.96.105.96', '62.96.105.119', 1046505824, 1046505847, 'DE', 'Germany'), +('62.96.105.120', '62.96.105.159', 1046505848, 1046505887, 'GB', 'United Kingdom'), +('62.96.105.160', '62.96.105.167', 1046505888, 1046505895, 'DE', 'Germany'), +('62.96.105.168', '62.96.105.175', 1046505896, 1046505903, 'GB', 'United Kingdom'), +('62.96.105.176', '62.96.105.231', 1046505904, 1046505959, 'DE', 'Germany'), +('62.96.105.232', '62.96.105.239', 1046505960, 1046505967, 'GB', 'United Kingdom'), +('62.96.105.240', '62.96.105.247', 1046505968, 1046505975, 'DE', 'Germany'), +('62.96.105.248', '62.96.106.31', 1046505976, 1046506015, 'GB', 'United Kingdom'), +('62.96.106.32', '62.96.106.55', 1046506016, 1046506039, 'DE', 'Germany'), +('62.96.106.56', '62.96.106.71', 1046506040, 1046506055, 'GB', 'United Kingdom'), +('62.96.106.72', '62.96.106.103', 1046506056, 1046506087, 'DE', 'Germany'), +('62.96.106.104', '62.96.106.111', 1046506088, 1046506095, 'GB', 'United Kingdom'), +('62.96.106.112', '62.96.106.135', 1046506096, 1046506119, 'DE', 'Germany'), +('62.96.106.136', '62.96.106.151', 1046506120, 1046506135, 'GB', 'United Kingdom'), +('62.96.106.152', '62.96.106.255', 1046506136, 1046506239, 'DE', 'Germany'), +('62.96.107.0', '62.96.107.31', 1046506240, 1046506271, 'GB', 'United Kingdom'), +('62.96.107.32', '62.96.107.55', 1046506272, 1046506295, 'DE', 'Germany'), +('62.96.107.56', '62.96.107.63', 1046506296, 1046506303, 'GB', 'United Kingdom'), +('62.96.107.64', '62.96.107.87', 1046506304, 1046506327, 'DE', 'Germany'), +('62.96.107.88', '62.96.107.111', 1046506328, 1046506351, 'GB', 'United Kingdom'), +('62.96.107.112', '62.96.107.135', 1046506352, 1046506375, 'DE', 'Germany'), +('62.96.107.136', '62.96.107.143', 1046506376, 1046506383, 'GB', 'United Kingdom'), +('62.96.107.144', '62.96.107.151', 1046506384, 1046506391, 'DE', 'Germany'), +('62.96.107.152', '62.96.107.167', 1046506392, 1046506407, 'GB', 'United Kingdom'), +('62.96.107.168', '62.96.107.175', 1046506408, 1046506415, 'DE', 'Germany'), +('62.96.107.176', '62.96.107.183', 1046506416, 1046506423, 'GB', 'United Kingdom'), +('62.96.107.184', '62.96.107.199', 1046506424, 1046506439, 'DE', 'Germany'), +('62.96.107.200', '62.96.107.207', 1046506440, 1046506447, 'GB', 'United Kingdom'), +('62.96.107.208', '62.96.107.239', 1046506448, 1046506479, 'DE', 'Germany'), +('62.96.107.240', '62.96.107.247', 1046506480, 1046506487, 'GB', 'United Kingdom'), +('62.96.107.248', '62.96.107.255', 1046506488, 1046506495, 'DE', 'Germany'), +('62.96.108.0', '62.96.108.39', 1046506496, 1046506535, 'GB', 'United Kingdom'), +('62.96.108.40', '62.96.108.79', 1046506536, 1046506575, 'DE', 'Germany'), +('62.96.108.80', '62.96.108.95', 1046506576, 1046506591, 'GB', 'United Kingdom'), +('62.96.108.96', '62.96.108.103', 1046506592, 1046506599, 'DE', 'Germany'), +('62.96.108.104', '62.96.108.111', 1046506600, 1046506607, 'GB', 'United Kingdom'), +('62.96.108.112', '62.96.108.127', 1046506608, 1046506623, 'DE', 'Germany'), +('62.96.108.128', '62.96.108.143', 1046506624, 1046506639, 'GB', 'United Kingdom'), +('62.96.108.144', '62.96.108.151', 1046506640, 1046506647, 'DE', 'Germany'), +('62.96.108.152', '62.96.108.159', 1046506648, 1046506655, 'GB', 'United Kingdom'), +('62.96.108.160', '62.96.108.175', 1046506656, 1046506671, 'DE', 'Germany'), +('62.96.108.176', '62.96.108.183', 1046506672, 1046506679, 'GB', 'United Kingdom'), +('62.96.108.184', '62.96.108.191', 1046506680, 1046506687, 'DE', 'Germany'), +('62.96.108.192', '62.96.108.207', 1046506688, 1046506703, 'GB', 'United Kingdom'), +('62.96.108.208', '62.96.108.215', 1046506704, 1046506711, 'DE', 'Germany'), +('62.96.108.216', '62.96.108.247', 1046506712, 1046506743, 'GB', 'United Kingdom'), +('62.96.108.248', '62.96.108.255', 1046506744, 1046506751, 'DE', 'Germany'), +('62.96.109.0', '62.96.109.31', 1046506752, 1046506783, 'GB', 'United Kingdom'), +('62.96.109.32', '62.96.109.39', 1046506784, 1046506791, 'DE', 'Germany'), +('62.96.109.40', '62.96.109.55', 1046506792, 1046506807, 'GB', 'United Kingdom'), +('62.96.109.56', '62.96.109.71', 1046506808, 1046506823, 'DE', 'Germany'), +('62.96.109.72', '62.96.109.87', 1046506824, 1046506839, 'GB', 'United Kingdom'), +('62.96.109.88', '62.96.109.143', 1046506840, 1046506895, 'DE', 'Germany'), +('62.96.109.144', '62.96.109.151', 1046506896, 1046506903, 'GB', 'United Kingdom'), +('62.96.109.152', '62.96.109.175', 1046506904, 1046506927, 'DE', 'Germany'), +('62.96.109.176', '62.96.109.183', 1046506928, 1046506935, 'GB', 'United Kingdom'), +('62.96.109.184', '62.96.109.199', 1046506936, 1046506951, 'DE', 'Germany'), +('62.96.109.200', '62.96.109.207', 1046506952, 1046506959, 'GB', 'United Kingdom'), +('62.96.109.208', '62.96.109.239', 1046506960, 1046506991, 'DE', 'Germany'), +('62.96.109.240', '62.96.109.247', 1046506992, 1046506999, 'GB', 'United Kingdom'), +('62.96.109.248', '62.96.109.255', 1046507000, 1046507007, 'DE', 'Germany'), +('62.96.110.0', '62.96.110.31', 1046507008, 1046507039, 'GB', 'United Kingdom'), +('62.96.110.32', '62.96.110.39', 1046507040, 1046507047, 'DE', 'Germany'), +('62.96.110.40', '62.96.110.47', 1046507048, 1046507055, 'GB', 'United Kingdom'), +('62.96.110.48', '62.96.110.63', 1046507056, 1046507071, 'DE', 'Germany'), +('62.96.110.64', '62.96.110.103', 1046507072, 1046507111, 'GB', 'United Kingdom'), +('62.96.110.104', '62.96.110.127', 1046507112, 1046507135, 'DE', 'Germany'), +('62.96.110.128', '62.96.110.143', 1046507136, 1046507151, 'GB', 'United Kingdom'), +('62.96.110.144', '62.96.110.151', 1046507152, 1046507159, 'DE', 'Germany'), +('62.96.110.152', '62.96.110.167', 1046507160, 1046507175, 'GB', 'United Kingdom'), +('62.96.110.168', '62.96.110.191', 1046507176, 1046507199, 'DE', 'Germany'), +('62.96.110.192', '62.96.110.199', 1046507200, 1046507207, 'GB', 'United Kingdom'), +('62.96.110.200', '62.96.110.207', 1046507208, 1046507215, 'DE', 'Germany'), +('62.96.110.208', '62.96.111.255', 1046507216, 1046507519, 'GB', 'United Kingdom'), +('62.96.112.0', '62.96.127.255', 1046507520, 1046511615, 'DE', 'Germany'), +('62.96.128.0', '62.96.128.31', 1046511616, 1046511647, 'GB', 'United Kingdom'), +('62.96.128.32', '62.96.128.79', 1046511648, 1046511695, 'DE', 'Germany'), +('62.96.128.80', '62.96.128.103', 1046511696, 1046511719, 'GB', 'United Kingdom'), +('62.96.128.104', '62.96.128.111', 1046511720, 1046511727, 'DE', 'Germany'), +('62.96.128.112', '62.96.128.199', 1046511728, 1046511815, 'GB', 'United Kingdom'), +('62.96.128.200', '62.96.128.231', 1046511816, 1046511847, 'DE', 'Germany'), +('62.96.128.232', '62.96.128.247', 1046511848, 1046511863, 'GB', 'United Kingdom'), +('62.96.128.248', '62.96.128.255', 1046511864, 1046511871, 'DE', 'Germany'), +('62.96.129.0', '62.96.129.31', 1046511872, 1046511903, 'GB', 'United Kingdom'), +('62.96.129.32', '62.96.129.47', 1046511904, 1046511919, 'DE', 'Germany'), +('62.96.129.48', '62.96.129.55', 1046511920, 1046511927, 'GB', 'United Kingdom'), +('62.96.129.56', '62.96.129.63', 1046511928, 1046511935, 'DE', 'Germany'), +('62.96.129.64', '62.96.129.95', 1046511936, 1046511967, 'GB', 'United Kingdom'), +('62.96.129.96', '62.96.129.103', 1046511968, 1046511975, 'DE', 'Germany'), +('62.96.129.104', '62.96.129.119', 1046511976, 1046511991, 'GB', 'United Kingdom'), +('62.96.129.120', '62.96.129.135', 1046511992, 1046512007, 'DE', 'Germany'), +('62.96.129.136', '62.96.129.183', 1046512008, 1046512055, 'GB', 'United Kingdom'), +('62.96.129.184', '62.96.129.191', 1046512056, 1046512063, 'DE', 'Germany'), +('62.96.129.192', '62.96.130.39', 1046512064, 1046512167, 'GB', 'United Kingdom'), +('62.96.130.40', '62.96.130.47', 1046512168, 1046512175, 'DE', 'Germany'), +('62.96.130.48', '62.96.130.71', 1046512176, 1046512199, 'GB', 'United Kingdom'), +('62.96.130.72', '62.96.130.87', 1046512200, 1046512215, 'DE', 'Germany'), +('62.96.130.88', '62.96.130.159', 1046512216, 1046512287, 'GB', 'United Kingdom'), +('62.96.130.160', '62.96.130.175', 1046512288, 1046512303, 'DE', 'Germany'), +('62.96.130.176', '62.96.130.183', 1046512304, 1046512311, 'GB', 'United Kingdom'), +('62.96.130.184', '62.96.130.199', 1046512312, 1046512327, 'DE', 'Germany'), +('62.96.130.200', '62.96.130.207', 1046512328, 1046512335, 'GB', 'United Kingdom'), +('62.96.130.208', '62.96.130.215', 1046512336, 1046512343, 'DE', 'Germany'), +('62.96.130.216', '62.96.130.223', 1046512344, 1046512351, 'GB', 'United Kingdom'), +('62.96.130.224', '62.96.130.255', 1046512352, 1046512383, 'DE', 'Germany'), +('62.96.131.0', '62.96.131.47', 1046512384, 1046512431, 'GB', 'United Kingdom'), +('62.96.131.48', '62.96.131.63', 1046512432, 1046512447, 'DE', 'Germany'), +('62.96.131.64', '62.96.131.71', 1046512448, 1046512455, 'GB', 'United Kingdom'), +('62.96.131.72', '62.96.131.151', 1046512456, 1046512535, 'DE', 'Germany'), +('62.96.131.152', '62.96.131.159', 1046512536, 1046512543, 'GB', 'United Kingdom'), +('62.96.131.160', '62.96.131.167', 1046512544, 1046512551, 'DE', 'Germany'), +('62.96.131.168', '62.96.131.183', 1046512552, 1046512567, 'GB', 'United Kingdom'), +('62.96.131.184', '62.96.131.223', 1046512568, 1046512607, 'DE', 'Germany'), +('62.96.131.224', '62.96.131.239', 1046512608, 1046512623, 'GB', 'United Kingdom'), +('62.96.131.240', '62.96.131.247', 1046512624, 1046512631, 'DE', 'Germany'), +('62.96.131.248', '62.96.132.39', 1046512632, 1046512679, 'GB', 'United Kingdom'), +('62.96.132.40', '62.96.132.47', 1046512680, 1046512687, 'DE', 'Germany'), +('62.96.132.48', '62.96.132.95', 1046512688, 1046512735, 'GB', 'United Kingdom'), +('62.96.132.96', '62.96.132.111', 1046512736, 1046512751, 'DE', 'Germany'), +('62.96.132.112', '62.96.132.119', 1046512752, 1046512759, 'GB', 'United Kingdom'), +('62.96.132.120', '62.96.132.207', 1046512760, 1046512847, 'DE', 'Germany'), +('62.96.132.208', '62.96.132.239', 1046512848, 1046512879, 'GB', 'United Kingdom'), +('62.96.132.240', '62.96.132.255', 1046512880, 1046512895, 'DE', 'Germany'), +('62.96.133.0', '62.96.133.31', 1046512896, 1046512927, 'GB', 'United Kingdom'), +('62.96.133.32', '62.96.133.47', 1046512928, 1046512943, 'DE', 'Germany'), +('62.96.133.48', '62.96.133.71', 1046512944, 1046512967, 'GB', 'United Kingdom'), +('62.96.133.72', '62.96.133.87', 1046512968, 1046512983, 'DE', 'Germany'), +('62.96.133.88', '62.96.133.95', 1046512984, 1046512991, 'GB', 'United Kingdom'), +('62.96.133.96', '62.96.133.103', 1046512992, 1046512999, 'DE', 'Germany'), +('62.96.133.104', '62.96.133.111', 1046513000, 1046513007, 'GB', 'United Kingdom'), +('62.96.133.112', '62.96.133.119', 1046513008, 1046513015, 'DE', 'Germany'), +('62.96.133.120', '62.96.133.135', 1046513016, 1046513031, 'GB', 'United Kingdom'), +('62.96.133.136', '62.96.133.143', 1046513032, 1046513039, 'DE', 'Germany'), +('62.96.133.144', '62.96.133.151', 1046513040, 1046513047, 'GB', 'United Kingdom'), +('62.96.133.152', '62.96.133.159', 1046513048, 1046513055, 'DE', 'Germany'), +('62.96.133.160', '62.96.133.167', 1046513056, 1046513063, 'GB', 'United Kingdom'), +('62.96.133.168', '62.96.133.183', 1046513064, 1046513079, 'DE', 'Germany'), +('62.96.133.184', '62.96.133.215', 1046513080, 1046513111, 'GB', 'United Kingdom'), +('62.96.133.216', '62.96.133.247', 1046513112, 1046513143, 'DE', 'Germany'), +('62.96.133.248', '62.96.134.111', 1046513144, 1046513263, 'GB', 'United Kingdom'), +('62.96.134.112', '62.96.134.119', 1046513264, 1046513271, 'DE', 'Germany'), +('62.96.134.120', '62.96.134.135', 1046513272, 1046513287, 'GB', 'United Kingdom'), +('62.96.134.136', '62.96.134.143', 1046513288, 1046513295, 'DE', 'Germany'), +('62.96.134.144', '62.96.134.151', 1046513296, 1046513303, 'GB', 'United Kingdom'), +('62.96.134.152', '62.96.134.175', 1046513304, 1046513327, 'DE', 'Germany'), +('62.96.134.176', '62.96.134.191', 1046513328, 1046513343, 'GB', 'United Kingdom'), +('62.96.134.192', '62.96.134.215', 1046513344, 1046513367, 'DE', 'Germany'), +('62.96.134.216', '62.96.134.223', 1046513368, 1046513375, 'GB', 'United Kingdom'), +('62.96.134.224', '62.96.134.239', 1046513376, 1046513391, 'DE', 'Germany'), +('62.96.134.240', '62.96.135.31', 1046513392, 1046513439, 'GB', 'United Kingdom'), +('62.96.135.32', '62.96.135.111', 1046513440, 1046513519, 'DE', 'Germany'), +('62.96.135.112', '62.96.135.119', 1046513520, 1046513527, 'GB', 'United Kingdom'), +('62.96.135.120', '62.96.135.127', 1046513528, 1046513535, 'DE', 'Germany'), +('62.96.135.128', '62.96.135.135', 1046513536, 1046513543, 'GB', 'United Kingdom'), +('62.96.135.136', '62.96.135.143', 1046513544, 1046513551, 'DE', 'Germany'), +('62.96.135.144', '62.96.135.151', 1046513552, 1046513559, 'GB', 'United Kingdom'), +('62.96.135.152', '62.96.135.175', 1046513560, 1046513583, 'DE', 'Germany'), +('62.96.135.176', '62.96.136.95', 1046513584, 1046513759, 'GB', 'United Kingdom'), +('62.96.136.96', '62.96.136.111', 1046513760, 1046513775, 'DE', 'Germany'), +('62.96.136.112', '62.96.136.119', 1046513776, 1046513783, 'GB', 'United Kingdom'), +('62.96.136.120', '62.96.136.127', 1046513784, 1046513791, 'DE', 'Germany'), +('62.96.136.128', '62.96.136.135', 1046513792, 1046513799, 'GB', 'United Kingdom'), +('62.96.136.136', '62.96.136.167', 1046513800, 1046513831, 'DE', 'Germany'), +('62.96.136.168', '62.96.136.183', 1046513832, 1046513847, 'GB', 'United Kingdom'), +('62.96.136.184', '62.96.136.199', 1046513848, 1046513863, 'DE', 'Germany'), +('62.96.136.200', '62.96.136.207', 1046513864, 1046513871, 'GB', 'United Kingdom'), +('62.96.136.208', '62.96.136.215', 1046513872, 1046513879, 'DE', 'Germany'), +('62.96.136.216', '62.96.136.231', 1046513880, 1046513895, 'GB', 'United Kingdom'), +('62.96.136.232', '62.96.136.255', 1046513896, 1046513919, 'DE', 'Germany'), +('62.96.137.0', '62.96.138.31', 1046513920, 1046514207, 'GB', 'United Kingdom'), +('62.96.138.32', '62.96.138.47', 1046514208, 1046514223, 'DE', 'Germany'), +('62.96.138.48', '62.96.138.63', 1046514224, 1046514239, 'GB', 'United Kingdom'), +('62.96.138.64', '62.96.138.71', 1046514240, 1046514247, 'DE', 'Germany'), +('62.96.138.72', '62.96.138.79', 1046514248, 1046514255, 'GB', 'United Kingdom'), +('62.96.138.80', '62.96.138.103', 1046514256, 1046514279, 'DE', 'Germany'), +('62.96.138.104', '62.96.138.111', 1046514280, 1046514287, 'GB', 'United Kingdom'), +('62.96.138.112', '62.96.138.135', 1046514288, 1046514311, 'DE', 'Germany'), +('62.96.138.136', '62.96.138.143', 1046514312, 1046514319, 'GB', 'United Kingdom'), +('62.96.138.144', '62.96.138.159', 1046514320, 1046514335, 'DE', 'Germany'), +('62.96.138.160', '62.96.138.175', 1046514336, 1046514351, 'GB', 'United Kingdom'), +('62.96.138.176', '62.96.138.183', 1046514352, 1046514359, 'DE', 'Germany'), +('62.96.138.184', '62.96.138.191', 1046514360, 1046514367, 'GB', 'United Kingdom'), +('62.96.138.192', '62.96.138.207', 1046514368, 1046514383, 'DE', 'Germany'), +('62.96.138.208', '62.96.138.239', 1046514384, 1046514415, 'GB', 'United Kingdom'), +('62.96.138.240', '62.96.138.247', 1046514416, 1046514423, 'DE', 'Germany'), +('62.96.138.248', '62.96.140.31', 1046514424, 1046514719, 'GB', 'United Kingdom'), +('62.96.140.32', '62.96.140.63', 1046514720, 1046514751, 'DE', 'Germany'), +('62.96.140.64', '62.96.140.95', 1046514752, 1046514783, 'GB', 'United Kingdom'), +('62.96.140.96', '62.96.141.255', 1046514784, 1046515199, 'DE', 'Germany'), +('62.96.142.0', '62.96.143.255', 1046515200, 1046515711, 'GB', 'United Kingdom'), +('62.96.144.0', '62.96.144.255', 1046515712, 1046515967, 'DE', 'Germany'), +('62.96.145.0', '62.96.148.255', 1046515968, 1046516991, 'GB', 'United Kingdom'), +('62.96.149.0', '62.96.149.39', 1046516992, 1046517031, 'DE', 'Germany'), +('62.96.149.40', '62.96.149.47', 1046517032, 1046517039, 'GB', 'United Kingdom'), +('62.96.149.48', '62.96.149.95', 1046517040, 1046517087, 'DE', 'Germany'), +('62.96.149.96', '62.96.176.255', 1046517088, 1046524159, 'GB', 'United Kingdom'), +('62.96.177.0', '62.96.177.31', 1046524160, 1046524191, 'DE', 'Germany'), +('62.96.177.32', '62.96.177.47', 1046524192, 1046524207, 'GB', 'United Kingdom'), +('62.96.177.48', '62.96.177.55', 1046524208, 1046524215, 'DE', 'Germany'), +('62.96.177.56', '62.96.177.127', 1046524216, 1046524287, 'GB', 'United Kingdom'), +('62.96.177.128', '62.96.177.195', 1046524288, 1046524355, 'DE', 'Germany'), +('62.96.177.196', '62.96.177.255', 1046524356, 1046524415, 'GB', 'United Kingdom'), +('62.96.178.0', '62.96.180.255', 1046524416, 1046525183, 'DE', 'Germany'), +('62.96.181.0', '62.96.181.31', 1046525184, 1046525215, 'GB', 'United Kingdom'), +('62.96.181.32', '62.96.181.63', 1046525216, 1046525247, 'DE', 'Germany'), +('62.96.181.64', '62.96.181.127', 1046525248, 1046525311, 'GB', 'United Kingdom'), +('62.96.181.128', '62.96.181.159', 1046525312, 1046525343, 'DE', 'Germany'), +('62.96.181.160', '62.96.181.255', 1046525344, 1046525439, 'GB', 'United Kingdom'), +('62.96.182.0', '62.96.182.255', 1046525440, 1046525695, 'DE', 'Germany'), +('62.96.183.0', '62.96.186.127', 1046525696, 1046526591, 'GB', 'United Kingdom'), +('62.96.186.128', '62.96.186.135', 1046526592, 1046526599, 'DE', 'Germany'), +('62.96.186.136', '62.96.186.167', 1046526600, 1046526631, 'GB', 'United Kingdom'), +('62.96.186.168', '62.96.186.171', 1046526632, 1046526635, 'DE', 'Germany'), +('62.96.186.172', '62.96.186.255', 1046526636, 1046526719, 'GB', 'United Kingdom'), +('62.96.187.0', '62.96.188.15', 1046526720, 1046526991, 'DE', 'Germany'), +('62.96.188.16', '62.96.188.19', 1046526992, 1046526995, 'GB', 'United Kingdom'), +('62.96.188.20', '62.96.189.255', 1046526996, 1046527487, 'DE', 'Germany'), +('62.96.190.0', '62.96.190.255', 1046527488, 1046527743, 'GB', 'United Kingdom'), +('62.96.191.0', '62.96.191.255', 1046527744, 1046527999, 'DE', 'Germany'), +('62.96.192.0', '62.96.192.255', 1046528000, 1046528255, 'GB', 'United Kingdom'), +('62.96.193.0', '62.96.193.31', 1046528256, 1046528287, 'DE', 'Germany'), +('62.96.193.32', '62.96.193.63', 1046528288, 1046528319, 'GB', 'United Kingdom'), +('62.96.193.64', '62.96.193.79', 1046528320, 1046528335, 'DE', 'Germany'), +('62.96.193.80', '62.96.193.95', 1046528336, 1046528351, 'GB', 'United Kingdom'), +('62.96.193.96', '62.96.193.127', 1046528352, 1046528383, 'DE', 'Germany'), +('62.96.193.128', '62.96.193.135', 1046528384, 1046528391, 'GB', 'United Kingdom'), +('62.96.193.136', '62.96.193.143', 1046528392, 1046528399, 'DE', 'Germany'), +('62.96.193.144', '62.96.193.191', 1046528400, 1046528447, 'GB', 'United Kingdom'), +('62.96.193.192', '62.96.193.199', 1046528448, 1046528455, 'DE', 'Germany'), +('62.96.193.200', '62.96.193.203', 1046528456, 1046528459, 'GB', 'United Kingdom'), +('62.96.193.204', '62.96.193.207', 1046528460, 1046528463, 'DE', 'Germany'), +('62.96.193.208', '62.96.193.215', 1046528464, 1046528471, 'GB', 'United Kingdom'), +('62.96.193.216', '62.96.193.223', 1046528472, 1046528479, 'DE', 'Germany'), +('62.96.193.224', '62.96.193.231', 1046528480, 1046528487, 'GB', 'United Kingdom'), +('62.96.193.232', '62.96.193.239', 1046528488, 1046528495, 'DE', 'Germany'), +('62.96.193.240', '62.96.194.7', 1046528496, 1046528519, 'GB', 'United Kingdom'), +('62.96.194.8', '62.96.194.15', 1046528520, 1046528527, 'DE', 'Germany'), +('62.96.194.16', '62.96.194.31', 1046528528, 1046528543, 'GB', 'United Kingdom'), +('62.96.194.32', '62.96.194.47', 1046528544, 1046528559, 'DE', 'Germany'), +('62.96.194.48', '62.96.194.63', 1046528560, 1046528575, 'GB', 'United Kingdom'), +('62.96.194.64', '62.96.194.75', 1046528576, 1046528587, 'DE', 'Germany'), +('62.96.194.76', '62.96.194.87', 1046528588, 1046528599, 'GB', 'United Kingdom'), +('62.96.194.88', '62.96.194.91', 1046528600, 1046528603, 'DE', 'Germany'), +('62.96.194.92', '62.96.194.95', 1046528604, 1046528607, 'GB', 'United Kingdom'), +('62.96.194.96', '62.96.194.127', 1046528608, 1046528639, 'DE', 'Germany'), +('62.96.194.128', '62.96.194.159', 1046528640, 1046528671, 'GB', 'United Kingdom'), +('62.96.194.160', '62.96.194.191', 1046528672, 1046528703, 'DE', 'Germany'), +('62.96.194.192', '62.96.196.255', 1046528704, 1046529279, 'GB', 'United Kingdom'), +('62.96.197.0', '62.96.197.255', 1046529280, 1046529535, 'DE', 'Germany'), +('62.96.198.0', '62.96.199.255', 1046529536, 1046530047, 'GB', 'United Kingdom'), +('62.96.200.0', '62.96.202.127', 1046530048, 1046530687, 'DE', 'Germany'), +('62.96.202.128', '62.96.202.255', 1046530688, 1046530815, 'GB', 'United Kingdom'), +('62.96.203.0', '62.96.203.63', 1046530816, 1046530879, 'DE', 'Germany'), +('62.96.203.64', '62.96.203.127', 1046530880, 1046530943, 'GB', 'United Kingdom'), +('62.96.203.128', '62.96.203.131', 1046530944, 1046530947, 'DE', 'Germany'), +('62.96.203.132', '62.96.203.151', 1046530948, 1046530967, 'GB', 'United Kingdom'), +('62.96.203.152', '62.96.203.159', 1046530968, 1046530975, 'DE', 'Germany'), +('62.96.203.160', '62.96.203.191', 1046530976, 1046531007, 'GB', 'United Kingdom'), +('62.96.203.192', '62.96.204.15', 1046531008, 1046531087, 'DE', 'Germany'), +('62.96.204.16', '62.96.204.23', 1046531088, 1046531095, 'GB', 'United Kingdom'), +('62.96.204.24', '62.96.204.31', 1046531096, 1046531103, 'DE', 'Germany'), +('62.96.204.32', '62.96.204.39', 1046531104, 1046531111, 'GB', 'United Kingdom'), +('62.96.204.40', '62.96.204.55', 1046531112, 1046531127, 'DE', 'Germany'), +('62.96.204.56', '62.96.206.255', 1046531128, 1046531839, 'GB', 'United Kingdom'), +('62.96.207.0', '62.96.207.255', 1046531840, 1046532095, 'DE', 'Germany'), +('62.96.208.0', '62.96.215.127', 1046532096, 1046534015, 'GB', 'United Kingdom'), +('62.96.215.128', '62.96.215.159', 1046534016, 1046534047, 'DE', 'Germany'), +('62.96.215.160', '62.96.215.255', 1046534048, 1046534143, 'GB', 'United Kingdom'), +('62.96.216.0', '62.96.217.255', 1046534144, 1046534655, 'DE', 'Germany'), +('62.96.218.0', '62.96.218.255', 1046534656, 1046534911, 'GB', 'United Kingdom'), +('62.96.219.0', '62.96.219.255', 1046534912, 1046535167, 'DE', 'Germany'), +('62.96.220.0', '62.96.220.127', 1046535168, 1046535295, 'GB', 'United Kingdom'), +('62.96.220.128', '62.96.220.143', 1046535296, 1046535311, 'DE', 'Germany'), +('62.96.220.144', '62.96.220.191', 1046535312, 1046535359, 'GB', 'United Kingdom'), +('62.96.220.192', '62.96.220.255', 1046535360, 1046535423, 'DE', 'Germany'), +('62.96.221.0', '62.96.221.63', 1046535424, 1046535487, 'GB', 'United Kingdom'), +('62.96.221.64', '62.96.221.191', 1046535488, 1046535615, 'DE', 'Germany'), +('62.96.221.192', '62.96.221.195', 1046535616, 1046535619, 'GB', 'United Kingdom'), +('62.96.221.196', '62.96.221.199', 1046535620, 1046535623, 'DE', 'Germany'), +('62.96.221.200', '62.96.221.207', 1046535624, 1046535631, 'GB', 'United Kingdom'), +('62.96.221.208', '62.96.222.255', 1046535632, 1046535935, 'DE', 'Germany'), +('62.96.223.0', '62.96.223.71', 1046535936, 1046536007, 'GB', 'United Kingdom'), +('62.96.223.72', '62.96.223.79', 1046536008, 1046536015, 'DE', 'Germany'), +('62.96.223.80', '62.96.223.87', 1046536016, 1046536023, 'GB', 'United Kingdom'), +('62.96.223.88', '62.96.223.103', 1046536024, 1046536039, 'DE', 'Germany'), +('62.96.223.104', '62.96.223.127', 1046536040, 1046536063, 'GB', 'United Kingdom'), +('62.96.223.128', '62.96.223.215', 1046536064, 1046536151, 'DE', 'Germany'), +('62.96.223.216', '62.96.223.223', 1046536152, 1046536159, 'GB', 'United Kingdom'), +('62.96.223.224', '62.96.223.239', 1046536160, 1046536175, 'DE', 'Germany'), +('62.96.223.240', '62.96.223.251', 1046536176, 1046536187, 'GB', 'United Kingdom'), +('62.96.223.252', '62.96.224.7', 1046536188, 1046536199, 'DE', 'Germany'), +('62.96.224.8', '62.96.224.19', 1046536200, 1046536211, 'GB', 'United Kingdom'), +('62.96.224.20', '62.96.224.23', 1046536212, 1046536215, 'DE', 'Germany'), +('62.96.224.24', '62.96.224.63', 1046536216, 1046536255, 'GB', 'United Kingdom'), +('62.96.224.64', '62.96.224.79', 1046536256, 1046536271, 'DE', 'Germany'), +('62.96.224.80', '62.96.224.87', 1046536272, 1046536279, 'GB', 'United Kingdom'), +('62.96.224.88', '62.96.224.91', 1046536280, 1046536283, 'DE', 'Germany'), +('62.96.224.92', '62.96.224.95', 1046536284, 1046536287, 'GB', 'United Kingdom'), +('62.96.224.96', '62.96.224.103', 1046536288, 1046536295, 'DE', 'Germany'), +('62.96.224.104', '62.96.224.127', 1046536296, 1046536319, 'GB', 'United Kingdom'), +('62.96.224.128', '62.96.224.159', 1046536320, 1046536351, 'DE', 'Germany'), +('62.96.224.160', '62.96.224.231', 1046536352, 1046536423, 'GB', 'United Kingdom'), +('62.96.224.232', '62.96.224.247', 1046536424, 1046536439, 'DE', 'Germany'), +('62.96.224.248', '62.96.225.159', 1046536440, 1046536607, 'GB', 'United Kingdom'), +('62.96.225.160', '62.96.225.219', 1046536608, 1046536667, 'DE', 'Germany'), +('62.96.225.220', '62.96.225.255', 1046536668, 1046536703, 'GB', 'United Kingdom'), +('62.96.226.0', '62.96.227.63', 1046536704, 1046537023, 'DE', 'Germany'), +('62.96.227.64', '62.96.227.95', 1046537024, 1046537055, 'GB', 'United Kingdom'), +('62.96.227.96', '62.96.227.111', 1046537056, 1046537071, 'DE', 'Germany'), +('62.96.227.112', '62.96.227.127', 1046537072, 1046537087, 'GB', 'United Kingdom'), +('62.96.227.128', '62.96.227.191', 1046537088, 1046537151, 'DE', 'Germany'), +('62.96.227.192', '62.96.227.255', 1046537152, 1046537215, 'GB', 'United Kingdom'), +('62.96.228.0', '62.96.230.255', 1046537216, 1046537983, 'DE', 'Germany'), +('62.96.231.0', '62.96.232.191', 1046537984, 1046538431, 'GB', 'United Kingdom'), +('62.96.232.192', '62.96.232.207', 1046538432, 1046538447, 'DE', 'Germany'), +('62.96.232.208', '62.96.232.223', 1046538448, 1046538463, 'GB', 'United Kingdom'), +('62.96.232.224', '62.96.232.255', 1046538464, 1046538495, 'DE', 'Germany'), +('62.96.233.0', '62.96.233.255', 1046538496, 1046538751, 'GB', 'United Kingdom'), +('62.96.234.0', '62.96.236.255', 1046538752, 1046539519, 'DE', 'Germany'), +('62.96.237.0', '62.96.238.255', 1046539520, 1046540031, 'GB', 'United Kingdom'), +('62.96.239.0', '62.96.239.255', 1046540032, 1046540287, 'DE', 'Germany'), +('62.96.240.0', '62.96.240.255', 1046540288, 1046540543, 'GB', 'United Kingdom'), +('62.96.241.0', '62.96.242.255', 1046540544, 1046541055, 'DE', 'Germany'), +('62.96.243.0', '62.96.243.255', 1046541056, 1046541311, 'GB', 'United Kingdom'), +('62.96.244.0', '62.96.244.127', 1046541312, 1046541439, 'DE', 'Germany'), +('62.96.244.128', '62.96.244.191', 1046541440, 1046541503, 'GB', 'United Kingdom'), +('62.96.244.192', '62.96.244.255', 1046541504, 1046541567, 'DE', 'Germany'), +('62.96.245.0', '62.96.245.63', 1046541568, 1046541631, 'GB', 'United Kingdom'), +('62.96.245.64', '62.96.245.127', 1046541632, 1046541695, 'DE', 'Germany'), +('62.96.245.128', '62.96.245.159', 1046541696, 1046541727, 'GB', 'United Kingdom'), +('62.96.245.160', '62.96.245.191', 1046541728, 1046541759, 'DE', 'Germany'), +('62.96.245.192', '62.96.245.199', 1046541760, 1046541767, 'GB', 'United Kingdom'), +('62.96.245.200', '62.96.245.215', 1046541768, 1046541783, 'DE', 'Germany'), +('62.96.245.216', '62.96.245.239', 1046541784, 1046541807, 'GB', 'United Kingdom'), +('62.96.245.240', '62.96.248.255', 1046541808, 1046542591, 'DE', 'Germany'), +('62.96.249.0', '62.96.249.255', 1046542592, 1046542847, 'GB', 'United Kingdom'), +('62.96.250.0', '62.96.250.255', 1046542848, 1046543103, 'DE', 'Germany'), +('62.96.251.0', '62.96.251.159', 1046543104, 1046543263, 'GB', 'United Kingdom'), +('62.96.251.160', '62.96.251.191', 1046543264, 1046543295, 'DE', 'Germany'), +('62.96.251.192', '62.96.251.223', 1046543296, 1046543327, 'GB', 'United Kingdom'), +('62.96.251.224', '62.96.251.247', 1046543328, 1046543351, 'DE', 'Germany'), +('62.96.251.248', '62.96.251.255', 1046543352, 1046543359, 'GB', 'United Kingdom'), +('62.96.252.0', '62.96.253.255', 1046543360, 1046543871, 'DE', 'Germany'), +('62.96.254.0', '62.96.254.255', 1046543872, 1046544127, 'GB', 'United Kingdom'), +('62.96.255.0', '62.96.255.255', 1046544128, 1046544383, 'DE', 'Germany'), +('62.97.0.0', '62.97.63.255', 1046544384, 1046560767, 'IT', 'Italy'), +('62.97.64.0', '62.97.159.255', 1046560768, 1046585343, 'ES', 'Spain'), +('62.97.160.0', '62.97.255.255', 1046585344, 1046609919, 'NO', 'Norway'), +('62.98.0.0', '62.98.255.255', 1046609920, 1046675455, 'IT', 'Italy'), +('62.99.0.0', '62.99.127.255', 1046675456, 1046708223, 'ES', 'Spain'), +('62.99.128.0', '62.99.255.255', 1046708224, 1046740991, 'AT', 'Austria'), +('62.100.0.0', '62.100.63.255', 1046740992, 1046757375, 'NL', 'Netherlands'), +('62.100.64.0', '62.100.95.255', 1046757376, 1046765567, 'IT', 'Italy'), +('62.100.96.0', '62.100.127.255', 1046765568, 1046773759, 'ES', 'Spain'), +('62.100.128.0', '62.100.159.255', 1046773760, 1046781951, 'FR', 'France'), +('62.100.160.0', '62.100.223.255', 1046781952, 1046798335, 'GB', 'United Kingdom'), +('62.100.224.0', '62.100.255.255', 1046798336, 1046806527, 'HU', 'Hungary'), +('62.101.0.0', '62.101.31.255', 1046806528, 1046814719, 'IT', 'Italy'), +('62.101.32.0', '62.101.63.255', 1046814720, 1046822911, 'SE', 'Sweden'), +('62.101.64.0', '62.101.159.255', 1046822912, 1046847487, 'IT', 'Italy'), +('62.101.160.0', '62.101.191.255', 1046847488, 1046855679, 'ES', 'Spain'), +('62.101.192.0', '62.101.255.255', 1046855680, 1046872063, 'NO', 'Norway'), +('62.102.0.0', '62.102.2.7', 1046872064, 1046872583, 'BE', 'Belgium'), +('62.102.2.8', '62.102.2.31', 1046872584, 1046872607, 'EU', 'Europe'), +('62.102.2.32', '62.102.2.39', 1046872608, 1046872615, 'BE', 'Belgium'), +('62.102.2.40', '62.102.2.79', 1046872616, 1046872655, 'EU', 'Europe'), +('62.102.2.80', '62.102.2.95', 1046872656, 1046872671, 'BE', 'Belgium'), +('62.102.2.96', '62.102.2.223', 1046872672, 1046872799, 'EU', 'Europe'), +('62.102.2.224', '62.102.2.239', 1046872800, 1046872815, 'BE', 'Belgium'), +('62.102.2.240', '62.102.3.143', 1046872816, 1046872975, 'EU', 'Europe'), +('62.102.3.144', '62.102.3.167', 1046872976, 1046872999, 'BE', 'Belgium'), +('62.102.3.168', '62.102.3.255', 1046873000, 1046873087, 'EU', 'Europe'), +('62.102.4.0', '62.102.4.191', 1046873088, 1046873279, 'BE', 'Belgium'), +('62.102.4.192', '62.102.5.255', 1046873280, 1046873599, 'EU', 'Europe'), +('62.102.6.0', '62.102.24.255', 1046873600, 1046878463, 'BE', 'Belgium'), +('62.102.25.0', '62.102.28.15', 1046878464, 1046879247, 'EU', 'Europe'), +('62.102.28.16', '62.102.28.31', 1046879248, 1046879263, 'BE', 'Belgium'), +('62.102.28.32', '62.102.28.39', 1046879264, 1046879271, 'EU', 'Europe'), +('62.102.28.40', '62.102.28.79', 1046879272, 1046879311, 'BE', 'Belgium'), +('62.102.28.80', '62.102.28.95', 1046879312, 1046879327, 'EU', 'Europe'), +('62.102.28.96', '62.102.29.7', 1046879328, 1046879495, 'BE', 'Belgium'), +('62.102.29.8', '62.102.29.15', 1046879496, 1046879503, 'EU', 'Europe'), +('62.102.29.16', '62.102.29.23', 1046879504, 1046879511, 'BE', 'Belgium'), +('62.102.29.24', '62.102.29.47', 1046879512, 1046879535, 'EU', 'Europe'), +('62.102.29.48', '62.102.29.63', 1046879536, 1046879551, 'BE', 'Belgium'), +('62.102.29.64', '62.102.29.103', 1046879552, 1046879591, 'EU', 'Europe'), +('62.102.29.104', '62.102.29.135', 1046879592, 1046879623, 'BE', 'Belgium'), +('62.102.29.136', '62.102.29.159', 1046879624, 1046879647, 'EU', 'Europe'), +('62.102.29.160', '62.102.29.167', 1046879648, 1046879655, 'BE', 'Belgium'), +('62.102.29.168', '62.102.29.199', 1046879656, 1046879687, 'EU', 'Europe'), +('62.102.29.200', '62.102.29.223', 1046879688, 1046879711, 'BE', 'Belgium'), +('62.102.29.224', '62.102.29.231', 1046879712, 1046879719, 'EU', 'Europe'), +('62.102.29.232', '62.102.29.247', 1046879720, 1046879735, 'BE', 'Belgium'), +('62.102.29.248', '62.102.30.31', 1046879736, 1046879775, 'EU', 'Europe'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('62.102.30.32', '62.102.30.47', 1046879776, 1046879791, 'BE', 'Belgium'), +('62.102.30.48', '62.102.30.63', 1046879792, 1046879807, 'EU', 'Europe'), +('62.102.30.64', '62.102.30.87', 1046879808, 1046879831, 'BE', 'Belgium'), +('62.102.30.88', '62.102.30.95', 1046879832, 1046879839, 'EU', 'Europe'), +('62.102.30.96', '62.102.30.103', 1046879840, 1046879847, 'BE', 'Belgium'), +('62.102.30.104', '62.102.30.151', 1046879848, 1046879895, 'EU', 'Europe'), +('62.102.30.152', '62.102.30.167', 1046879896, 1046879911, 'BE', 'Belgium'), +('62.102.30.168', '62.102.30.199', 1046879912, 1046879943, 'EU', 'Europe'), +('62.102.30.200', '62.102.30.215', 1046879944, 1046879959, 'BE', 'Belgium'), +('62.102.30.216', '62.102.30.223', 1046879960, 1046879967, 'EU', 'Europe'), +('62.102.30.224', '62.102.31.127', 1046879968, 1046880127, 'BE', 'Belgium'), +('62.102.31.128', '62.102.31.135', 1046880128, 1046880135, 'EU', 'Europe'), +('62.102.31.136', '62.102.31.143', 1046880136, 1046880143, 'BE', 'Belgium'), +('62.102.31.144', '62.102.31.151', 1046880144, 1046880151, 'EU', 'Europe'), +('62.102.31.152', '62.102.31.191', 1046880152, 1046880191, 'BE', 'Belgium'), +('62.102.31.192', '62.102.31.255', 1046880192, 1046880255, 'EU', 'Europe'), +('62.102.32.0', '62.102.32.255', 1046880256, 1046880511, 'BE', 'Belgium'), +('62.102.33.0', '62.102.33.7', 1046880512, 1046880519, 'EU', 'Europe'), +('62.102.33.8', '62.102.33.15', 1046880520, 1046880527, 'BE', 'Belgium'), +('62.102.33.16', '62.102.33.47', 1046880528, 1046880559, 'EU', 'Europe'), +('62.102.33.48', '62.102.33.55', 1046880560, 1046880567, 'RO', 'Romania'), +('62.102.33.56', '62.102.33.79', 1046880568, 1046880591, 'EU', 'Europe'), +('62.102.33.80', '62.102.33.103', 1046880592, 1046880615, 'BE', 'Belgium'), +('62.102.33.104', '62.102.33.127', 1046880616, 1046880639, 'EU', 'Europe'), +('62.102.33.128', '62.102.33.159', 1046880640, 1046880671, 'BE', 'Belgium'), +('62.102.33.160', '62.102.33.223', 1046880672, 1046880735, 'EU', 'Europe'), +('62.102.33.224', '62.102.33.247', 1046880736, 1046880759, 'BE', 'Belgium'), +('62.102.33.248', '62.102.34.135', 1046880760, 1046880903, 'EU', 'Europe'), +('62.102.34.136', '62.102.34.143', 1046880904, 1046880911, 'BE', 'Belgium'), +('62.102.34.144', '62.102.34.151', 1046880912, 1046880919, 'EU', 'Europe'), +('62.102.34.152', '62.102.34.167', 1046880920, 1046880935, 'BE', 'Belgium'), +('62.102.34.168', '62.102.34.215', 1046880936, 1046880983, 'EU', 'Europe'), +('62.102.34.216', '62.102.35.15', 1046880984, 1046881039, 'BE', 'Belgium'), +('62.102.35.16', '62.102.35.31', 1046881040, 1046881055, 'EU', 'Europe'), +('62.102.35.32', '62.102.35.47', 1046881056, 1046881071, 'BE', 'Belgium'), +('62.102.35.48', '62.102.35.55', 1046881072, 1046881079, 'EU', 'Europe'), +('62.102.35.56', '62.102.35.63', 1046881080, 1046881087, 'BE', 'Belgium'), +('62.102.35.64', '62.102.35.87', 1046881088, 1046881111, 'EU', 'Europe'), +('62.102.35.88', '62.102.35.103', 1046881112, 1046881127, 'BE', 'Belgium'), +('62.102.35.104', '62.102.35.111', 1046881128, 1046881135, 'EU', 'Europe'), +('62.102.35.112', '62.102.35.215', 1046881136, 1046881239, 'BE', 'Belgium'), +('62.102.35.216', '62.102.35.223', 1046881240, 1046881247, 'EU', 'Europe'), +('62.102.35.224', '62.102.35.231', 1046881248, 1046881255, 'BE', 'Belgium'), +('62.102.35.232', '62.102.35.255', 1046881256, 1046881279, 'EU', 'Europe'), +('62.102.36.0', '62.102.38.255', 1046881280, 1046882047, 'BE', 'Belgium'), +('62.102.39.0', '62.102.39.255', 1046882048, 1046882303, 'EU', 'Europe'), +('62.102.40.0', '62.102.48.31', 1046882304, 1046884383, 'BE', 'Belgium'), +('62.102.48.32', '62.102.51.255', 1046884384, 1046885375, 'EU', 'Europe'), +('62.102.52.0', '62.102.63.255', 1046885376, 1046888447, 'BE', 'Belgium'), +('62.102.64.0', '62.102.87.255', 1046888448, 1046894591, 'GB', 'United Kingdom'), +('62.102.88.0', '62.102.95.255', 1046894592, 1046896639, 'EU', 'Europe'), +('62.102.96.0', '62.102.99.255', 1046896640, 1046897663, 'GB', 'United Kingdom'), +('62.102.100.0', '62.102.102.255', 1046897664, 1046898431, 'BE', 'Belgium'), +('62.102.103.0', '62.102.103.255', 1046898432, 1046898687, 'EU', 'Europe'), +('62.102.104.0', '62.102.104.255', 1046898688, 1046898943, 'BE', 'Belgium'), +('62.102.105.0', '62.102.105.255', 1046898944, 1046899199, 'EU', 'Europe'), +('62.102.106.0', '62.102.127.255', 1046899200, 1046904831, 'BE', 'Belgium'), +('62.102.128.0', '62.102.255.255', 1046904832, 1046937599, 'RU', 'Russian Federation'), +('62.103.0.0', '62.103.255.255', 1046937600, 1047003135, 'GR', 'Greece'), +('62.104.0.0', '62.104.255.255', 1047003136, 1047068671, 'DE', 'Germany'), +('62.105.0.0', '62.105.63.255', 1047068672, 1047085055, 'RU', 'Russian Federation'), +('62.105.64.0', '62.105.127.255', 1047085056, 1047101439, 'GB', 'United Kingdom'), +('62.105.128.0', '62.105.159.255', 1047101440, 1047109631, 'RU', 'Russian Federation'), +('62.105.160.0', '62.105.191.255', 1047109632, 1047117823, 'GB', 'United Kingdom'), +('62.105.192.0', '62.105.255.255', 1047117824, 1047134207, 'NL', 'Netherlands'), +('62.106.0.0', '62.106.63.255', 1047134208, 1047150591, 'FI', 'Finland'), +('62.106.64.0', '62.106.95.255', 1047150592, 1047158783, 'FR', 'France'), +('62.106.96.0', '62.106.127.255', 1047158784, 1047166975, 'RU', 'Russian Federation'), +('62.106.128.0', '62.106.255.255', 1047166976, 1047199743, 'FR', 'France'), +('62.107.0.0', '62.107.255.255', 1047199744, 1047265279, 'DK', 'Denmark'), +('62.108.0.0', '62.108.31.255', 1047265280, 1047273471, 'NL', 'Netherlands'), +('62.108.32.0', '62.108.63.255', 1047273472, 1047281663, 'GB', 'United Kingdom'), +('62.108.64.0', '62.108.95.255', 1047281664, 1047289855, 'TR', 'Turkey'), +('62.108.96.0', '62.108.127.255', 1047289856, 1047298047, 'RS', 'Serbia'), +('62.108.128.0', '62.108.135.255', 1047298048, 1047300095, 'CH', 'Switzerland'), +('62.108.136.0', '62.108.137.63', 1047300096, 1047300415, 'GB', 'United Kingdom'), +('62.108.137.64', '62.108.137.127', 1047300416, 1047300479, 'CH', 'Switzerland'), +('62.108.137.128', '62.108.137.143', 1047300480, 1047300495, 'FR', 'France'), +('62.108.137.144', '62.108.137.255', 1047300496, 1047300607, 'CH', 'Switzerland'), +('62.108.138.0', '62.108.138.31', 1047300608, 1047300639, 'GB', 'United Kingdom'), +('62.108.138.32', '62.108.143.255', 1047300640, 1047302143, 'CH', 'Switzerland'), +('62.108.144.0', '62.108.144.15', 1047302144, 1047302159, 'US', 'United States'), +('62.108.144.16', '62.108.144.31', 1047302160, 1047302175, 'GB', 'United Kingdom'), +('62.108.144.32', '62.108.144.47', 1047302176, 1047302191, 'AU', 'Australia'), +('62.108.144.48', '62.108.159.255', 1047302192, 1047306239, 'CH', 'Switzerland'), +('62.108.160.0', '62.108.191.255', 1047306240, 1047314431, 'PL', 'Poland'), +('62.108.192.0', '62.108.223.255', 1047314432, 1047322623, 'SE', 'Sweden'), +('62.108.224.0', '62.108.255.255', 1047322624, 1047330815, 'IT', 'Italy'), +('62.109.0.0', '62.109.31.255', 1047330816, 1047339007, 'RU', 'Russian Federation'), +('62.109.32.0', '62.109.37.143', 1047339008, 1047340431, 'SE', 'Sweden'), +('62.109.37.144', '62.109.37.151', 1047340432, 1047340439, 'NO', 'Norway'), +('62.109.37.152', '62.109.38.255', 1047340440, 1047340799, 'SE', 'Sweden'), +('62.109.39.0', '62.109.39.255', 1047340800, 1047341055, 'NO', 'Norway'), +('62.109.40.0', '62.109.50.255', 1047341056, 1047343871, 'SE', 'Sweden'), +('62.109.51.0', '62.109.51.255', 1047343872, 1047344127, 'NO', 'Norway'), +('62.109.52.0', '62.109.63.255', 1047344128, 1047347199, 'SE', 'Sweden'), +('62.109.64.0', '62.109.127.255', 1047347200, 1047363583, 'DE', 'Germany'), +('62.109.128.0', '62.109.159.255', 1047363584, 1047371775, 'CZ', 'Czech Republic'), +('62.109.160.0', '62.109.191.255', 1047371776, 1047379967, 'RU', 'Russian Federation'), +('62.109.192.0', '62.109.255.255', 1047379968, 1047396351, 'NL', 'Netherlands'), +('62.110.0.0', '62.110.255.255', 1047396352, 1047461887, 'IT', 'Italy'), +('62.111.0.0', '62.111.127.255', 1047461888, 1047494655, 'DE', 'Germany'), +('62.111.128.0', '62.111.255.255', 1047494656, 1047527423, 'PL', 'Poland'), +('62.112.0.0', '62.112.31.255', 1047527424, 1047535615, 'BE', 'Belgium'), +('62.112.32.0', '62.112.95.255', 1047535616, 1047551999, 'DE', 'Germany'), +('62.112.96.0', '62.112.127.255', 1047552000, 1047560191, 'RU', 'Russian Federation'), +('62.112.128.0', '62.112.130.59', 1047560192, 1047560763, 'DE', 'Germany'), +('62.112.130.60', '62.112.130.63', 1047560764, 1047560767, 'AT', 'Austria'), +('62.112.130.64', '62.112.134.19', 1047560768, 1047561747, 'DE', 'Germany'), +('62.112.134.20', '62.112.134.23', 1047561748, 1047561751, 'ES', 'Spain'), +('62.112.134.24', '62.112.134.159', 1047561752, 1047561887, 'DE', 'Germany'), +('62.112.134.160', '62.112.134.163', 1047561888, 1047561891, 'US', 'United States'), +('62.112.134.164', '62.112.140.39', 1047561892, 1047563303, 'DE', 'Germany'), +('62.112.140.40', '62.112.140.43', 1047563304, 1047563307, 'CH', 'Switzerland'), +('62.112.140.44', '62.112.140.143', 1047563308, 1047563407, 'DE', 'Germany'), +('62.112.140.144', '62.112.140.147', 1047563408, 1047563411, 'CH', 'Switzerland'), +('62.112.140.148', '62.112.140.151', 1047563412, 1047563415, 'DE', 'Germany'), +('62.112.140.152', '62.112.140.155', 1047563416, 1047563419, 'BE', 'Belgium'), +('62.112.140.156', '62.112.140.179', 1047563420, 1047563443, 'DE', 'Germany'), +('62.112.140.180', '62.112.140.183', 1047563444, 1047563447, 'CH', 'Switzerland'), +('62.112.140.184', '62.112.140.187', 1047563448, 1047563451, 'DE', 'Germany'), +('62.112.140.188', '62.112.140.191', 1047563452, 1047563455, 'NL', 'Netherlands'), +('62.112.140.192', '62.112.140.199', 1047563456, 1047563463, 'DE', 'Germany'), +('62.112.140.200', '62.112.140.207', 1047563464, 1047563471, 'CH', 'Switzerland'), +('62.112.140.208', '62.112.141.207', 1047563472, 1047563727, 'DE', 'Germany'), +('62.112.141.208', '62.112.141.211', 1047563728, 1047563731, 'AU', 'Australia'), +('62.112.141.212', '62.112.152.27', 1047563732, 1047566363, 'DE', 'Germany'), +('62.112.152.28', '62.112.152.31', 1047566364, 1047566367, 'CH', 'Switzerland'), +('62.112.152.32', '62.112.152.71', 1047566368, 1047566407, 'DE', 'Germany'), +('62.112.152.72', '62.112.152.79', 1047566408, 1047566415, 'CH', 'Switzerland'), +('62.112.152.80', '62.112.152.119', 1047566416, 1047566455, 'DE', 'Germany'), +('62.112.152.120', '62.112.152.123', 1047566456, 1047566459, 'CH', 'Switzerland'), +('62.112.152.124', '62.112.152.139', 1047566460, 1047566475, 'DE', 'Germany'), +('62.112.152.140', '62.112.152.143', 1047566476, 1047566479, 'CH', 'Switzerland'), +('62.112.152.144', '62.112.152.199', 1047566480, 1047566535, 'DE', 'Germany'), +('62.112.152.200', '62.112.152.203', 1047566536, 1047566539, 'CH', 'Switzerland'), +('62.112.152.204', '62.112.152.223', 1047566540, 1047566559, 'DE', 'Germany'), +('62.112.152.224', '62.112.152.227', 1047566560, 1047566563, 'CH', 'Switzerland'), +('62.112.152.228', '62.112.153.255', 1047566564, 1047566847, 'DE', 'Germany'), +('62.112.154.0', '62.112.154.3', 1047566848, 1047566851, 'AT', 'Austria'), +('62.112.154.4', '62.112.154.19', 1047566852, 1047566867, 'DE', 'Germany'), +('62.112.154.20', '62.112.154.23', 1047566868, 1047566871, 'AT', 'Austria'), +('62.112.154.24', '62.112.154.31', 1047566872, 1047566879, 'CH', 'Switzerland'), +('62.112.154.32', '62.112.154.43', 1047566880, 1047566891, 'DE', 'Germany'), +('62.112.154.44', '62.112.154.55', 1047566892, 1047566903, 'CH', 'Switzerland'), +('62.112.154.56', '62.112.154.147', 1047566904, 1047566995, 'DE', 'Germany'), +('62.112.154.148', '62.112.154.151', 1047566996, 1047566999, 'CH', 'Switzerland'), +('62.112.154.152', '62.112.154.183', 1047567000, 1047567031, 'DE', 'Germany'), +('62.112.154.184', '62.112.154.187', 1047567032, 1047567035, 'CH', 'Switzerland'), +('62.112.154.188', '62.112.154.191', 1047567036, 1047567039, 'DE', 'Germany'), +('62.112.154.192', '62.112.154.195', 1047567040, 1047567043, 'AT', 'Austria'), +('62.112.154.196', '62.112.154.199', 1047567044, 1047567047, 'CH', 'Switzerland'), +('62.112.154.200', '62.112.154.255', 1047567048, 1047567103, 'DE', 'Germany'), +('62.112.155.0', '62.112.155.7', 1047567104, 1047567111, 'NL', 'Netherlands'), +('62.112.155.8', '62.112.155.15', 1047567112, 1047567119, 'DE', 'Germany'), +('62.112.155.16', '62.112.155.23', 1047567120, 1047567127, 'CH', 'Switzerland'), +('62.112.155.24', '62.112.155.39', 1047567128, 1047567143, 'DE', 'Germany'), +('62.112.155.40', '62.112.155.43', 1047567144, 1047567147, 'CH', 'Switzerland'), +('62.112.155.44', '62.112.155.47', 1047567148, 1047567151, 'BE', 'Belgium'), +('62.112.155.48', '62.112.155.59', 1047567152, 1047567163, 'DE', 'Germany'), +('62.112.155.60', '62.112.155.63', 1047567164, 1047567167, 'AT', 'Austria'), +('62.112.155.64', '62.112.155.107', 1047567168, 1047567211, 'DE', 'Germany'), +('62.112.155.108', '62.112.155.123', 1047567212, 1047567227, 'CH', 'Switzerland'), +('62.112.155.124', '62.112.155.135', 1047567228, 1047567239, 'DE', 'Germany'), +('62.112.155.136', '62.112.155.139', 1047567240, 1047567243, 'CH', 'Switzerland'), +('62.112.155.140', '62.112.155.143', 1047567244, 1047567247, 'DE', 'Germany'), +('62.112.155.144', '62.112.155.151', 1047567248, 1047567255, 'CH', 'Switzerland'), +('62.112.155.152', '62.112.155.175', 1047567256, 1047567279, 'DE', 'Germany'), +('62.112.155.176', '62.112.155.183', 1047567280, 1047567287, 'CH', 'Switzerland'), +('62.112.155.184', '62.112.155.211', 1047567288, 1047567315, 'DE', 'Germany'), +('62.112.155.212', '62.112.155.215', 1047567316, 1047567319, 'AT', 'Austria'), +('62.112.155.216', '62.112.155.255', 1047567320, 1047567359, 'DE', 'Germany'), +('62.112.156.0', '62.112.156.15', 1047567360, 1047567375, 'ES', 'Spain'), +('62.112.156.16', '62.112.156.75', 1047567376, 1047567435, 'DE', 'Germany'), +('62.112.156.76', '62.112.156.79', 1047567436, 1047567439, 'CH', 'Switzerland'), +('62.112.156.80', '62.112.156.87', 1047567440, 1047567447, 'DE', 'Germany'), +('62.112.156.88', '62.112.156.91', 1047567448, 1047567451, 'CH', 'Switzerland'), +('62.112.156.92', '62.112.156.95', 1047567452, 1047567455, 'AT', 'Austria'), +('62.112.156.96', '62.112.156.99', 1047567456, 1047567459, 'CH', 'Switzerland'), +('62.112.156.100', '62.112.156.103', 1047567460, 1047567463, 'DE', 'Germany'), +('62.112.156.104', '62.112.156.107', 1047567464, 1047567467, 'CH', 'Switzerland'), +('62.112.156.108', '62.112.156.135', 1047567468, 1047567495, 'DE', 'Germany'), +('62.112.156.136', '62.112.156.139', 1047567496, 1047567499, 'CH', 'Switzerland'), +('62.112.156.140', '62.112.156.191', 1047567500, 1047567551, 'DE', 'Germany'), +('62.112.156.192', '62.112.156.195', 1047567552, 1047567555, 'CH', 'Switzerland'), +('62.112.156.196', '62.112.157.31', 1047567556, 1047567647, 'DE', 'Germany'), +('62.112.157.32', '62.112.157.35', 1047567648, 1047567651, 'CH', 'Switzerland'), +('62.112.157.36', '62.112.157.111', 1047567652, 1047567727, 'DE', 'Germany'), +('62.112.157.112', '62.112.157.115', 1047567728, 1047567731, 'BE', 'Belgium'), +('62.112.157.116', '62.112.157.131', 1047567732, 1047567747, 'DE', 'Germany'), +('62.112.157.132', '62.112.157.135', 1047567748, 1047567751, 'CH', 'Switzerland'), +('62.112.157.136', '62.112.157.139', 1047567752, 1047567755, 'LU', 'Luxembourg'), +('62.112.157.140', '62.112.157.143', 1047567756, 1047567759, 'CH', 'Switzerland'), +('62.112.157.144', '62.112.157.183', 1047567760, 1047567799, 'DE', 'Germany'), +('62.112.157.184', '62.112.157.187', 1047567800, 1047567803, 'CH', 'Switzerland'), +('62.112.157.188', '62.112.157.231', 1047567804, 1047567847, 'DE', 'Germany'), +('62.112.157.232', '62.112.157.235', 1047567848, 1047567851, 'CH', 'Switzerland'), +('62.112.157.236', '62.112.157.255', 1047567852, 1047567871, 'DE', 'Germany'), +('62.112.158.0', '62.112.158.3', 1047567872, 1047567875, 'CH', 'Switzerland'), +('62.112.158.4', '62.112.158.7', 1047567876, 1047567879, 'AT', 'Austria'), +('62.112.158.8', '62.112.158.11', 1047567880, 1047567883, 'CH', 'Switzerland'), +('62.112.158.12', '62.112.158.63', 1047567884, 1047567935, 'DE', 'Germany'), +('62.112.158.64', '62.112.158.67', 1047567936, 1047567939, 'CH', 'Switzerland'), +('62.112.158.68', '62.112.158.175', 1047567940, 1047568047, 'DE', 'Germany'), +('62.112.158.176', '62.112.158.183', 1047568048, 1047568055, 'CH', 'Switzerland'), +('62.112.158.184', '62.112.158.211', 1047568056, 1047568083, 'DE', 'Germany'), +('62.112.158.212', '62.112.158.223', 1047568084, 1047568095, 'CH', 'Switzerland'), +('62.112.158.224', '62.112.159.31', 1047568096, 1047568159, 'DE', 'Germany'), +('62.112.159.32', '62.112.159.35', 1047568160, 1047568163, 'CH', 'Switzerland'), +('62.112.159.36', '62.112.159.39', 1047568164, 1047568167, 'DE', 'Germany'), +('62.112.159.40', '62.112.159.43', 1047568168, 1047568171, 'ES', 'Spain'), +('62.112.159.44', '62.112.159.87', 1047568172, 1047568215, 'DE', 'Germany'), +('62.112.159.88', '62.112.159.91', 1047568216, 1047568219, 'CH', 'Switzerland'), +('62.112.159.92', '62.112.159.107', 1047568220, 1047568235, 'DE', 'Germany'), +('62.112.159.108', '62.112.159.111', 1047568236, 1047568239, 'CH', 'Switzerland'), +('62.112.159.112', '62.112.159.119', 1047568240, 1047568247, 'DE', 'Germany'), +('62.112.159.120', '62.112.159.123', 1047568248, 1047568251, 'CH', 'Switzerland'), +('62.112.159.124', '62.112.159.255', 1047568252, 1047568383, 'DE', 'Germany'), +('62.112.160.0', '62.112.191.255', 1047568384, 1047576575, 'NL', 'Netherlands'), +('62.112.192.0', '62.112.223.255', 1047576576, 1047584767, 'HU', 'Hungary'), +('62.112.224.0', '62.112.255.255', 1047584768, 1047592959, 'NL', 'Netherlands'), +('62.113.0.0', '62.113.31.255', 1047592960, 1047601151, 'BA', 'Bosnia and Herzegovina'), +('62.113.32.0', '62.113.127.255', 1047601152, 1047625727, 'RU', 'Russian Federation'), +('62.113.128.0', '62.113.159.255', 1047625728, 1047633919, 'NO', 'Norway'), +('62.113.160.0', '62.113.191.255', 1047633920, 1047642111, 'FI', 'Finland'), +('62.113.192.0', '62.113.255.255', 1047642112, 1047658495, 'DE', 'Germany'), +('62.114.0.0', '62.114.255.255', 1047658496, 1047724031, 'EG', 'Egypt'), +('62.115.0.0', '62.115.15.255', 1047724032, 1047728127, 'EU', 'Europe'), +('62.115.16.0', '62.115.31.255', 1047728128, 1047732223, 'SE', 'Sweden'), +('62.115.32.0', '62.115.64.255', 1047732224, 1047740671, 'EU', 'Europe'), +('62.115.65.0', '62.115.65.255', 1047740672, 1047740927, 'A2', 'Satellite Provider'), +('62.115.66.0', '62.115.228.255', 1047740928, 1047782655, 'EU', 'Europe'), +('62.115.229.0', '62.115.229.31', 1047782656, 1047782687, 'GB', 'United Kingdom'), +('62.115.229.32', '62.115.229.39', 1047782688, 1047782695, 'EU', 'Europe'), +('62.115.229.40', '62.115.229.47', 1047782696, 1047782703, 'GB', 'United Kingdom'), +('62.115.229.48', '62.115.229.63', 1047782704, 1047782719, 'EU', 'Europe'), +('62.115.229.64', '62.115.229.95', 1047782720, 1047782751, 'SE', 'Sweden'), +('62.115.229.96', '62.115.229.127', 1047782752, 1047782783, 'NO', 'Norway'), +('62.115.229.128', '62.115.229.159', 1047782784, 1047782815, 'FI', 'Finland'), +('62.115.229.160', '62.115.255.255', 1047782816, 1047789567, 'EU', 'Europe'), +('62.116.0.0', '62.116.64.79', 1047789568, 1047806031, 'AT', 'Austria'), +('62.116.64.80', '62.116.64.95', 1047806032, 1047806047, 'IT', 'Italy'), +('62.116.64.96', '62.116.127.255', 1047806048, 1047822335, 'AT', 'Austria'), +('62.116.128.0', '62.116.177.15', 1047822336, 1047834895, 'DE', 'Germany'), +('62.116.177.16', '62.116.177.23', 1047834896, 1047834903, 'CY', 'Cyprus'), +('62.116.177.24', '62.116.191.255', 1047834904, 1047838719, 'DE', 'Germany'), +('62.116.192.0', '62.116.223.255', 1047838720, 1047846911, 'DK', 'Denmark'), +('62.116.224.0', '62.116.255.255', 1047846912, 1047855103, 'SE', 'Sweden'), +('62.117.0.0', '62.117.31.255', 1047855104, 1047863295, 'DE', 'Germany'), +('62.117.32.0', '62.117.63.255', 1047863296, 1047871487, 'EG', 'Egypt'), +('62.117.64.0', '62.117.127.255', 1047871488, 1047887871, 'RU', 'Russian Federation'), +('62.117.128.0', '62.117.255.255', 1047887872, 1047920639, 'ES', 'Spain'), +('62.118.0.0', '62.118.79.255', 1047920640, 1047941119, 'RU', 'Russian Federation'), +('62.118.80.0', '62.118.80.255', 1047941120, 1047941375, 'GB', 'United Kingdom'), +('62.118.81.0', '62.118.255.255', 1047941376, 1047986175, 'RU', 'Russian Federation'), +('62.119.0.0', '62.119.43.255', 1047986176, 1047997439, 'SE', 'Sweden'), +('62.119.44.0', '62.119.44.63', 1047997440, 1047997503, 'NO', 'Norway'), +('62.119.44.64', '62.119.102.95', 1047997504, 1048012383, 'SE', 'Sweden'), +('62.119.102.96', '62.119.102.103', 1048012384, 1048012391, 'DE', 'Germany'), +('62.119.102.104', '62.119.255.255', 1048012392, 1048051711, 'SE', 'Sweden'), +('62.120.0.0', '62.120.255.255', 1048051712, 1048117247, 'SA', 'Saudi Arabia'), +('62.121.0.0', '62.121.31.255', 1048117248, 1048125439, 'GB', 'United Kingdom'), +('62.121.32.0', '62.121.63.255', 1048125440, 1048133631, 'FI', 'Finland'), +('62.121.64.0', '62.121.159.255', 1048133632, 1048158207, 'PL', 'Poland'), +('62.121.160.0', '62.121.191.255', 1048158208, 1048166399, 'DK', 'Denmark'), +('62.121.192.0', '62.121.255.255', 1048166400, 1048182783, 'CH', 'Switzerland'), +('62.122.0.0', '62.122.7.255', 1048182784, 1048184831, 'UA', 'Ukraine'), +('62.122.8.0', '62.122.15.255', 1048184832, 1048186879, 'FR', 'France'), +('62.122.16.0', '62.122.23.255', 1048186880, 1048188927, 'LV', 'Latvia'), +('62.122.24.0', '62.122.31.255', 1048188928, 1048190975, 'BE', 'Belgium'), +('62.122.32.0', '62.122.39.255', 1048190976, 1048193023, 'UA', 'Ukraine'), +('62.122.40.0', '62.122.47.255', 1048193024, 1048195071, 'RO', 'Romania'), +('62.122.48.0', '62.122.55.255', 1048195072, 1048197119, 'RU', 'Russian Federation'), +('62.122.56.0', '62.122.79.255', 1048197120, 1048203263, 'UA', 'Ukraine'), +('62.122.80.0', '62.122.87.255', 1048203264, 1048205311, 'DE', 'Germany'), +('62.122.88.0', '62.122.111.255', 1048205312, 1048211455, 'RU', 'Russian Federation'), +('62.122.112.0', '62.122.127.255', 1048211456, 1048215551, 'PL', 'Poland'), +('62.122.128.0', '62.122.151.255', 1048215552, 1048221695, 'RU', 'Russian Federation'), +('62.122.152.0', '62.122.159.255', 1048221696, 1048223743, 'UA', 'Ukraine'), +('62.122.160.0', '62.122.167.255', 1048223744, 1048225791, 'DK', 'Denmark'), +('62.122.168.0', '62.122.175.255', 1048225792, 1048227839, 'CZ', 'Czech Republic'), +('62.122.176.0', '62.122.199.255', 1048227840, 1048233983, 'RU', 'Russian Federation'), +('62.122.200.0', '62.122.207.255', 1048233984, 1048236031, 'UA', 'Ukraine'), +('62.122.208.0', '62.122.223.255', 1048236032, 1048240127, 'RU', 'Russian Federation'), +('62.122.224.0', '62.122.231.255', 1048240128, 1048242175, 'IL', 'Israel'), +('62.122.232.0', '62.122.239.255', 1048242176, 1048244223, 'PL', 'Poland'), +('62.122.240.0', '62.122.247.255', 1048244224, 1048246271, 'RU', 'Russian Federation'), +('62.122.248.0', '62.122.255.255', 1048246272, 1048248319, 'NO', 'Norway'), +('62.123.0.0', '62.123.255.255', 1048248320, 1048313855, 'IT', 'Italy'), +('62.124.0.0', '62.126.255.255', 1048313856, 1048510463, 'GB', 'United Kingdom'), +('62.127.0.0', '62.127.255.255', 1048510464, 1048575999, 'SE', 'Sweden'), +('62.128.0.0', '62.128.18.63', 1048576000, 1048580671, 'DE', 'Germany'), +('62.128.18.64', '62.128.18.127', 1048580672, 1048580735, 'GB', 'United Kingdom'), +('62.128.18.128', '62.128.31.255', 1048580736, 1048584191, 'DE', 'Germany'), +('62.128.32.0', '62.128.63.255', 1048584192, 1048592383, 'IL', 'Israel'), +('62.128.64.0', '62.128.95.255', 1048592384, 1048600575, 'IT', 'Italy'), +('62.128.96.0', '62.128.105.255', 1048600576, 1048603135, 'EE', 'Estonia'), +('62.128.106.0', '62.128.106.255', 1048603136, 1048603391, 'LV', 'Latvia'), +('62.128.107.0', '62.128.112.255', 1048603392, 1048604927, 'EE', 'Estonia'), +('62.128.113.0', '62.128.113.31', 1048604928, 1048604959, 'LT', 'Lithuania'), +('62.128.113.32', '62.128.113.63', 1048604960, 1048604991, 'EE', 'Estonia'), +('62.128.113.64', '62.128.113.127', 1048604992, 1048605055, 'LT', 'Lithuania'), +('62.128.113.128', '62.128.125.255', 1048605056, 1048608255, 'EE', 'Estonia'), +('62.128.126.0', '62.128.126.31', 1048608256, 1048608287, 'RU', 'Russian Federation'), +('62.128.126.32', '62.128.127.255', 1048608288, 1048608767, 'EE', 'Estonia'), +('62.128.128.0', '62.128.138.255', 1048608768, 1048611583, 'GB', 'United Kingdom'), +('62.128.139.0', '62.128.139.255', 1048611584, 1048611839, 'FR', 'France'), +('62.128.140.0', '62.128.153.255', 1048611840, 1048615423, 'GB', 'United Kingdom'), +('62.128.154.0', '62.128.154.255', 1048615424, 1048615679, 'US', 'United States'), +('62.128.155.0', '62.128.159.255', 1048615680, 1048616959, 'GB', 'United Kingdom'), +('62.128.160.0', '62.128.175.255', 1048616960, 1048621055, 'KE', 'Kenya'), +('62.128.176.0', '62.128.191.255', 1048621056, 1048625151, 'US', 'United States'), +('62.128.192.0', '62.128.223.255', 1048625152, 1048633343, 'GB', 'United Kingdom'), +('62.128.224.0', '62.128.255.255', 1048633344, 1048641535, 'NO', 'Norway'), +('62.129.0.0', '62.129.31.255', 1048641536, 1048649727, 'FR', 'France'), +('62.129.32.0', '62.129.63.255', 1048649728, 1048657919, 'CZ', 'Czech Republic'), +('62.129.64.0', '62.129.127.255', 1048657920, 1048674303, 'GB', 'United Kingdom'), +('62.129.128.0', '62.129.159.255', 1048674304, 1048682495, 'NL', 'Netherlands'), +('62.129.160.0', '62.129.191.255', 1048682496, 1048690687, 'FR', 'France'), +('62.129.192.0', '62.129.255.255', 1048690688, 1048707071, 'PL', 'Poland'), +('62.130.0.0', '62.130.255.255', 1048707072, 1048772607, 'GB', 'United Kingdom'), +('62.131.0.0', '62.131.255.255', 1048772608, 1048838143, 'NL', 'Netherlands'), +('62.132.0.0', '62.132.0.31', 1048838144, 1048838175, 'DE', 'Germany'), +('62.132.0.32', '62.132.0.63', 1048838176, 1048838207, 'PL', 'Poland'), +('62.132.0.64', '62.132.0.95', 1048838208, 1048838239, 'NL', 'Netherlands'), +('62.132.0.96', '62.132.6.255', 1048838240, 1048839935, 'DE', 'Germany'), +('62.132.7.0', '62.132.7.159', 1048839936, 1048840095, 'NL', 'Netherlands'), +('62.132.7.160', '62.132.7.167', 1048840096, 1048840103, 'DE', 'Germany'), +('62.132.7.168', '62.132.9.15', 1048840104, 1048840463, 'NL', 'Netherlands'), +('62.132.9.16', '62.132.9.23', 1048840464, 1048840471, 'DE', 'Germany'), +('62.132.9.24', '62.132.9.255', 1048840472, 1048840703, 'NL', 'Netherlands'), +('62.132.10.0', '62.132.19.255', 1048840704, 1048843263, 'DE', 'Germany'), +('62.132.20.0', '62.132.22.207', 1048843264, 1048843983, 'NL', 'Netherlands'), +('62.132.22.208', '62.132.22.215', 1048843984, 1048843991, 'DE', 'Germany'), +('62.132.22.216', '62.132.23.55', 1048843992, 1048844087, 'NL', 'Netherlands'), +('62.132.23.56', '62.132.23.63', 1048844088, 1048844095, 'DE', 'Germany'), +('62.132.23.64', '62.132.23.255', 1048844096, 1048844287, 'NL', 'Netherlands'), +('62.132.24.0', '62.132.24.31', 1048844288, 1048844319, 'DE', 'Germany'), +('62.132.24.32', '62.132.24.63', 1048844320, 1048844351, 'NL', 'Netherlands'), +('62.132.24.64', '62.132.28.255', 1048844352, 1048845567, 'DE', 'Germany'), +('62.132.29.0', '62.132.29.175', 1048845568, 1048845743, 'NL', 'Netherlands'), +('62.132.29.176', '62.132.29.183', 1048845744, 1048845751, 'DE', 'Germany'), +('62.132.29.184', '62.132.29.191', 1048845752, 1048845759, 'NL', 'Netherlands'), +('62.132.29.192', '62.132.29.199', 1048845760, 1048845767, 'DE', 'Germany'), +('62.132.29.200', '62.132.29.255', 1048845768, 1048845823, 'NL', 'Netherlands'), +('62.132.30.0', '62.132.30.7', 1048845824, 1048845831, 'DE', 'Germany'), +('62.132.30.8', '62.132.30.207', 1048845832, 1048846031, 'NL', 'Netherlands'), +('62.132.30.208', '62.132.30.215', 1048846032, 1048846039, 'DE', 'Germany'), +('62.132.30.216', '62.132.32.103', 1048846040, 1048846439, 'NL', 'Netherlands'), +('62.132.32.104', '62.132.32.111', 1048846440, 1048846447, 'DE', 'Germany'), +('62.132.32.112', '62.132.33.111', 1048846448, 1048846703, 'NL', 'Netherlands'), +('62.132.33.112', '62.132.33.119', 1048846704, 1048846711, 'DE', 'Germany'), +('62.132.33.120', '62.132.33.255', 1048846712, 1048846847, 'NL', 'Netherlands'), +('62.132.34.0', '62.132.35.255', 1048846848, 1048847359, 'DE', 'Germany'), +('62.132.36.0', '62.132.36.47', 1048847360, 1048847407, 'NL', 'Netherlands'), +('62.132.36.48', '62.132.36.55', 1048847408, 1048847415, 'DE', 'Germany'), +('62.132.36.56', '62.132.37.159', 1048847416, 1048847775, 'NL', 'Netherlands'), +('62.132.37.160', '62.132.37.167', 1048847776, 1048847783, 'DE', 'Germany'), +('62.132.37.168', '62.132.37.255', 1048847784, 1048847871, 'NL', 'Netherlands'), +('62.132.38.0', '62.132.38.7', 1048847872, 1048847879, 'DE', 'Germany'), +('62.132.38.8', '62.132.38.47', 1048847880, 1048847919, 'NL', 'Netherlands'), +('62.132.38.48', '62.132.38.55', 1048847920, 1048847927, 'DE', 'Germany'), +('62.132.38.56', '62.132.38.199', 1048847928, 1048848071, 'NL', 'Netherlands'), +('62.132.38.200', '62.132.38.207', 1048848072, 1048848079, 'DE', 'Germany'), +('62.132.38.208', '62.132.39.135', 1048848080, 1048848263, 'NL', 'Netherlands'), +('62.132.39.136', '62.132.39.143', 1048848264, 1048848271, 'DE', 'Germany'), +('62.132.39.144', '62.132.39.183', 1048848272, 1048848311, 'NL', 'Netherlands'), +('62.132.39.184', '62.132.39.191', 1048848312, 1048848319, 'DE', 'Germany'), +('62.132.39.192', '62.132.41.255', 1048848320, 1048848895, 'NL', 'Netherlands'), +('62.132.42.0', '62.132.43.255', 1048848896, 1048849407, 'DE', 'Germany'), +('62.132.44.0', '62.132.44.231', 1048849408, 1048849639, 'NL', 'Netherlands'), +('62.132.44.232', '62.132.44.239', 1048849640, 1048849647, 'DE', 'Germany'), +('62.132.44.240', '62.132.45.15', 1048849648, 1048849679, 'NL', 'Netherlands'), +('62.132.45.16', '62.132.45.23', 1048849680, 1048849687, 'DE', 'Germany'), +('62.132.45.24', '62.132.46.71', 1048849688, 1048849991, 'NL', 'Netherlands'), +('62.132.46.72', '62.132.46.79', 1048849992, 1048849999, 'DE', 'Germany'), +('62.132.46.80', '62.132.47.135', 1048850000, 1048850311, 'NL', 'Netherlands'), +('62.132.47.136', '62.132.47.143', 1048850312, 1048850319, 'DE', 'Germany'), +('62.132.47.144', '62.132.47.183', 1048850320, 1048850359, 'NL', 'Netherlands'), +('62.132.47.184', '62.132.47.191', 1048850360, 1048850367, 'DE', 'Germany'), +('62.132.47.192', '62.132.48.191', 1048850368, 1048850623, 'NL', 'Netherlands'), +('62.132.48.192', '62.132.48.199', 1048850624, 1048850631, 'DE', 'Germany'), +('62.132.48.200', '62.132.49.167', 1048850632, 1048850855, 'NL', 'Netherlands'), +('62.132.49.168', '62.132.49.175', 1048850856, 1048850863, 'DE', 'Germany'), +('62.132.49.176', '62.132.51.23', 1048850864, 1048851223, 'NL', 'Netherlands'), +('62.132.51.24', '62.132.51.31', 1048851224, 1048851231, 'DE', 'Germany'), +('62.132.51.32', '62.132.51.103', 1048851232, 1048851303, 'NL', 'Netherlands'), +('62.132.51.104', '62.132.51.111', 1048851304, 1048851311, 'DE', 'Germany'), +('62.132.51.112', '62.132.51.199', 1048851312, 1048851399, 'NL', 'Netherlands'), +('62.132.51.200', '62.132.51.207', 1048851400, 1048851407, 'DE', 'Germany'), +('62.132.51.208', '62.132.52.39', 1048851408, 1048851495, 'NL', 'Netherlands'), +('62.132.52.40', '62.132.52.47', 1048851496, 1048851503, 'DE', 'Germany'), +('62.132.52.48', '62.132.53.7', 1048851504, 1048851719, 'NL', 'Netherlands'), +('62.132.53.8', '62.132.53.15', 1048851720, 1048851727, 'DE', 'Germany'), +('62.132.53.16', '62.132.53.31', 1048851728, 1048851743, 'NL', 'Netherlands'), +('62.132.53.32', '62.132.53.39', 1048851744, 1048851751, 'DE', 'Germany'), +('62.132.53.40', '62.132.55.215', 1048851752, 1048852439, 'NL', 'Netherlands'), +('62.132.55.216', '62.132.55.223', 1048852440, 1048852447, 'DE', 'Germany'), +('62.132.55.224', '62.132.57.255', 1048852448, 1048852991, 'NL', 'Netherlands'), +('62.132.58.0', '62.132.58.7', 1048852992, 1048852999, 'DE', 'Germany'), +('62.132.58.8', '62.132.59.95', 1048853000, 1048853343, 'NL', 'Netherlands'), +('62.132.59.96', '62.132.59.103', 1048853344, 1048853351, 'DE', 'Germany'), +('62.132.59.104', '62.132.59.119', 1048853352, 1048853367, 'NL', 'Netherlands'), +('62.132.59.120', '62.132.59.127', 1048853368, 1048853375, 'DE', 'Germany'), +('62.132.59.128', '62.132.59.255', 1048853376, 1048853503, 'NL', 'Netherlands'), +('62.132.60.0', '62.132.60.7', 1048853504, 1048853511, 'DE', 'Germany'), +('62.132.60.8', '62.132.60.23', 1048853512, 1048853527, 'NL', 'Netherlands'), +('62.132.60.24', '62.132.60.31', 1048853528, 1048853535, 'DE', 'Germany'), +('62.132.60.32', '62.132.60.175', 1048853536, 1048853679, 'NL', 'Netherlands'), +('62.132.60.176', '62.132.60.183', 1048853680, 1048853687, 'DE', 'Germany'), +('62.132.60.184', '62.132.61.23', 1048853688, 1048853783, 'NL', 'Netherlands'), +('62.132.61.24', '62.132.61.31', 1048853784, 1048853791, 'DE', 'Germany'), +('62.132.61.32', '62.132.61.247', 1048853792, 1048854007, 'NL', 'Netherlands'), +('62.132.61.248', '62.132.61.255', 1048854008, 1048854015, 'DE', 'Germany'), +('62.132.62.0', '62.132.62.23', 1048854016, 1048854039, 'NL', 'Netherlands'), +('62.132.62.24', '62.132.62.31', 1048854040, 1048854047, 'DE', 'Germany'), +('62.132.62.32', '62.132.62.151', 1048854048, 1048854167, 'NL', 'Netherlands'), +('62.132.62.152', '62.132.62.159', 1048854168, 1048854175, 'DE', 'Germany'), +('62.132.62.160', '62.132.63.47', 1048854176, 1048854319, 'NL', 'Netherlands'), +('62.132.63.48', '62.132.63.71', 1048854320, 1048854343, 'DE', 'Germany'), +('62.132.63.72', '62.132.63.255', 1048854344, 1048854527, 'NL', 'Netherlands'), +('62.132.64.0', '62.132.65.255', 1048854528, 1048855039, 'DE', 'Germany'), +('62.132.66.0', '62.132.66.119', 1048855040, 1048855159, 'NL', 'Netherlands'), +('62.132.66.120', '62.132.66.127', 1048855160, 1048855167, 'DE', 'Germany'), +('62.132.66.128', '62.132.67.23', 1048855168, 1048855319, 'NL', 'Netherlands'), +('62.132.67.24', '62.132.67.31', 1048855320, 1048855327, 'DE', 'Germany'), +('62.132.67.32', '62.132.67.55', 1048855328, 1048855351, 'NL', 'Netherlands'), +('62.132.67.56', '62.132.67.63', 1048855352, 1048855359, 'DE', 'Germany'), +('62.132.67.64', '62.132.67.71', 1048855360, 1048855367, 'NL', 'Netherlands'), +('62.132.67.72', '62.132.67.87', 1048855368, 1048855383, 'DE', 'Germany'), +('62.132.67.88', '62.132.67.207', 1048855384, 1048855503, 'NL', 'Netherlands'), +('62.132.67.208', '62.132.67.215', 1048855504, 1048855511, 'DE', 'Germany'), +('62.132.67.216', '62.132.68.167', 1048855512, 1048855719, 'NL', 'Netherlands'), +('62.132.68.168', '62.132.68.175', 1048855720, 1048855727, 'DE', 'Germany'), +('62.132.68.176', '62.132.68.207', 1048855728, 1048855759, 'NL', 'Netherlands'), +('62.132.68.208', '62.132.68.215', 1048855760, 1048855767, 'DE', 'Germany'), +('62.132.68.216', '62.132.70.31', 1048855768, 1048856095, 'NL', 'Netherlands'), +('62.132.70.32', '62.132.70.39', 1048856096, 1048856103, 'DE', 'Germany'), +('62.132.70.40', '62.132.71.55', 1048856104, 1048856375, 'NL', 'Netherlands'), +('62.132.71.56', '62.132.71.63', 1048856376, 1048856383, 'DE', 'Germany'), +('62.132.71.64', '62.132.71.95', 1048856384, 1048856415, 'NL', 'Netherlands'), +('62.132.71.96', '62.132.71.111', 1048856416, 1048856431, 'DE', 'Germany'), +('62.132.71.112', '62.132.71.135', 1048856432, 1048856455, 'NL', 'Netherlands'), +('62.132.71.136', '62.132.71.143', 1048856456, 1048856463, 'DE', 'Germany'), +('62.132.71.144', '62.132.72.143', 1048856464, 1048856719, 'NL', 'Netherlands'), +('62.132.72.144', '62.132.72.151', 1048856720, 1048856727, 'DE', 'Germany'), +('62.132.72.152', '62.132.72.239', 1048856728, 1048856815, 'NL', 'Netherlands'), +('62.132.72.240', '62.132.72.247', 1048856816, 1048856823, 'DE', 'Germany'), +('62.132.72.248', '62.132.73.191', 1048856824, 1048857023, 'NL', 'Netherlands'), +('62.132.73.192', '62.132.73.199', 1048857024, 1048857031, 'DE', 'Germany'), +('62.132.73.200', '62.132.74.111', 1048857032, 1048857199, 'NL', 'Netherlands'), +('62.132.74.112', '62.132.74.119', 1048857200, 1048857207, 'DE', 'Germany'), +('62.132.74.120', '62.132.76.199', 1048857208, 1048857799, 'NL', 'Netherlands'), +('62.132.76.200', '62.132.76.215', 1048857800, 1048857815, 'DE', 'Germany'), +('62.132.76.216', '62.132.77.47', 1048857816, 1048857903, 'NL', 'Netherlands'), +('62.132.77.48', '62.132.77.55', 1048857904, 1048857911, 'DE', 'Germany'), +('62.132.77.56', '62.132.77.255', 1048857912, 1048858111, 'NL', 'Netherlands'), +('62.132.78.0', '62.132.79.255', 1048858112, 1048858623, 'DE', 'Germany'), +('62.132.80.0', '62.132.80.135', 1048858624, 1048858759, 'NL', 'Netherlands'), +('62.132.80.136', '62.132.80.143', 1048858760, 1048858767, 'DE', 'Germany'), +('62.132.80.144', '62.132.80.183', 1048858768, 1048858807, 'NL', 'Netherlands'), +('62.132.80.184', '62.132.80.191', 1048858808, 1048858815, 'DE', 'Germany'), +('62.132.80.192', '62.132.89.87', 1048858816, 1048861015, 'NL', 'Netherlands'), +('62.132.89.88', '62.132.89.95', 1048861016, 1048861023, 'DE', 'Germany'), +('62.132.89.96', '62.132.89.191', 1048861024, 1048861119, 'NL', 'Netherlands'), +('62.132.89.192', '62.132.89.199', 1048861120, 1048861127, 'DE', 'Germany'), +('62.132.89.200', '62.132.90.207', 1048861128, 1048861391, 'NL', 'Netherlands'), +('62.132.90.208', '62.132.90.215', 1048861392, 1048861399, 'DE', 'Germany'), +('62.132.90.216', '62.132.90.231', 1048861400, 1048861415, 'NL', 'Netherlands'), +('62.132.90.232', '62.132.90.239', 1048861416, 1048861423, 'DE', 'Germany'), +('62.132.90.240', '62.132.91.47', 1048861424, 1048861487, 'NL', 'Netherlands'), +('62.132.91.48', '62.132.91.55', 1048861488, 1048861495, 'DE', 'Germany'), +('62.132.91.56', '62.132.91.95', 1048861496, 1048861535, 'NL', 'Netherlands'), +('62.132.91.96', '62.132.91.103', 1048861536, 1048861543, 'DE', 'Germany'), +('62.132.91.104', '62.132.92.39', 1048861544, 1048861735, 'NL', 'Netherlands'), +('62.132.92.40', '62.132.92.47', 1048861736, 1048861743, 'DE', 'Germany'), +('62.132.92.48', '62.132.93.31', 1048861744, 1048861983, 'NL', 'Netherlands'), +('62.132.93.32', '62.132.93.39', 1048861984, 1048861991, 'DE', 'Germany'), +('62.132.93.40', '62.132.93.87', 1048861992, 1048862039, 'NL', 'Netherlands'), +('62.132.93.88', '62.132.93.95', 1048862040, 1048862047, 'DE', 'Germany'), +('62.132.93.96', '62.132.93.183', 1048862048, 1048862135, 'NL', 'Netherlands'), +('62.132.93.184', '62.132.93.191', 1048862136, 1048862143, 'DE', 'Germany'), +('62.132.93.192', '62.132.94.7', 1048862144, 1048862215, 'NL', 'Netherlands'), +('62.132.94.8', '62.132.94.15', 1048862216, 1048862223, 'DE', 'Germany'), +('62.132.94.16', '62.132.94.103', 1048862224, 1048862311, 'NL', 'Netherlands'), +('62.132.94.104', '62.132.94.111', 1048862312, 1048862319, 'DE', 'Germany'), +('62.132.94.112', '62.132.94.215', 1048862320, 1048862423, 'NL', 'Netherlands'), +('62.132.94.216', '62.132.94.223', 1048862424, 1048862431, 'DE', 'Germany'), +('62.132.94.224', '62.132.95.31', 1048862432, 1048862495, 'NL', 'Netherlands'), +('62.132.95.32', '62.132.95.47', 1048862496, 1048862511, 'DE', 'Germany'), +('62.132.95.48', '62.132.95.207', 1048862512, 1048862671, 'NL', 'Netherlands'), +('62.132.95.208', '62.132.95.215', 1048862672, 1048862679, 'DE', 'Germany'), +('62.132.95.216', '62.132.95.247', 1048862680, 1048862711, 'NL', 'Netherlands'), +('62.132.95.248', '62.132.95.255', 1048862712, 1048862719, 'DE', 'Germany'), +('62.132.96.0', '62.132.96.7', 1048862720, 1048862727, 'NL', 'Netherlands'), +('62.132.96.8', '62.132.96.15', 1048862728, 1048862735, 'DE', 'Germany'), +('62.132.96.16', '62.132.96.55', 1048862736, 1048862775, 'NL', 'Netherlands'), +('62.132.96.56', '62.132.96.63', 1048862776, 1048862783, 'DE', 'Germany'), +('62.132.96.64', '62.132.97.143', 1048862784, 1048863119, 'NL', 'Netherlands'), +('62.132.97.144', '62.132.97.151', 1048863120, 1048863127, 'DE', 'Germany'), +('62.132.97.152', '62.132.97.215', 1048863128, 1048863191, 'NL', 'Netherlands'), +('62.132.97.216', '62.132.97.223', 1048863192, 1048863199, 'DE', 'Germany'), +('62.132.97.224', '62.132.99.7', 1048863200, 1048863495, 'NL', 'Netherlands'), +('62.132.99.8', '62.132.99.15', 1048863496, 1048863503, 'DE', 'Germany'), +('62.132.99.16', '62.132.99.55', 1048863504, 1048863543, 'NL', 'Netherlands'), +('62.132.99.56', '62.132.99.63', 1048863544, 1048863551, 'DE', 'Germany'), +('62.132.99.64', '62.132.99.95', 1048863552, 1048863583, 'NL', 'Netherlands'), +('62.132.99.96', '62.132.99.103', 1048863584, 1048863591, 'DE', 'Germany'), +('62.132.99.104', '62.132.99.143', 1048863592, 1048863631, 'NL', 'Netherlands'), +('62.132.99.144', '62.132.99.151', 1048863632, 1048863639, 'DE', 'Germany'), +('62.132.99.152', '62.132.99.223', 1048863640, 1048863711, 'NL', 'Netherlands'), +('62.132.99.224', '62.132.99.231', 1048863712, 1048863719, 'DE', 'Germany'), +('62.132.99.232', '62.132.99.255', 1048863720, 1048863743, 'NL', 'Netherlands'), +('62.132.100.0', '62.132.100.7', 1048863744, 1048863751, 'DE', 'Germany'), +('62.132.100.8', '62.132.101.215', 1048863752, 1048864215, 'NL', 'Netherlands'), +('62.132.101.216', '62.132.101.223', 1048864216, 1048864223, 'DE', 'Germany'), +('62.132.101.224', '62.132.102.183', 1048864224, 1048864439, 'NL', 'Netherlands'), +('62.132.102.184', '62.132.102.191', 1048864440, 1048864447, 'DE', 'Germany'), +('62.132.102.192', '62.132.104.103', 1048864448, 1048864871, 'NL', 'Netherlands'), +('62.132.104.104', '62.132.104.111', 1048864872, 1048864879, 'DE', 'Germany'), +('62.132.104.112', '62.132.104.239', 1048864880, 1048865007, 'NL', 'Netherlands'), +('62.132.104.240', '62.132.104.247', 1048865008, 1048865015, 'DE', 'Germany'), +('62.132.104.248', '62.132.105.63', 1048865016, 1048865087, 'NL', 'Netherlands'), +('62.132.105.64', '62.132.105.71', 1048865088, 1048865095, 'DE', 'Germany'), +('62.132.105.72', '62.132.105.87', 1048865096, 1048865111, 'NL', 'Netherlands'), +('62.132.105.88', '62.132.105.95', 1048865112, 1048865119, 'DE', 'Germany'), +('62.132.105.96', '62.132.105.255', 1048865120, 1048865279, 'NL', 'Netherlands'), +('62.132.106.0', '62.132.107.255', 1048865280, 1048865791, 'DE', 'Germany'), +('62.132.108.0', '62.132.110.231', 1048865792, 1048866535, 'NL', 'Netherlands'), +('62.132.110.232', '62.132.110.239', 1048866536, 1048866543, 'DE', 'Germany'), +('62.132.110.240', '62.132.112.223', 1048866544, 1048867039, 'NL', 'Netherlands'), +('62.132.112.224', '62.132.112.231', 1048867040, 1048867047, 'DE', 'Germany'), +('62.132.112.232', '62.132.113.255', 1048867048, 1048867327, 'NL', 'Netherlands'), +('62.132.114.0', '62.132.117.255', 1048867328, 1048868351, 'DE', 'Germany'), +('62.132.118.0', '62.132.119.95', 1048868352, 1048868703, 'NL', 'Netherlands'), +('62.132.119.96', '62.132.119.103', 1048868704, 1048868711, 'DE', 'Germany'), +('62.132.119.104', '62.132.119.167', 1048868712, 1048868775, 'NL', 'Netherlands'), +('62.132.119.168', '62.132.119.175', 1048868776, 1048868783, 'DE', 'Germany'), +('62.132.119.176', '62.132.120.39', 1048868784, 1048868903, 'NL', 'Netherlands'), +('62.132.120.40', '62.132.120.47', 1048868904, 1048868911, 'DE', 'Germany'), +('62.132.120.48', '62.132.120.87', 1048868912, 1048868951, 'NL', 'Netherlands'), +('62.132.120.88', '62.132.120.95', 1048868952, 1048868959, 'DE', 'Germany'), +('62.132.120.96', '62.132.120.167', 1048868960, 1048869031, 'NL', 'Netherlands'), +('62.132.120.168', '62.132.120.175', 1048869032, 1048869039, 'DE', 'Germany'), +('62.132.120.176', '62.132.120.215', 1048869040, 1048869079, 'NL', 'Netherlands'), +('62.132.120.216', '62.132.120.223', 1048869080, 1048869087, 'DE', 'Germany'), +('62.132.120.224', '62.132.120.231', 1048869088, 1048869095, 'NL', 'Netherlands'), +('62.132.120.232', '62.132.120.239', 1048869096, 1048869103, 'DE', 'Germany'), +('62.132.120.240', '62.132.121.119', 1048869104, 1048869239, 'NL', 'Netherlands'), +('62.132.121.120', '62.132.121.127', 1048869240, 1048869247, 'DE', 'Germany'), +('62.132.121.128', '62.132.121.167', 1048869248, 1048869287, 'NL', 'Netherlands'), +('62.132.121.168', '62.132.121.175', 1048869288, 1048869295, 'DE', 'Germany'), +('62.132.121.176', '62.132.122.119', 1048869296, 1048869495, 'NL', 'Netherlands'), +('62.132.122.120', '62.132.122.127', 1048869496, 1048869503, 'DE', 'Germany'), +('62.132.122.128', '62.132.122.135', 1048869504, 1048869511, 'NL', 'Netherlands'), +('62.132.122.136', '62.132.122.143', 1048869512, 1048869519, 'DE', 'Germany'), +('62.132.122.144', '62.132.122.207', 1048869520, 1048869583, 'NL', 'Netherlands'), +('62.132.122.208', '62.132.122.215', 1048869584, 1048869591, 'DE', 'Germany'), +('62.132.122.216', '62.132.123.95', 1048869592, 1048869727, 'NL', 'Netherlands'), +('62.132.123.96', '62.132.123.103', 1048869728, 1048869735, 'DE', 'Germany'), +('62.132.123.104', '62.132.124.231', 1048869736, 1048870119, 'NL', 'Netherlands'), +('62.132.124.232', '62.132.124.239', 1048870120, 1048870127, 'DE', 'Germany'), +('62.132.124.240', '62.132.125.255', 1048870128, 1048870399, 'NL', 'Netherlands'), +('62.132.126.0', '62.132.127.255', 1048870400, 1048870911, 'DE', 'Germany'), +('62.132.128.0', '62.132.130.223', 1048870912, 1048871647, 'NL', 'Netherlands'), +('62.132.130.224', '62.132.130.231', 1048871648, 1048871655, 'DE', 'Germany'), +('62.132.130.232', '62.132.131.47', 1048871656, 1048871727, 'NL', 'Netherlands'), +('62.132.131.48', '62.132.131.55', 1048871728, 1048871735, 'DE', 'Germany'), +('62.132.131.56', '62.132.131.255', 1048871736, 1048871935, 'NL', 'Netherlands'), +('62.132.132.0', '62.132.134.255', 1048871936, 1048872703, 'DE', 'Germany'), +('62.132.135.0', '62.132.135.63', 1048872704, 1048872767, 'NL', 'Netherlands'), +('62.132.135.64', '62.132.135.71', 1048872768, 1048872775, 'DE', 'Germany'), +('62.132.135.72', '62.132.135.119', 1048872776, 1048872823, 'NL', 'Netherlands'), +('62.132.135.120', '62.132.135.127', 1048872824, 1048872831, 'DE', 'Germany'), +('62.132.135.128', '62.132.136.119', 1048872832, 1048873079, 'NL', 'Netherlands'), +('62.132.136.120', '62.132.136.127', 1048873080, 1048873087, 'DE', 'Germany'), +('62.132.136.128', '62.132.136.167', 1048873088, 1048873127, 'NL', 'Netherlands'), +('62.132.136.168', '62.132.136.175', 1048873128, 1048873135, 'DE', 'Germany'), +('62.132.136.176', '62.132.137.23', 1048873136, 1048873239, 'NL', 'Netherlands'), +('62.132.137.24', '62.132.137.31', 1048873240, 1048873247, 'DE', 'Germany'), +('62.132.137.32', '62.132.137.47', 1048873248, 1048873263, 'NL', 'Netherlands'), +('62.132.137.48', '62.132.137.55', 1048873264, 1048873271, 'DE', 'Germany'), +('62.132.137.56', '62.132.137.207', 1048873272, 1048873423, 'NL', 'Netherlands'), +('62.132.137.208', '62.132.137.215', 1048873424, 1048873431, 'DE', 'Germany'), +('62.132.137.216', '62.132.137.231', 1048873432, 1048873447, 'NL', 'Netherlands'), +('62.132.137.232', '62.132.137.239', 1048873448, 1048873455, 'DE', 'Germany'), +('62.132.137.240', '62.132.138.23', 1048873456, 1048873495, 'NL', 'Netherlands'), +('62.132.138.24', '62.132.138.31', 1048873496, 1048873503, 'DE', 'Germany'), +('62.132.138.32', '62.132.138.255', 1048873504, 1048873727, 'NL', 'Netherlands'), +('62.132.139.0', '62.132.139.7', 1048873728, 1048873735, 'DE', 'Germany'), +('62.132.139.8', '62.132.139.159', 1048873736, 1048873887, 'NL', 'Netherlands'), +('62.132.139.160', '62.132.139.167', 1048873888, 1048873895, 'DE', 'Germany'), +('62.132.139.168', '62.132.139.191', 1048873896, 1048873919, 'NL', 'Netherlands'), +('62.132.139.192', '62.132.139.199', 1048873920, 1048873927, 'DE', 'Germany'), +('62.132.139.200', '62.132.140.39', 1048873928, 1048874023, 'NL', 'Netherlands'), +('62.132.140.40', '62.132.140.47', 1048874024, 1048874031, 'DE', 'Germany'), +('62.132.140.48', '62.132.140.223', 1048874032, 1048874207, 'NL', 'Netherlands'), +('62.132.140.224', '62.132.140.231', 1048874208, 1048874215, 'DE', 'Germany'), +('62.132.140.232', '62.132.140.247', 1048874216, 1048874231, 'NL', 'Netherlands'), +('62.132.140.248', '62.132.140.255', 1048874232, 1048874239, 'DE', 'Germany'), +('62.132.141.0', '62.132.141.143', 1048874240, 1048874383, 'NL', 'Netherlands'), +('62.132.141.144', '62.132.141.151', 1048874384, 1048874391, 'DE', 'Germany'), +('62.132.141.152', '62.132.141.255', 1048874392, 1048874495, 'NL', 'Netherlands'), +('62.132.142.0', '62.132.142.7', 1048874496, 1048874503, 'DE', 'Germany'), +('62.132.142.8', '62.132.142.111', 1048874504, 1048874607, 'NL', 'Netherlands'), +('62.132.142.112', '62.132.142.119', 1048874608, 1048874615, 'DE', 'Germany'), +('62.132.142.120', '62.132.142.127', 1048874616, 1048874623, 'NL', 'Netherlands'), +('62.132.142.128', '62.132.142.135', 1048874624, 1048874631, 'DE', 'Germany'), +('62.132.142.136', '62.132.142.183', 1048874632, 1048874679, 'NL', 'Netherlands'), +('62.132.142.184', '62.132.142.191', 1048874680, 1048874687, 'DE', 'Germany'), +('62.132.142.192', '62.132.142.215', 1048874688, 1048874711, 'NL', 'Netherlands'), +('62.132.142.216', '62.132.142.223', 1048874712, 1048874719, 'DE', 'Germany'), +('62.132.142.224', '62.132.143.167', 1048874720, 1048874919, 'NL', 'Netherlands'), +('62.132.143.168', '62.132.143.175', 1048874920, 1048874927, 'DE', 'Germany'), +('62.132.143.176', '62.132.143.223', 1048874928, 1048874975, 'NL', 'Netherlands'), +('62.132.143.224', '62.132.143.231', 1048874976, 1048874983, 'DE', 'Germany'), +('62.132.143.232', '62.132.143.239', 1048874984, 1048874991, 'NL', 'Netherlands'), +('62.132.143.240', '62.132.143.247', 1048874992, 1048874999, 'DE', 'Germany'), +('62.132.143.248', '62.132.143.255', 1048875000, 1048875007, 'NL', 'Netherlands'), +('62.132.144.0', '62.132.144.7', 1048875008, 1048875015, 'DE', 'Germany'), +('62.132.144.8', '62.132.144.87', 1048875016, 1048875095, 'NL', 'Netherlands'), +('62.132.144.88', '62.132.144.95', 1048875096, 1048875103, 'DE', 'Germany'), +('62.132.144.96', '62.132.144.111', 1048875104, 1048875119, 'NL', 'Netherlands'), +('62.132.144.112', '62.132.144.119', 1048875120, 1048875127, 'DE', 'Germany'), +('62.132.144.120', '62.132.144.151', 1048875128, 1048875159, 'NL', 'Netherlands'), +('62.132.144.152', '62.132.144.159', 1048875160, 1048875167, 'DE', 'Germany'), +('62.132.144.160', '62.132.144.231', 1048875168, 1048875239, 'NL', 'Netherlands'), +('62.132.144.232', '62.132.144.239', 1048875240, 1048875247, 'DE', 'Germany'), +('62.132.144.240', '62.132.145.47', 1048875248, 1048875311, 'NL', 'Netherlands'), +('62.132.145.48', '62.132.145.55', 1048875312, 1048875319, 'DE', 'Germany'), +('62.132.145.56', '62.132.145.95', 1048875320, 1048875359, 'NL', 'Netherlands'), +('62.132.145.96', '62.132.145.103', 1048875360, 1048875367, 'DE', 'Germany'), +('62.132.145.104', '62.132.145.111', 1048875368, 1048875375, 'NL', 'Netherlands'), +('62.132.145.112', '62.132.145.119', 1048875376, 1048875383, 'DE', 'Germany'), +('62.132.145.120', '62.132.145.215', 1048875384, 1048875479, 'NL', 'Netherlands'), +('62.132.145.216', '62.132.145.231', 1048875480, 1048875495, 'DE', 'Germany'), +('62.132.145.232', '62.132.146.55', 1048875496, 1048875575, 'NL', 'Netherlands'), +('62.132.146.56', '62.132.146.71', 1048875576, 1048875591, 'DE', 'Germany'), +('62.132.146.72', '62.132.146.199', 1048875592, 1048875719, 'NL', 'Netherlands'), +('62.132.146.200', '62.132.146.207', 1048875720, 1048875727, 'DE', 'Germany'), +('62.132.146.208', '62.132.147.23', 1048875728, 1048875799, 'NL', 'Netherlands'), +('62.132.147.24', '62.132.147.31', 1048875800, 1048875807, 'DE', 'Germany'), +('62.132.147.32', '62.132.147.103', 1048875808, 1048875879, 'NL', 'Netherlands'), +('62.132.147.104', '62.132.147.111', 1048875880, 1048875887, 'DE', 'Germany'), +('62.132.147.112', '62.132.147.207', 1048875888, 1048875983, 'NL', 'Netherlands'), +('62.132.147.208', '62.132.147.215', 1048875984, 1048875991, 'DE', 'Germany'), +('62.132.147.216', '62.132.147.231', 1048875992, 1048876007, 'NL', 'Netherlands'), +('62.132.147.232', '62.132.147.247', 1048876008, 1048876023, 'DE', 'Germany'), +('62.132.147.248', '62.132.149.39', 1048876024, 1048876327, 'NL', 'Netherlands'), +('62.132.149.40', '62.132.149.47', 1048876328, 1048876335, 'DE', 'Germany'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('62.132.149.48', '62.132.149.231', 1048876336, 1048876519, 'NL', 'Netherlands'), +('62.132.149.232', '62.132.149.239', 1048876520, 1048876527, 'DE', 'Germany'), +('62.132.149.240', '62.132.150.55', 1048876528, 1048876599, 'NL', 'Netherlands'), +('62.132.150.56', '62.132.150.63', 1048876600, 1048876607, 'DE', 'Germany'), +('62.132.150.64', '62.132.150.191', 1048876608, 1048876735, 'NL', 'Netherlands'), +('62.132.150.192', '62.132.150.199', 1048876736, 1048876743, 'DE', 'Germany'), +('62.132.150.200', '62.132.151.103', 1048876744, 1048876903, 'NL', 'Netherlands'), +('62.132.151.104', '62.132.151.111', 1048876904, 1048876911, 'DE', 'Germany'), +('62.132.151.112', '62.132.151.167', 1048876912, 1048876967, 'NL', 'Netherlands'), +('62.132.151.168', '62.132.151.175', 1048876968, 1048876975, 'DE', 'Germany'), +('62.132.151.176', '62.132.151.215', 1048876976, 1048877015, 'NL', 'Netherlands'), +('62.132.151.216', '62.132.151.223', 1048877016, 1048877023, 'DE', 'Germany'), +('62.132.151.224', '62.132.152.255', 1048877024, 1048877311, 'NL', 'Netherlands'), +('62.132.153.0', '62.132.155.255', 1048877312, 1048878079, 'DE', 'Germany'), +('62.132.156.0', '62.132.157.151', 1048878080, 1048878487, 'NL', 'Netherlands'), +('62.132.157.152', '62.132.157.159', 1048878488, 1048878495, 'DE', 'Germany'), +('62.132.157.160', '62.132.159.135', 1048878496, 1048878983, 'NL', 'Netherlands'), +('62.132.159.136', '62.132.159.143', 1048878984, 1048878991, 'DE', 'Germany'), +('62.132.159.144', '62.132.160.159', 1048878992, 1048879263, 'NL', 'Netherlands'), +('62.132.160.160', '62.132.160.167', 1048879264, 1048879271, 'DE', 'Germany'), +('62.132.160.168', '62.132.160.215', 1048879272, 1048879319, 'NL', 'Netherlands'), +('62.132.160.216', '62.132.160.223', 1048879320, 1048879327, 'DE', 'Germany'), +('62.132.160.224', '62.132.161.15', 1048879328, 1048879375, 'NL', 'Netherlands'), +('62.132.161.16', '62.132.161.23', 1048879376, 1048879383, 'DE', 'Germany'), +('62.132.161.24', '62.132.161.63', 1048879384, 1048879423, 'NL', 'Netherlands'), +('62.132.161.64', '62.132.161.71', 1048879424, 1048879431, 'DE', 'Germany'), +('62.132.161.72', '62.132.161.87', 1048879432, 1048879447, 'NL', 'Netherlands'), +('62.132.161.88', '62.132.161.95', 1048879448, 1048879455, 'DE', 'Germany'), +('62.132.161.96', '62.132.161.111', 1048879456, 1048879471, 'NL', 'Netherlands'), +('62.132.161.112', '62.132.161.119', 1048879472, 1048879479, 'DE', 'Germany'), +('62.132.161.120', '62.132.161.167', 1048879480, 1048879527, 'NL', 'Netherlands'), +('62.132.161.168', '62.132.161.175', 1048879528, 1048879535, 'DE', 'Germany'), +('62.132.161.176', '62.132.161.199', 1048879536, 1048879559, 'NL', 'Netherlands'), +('62.132.161.200', '62.132.161.207', 1048879560, 1048879567, 'DE', 'Germany'), +('62.132.161.208', '62.132.162.47', 1048879568, 1048879663, 'NL', 'Netherlands'), +('62.132.162.48', '62.132.162.55', 1048879664, 1048879671, 'DE', 'Germany'), +('62.132.162.56', '62.132.163.31', 1048879672, 1048879903, 'NL', 'Netherlands'), +('62.132.163.32', '62.132.163.39', 1048879904, 1048879911, 'DE', 'Germany'), +('62.132.163.40', '62.132.163.199', 1048879912, 1048880071, 'NL', 'Netherlands'), +('62.132.163.200', '62.132.163.207', 1048880072, 1048880079, 'DE', 'Germany'), +('62.132.163.208', '62.132.165.23', 1048880080, 1048880407, 'NL', 'Netherlands'), +('62.132.165.24', '62.132.165.31', 1048880408, 1048880415, 'DE', 'Germany'), +('62.132.165.32', '62.132.165.255', 1048880416, 1048880639, 'NL', 'Netherlands'), +('62.132.166.0', '62.132.167.255', 1048880640, 1048881151, 'DE', 'Germany'), +('62.132.168.0', '62.132.168.7', 1048881152, 1048881159, 'NL', 'Netherlands'), +('62.132.168.8', '62.132.168.15', 1048881160, 1048881167, 'DE', 'Germany'), +('62.132.168.16', '62.132.169.95', 1048881168, 1048881503, 'NL', 'Netherlands'), +('62.132.169.96', '62.132.169.103', 1048881504, 1048881511, 'DE', 'Germany'), +('62.132.169.104', '62.132.169.127', 1048881512, 1048881535, 'NL', 'Netherlands'), +('62.132.169.128', '62.132.169.135', 1048881536, 1048881543, 'DE', 'Germany'), +('62.132.169.136', '62.132.169.255', 1048881544, 1048881663, 'NL', 'Netherlands'), +('62.132.170.0', '62.132.170.7', 1048881664, 1048881671, 'DE', 'Germany'), +('62.132.170.8', '62.132.170.119', 1048881672, 1048881783, 'NL', 'Netherlands'), +('62.132.170.120', '62.132.170.135', 1048881784, 1048881799, 'DE', 'Germany'), +('62.132.170.136', '62.132.170.159', 1048881800, 1048881823, 'NL', 'Netherlands'), +('62.132.170.160', '62.132.170.167', 1048881824, 1048881831, 'DE', 'Germany'), +('62.132.170.168', '62.132.171.15', 1048881832, 1048881935, 'NL', 'Netherlands'), +('62.132.171.16', '62.132.171.23', 1048881936, 1048881943, 'DE', 'Germany'), +('62.132.171.24', '62.132.171.47', 1048881944, 1048881967, 'NL', 'Netherlands'), +('62.132.171.48', '62.132.171.71', 1048881968, 1048881991, 'DE', 'Germany'), +('62.132.171.72', '62.132.171.191', 1048881992, 1048882111, 'NL', 'Netherlands'), +('62.132.171.192', '62.132.171.199', 1048882112, 1048882119, 'DE', 'Germany'), +('62.132.171.200', '62.132.171.231', 1048882120, 1048882151, 'NL', 'Netherlands'), +('62.132.171.232', '62.132.171.239', 1048882152, 1048882159, 'DE', 'Germany'), +('62.132.171.240', '62.132.172.151', 1048882160, 1048882327, 'NL', 'Netherlands'), +('62.132.172.152', '62.132.172.159', 1048882328, 1048882335, 'DE', 'Germany'), +('62.132.172.160', '62.132.173.55', 1048882336, 1048882487, 'NL', 'Netherlands'), +('62.132.173.56', '62.132.173.63', 1048882488, 1048882495, 'DE', 'Germany'), +('62.132.173.64', '62.132.173.143', 1048882496, 1048882575, 'NL', 'Netherlands'), +('62.132.173.144', '62.132.173.159', 1048882576, 1048882591, 'DE', 'Germany'), +('62.132.173.160', '62.132.173.215', 1048882592, 1048882647, 'NL', 'Netherlands'), +('62.132.173.216', '62.132.173.223', 1048882648, 1048882655, 'DE', 'Germany'), +('62.132.173.224', '62.132.174.39', 1048882656, 1048882727, 'NL', 'Netherlands'), +('62.132.174.40', '62.132.174.47', 1048882728, 1048882735, 'DE', 'Germany'), +('62.132.174.48', '62.132.175.15', 1048882736, 1048882959, 'NL', 'Netherlands'), +('62.132.175.16', '62.132.175.23', 1048882960, 1048882967, 'DE', 'Germany'), +('62.132.175.24', '62.132.175.199', 1048882968, 1048883143, 'NL', 'Netherlands'), +('62.132.175.200', '62.132.175.207', 1048883144, 1048883151, 'DE', 'Germany'), +('62.132.175.208', '62.132.176.135', 1048883152, 1048883335, 'NL', 'Netherlands'), +('62.132.176.136', '62.132.176.143', 1048883336, 1048883343, 'DE', 'Germany'), +('62.132.176.144', '62.132.177.55', 1048883344, 1048883511, 'NL', 'Netherlands'), +('62.132.177.56', '62.132.177.63', 1048883512, 1048883519, 'DE', 'Germany'), +('62.132.177.64', '62.132.177.143', 1048883520, 1048883599, 'NL', 'Netherlands'), +('62.132.177.144', '62.132.177.151', 1048883600, 1048883607, 'DE', 'Germany'), +('62.132.177.152', '62.132.177.239', 1048883608, 1048883695, 'NL', 'Netherlands'), +('62.132.177.240', '62.132.177.247', 1048883696, 1048883703, 'DE', 'Germany'), +('62.132.177.248', '62.132.178.239', 1048883704, 1048883951, 'NL', 'Netherlands'), +('62.132.178.240', '62.132.178.247', 1048883952, 1048883959, 'DE', 'Germany'), +('62.132.178.248', '62.132.179.199', 1048883960, 1048884167, 'NL', 'Netherlands'), +('62.132.179.200', '62.132.179.215', 1048884168, 1048884183, 'DE', 'Germany'), +('62.132.179.216', '62.132.179.223', 1048884184, 1048884191, 'NL', 'Netherlands'), +('62.132.179.224', '62.132.179.231', 1048884192, 1048884199, 'DE', 'Germany'), +('62.132.179.232', '62.132.180.55', 1048884200, 1048884279, 'NL', 'Netherlands'), +('62.132.180.56', '62.132.180.63', 1048884280, 1048884287, 'DE', 'Germany'), +('62.132.180.64', '62.132.180.191', 1048884288, 1048884415, 'NL', 'Netherlands'), +('62.132.180.192', '62.132.180.199', 1048884416, 1048884423, 'DE', 'Germany'), +('62.132.180.200', '62.132.180.223', 1048884424, 1048884447, 'NL', 'Netherlands'), +('62.132.180.224', '62.132.180.231', 1048884448, 1048884455, 'DE', 'Germany'), +('62.132.180.232', '62.132.181.135', 1048884456, 1048884615, 'NL', 'Netherlands'), +('62.132.181.136', '62.132.181.143', 1048884616, 1048884623, 'DE', 'Germany'), +('62.132.181.144', '62.132.181.175', 1048884624, 1048884655, 'NL', 'Netherlands'), +('62.132.181.176', '62.132.181.183', 1048884656, 1048884663, 'DE', 'Germany'), +('62.132.181.184', '62.132.181.255', 1048884664, 1048884735, 'NL', 'Netherlands'), +('62.132.182.0', '62.132.182.7', 1048884736, 1048884743, 'DE', 'Germany'), +('62.132.182.8', '62.132.182.39', 1048884744, 1048884775, 'NL', 'Netherlands'), +('62.132.182.40', '62.132.182.47', 1048884776, 1048884783, 'DE', 'Germany'), +('62.132.182.48', '62.132.184.23', 1048884784, 1048885271, 'NL', 'Netherlands'), +('62.132.184.24', '62.132.184.31', 1048885272, 1048885279, 'DE', 'Germany'), +('62.132.184.32', '62.132.184.55', 1048885280, 1048885303, 'NL', 'Netherlands'), +('62.132.184.56', '62.132.184.63', 1048885304, 1048885311, 'DE', 'Germany'), +('62.132.184.64', '62.132.184.223', 1048885312, 1048885471, 'NL', 'Netherlands'), +('62.132.184.224', '62.132.184.231', 1048885472, 1048885479, 'DE', 'Germany'), +('62.132.184.232', '62.132.185.55', 1048885480, 1048885559, 'NL', 'Netherlands'), +('62.132.185.56', '62.132.185.63', 1048885560, 1048885567, 'DE', 'Germany'), +('62.132.185.64', '62.132.185.87', 1048885568, 1048885591, 'NL', 'Netherlands'), +('62.132.185.88', '62.132.185.95', 1048885592, 1048885599, 'DE', 'Germany'), +('62.132.185.96', '62.132.186.191', 1048885600, 1048885951, 'NL', 'Netherlands'), +('62.132.186.192', '62.132.186.199', 1048885952, 1048885959, 'DE', 'Germany'), +('62.132.186.200', '62.132.187.63', 1048885960, 1048886079, 'NL', 'Netherlands'), +('62.132.187.64', '62.132.187.71', 1048886080, 1048886087, 'DE', 'Germany'), +('62.132.187.72', '62.132.187.183', 1048886088, 1048886199, 'NL', 'Netherlands'), +('62.132.187.184', '62.132.187.191', 1048886200, 1048886207, 'DE', 'Germany'), +('62.132.187.192', '62.132.188.111', 1048886208, 1048886383, 'NL', 'Netherlands'), +('62.132.188.112', '62.132.188.119', 1048886384, 1048886391, 'DE', 'Germany'), +('62.132.188.120', '62.132.189.31', 1048886392, 1048886559, 'NL', 'Netherlands'), +('62.132.189.32', '62.132.189.47', 1048886560, 1048886575, 'DE', 'Germany'), +('62.132.189.48', '62.132.189.103', 1048886576, 1048886631, 'NL', 'Netherlands'), +('62.132.189.104', '62.132.189.111', 1048886632, 1048886639, 'DE', 'Germany'), +('62.132.189.112', '62.132.189.159', 1048886640, 1048886687, 'NL', 'Netherlands'), +('62.132.189.160', '62.132.189.167', 1048886688, 1048886695, 'DE', 'Germany'), +('62.132.189.168', '62.132.189.199', 1048886696, 1048886727, 'NL', 'Netherlands'), +('62.132.189.200', '62.132.189.207', 1048886728, 1048886735, 'DE', 'Germany'), +('62.132.189.208', '62.132.190.71', 1048886736, 1048886855, 'NL', 'Netherlands'), +('62.132.190.72', '62.132.190.79', 1048886856, 1048886863, 'DE', 'Germany'), +('62.132.190.80', '62.132.190.143', 1048886864, 1048886927, 'NL', 'Netherlands'), +('62.132.190.144', '62.132.190.151', 1048886928, 1048886935, 'DE', 'Germany'), +('62.132.190.152', '62.132.190.199', 1048886936, 1048886983, 'NL', 'Netherlands'), +('62.132.190.200', '62.132.190.207', 1048886984, 1048886991, 'DE', 'Germany'), +('62.132.190.208', '62.132.190.215', 1048886992, 1048886999, 'NL', 'Netherlands'), +('62.132.190.216', '62.132.190.223', 1048887000, 1048887007, 'DE', 'Germany'), +('62.132.190.224', '62.132.191.127', 1048887008, 1048887167, 'NL', 'Netherlands'), +('62.132.191.128', '62.132.191.135', 1048887168, 1048887175, 'DE', 'Germany'), +('62.132.191.136', '62.132.198.127', 1048887176, 1048888959, 'NL', 'Netherlands'), +('62.132.198.128', '62.132.198.255', 1048888960, 1048889087, 'DE', 'Germany'), +('62.132.199.0', '62.132.202.95', 1048889088, 1048889951, 'NL', 'Netherlands'), +('62.132.202.96', '62.132.202.127', 1048889952, 1048889983, 'DE', 'Germany'), +('62.132.202.128', '62.132.209.47', 1048889984, 1048891695, 'NL', 'Netherlands'), +('62.132.209.48', '62.132.209.55', 1048891696, 1048891703, 'DE', 'Germany'), +('62.132.209.56', '62.132.209.175', 1048891704, 1048891823, 'NL', 'Netherlands'), +('62.132.209.176', '62.132.209.183', 1048891824, 1048891831, 'DE', 'Germany'), +('62.132.209.184', '62.132.210.7', 1048891832, 1048891911, 'NL', 'Netherlands'), +('62.132.210.8', '62.132.210.15', 1048891912, 1048891919, 'DE', 'Germany'), +('62.132.210.16', '62.132.220.143', 1048891920, 1048894607, 'NL', 'Netherlands'), +('62.132.220.144', '62.132.220.151', 1048894608, 1048894615, 'DE', 'Germany'), +('62.132.220.152', '62.132.226.231', 1048894616, 1048896231, 'NL', 'Netherlands'), +('62.132.226.232', '62.132.226.239', 1048896232, 1048896239, 'DE', 'Germany'), +('62.132.226.240', '62.132.227.223', 1048896240, 1048896479, 'NL', 'Netherlands'), +('62.132.227.224', '62.132.227.231', 1048896480, 1048896487, 'DE', 'Germany'), +('62.132.227.232', '62.132.228.223', 1048896488, 1048896735, 'NL', 'Netherlands'), +('62.132.228.224', '62.132.228.231', 1048896736, 1048896743, 'DE', 'Germany'), +('62.132.228.232', '62.132.230.95', 1048896744, 1048897119, 'NL', 'Netherlands'), +('62.132.230.96', '62.132.230.103', 1048897120, 1048897127, 'DE', 'Germany'), +('62.132.230.104', '62.132.231.183', 1048897128, 1048897463, 'NL', 'Netherlands'), +('62.132.231.184', '62.132.231.191', 1048897464, 1048897471, 'DE', 'Germany'), +('62.132.231.192', '62.132.232.199', 1048897472, 1048897735, 'NL', 'Netherlands'), +('62.132.232.200', '62.132.232.207', 1048897736, 1048897743, 'DE', 'Germany'), +('62.132.232.208', '62.132.238.215', 1048897744, 1048899287, 'NL', 'Netherlands'), +('62.132.238.216', '62.132.238.223', 1048899288, 1048899295, 'DE', 'Germany'), +('62.132.238.224', '62.132.238.231', 1048899296, 1048899303, 'NL', 'Netherlands'), +('62.132.238.232', '62.132.238.239', 1048899304, 1048899311, 'DE', 'Germany'), +('62.132.238.240', '62.132.240.7', 1048899312, 1048899591, 'NL', 'Netherlands'), +('62.132.240.8', '62.132.240.15', 1048899592, 1048899599, 'DE', 'Germany'), +('62.132.240.16', '62.132.246.47', 1048899600, 1048901167, 'NL', 'Netherlands'), +('62.132.246.48', '62.132.246.55', 1048901168, 1048901175, 'DE', 'Germany'), +('62.132.246.56', '62.132.246.79', 1048901176, 1048901199, 'NL', 'Netherlands'), +('62.132.246.80', '62.132.246.87', 1048901200, 1048901207, 'DE', 'Germany'), +('62.132.246.88', '62.132.246.191', 1048901208, 1048901311, 'NL', 'Netherlands'), +('62.132.246.192', '62.132.246.199', 1048901312, 1048901319, 'DE', 'Germany'), +('62.132.246.200', '62.132.248.223', 1048901320, 1048901855, 'NL', 'Netherlands'), +('62.132.248.224', '62.132.248.231', 1048901856, 1048901863, 'DE', 'Germany'), +('62.132.248.232', '62.132.250.191', 1048901864, 1048902335, 'NL', 'Netherlands'), +('62.132.250.192', '62.132.250.199', 1048902336, 1048902343, 'DE', 'Germany'), +('62.132.250.200', '62.132.252.15', 1048902344, 1048902671, 'NL', 'Netherlands'), +('62.132.252.16', '62.132.252.23', 1048902672, 1048902679, 'DE', 'Germany'), +('62.132.252.24', '62.132.253.159', 1048902680, 1048903071, 'NL', 'Netherlands'), +('62.132.253.160', '62.132.253.167', 1048903072, 1048903079, 'DE', 'Germany'), +('62.132.253.168', '62.132.253.183', 1048903080, 1048903095, 'NL', 'Netherlands'), +('62.132.253.184', '62.132.253.191', 1048903096, 1048903103, 'DE', 'Germany'), +('62.132.253.192', '62.132.255.255', 1048903104, 1048903679, 'NL', 'Netherlands'), +('62.133.0.0', '62.133.31.255', 1048903680, 1048911871, 'GB', 'United Kingdom'), +('62.133.32.0', '62.133.63.255', 1048911872, 1048920063, 'IT', 'Italy'), +('62.133.64.0', '62.133.127.255', 1048920064, 1048936447, 'NL', 'Netherlands'), +('62.133.128.0', '62.133.159.255', 1048936448, 1048944639, 'PL', 'Poland'), +('62.133.160.0', '62.133.191.255', 1048944640, 1048952831, 'RU', 'Russian Federation'), +('62.133.192.0', '62.133.194.63', 1048952832, 1048953407, 'NL', 'Netherlands'), +('62.133.194.64', '62.133.194.95', 1048953408, 1048953439, 'BE', 'Belgium'), +('62.133.194.96', '62.133.200.87', 1048953440, 1048954967, 'NL', 'Netherlands'), +('62.133.200.88', '62.133.200.95', 1048954968, 1048954975, 'BE', 'Belgium'), +('62.133.200.96', '62.133.255.255', 1048954976, 1048969215, 'NL', 'Netherlands'), +('62.134.0.0', '62.134.17.255', 1048969216, 1048973823, 'DE', 'Germany'), +('62.134.18.0', '62.134.19.255', 1048973824, 1048974335, 'EU', 'Europe'), +('62.134.20.0', '62.134.23.79', 1048974336, 1048975183, 'DE', 'Germany'), +('62.134.23.80', '62.134.27.159', 1048975184, 1048976287, 'EU', 'Europe'), +('62.134.27.160', '62.134.27.167', 1048976288, 1048976295, 'DE', 'Germany'), +('62.134.27.168', '62.134.27.168', 1048976296, 1048976296, 'EU', 'Europe'), +('62.134.27.169', '62.134.27.174', 1048976297, 1048976302, 'DE', 'Germany'), +('62.134.27.175', '62.134.27.175', 1048976303, 1048976303, 'EU', 'Europe'), +('62.134.27.176', '62.134.27.191', 1048976304, 1048976319, 'DE', 'Germany'), +('62.134.27.192', '62.134.27.255', 1048976320, 1048976383, 'EU', 'Europe'), +('62.134.28.0', '62.134.28.63', 1048976384, 1048976447, 'DE', 'Germany'), +('62.134.28.64', '62.134.28.127', 1048976448, 1048976511, 'EU', 'Europe'), +('62.134.28.128', '62.134.31.255', 1048976512, 1048977407, 'DE', 'Germany'), +('62.134.32.0', '62.134.35.255', 1048977408, 1048978431, 'EU', 'Europe'), +('62.134.36.0', '62.134.37.255', 1048978432, 1048978943, 'DE', 'Germany'), +('62.134.38.0', '62.134.38.191', 1048978944, 1048979135, 'EU', 'Europe'), +('62.134.38.192', '62.134.39.95', 1048979136, 1048979295, 'DE', 'Germany'), +('62.134.39.96', '62.134.39.127', 1048979296, 1048979327, 'EU', 'Europe'), +('62.134.39.128', '62.134.44.15', 1048979328, 1048980495, 'DE', 'Germany'), +('62.134.44.16', '62.134.44.31', 1048980496, 1048980511, 'EU', 'Europe'), +('62.134.44.32', '62.134.44.47', 1048980512, 1048980527, 'DE', 'Germany'), +('62.134.44.48', '62.134.44.79', 1048980528, 1048980559, 'EU', 'Europe'), +('62.134.44.80', '62.134.44.251', 1048980560, 1048980731, 'DE', 'Germany'), +('62.134.44.252', '62.134.44.255', 1048980732, 1048980735, 'EU', 'Europe'), +('62.134.45.0', '62.134.45.55', 1048980736, 1048980791, 'DE', 'Germany'), +('62.134.45.56', '62.134.45.67', 1048980792, 1048980803, 'EU', 'Europe'), +('62.134.45.68', '62.134.45.71', 1048980804, 1048980807, 'DE', 'Germany'), +('62.134.45.72', '62.134.45.79', 1048980808, 1048980815, 'EU', 'Europe'), +('62.134.45.80', '62.134.45.87', 1048980816, 1048980823, 'DE', 'Germany'), +('62.134.45.88', '62.134.45.95', 1048980824, 1048980831, 'EU', 'Europe'), +('62.134.45.96', '62.134.45.223', 1048980832, 1048980959, 'DE', 'Germany'), +('62.134.45.224', '62.134.45.231', 1048980960, 1048980967, 'EU', 'Europe'), +('62.134.45.232', '62.134.45.239', 1048980968, 1048980975, 'DE', 'Germany'), +('62.134.45.240', '62.134.47.255', 1048980976, 1048981503, 'EU', 'Europe'), +('62.134.48.0', '62.134.48.255', 1048981504, 1048981759, 'DE', 'Germany'), +('62.134.49.0', '62.134.49.31', 1048981760, 1048981791, 'EU', 'Europe'), +('62.134.49.32', '62.134.49.63', 1048981792, 1048981823, 'DE', 'Germany'), +('62.134.49.64', '62.134.49.255', 1048981824, 1048982015, 'EU', 'Europe'), +('62.134.50.0', '62.134.53.255', 1048982016, 1048983039, 'DE', 'Germany'), +('62.134.54.0', '62.134.54.127', 1048983040, 1048983167, 'EU', 'Europe'), +('62.134.54.128', '62.134.55.127', 1048983168, 1048983423, 'DE', 'Germany'), +('62.134.55.128', '62.134.55.191', 1048983424, 1048983487, 'EU', 'Europe'), +('62.134.55.192', '62.134.56.127', 1048983488, 1048983679, 'DE', 'Germany'), +('62.134.56.128', '62.134.60.255', 1048983680, 1048984831, 'EU', 'Europe'), +('62.134.61.0', '62.134.62.79', 1048984832, 1048985167, 'DE', 'Germany'), +('62.134.62.80', '62.134.62.95', 1048985168, 1048985183, 'EU', 'Europe'), +('62.134.62.96', '62.134.62.111', 1048985184, 1048985199, 'DE', 'Germany'), +('62.134.62.112', '62.134.62.127', 1048985200, 1048985215, 'EU', 'Europe'), +('62.134.62.128', '62.134.63.31', 1048985216, 1048985375, 'DE', 'Germany'), +('62.134.63.32', '62.134.63.255', 1048985376, 1048985599, 'EU', 'Europe'), +('62.134.64.0', '62.134.128.31', 1048985600, 1049002015, 'DE', 'Germany'), +('62.134.128.32', '62.134.128.191', 1049002016, 1049002175, 'EU', 'Europe'), +('62.134.128.192', '62.134.128.255', 1049002176, 1049002239, 'DE', 'Germany'), +('62.134.129.0', '62.134.130.127', 1049002240, 1049002623, 'EU', 'Europe'), +('62.134.130.128', '62.134.130.255', 1049002624, 1049002751, 'DE', 'Germany'), +('62.134.131.0', '62.134.132.255', 1049002752, 1049003263, 'EU', 'Europe'), +('62.134.133.0', '62.134.137.3', 1049003264, 1049004291, 'DE', 'Germany'), +('62.134.137.4', '62.134.137.63', 1049004292, 1049004351, 'EU', 'Europe'), +('62.134.137.64', '62.134.137.127', 1049004352, 1049004415, 'DE', 'Germany'), +('62.134.137.128', '62.134.137.255', 1049004416, 1049004543, 'EU', 'Europe'), +('62.134.138.0', '62.134.143.255', 1049004544, 1049006079, 'DE', 'Germany'), +('62.134.144.0', '62.134.145.167', 1049006080, 1049006503, 'EU', 'Europe'), +('62.134.145.168', '62.134.145.175', 1049006504, 1049006511, 'DE', 'Germany'), +('62.134.145.176', '62.134.147.255', 1049006512, 1049007103, 'EU', 'Europe'), +('62.134.148.0', '62.134.148.7', 1049007104, 1049007111, 'DE', 'Germany'), +('62.134.148.8', '62.134.148.15', 1049007112, 1049007119, 'EU', 'Europe'), +('62.134.148.16', '62.134.148.63', 1049007120, 1049007167, 'DE', 'Germany'), +('62.134.148.64', '62.134.148.255', 1049007168, 1049007359, 'EU', 'Europe'), +('62.134.149.0', '62.134.165.255', 1049007360, 1049011711, 'DE', 'Germany'), +('62.134.166.0', '62.134.166.255', 1049011712, 1049011967, 'EU', 'Europe'), +('62.134.167.0', '62.134.168.255', 1049011968, 1049012479, 'DE', 'Germany'), +('62.134.169.0', '62.134.169.255', 1049012480, 1049012735, 'EU', 'Europe'), +('62.134.170.0', '62.134.185.127', 1049012736, 1049016703, 'DE', 'Germany'), +('62.134.185.128', '62.134.185.135', 1049016704, 1049016711, 'FR', 'France'), +('62.134.185.136', '62.134.185.139', 1049016712, 1049016715, 'RU', 'Russian Federation'), +('62.134.185.140', '62.134.185.167', 1049016716, 1049016743, 'DE', 'Germany'), +('62.134.185.168', '62.134.185.175', 1049016744, 1049016751, 'MA', 'Morocco'), +('62.134.185.176', '62.134.185.183', 1049016752, 1049016759, 'DE', 'Germany'), +('62.134.185.184', '62.134.185.191', 1049016760, 1049016767, 'FR', 'France'), +('62.134.185.192', '62.134.185.239', 1049016768, 1049016815, 'DE', 'Germany'), +('62.134.185.240', '62.134.185.255', 1049016816, 1049016831, 'NL', 'Netherlands'), +('62.134.186.0', '62.134.186.15', 1049016832, 1049016847, 'DE', 'Germany'), +('62.134.186.16', '62.134.186.31', 1049016848, 1049016863, 'FR', 'France'), +('62.134.186.32', '62.134.190.127', 1049016864, 1049017983, 'DE', 'Germany'), +('62.134.190.128', '62.134.190.191', 1049017984, 1049018047, 'GE', 'Georgia'), +('62.134.190.192', '62.134.198.223', 1049018048, 1049020127, 'DE', 'Germany'), +('62.134.198.224', '62.134.198.231', 1049020128, 1049020135, 'FR', 'France'), +('62.134.198.232', '62.134.200.47', 1049020136, 1049020463, 'DE', 'Germany'), +('62.134.200.48', '62.134.200.55', 1049020464, 1049020471, 'GE', 'Georgia'), +('62.134.200.56', '62.134.200.63', 1049020472, 1049020479, 'DE', 'Germany'), +('62.134.200.64', '62.134.200.127', 1049020480, 1049020543, 'GE', 'Georgia'), +('62.134.200.128', '62.134.223.255', 1049020544, 1049026559, 'DE', 'Germany'), +('62.134.224.0', '62.134.224.255', 1049026560, 1049026815, 'EU', 'Europe'), +('62.134.225.0', '62.134.245.235', 1049026816, 1049032171, 'DE', 'Germany'), +('62.134.245.236', '62.134.245.239', 1049032172, 1049032175, 'EU', 'Europe'), +('62.134.245.240', '62.134.246.159', 1049032176, 1049032351, 'DE', 'Germany'), +('62.134.246.160', '62.134.246.191', 1049032352, 1049032383, 'EU', 'Europe'), +('62.134.246.192', '62.134.247.251', 1049032384, 1049032699, 'DE', 'Germany'), +('62.134.247.252', '62.134.247.255', 1049032700, 1049032703, 'EU', 'Europe'), +('62.134.248.0', '62.134.255.255', 1049032704, 1049034751, 'DE', 'Germany'), +('62.135.0.0', '62.135.127.255', 1049034752, 1049067519, 'EG', 'Egypt'), +('62.135.128.0', '62.135.255.255', 1049067520, 1049100287, 'DK', 'Denmark'), +('62.136.0.0', '62.137.255.255', 1049100288, 1049231359, 'GB', 'United Kingdom'), +('62.138.0.0', '62.138.255.255', 1049231360, 1049296895, 'DE', 'Germany'), +('62.139.0.0', '62.139.255.255', 1049296896, 1049362431, 'EG', 'Egypt'), +('62.140.0.0', '62.140.0.143', 1049362432, 1049362575, 'DE', 'Germany'), +('62.140.0.144', '62.140.1.255', 1049362576, 1049362943, 'GB', 'United Kingdom'), +('62.140.2.0', '62.140.2.15', 1049362944, 1049362959, 'DE', 'Germany'), +('62.140.2.16', '62.140.2.127', 1049362960, 1049363071, 'GB', 'United Kingdom'), +('62.140.2.128', '62.140.2.191', 1049363072, 1049363135, 'DE', 'Germany'), +('62.140.2.192', '62.140.5.255', 1049363136, 1049363967, 'GB', 'United Kingdom'), +('62.140.6.0', '62.140.6.255', 1049363968, 1049364223, 'DE', 'Germany'), +('62.140.7.0', '62.140.9.255', 1049364224, 1049364991, 'GB', 'United Kingdom'), +('62.140.10.0', '62.140.10.255', 1049364992, 1049365247, 'DE', 'Germany'), +('62.140.11.0', '62.140.12.207', 1049365248, 1049365711, 'GB', 'United Kingdom'), +('62.140.12.208', '62.140.12.215', 1049365712, 1049365719, 'DE', 'Germany'), +('62.140.12.216', '62.140.12.223', 1049365720, 1049365727, 'GB', 'United Kingdom'), +('62.140.12.224', '62.140.12.247', 1049365728, 1049365751, 'DE', 'Germany'), +('62.140.12.248', '62.140.13.127', 1049365752, 1049365887, 'GB', 'United Kingdom'), +('62.140.13.128', '62.140.13.191', 1049365888, 1049365951, 'DE', 'Germany'), +('62.140.13.192', '62.140.13.255', 1049365952, 1049366015, 'GB', 'United Kingdom'), +('62.140.14.0', '62.140.14.255', 1049366016, 1049366271, 'DE', 'Germany'), +('62.140.15.0', '62.140.15.63', 1049366272, 1049366335, 'GB', 'United Kingdom'), +('62.140.15.64', '62.140.15.127', 1049366336, 1049366399, 'DE', 'Germany'), +('62.140.15.128', '62.140.15.255', 1049366400, 1049366527, 'GB', 'United Kingdom'), +('62.140.16.0', '62.140.23.255', 1049366528, 1049368575, 'DE', 'Germany'), +('62.140.24.0', '62.140.27.255', 1049368576, 1049369599, 'GB', 'United Kingdom'), +('62.140.28.0', '62.140.29.79', 1049369600, 1049369935, 'DE', 'Germany'), +('62.140.29.80', '62.140.29.255', 1049369936, 1049370111, 'GB', 'United Kingdom'), +('62.140.30.0', '62.140.30.143', 1049370112, 1049370255, 'DE', 'Germany'), +('62.140.30.144', '62.140.30.255', 1049370256, 1049370367, 'GB', 'United Kingdom'), +('62.140.31.0', '62.140.31.255', 1049370368, 1049370623, 'DE', 'Germany'), +('62.140.32.0', '62.140.63.255', 1049370624, 1049378815, 'AT', 'Austria'), +('62.140.64.0', '62.140.127.255', 1049378816, 1049395199, 'EG', 'Egypt'), +('62.140.128.0', '62.140.166.127', 1049395200, 1049405055, 'NL', 'Netherlands'), +('62.140.166.128', '62.140.166.255', 1049405056, 1049405183, 'GB', 'United Kingdom'), +('62.140.167.0', '62.140.167.63', 1049405184, 1049405247, 'LU', 'Luxembourg'), +('62.140.167.64', '62.140.167.127', 1049405248, 1049405311, 'NL', 'Netherlands'), +('62.140.167.128', '62.140.167.191', 1049405312, 1049405375, 'BE', 'Belgium'), +('62.140.167.192', '62.140.167.255', 1049405376, 1049405439, 'NL', 'Netherlands'), +('62.140.168.0', '62.140.168.127', 1049405440, 1049405567, 'DE', 'Germany'), +('62.140.168.128', '62.140.168.191', 1049405568, 1049405631, 'BE', 'Belgium'), +('62.140.168.192', '62.140.168.255', 1049405632, 1049405695, 'AT', 'Austria'), +('62.140.169.0', '62.140.169.63', 1049405696, 1049405759, 'CH', 'Switzerland'), +('62.140.169.64', '62.140.169.127', 1049405760, 1049405823, 'ES', 'Spain'), +('62.140.169.128', '62.140.169.191', 1049405824, 1049405887, 'FR', 'France'), +('62.140.169.192', '62.140.169.255', 1049405888, 1049405951, 'GB', 'United Kingdom'), +('62.140.170.0', '62.140.176.127', 1049405952, 1049407615, 'NL', 'Netherlands'), +('62.140.176.128', '62.140.177.255', 1049407616, 1049407999, 'CH', 'Switzerland'), +('62.140.178.0', '62.140.181.255', 1049408000, 1049409023, 'NL', 'Netherlands'), +('62.140.182.0', '62.140.182.255', 1049409024, 1049409279, 'DE', 'Germany'), +('62.140.183.0', '62.140.191.255', 1049409280, 1049411583, 'NL', 'Netherlands'), +('62.140.192.0', '62.140.223.255', 1049411584, 1049419775, 'GB', 'United Kingdom'), +('62.140.224.0', '62.140.255.255', 1049419776, 1049427967, 'RU', 'Russian Federation'), +('62.141.0.0', '62.141.31.255', 1049427968, 1049436159, 'CZ', 'Czech Republic'), +('62.141.32.0', '62.141.63.255', 1049436160, 1049444351, 'DE', 'Germany'), +('62.141.64.0', '62.141.127.255', 1049444352, 1049460735, 'RU', 'Russian Federation'), +('62.141.128.0', '62.141.159.255', 1049460736, 1049468927, 'NO', 'Norway'), +('62.141.160.0', '62.141.191.255', 1049468928, 1049477119, 'DE', 'Germany'), +('62.141.192.0', '62.141.255.255', 1049477120, 1049493503, 'PL', 'Poland'), +('62.142.0.0', '62.142.72.111', 1049493504, 1049512047, 'FI', 'Finland'), +('62.142.72.112', '62.142.72.119', 1049512048, 1049512055, 'AX', 'Aland Islands'), +('62.142.72.120', '62.142.95.255', 1049512056, 1049518079, 'FI', 'Finland'), +('62.142.96.0', '62.142.96.15', 1049518080, 1049518095, 'GB', 'United Kingdom'), +('62.142.96.16', '62.142.210.31', 1049518096, 1049547295, 'FI', 'Finland'), +('62.142.210.32', '62.142.210.63', 1049547296, 1049547327, 'AF', 'Afghanistan'), +('62.142.210.64', '62.142.255.255', 1049547328, 1049559039, 'FI', 'Finland'), +('62.143.0.0', '62.144.111.103', 1049559040, 1049653095, 'DE', 'Germany'), +('62.144.111.104', '62.144.111.111', 1049653096, 1049653103, 'US', 'United States'), +('62.144.111.112', '62.145.31.255', 1049653104, 1049698303, 'DE', 'Germany'), +('62.145.32.0', '62.145.63.255', 1049698304, 1049706495, 'NL', 'Netherlands'), +('62.145.64.0', '62.145.65.255', 1049706496, 1049707007, 'GB', 'United Kingdom'), +('62.145.66.0', '62.145.67.255', 1049707008, 1049707519, 'NL', 'Netherlands'), +('62.145.68.0', '62.145.68.255', 1049707520, 1049707775, 'LB', 'Lebanon'), +('62.145.69.0', '62.145.69.255', 1049707776, 1049708031, 'DZ', 'Algeria'), +('62.145.70.0', '62.145.73.255', 1049708032, 1049709055, 'GB', 'United Kingdom'), +('62.145.74.0', '62.145.77.255', 1049709056, 1049710079, 'DZ', 'Algeria'), +('62.145.78.0', '62.145.81.255', 1049710080, 1049711103, 'NL', 'Netherlands'), +('62.145.82.0', '62.145.82.255', 1049711104, 1049711359, 'IR', 'Iran, Islamic Republic of'), +('62.145.83.0', '62.145.83.255', 1049711360, 1049711615, 'NL', 'Netherlands'), +('62.145.84.0', '62.145.85.255', 1049711616, 1049712127, 'PK', 'Pakistan'), +('62.145.86.0', '62.145.86.255', 1049712128, 1049712383, 'SA', 'Saudi Arabia'), +('62.145.87.0', '62.145.87.127', 1049712384, 1049712511, 'IR', 'Iran, Islamic Republic of'), +('62.145.87.128', '62.145.87.255', 1049712512, 1049712639, 'LB', 'Lebanon'), +('62.145.88.0', '62.145.89.159', 1049712640, 1049713055, 'IR', 'Iran, Islamic Republic of'), +('62.145.89.160', '62.145.89.191', 1049713056, 1049713087, 'MA', 'Morocco'), +('62.145.89.192', '62.145.89.255', 1049713088, 1049713151, 'IR', 'Iran, Islamic Republic of'), +('62.145.90.0', '62.145.91.255', 1049713152, 1049713663, 'NL', 'Netherlands'), +('62.145.92.0', '62.145.92.127', 1049713664, 1049713791, 'LB', 'Lebanon'), +('62.145.92.128', '62.145.92.255', 1049713792, 1049713919, 'IR', 'Iran, Islamic Republic of'), +('62.145.93.0', '62.145.93.255', 1049713920, 1049714175, 'GB', 'United Kingdom'), +('62.145.94.0', '62.145.95.255', 1049714176, 1049714687, 'NL', 'Netherlands'), +('62.145.96.0', '62.145.99.255', 1049714688, 1049715711, 'IR', 'Iran, Islamic Republic of'), +('62.145.100.0', '62.145.103.255', 1049715712, 1049716735, 'NL', 'Netherlands'), +('62.145.104.0', '62.145.107.255', 1049716736, 1049717759, 'IQ', 'Iraq'), +('62.145.108.0', '62.145.108.255', 1049717760, 1049718015, 'GB', 'United Kingdom'), +('62.145.109.0', '62.145.109.255', 1049718016, 1049718271, 'IR', 'Iran, Islamic Republic of'), +('62.145.110.0', '62.145.127.255', 1049718272, 1049722879, 'NL', 'Netherlands'), +('62.145.128.0', '62.145.159.255', 1049722880, 1049731071, 'IS', 'Iceland'), +('62.145.160.0', '62.145.191.255', 1049731072, 1049739263, 'FI', 'Finland'), +('62.145.192.0', '62.145.255.255', 1049739264, 1049755647, 'NL', 'Netherlands'), +('62.146.0.0', '62.146.7.159', 1049755648, 1049757599, 'DE', 'Germany'), +('62.146.7.160', '62.146.7.191', 1049757600, 1049757631, 'LU', 'Luxembourg'), +('62.146.7.192', '62.146.7.207', 1049757632, 1049757647, 'DE', 'Germany'), +('62.146.7.208', '62.146.7.223', 1049757648, 1049757663, 'CA', 'Canada'), +('62.146.7.224', '62.146.7.231', 1049757664, 1049757671, 'BA', 'Bosnia and Herzegovina'), +('62.146.7.232', '62.146.9.111', 1049757672, 1049758063, 'DE', 'Germany'), +('62.146.9.112', '62.146.9.119', 1049758064, 1049758071, 'PL', 'Poland'), +('62.146.9.120', '62.146.9.143', 1049758072, 1049758095, 'DE', 'Germany'), +('62.146.9.144', '62.146.9.151', 1049758096, 1049758103, 'ES', 'Spain'), +('62.146.9.152', '62.146.11.63', 1049758104, 1049758527, 'DE', 'Germany'), +('62.146.11.64', '62.146.11.95', 1049758528, 1049758559, 'DK', 'Denmark'), +('62.146.11.96', '62.146.16.239', 1049758560, 1049759983, 'DE', 'Germany'), +('62.146.16.240', '62.146.16.255', 1049759984, 1049759999, 'AE', 'United Arab Emirates'), +('62.146.17.0', '62.146.20.159', 1049760000, 1049760927, 'DE', 'Germany'), +('62.146.20.160', '62.146.20.191', 1049760928, 1049760959, 'DK', 'Denmark'), +('62.146.20.192', '62.146.20.255', 1049760960, 1049761023, 'PL', 'Poland'), +('62.146.21.0', '62.146.23.255', 1049761024, 1049761791, 'DE', 'Germany'), +('62.146.24.0', '62.146.24.255', 1049761792, 1049762047, 'PL', 'Poland'), +('62.146.25.0', '62.146.25.223', 1049762048, 1049762271, 'DE', 'Germany'), +('62.146.25.224', '62.146.25.255', 1049762272, 1049762303, 'DK', 'Denmark'), +('62.146.26.0', '62.146.28.15', 1049762304, 1049762831, 'DE', 'Germany'), +('62.146.28.16', '62.146.28.19', 1049762832, 1049762835, 'CH', 'Switzerland'), +('62.146.28.20', '62.146.28.239', 1049762836, 1049763055, 'DE', 'Germany'), +('62.146.28.240', '62.146.28.247', 1049763056, 1049763063, 'CH', 'Switzerland'), +('62.146.28.248', '62.146.32.31', 1049763064, 1049763871, 'DE', 'Germany'), +('62.146.32.32', '62.146.32.63', 1049763872, 1049763903, 'PL', 'Poland'), +('62.146.32.64', '62.146.34.95', 1049763904, 1049764447, 'DE', 'Germany'), +('62.146.34.96', '62.146.34.111', 1049764448, 1049764463, 'AE', 'United Arab Emirates'), +('62.146.34.112', '62.146.36.103', 1049764464, 1049764967, 'DE', 'Germany'), +('62.146.36.104', '62.146.36.111', 1049764968, 1049764975, 'CH', 'Switzerland'), +('62.146.36.112', '62.146.39.63', 1049764976, 1049765695, 'DE', 'Germany'), +('62.146.39.64', '62.146.39.159', 1049765696, 1049765791, 'PL', 'Poland'), +('62.146.39.160', '62.146.42.15', 1049765792, 1049766415, 'DE', 'Germany'), +('62.146.42.16', '62.146.42.31', 1049766416, 1049766431, 'ES', 'Spain'), +('62.146.42.32', '62.146.42.111', 1049766432, 1049766511, 'DE', 'Germany'), +('62.146.42.112', '62.146.42.127', 1049766512, 1049766527, 'AE', 'United Arab Emirates'), +('62.146.42.128', '62.146.47.255', 1049766528, 1049767935, 'DE', 'Germany'), +('62.146.48.0', '62.146.48.15', 1049767936, 1049767951, 'AE', 'United Arab Emirates'), +('62.146.48.16', '62.146.48.127', 1049767952, 1049768063, 'DE', 'Germany'), +('62.146.48.128', '62.146.48.159', 1049768064, 1049768095, 'DK', 'Denmark'), +('62.146.48.160', '62.146.49.175', 1049768096, 1049768367, 'DE', 'Germany'), +('62.146.49.176', '62.146.49.183', 1049768368, 1049768375, 'NL', 'Netherlands'), +('62.146.49.184', '62.146.49.191', 1049768376, 1049768383, 'GB', 'United Kingdom'), +('62.146.49.192', '62.146.51.63', 1049768384, 1049768767, 'DE', 'Germany'), +('62.146.51.64', '62.146.51.95', 1049768768, 1049768799, 'AE', 'United Arab Emirates'), +('62.146.51.96', '62.146.52.159', 1049768800, 1049769119, 'DE', 'Germany'), +('62.146.52.160', '62.146.52.191', 1049769120, 1049769151, 'AE', 'United Arab Emirates'), +('62.146.52.192', '62.146.56.127', 1049769152, 1049770111, 'DE', 'Germany'), +('62.146.56.128', '62.146.56.143', 1049770112, 1049770127, 'AE', 'United Arab Emirates'), +('62.146.56.144', '62.146.61.127', 1049770128, 1049771391, 'DE', 'Germany'), +('62.146.61.128', '62.146.61.255', 1049771392, 1049771519, 'IT', 'Italy'), +('62.146.62.0', '62.146.67.95', 1049771520, 1049772895, 'DE', 'Germany'), +('62.146.67.96', '62.146.67.127', 1049772896, 1049772927, 'AE', 'United Arab Emirates'), +('62.146.67.128', '62.146.67.255', 1049772928, 1049773055, 'ES', 'Spain'), +('62.146.68.0', '62.146.68.255', 1049773056, 1049773311, 'PL', 'Poland'), +('62.146.69.0', '62.146.75.199', 1049773312, 1049775047, 'DE', 'Germany'), +('62.146.75.200', '62.146.75.207', 1049775048, 1049775055, 'CH', 'Switzerland'), +('62.146.75.208', '62.146.75.239', 1049775056, 1049775087, 'DE', 'Germany'), +('62.146.75.240', '62.146.75.255', 1049775088, 1049775103, 'AE', 'United Arab Emirates'), +('62.146.76.0', '62.146.76.15', 1049775104, 1049775119, 'CH', 'Switzerland'), +('62.146.76.16', '62.146.81.63', 1049775120, 1049776447, 'DE', 'Germany'), +('62.146.81.64', '62.146.81.95', 1049776448, 1049776479, 'AE', 'United Arab Emirates'), +('62.146.81.96', '62.146.83.127', 1049776480, 1049777023, 'DE', 'Germany'), +('62.146.83.128', '62.146.83.143', 1049777024, 1049777039, 'CH', 'Switzerland'), +('62.146.83.144', '62.146.87.31', 1049777040, 1049777951, 'DE', 'Germany'), +('62.146.87.32', '62.146.87.39', 1049777952, 1049777959, 'IT', 'Italy'), +('62.146.87.40', '62.146.87.191', 1049777960, 1049778111, 'DE', 'Germany'), +('62.146.87.192', '62.146.87.223', 1049778112, 1049778143, 'ES', 'Spain'), +('62.146.87.224', '62.146.88.159', 1049778144, 1049778335, 'DE', 'Germany'), +('62.146.88.160', '62.146.88.175', 1049778336, 1049778351, 'AE', 'United Arab Emirates'), +('62.146.88.176', '62.146.89.63', 1049778352, 1049778495, 'DE', 'Germany'), +('62.146.89.64', '62.146.89.95', 1049778496, 1049778527, 'IT', 'Italy'), +('62.146.89.96', '62.146.89.103', 1049778528, 1049778535, 'DE', 'Germany'), +('62.146.89.104', '62.146.89.111', 1049778536, 1049778543, 'AT', 'Austria'), +('62.146.89.112', '62.146.91.47', 1049778544, 1049778991, 'DE', 'Germany'), +('62.146.91.48', '62.146.91.55', 1049778992, 1049778999, 'CR', 'Costa Rica'), +('62.146.91.56', '62.146.91.119', 1049779000, 1049779063, 'DE', 'Germany'), +('62.146.91.120', '62.146.91.127', 1049779064, 1049779071, 'PL', 'Poland'), +('62.146.91.128', '62.146.91.191', 1049779072, 1049779135, 'DE', 'Germany'), +('62.146.91.192', '62.146.91.223', 1049779136, 1049779167, 'AE', 'United Arab Emirates'), +('62.146.91.224', '62.146.104.31', 1049779168, 1049782303, 'DE', 'Germany'), +('62.146.104.32', '62.146.104.63', 1049782304, 1049782335, 'AE', 'United Arab Emirates'), +('62.146.104.64', '62.146.105.215', 1049782336, 1049782743, 'DE', 'Germany'), +('62.146.105.216', '62.146.105.223', 1049782744, 1049782751, 'IT', 'Italy'), +('62.146.105.224', '62.146.107.31', 1049782752, 1049783071, 'DE', 'Germany'), +('62.146.107.32', '62.146.107.63', 1049783072, 1049783103, 'DK', 'Denmark'), +('62.146.107.64', '62.146.109.191', 1049783104, 1049783743, 'DE', 'Germany'), +('62.146.109.192', '62.146.109.207', 1049783744, 1049783759, 'AE', 'United Arab Emirates'), +('62.146.109.208', '62.146.112.255', 1049783760, 1049784575, 'DE', 'Germany'), +('62.146.113.0', '62.146.113.255', 1049784576, 1049784831, 'PL', 'Poland'), +('62.146.114.0', '62.146.114.167', 1049784832, 1049784999, 'DE', 'Germany'), +('62.146.114.168', '62.146.114.175', 1049785000, 1049785007, 'AT', 'Austria'), +('62.146.114.176', '62.146.122.255', 1049785008, 1049787135, 'DE', 'Germany'), +('62.146.123.0', '62.146.123.255', 1049787136, 1049787391, 'PL', 'Poland'), +('62.146.124.0', '62.146.124.255', 1049787392, 1049787647, 'DE', 'Germany'), +('62.146.125.0', '62.146.126.255', 1049787648, 1049788159, 'PL', 'Poland'), +('62.146.127.0', '62.146.127.255', 1049788160, 1049788415, 'GB', 'United Kingdom'), +('62.146.128.0', '62.146.138.71', 1049788416, 1049791047, 'DE', 'Germany'), +('62.146.138.72', '62.146.138.79', 1049791048, 1049791055, 'PL', 'Poland'), +('62.146.138.80', '62.146.240.63', 1049791056, 1049817151, 'DE', 'Germany'), +('62.146.240.64', '62.146.240.71', 1049817152, 1049817159, 'PL', 'Poland'), +('62.146.240.72', '62.146.240.199', 1049817160, 1049817287, 'DE', 'Germany'), +('62.146.240.200', '62.146.240.207', 1049817288, 1049817295, 'AE', 'United Arab Emirates'), +('62.146.240.208', '62.146.255.255', 1049817296, 1049821183, 'DE', 'Germany'), +('62.147.0.0', '62.147.255.255', 1049821184, 1049886719, 'FR', 'France'), +('62.148.0.0', '62.148.31.255', 1049886720, 1049894911, 'RU', 'Russian Federation'), +('62.148.32.0', '62.148.63.255', 1049894912, 1049903103, 'NO', 'Norway'), +('62.148.64.0', '62.148.95.255', 1049903104, 1049911295, 'PL', 'Poland'), +('62.148.96.0', '62.148.127.255', 1049911296, 1049919487, 'FI', 'Finland'), +('62.148.128.0', '62.148.159.255', 1049919488, 1049927679, 'RU', 'Russian Federation'), +('62.148.160.0', '62.148.191.255', 1049927680, 1049935871, 'NL', 'Netherlands'), +('62.148.192.0', '62.148.197.239', 1049935872, 1049937391, 'FI', 'Finland'), +('62.148.197.240', '62.148.197.247', 1049937392, 1049937399, 'AX', 'Aland Islands'), +('62.148.197.248', '62.148.223.255', 1049937400, 1049944063, 'FI', 'Finland'), +('62.148.224.0', '62.148.255.255', 1049944064, 1049952255, 'RU', 'Russian Federation'), +('62.149.0.0', '62.149.31.255', 1049952256, 1049960447, 'UA', 'Ukraine'), +('62.149.32.0', '62.149.63.255', 1049960448, 1049968639, 'GB', 'United Kingdom'), +('62.149.64.0', '62.149.127.255', 1049968640, 1049985023, 'SA', 'Saudi Arabia'), +('62.149.128.0', '62.149.255.255', 1049985024, 1050017791, 'IT', 'Italy'), +('62.150.0.0', '62.150.255.255', 1050017792, 1050083327, 'KW', 'Kuwait'), +('62.151.0.0', '62.151.255.255', 1050083328, 1050148863, 'ES', 'Spain'), +('62.152.0.0', '62.152.31.255', 1050148864, 1050157055, 'CY', 'Cyprus'), +('62.152.32.0', '62.152.95.255', 1050157056, 1050173439, 'RU', 'Russian Federation'), +('62.152.96.0', '62.152.127.255', 1050173440, 1050181631, 'IT', 'Italy'), +('62.152.128.0', '62.152.159.255', 1050181632, 1050189823, 'PL', 'Poland'), +('62.152.160.0', '62.152.191.255', 1050189824, 1050198015, 'DE', 'Germany'), +('62.152.192.0', '62.152.223.255', 1050198016, 1050206207, 'CH', 'Switzerland'), +('62.152.224.0', '62.152.255.255', 1050206208, 1050214399, 'SK', 'Slovakia'), +('62.153.0.0', '62.153.119.71', 1050214400, 1050244935, 'DE', 'Germany'), +('62.153.119.72', '62.153.119.79', 1050244936, 1050244943, 'PL', 'Poland'), +('62.153.119.80', '62.154.157.103', 1050244944, 1050320231, 'DE', 'Germany'), +('62.154.157.104', '62.154.157.111', 1050320232, 1050320239, 'GB', 'United Kingdom'), +('62.154.157.112', '62.154.236.255', 1050320240, 1050340607, 'DE', 'Germany'), +('62.154.237.0', '62.154.237.31', 1050340608, 1050340639, 'US', 'United States'), +('62.154.237.32', '62.156.155.23', 1050340640, 1050450711, 'DE', 'Germany'), +('62.156.155.24', '62.156.155.31', 1050450712, 1050450719, 'NL', 'Netherlands'), +('62.156.155.32', '62.156.235.223', 1050450720, 1050471391, 'DE', 'Germany'), +('62.156.235.224', '62.156.235.231', 1050471392, 1050471399, 'IT', 'Italy'), +('62.156.235.232', '62.157.101.159', 1050471400, 1050502559, 'DE', 'Germany'), +('62.157.101.160', '62.157.101.167', 1050502560, 1050502567, 'US', 'United States'), +('62.157.101.168', '62.157.112.31', 1050502568, 1050505247, 'DE', 'Germany'), +('62.157.112.32', '62.157.112.63', 1050505248, 1050505279, 'CA', 'Canada'), +('62.157.112.64', '62.157.120.239', 1050505280, 1050507503, 'DE', 'Germany'), +('62.157.120.240', '62.157.120.255', 1050507504, 1050507519, 'A2', 'Satellite Provider'), +('62.157.121.0', '62.157.152.191', 1050507520, 1050515647, 'DE', 'Germany'), +('62.157.152.192', '62.157.152.207', 1050515648, 1050515663, 'DK', 'Denmark'), +('62.157.152.208', '62.157.179.39', 1050515664, 1050522407, 'DE', 'Germany'), +('62.157.179.40', '62.157.179.47', 1050522408, 1050522415, 'CH', 'Switzerland'), +('62.157.179.48', '62.157.193.255', 1050522416, 1050526207, 'DE', 'Germany'), +('62.157.194.0', '62.157.194.15', 1050526208, 1050526223, 'A2', 'Satellite Provider'), +('62.157.194.16', '62.157.198.223', 1050526224, 1050527455, 'DE', 'Germany'), +('62.157.198.224', '62.157.198.239', 1050527456, 1050527471, 'A2', 'Satellite Provider'), +('62.157.198.240', '62.159.35.79', 1050527472, 1050616655, 'DE', 'Germany'), +('62.159.35.80', '62.159.35.95', 1050616656, 1050616671, 'CN', 'China'), +('62.159.35.96', '62.159.46.111', 1050616672, 1050619503, 'DE', 'Germany'), +('62.159.46.112', '62.159.46.119', 1050619504, 1050619511, 'CH', 'Switzerland'), +('62.159.46.120', '62.159.53.223', 1050619512, 1050621407, 'DE', 'Germany'), +('62.159.53.224', '62.159.53.255', 1050621408, 1050621439, 'BE', 'Belgium'), +('62.159.54.0', '62.159.71.167', 1050621440, 1050625959, 'DE', 'Germany'), +('62.159.71.168', '62.159.71.175', 1050625960, 1050625967, 'AT', 'Austria'), +('62.159.71.176', '62.159.73.255', 1050625968, 1050626559, 'DE', 'Germany'), +('62.159.74.0', '62.159.74.255', 1050626560, 1050626815, 'GB', 'United Kingdom'), +('62.159.75.0', '62.159.155.135', 1050626816, 1050647431, 'DE', 'Germany'), +('62.159.155.136', '62.159.155.143', 1050647432, 1050647439, 'NL', 'Netherlands'), +('62.159.155.144', '62.159.223.207', 1050647440, 1050664911, 'DE', 'Germany'), +('62.159.223.208', '62.159.223.215', 1050664912, 1050664919, 'IT', 'Italy'), +('62.159.223.216', '62.159.233.255', 1050664920, 1050667519, 'DE', 'Germany'), +('62.159.234.0', '62.159.234.255', 1050667520, 1050667775, 'FR', 'France'), +('62.159.235.0', '62.159.253.95', 1050667776, 1050672479, 'DE', 'Germany'), +('62.159.253.96', '62.159.253.103', 1050672480, 1050672487, 'SG', 'Singapore'), +('62.159.253.104', '62.159.255.255', 1050672488, 1050673151, 'DE', 'Germany'), +('62.160.0.0', '62.160.12.246', 1050673152, 1050676470, 'FR', 'France'), +('62.160.12.247', '62.160.12.247', 1050676471, 1050676471, 'BE', 'Belgium'), +('62.160.12.248', '62.160.16.87', 1050676472, 1050677335, 'FR', 'France'), +('62.160.16.88', '62.160.16.95', 1050677336, 1050677343, 'DE', 'Germany'), +('62.160.16.96', '62.160.17.1', 1050677344, 1050677505, 'FR', 'France'), +('62.160.17.2', '62.160.17.2', 1050677506, 1050677506, 'BE', 'Belgium'), +('62.160.17.3', '62.160.17.198', 1050677507, 1050677702, 'FR', 'France'), +('62.160.17.199', '62.160.17.199', 1050677703, 1050677703, 'BE', 'Belgium'), +('62.160.17.200', '62.160.41.63', 1050677704, 1050683711, 'FR', 'France'), +('62.160.41.64', '62.160.41.71', 1050683712, 1050683719, 'DK', 'Denmark'), +('62.160.41.72', '62.160.42.191', 1050683720, 1050684095, 'FR', 'France'), +('62.160.42.192', '62.160.42.199', 1050684096, 1050684103, 'GB', 'United Kingdom'), +('62.160.42.200', '62.160.44.193', 1050684104, 1050684609, 'FR', 'France'), +('62.160.44.194', '62.160.44.194', 1050684610, 1050684610, 'LU', 'Luxembourg'), +('62.160.44.195', '62.160.115.31', 1050684611, 1050702623, 'FR', 'France'), +('62.160.115.32', '62.160.115.39', 1050702624, 1050702631, 'DE', 'Germany'), +('62.160.115.40', '62.160.120.210', 1050702632, 1050704082, 'FR', 'France'), +('62.160.120.211', '62.160.120.211', 1050704083, 1050704083, 'BE', 'Belgium'), +('62.160.120.212', '62.160.123.21', 1050704084, 1050704661, 'FR', 'France'), +('62.160.123.22', '62.160.123.22', 1050704662, 1050704662, 'GB', 'United Kingdom'), +('62.160.123.23', '62.160.194.15', 1050704663, 1050722831, 'FR', 'France'), +('62.160.194.16', '62.160.194.23', 1050722832, 1050722839, 'DE', 'Germany'), +('62.160.194.24', '62.160.204.87', 1050722840, 1050725463, 'FR', 'France'), +('62.160.204.88', '62.160.204.95', 1050725464, 1050725471, 'GB', 'United Kingdom'), +('62.160.204.96', '62.160.207.191', 1050725472, 1050726335, 'FR', 'France'), +('62.160.207.192', '62.160.207.199', 1050726336, 1050726343, 'DE', 'Germany'), +('62.160.207.200', '62.160.226.138', 1050726344, 1050731146, 'FR', 'France'), +('62.160.226.139', '62.160.226.139', 1050731147, 1050731147, 'GB', 'United Kingdom'), +('62.160.226.140', '62.161.96.212', 1050731148, 1050763476, 'FR', 'France'), +('62.161.96.213', '62.161.96.213', 1050763477, 1050763477, 'GB', 'United Kingdom'), +('62.161.96.214', '62.161.106.29', 1050763478, 1050765853, 'FR', 'France'), +('62.161.106.30', '62.161.106.30', 1050765854, 1050765854, 'BE', 'Belgium'), +('62.161.106.31', '62.161.109.73', 1050765855, 1050766665, 'FR', 'France'), +('62.161.109.74', '62.161.109.74', 1050766666, 1050766666, 'BE', 'Belgium'), +('62.161.109.75', '62.161.109.137', 1050766667, 1050766729, 'FR', 'France'), +('62.161.109.138', '62.161.109.138', 1050766730, 1050766730, 'BE', 'Belgium'), +('62.161.109.139', '62.161.116.167', 1050766731, 1050768551, 'FR', 'France'), +('62.161.116.168', '62.161.116.174', 1050768552, 1050768558, 'CH', 'Switzerland'), +('62.161.116.175', '62.161.255.255', 1050768559, 1050804223, 'FR', 'France'), +('62.162.0.0', '62.162.255.255', 1050804224, 1050869759, 'MK', 'Macedonia'), +('62.163.0.0', '62.163.255.255', 1050869760, 1050935295, 'NL', 'Netherlands'), +('62.164.0.0', '62.164.21.255', 1050935296, 1050940927, 'EU', 'Europe'), +('62.164.22.0', '62.164.22.255', 1050940928, 1050941183, 'ES', 'Spain'), +('62.164.23.0', '62.164.30.255', 1050941184, 1050943231, 'EU', 'Europe'), +('62.164.31.0', '62.164.31.255', 1050943232, 1050943487, 'ES', 'Spain'), +('62.164.32.0', '62.164.39.255', 1050943488, 1050945535, 'EU', 'Europe'), +('62.164.40.0', '62.164.40.255', 1050945536, 1050945791, 'ES', 'Spain'), +('62.164.41.0', '62.164.51.255', 1050945792, 1050948607, 'EU', 'Europe'), +('62.164.52.0', '62.164.52.255', 1050948608, 1050948863, 'ES', 'Spain'), +('62.164.53.0', '62.164.127.255', 1050948864, 1050968063, 'EU', 'Europe'), +('62.164.128.0', '62.164.255.255', 1050968064, 1051000831, 'GB', 'United Kingdom'), +('62.165.0.0', '62.165.63.255', 1051000832, 1051017215, 'RU', 'Russian Federation'), +('62.165.64.0', '62.165.127.255', 1051017216, 1051033599, 'NL', 'Netherlands'), +('62.165.128.0', '62.165.191.255', 1051033600, 1051049983, 'FI', 'Finland'), +('62.165.192.0', '62.165.255.255', 1051049984, 1051066367, 'HU', 'Hungary'), +('62.166.0.0', '62.166.69.255', 1051066368, 1051084287, 'NL', 'Netherlands'), +('62.166.70.0', '62.166.70.127', 1051084288, 1051084415, 'BE', 'Belgium'), +('62.166.70.128', '62.166.70.135', 1051084416, 1051084423, 'NL', 'Netherlands'), +('62.166.70.136', '62.166.71.111', 1051084424, 1051084655, 'BE', 'Belgium'), +('62.166.71.112', '62.166.71.119', 1051084656, 1051084663, 'NL', 'Netherlands'), +('62.166.71.120', '62.166.71.167', 1051084664, 1051084711, 'BE', 'Belgium'), +('62.166.71.168', '62.166.71.175', 1051084712, 1051084719, 'NL', 'Netherlands'), +('62.166.71.176', '62.166.71.183', 1051084720, 1051084727, 'BE', 'Belgium'), +('62.166.71.184', '62.166.71.191', 1051084728, 1051084735, 'NL', 'Netherlands'), +('62.166.71.192', '62.166.71.255', 1051084736, 1051084799, 'BE', 'Belgium'), +('62.166.72.0', '62.166.139.255', 1051084800, 1051102207, 'NL', 'Netherlands'), +('62.166.140.0', '62.166.140.255', 1051102208, 1051102463, 'BE', 'Belgium'), +('62.166.141.0', '62.166.141.7', 1051102464, 1051102471, 'NL', 'Netherlands'), +('62.166.141.8', '62.166.141.63', 1051102472, 1051102527, 'BE', 'Belgium'), +('62.166.141.64', '62.166.141.71', 1051102528, 1051102535, 'NL', 'Netherlands'), +('62.166.141.72', '62.166.141.95', 1051102536, 1051102559, 'BE', 'Belgium'), +('62.166.141.96', '62.166.141.103', 1051102560, 1051102567, 'NL', 'Netherlands'), +('62.166.141.104', '62.166.141.223', 1051102568, 1051102687, 'BE', 'Belgium'), +('62.166.141.224', '62.166.141.239', 1051102688, 1051102703, 'NL', 'Netherlands'), +('62.166.141.240', '62.166.142.159', 1051102704, 1051102879, 'BE', 'Belgium'), +('62.166.142.160', '62.166.142.167', 1051102880, 1051102887, 'NL', 'Netherlands'), +('62.166.142.168', '62.166.143.31', 1051102888, 1051103007, 'BE', 'Belgium'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('62.166.143.32', '62.166.143.39', 1051103008, 1051103015, 'NL', 'Netherlands'), +('62.166.143.40', '62.166.143.135', 1051103016, 1051103111, 'BE', 'Belgium'), +('62.166.143.136', '62.166.143.143', 1051103112, 1051103119, 'NL', 'Netherlands'), +('62.166.143.144', '62.166.143.231', 1051103120, 1051103207, 'BE', 'Belgium'), +('62.166.143.232', '62.166.143.239', 1051103208, 1051103215, 'NL', 'Netherlands'), +('62.166.143.240', '62.166.143.255', 1051103216, 1051103231, 'BE', 'Belgium'), +('62.166.144.0', '62.166.191.255', 1051103232, 1051115519, 'NL', 'Netherlands'), +('62.166.192.0', '62.166.214.135', 1051115520, 1051121287, 'BE', 'Belgium'), +('62.166.214.136', '62.166.214.143', 1051121288, 1051121295, 'NL', 'Netherlands'), +('62.166.214.144', '62.166.223.255', 1051121296, 1051123711, 'BE', 'Belgium'), +('62.166.224.0', '62.166.224.127', 1051123712, 1051123839, 'NL', 'Netherlands'), +('62.166.224.128', '62.166.224.143', 1051123840, 1051123855, 'BE', 'Belgium'), +('62.166.224.144', '62.166.224.199', 1051123856, 1051123911, 'NL', 'Netherlands'), +('62.166.224.200', '62.166.224.223', 1051123912, 1051123935, 'BE', 'Belgium'), +('62.166.224.224', '62.166.226.255', 1051123936, 1051124479, 'NL', 'Netherlands'), +('62.166.227.0', '62.166.227.127', 1051124480, 1051124607, 'BE', 'Belgium'), +('62.166.227.128', '62.166.228.31', 1051124608, 1051124767, 'NL', 'Netherlands'), +('62.166.228.32', '62.166.228.79', 1051124768, 1051124815, 'BE', 'Belgium'), +('62.166.228.80', '62.166.228.159', 1051124816, 1051124895, 'NL', 'Netherlands'), +('62.166.228.160', '62.166.228.175', 1051124896, 1051124911, 'BE', 'Belgium'), +('62.166.228.176', '62.166.229.255', 1051124912, 1051125247, 'NL', 'Netherlands'), +('62.166.230.0', '62.166.230.15', 1051125248, 1051125263, 'BE', 'Belgium'), +('62.166.230.16', '62.166.230.31', 1051125264, 1051125279, 'NL', 'Netherlands'), +('62.166.230.32', '62.166.230.79', 1051125280, 1051125327, 'BE', 'Belgium'), +('62.166.230.80', '62.166.230.87', 1051125328, 1051125335, 'NL', 'Netherlands'), +('62.166.230.88', '62.166.230.95', 1051125336, 1051125343, 'BE', 'Belgium'), +('62.166.230.96', '62.166.230.103', 1051125344, 1051125351, 'NL', 'Netherlands'), +('62.166.230.104', '62.166.230.127', 1051125352, 1051125375, 'BE', 'Belgium'), +('62.166.230.128', '62.166.230.143', 1051125376, 1051125391, 'NL', 'Netherlands'), +('62.166.230.144', '62.166.230.151', 1051125392, 1051125399, 'BE', 'Belgium'), +('62.166.230.152', '62.166.230.159', 1051125400, 1051125407, 'NL', 'Netherlands'), +('62.166.230.160', '62.166.231.71', 1051125408, 1051125575, 'BE', 'Belgium'), +('62.166.231.72', '62.166.231.79', 1051125576, 1051125583, 'NL', 'Netherlands'), +('62.166.231.80', '62.166.231.135', 1051125584, 1051125639, 'BE', 'Belgium'), +('62.166.231.136', '62.166.231.151', 1051125640, 1051125655, 'NL', 'Netherlands'), +('62.166.231.152', '62.166.231.255', 1051125656, 1051125759, 'BE', 'Belgium'), +('62.166.232.0', '62.166.255.255', 1051125760, 1051131903, 'NL', 'Netherlands'), +('62.167.0.0', '62.167.255.255', 1051131904, 1051197439, 'CH', 'Switzerland'), +('62.168.0.0', '62.168.63.255', 1051197440, 1051213823, 'CZ', 'Czech Republic'), +('62.168.64.0', '62.168.127.255', 1051213824, 1051230207, 'SK', 'Slovakia'), +('62.168.128.0', '62.168.159.255', 1051230208, 1051238399, 'SE', 'Sweden'), +('62.168.160.0', '62.168.191.255', 1051238400, 1051246591, 'GE', 'Georgia'), +('62.168.192.0', '62.168.223.255', 1051246592, 1051254783, 'DE', 'Germany'), +('62.168.224.0', '62.168.255.255', 1051254784, 1051262975, 'RU', 'Russian Federation'), +('62.169.0.0', '62.169.31.255', 1051262976, 1051271167, 'DE', 'Germany'), +('62.169.32.0', '62.169.63.255', 1051271168, 1051279359, 'IT', 'Italy'), +('62.169.64.0', '62.169.127.255', 1051279360, 1051295743, 'PT', 'Portugal'), +('62.169.128.0', '62.169.159.255', 1051295744, 1051303935, 'GB', 'United Kingdom'), +('62.169.160.0', '62.169.191.255', 1051303936, 1051312127, 'SK', 'Slovakia'), +('62.169.192.0', '62.169.255.255', 1051312128, 1051328511, 'GR', 'Greece'), +('62.170.0.0', '62.172.1.255', 1051328512, 1051460095, 'GB', 'United Kingdom'), +('62.172.2.0', '62.172.2.255', 1051460096, 1051460351, 'ES', 'Spain'), +('62.172.3.0', '62.172.255.255', 1051460352, 1051525119, 'GB', 'United Kingdom'), +('62.173.0.0', '62.173.31.255', 1051525120, 1051533311, 'MT', 'Malta'), +('62.173.32.0', '62.173.63.255', 1051533312, 1051541503, 'NG', 'Nigeria'), +('62.173.64.0', '62.173.127.255', 1051541504, 1051557887, 'GB', 'United Kingdom'), +('62.173.128.0', '62.173.159.255', 1051557888, 1051566079, 'RU', 'Russian Federation'), +('62.173.160.0', '62.173.191.255', 1051566080, 1051574271, 'IT', 'Italy'), +('62.173.192.0', '62.173.193.15', 1051574272, 1051574543, 'GB', 'United Kingdom'), +('62.173.193.16', '62.173.193.23', 1051574544, 1051574551, 'IT', 'Italy'), +('62.173.193.24', '62.173.193.95', 1051574552, 1051574623, 'GB', 'United Kingdom'), +('62.173.193.96', '62.173.193.127', 1051574624, 1051574655, 'GM', 'Gambia'), +('62.173.193.128', '62.173.198.71', 1051574656, 1051575879, 'GB', 'United Kingdom'), +('62.173.198.72', '62.173.198.75', 1051575880, 1051575883, 'US', 'United States'), +('62.173.198.76', '62.173.198.191', 1051575884, 1051575999, 'GB', 'United Kingdom'), +('62.173.198.192', '62.173.198.207', 1051576000, 1051576015, 'IT', 'Italy'), +('62.173.198.208', '62.173.202.71', 1051576016, 1051576903, 'GB', 'United Kingdom'), +('62.173.202.72', '62.173.202.79', 1051576904, 1051576911, 'US', 'United States'), +('62.173.202.80', '62.173.202.111', 1051576912, 1051576943, 'GB', 'United Kingdom'), +('62.173.202.112', '62.173.202.127', 1051576944, 1051576959, 'DE', 'Germany'), +('62.173.202.128', '62.173.204.159', 1051576960, 1051577503, 'GB', 'United Kingdom'), +('62.173.204.160', '62.173.204.175', 1051577504, 1051577519, 'NL', 'Netherlands'), +('62.173.204.176', '62.173.204.191', 1051577520, 1051577535, 'GB', 'United Kingdom'), +('62.173.204.192', '62.173.204.223', 1051577536, 1051577567, 'NL', 'Netherlands'), +('62.173.204.224', '62.173.204.231', 1051577568, 1051577575, 'BE', 'Belgium'), +('62.173.204.232', '62.173.204.239', 1051577576, 1051577583, 'GB', 'United Kingdom'), +('62.173.204.240', '62.173.204.243', 1051577584, 1051577587, 'FI', 'Finland'), +('62.173.204.244', '62.173.204.247', 1051577588, 1051577591, 'GB', 'United Kingdom'), +('62.173.204.248', '62.173.204.255', 1051577592, 1051577599, 'NL', 'Netherlands'), +('62.173.205.0', '62.173.205.255', 1051577600, 1051577855, 'GB', 'United Kingdom'), +('62.173.206.0', '62.173.206.255', 1051577856, 1051578111, 'NL', 'Netherlands'), +('62.173.207.0', '62.173.207.31', 1051578112, 1051578143, 'GB', 'United Kingdom'), +('62.173.207.32', '62.173.207.63', 1051578144, 1051578175, 'NL', 'Netherlands'), +('62.173.207.64', '62.173.207.127', 1051578176, 1051578239, 'BE', 'Belgium'), +('62.173.207.128', '62.173.207.151', 1051578240, 1051578263, 'FR', 'France'), +('62.173.207.152', '62.173.207.159', 1051578264, 1051578271, 'GB', 'United Kingdom'), +('62.173.207.160', '62.173.207.167', 1051578272, 1051578279, 'ES', 'Spain'), +('62.173.207.168', '62.173.207.175', 1051578280, 1051578287, 'GR', 'Greece'), +('62.173.207.176', '62.173.207.183', 1051578288, 1051578295, 'GB', 'United Kingdom'), +('62.173.207.184', '62.173.207.191', 1051578296, 1051578303, 'PL', 'Poland'), +('62.173.207.192', '62.173.207.223', 1051578304, 1051578335, 'NL', 'Netherlands'), +('62.173.207.224', '62.173.207.231', 1051578336, 1051578343, 'DE', 'Germany'), +('62.173.207.232', '62.173.207.239', 1051578344, 1051578351, 'NL', 'Netherlands'), +('62.173.207.240', '62.173.207.251', 1051578352, 1051578363, 'GB', 'United Kingdom'), +('62.173.207.252', '62.173.207.255', 1051578364, 1051578367, 'DE', 'Germany'), +('62.173.208.0', '62.173.215.255', 1051578368, 1051580415, 'SZ', 'Swaziland'), +('62.173.216.0', '62.173.231.255', 1051580416, 1051584511, 'GB', 'United Kingdom'), +('62.173.232.0', '62.173.236.127', 1051584512, 1051585663, 'MG', 'Madagascar'), +('62.173.236.128', '62.173.237.127', 1051585664, 1051585919, 'GB', 'United Kingdom'), +('62.173.237.128', '62.173.237.255', 1051585920, 1051586047, 'MG', 'Madagascar'), +('62.173.238.0', '62.173.238.127', 1051586048, 1051586175, 'GB', 'United Kingdom'), +('62.173.238.128', '62.173.238.255', 1051586176, 1051586303, 'MG', 'Madagascar'), +('62.173.239.0', '62.173.255.255', 1051586304, 1051590655, 'GB', 'United Kingdom'), +('62.174.0.0', '62.175.180.255', 1051590656, 1051702527, 'ES', 'Spain'), +('62.175.181.0', '62.175.181.255', 1051702528, 1051702783, 'US', 'United States'), +('62.175.182.0', '62.175.255.255', 1051702784, 1051721727, 'ES', 'Spain'), +('62.176.0.0', '62.176.31.255', 1051721728, 1051729919, 'RU', 'Russian Federation'), +('62.176.32.0', '62.176.63.255', 1051729920, 1051738111, 'FI', 'Finland'), +('62.176.64.0', '62.176.127.255', 1051738112, 1051754495, 'BG', 'Bulgaria'), +('62.176.128.0', '62.176.159.255', 1051754496, 1051762687, 'DE', 'Germany'), +('62.176.160.0', '62.176.191.255', 1051762688, 1051770879, 'SK', 'Slovakia'), +('62.176.192.0', '62.176.223.255', 1051770880, 1051779071, 'NO', 'Norway'), +('62.176.224.0', '62.176.255.255', 1051779072, 1051787263, 'DE', 'Germany'), +('62.177.0.0', '62.177.31.255', 1051787264, 1051795455, 'IT', 'Italy'), +('62.177.32.0', '62.177.63.255', 1051795456, 1051803647, 'RU', 'Russian Federation'), +('62.177.64.0', '62.177.127.255', 1051803648, 1051820031, 'CZ', 'Czech Republic'), +('62.177.128.0', '62.177.255.255', 1051820032, 1051852799, 'NL', 'Netherlands'), +('62.178.0.0', '62.178.255.255', 1051852800, 1051918335, 'AT', 'Austria'), +('62.179.0.0', '62.179.3.255', 1051918336, 1051919359, 'PL', 'Poland'), +('62.179.4.0', '62.179.7.255', 1051919360, 1051920383, 'AT', 'Austria'), +('62.179.8.0', '62.179.15.255', 1051920384, 1051922431, 'PL', 'Poland'), +('62.179.16.0', '62.179.255.255', 1051922432, 1051983871, 'AT', 'Austria'), +('62.180.0.0', '62.180.29.255', 1051983872, 1051991551, 'DE', 'Germany'), +('62.180.30.0', '62.180.30.255', 1051991552, 1051991807, 'EU', 'Europe'), +('62.180.31.0', '62.180.31.143', 1051991808, 1051991951, 'DE', 'Germany'), +('62.180.31.144', '62.180.31.255', 1051991952, 1051992063, 'EU', 'Europe'), +('62.180.32.0', '62.180.42.75', 1051992064, 1051994699, 'DE', 'Germany'), +('62.180.42.76', '62.180.42.79', 1051994700, 1051994703, 'BE', 'Belgium'), +('62.180.42.80', '62.180.42.95', 1051994704, 1051994719, 'DE', 'Germany'), +('62.180.42.96', '62.180.42.127', 1051994720, 1051994751, 'BE', 'Belgium'), +('62.180.42.128', '62.180.42.167', 1051994752, 1051994791, 'DE', 'Germany'), +('62.180.42.168', '62.180.42.175', 1051994792, 1051994799, 'NL', 'Netherlands'), +('62.180.42.176', '62.180.43.255', 1051994800, 1051995135, 'DE', 'Germany'), +('62.180.44.0', '62.180.44.255', 1051995136, 1051995391, 'EU', 'Europe'), +('62.180.45.0', '62.180.47.255', 1051995392, 1051996159, 'DE', 'Germany'), +('62.180.48.0', '62.180.48.175', 1051996160, 1051996335, 'EU', 'Europe'), +('62.180.48.176', '62.180.48.191', 1051996336, 1051996351, 'DE', 'Germany'), +('62.180.48.192', '62.180.50.207', 1051996352, 1051996879, 'EU', 'Europe'), +('62.180.50.208', '62.180.50.255', 1051996880, 1051996927, 'DE', 'Germany'), +('62.180.51.0', '62.180.52.255', 1051996928, 1051997439, 'EU', 'Europe'), +('62.180.53.0', '62.180.53.255', 1051997440, 1051997695, 'DE', 'Germany'), +('62.180.54.0', '62.180.54.15', 1051997696, 1051997711, 'EU', 'Europe'), +('62.180.54.16', '62.180.54.31', 1051997712, 1051997727, 'DE', 'Germany'), +('62.180.54.32', '62.180.54.255', 1051997728, 1051997951, 'EU', 'Europe'), +('62.180.55.0', '62.180.55.31', 1051997952, 1051997983, 'DE', 'Germany'), +('62.180.55.32', '62.180.56.39', 1051997984, 1051998247, 'EU', 'Europe'), +('62.180.56.40', '62.180.56.47', 1051998248, 1051998255, 'DE', 'Germany'), +('62.180.56.48', '62.180.57.223', 1051998256, 1051998687, 'EU', 'Europe'), +('62.180.57.224', '62.180.57.231', 1051998688, 1051998695, 'DE', 'Germany'), +('62.180.57.232', '62.180.59.63', 1051998696, 1051999039, 'EU', 'Europe'), +('62.180.59.64', '62.180.59.67', 1051999040, 1051999043, 'DE', 'Germany'), +('62.180.59.68', '62.180.59.159', 1051999044, 1051999135, 'EU', 'Europe'), +('62.180.59.160', '62.180.59.175', 1051999136, 1051999151, 'DE', 'Germany'), +('62.180.59.176', '62.180.59.191', 1051999152, 1051999167, 'EU', 'Europe'), +('62.180.59.192', '62.180.60.127', 1051999168, 1051999359, 'DE', 'Germany'), +('62.180.60.128', '62.180.60.255', 1051999360, 1051999487, 'EU', 'Europe'), +('62.180.61.0', '62.180.61.255', 1051999488, 1051999743, 'DE', 'Germany'), +('62.180.62.0', '62.180.62.255', 1051999744, 1051999999, 'EU', 'Europe'), +('62.180.63.0', '62.180.63.63', 1052000000, 1052000063, 'DE', 'Germany'), +('62.180.63.64', '62.180.63.127', 1052000064, 1052000127, 'EU', 'Europe'), +('62.180.63.128', '62.180.63.143', 1052000128, 1052000143, 'DE', 'Germany'), +('62.180.63.144', '62.180.63.191', 1052000144, 1052000191, 'EU', 'Europe'), +('62.180.63.192', '62.180.64.255', 1052000192, 1052000511, 'DE', 'Germany'), +('62.180.65.0', '62.180.65.7', 1052000512, 1052000519, 'EU', 'Europe'), +('62.180.65.8', '62.180.65.15', 1052000520, 1052000527, 'DE', 'Germany'), +('62.180.65.16', '62.180.65.23', 1052000528, 1052000535, 'EU', 'Europe'), +('62.180.65.24', '62.180.65.27', 1052000536, 1052000539, 'DE', 'Germany'), +('62.180.65.28', '62.180.65.63', 1052000540, 1052000575, 'EU', 'Europe'), +('62.180.65.64', '62.180.65.111', 1052000576, 1052000623, 'DE', 'Germany'), +('62.180.65.112', '62.180.65.119', 1052000624, 1052000631, 'EU', 'Europe'), +('62.180.65.120', '62.180.71.255', 1052000632, 1052002303, 'DE', 'Germany'), +('62.180.72.0', '62.180.72.7', 1052002304, 1052002311, 'EU', 'Europe'), +('62.180.72.8', '62.180.72.31', 1052002312, 1052002335, 'DE', 'Germany'), +('62.180.72.32', '62.180.72.63', 1052002336, 1052002367, 'EU', 'Europe'), +('62.180.72.64', '62.180.72.127', 1052002368, 1052002431, 'DE', 'Germany'), +('62.180.72.128', '62.180.72.135', 1052002432, 1052002439, 'EU', 'Europe'), +('62.180.72.136', '62.180.72.143', 1052002440, 1052002447, 'DE', 'Germany'), +('62.180.72.144', '62.180.72.159', 1052002448, 1052002463, 'EU', 'Europe'), +('62.180.72.160', '62.180.72.207', 1052002464, 1052002511, 'DE', 'Germany'), +('62.180.72.208', '62.180.72.215', 1052002512, 1052002519, 'EU', 'Europe'), +('62.180.72.216', '62.180.72.219', 1052002520, 1052002523, 'DE', 'Germany'), +('62.180.72.220', '62.180.72.223', 1052002524, 1052002527, 'EU', 'Europe'), +('62.180.72.224', '62.180.72.239', 1052002528, 1052002543, 'DE', 'Germany'), +('62.180.72.240', '62.180.75.255', 1052002544, 1052003327, 'EU', 'Europe'), +('62.180.76.0', '62.180.76.31', 1052003328, 1052003359, 'DE', 'Germany'), +('62.180.76.32', '62.180.76.63', 1052003360, 1052003391, 'EU', 'Europe'), +('62.180.76.64', '62.180.76.127', 1052003392, 1052003455, 'DE', 'Germany'), +('62.180.76.128', '62.180.76.151', 1052003456, 1052003479, 'EU', 'Europe'), +('62.180.76.152', '62.180.76.159', 1052003480, 1052003487, 'DE', 'Germany'), +('62.180.76.160', '62.180.76.223', 1052003488, 1052003551, 'EU', 'Europe'), +('62.180.76.224', '62.180.77.255', 1052003552, 1052003839, 'DE', 'Germany'), +('62.180.78.0', '62.180.78.127', 1052003840, 1052003967, 'EU', 'Europe'), +('62.180.78.128', '62.180.78.159', 1052003968, 1052003999, 'DE', 'Germany'), +('62.180.78.160', '62.180.81.63', 1052004000, 1052004671, 'EU', 'Europe'), +('62.180.81.64', '62.180.81.151', 1052004672, 1052004759, 'DE', 'Germany'), +('62.180.81.152', '62.180.81.159', 1052004760, 1052004767, 'EU', 'Europe'), +('62.180.81.160', '62.180.81.175', 1052004768, 1052004783, 'DE', 'Germany'), +('62.180.81.176', '62.180.81.207', 1052004784, 1052004815, 'EU', 'Europe'), +('62.180.81.208', '62.180.81.223', 1052004816, 1052004831, 'DE', 'Germany'), +('62.180.81.224', '62.180.82.31', 1052004832, 1052004895, 'EU', 'Europe'), +('62.180.82.32', '62.180.82.95', 1052004896, 1052004959, 'DE', 'Germany'), +('62.180.82.96', '62.180.82.255', 1052004960, 1052005119, 'EU', 'Europe'), +('62.180.83.0', '62.180.83.31', 1052005120, 1052005151, 'DE', 'Germany'), +('62.180.83.32', '62.180.83.127', 1052005152, 1052005247, 'EU', 'Europe'), +('62.180.83.128', '62.180.84.255', 1052005248, 1052005631, 'DE', 'Germany'), +('62.180.85.0', '62.180.85.255', 1052005632, 1052005887, 'EU', 'Europe'), +('62.180.86.0', '62.180.86.23', 1052005888, 1052005911, 'DE', 'Germany'), +('62.180.86.24', '62.180.88.143', 1052005912, 1052006543, 'EU', 'Europe'), +('62.180.88.144', '62.180.88.159', 1052006544, 1052006559, 'DE', 'Germany'), +('62.180.88.160', '62.180.88.175', 1052006560, 1052006575, 'EU', 'Europe'), +('62.180.88.176', '62.180.88.207', 1052006576, 1052006607, 'DE', 'Germany'), +('62.180.88.208', '62.180.90.159', 1052006608, 1052007071, 'EU', 'Europe'), +('62.180.90.160', '62.180.90.191', 1052007072, 1052007103, 'DE', 'Germany'), +('62.180.90.192', '62.180.92.7', 1052007104, 1052007431, 'EU', 'Europe'), +('62.180.92.8', '62.180.92.15', 1052007432, 1052007439, 'DE', 'Germany'), +('62.180.92.16', '62.180.92.31', 1052007440, 1052007455, 'EU', 'Europe'), +('62.180.92.32', '62.180.92.47', 1052007456, 1052007471, 'DE', 'Germany'), +('62.180.92.48', '62.180.92.95', 1052007472, 1052007519, 'EU', 'Europe'), +('62.180.92.96', '62.180.92.111', 1052007520, 1052007535, 'DE', 'Germany'), +('62.180.92.112', '62.180.93.95', 1052007536, 1052007775, 'EU', 'Europe'), +('62.180.93.96', '62.180.93.111', 1052007776, 1052007791, 'DE', 'Germany'), +('62.180.93.112', '62.180.93.255', 1052007792, 1052007935, 'EU', 'Europe'), +('62.180.94.0', '62.180.95.31', 1052007936, 1052008223, 'DE', 'Germany'), +('62.180.95.32', '62.180.96.67', 1052008224, 1052008515, 'EU', 'Europe'), +('62.180.96.68', '62.180.96.79', 1052008516, 1052008527, 'DE', 'Germany'), +('62.180.96.80', '62.180.96.95', 1052008528, 1052008543, 'EU', 'Europe'), +('62.180.96.96', '62.180.96.135', 1052008544, 1052008583, 'DE', 'Germany'), +('62.180.96.136', '62.180.96.159', 1052008584, 1052008607, 'EU', 'Europe'), +('62.180.96.160', '62.180.96.175', 1052008608, 1052008623, 'DE', 'Germany'), +('62.180.96.176', '62.180.96.191', 1052008624, 1052008639, 'EU', 'Europe'), +('62.180.96.192', '62.180.96.239', 1052008640, 1052008687, 'DE', 'Germany'), +('62.180.96.240', '62.180.96.255', 1052008688, 1052008703, 'EU', 'Europe'), +('62.180.97.0', '62.180.98.127', 1052008704, 1052009087, 'DE', 'Germany'), +('62.180.98.128', '62.180.99.255', 1052009088, 1052009471, 'EU', 'Europe'), +('62.180.100.0', '62.180.100.15', 1052009472, 1052009487, 'DE', 'Germany'), +('62.180.100.16', '62.180.100.31', 1052009488, 1052009503, 'EU', 'Europe'), +('62.180.100.32', '62.180.100.63', 1052009504, 1052009535, 'DE', 'Germany'), +('62.180.100.64', '62.180.100.127', 1052009536, 1052009599, 'EU', 'Europe'), +('62.180.100.128', '62.180.100.135', 1052009600, 1052009607, 'DE', 'Germany'), +('62.180.100.136', '62.180.103.223', 1052009608, 1052010463, 'EU', 'Europe'), +('62.180.103.224', '62.180.104.23', 1052010464, 1052010519, 'DE', 'Germany'), +('62.180.104.24', '62.180.104.31', 1052010520, 1052010527, 'EU', 'Europe'), +('62.180.104.32', '62.180.104.63', 1052010528, 1052010559, 'DE', 'Germany'), +('62.180.104.64', '62.180.104.111', 1052010560, 1052010607, 'EU', 'Europe'), +('62.180.104.112', '62.180.104.159', 1052010608, 1052010655, 'DE', 'Germany'), +('62.180.104.160', '62.180.104.255', 1052010656, 1052010751, 'EU', 'Europe'), +('62.180.105.0', '62.180.106.127', 1052010752, 1052011135, 'DE', 'Germany'), +('62.180.106.128', '62.180.106.255', 1052011136, 1052011263, 'EU', 'Europe'), +('62.180.107.0', '62.180.111.47', 1052011264, 1052012335, 'DE', 'Germany'), +('62.180.111.48', '62.180.111.87', 1052012336, 1052012375, 'EU', 'Europe'), +('62.180.111.88', '62.180.111.111', 1052012376, 1052012399, 'DE', 'Germany'), +('62.180.111.112', '62.180.111.255', 1052012400, 1052012543, 'EU', 'Europe'), +('62.180.112.0', '62.180.113.255', 1052012544, 1052013055, 'DE', 'Germany'), +('62.180.114.0', '62.180.114.3', 1052013056, 1052013059, 'EU', 'Europe'), +('62.180.114.4', '62.180.114.7', 1052013060, 1052013063, 'DE', 'Germany'), +('62.180.114.8', '62.180.114.15', 1052013064, 1052013071, 'EU', 'Europe'), +('62.180.114.16', '62.180.114.39', 1052013072, 1052013095, 'DE', 'Germany'), +('62.180.114.40', '62.180.114.63', 1052013096, 1052013119, 'EU', 'Europe'), +('62.180.114.64', '62.180.114.71', 1052013120, 1052013127, 'DE', 'Germany'), +('62.180.114.72', '62.180.114.87', 1052013128, 1052013143, 'EU', 'Europe'), +('62.180.114.88', '62.180.114.95', 1052013144, 1052013151, 'DE', 'Germany'), +('62.180.114.96', '62.180.114.159', 1052013152, 1052013215, 'EU', 'Europe'), +('62.180.114.160', '62.180.114.207', 1052013216, 1052013263, 'DE', 'Germany'), +('62.180.114.208', '62.180.114.255', 1052013264, 1052013311, 'EU', 'Europe'), +('62.180.115.0', '62.180.115.255', 1052013312, 1052013567, 'DE', 'Germany'), +('62.180.116.0', '62.180.116.127', 1052013568, 1052013695, 'EU', 'Europe'), +('62.180.116.128', '62.180.116.255', 1052013696, 1052013823, 'DE', 'Germany'), +('62.180.117.0', '62.180.117.7', 1052013824, 1052013831, 'EU', 'Europe'), +('62.180.117.8', '62.180.117.31', 1052013832, 1052013855, 'DE', 'Germany'), +('62.180.117.32', '62.180.117.63', 1052013856, 1052013887, 'EU', 'Europe'), +('62.180.117.64', '62.180.117.127', 1052013888, 1052013951, 'DE', 'Germany'), +('62.180.117.128', '62.180.117.135', 1052013952, 1052013959, 'EU', 'Europe'), +('62.180.117.136', '62.180.117.142', 1052013960, 1052013966, 'DE', 'Germany'), +('62.180.117.143', '62.180.117.143', 1052013967, 1052013967, 'EU', 'Europe'), +('62.180.117.144', '62.180.117.159', 1052013968, 1052013983, 'DE', 'Germany'), +('62.180.117.160', '62.180.117.175', 1052013984, 1052013999, 'EU', 'Europe'), +('62.180.117.176', '62.180.117.183', 1052014000, 1052014007, 'DE', 'Germany'), +('62.180.117.184', '62.180.117.191', 1052014008, 1052014015, 'EU', 'Europe'), +('62.180.117.192', '62.180.118.223', 1052014016, 1052014303, 'DE', 'Germany'), +('62.180.118.224', '62.180.119.255', 1052014304, 1052014591, 'EU', 'Europe'), +('62.180.120.0', '62.180.120.31', 1052014592, 1052014623, 'DE', 'Germany'), +('62.180.120.32', '62.180.123.7', 1052014624, 1052015367, 'EU', 'Europe'), +('62.180.123.8', '62.180.123.15', 1052015368, 1052015375, 'DE', 'Germany'), +('62.180.123.16', '62.180.123.63', 1052015376, 1052015423, 'EU', 'Europe'), +('62.180.123.64', '62.180.123.159', 1052015424, 1052015519, 'DE', 'Germany'), +('62.180.123.160', '62.180.123.191', 1052015520, 1052015551, 'EU', 'Europe'), +('62.180.123.192', '62.180.123.223', 1052015552, 1052015583, 'DE', 'Germany'), +('62.180.123.224', '62.180.124.15', 1052015584, 1052015631, 'EU', 'Europe'), +('62.180.124.16', '62.180.124.31', 1052015632, 1052015647, 'DE', 'Germany'), +('62.180.124.32', '62.180.124.79', 1052015648, 1052015695, 'EU', 'Europe'), +('62.180.124.80', '62.180.124.111', 1052015696, 1052015727, 'DE', 'Germany'), +('62.180.124.112', '62.180.125.127', 1052015728, 1052015999, 'EU', 'Europe'), +('62.180.125.128', '62.180.125.255', 1052016000, 1052016127, 'DE', 'Germany'), +('62.180.126.0', '62.180.126.79', 1052016128, 1052016207, 'EU', 'Europe'), +('62.180.126.80', '62.180.126.95', 1052016208, 1052016223, 'DE', 'Germany'), +('62.180.126.96', '62.180.126.111', 1052016224, 1052016239, 'EU', 'Europe'), +('62.180.126.112', '62.180.126.119', 1052016240, 1052016247, 'DE', 'Germany'), +('62.180.126.120', '62.180.126.127', 1052016248, 1052016255, 'EU', 'Europe'), +('62.180.126.128', '62.180.126.195', 1052016256, 1052016323, 'DE', 'Germany'), +('62.180.126.196', '62.180.126.223', 1052016324, 1052016351, 'EU', 'Europe'), +('62.180.126.224', '62.180.126.255', 1052016352, 1052016383, 'DE', 'Germany'), +('62.180.127.0', '62.180.127.63', 1052016384, 1052016447, 'EU', 'Europe'), +('62.180.127.64', '62.180.127.79', 1052016448, 1052016463, 'DE', 'Germany'), +('62.180.127.80', '62.180.127.95', 1052016464, 1052016479, 'EU', 'Europe'), +('62.180.127.96', '62.180.127.127', 1052016480, 1052016511, 'DE', 'Germany'), +('62.180.127.128', '62.180.127.255', 1052016512, 1052016639, 'EU', 'Europe'), +('62.180.128.0', '62.180.128.15', 1052016640, 1052016655, 'DE', 'Germany'), +('62.180.128.16', '62.180.128.39', 1052016656, 1052016679, 'EU', 'Europe'), +('62.180.128.40', '62.180.128.47', 1052016680, 1052016687, 'DE', 'Germany'), +('62.180.128.48', '62.180.128.255', 1052016688, 1052016895, 'EU', 'Europe'), +('62.180.129.0', '62.180.129.255', 1052016896, 1052017151, 'DE', 'Germany'), +('62.180.130.0', '62.180.130.79', 1052017152, 1052017231, 'EU', 'Europe'), +('62.180.130.80', '62.180.130.95', 1052017232, 1052017247, 'DE', 'Germany'), +('62.180.130.96', '62.180.130.127', 1052017248, 1052017279, 'EU', 'Europe'), +('62.180.130.128', '62.180.130.191', 1052017280, 1052017343, 'DE', 'Germany'), +('62.180.130.192', '62.180.131.63', 1052017344, 1052017471, 'EU', 'Europe'), +('62.180.131.64', '62.180.131.159', 1052017472, 1052017567, 'DE', 'Germany'), +('62.180.131.160', '62.180.131.191', 1052017568, 1052017599, 'EU', 'Europe'), +('62.180.131.192', '62.180.131.255', 1052017600, 1052017663, 'DE', 'Germany'), +('62.180.132.0', '62.180.133.247', 1052017664, 1052018167, 'EU', 'Europe'), +('62.180.133.248', '62.180.134.255', 1052018168, 1052018431, 'DE', 'Germany'), +('62.180.135.0', '62.180.136.31', 1052018432, 1052018719, 'EU', 'Europe'), +('62.180.136.32', '62.180.136.79', 1052018720, 1052018767, 'DE', 'Germany'), +('62.180.136.80', '62.180.137.255', 1052018768, 1052019199, 'EU', 'Europe'), +('62.180.138.0', '62.180.138.255', 1052019200, 1052019455, 'DE', 'Germany'), +('62.180.139.0', '62.180.140.23', 1052019456, 1052019735, 'EU', 'Europe'), +('62.180.140.24', '62.180.140.63', 1052019736, 1052019775, 'DE', 'Germany'), +('62.180.140.64', '62.180.140.159', 1052019776, 1052019871, 'EU', 'Europe'), +('62.180.140.160', '62.180.141.79', 1052019872, 1052020047, 'DE', 'Germany'), +('62.180.141.80', '62.180.143.192', 1052020048, 1052020672, 'EU', 'Europe'), +('62.180.143.193', '62.180.143.222', 1052020673, 1052020702, 'DE', 'Germany'), +('62.180.143.223', '62.180.143.223', 1052020703, 1052020703, 'EU', 'Europe'), +('62.180.143.224', '62.180.225.127', 1052020704, 1052041599, 'DE', 'Germany'), +('62.180.225.128', '62.180.225.255', 1052041600, 1052041727, 'EU', 'Europe'), +('62.180.226.0', '62.180.226.135', 1052041728, 1052041863, 'DE', 'Germany'), +('62.180.226.136', '62.180.226.255', 1052041864, 1052041983, 'EU', 'Europe'), +('62.180.227.0', '62.180.227.63', 1052041984, 1052042047, 'DE', 'Germany'), +('62.180.227.64', '62.180.227.103', 1052042048, 1052042087, 'NL', 'Netherlands'), +('62.180.227.104', '62.180.227.255', 1052042088, 1052042239, 'DE', 'Germany'), +('62.180.228.0', '62.180.228.63', 1052042240, 1052042303, 'EU', 'Europe'), +('62.180.228.64', '62.180.228.71', 1052042304, 1052042311, 'DE', 'Germany'), +('62.180.228.72', '62.180.228.127', 1052042312, 1052042367, 'EU', 'Europe'), +('62.180.228.128', '62.180.228.191', 1052042368, 1052042431, 'DE', 'Germany'), +('62.180.228.192', '62.180.228.239', 1052042432, 1052042479, 'EU', 'Europe'), +('62.180.228.240', '62.180.229.255', 1052042480, 1052042751, 'DE', 'Germany'), +('62.180.230.0', '62.180.230.63', 1052042752, 1052042815, 'EU', 'Europe'), +('62.180.230.64', '62.180.230.111', 1052042816, 1052042863, 'DE', 'Germany'), +('62.180.230.112', '62.180.230.255', 1052042864, 1052043007, 'EU', 'Europe'), +('62.180.231.0', '62.180.231.255', 1052043008, 1052043263, 'DE', 'Germany'), +('62.180.232.0', '62.180.233.7', 1052043264, 1052043527, 'EU', 'Europe'), +('62.180.233.8', '62.180.233.15', 1052043528, 1052043535, 'DE', 'Germany'), +('62.180.233.16', '62.180.233.31', 1052043536, 1052043551, 'EU', 'Europe'), +('62.180.233.32', '62.180.233.55', 1052043552, 1052043575, 'DE', 'Germany'), +('62.180.233.56', '62.180.233.63', 1052043576, 1052043583, 'EU', 'Europe'), +('62.180.233.64', '62.180.233.131', 1052043584, 1052043651, 'DE', 'Germany'), +('62.180.233.132', '62.180.233.143', 1052043652, 1052043663, 'EU', 'Europe'), +('62.180.233.144', '62.180.233.159', 1052043664, 1052043679, 'DE', 'Germany'), +('62.180.233.160', '62.180.233.239', 1052043680, 1052043759, 'EU', 'Europe'), +('62.180.233.240', '62.180.233.255', 1052043760, 1052043775, 'DE', 'Germany'), +('62.180.234.0', '62.180.235.255', 1052043776, 1052044287, 'EU', 'Europe'), +('62.180.236.0', '62.180.236.63', 1052044288, 1052044351, 'DE', 'Germany'), +('62.180.236.64', '62.180.236.95', 1052044352, 1052044383, 'EU', 'Europe'), +('62.180.236.96', '62.180.236.111', 1052044384, 1052044399, 'DE', 'Germany'), +('62.180.236.112', '62.180.236.127', 1052044400, 1052044415, 'EU', 'Europe'), +('62.180.236.128', '62.180.236.159', 1052044416, 1052044447, 'DE', 'Germany'), +('62.180.236.160', '62.180.236.223', 1052044448, 1052044511, 'EU', 'Europe'), +('62.180.236.224', '62.180.236.239', 1052044512, 1052044527, 'DE', 'Germany'), +('62.180.236.240', '62.180.236.255', 1052044528, 1052044543, 'EU', 'Europe'), +('62.180.237.0', '62.180.238.127', 1052044544, 1052044927, 'DE', 'Germany'), +('62.180.238.128', '62.180.238.223', 1052044928, 1052045023, 'EU', 'Europe'), +('62.180.238.224', '62.180.238.255', 1052045024, 1052045055, 'DE', 'Germany'), +('62.180.239.0', '62.180.239.255', 1052045056, 1052045311, 'EU', 'Europe'), +('62.180.240.0', '62.180.243.55', 1052045312, 1052046135, 'DE', 'Germany'), +('62.180.243.56', '62.180.243.255', 1052046136, 1052046335, 'EU', 'Europe'), +('62.180.244.0', '62.180.244.255', 1052046336, 1052046591, 'DE', 'Germany'), +('62.180.245.0', '62.180.245.255', 1052046592, 1052046847, 'EU', 'Europe'), +('62.180.246.0', '62.180.247.35', 1052046848, 1052047139, 'DE', 'Germany'), +('62.180.247.36', '62.180.247.255', 1052047140, 1052047359, 'EU', 'Europe'), +('62.180.248.0', '62.180.249.255', 1052047360, 1052047871, 'DE', 'Germany'), +('62.180.250.0', '62.180.254.255', 1052047872, 1052049151, 'EU', 'Europe'), +('62.180.255.0', '62.180.255.31', 1052049152, 1052049183, 'DE', 'Germany'), +('62.180.255.32', '62.180.255.255', 1052049184, 1052049407, 'EU', 'Europe'), +('62.181.0.0', '62.181.31.255', 1052049408, 1052057599, 'PL', 'Poland'), +('62.181.32.0', '62.181.63.255', 1052057600, 1052065791, 'RU', 'Russian Federation'), +('62.181.64.0', '62.181.127.255', 1052065792, 1052082175, 'SE', 'Sweden'), +('62.181.128.0', '62.181.159.255', 1052082176, 1052090367, 'DE', 'Germany'), +('62.181.160.0', '62.181.191.255', 1052090368, 1052098559, 'PL', 'Poland'), +('62.181.192.0', '62.182.7.255', 1052098560, 1052116991, 'SE', 'Sweden'), +('62.182.8.0', '62.182.15.255', 1052116992, 1052119039, 'RU', 'Russian Federation'), +('62.182.16.0', '62.182.23.255', 1052119040, 1052121087, 'RO', 'Romania'), +('62.182.24.0', '62.182.55.255', 1052121088, 1052129279, 'RU', 'Russian Federation'), +('62.182.56.0', '62.182.63.255', 1052129280, 1052131327, 'BE', 'Belgium'), +('62.182.64.0', '62.182.79.255', 1052131328, 1052135423, 'RU', 'Russian Federation'), +('62.182.80.0', '62.182.87.255', 1052135424, 1052137471, 'UA', 'Ukraine'), +('62.182.88.0', '62.182.95.255', 1052137472, 1052139519, 'RU', 'Russian Federation'), +('62.182.96.0', '62.182.103.255', 1052139520, 1052141567, 'DE', 'Germany'), +('62.182.104.0', '62.182.111.255', 1052141568, 1052143615, 'RU', 'Russian Federation'), +('62.182.112.0', '62.182.119.255', 1052143616, 1052145663, 'BG', 'Bulgaria'), +('62.182.120.0', '62.182.127.255', 1052145664, 1052147711, 'UA', 'Ukraine'), +('62.182.128.0', '62.182.151.255', 1052147712, 1052153855, 'RU', 'Russian Federation'), +('62.182.152.0', '62.182.167.255', 1052153856, 1052157951, 'UA', 'Ukraine'), +('62.182.168.0', '62.182.175.255', 1052157952, 1052159999, 'DK', 'Denmark'), +('62.182.176.0', '62.182.183.255', 1052160000, 1052162047, 'LU', 'Luxembourg'), +('62.182.184.0', '62.182.191.255', 1052162048, 1052164095, 'CH', 'Switzerland'), +('62.182.192.0', '62.182.215.255', 1052164096, 1052170239, 'RU', 'Russian Federation'), +('62.182.216.0', '62.182.223.255', 1052170240, 1052172287, 'SE', 'Sweden'), +('62.182.224.0', '62.182.231.255', 1052172288, 1052174335, 'PL', 'Poland'), +('62.182.232.0', '62.182.239.255', 1052174336, 1052176383, 'CZ', 'Czech Republic'), +('62.182.240.0', '62.182.247.255', 1052176384, 1052178431, 'NL', 'Netherlands'), +('62.182.248.0', '62.182.255.255', 1052178432, 1052180479, 'DK', 'Denmark'), +('62.183.0.0', '62.183.127.255', 1052180480, 1052213247, 'RU', 'Russian Federation'), +('62.183.128.0', '62.183.204.103', 1052213248, 1052232807, 'FI', 'Finland'), +('62.183.204.104', '62.183.204.119', 1052232808, 1052232823, 'AX', 'Aland Islands'), +('62.183.204.120', '62.183.255.255', 1052232824, 1052246015, 'FI', 'Finland'), +('62.184.0.0', '62.184.3.255', 1052246016, 1052247039, 'DE', 'Germany'), +('62.184.4.0', '62.184.4.255', 1052247040, 1052247295, 'FR', 'France'), +('62.184.5.0', '62.184.5.63', 1052247296, 1052247359, 'DE', 'Germany'), +('62.184.5.64', '62.184.5.95', 1052247360, 1052247391, 'FR', 'France'), +('62.184.5.96', '62.184.5.111', 1052247392, 1052247407, 'DE', 'Germany'), +('62.184.5.112', '62.184.5.119', 1052247408, 1052247415, 'GB', 'United Kingdom'), +('62.184.5.120', '62.184.5.127', 1052247416, 1052247423, 'NL', 'Netherlands'), +('62.184.5.128', '62.184.5.255', 1052247424, 1052247551, 'GB', 'United Kingdom'), +('62.184.6.0', '62.184.8.31', 1052247552, 1052248095, 'DE', 'Germany'), +('62.184.8.32', '62.184.8.63', 1052248096, 1052248127, 'ZA', 'South Africa'), +('62.184.8.64', '62.184.8.71', 1052248128, 1052248135, 'FR', 'France'), +('62.184.8.72', '62.184.8.79', 1052248136, 1052248143, 'DE', 'Germany'), +('62.184.8.80', '62.184.8.95', 1052248144, 1052248159, 'BE', 'Belgium'), +('62.184.8.96', '62.184.13.31', 1052248160, 1052249375, 'DE', 'Germany'), +('62.184.13.32', '62.184.13.63', 1052249376, 1052249407, 'IT', 'Italy'), +('62.184.13.64', '62.184.13.127', 1052249408, 1052249471, 'DE', 'Germany'), +('62.184.13.128', '62.184.13.159', 1052249472, 1052249503, 'ZA', 'South Africa'), +('62.184.13.160', '62.184.18.31', 1052249504, 1052250655, 'DE', 'Germany'), +('62.184.18.32', '62.184.18.63', 1052250656, 1052250687, 'GB', 'United Kingdom'), +('62.184.18.64', '62.184.18.95', 1052250688, 1052250719, 'IL', 'Israel'), +('62.184.18.96', '62.184.18.111', 1052250720, 1052250735, 'IT', 'Italy'), +('62.184.18.112', '62.184.18.127', 1052250736, 1052250751, 'NL', 'Netherlands'), +('62.184.18.128', '62.184.26.191', 1052250752, 1052252863, 'DE', 'Germany'), +('62.184.26.192', '62.184.26.207', 1052252864, 1052252879, 'GB', 'United Kingdom'), +('62.184.26.208', '62.184.26.223', 1052252880, 1052252895, 'ZA', 'South Africa'), +('62.184.26.224', '62.184.26.255', 1052252896, 1052252927, 'IT', 'Italy'), +('62.184.27.0', '62.184.31.255', 1052252928, 1052254207, 'DE', 'Germany'), +('62.184.32.0', '62.184.36.23', 1052254208, 1052255255, 'NL', 'Netherlands'), +('62.184.36.24', '62.184.36.31', 1052255256, 1052255263, 'GB', 'United Kingdom'), +('62.184.36.32', '62.184.38.127', 1052255264, 1052255871, 'NL', 'Netherlands'), +('62.184.38.128', '62.184.38.191', 1052255872, 1052255935, 'GB', 'United Kingdom'), +('62.184.38.192', '62.184.43.255', 1052255936, 1052257279, 'NL', 'Netherlands'), +('62.184.44.0', '62.184.45.255', 1052257280, 1052257791, 'FR', 'France'), +('62.184.46.0', '62.184.47.255', 1052257792, 1052258303, 'AT', 'Austria'), +('62.184.48.0', '62.184.57.15', 1052258304, 1052260623, 'FR', 'France'), +('62.184.57.16', '62.184.57.23', 1052260624, 1052260631, 'ZA', 'South Africa'), +('62.184.57.24', '62.184.57.31', 1052260632, 1052260639, 'AT', 'Austria'), +('62.184.57.32', '62.184.57.127', 1052260640, 1052260735, 'FR', 'France'), +('62.184.57.128', '62.184.57.255', 1052260736, 1052260863, 'NL', 'Netherlands'), +('62.184.58.0', '62.184.58.31', 1052260864, 1052260895, 'TR', 'Turkey'), +('62.184.58.32', '62.184.58.191', 1052260896, 1052261055, 'FR', 'France'), +('62.184.58.192', '62.184.58.255', 1052261056, 1052261119, 'NL', 'Netherlands'), +('62.184.59.0', '62.184.63.255', 1052261120, 1052262399, 'FR', 'France'), +('62.184.64.0', '62.184.67.255', 1052262400, 1052263423, 'DK', 'Denmark'), +('62.184.68.0', '62.184.69.255', 1052263424, 1052263935, 'DE', 'Germany'), +('62.184.70.0', '62.184.71.255', 1052263936, 1052264447, 'DK', 'Denmark'), +('62.184.72.0', '62.184.72.191', 1052264448, 1052264639, 'SE', 'Sweden'), +('62.184.72.192', '62.184.72.255', 1052264640, 1052264703, 'IT', 'Italy'), +('62.184.73.0', '62.184.75.255', 1052264704, 1052265471, 'SE', 'Sweden'), +('62.184.76.0', '62.184.76.47', 1052265472, 1052265519, 'IT', 'Italy'), +('62.184.76.48', '62.184.76.63', 1052265520, 1052265535, 'GB', 'United Kingdom'), +('62.184.76.64', '62.184.76.127', 1052265536, 1052265599, 'DE', 'Germany'), +('62.184.76.128', '62.184.77.255', 1052265600, 1052265983, 'IT', 'Italy'), +('62.184.78.0', '62.184.78.255', 1052265984, 1052266239, 'DE', 'Germany'), +('62.184.79.0', '62.184.79.255', 1052266240, 1052266495, 'GB', 'United Kingdom'), +('62.184.80.0', '62.184.87.255', 1052266496, 1052268543, 'BE', 'Belgium'), +('62.184.88.0', '62.184.88.63', 1052268544, 1052268607, 'ZA', 'South Africa'), +('62.184.88.64', '62.184.88.127', 1052268608, 1052268671, 'BE', 'Belgium'), +('62.184.88.128', '62.184.88.159', 1052268672, 1052268703, 'IT', 'Italy'), +('62.184.88.160', '62.184.88.175', 1052268704, 1052268719, 'ZA', 'South Africa'), +('62.184.88.176', '62.184.88.191', 1052268720, 1052268735, 'NL', 'Netherlands'), +('62.184.88.192', '62.184.88.255', 1052268736, 1052268799, 'DE', 'Germany'), +('62.184.89.0', '62.184.95.255', 1052268800, 1052270591, 'ZA', 'South Africa'), +('62.184.96.0', '62.184.100.255', 1052270592, 1052271871, 'FR', 'France'), +('62.184.101.0', '62.184.101.255', 1052271872, 1052272127, 'BE', 'Belgium'), +('62.184.102.0', '62.184.103.159', 1052272128, 1052272543, 'FR', 'France'), +('62.184.103.160', '62.184.103.191', 1052272544, 1052272575, 'AT', 'Austria'), +('62.184.103.192', '62.184.103.255', 1052272576, 1052272639, 'SE', 'Sweden'), +('62.184.104.0', '62.184.109.255', 1052272640, 1052274175, 'FR', 'France'), +('62.184.110.0', '62.184.111.255', 1052274176, 1052274687, 'ZA', 'South Africa'), +('62.184.112.0', '62.184.112.255', 1052274688, 1052274943, 'ES', 'Spain'), +('62.184.113.0', '62.184.113.255', 1052274944, 1052275199, 'IT', 'Italy'), +('62.184.114.0', '62.184.115.255', 1052275200, 1052275711, 'AT', 'Austria'), +('62.184.116.0', '62.184.119.255', 1052275712, 1052276735, 'GB', 'United Kingdom'), +('62.184.120.0', '62.184.125.191', 1052276736, 1052278207, 'IT', 'Italy'), +('62.184.125.192', '62.184.125.255', 1052278208, 1052278271, 'GB', 'United Kingdom'), +('62.184.126.0', '62.184.127.255', 1052278272, 1052278783, 'IT', 'Italy'), +('62.184.128.0', '62.184.128.39', 1052278784, 1052278823, 'CH', 'Switzerland'), +('62.184.128.40', '62.184.128.47', 1052278824, 1052278831, 'GB', 'United Kingdom'), +('62.184.128.48', '62.184.128.63', 1052278832, 1052278847, 'AT', 'Austria'), +('62.184.128.64', '62.184.128.79', 1052278848, 1052278863, 'ZA', 'South Africa'), +('62.184.128.80', '62.184.128.95', 1052278864, 1052278879, 'NL', 'Netherlands'), +('62.184.128.96', '62.184.150.191', 1052278880, 1052284607, 'GB', 'United Kingdom'), +('62.184.150.192', '62.184.150.255', 1052284608, 1052284671, 'EU', 'Europe'), +('62.184.151.0', '62.184.159.255', 1052284672, 1052286975, 'GB', 'United Kingdom'), +('62.184.160.0', '62.184.161.255', 1052286976, 1052287487, 'CH', 'Switzerland'), +('62.184.162.0', '62.184.164.255', 1052287488, 1052288255, 'SE', 'Sweden'), +('62.184.165.0', '62.184.165.31', 1052288256, 1052288287, 'EU', 'Europe'), +('62.184.165.32', '62.184.165.39', 1052288288, 1052288295, 'IL', 'Israel'), +('62.184.165.40', '62.184.165.47', 1052288296, 1052288303, 'BE', 'Belgium'), +('62.184.165.48', '62.184.165.63', 1052288304, 1052288319, 'AT', 'Austria'), +('62.184.165.64', '62.184.165.127', 1052288320, 1052288383, 'EU', 'Europe'), +('62.184.165.128', '62.184.165.255', 1052288384, 1052288511, 'FR', 'France'), +('62.184.166.0', '62.184.167.255', 1052288512, 1052289023, 'AT', 'Austria'), +('62.184.168.0', '62.184.168.127', 1052289024, 1052289151, 'GB', 'United Kingdom'), +('62.184.168.128', '62.184.168.159', 1052289152, 1052289183, 'CH', 'Switzerland'), +('62.184.168.160', '62.184.168.191', 1052289184, 1052289215, 'DE', 'Germany'), +('62.184.168.192', '62.184.168.255', 1052289216, 1052289279, 'GB', 'United Kingdom'), +('62.184.169.0', '62.184.169.255', 1052289280, 1052289535, 'EU', 'Europe'), +('62.184.170.0', '62.184.171.255', 1052289536, 1052290047, 'GB', 'United Kingdom'), +('62.184.172.0', '62.184.172.15', 1052290048, 1052290063, 'CH', 'Switzerland'), +('62.184.172.16', '62.184.172.255', 1052290064, 1052290303, 'GB', 'United Kingdom'), +('62.184.173.0', '62.184.173.63', 1052290304, 1052290367, 'EU', 'Europe'), +('62.184.173.64', '62.184.173.95', 1052290368, 1052290399, 'CH', 'Switzerland'), +('62.184.173.96', '62.184.173.127', 1052290400, 1052290431, 'ZA', 'South Africa'), +('62.184.173.128', '62.184.173.255', 1052290432, 1052290559, 'FR', 'France'), +('62.184.174.0', '62.184.174.15', 1052290560, 1052290575, 'GB', 'United Kingdom'), +('62.184.174.16', '62.184.174.31', 1052290576, 1052290591, 'BE', 'Belgium'), +('62.184.174.32', '62.184.174.79', 1052290592, 1052290639, 'GB', 'United Kingdom'), +('62.184.174.80', '62.184.174.95', 1052290640, 1052290655, 'ZA', 'South Africa'), +('62.184.174.96', '62.184.174.127', 1052290656, 1052290687, 'DE', 'Germany'), +('62.184.174.128', '62.184.174.255', 1052290688, 1052290815, 'GB', 'United Kingdom'), +('62.184.175.0', '62.184.175.15', 1052290816, 1052290831, 'CH', 'Switzerland'), +('62.184.175.16', '62.184.176.255', 1052290832, 1052291327, 'GB', 'United Kingdom'), +('62.184.177.0', '62.184.177.255', 1052291328, 1052291583, 'CH', 'Switzerland'), +('62.184.178.0', '62.184.178.95', 1052291584, 1052291679, 'FI', 'Finland'), +('62.184.178.96', '62.184.178.103', 1052291680, 1052291687, 'TR', 'Turkey'), +('62.184.178.104', '62.184.178.111', 1052291688, 1052291695, 'GB', 'United Kingdom'), +('62.184.178.112', '62.184.178.127', 1052291696, 1052291711, 'CH', 'Switzerland'), +('62.184.178.128', '62.184.179.255', 1052291712, 1052292095, 'FR', 'France'), +('62.184.180.0', '62.184.207.255', 1052292096, 1052299263, 'GB', 'United Kingdom'), +('62.184.208.0', '62.184.209.255', 1052299264, 1052299775, 'EU', 'Europe'), +('62.184.210.0', '62.184.223.255', 1052299776, 1052303359, 'GB', 'United Kingdom'), +('62.184.224.0', '62.184.239.255', 1052303360, 1052307455, 'DE', 'Germany'), +('62.184.240.0', '62.184.246.255', 1052307456, 1052309247, 'CH', 'Switzerland'), +('62.184.247.0', '62.184.247.255', 1052309248, 1052309503, 'NO', 'Norway'), +('62.184.248.0', '62.184.251.255', 1052309504, 1052310527, 'CH', 'Switzerland'), +('62.184.252.0', '62.184.252.255', 1052310528, 1052310783, 'FR', 'France'), +('62.184.253.0', '62.184.253.255', 1052310784, 1052311039, 'AT', 'Austria'), +('62.184.254.0', '62.184.255.255', 1052311040, 1052311551, 'GB', 'United Kingdom'), +('62.185.0.0', '62.185.0.63', 1052311552, 1052311615, 'DE', 'Germany'), +('62.185.0.64', '62.185.0.127', 1052311616, 1052311679, 'BE', 'Belgium'), +('62.185.0.128', '62.185.1.63', 1052311680, 1052311871, 'DE', 'Germany'), +('62.185.1.64', '62.185.1.87', 1052311872, 1052311895, 'BE', 'Belgium'), +('62.185.1.88', '62.185.1.95', 1052311896, 1052311903, 'NL', 'Netherlands'), +('62.185.1.96', '62.185.1.127', 1052311904, 1052311935, 'IT', 'Italy'), +('62.185.1.128', '62.185.1.159', 1052311936, 1052311967, 'GB', 'United Kingdom'), +('62.185.1.160', '62.185.1.191', 1052311968, 1052311999, 'DE', 'Germany'), +('62.185.1.192', '62.185.1.255', 1052312000, 1052312063, 'CH', 'Switzerland'), +('62.185.2.0', '62.185.4.191', 1052312064, 1052312767, 'DE', 'Germany'), +('62.185.4.192', '62.185.4.255', 1052312768, 1052312831, 'EU', 'Europe'), +('62.185.5.0', '62.185.5.63', 1052312832, 1052312895, 'DE', 'Germany'), +('62.185.5.64', '62.185.5.71', 1052312896, 1052312903, 'CH', 'Switzerland'), +('62.185.5.72', '62.185.5.79', 1052312904, 1052312911, 'ES', 'Spain'), +('62.185.5.80', '62.185.5.95', 1052312912, 1052312927, 'CH', 'Switzerland'), +('62.185.5.96', '62.185.5.255', 1052312928, 1052313087, 'GB', 'United Kingdom'), +('62.185.6.0', '62.185.12.127', 1052313088, 1052314751, 'DE', 'Germany'), +('62.185.12.128', '62.185.12.191', 1052314752, 1052314815, 'ES', 'Spain'), +('62.185.12.192', '62.185.12.199', 1052314816, 1052314823, 'DE', 'Germany'), +('62.185.12.200', '62.185.12.207', 1052314824, 1052314831, 'ES', 'Spain'), +('62.185.12.208', '62.185.12.223', 1052314832, 1052314847, 'IT', 'Italy'), +('62.185.12.224', '62.185.13.191', 1052314848, 1052315071, 'DE', 'Germany'), +('62.185.13.192', '62.185.13.223', 1052315072, 1052315103, 'IT', 'Italy'), +('62.185.13.224', '62.185.13.255', 1052315104, 1052315135, 'AT', 'Austria'), +('62.185.14.0', '62.185.15.159', 1052315136, 1052315551, 'DE', 'Germany'), +('62.185.15.160', '62.185.15.191', 1052315552, 1052315583, 'ES', 'Spain'), +('62.185.15.192', '62.185.15.255', 1052315584, 1052315647, 'GB', 'United Kingdom'), +('62.185.16.0', '62.185.18.159', 1052315648, 1052316319, 'DE', 'Germany'), +('62.185.18.160', '62.185.18.175', 1052316320, 1052316335, 'NL', 'Netherlands'), +('62.185.18.176', '62.185.20.95', 1052316336, 1052316767, 'DE', 'Germany'), +('62.185.20.96', '62.185.20.127', 1052316768, 1052316799, 'IT', 'Italy'), +('62.185.20.128', '62.185.20.255', 1052316800, 1052316927, 'DE', 'Germany'), +('62.185.21.0', '62.185.21.255', 1052316928, 1052317183, 'EU', 'Europe'), +('62.185.22.0', '62.185.23.159', 1052317184, 1052317599, 'DE', 'Germany'), +('62.185.23.160', '62.185.23.167', 1052317600, 1052317607, 'BE', 'Belgium'), +('62.185.23.168', '62.185.23.175', 1052317608, 1052317615, 'DE', 'Germany'), +('62.185.23.176', '62.185.23.191', 1052317616, 1052317631, 'GB', 'United Kingdom'), +('62.185.23.192', '62.185.23.223', 1052317632, 1052317663, 'IT', 'Italy'), +('62.185.23.224', '62.185.25.95', 1052317664, 1052318047, 'DE', 'Germany'), +('62.185.25.96', '62.185.25.127', 1052318048, 1052318079, 'ES', 'Spain'), +('62.185.25.128', '62.185.25.255', 1052318080, 1052318207, 'SE', 'Sweden'), +('62.185.26.0', '62.185.27.255', 1052318208, 1052318719, 'DE', 'Germany'), +('62.185.28.0', '62.185.29.255', 1052318720, 1052319231, 'EU', 'Europe'), +('62.185.30.0', '62.185.31.255', 1052319232, 1052319743, 'DE', 'Germany'), +('62.185.32.0', '62.185.32.255', 1052319744, 1052319999, 'EU', 'Europe'), +('62.185.33.0', '62.185.33.79', 1052320000, 1052320079, 'GB', 'United Kingdom'), +('62.185.33.80', '62.185.33.87', 1052320080, 1052320087, 'CZ', 'Czech Republic'), +('62.185.33.88', '62.185.33.95', 1052320088, 1052320095, 'GB', 'United Kingdom'), +('62.185.33.96', '62.185.33.127', 1052320096, 1052320127, 'ZA', 'South Africa'), +('62.185.33.128', '62.185.33.255', 1052320128, 1052320255, 'BE', 'Belgium'), +('62.185.34.0', '62.185.41.191', 1052320256, 1052322239, 'GB', 'United Kingdom'), +('62.185.41.192', '62.185.41.255', 1052322240, 1052322303, 'CH', 'Switzerland'), +('62.185.42.0', '62.185.48.31', 1052322304, 1052323871, 'GB', 'United Kingdom'), +('62.185.48.32', '62.185.48.63', 1052323872, 1052323903, 'CH', 'Switzerland'), +('62.185.48.64', '62.185.52.63', 1052323904, 1052324927, 'GB', 'United Kingdom'), +('62.185.52.64', '62.185.52.79', 1052324928, 1052324943, 'ZA', 'South Africa'), +('62.185.52.80', '62.185.52.95', 1052324944, 1052324959, 'NL', 'Netherlands'), +('62.185.52.96', '62.185.52.127', 1052324960, 1052324991, 'ES', 'Spain'), +('62.185.52.128', '62.185.53.71', 1052324992, 1052325191, 'GB', 'United Kingdom'), +('62.185.53.72', '62.185.53.79', 1052325192, 1052325199, 'DE', 'Germany'), +('62.185.53.80', '62.185.53.95', 1052325200, 1052325215, 'AT', 'Austria'), +('62.185.53.96', '62.185.53.127', 1052325216, 1052325247, 'ZA', 'South Africa'), +('62.185.53.128', '62.185.53.191', 1052325248, 1052325311, 'GB', 'United Kingdom'), +('62.185.53.192', '62.185.53.255', 1052325312, 1052325375, 'NL', 'Netherlands'), +('62.185.54.0', '62.185.54.191', 1052325376, 1052325567, 'GB', 'United Kingdom'), +('62.185.54.192', '62.185.54.255', 1052325568, 1052325631, 'ZA', 'South Africa'), +('62.185.55.0', '62.185.63.255', 1052325632, 1052327935, 'GB', 'United Kingdom'), +('62.185.64.0', '62.185.65.31', 1052327936, 1052328223, 'CH', 'Switzerland'), +('62.185.65.32', '62.185.65.63', 1052328224, 1052328255, 'IT', 'Italy'), +('62.185.65.64', '62.185.65.127', 1052328256, 1052328319, 'ES', 'Spain'), +('62.185.65.128', '62.185.65.255', 1052328320, 1052328447, 'DE', 'Germany'), +('62.185.66.0', '62.185.66.191', 1052328448, 1052328639, 'CH', 'Switzerland'), +('62.185.66.192', '62.185.66.223', 1052328640, 1052328671, 'ZA', 'South Africa'), +('62.185.66.224', '62.185.66.255', 1052328672, 1052328703, 'ES', 'Spain'), +('62.185.67.0', '62.185.71.255', 1052328704, 1052329983, 'CH', 'Switzerland'), +('62.185.72.0', '62.185.72.255', 1052329984, 1052330239, 'DE', 'Germany'), +('62.185.73.0', '62.185.76.159', 1052330240, 1052331167, 'CH', 'Switzerland'), +('62.185.76.160', '62.185.76.175', 1052331168, 1052331183, 'GB', 'United Kingdom'), +('62.185.76.176', '62.185.76.191', 1052331184, 1052331199, 'CH', 'Switzerland'), +('62.185.76.192', '62.185.76.255', 1052331200, 1052331263, 'GB', 'United Kingdom'), +('62.185.77.0', '62.185.78.95', 1052331264, 1052331615, 'CH', 'Switzerland'), +('62.185.78.96', '62.185.78.127', 1052331616, 1052331647, 'AT', 'Austria'), +('62.185.78.128', '62.185.78.191', 1052331648, 1052331711, 'CH', 'Switzerland'), +('62.185.78.192', '62.185.78.223', 1052331712, 1052331743, 'GB', 'United Kingdom'), +('62.185.78.224', '62.185.79.255', 1052331744, 1052332031, 'CH', 'Switzerland'), +('62.185.80.0', '62.185.84.47', 1052332032, 1052333103, 'IT', 'Italy'), +('62.185.84.48', '62.185.84.63', 1052333104, 1052333119, 'CH', 'Switzerland'), +('62.185.84.64', '62.185.84.127', 1052333120, 1052333183, 'FR', 'France'), +('62.185.84.128', '62.185.84.255', 1052333184, 1052333311, 'ZA', 'South Africa'), +('62.185.85.0', '62.185.85.255', 1052333312, 1052333567, 'EU', 'Europe'), +('62.185.86.0', '62.185.90.159', 1052333568, 1052334751, 'IT', 'Italy'), +('62.185.90.160', '62.185.90.167', 1052334752, 1052334759, 'NL', 'Netherlands'), +('62.185.90.168', '62.185.90.175', 1052334760, 1052334767, 'ZA', 'South Africa'), +('62.185.90.176', '62.185.90.223', 1052334768, 1052334815, 'GB', 'United Kingdom'), +('62.185.90.224', '62.185.90.255', 1052334816, 1052334847, 'ZA', 'South Africa'), +('62.185.91.0', '62.185.93.63', 1052334848, 1052335423, 'IT', 'Italy'), +('62.185.93.64', '62.185.93.95', 1052335424, 1052335455, 'NL', 'Netherlands'), +('62.185.93.96', '62.185.93.159', 1052335456, 1052335519, 'ES', 'Spain'), +('62.185.93.160', '62.185.93.175', 1052335520, 1052335535, 'ZA', 'South Africa'), +('62.185.93.176', '62.185.93.191', 1052335536, 1052335551, 'DE', 'Germany'), +('62.185.93.192', '62.185.93.255', 1052335552, 1052335615, 'AT', 'Austria'), +('62.185.94.0', '62.185.95.255', 1052335616, 1052336127, 'BE', 'Belgium'), +('62.185.96.0', '62.185.96.127', 1052336128, 1052336255, 'FR', 'France'), +('62.185.96.128', '62.185.96.255', 1052336256, 1052336383, 'GB', 'United Kingdom'), +('62.185.97.0', '62.185.100.191', 1052336384, 1052337343, 'FR', 'France'), +('62.185.100.192', '62.185.100.223', 1052337344, 1052337375, 'DE', 'Germany'), +('62.185.100.224', '62.185.102.95', 1052337376, 1052337759, 'FR', 'France'), +('62.185.102.96', '62.185.102.223', 1052337760, 1052337887, 'GB', 'United Kingdom'), +('62.185.102.224', '62.185.102.239', 1052337888, 1052337903, 'ZA', 'South Africa'), +('62.185.102.240', '62.185.102.247', 1052337904, 1052337911, 'NL', 'Netherlands'), +('62.185.102.248', '62.185.102.255', 1052337912, 1052337919, 'ZA', 'South Africa'), +('62.185.103.0', '62.185.111.143', 1052337920, 1052340111, 'FR', 'France'), +('62.185.111.144', '62.185.111.159', 1052340112, 1052340127, 'ES', 'Spain'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('62.185.111.160', '62.185.111.167', 1052340128, 1052340135, 'NL', 'Netherlands'), +('62.185.111.168', '62.185.111.255', 1052340136, 1052340223, 'FR', 'France'), +('62.185.112.0', '62.185.113.47', 1052340224, 1052340527, 'AT', 'Austria'), +('62.185.113.48', '62.185.113.63', 1052340528, 1052340543, 'BE', 'Belgium'), +('62.185.113.64', '62.185.113.95', 1052340544, 1052340575, 'IT', 'Italy'), +('62.185.113.96', '62.185.113.127', 1052340576, 1052340607, 'NL', 'Netherlands'), +('62.185.113.128', '62.185.113.191', 1052340608, 1052340671, 'HU', 'Hungary'), +('62.185.113.192', '62.185.113.223', 1052340672, 1052340703, 'GB', 'United Kingdom'), +('62.185.113.224', '62.185.113.239', 1052340704, 1052340719, 'ZA', 'South Africa'), +('62.185.113.240', '62.185.113.255', 1052340720, 1052340735, 'GB', 'United Kingdom'), +('62.185.114.0', '62.185.114.31', 1052340736, 1052340767, 'AT', 'Austria'), +('62.185.114.32', '62.185.114.63', 1052340768, 1052340799, 'DE', 'Germany'), +('62.185.114.64', '62.185.114.127', 1052340800, 1052340863, 'GB', 'United Kingdom'), +('62.185.114.128', '62.185.115.255', 1052340864, 1052341247, 'AT', 'Austria'), +('62.185.116.0', '62.185.116.255', 1052341248, 1052341503, 'DE', 'Germany'), +('62.185.117.0', '62.185.119.255', 1052341504, 1052342271, 'AT', 'Austria'), +('62.185.120.0', '62.185.120.31', 1052342272, 1052342303, 'SE', 'Sweden'), +('62.185.120.32', '62.185.120.63', 1052342304, 1052342335, 'CH', 'Switzerland'), +('62.185.120.64', '62.185.120.191', 1052342336, 1052342463, 'SE', 'Sweden'), +('62.185.120.192', '62.185.120.199', 1052342464, 1052342471, 'ZA', 'South Africa'), +('62.185.120.200', '62.185.120.207', 1052342472, 1052342479, 'GB', 'United Kingdom'), +('62.185.120.208', '62.185.120.223', 1052342480, 1052342495, 'ZA', 'South Africa'), +('62.185.120.224', '62.185.120.255', 1052342496, 1052342527, 'FR', 'France'), +('62.185.121.0', '62.185.125.95', 1052342528, 1052343647, 'CH', 'Switzerland'), +('62.185.125.96', '62.185.125.103', 1052343648, 1052343655, 'NL', 'Netherlands'), +('62.185.125.104', '62.185.125.111', 1052343656, 1052343663, 'GB', 'United Kingdom'), +('62.185.125.112', '62.185.125.127', 1052343664, 1052343679, 'DE', 'Germany'), +('62.185.125.128', '62.185.127.255', 1052343680, 1052344319, 'CH', 'Switzerland'), +('62.185.128.0', '62.185.130.31', 1052344320, 1052344863, 'NL', 'Netherlands'), +('62.185.130.32', '62.185.130.63', 1052344864, 1052344895, 'ES', 'Spain'), +('62.185.130.64', '62.185.130.127', 1052344896, 1052344959, 'IT', 'Italy'), +('62.185.130.128', '62.185.130.255', 1052344960, 1052345087, 'CH', 'Switzerland'), +('62.185.131.0', '62.185.131.47', 1052345088, 1052345135, 'NL', 'Netherlands'), +('62.185.131.48', '62.185.131.63', 1052345136, 1052345151, 'GB', 'United Kingdom'), +('62.185.131.64', '62.185.131.159', 1052345152, 1052345247, 'FR', 'France'), +('62.185.131.160', '62.185.131.191', 1052345248, 1052345279, 'IT', 'Italy'), +('62.185.131.192', '62.185.131.255', 1052345280, 1052345343, 'DE', 'Germany'), +('62.185.132.0', '62.185.132.127', 1052345344, 1052345471, 'NL', 'Netherlands'), +('62.185.132.128', '62.185.132.143', 1052345472, 1052345487, 'EU', 'Europe'), +('62.185.132.144', '62.185.132.159', 1052345488, 1052345503, 'NL', 'Netherlands'), +('62.185.132.160', '62.185.132.191', 1052345504, 1052345535, 'ZA', 'South Africa'), +('62.185.132.192', '62.185.132.207', 1052345536, 1052345551, 'AT', 'Austria'), +('62.185.132.208', '62.185.132.223', 1052345552, 1052345567, 'GB', 'United Kingdom'), +('62.185.132.224', '62.185.133.31', 1052345568, 1052345631, 'NL', 'Netherlands'), +('62.185.133.32', '62.185.133.63', 1052345632, 1052345663, 'IT', 'Italy'), +('62.185.133.64', '62.185.133.95', 1052345664, 1052345695, 'HU', 'Hungary'), +('62.185.133.96', '62.185.133.127', 1052345696, 1052345727, 'PT', 'Portugal'), +('62.185.133.128', '62.185.133.255', 1052345728, 1052345855, 'AT', 'Austria'), +('62.185.134.0', '62.185.138.23', 1052345856, 1052346903, 'NL', 'Netherlands'), +('62.185.138.24', '62.185.138.31', 1052346904, 1052346911, 'BE', 'Belgium'), +('62.185.138.32', '62.185.138.63', 1052346912, 1052346943, 'ZA', 'South Africa'), +('62.185.138.64', '62.185.138.127', 1052346944, 1052347007, 'ES', 'Spain'), +('62.185.138.128', '62.185.138.255', 1052347008, 1052347135, 'DE', 'Germany'), +('62.185.139.0', '62.185.139.255', 1052347136, 1052347391, 'NL', 'Netherlands'), +('62.185.140.0', '62.185.143.255', 1052347392, 1052348415, 'CH', 'Switzerland'), +('62.185.144.0', '62.185.145.127', 1052348416, 1052348799, 'GB', 'United Kingdom'), +('62.185.145.128', '62.185.145.159', 1052348800, 1052348831, 'DE', 'Germany'), +('62.185.145.160', '62.185.145.191', 1052348832, 1052348863, 'CH', 'Switzerland'), +('62.185.145.192', '62.185.145.207', 1052348864, 1052348879, 'DE', 'Germany'), +('62.185.145.208', '62.185.145.223', 1052348880, 1052348895, 'GB', 'United Kingdom'), +('62.185.145.224', '62.185.145.255', 1052348896, 1052348927, 'DE', 'Germany'), +('62.185.146.0', '62.185.146.191', 1052348928, 1052349119, 'GB', 'United Kingdom'), +('62.185.146.192', '62.185.146.223', 1052349120, 1052349151, 'BE', 'Belgium'), +('62.185.146.224', '62.185.147.159', 1052349152, 1052349343, 'GB', 'United Kingdom'), +('62.185.147.160', '62.185.147.191', 1052349344, 1052349375, 'DE', 'Germany'), +('62.185.147.192', '62.185.147.223', 1052349376, 1052349407, 'GB', 'United Kingdom'), +('62.185.147.224', '62.185.147.255', 1052349408, 1052349439, 'ZA', 'South Africa'), +('62.185.148.0', '62.185.160.47', 1052349440, 1052352559, 'GB', 'United Kingdom'), +('62.185.160.48', '62.185.160.79', 1052352560, 1052352591, 'ZA', 'South Africa'), +('62.185.160.80', '62.185.160.95', 1052352592, 1052352607, 'GB', 'United Kingdom'), +('62.185.160.96', '62.185.160.127', 1052352608, 1052352639, 'EU', 'Europe'), +('62.185.160.128', '62.185.160.191', 1052352640, 1052352703, 'GB', 'United Kingdom'), +('62.185.160.192', '62.185.160.255', 1052352704, 1052352767, 'DE', 'Germany'), +('62.185.161.0', '62.185.161.159', 1052352768, 1052352927, 'GB', 'United Kingdom'), +('62.185.161.160', '62.185.161.191', 1052352928, 1052352959, 'IT', 'Italy'), +('62.185.161.192', '62.185.161.223', 1052352960, 1052352991, 'ES', 'Spain'), +('62.185.161.224', '62.185.161.255', 1052352992, 1052353023, 'BE', 'Belgium'), +('62.185.162.0', '62.185.162.255', 1052353024, 1052353279, 'IT', 'Italy'), +('62.185.163.0', '62.185.163.127', 1052353280, 1052353407, 'DE', 'Germany'), +('62.185.163.128', '62.185.163.255', 1052353408, 1052353535, 'EU', 'Europe'), +('62.185.164.0', '62.185.166.63', 1052353536, 1052354111, 'DE', 'Germany'), +('62.185.166.64', '62.185.166.127', 1052354112, 1052354175, 'TR', 'Turkey'), +('62.185.166.128', '62.185.167.255', 1052354176, 1052354559, 'DE', 'Germany'), +('62.185.168.0', '62.185.175.255', 1052354560, 1052356607, 'GB', 'United Kingdom'), +('62.185.176.0', '62.185.176.95', 1052356608, 1052356703, 'ZA', 'South Africa'), +('62.185.176.96', '62.185.176.127', 1052356704, 1052356735, 'ES', 'Spain'), +('62.185.176.128', '62.185.176.191', 1052356736, 1052356799, 'RU', 'Russian Federation'), +('62.185.176.192', '62.185.176.255', 1052356800, 1052356863, 'IE', 'Ireland'), +('62.185.177.0', '62.185.183.79', 1052356864, 1052358479, 'ZA', 'South Africa'), +('62.185.183.80', '62.185.183.95', 1052358480, 1052358495, 'GB', 'United Kingdom'), +('62.185.183.96', '62.185.183.111', 1052358496, 1052358511, 'AT', 'Austria'), +('62.185.183.112', '62.185.183.127', 1052358512, 1052358527, 'ZA', 'South Africa'), +('62.185.183.128', '62.185.183.255', 1052358528, 1052358655, 'DE', 'Germany'), +('62.185.184.0', '62.185.188.159', 1052358656, 1052359839, 'ZA', 'South Africa'), +('62.185.188.160', '62.185.188.191', 1052359840, 1052359871, 'IE', 'Ireland'), +('62.185.188.192', '62.185.188.255', 1052359872, 1052359935, 'IT', 'Italy'), +('62.185.189.0', '62.185.192.31', 1052359936, 1052360735, 'ZA', 'South Africa'), +('62.185.192.32', '62.185.192.39', 1052360736, 1052360743, 'GB', 'United Kingdom'), +('62.185.192.40', '62.185.192.63', 1052360744, 1052360767, 'ZA', 'South Africa'), +('62.185.192.64', '62.185.192.79', 1052360768, 1052360783, 'DE', 'Germany'), +('62.185.192.80', '62.185.192.127', 1052360784, 1052360831, 'IT', 'Italy'), +('62.185.192.128', '62.185.192.255', 1052360832, 1052360959, 'GB', 'United Kingdom'), +('62.185.193.0', '62.185.193.31', 1052360960, 1052360991, 'FR', 'France'), +('62.185.193.32', '62.185.193.63', 1052360992, 1052361023, 'BE', 'Belgium'), +('62.185.193.64', '62.185.193.79', 1052361024, 1052361039, 'ZA', 'South Africa'), +('62.185.193.80', '62.185.193.95', 1052361040, 1052361055, 'NL', 'Netherlands'), +('62.185.193.96', '62.185.193.127', 1052361056, 1052361087, 'DE', 'Germany'), +('62.185.193.128', '62.185.193.191', 1052361088, 1052361151, 'ES', 'Spain'), +('62.185.193.192', '62.185.193.255', 1052361152, 1052361215, 'GB', 'United Kingdom'), +('62.185.194.0', '62.185.194.255', 1052361216, 1052361471, 'ZA', 'South Africa'), +('62.185.195.0', '62.185.195.175', 1052361472, 1052361647, 'BE', 'Belgium'), +('62.185.195.176', '62.185.195.183', 1052361648, 1052361655, 'GB', 'United Kingdom'), +('62.185.195.184', '62.185.195.191', 1052361656, 1052361663, 'DE', 'Germany'), +('62.185.195.192', '62.185.195.223', 1052361664, 1052361695, 'BE', 'Belgium'), +('62.185.195.224', '62.185.195.255', 1052361696, 1052361727, 'CH', 'Switzerland'), +('62.185.196.0', '62.185.196.191', 1052361728, 1052361919, 'IT', 'Italy'), +('62.185.196.192', '62.185.196.223', 1052361920, 1052361951, 'ZA', 'South Africa'), +('62.185.196.224', '62.185.196.239', 1052361952, 1052361967, 'IT', 'Italy'), +('62.185.196.240', '62.185.196.255', 1052361968, 1052361983, 'ZA', 'South Africa'), +('62.185.197.0', '62.185.197.255', 1052361984, 1052362239, 'IT', 'Italy'), +('62.185.198.0', '62.185.199.255', 1052362240, 1052362751, 'DK', 'Denmark'), +('62.185.200.0', '62.185.200.31', 1052362752, 1052362783, 'ES', 'Spain'), +('62.185.200.32', '62.185.200.63', 1052362784, 1052362815, 'GB', 'United Kingdom'), +('62.185.200.64', '62.185.200.127', 1052362816, 1052362879, 'CH', 'Switzerland'), +('62.185.200.128', '62.185.201.31', 1052362880, 1052363039, 'ES', 'Spain'), +('62.185.201.32', '62.185.201.63', 1052363040, 1052363071, 'EU', 'Europe'), +('62.185.201.64', '62.185.201.127', 1052363072, 1052363135, 'GB', 'United Kingdom'), +('62.185.201.128', '62.185.201.255', 1052363136, 1052363263, 'ES', 'Spain'), +('62.185.202.0', '62.185.206.255', 1052363264, 1052364543, 'DE', 'Germany'), +('62.185.207.0', '62.185.207.127', 1052364544, 1052364671, 'BE', 'Belgium'), +('62.185.207.128', '62.185.207.143', 1052364672, 1052364687, 'DE', 'Germany'), +('62.185.207.144', '62.185.207.151', 1052364688, 1052364695, 'GB', 'United Kingdom'), +('62.185.207.152', '62.185.207.159', 1052364696, 1052364703, 'NL', 'Netherlands'), +('62.185.207.160', '62.185.207.255', 1052364704, 1052364799, 'GB', 'United Kingdom'), +('62.185.208.0', '62.185.213.127', 1052364800, 1052366207, 'BE', 'Belgium'), +('62.185.213.128', '62.185.213.191', 1052366208, 1052366271, 'IE', 'Ireland'), +('62.185.213.192', '62.185.213.255', 1052366272, 1052366335, 'GB', 'United Kingdom'), +('62.185.214.0', '62.185.215.63', 1052366336, 1052366655, 'BE', 'Belgium'), +('62.185.215.64', '62.185.215.127', 1052366656, 1052366719, 'DE', 'Germany'), +('62.185.215.128', '62.185.219.255', 1052366720, 1052367871, 'BE', 'Belgium'), +('62.185.220.0', '62.185.223.255', 1052367872, 1052368895, 'DK', 'Denmark'), +('62.185.224.0', '62.185.224.127', 1052368896, 1052369023, 'IE', 'Ireland'), +('62.185.224.128', '62.185.224.143', 1052369024, 1052369039, 'IT', 'Italy'), +('62.185.224.144', '62.185.224.159', 1052369040, 1052369055, 'DE', 'Germany'), +('62.185.224.160', '62.185.224.191', 1052369056, 1052369087, 'ZA', 'South Africa'), +('62.185.224.192', '62.185.224.255', 1052369088, 1052369151, 'IT', 'Italy'), +('62.185.225.0', '62.185.225.255', 1052369152, 1052369407, 'IE', 'Ireland'), +('62.185.226.0', '62.185.226.255', 1052369408, 1052369663, 'HU', 'Hungary'), +('62.185.227.0', '62.185.227.191', 1052369664, 1052369855, 'CZ', 'Czech Republic'), +('62.185.227.192', '62.185.227.223', 1052369856, 1052369887, 'EU', 'Europe'), +('62.185.227.224', '62.185.227.255', 1052369888, 1052369919, 'CZ', 'Czech Republic'), +('62.185.228.0', '62.185.228.255', 1052369920, 1052370175, 'NO', 'Norway'), +('62.185.229.0', '62.185.229.255', 1052370176, 1052370431, 'DK', 'Denmark'), +('62.185.230.0', '62.185.230.127', 1052370432, 1052370559, 'SE', 'Sweden'), +('62.185.230.128', '62.185.230.191', 1052370560, 1052370623, 'DE', 'Germany'), +('62.185.230.192', '62.185.230.255', 1052370624, 1052370687, 'IT', 'Italy'), +('62.185.231.0', '62.185.231.255', 1052370688, 1052370943, 'DK', 'Denmark'), +('62.185.232.0', '62.185.237.31', 1052370944, 1052372255, 'GB', 'United Kingdom'), +('62.185.237.32', '62.185.237.63', 1052372256, 1052372287, 'ZA', 'South Africa'), +('62.185.237.64', '62.185.237.127', 1052372288, 1052372351, 'FI', 'Finland'), +('62.185.237.128', '62.185.243.255', 1052372352, 1052374015, 'GB', 'United Kingdom'), +('62.185.244.0', '62.185.247.255', 1052374016, 1052375039, 'CH', 'Switzerland'), +('62.185.248.0', '62.185.249.255', 1052375040, 1052375551, 'DE', 'Germany'), +('62.185.250.0', '62.185.250.127', 1052375552, 1052375679, 'EU', 'Europe'), +('62.185.250.128', '62.185.250.159', 1052375680, 1052375711, 'DE', 'Germany'), +('62.185.250.160', '62.185.250.255', 1052375712, 1052375807, 'FR', 'France'), +('62.185.251.0', '62.185.251.255', 1052375808, 1052376063, 'DE', 'Germany'), +('62.185.252.0', '62.185.252.255', 1052376064, 1052376319, 'EU', 'Europe'), +('62.185.253.0', '62.185.254.255', 1052376320, 1052376831, 'DE', 'Germany'), +('62.185.255.0', '62.185.255.255', 1052376832, 1052377087, 'ES', 'Spain'), +('62.186.0.0', '62.186.1.191', 1052377088, 1052377535, 'DE', 'Germany'), +('62.186.1.192', '62.186.1.255', 1052377536, 1052377599, 'NO', 'Norway'), +('62.186.2.0', '62.186.2.143', 1052377600, 1052377743, 'FR', 'France'), +('62.186.2.144', '62.186.2.159', 1052377744, 1052377759, 'NL', 'Netherlands'), +('62.186.2.160', '62.186.2.191', 1052377760, 1052377791, 'ZA', 'South Africa'), +('62.186.2.192', '62.186.2.255', 1052377792, 1052377855, 'GB', 'United Kingdom'), +('62.186.3.0', '62.186.3.15', 1052377856, 1052377871, 'DE', 'Germany'), +('62.186.3.16', '62.186.3.31', 1052377872, 1052377887, 'CH', 'Switzerland'), +('62.186.3.32', '62.186.3.63', 1052377888, 1052377919, 'EU', 'Europe'), +('62.186.3.64', '62.186.3.95', 1052377920, 1052377951, 'DE', 'Germany'), +('62.186.3.96', '62.186.3.127', 1052377952, 1052377983, 'FR', 'France'), +('62.186.3.128', '62.186.3.191', 1052377984, 1052378047, 'GB', 'United Kingdom'), +('62.186.3.192', '62.186.3.223', 1052378048, 1052378079, 'FR', 'France'), +('62.186.3.224', '62.186.3.255', 1052378080, 1052378111, 'NL', 'Netherlands'), +('62.186.4.0', '62.186.7.103', 1052378112, 1052378983, 'DE', 'Germany'), +('62.186.7.104', '62.186.7.111', 1052378984, 1052378991, 'NO', 'Norway'), +('62.186.7.112', '62.186.7.151', 1052378992, 1052379031, 'GB', 'United Kingdom'), +('62.186.7.152', '62.186.7.159', 1052379032, 1052379039, 'DE', 'Germany'), +('62.186.7.160', '62.186.7.223', 1052379040, 1052379103, 'GB', 'United Kingdom'), +('62.186.7.224', '62.186.7.255', 1052379104, 1052379135, 'SE', 'Sweden'), +('62.186.8.0', '62.186.8.255', 1052379136, 1052379391, 'EU', 'Europe'), +('62.186.9.0', '62.186.10.143', 1052379392, 1052379791, 'DE', 'Germany'), +('62.186.10.144', '62.186.10.151', 1052379792, 1052379799, 'GB', 'United Kingdom'), +('62.186.10.152', '62.186.10.159', 1052379800, 1052379807, 'NL', 'Netherlands'), +('62.186.10.160', '62.186.10.191', 1052379808, 1052379839, 'DE', 'Germany'), +('62.186.10.192', '62.186.10.255', 1052379840, 1052379903, 'ZA', 'South Africa'), +('62.186.11.0', '62.186.11.159', 1052379904, 1052380063, 'GB', 'United Kingdom'), +('62.186.11.160', '62.186.11.223', 1052380064, 1052380127, 'DE', 'Germany'), +('62.186.11.224', '62.186.11.255', 1052380128, 1052380159, 'NL', 'Netherlands'), +('62.186.12.0', '62.186.15.255', 1052380160, 1052381183, 'DE', 'Germany'), +('62.186.16.0', '62.186.16.255', 1052381184, 1052381439, 'EU', 'Europe'), +('62.186.17.0', '62.186.21.159', 1052381440, 1052382623, 'DE', 'Germany'), +('62.186.21.160', '62.186.21.191', 1052382624, 1052382655, 'EU', 'Europe'), +('62.186.21.192', '62.186.21.255', 1052382656, 1052382719, 'ES', 'Spain'), +('62.186.22.0', '62.186.22.255', 1052382720, 1052382975, 'DE', 'Germany'), +('62.186.23.0', '62.186.26.255', 1052382976, 1052383999, 'GB', 'United Kingdom'), +('62.186.27.0', '62.186.27.255', 1052384000, 1052384255, 'NL', 'Netherlands'), +('62.186.28.0', '62.186.31.255', 1052384256, 1052385279, 'GB', 'United Kingdom'), +('62.186.32.0', '62.186.32.255', 1052385280, 1052385535, 'DE', 'Germany'), +('62.186.33.0', '62.186.33.79', 1052385536, 1052385615, 'GB', 'United Kingdom'), +('62.186.33.80', '62.186.33.95', 1052385616, 1052385631, 'ZA', 'South Africa'), +('62.186.33.96', '62.186.33.159', 1052385632, 1052385695, 'GB', 'United Kingdom'), +('62.186.33.160', '62.186.33.255', 1052385696, 1052385791, 'FR', 'France'), +('62.186.34.0', '62.186.45.255', 1052385792, 1052388863, 'GB', 'United Kingdom'), +('62.186.46.0', '62.186.46.255', 1052388864, 1052389119, 'NL', 'Netherlands'), +('62.186.47.0', '62.186.52.31', 1052389120, 1052390431, 'GB', 'United Kingdom'), +('62.186.52.32', '62.186.52.47', 1052390432, 1052390447, 'ZA', 'South Africa'), +('62.186.52.48', '62.186.52.55', 1052390448, 1052390455, 'GB', 'United Kingdom'), +('62.186.52.56', '62.186.52.63', 1052390456, 1052390463, 'IT', 'Italy'), +('62.186.52.64', '62.186.63.255', 1052390464, 1052393471, 'GB', 'United Kingdom'), +('62.186.64.0', '62.186.64.127', 1052393472, 1052393599, 'CH', 'Switzerland'), +('62.186.64.128', '62.186.64.223', 1052393600, 1052393695, 'FR', 'France'), +('62.186.64.224', '62.186.67.31', 1052393696, 1052394271, 'CH', 'Switzerland'), +('62.186.67.32', '62.186.67.63', 1052394272, 1052394303, 'ZA', 'South Africa'), +('62.186.67.64', '62.186.67.127', 1052394304, 1052394367, 'GB', 'United Kingdom'), +('62.186.67.128', '62.186.70.255', 1052394368, 1052395263, 'CH', 'Switzerland'), +('62.186.71.0', '62.186.72.159', 1052395264, 1052395679, 'GB', 'United Kingdom'), +('62.186.72.160', '62.186.72.223', 1052395680, 1052395743, 'DE', 'Germany'), +('62.186.72.224', '62.186.72.255', 1052395744, 1052395775, 'ES', 'Spain'), +('62.186.73.0', '62.186.73.255', 1052395776, 1052396031, 'NL', 'Netherlands'), +('62.186.74.0', '62.186.75.255', 1052396032, 1052396543, 'CH', 'Switzerland'), +('62.186.76.0', '62.186.76.63', 1052396544, 1052396607, 'SE', 'Sweden'), +('62.186.76.64', '62.186.76.127', 1052396608, 1052396671, 'BE', 'Belgium'), +('62.186.76.128', '62.186.76.255', 1052396672, 1052396799, 'SE', 'Sweden'), +('62.186.77.0', '62.186.77.63', 1052396800, 1052396863, 'TR', 'Turkey'), +('62.186.77.64', '62.186.77.127', 1052396864, 1052396927, 'RO', 'Romania'), +('62.186.77.128', '62.186.79.127', 1052396928, 1052397439, 'HU', 'Hungary'), +('62.186.79.128', '62.186.79.255', 1052397440, 1052397567, 'EU', 'Europe'), +('62.186.80.0', '62.186.85.191', 1052397568, 1052399039, 'IT', 'Italy'), +('62.186.85.192', '62.186.85.255', 1052399040, 1052399103, 'NO', 'Norway'), +('62.186.86.0', '62.186.89.31', 1052399104, 1052399903, 'IT', 'Italy'), +('62.186.89.32', '62.186.89.47', 1052399904, 1052399919, 'DE', 'Germany'), +('62.186.89.48', '62.186.89.55', 1052399920, 1052399927, 'NL', 'Netherlands'), +('62.186.89.56', '62.186.89.63', 1052399928, 1052399935, 'FR', 'France'), +('62.186.89.64', '62.186.89.127', 1052399936, 1052399999, 'IT', 'Italy'), +('62.186.89.128', '62.186.89.255', 1052400000, 1052400127, 'BE', 'Belgium'), +('62.186.90.0', '62.186.93.255', 1052400128, 1052401151, 'IT', 'Italy'), +('62.186.94.0', '62.186.94.127', 1052401152, 1052401279, 'BE', 'Belgium'), +('62.186.94.128', '62.186.94.159', 1052401280, 1052401311, 'IT', 'Italy'), +('62.186.94.160', '62.186.94.191', 1052401312, 1052401343, 'AT', 'Austria'), +('62.186.94.192', '62.186.94.255', 1052401344, 1052401407, 'ZA', 'South Africa'), +('62.186.95.0', '62.186.95.191', 1052401408, 1052401599, 'BE', 'Belgium'), +('62.186.95.192', '62.186.95.223', 1052401600, 1052401631, 'GB', 'United Kingdom'), +('62.186.95.224', '62.186.95.255', 1052401632, 1052401663, 'RU', 'Russian Federation'), +('62.186.96.0', '62.186.97.127', 1052401664, 1052402047, 'FR', 'France'), +('62.186.97.128', '62.186.97.255', 1052402048, 1052402175, 'NL', 'Netherlands'), +('62.186.98.0', '62.186.98.95', 1052402176, 1052402271, 'FR', 'France'), +('62.186.98.96', '62.186.98.127', 1052402272, 1052402303, 'IT', 'Italy'), +('62.186.98.128', '62.186.98.191', 1052402304, 1052402367, 'GB', 'United Kingdom'), +('62.186.98.192', '62.186.102.159', 1052402368, 1052403359, 'FR', 'France'), +('62.186.102.160', '62.186.102.191', 1052403360, 1052403391, 'DE', 'Germany'), +('62.186.102.192', '62.186.102.207', 1052403392, 1052403407, 'IT', 'Italy'), +('62.186.102.208', '62.186.102.215', 1052403408, 1052403415, 'GB', 'United Kingdom'), +('62.186.102.216', '62.186.102.223', 1052403416, 1052403423, 'NL', 'Netherlands'), +('62.186.102.224', '62.186.102.255', 1052403424, 1052403455, 'RO', 'Romania'), +('62.186.103.0', '62.186.104.15', 1052403456, 1052403727, 'FR', 'France'), +('62.186.104.16', '62.186.104.31', 1052403728, 1052403743, 'NL', 'Netherlands'), +('62.186.104.32', '62.186.104.63', 1052403744, 1052403775, 'FR', 'France'), +('62.186.104.64', '62.186.104.127', 1052403776, 1052403839, 'ZA', 'South Africa'), +('62.186.104.128', '62.186.104.255', 1052403840, 1052403967, 'CH', 'Switzerland'), +('62.186.105.0', '62.186.106.159', 1052403968, 1052404383, 'FR', 'France'), +('62.186.106.160', '62.186.106.175', 1052404384, 1052404399, 'ZA', 'South Africa'), +('62.186.106.176', '62.186.106.223', 1052404400, 1052404447, 'FR', 'France'), +('62.186.106.224', '62.186.106.255', 1052404448, 1052404479, 'GB', 'United Kingdom'), +('62.186.107.0', '62.186.108.31', 1052404480, 1052404767, 'FR', 'France'), +('62.186.108.32', '62.186.108.47', 1052404768, 1052404783, 'ZA', 'South Africa'), +('62.186.108.48', '62.186.108.63', 1052404784, 1052404799, 'GB', 'United Kingdom'), +('62.186.108.64', '62.186.108.127', 1052404800, 1052404863, 'FR', 'France'), +('62.186.108.128', '62.186.108.255', 1052404864, 1052404991, 'GB', 'United Kingdom'), +('62.186.109.0', '62.186.111.255', 1052404992, 1052405759, 'FR', 'France'), +('62.186.112.0', '62.186.118.223', 1052405760, 1052407519, 'AT', 'Austria'), +('62.186.118.224', '62.186.118.239', 1052407520, 1052407535, 'FR', 'France'), +('62.186.118.240', '62.186.118.255', 1052407536, 1052407551, 'SE', 'Sweden'), +('62.186.119.0', '62.186.120.31', 1052407552, 1052407839, 'AT', 'Austria'), +('62.186.120.32', '62.186.120.63', 1052407840, 1052407871, 'ZA', 'South Africa'), +('62.186.120.64', '62.186.120.79', 1052407872, 1052407887, 'DE', 'Germany'), +('62.186.120.80', '62.186.120.95', 1052407888, 1052407903, 'ZA', 'South Africa'), +('62.186.120.96', '62.186.120.127', 1052407904, 1052407935, 'DE', 'Germany'), +('62.186.120.128', '62.186.121.95', 1052407936, 1052408159, 'AT', 'Austria'), +('62.186.121.96', '62.186.122.63', 1052408160, 1052408383, 'GB', 'United Kingdom'), +('62.186.122.64', '62.186.122.127', 1052408384, 1052408447, 'BE', 'Belgium'), +('62.186.122.128', '62.186.122.191', 1052408448, 1052408511, 'FR', 'France'), +('62.186.122.192', '62.186.122.255', 1052408512, 1052408575, 'GB', 'United Kingdom'), +('62.186.123.0', '62.186.123.255', 1052408576, 1052408831, 'AT', 'Austria'), +('62.186.124.0', '62.186.127.255', 1052408832, 1052409855, 'GB', 'United Kingdom'), +('62.186.128.0', '62.186.128.7', 1052409856, 1052409863, 'NL', 'Netherlands'), +('62.186.128.8', '62.186.128.15', 1052409864, 1052409871, 'DE', 'Germany'), +('62.186.128.16', '62.186.128.95', 1052409872, 1052409951, 'NL', 'Netherlands'), +('62.186.128.96', '62.186.128.127', 1052409952, 1052409983, 'BE', 'Belgium'), +('62.186.128.128', '62.186.128.191', 1052409984, 1052410047, 'GB', 'United Kingdom'), +('62.186.128.192', '62.186.128.255', 1052410048, 1052410111, 'BE', 'Belgium'), +('62.186.129.0', '62.186.132.255', 1052410112, 1052411135, 'EU', 'Europe'), +('62.186.133.0', '62.186.137.167', 1052411136, 1052412327, 'NL', 'Netherlands'), +('62.186.137.168', '62.186.137.175', 1052412328, 1052412335, 'EU', 'Europe'), +('62.186.137.176', '62.186.137.183', 1052412336, 1052412343, 'NL', 'Netherlands'), +('62.186.137.184', '62.186.137.191', 1052412344, 1052412351, 'GB', 'United Kingdom'), +('62.186.137.192', '62.186.137.255', 1052412352, 1052412415, 'CH', 'Switzerland'), +('62.186.138.0', '62.186.138.255', 1052412416, 1052412671, 'EU', 'Europe'), +('62.186.139.0', '62.186.139.159', 1052412672, 1052412831, 'NL', 'Netherlands'), +('62.186.139.160', '62.186.139.191', 1052412832, 1052412863, 'DE', 'Germany'), +('62.186.139.192', '62.186.143.255', 1052412864, 1052413951, 'NL', 'Netherlands'), +('62.186.144.0', '62.186.145.127', 1052413952, 1052414335, 'CZ', 'Czech Republic'), +('62.186.145.128', '62.186.145.255', 1052414336, 1052414463, 'EU', 'Europe'), +('62.186.146.0', '62.186.147.255', 1052414464, 1052414975, 'IE', 'Ireland'), +('62.186.148.0', '62.186.151.255', 1052414976, 1052415999, 'BE', 'Belgium'), +('62.186.152.0', '62.186.154.63', 1052416000, 1052416575, 'DE', 'Germany'), +('62.186.154.64', '62.186.154.127', 1052416576, 1052416639, 'ZA', 'South Africa'), +('62.186.154.128', '62.186.154.159', 1052416640, 1052416671, 'GB', 'United Kingdom'), +('62.186.154.160', '62.186.154.191', 1052416672, 1052416703, 'DE', 'Germany'), +('62.186.154.192', '62.186.154.223', 1052416704, 1052416735, 'IT', 'Italy'), +('62.186.154.224', '62.186.154.255', 1052416736, 1052416767, 'DE', 'Germany'), +('62.186.155.0', '62.186.156.47', 1052416768, 1052417071, 'NO', 'Norway'), +('62.186.156.48', '62.186.156.63', 1052417072, 1052417087, 'DE', 'Germany'), +('62.186.156.64', '62.186.156.95', 1052417088, 1052417119, 'AT', 'Austria'), +('62.186.156.96', '62.186.156.127', 1052417120, 1052417151, 'IT', 'Italy'), +('62.186.156.128', '62.186.156.255', 1052417152, 1052417279, 'GB', 'United Kingdom'), +('62.186.157.0', '62.186.157.79', 1052417280, 1052417359, 'NO', 'Norway'), +('62.186.157.80', '62.186.157.87', 1052417360, 1052417367, 'EU', 'Europe'), +('62.186.157.88', '62.186.157.255', 1052417368, 1052417535, 'NO', 'Norway'), +('62.186.158.0', '62.186.159.255', 1052417536, 1052418047, 'ZA', 'South Africa'), +('62.186.160.0', '62.186.165.255', 1052418048, 1052419583, 'BE', 'Belgium'), +('62.186.166.0', '62.186.167.191', 1052419584, 1052420031, 'IT', 'Italy'), +('62.186.167.192', '62.186.167.223', 1052420032, 1052420063, 'EU', 'Europe'), +('62.186.167.224', '62.186.167.255', 1052420064, 1052420095, 'IT', 'Italy'), +('62.186.168.0', '62.186.170.127', 1052420096, 1052420735, 'GB', 'United Kingdom'), +('62.186.170.128', '62.186.170.159', 1052420736, 1052420767, 'DE', 'Germany'), +('62.186.170.160', '62.186.170.175', 1052420768, 1052420783, 'GB', 'United Kingdom'), +('62.186.170.176', '62.186.170.191', 1052420784, 1052420799, 'ZA', 'South Africa'), +('62.186.170.192', '62.186.170.255', 1052420800, 1052420863, 'DE', 'Germany'), +('62.186.171.0', '62.186.175.255', 1052420864, 1052422143, 'GB', 'United Kingdom'), +('62.186.176.0', '62.186.178.191', 1052422144, 1052422847, 'ZA', 'South Africa'), +('62.186.178.192', '62.186.178.207', 1052422848, 1052422863, 'SE', 'Sweden'), +('62.186.178.208', '62.186.178.223', 1052422864, 1052422879, 'FR', 'France'), +('62.186.178.224', '62.186.180.31', 1052422880, 1052423199, 'ZA', 'South Africa'), +('62.186.180.32', '62.186.180.63', 1052423200, 1052423231, 'CH', 'Switzerland'), +('62.186.180.64', '62.186.180.127', 1052423232, 1052423295, 'ZA', 'South Africa'), +('62.186.180.128', '62.186.180.135', 1052423296, 1052423303, 'EU', 'Europe'), +('62.186.180.136', '62.186.180.143', 1052423304, 1052423311, 'CH', 'Switzerland'), +('62.186.180.144', '62.186.180.191', 1052423312, 1052423359, 'EU', 'Europe'), +('62.186.180.192', '62.186.180.255', 1052423360, 1052423423, 'NL', 'Netherlands'), +('62.186.181.0', '62.186.183.31', 1052423424, 1052423967, 'ZA', 'South Africa'), +('62.186.183.32', '62.186.183.63', 1052423968, 1052423999, 'EU', 'Europe'), +('62.186.183.64', '62.186.186.95', 1052424000, 1052424799, 'ZA', 'South Africa'), +('62.186.186.96', '62.186.186.111', 1052424800, 1052424815, 'GB', 'United Kingdom'), +('62.186.186.112', '62.186.186.119', 1052424816, 1052424823, 'ES', 'Spain'), +('62.186.186.120', '62.186.186.127', 1052424824, 1052424831, 'BE', 'Belgium'), +('62.186.186.128', '62.186.186.255', 1052424832, 1052424959, 'GB', 'United Kingdom'), +('62.186.187.0', '62.186.187.191', 1052424960, 1052425151, 'ZA', 'South Africa'), +('62.186.187.192', '62.186.187.255', 1052425152, 1052425215, 'BE', 'Belgium'), +('62.186.188.0', '62.186.191.255', 1052425216, 1052426239, 'ZA', 'South Africa'), +('62.186.192.0', '62.186.192.79', 1052426240, 1052426319, 'PT', 'Portugal'), +('62.186.192.80', '62.186.192.87', 1052426320, 1052426327, 'EU', 'Europe'), +('62.186.192.88', '62.186.192.255', 1052426328, 1052426495, 'PT', 'Portugal'), +('62.186.193.0', '62.186.193.15', 1052426496, 1052426511, 'EU', 'Europe'), +('62.186.193.16', '62.186.193.31', 1052426512, 1052426527, 'FR', 'France'), +('62.186.193.32', '62.186.195.255', 1052426528, 1052427263, 'EU', 'Europe'), +('62.186.196.0', '62.186.198.63', 1052427264, 1052427839, 'CH', 'Switzerland'), +('62.186.198.64', '62.186.198.79', 1052427840, 1052427855, 'GB', 'United Kingdom'), +('62.186.198.80', '62.186.198.95', 1052427856, 1052427871, 'IT', 'Italy'), +('62.186.198.96', '62.186.198.127', 1052427872, 1052427903, 'AT', 'Austria'), +('62.186.198.128', '62.186.198.191', 1052427904, 1052427967, 'DE', 'Germany'), +('62.186.198.192', '62.186.198.255', 1052427968, 1052428031, 'GB', 'United Kingdom'), +('62.186.199.0', '62.186.199.255', 1052428032, 1052428287, 'CH', 'Switzerland'), +('62.186.200.0', '62.186.200.191', 1052428288, 1052428479, 'ES', 'Spain'), +('62.186.200.192', '62.186.200.255', 1052428480, 1052428543, 'BE', 'Belgium'), +('62.186.201.0', '62.186.204.95', 1052428544, 1052429407, 'ES', 'Spain'), +('62.186.204.96', '62.186.204.127', 1052429408, 1052429439, 'FR', 'France'), +('62.186.204.128', '62.186.204.255', 1052429440, 1052429567, 'BE', 'Belgium'), +('62.186.205.0', '62.186.205.191', 1052429568, 1052429759, 'ES', 'Spain'), +('62.186.205.192', '62.186.205.255', 1052429760, 1052429823, 'DE', 'Germany'), +('62.186.206.0', '62.186.207.255', 1052429824, 1052430335, 'ES', 'Spain'), +('62.186.208.0', '62.186.208.71', 1052430336, 1052430407, 'BE', 'Belgium'), +('62.186.208.72', '62.186.208.79', 1052430408, 1052430415, 'ZA', 'South Africa'), +('62.186.208.80', '62.186.208.95', 1052430416, 1052430431, 'FR', 'France'), +('62.186.208.96', '62.186.208.127', 1052430432, 1052430463, 'DE', 'Germany'), +('62.186.208.128', '62.186.208.191', 1052430464, 1052430527, 'BE', 'Belgium'), +('62.186.208.192', '62.186.208.255', 1052430528, 1052430591, 'DE', 'Germany'), +('62.186.209.0', '62.186.219.255', 1052430592, 1052433407, 'BE', 'Belgium'), +('62.186.220.0', '62.186.221.55', 1052433408, 1052433719, 'DK', 'Denmark'), +('62.186.221.56', '62.186.221.63', 1052433720, 1052433727, 'FR', 'France'), +('62.186.221.64', '62.186.221.255', 1052433728, 1052433919, 'DK', 'Denmark'), +('62.186.222.0', '62.186.223.255', 1052433920, 1052434431, 'ZA', 'South Africa'), +('62.186.224.0', '62.186.225.63', 1052434432, 1052434751, 'GB', 'United Kingdom'), +('62.186.225.64', '62.186.225.95', 1052434752, 1052434783, 'NO', 'Norway'), +('62.186.225.96', '62.186.227.255', 1052434784, 1052435455, 'GB', 'United Kingdom'), +('62.186.228.0', '62.186.228.191', 1052435456, 1052435647, 'NL', 'Netherlands'), +('62.186.228.192', '62.186.228.223', 1052435648, 1052435679, 'EU', 'Europe'), +('62.186.228.224', '62.186.231.255', 1052435680, 1052436479, 'NL', 'Netherlands'), +('62.186.232.0', '62.186.234.31', 1052436480, 1052437023, 'DE', 'Germany'), +('62.186.234.32', '62.186.234.63', 1052437024, 1052437055, 'ZA', 'South Africa'), +('62.186.234.64', '62.186.234.127', 1052437056, 1052437119, 'DE', 'Germany'), +('62.186.234.128', '62.186.234.143', 1052437120, 1052437135, 'ZA', 'South Africa'), +('62.186.234.144', '62.186.234.159', 1052437136, 1052437151, 'DE', 'Germany'), +('62.186.234.160', '62.186.234.191', 1052437152, 1052437183, 'GB', 'United Kingdom'), +('62.186.234.192', '62.186.234.255', 1052437184, 1052437247, 'ZA', 'South Africa'), +('62.186.235.0', '62.186.236.255', 1052437248, 1052437759, 'DE', 'Germany'), +('62.186.237.0', '62.186.237.255', 1052437760, 1052438015, 'CH', 'Switzerland'), +('62.186.238.0', '62.186.239.127', 1052438016, 1052438399, 'BE', 'Belgium'), +('62.186.239.128', '62.186.239.255', 1052438400, 1052438527, 'EU', 'Europe'), +('62.186.240.0', '62.186.243.207', 1052438528, 1052439503, 'AT', 'Austria'), +('62.186.243.208', '62.186.243.223', 1052439504, 1052439519, 'EU', 'Europe'), +('62.186.243.224', '62.186.243.255', 1052439520, 1052439551, 'AT', 'Austria'), +('62.186.244.0', '62.186.247.255', 1052439552, 1052440575, 'FR', 'France'), +('62.186.248.0', '62.186.250.255', 1052440576, 1052441343, 'DE', 'Germany'), +('62.186.251.0', '62.186.251.255', 1052441344, 1052441599, 'EU', 'Europe'), +('62.186.252.0', '62.186.255.255', 1052441600, 1052442623, 'GB', 'United Kingdom'), +('62.187.0.0', '62.187.3.255', 1052442624, 1052443647, 'DE', 'Germany'), +('62.187.4.0', '62.187.13.255', 1052443648, 1052446207, 'EU', 'Europe'), +('62.187.14.0', '62.187.15.255', 1052446208, 1052446719, 'DE', 'Germany'), +('62.187.16.0', '62.187.19.255', 1052446720, 1052447743, 'CZ', 'Czech Republic'), +('62.187.20.0', '62.187.20.127', 1052447744, 1052447871, 'PL', 'Poland'), +('62.187.20.128', '62.187.20.255', 1052447872, 1052447999, 'EU', 'Europe'), +('62.187.21.0', '62.187.21.127', 1052448000, 1052448127, 'PL', 'Poland'), +('62.187.21.128', '62.187.21.255', 1052448128, 1052448255, 'EU', 'Europe'), +('62.187.22.0', '62.187.31.255', 1052448256, 1052450815, 'ZA', 'South Africa'), +('62.187.32.0', '62.187.35.255', 1052450816, 1052451839, 'DE', 'Germany'), +('62.187.36.0', '62.187.37.63', 1052451840, 1052452159, 'NO', 'Norway'), +('62.187.37.64', '62.187.37.127', 1052452160, 1052452223, 'EU', 'Europe'), +('62.187.37.128', '62.187.37.255', 1052452224, 1052452351, 'NO', 'Norway'), +('62.187.38.0', '62.187.39.223', 1052452352, 1052452831, 'ES', 'Spain'), +('62.187.39.224', '62.187.39.239', 1052452832, 1052452847, 'GB', 'United Kingdom'), +('62.187.39.240', '62.187.39.255', 1052452848, 1052452863, 'FR', 'France'), +('62.187.40.0', '62.187.40.127', 1052452864, 1052452991, 'EU', 'Europe'), +('62.187.40.128', '62.187.40.135', 1052452992, 1052452999, 'SK', 'Slovakia'), +('62.187.40.136', '62.187.40.255', 1052453000, 1052453119, 'EU', 'Europe'), +('62.187.41.0', '62.187.41.255', 1052453120, 1052453375, 'FR', 'France'), +('62.187.42.0', '62.187.43.255', 1052453376, 1052453887, 'AT', 'Austria'), +('62.187.44.0', '62.187.47.255', 1052453888, 1052454911, 'GB', 'United Kingdom'), +('62.187.48.0', '62.187.48.31', 1052454912, 1052454943, 'FR', 'France'), +('62.187.48.32', '62.187.48.47', 1052454944, 1052454959, 'NL', 'Netherlands'), +('62.187.48.48', '62.187.48.63', 1052454960, 1052454975, 'EU', 'Europe'), +('62.187.48.64', '62.187.49.191', 1052454976, 1052455359, 'NL', 'Netherlands'), +('62.187.49.192', '62.187.49.255', 1052455360, 1052455423, 'EU', 'Europe'), +('62.187.50.0', '62.187.51.255', 1052455424, 1052455935, 'GB', 'United Kingdom'), +('62.187.52.0', '62.187.53.255', 1052455936, 1052456447, 'NL', 'Netherlands'), +('62.187.54.0', '62.187.55.255', 1052456448, 1052456959, 'CH', 'Switzerland'), +('62.187.56.0', '62.187.59.255', 1052456960, 1052457983, 'NL', 'Netherlands'), +('62.187.60.0', '62.187.61.127', 1052457984, 1052458367, 'AT', 'Austria'), +('62.187.61.128', '62.187.61.191', 1052458368, 1052458431, 'EU', 'Europe'), +('62.187.61.192', '62.187.61.255', 1052458432, 1052458495, 'AT', 'Austria'), +('62.187.62.0', '62.187.63.95', 1052458496, 1052458847, 'NL', 'Netherlands'), +('62.187.63.96', '62.187.63.111', 1052458848, 1052458863, 'FR', 'France'), +('62.187.63.112', '62.187.63.119', 1052458864, 1052458871, 'NL', 'Netherlands'), +('62.187.63.120', '62.187.63.127', 1052458872, 1052458879, 'FR', 'France'), +('62.187.63.128', '62.187.67.255', 1052458880, 1052460031, 'GB', 'United Kingdom'), +('62.187.68.0', '62.187.68.95', 1052460032, 1052460127, 'NO', 'Norway'), +('62.187.68.96', '62.187.68.191', 1052460128, 1052460223, 'EU', 'Europe'), +('62.187.68.192', '62.187.68.255', 1052460224, 1052460287, 'FR', 'France'), +('62.187.69.0', '62.187.69.255', 1052460288, 1052460543, 'EU', 'Europe'), +('62.187.70.0', '62.187.70.255', 1052460544, 1052460799, 'NO', 'Norway'), +('62.187.71.0', '62.187.71.255', 1052460800, 1052461055, 'DE', 'Germany'), +('62.187.72.0', '62.187.72.239', 1052461056, 1052461295, 'FR', 'France'), +('62.187.72.240', '62.187.72.255', 1052461296, 1052461311, 'BE', 'Belgium'), +('62.187.73.0', '62.187.75.127', 1052461312, 1052461951, 'FR', 'France'), +('62.187.75.128', '62.187.75.143', 1052461952, 1052461967, 'EU', 'Europe'), +('62.187.75.144', '62.187.79.255', 1052461968, 1052463103, 'FR', 'France'), +('62.187.80.0', '62.187.81.255', 1052463104, 1052463615, 'ES', 'Spain'), +('62.187.82.0', '62.187.85.255', 1052463616, 1052464639, 'GB', 'United Kingdom'), +('62.187.86.0', '62.187.87.31', 1052464640, 1052464927, 'ES', 'Spain'), +('62.187.87.32', '62.187.87.63', 1052464928, 1052464959, 'EU', 'Europe'), +('62.187.87.64', '62.187.87.191', 1052464960, 1052465087, 'ES', 'Spain'), +('62.187.87.192', '62.187.87.255', 1052465088, 1052465151, 'EU', 'Europe'), +('62.187.88.0', '62.187.88.223', 1052465152, 1052465375, 'ZA', 'South Africa'), +('62.187.88.224', '62.187.88.255', 1052465376, 1052465407, 'EU', 'Europe'), +('62.187.89.0', '62.187.89.255', 1052465408, 1052465663, 'ZA', 'South Africa'), +('62.187.90.0', '62.187.92.255', 1052465664, 1052466431, 'EU', 'Europe'), +('62.187.93.0', '62.187.99.255', 1052466432, 1052468223, 'FR', 'France'), +('62.187.100.0', '62.187.103.255', 1052468224, 1052469247, 'GB', 'United Kingdom'), +('62.187.104.0', '62.187.107.255', 1052469248, 1052470271, 'FR', 'France'), +('62.187.108.0', '62.187.109.255', 1052470272, 1052470783, 'ZA', 'South Africa'), +('62.187.110.0', '62.187.110.223', 1052470784, 1052471007, 'FR', 'France'), +('62.187.110.224', '62.187.110.255', 1052471008, 1052471039, 'EU', 'Europe'), +('62.187.111.0', '62.187.111.255', 1052471040, 1052471295, 'BE', 'Belgium'), +('62.187.112.0', '62.187.116.191', 1052471296, 1052472511, 'GB', 'United Kingdom'), +('62.187.116.192', '62.187.116.255', 1052472512, 1052472575, 'EU', 'Europe'), +('62.187.117.0', '62.187.127.95', 1052472576, 1052475231, 'GB', 'United Kingdom'), +('62.187.127.96', '62.187.127.103', 1052475232, 1052475239, 'EU', 'Europe'), +('62.187.127.104', '62.187.127.119', 1052475240, 1052475255, 'GB', 'United Kingdom'), +('62.187.127.120', '62.187.127.127', 1052475256, 1052475263, 'EU', 'Europe'), +('62.187.127.128', '62.187.127.255', 1052475264, 1052475391, 'GB', 'United Kingdom'), +('62.187.128.0', '62.187.131.223', 1052475392, 1052476383, 'FR', 'France'), +('62.187.131.224', '62.187.131.255', 1052476384, 1052476415, 'EU', 'Europe'), +('62.187.132.0', '62.187.143.255', 1052476416, 1052479487, 'FR', 'France'), +('62.187.144.0', '62.187.144.255', 1052479488, 1052479743, 'NL', 'Netherlands'), +('62.187.145.0', '62.187.145.255', 1052479744, 1052479999, 'DE', 'Germany'), +('62.187.146.0', '62.187.159.255', 1052480000, 1052483583, 'NL', 'Netherlands'), +('62.187.160.0', '62.187.161.159', 1052483584, 1052483999, 'IT', 'Italy'), +('62.187.161.160', '62.187.161.191', 1052484000, 1052484031, 'EU', 'Europe'), +('62.187.161.192', '62.187.166.159', 1052484032, 1052485279, 'IT', 'Italy'), +('62.187.166.160', '62.187.166.191', 1052485280, 1052485311, 'EU', 'Europe'), +('62.187.166.192', '62.187.167.255', 1052485312, 1052485631, 'IT', 'Italy'), +('62.187.168.0', '62.187.171.255', 1052485632, 1052486655, 'GB', 'United Kingdom'), +('62.187.172.0', '62.187.172.255', 1052486656, 1052486911, 'CH', 'Switzerland'), +('62.187.173.0', '62.187.173.63', 1052486912, 1052486975, 'DE', 'Germany'), +('62.187.173.64', '62.187.173.127', 1052486976, 1052487039, 'FR', 'France'), +('62.187.173.128', '62.187.173.255', 1052487040, 1052487167, 'DE', 'Germany'), +('62.187.174.0', '62.187.174.255', 1052487168, 1052487423, 'GB', 'United Kingdom'), +('62.187.175.0', '62.187.175.255', 1052487424, 1052487679, 'AT', 'Austria'), +('62.187.176.0', '62.187.179.255', 1052487680, 1052488703, 'CH', 'Switzerland'), +('62.187.180.0', '62.187.183.255', 1052488704, 1052489727, 'GB', 'United Kingdom'), +('62.187.184.0', '62.187.185.255', 1052489728, 1052490239, 'IE', 'Ireland'), +('62.187.186.0', '62.187.187.255', 1052490240, 1052490751, 'SE', 'Sweden'), +('62.187.188.0', '62.187.191.159', 1052490752, 1052491679, 'AT', 'Austria'), +('62.187.191.160', '62.187.191.167', 1052491680, 1052491687, 'EU', 'Europe'), +('62.187.191.168', '62.187.191.255', 1052491688, 1052491775, 'AT', 'Austria'), +('62.187.192.0', '62.187.198.255', 1052491776, 1052493567, 'BE', 'Belgium'), +('62.187.199.0', '62.187.199.127', 1052493568, 1052493695, 'EU', 'Europe'), +('62.187.199.128', '62.187.201.255', 1052493696, 1052494335, 'BE', 'Belgium'), +('62.187.202.0', '62.187.202.255', 1052494336, 1052494591, 'NL', 'Netherlands'), +('62.187.203.0', '62.187.206.79', 1052494592, 1052495439, 'BE', 'Belgium'), +('62.187.206.80', '62.187.206.127', 1052495440, 1052495487, 'FR', 'France'), +('62.187.206.128', '62.187.206.191', 1052495488, 1052495551, 'BE', 'Belgium'), +('62.187.206.192', '62.187.206.223', 1052495552, 1052495583, 'GB', 'United Kingdom'), +('62.187.206.224', '62.187.207.255', 1052495584, 1052495871, 'BE', 'Belgium'), +('62.187.208.0', '62.187.208.7', 1052495872, 1052495879, 'UA', 'Ukraine'), +('62.187.208.8', '62.187.208.255', 1052495880, 1052496127, 'EU', 'Europe'), +('62.187.209.0', '62.187.213.255', 1052496128, 1052497407, 'DE', 'Germany'), +('62.187.214.0', '62.187.214.255', 1052497408, 1052497663, 'EU', 'Europe'), +('62.187.215.0', '62.187.215.255', 1052497664, 1052497919, 'DE', 'Germany'), +('62.187.216.0', '62.187.217.255', 1052497920, 1052498431, 'ES', 'Spain'), +('62.187.218.0', '62.187.218.63', 1052498432, 1052498495, 'RO', 'Romania'), +('62.187.218.64', '62.187.219.255', 1052498496, 1052498943, 'EU', 'Europe'), +('62.187.220.0', '62.187.221.255', 1052498944, 1052499455, 'GB', 'United Kingdom'), +('62.187.222.0', '62.187.223.255', 1052499456, 1052499967, 'EU', 'Europe'), +('62.187.224.0', '62.187.224.223', 1052499968, 1052500191, 'DK', 'Denmark'), +('62.187.224.224', '62.187.224.239', 1052500192, 1052500207, 'EU', 'Europe'), +('62.187.224.240', '62.187.225.95', 1052500208, 1052500319, 'DK', 'Denmark'), +('62.187.225.96', '62.187.225.255', 1052500320, 1052500479, 'EU', 'Europe'), +('62.187.226.0', '62.187.227.255', 1052500480, 1052500991, 'GB', 'United Kingdom'), +('62.187.228.0', '62.187.228.31', 1052500992, 1052501023, 'FI', 'Finland'), +('62.187.228.32', '62.187.228.39', 1052501024, 1052501031, 'EU', 'Europe'), +('62.187.228.40', '62.187.228.47', 1052501032, 1052501039, 'FI', 'Finland'), +('62.187.228.48', '62.187.228.127', 1052501040, 1052501119, 'EU', 'Europe'), +('62.187.228.128', '62.187.228.255', 1052501120, 1052501247, 'FI', 'Finland'), +('62.187.229.0', '62.187.229.255', 1052501248, 1052501503, 'EU', 'Europe'), +('62.187.230.0', '62.187.231.255', 1052501504, 1052502015, 'CH', 'Switzerland'), +('62.187.232.0', '62.187.234.255', 1052502016, 1052502783, 'IE', 'Ireland'), +('62.187.235.0', '62.187.235.31', 1052502784, 1052502815, 'EU', 'Europe'), +('62.187.235.32', '62.187.235.63', 1052502816, 1052502847, 'IE', 'Ireland'), +('62.187.235.64', '62.187.235.255', 1052502848, 1052503039, 'EU', 'Europe'), +('62.187.236.0', '62.187.240.255', 1052503040, 1052504319, 'GB', 'United Kingdom'), +('62.187.241.0', '62.187.241.31', 1052504320, 1052504351, 'BY', 'Belarus'), +('62.187.241.32', '62.187.241.63', 1052504352, 1052504383, 'EU', 'Europe'), +('62.187.241.64', '62.187.253.191', 1052504384, 1052507583, 'GB', 'United Kingdom'), +('62.187.253.192', '62.187.253.255', 1052507584, 1052507647, 'EU', 'Europe'), +('62.187.254.0', '62.187.254.127', 1052507648, 1052507775, 'GB', 'United Kingdom'), +('62.187.254.128', '62.187.254.255', 1052507776, 1052507903, 'EU', 'Europe'), +('62.187.255.0', '62.189.88.223', 1052507904, 1052596447, 'GB', 'United Kingdom'), +('62.189.88.224', '62.189.88.239', 1052596448, 1052596463, 'IT', 'Italy'), +('62.189.88.240', '62.189.112.127', 1052596464, 1052602495, 'GB', 'United Kingdom'), +('62.189.112.128', '62.189.112.255', 1052602496, 1052602623, 'ES', 'Spain'), +('62.189.113.0', '62.189.188.127', 1052602624, 1052621951, 'GB', 'United Kingdom'), +('62.189.188.128', '62.189.188.191', 1052621952, 1052622015, 'IE', 'Ireland'), +('62.189.188.192', '62.189.239.63', 1052622016, 1052634943, 'GB', 'United Kingdom'), +('62.189.239.64', '62.189.239.71', 1052634944, 1052634951, 'IE', 'Ireland'), +('62.189.239.72', '62.190.18.255', 1052634952, 1052644095, 'GB', 'United Kingdom'), +('62.190.19.0', '62.190.19.255', 1052644096, 1052644351, 'SE', 'Sweden'), +('62.190.20.0', '62.190.30.255', 1052644352, 1052647167, 'GB', 'United Kingdom'), +('62.190.31.0', '62.190.31.255', 1052647168, 1052647423, 'SE', 'Sweden'), +('62.190.32.0', '62.190.87.255', 1052647424, 1052661759, 'GB', 'United Kingdom'), +('62.190.88.0', '62.190.89.255', 1052661760, 1052662271, 'SE', 'Sweden'), +('62.190.90.0', '62.190.101.255', 1052662272, 1052665343, 'GB', 'United Kingdom'), +('62.190.102.0', '62.190.102.255', 1052665344, 1052665599, 'SE', 'Sweden'), +('62.190.103.0', '62.190.177.31', 1052665600, 1052684575, 'GB', 'United Kingdom'), +('62.190.177.32', '62.190.177.63', 1052684576, 1052684607, 'IT', 'Italy'), +('62.190.177.64', '62.191.255.255', 1052684608, 1052770303, 'GB', 'United Kingdom'), +('62.192.0.0', '62.192.21.79', 1052770304, 1052775759, 'CH', 'Switzerland'), +('62.192.21.80', '62.192.21.87', 1052775760, 1052775767, 'GB', 'United Kingdom'), +('62.192.21.88', '62.192.31.255', 1052775768, 1052778495, 'CH', 'Switzerland'), +('62.192.32.0', '62.192.63.255', 1052778496, 1052786687, 'RU', 'Russian Federation'), +('62.192.64.0', '62.192.127.255', 1052786688, 1052803071, 'NL', 'Netherlands'), +('62.192.128.0', '62.192.141.255', 1052803072, 1052806655, 'A2', 'Satellite Provider'), +('62.192.142.0', '62.192.143.255', 1052806656, 1052807167, 'MW', 'Malawi'), +('62.192.144.0', '62.192.159.255', 1052807168, 1052811263, 'A2', 'Satellite Provider'), +('62.192.160.0', '62.192.191.255', 1052811264, 1052819455, 'RU', 'Russian Federation'), +('62.192.192.0', '62.192.223.255', 1052819456, 1052827647, 'DE', 'Germany'), +('62.192.224.0', '62.192.255.255', 1052827648, 1052835839, 'RU', 'Russian Federation'), +('62.193.0.0', '62.193.31.255', 1052835840, 1052844031, 'IR', 'Iran, Islamic Republic of'), +('62.193.32.0', '62.193.63.255', 1052844032, 1052852223, 'FR', 'France'), +('62.193.64.0', '62.193.127.255', 1052852224, 1052868607, 'EG', 'Egypt'), +('62.193.128.0', '62.193.159.255', 1052868608, 1052876799, 'RS', 'Serbia'), +('62.193.160.0', '62.193.191.255', 1052876800, 1052884991, 'NG', 'Nigeria'), +('62.193.192.0', '62.193.255.255', 1052884992, 1052901375, 'FR', 'France'), +('62.194.0.0', '62.195.255.255', 1052901376, 1053032447, 'NL', 'Netherlands'), +('62.196.0.0', '62.196.255.255', 1053032448, 1053097983, 'IT', 'Italy'), +('62.197.0.0', '62.197.31.255', 1053097984, 1053106175, 'DE', 'Germany'), +('62.197.32.0', '62.197.63.255', 1053106176, 1053114367, 'GB', 'United Kingdom'), +('62.197.64.0', '62.197.127.255', 1053114368, 1053130751, 'BE', 'Belgium'), +('62.197.128.0', '62.197.159.255', 1053130752, 1053138943, 'NL', 'Netherlands'), +('62.197.160.0', '62.197.191.255', 1053138944, 1053147135, 'FI', 'Finland'), +('62.197.192.0', '62.197.255.255', 1053147136, 1053163519, 'SK', 'Slovakia'), +('62.198.0.0', '62.199.255.255', 1053163520, 1053294591, 'DK', 'Denmark'), +('62.200.0.0', '62.200.0.255', 1053294592, 1053294847, 'EU', 'Europe'), +('62.200.1.0', '62.200.1.255', 1053294848, 1053295103, 'AT', 'Austria'), +('62.200.2.0', '62.200.3.31', 1053295104, 1053295391, 'EU', 'Europe'), +('62.200.3.32', '62.200.3.63', 1053295392, 1053295423, 'AT', 'Austria'), +('62.200.3.64', '62.200.3.95', 1053295424, 1053295455, 'EU', 'Europe'), +('62.200.3.96', '62.200.3.111', 1053295456, 1053295471, 'AT', 'Austria'), +('62.200.3.112', '62.200.3.255', 1053295472, 1053295615, 'EU', 'Europe'), +('62.200.4.0', '62.200.7.255', 1053295616, 1053296639, 'AT', 'Austria'), +('62.200.8.0', '62.200.9.31', 1053296640, 1053296927, 'IT', 'Italy'), +('62.200.9.32', '62.200.9.95', 1053296928, 1053296991, 'EU', 'Europe'), +('62.200.9.96', '62.200.9.127', 1053296992, 1053297023, 'IT', 'Italy'), +('62.200.9.128', '62.200.9.143', 1053297024, 1053297039, 'EU', 'Europe'), +('62.200.9.144', '62.200.9.159', 1053297040, 1053297055, 'IT', 'Italy'), +('62.200.9.160', '62.200.9.215', 1053297056, 1053297111, 'EU', 'Europe'), +('62.200.9.216', '62.200.9.255', 1053297112, 1053297151, 'IT', 'Italy'), +('62.200.10.0', '62.200.13.255', 1053297152, 1053298175, 'EU', 'Europe'), +('62.200.14.0', '62.200.17.255', 1053298176, 1053299199, 'CH', 'Switzerland'), +('62.200.18.0', '62.200.19.255', 1053299200, 1053299711, 'EU', 'Europe'), +('62.200.20.0', '62.200.21.55', 1053299712, 1053300023, 'GB', 'United Kingdom'), +('62.200.21.56', '62.200.21.63', 1053300024, 1053300031, 'EU', 'Europe'), +('62.200.21.64', '62.200.21.151', 1053300032, 1053300119, 'GB', 'United Kingdom'), +('62.200.21.152', '62.200.21.159', 1053300120, 1053300127, 'EU', 'Europe'), +('62.200.21.160', '62.200.21.175', 1053300128, 1053300143, 'GB', 'United Kingdom'), +('62.200.21.176', '62.200.21.191', 1053300144, 1053300159, 'EU', 'Europe'), +('62.200.21.192', '62.200.23.255', 1053300160, 1053300735, 'GB', 'United Kingdom'), +('62.200.24.0', '62.200.24.255', 1053300736, 1053300991, 'CH', 'Switzerland'), +('62.200.25.0', '62.200.25.31', 1053300992, 1053301023, 'FR', 'France'), +('62.200.25.32', '62.200.25.47', 1053301024, 1053301039, 'EU', 'Europe'), +('62.200.25.48', '62.200.25.71', 1053301040, 1053301063, 'FR', 'France'), +('62.200.25.72', '62.200.25.79', 1053301064, 1053301071, 'EU', 'Europe'), +('62.200.25.80', '62.200.25.95', 1053301072, 1053301087, 'FR', 'France'), +('62.200.25.96', '62.200.25.127', 1053301088, 1053301119, 'EU', 'Europe'), +('62.200.25.128', '62.200.25.143', 1053301120, 1053301135, 'FR', 'France'), +('62.200.25.144', '62.200.25.175', 1053301136, 1053301167, 'EU', 'Europe'), +('62.200.25.176', '62.200.25.191', 1053301168, 1053301183, 'FR', 'France'), +('62.200.25.192', '62.200.25.207', 1053301184, 1053301199, 'EU', 'Europe'), +('62.200.25.208', '62.200.25.215', 1053301200, 1053301207, 'FR', 'France'), +('62.200.25.216', '62.200.25.223', 1053301208, 1053301215, 'EU', 'Europe'), +('62.200.25.224', '62.200.26.95', 1053301216, 1053301343, 'FR', 'France'), +('62.200.26.96', '62.200.26.103', 1053301344, 1053301351, 'EU', 'Europe'), +('62.200.26.104', '62.200.26.111', 1053301352, 1053301359, 'FR', 'France'), +('62.200.26.112', '62.200.26.119', 1053301360, 1053301367, 'EU', 'Europe'), +('62.200.26.120', '62.200.26.255', 1053301368, 1053301503, 'FR', 'France'), +('62.200.27.0', '62.200.29.15', 1053301504, 1053302031, 'EU', 'Europe'), +('62.200.29.16', '62.200.29.39', 1053302032, 1053302055, 'FR', 'France'), +('62.200.29.40', '62.200.29.47', 1053302056, 1053302063, 'DE', 'Germany'), +('62.200.29.48', '62.200.29.143', 1053302064, 1053302159, 'FR', 'France'), +('62.200.29.144', '62.200.29.159', 1053302160, 1053302175, 'EU', 'Europe'), +('62.200.29.160', '62.200.29.167', 1053302176, 1053302183, 'FR', 'France'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('62.200.29.168', '62.200.30.47', 1053302184, 1053302319, 'EU', 'Europe'), +('62.200.30.48', '62.200.30.63', 1053302320, 1053302335, 'FR', 'France'), +('62.200.30.64', '62.200.30.111', 1053302336, 1053302383, 'EU', 'Europe'), +('62.200.30.112', '62.200.31.159', 1053302384, 1053302687, 'FR', 'France'), +('62.200.31.160', '62.200.31.199', 1053302688, 1053302727, 'EU', 'Europe'), +('62.200.31.200', '62.200.31.207', 1053302728, 1053302735, 'FR', 'France'), +('62.200.31.208', '62.200.31.231', 1053302736, 1053302759, 'EU', 'Europe'), +('62.200.31.232', '62.200.31.255', 1053302760, 1053302783, 'FR', 'France'), +('62.200.32.0', '62.200.40.255', 1053302784, 1053305087, 'EU', 'Europe'), +('62.200.41.0', '62.200.44.95', 1053305088, 1053305951, 'GR', 'Greece'), +('62.200.44.96', '62.200.44.255', 1053305952, 1053306111, 'EU', 'Europe'), +('62.200.45.0', '62.200.47.255', 1053306112, 1053306879, 'GR', 'Greece'), +('62.200.48.0', '62.200.51.255', 1053306880, 1053307903, 'EU', 'Europe'), +('62.200.52.0', '62.200.52.95', 1053307904, 1053307999, 'GB', 'United Kingdom'), +('62.200.52.96', '62.200.52.127', 1053308000, 1053308031, 'EU', 'Europe'), +('62.200.52.128', '62.200.52.191', 1053308032, 1053308095, 'GB', 'United Kingdom'), +('62.200.52.192', '62.200.52.255', 1053308096, 1053308159, 'EU', 'Europe'), +('62.200.53.0', '62.200.54.127', 1053308160, 1053308543, 'GB', 'United Kingdom'), +('62.200.54.128', '62.200.54.255', 1053308544, 1053308671, 'EU', 'Europe'), +('62.200.55.0', '62.200.55.95', 1053308672, 1053308767, 'GB', 'United Kingdom'), +('62.200.55.96', '62.200.55.127', 1053308768, 1053308799, 'EU', 'Europe'), +('62.200.55.128', '62.200.55.191', 1053308800, 1053308863, 'GB', 'United Kingdom'), +('62.200.55.192', '62.200.55.255', 1053308864, 1053308927, 'EU', 'Europe'), +('62.200.56.0', '62.200.56.63', 1053308928, 1053308991, 'ZA', 'South Africa'), +('62.200.56.64', '62.200.56.255', 1053308992, 1053309183, 'EU', 'Europe'), +('62.200.57.0', '62.200.59.255', 1053309184, 1053309951, 'ZA', 'South Africa'), +('62.200.60.0', '62.200.64.255', 1053309952, 1053311231, 'EU', 'Europe'), +('62.200.65.0', '62.200.65.127', 1053311232, 1053311359, 'CZ', 'Czech Republic'), +('62.200.65.128', '62.200.67.255', 1053311360, 1053311999, 'EU', 'Europe'), +('62.200.68.0', '62.200.71.47', 1053312000, 1053312815, 'DK', 'Denmark'), +('62.200.71.48', '62.200.71.79', 1053312816, 1053312847, 'EU', 'Europe'), +('62.200.71.80', '62.200.71.103', 1053312848, 1053312871, 'DK', 'Denmark'), +('62.200.71.104', '62.200.71.111', 1053312872, 1053312879, 'EU', 'Europe'), +('62.200.71.112', '62.200.71.143', 1053312880, 1053312911, 'DK', 'Denmark'), +('62.200.71.144', '62.200.71.159', 1053312912, 1053312927, 'EU', 'Europe'), +('62.200.71.160', '62.200.71.191', 1053312928, 1053312959, 'DK', 'Denmark'), +('62.200.71.192', '62.200.71.255', 1053312960, 1053313023, 'EU', 'Europe'), +('62.200.72.0', '62.200.72.255', 1053313024, 1053313279, 'GB', 'United Kingdom'), +('62.200.73.0', '62.200.73.15', 1053313280, 1053313295, 'EU', 'Europe'), +('62.200.73.16', '62.200.73.63', 1053313296, 1053313343, 'GB', 'United Kingdom'), +('62.200.73.64', '62.200.73.159', 1053313344, 1053313439, 'EU', 'Europe'), +('62.200.73.160', '62.200.74.63', 1053313440, 1053313599, 'GB', 'United Kingdom'), +('62.200.74.64', '62.200.74.127', 1053313600, 1053313663, 'EU', 'Europe'), +('62.200.74.128', '62.200.74.143', 1053313664, 1053313679, 'GB', 'United Kingdom'), +('62.200.74.144', '62.200.74.191', 1053313680, 1053313727, 'EU', 'Europe'), +('62.200.74.192', '62.200.74.255', 1053313728, 1053313791, 'GB', 'United Kingdom'), +('62.200.75.0', '62.200.75.127', 1053313792, 1053313919, 'EU', 'Europe'), +('62.200.75.128', '62.200.75.255', 1053313920, 1053314047, 'GB', 'United Kingdom'), +('62.200.76.0', '62.200.76.15', 1053314048, 1053314063, 'EU', 'Europe'), +('62.200.76.16', '62.200.76.31', 1053314064, 1053314079, 'CZ', 'Czech Republic'), +('62.200.76.32', '62.200.79.255', 1053314080, 1053315071, 'EU', 'Europe'), +('62.200.80.0', '62.200.86.15', 1053315072, 1053316623, 'GB', 'United Kingdom'), +('62.200.86.16', '62.200.86.23', 1053316624, 1053316631, 'EU', 'Europe'), +('62.200.86.24', '62.200.86.31', 1053316632, 1053316639, 'GB', 'United Kingdom'), +('62.200.86.32', '62.200.86.39', 1053316640, 1053316647, 'EU', 'Europe'), +('62.200.86.40', '62.200.86.63', 1053316648, 1053316671, 'GB', 'United Kingdom'), +('62.200.86.64', '62.200.86.79', 1053316672, 1053316687, 'EU', 'Europe'), +('62.200.86.80', '62.200.86.103', 1053316688, 1053316711, 'GB', 'United Kingdom'), +('62.200.86.104', '62.200.86.111', 1053316712, 1053316719, 'EU', 'Europe'), +('62.200.86.112', '62.200.86.119', 1053316720, 1053316727, 'GB', 'United Kingdom'), +('62.200.86.120', '62.200.86.127', 1053316728, 1053316735, 'EU', 'Europe'), +('62.200.86.128', '62.200.86.255', 1053316736, 1053316863, 'GB', 'United Kingdom'), +('62.200.87.0', '62.200.87.255', 1053316864, 1053317119, 'EU', 'Europe'), +('62.200.88.0', '62.200.88.175', 1053317120, 1053317295, 'ZA', 'South Africa'), +('62.200.88.176', '62.200.88.255', 1053317296, 1053317375, 'EU', 'Europe'), +('62.200.89.0', '62.200.89.255', 1053317376, 1053317631, 'GB', 'United Kingdom'), +('62.200.90.0', '62.200.91.255', 1053317632, 1053318143, 'EU', 'Europe'), +('62.200.92.0', '62.200.93.255', 1053318144, 1053318655, 'GB', 'United Kingdom'), +('62.200.94.0', '62.200.94.255', 1053318656, 1053318911, 'FI', 'Finland'), +('62.200.95.0', '62.200.95.15', 1053318912, 1053318927, 'EU', 'Europe'), +('62.200.95.16', '62.200.95.39', 1053318928, 1053318951, 'FI', 'Finland'), +('62.200.95.40', '62.200.95.47', 1053318952, 1053318959, 'EE', 'Estonia'), +('62.200.95.48', '62.200.95.63', 1053318960, 1053318975, 'EU', 'Europe'), +('62.200.95.64', '62.200.95.79', 1053318976, 1053318991, 'FI', 'Finland'), +('62.200.95.80', '62.200.96.255', 1053318992, 1053319423, 'EU', 'Europe'), +('62.200.97.0', '62.200.99.255', 1053319424, 1053320191, 'DE', 'Germany'), +('62.200.100.0', '62.200.100.31', 1053320192, 1053320223, 'EU', 'Europe'), +('62.200.100.32', '62.200.100.127', 1053320224, 1053320319, 'DE', 'Germany'), +('62.200.100.128', '62.200.123.255', 1053320320, 1053326335, 'EU', 'Europe'), +('62.200.124.0', '62.200.124.63', 1053326336, 1053326399, 'BE', 'Belgium'), +('62.200.124.64', '62.200.124.95', 1053326400, 1053326431, 'EU', 'Europe'), +('62.200.124.96', '62.200.124.111', 1053326432, 1053326447, 'GB', 'United Kingdom'), +('62.200.124.112', '62.200.124.127', 1053326448, 1053326463, 'BE', 'Belgium'), +('62.200.124.128', '62.200.124.191', 1053326464, 1053326527, 'EU', 'Europe'), +('62.200.124.192', '62.200.124.207', 1053326528, 1053326543, 'BE', 'Belgium'), +('62.200.124.208', '62.200.124.223', 1053326544, 1053326559, 'EU', 'Europe'), +('62.200.124.224', '62.200.124.231', 1053326560, 1053326567, 'BE', 'Belgium'), +('62.200.124.232', '62.200.124.239', 1053326568, 1053326575, 'EU', 'Europe'), +('62.200.124.240', '62.200.125.255', 1053326576, 1053326847, 'BE', 'Belgium'), +('62.200.126.0', '62.200.126.255', 1053326848, 1053327103, 'FI', 'Finland'), +('62.200.127.0', '62.200.127.255', 1053327104, 1053327359, 'DK', 'Denmark'), +('62.200.128.0', '62.200.129.255', 1053327360, 1053327871, 'EU', 'Europe'), +('62.200.130.0', '62.200.131.255', 1053327872, 1053328383, 'ZA', 'South Africa'), +('62.200.132.0', '62.200.132.255', 1053328384, 1053328639, 'EU', 'Europe'), +('62.200.133.0', '62.200.133.159', 1053328640, 1053328799, 'ZA', 'South Africa'), +('62.200.133.160', '62.200.133.255', 1053328800, 1053328895, 'EU', 'Europe'), +('62.200.134.0', '62.200.134.191', 1053328896, 1053329087, 'ZA', 'South Africa'), +('62.200.134.192', '62.200.134.223', 1053329088, 1053329119, 'EU', 'Europe'), +('62.200.134.224', '62.200.134.239', 1053329120, 1053329135, 'ZA', 'South Africa'), +('62.200.134.240', '62.200.134.247', 1053329136, 1053329143, 'EU', 'Europe'), +('62.200.134.248', '62.200.134.255', 1053329144, 1053329151, 'ZA', 'South Africa'), +('62.200.135.0', '62.200.135.31', 1053329152, 1053329183, 'EU', 'Europe'), +('62.200.135.32', '62.200.135.127', 1053329184, 1053329279, 'ZA', 'South Africa'), +('62.200.135.128', '62.200.135.255', 1053329280, 1053329407, 'EU', 'Europe'), +('62.200.136.0', '62.200.136.31', 1053329408, 1053329439, 'ES', 'Spain'), +('62.200.136.32', '62.200.136.103', 1053329440, 1053329511, 'EU', 'Europe'), +('62.200.136.104', '62.200.136.127', 1053329512, 1053329535, 'ES', 'Spain'), +('62.200.136.128', '62.200.136.191', 1053329536, 1053329599, 'EU', 'Europe'), +('62.200.136.192', '62.200.136.231', 1053329600, 1053329639, 'ES', 'Spain'), +('62.200.136.232', '62.200.139.255', 1053329640, 1053330431, 'EU', 'Europe'), +('62.200.140.0', '62.200.140.255', 1053330432, 1053330687, 'ES', 'Spain'), +('62.200.141.0', '62.200.143.255', 1053330688, 1053331455, 'EU', 'Europe'), +('62.200.144.0', '62.200.144.31', 1053331456, 1053331487, 'NL', 'Netherlands'), +('62.200.144.32', '62.200.144.127', 1053331488, 1053331583, 'EU', 'Europe'), +('62.200.144.128', '62.200.144.207', 1053331584, 1053331663, 'NL', 'Netherlands'), +('62.200.144.208', '62.200.144.223', 1053331664, 1053331679, 'EU', 'Europe'), +('62.200.144.224', '62.200.144.247', 1053331680, 1053331703, 'NL', 'Netherlands'), +('62.200.144.248', '62.200.144.255', 1053331704, 1053331711, 'EU', 'Europe'), +('62.200.145.0', '62.200.145.175', 1053331712, 1053331887, 'NL', 'Netherlands'), +('62.200.145.176', '62.200.145.191', 1053331888, 1053331903, 'EU', 'Europe'), +('62.200.145.192', '62.200.145.223', 1053331904, 1053331935, 'NL', 'Netherlands'), +('62.200.145.224', '62.200.146.255', 1053331936, 1053332223, 'EU', 'Europe'), +('62.200.147.0', '62.200.147.47', 1053332224, 1053332271, 'NL', 'Netherlands'), +('62.200.147.48', '62.200.147.95', 1053332272, 1053332319, 'EU', 'Europe'), +('62.200.147.96', '62.200.147.191', 1053332320, 1053332415, 'NL', 'Netherlands'), +('62.200.147.192', '62.200.149.255', 1053332416, 1053332991, 'EU', 'Europe'), +('62.200.150.0', '62.200.153.255', 1053332992, 1053334015, 'BE', 'Belgium'), +('62.200.154.0', '62.200.154.175', 1053334016, 1053334191, 'DK', 'Denmark'), +('62.200.154.176', '62.200.154.183', 1053334192, 1053334199, 'EU', 'Europe'), +('62.200.154.184', '62.200.154.207', 1053334200, 1053334223, 'DK', 'Denmark'), +('62.200.154.208', '62.200.154.223', 1053334224, 1053334239, 'EU', 'Europe'), +('62.200.154.224', '62.200.155.255', 1053334240, 1053334527, 'DK', 'Denmark'), +('62.200.156.0', '62.200.156.255', 1053334528, 1053334783, 'SE', 'Sweden'), +('62.200.157.0', '62.200.159.255', 1053334784, 1053335551, 'EU', 'Europe'), +('62.200.160.0', '62.200.164.255', 1053335552, 1053336831, 'ZA', 'South Africa'), +('62.200.165.0', '62.200.165.255', 1053336832, 1053337087, 'EU', 'Europe'), +('62.200.166.0', '62.200.166.31', 1053337088, 1053337119, 'ZA', 'South Africa'), +('62.200.166.32', '62.200.166.39', 1053337120, 1053337127, 'EU', 'Europe'), +('62.200.166.40', '62.200.166.95', 1053337128, 1053337183, 'ZA', 'South Africa'), +('62.200.166.96', '62.200.166.127', 1053337184, 1053337215, 'EU', 'Europe'), +('62.200.166.128', '62.200.166.191', 1053337216, 1053337279, 'ZA', 'South Africa'), +('62.200.166.192', '62.200.167.255', 1053337280, 1053337599, 'EU', 'Europe'), +('62.200.168.0', '62.200.168.31', 1053337600, 1053337631, 'CH', 'Switzerland'), +('62.200.168.32', '62.200.169.255', 1053337632, 1053338111, 'EU', 'Europe'), +('62.200.170.0', '62.200.171.255', 1053338112, 1053338623, 'FI', 'Finland'), +('62.200.172.0', '62.200.173.63', 1053338624, 1053338943, 'NO', 'Norway'), +('62.200.173.64', '62.200.173.95', 1053338944, 1053338975, 'EU', 'Europe'), +('62.200.173.96', '62.200.173.103', 1053338976, 1053338983, 'NO', 'Norway'), +('62.200.173.104', '62.200.173.255', 1053338984, 1053339135, 'EU', 'Europe'), +('62.200.174.0', '62.200.175.31', 1053339136, 1053339423, 'NO', 'Norway'), +('62.200.175.32', '62.200.175.63', 1053339424, 1053339455, 'EU', 'Europe'), +('62.200.175.64', '62.200.175.127', 1053339456, 1053339519, 'NO', 'Norway'), +('62.200.175.128', '62.200.175.199', 1053339520, 1053339591, 'EU', 'Europe'), +('62.200.175.200', '62.200.175.207', 1053339592, 1053339599, 'NO', 'Norway'), +('62.200.175.208', '62.200.175.223', 1053339600, 1053339615, 'EU', 'Europe'), +('62.200.175.224', '62.200.175.255', 1053339616, 1053339647, 'NO', 'Norway'), +('62.200.176.0', '62.200.177.255', 1053339648, 1053340159, 'AT', 'Austria'), +('62.200.178.0', '62.200.178.255', 1053340160, 1053340415, 'ZA', 'South Africa'), +('62.200.179.0', '62.200.179.63', 1053340416, 1053340479, 'EU', 'Europe'), +('62.200.179.64', '62.200.179.79', 1053340480, 1053340495, 'NL', 'Netherlands'), +('62.200.179.80', '62.200.179.255', 1053340496, 1053340671, 'EU', 'Europe'), +('62.200.180.0', '62.200.180.39', 1053340672, 1053340711, 'GB', 'United Kingdom'), +('62.200.180.40', '62.200.180.47', 1053340712, 1053340719, 'EU', 'Europe'), +('62.200.180.48', '62.200.180.207', 1053340720, 1053340879, 'GB', 'United Kingdom'), +('62.200.180.208', '62.200.180.215', 1053340880, 1053340887, 'EU', 'Europe'), +('62.200.180.216', '62.200.180.223', 1053340888, 1053340895, 'GB', 'United Kingdom'), +('62.200.180.224', '62.200.180.231', 1053340896, 1053340903, 'EU', 'Europe'), +('62.200.180.232', '62.200.180.247', 1053340904, 1053340919, 'GB', 'United Kingdom'), +('62.200.180.248', '62.200.180.255', 1053340920, 1053340927, 'EU', 'Europe'), +('62.200.181.0', '62.200.181.255', 1053340928, 1053341183, 'GB', 'United Kingdom'), +('62.200.182.0', '62.200.182.255', 1053341184, 1053341439, 'EU', 'Europe'), +('62.200.183.0', '62.200.183.255', 1053341440, 1053341695, 'GB', 'United Kingdom'), +('62.200.184.0', '62.200.191.255', 1053341696, 1053343743, 'EU', 'Europe'), +('62.200.192.0', '62.200.193.255', 1053343744, 1053344255, 'FI', 'Finland'), +('62.200.194.0', '62.200.194.255', 1053344256, 1053344511, 'EU', 'Europe'), +('62.200.195.0', '62.200.195.255', 1053344512, 1053344767, 'BG', 'Bulgaria'), +('62.200.196.0', '62.200.197.255', 1053344768, 1053345279, 'EU', 'Europe'), +('62.200.198.0', '62.200.198.95', 1053345280, 1053345375, 'PK', 'Pakistan'), +('62.200.198.96', '62.200.198.127', 1053345376, 1053345407, 'EU', 'Europe'), +('62.200.198.128', '62.200.198.191', 1053345408, 1053345471, 'PK', 'Pakistan'), +('62.200.198.192', '62.200.211.31', 1053345472, 1053348639, 'EU', 'Europe'), +('62.200.211.32', '62.200.211.47', 1053348640, 1053348655, 'PT', 'Portugal'), +('62.200.211.48', '62.200.212.255', 1053348656, 1053349119, 'EU', 'Europe'), +('62.200.213.0', '62.200.214.255', 1053349120, 1053349631, 'NL', 'Netherlands'), +('62.200.215.0', '62.200.215.255', 1053349632, 1053349887, 'EU', 'Europe'), +('62.200.216.0', '62.200.216.63', 1053349888, 1053349951, 'IE', 'Ireland'), +('62.200.216.64', '62.200.216.255', 1053349952, 1053350143, 'EU', 'Europe'), +('62.200.217.0', '62.200.217.215', 1053350144, 1053350359, 'IE', 'Ireland'), +('62.200.217.216', '62.200.217.223', 1053350360, 1053350367, 'EU', 'Europe'), +('62.200.217.224', '62.200.217.239', 1053350368, 1053350383, 'IE', 'Ireland'), +('62.200.217.240', '62.200.217.255', 1053350384, 1053350399, 'EU', 'Europe'), +('62.200.218.0', '62.200.218.79', 1053350400, 1053350479, 'BE', 'Belgium'), +('62.200.218.80', '62.200.218.87', 1053350480, 1053350487, 'EU', 'Europe'), +('62.200.218.88', '62.200.218.95', 1053350488, 1053350495, 'BE', 'Belgium'), +('62.200.218.96', '62.200.218.255', 1053350496, 1053350655, 'EU', 'Europe'), +('62.200.219.0', '62.200.219.255', 1053350656, 1053350911, 'BE', 'Belgium'), +('62.200.220.0', '62.200.223.255', 1053350912, 1053351935, 'EU', 'Europe'), +('62.200.224.0', '62.200.224.255', 1053351936, 1053352191, 'IL', 'Israel'), +('62.200.225.0', '62.200.228.63', 1053352192, 1053353023, 'EU', 'Europe'), +('62.200.228.64', '62.200.228.71', 1053353024, 1053353031, 'IE', 'Ireland'), +('62.200.228.72', '62.200.228.143', 1053353032, 1053353103, 'EU', 'Europe'), +('62.200.228.144', '62.200.228.151', 1053353104, 1053353111, 'IE', 'Ireland'), +('62.200.228.152', '62.200.228.175', 1053353112, 1053353135, 'EU', 'Europe'), +('62.200.228.176', '62.200.228.191', 1053353136, 1053353151, 'IE', 'Ireland'), +('62.200.228.192', '62.200.228.223', 1053353152, 1053353183, 'EU', 'Europe'), +('62.200.228.224', '62.200.228.255', 1053353184, 1053353215, 'IE', 'Ireland'), +('62.200.229.0', '62.200.229.15', 1053353216, 1053353231, 'EU', 'Europe'), +('62.200.229.16', '62.200.229.63', 1053353232, 1053353279, 'IE', 'Ireland'), +('62.200.229.64', '62.200.231.255', 1053353280, 1053353983, 'EU', 'Europe'), +('62.200.232.0', '62.200.232.255', 1053353984, 1053354239, 'IL', 'Israel'), +('62.200.233.0', '62.200.233.255', 1053354240, 1053354495, 'EU', 'Europe'), +('62.200.234.0', '62.200.234.159', 1053354496, 1053354655, 'IL', 'Israel'), +('62.200.234.160', '62.200.234.191', 1053354656, 1053354687, 'EU', 'Europe'), +('62.200.234.192', '62.200.234.223', 1053354688, 1053354719, 'IL', 'Israel'), +('62.200.234.224', '62.200.234.255', 1053354720, 1053354751, 'EU', 'Europe'), +('62.200.235.0', '62.200.235.79', 1053354752, 1053354831, 'IL', 'Israel'), +('62.200.235.80', '62.200.235.103', 1053354832, 1053354855, 'EU', 'Europe'), +('62.200.235.104', '62.200.235.119', 1053354856, 1053354871, 'IL', 'Israel'), +('62.200.235.120', '62.200.235.159', 1053354872, 1053354911, 'EU', 'Europe'), +('62.200.235.160', '62.200.235.255', 1053354912, 1053355007, 'IL', 'Israel'), +('62.200.236.0', '62.200.255.255', 1053355008, 1053360127, 'EU', 'Europe'), +('62.201.0.0', '62.201.31.255', 1053360128, 1053368319, 'ES', 'Spain'), +('62.201.32.0', '62.201.63.255', 1053368320, 1053376511, 'SE', 'Sweden'), +('62.201.64.0', '62.201.127.255', 1053376512, 1053392895, 'HU', 'Hungary'), +('62.201.128.0', '62.201.159.255', 1053392896, 1053401087, 'FR', 'France'), +('62.201.160.0', '62.201.191.255', 1053401088, 1053409279, 'DE', 'Germany'), +('62.201.192.0', '62.201.255.255', 1053409280, 1053425663, 'IR', 'Iran, Islamic Republic of'), +('62.202.0.0', '62.203.255.255', 1053425664, 1053556735, 'CH', 'Switzerland'), +('62.204.0.0', '62.204.31.255', 1053556736, 1053564927, 'FI', 'Finland'), +('62.204.32.0', '62.204.63.255', 1053564928, 1053573119, 'GB', 'United Kingdom'), +('62.204.64.0', '62.204.95.255', 1053573120, 1053581311, 'NL', 'Netherlands'), +('62.204.96.0', '62.204.127.255', 1053581312, 1053589503, 'CH', 'Switzerland'), +('62.204.128.0', '62.204.159.255', 1053589504, 1053597695, 'BG', 'Bulgaria'), +('62.204.160.0', '62.204.191.255', 1053597696, 1053605887, 'DE', 'Germany'), +('62.204.192.0', '62.204.223.255', 1053605888, 1053614079, 'ES', 'Spain'), +('62.204.224.0', '62.204.255.255', 1053614080, 1053622271, 'CZ', 'Czech Republic'), +('62.205.0.0', '62.205.31.255', 1053622272, 1053630463, 'IT', 'Italy'), +('62.205.32.0', '62.205.63.255', 1053630464, 1053638655, 'GR', 'Greece'), +('62.205.64.0', '62.205.127.255', 1053638656, 1053655039, 'BE', 'Belgium'), +('62.205.128.0', '62.205.159.255', 1053655040, 1053663231, 'UA', 'Ukraine'), +('62.205.160.0', '62.205.191.255', 1053663232, 1053671423, 'RU', 'Russian Federation'), +('62.205.192.0', '62.205.255.255', 1053671424, 1053687807, 'LV', 'Latvia'), +('62.206.0.0', '62.206.57.235', 1053687808, 1053702635, 'DE', 'Germany'), +('62.206.57.236', '62.206.57.239', 1053702636, 1053702639, 'GB', 'United Kingdom'), +('62.206.57.240', '62.206.255.255', 1053702640, 1053753343, 'DE', 'Germany'), +('62.207.0.0', '62.207.255.255', 1053753344, 1053818879, 'IT', 'Italy'), +('62.208.0.0', '62.208.1.255', 1053818880, 1053819391, 'DE', 'Germany'), +('62.208.2.0', '62.208.2.31', 1053819392, 1053819423, 'EU', 'Europe'), +('62.208.2.32', '62.208.2.47', 1053819424, 1053819439, 'DE', 'Germany'), +('62.208.2.48', '62.208.2.127', 1053819440, 1053819519, 'EU', 'Europe'), +('62.208.2.128', '62.208.2.171', 1053819520, 1053819563, 'DE', 'Germany'), +('62.208.2.172', '62.208.2.191', 1053819564, 1053819583, 'EU', 'Europe'), +('62.208.2.192', '62.208.2.255', 1053819584, 1053819647, 'DE', 'Germany'), +('62.208.3.0', '62.208.4.255', 1053819648, 1053820159, 'EU', 'Europe'), +('62.208.5.0', '62.208.7.255', 1053820160, 1053820927, 'DE', 'Germany'), +('62.208.8.0', '62.208.9.255', 1053820928, 1053821439, 'EU', 'Europe'), +('62.208.10.0', '62.208.10.7', 1053821440, 1053821447, 'GB', 'United Kingdom'), +('62.208.10.8', '62.208.10.127', 1053821448, 1053821567, 'EU', 'Europe'), +('62.208.10.128', '62.208.10.255', 1053821568, 1053821695, 'GB', 'United Kingdom'), +('62.208.11.0', '62.208.20.15', 1053821696, 1053824015, 'EU', 'Europe'), +('62.208.20.16', '62.208.20.23', 1053824016, 1053824023, 'DE', 'Germany'), +('62.208.20.24', '62.208.20.127', 1053824024, 1053824127, 'EU', 'Europe'), +('62.208.20.128', '62.208.20.255', 1053824128, 1053824255, 'NL', 'Netherlands'), +('62.208.21.0', '62.208.23.255', 1053824256, 1053825023, 'EU', 'Europe'), +('62.208.24.0', '62.208.27.255', 1053825024, 1053826047, 'ES', 'Spain'), +('62.208.28.0', '62.208.30.255', 1053826048, 1053826815, 'EU', 'Europe'), +('62.208.31.0', '62.208.32.255', 1053826816, 1053827327, 'DE', 'Germany'), +('62.208.33.0', '62.208.33.255', 1053827328, 1053827583, 'BE', 'Belgium'), +('62.208.34.0', '62.208.42.255', 1053827584, 1053829887, 'EU', 'Europe'), +('62.208.43.0', '62.208.43.255', 1053829888, 1053830143, 'DE', 'Germany'), +('62.208.44.0', '62.208.47.255', 1053830144, 1053831167, 'EU', 'Europe'), +('62.208.48.0', '62.208.48.255', 1053831168, 1053831423, 'DE', 'Germany'), +('62.208.49.0', '62.208.62.191', 1053831424, 1053834943, 'EU', 'Europe'), +('62.208.62.192', '62.208.62.223', 1053834944, 1053834975, 'DE', 'Germany'), +('62.208.62.224', '62.208.63.255', 1053834976, 1053835263, 'EU', 'Europe'), +('62.208.64.0', '62.208.65.255', 1053835264, 1053835775, 'DE', 'Germany'), +('62.208.66.0', '62.208.71.255', 1053835776, 1053837311, 'EU', 'Europe'), +('62.208.72.0', '62.208.72.127', 1053837312, 1053837439, 'FK', 'Falkland Islands (Malvinas)'), +('62.208.72.128', '62.208.72.255', 1053837440, 1053837567, 'EU', 'Europe'), +('62.208.73.0', '62.208.73.255', 1053837568, 1053837823, 'GB', 'United Kingdom'), +('62.208.74.0', '62.208.75.255', 1053837824, 1053838335, 'FK', 'Falkland Islands (Malvinas)'), +('62.208.76.0', '62.208.76.255', 1053838336, 1053838591, 'DE', 'Germany'), +('62.208.77.0', '62.208.84.15', 1053838592, 1053840399, 'EU', 'Europe'), +('62.208.84.16', '62.208.84.31', 1053840400, 1053840415, 'DE', 'Germany'), +('62.208.84.32', '62.208.84.63', 1053840416, 1053840447, 'EU', 'Europe'), +('62.208.84.64', '62.208.84.127', 1053840448, 1053840511, 'DE', 'Germany'), +('62.208.84.128', '62.208.94.255', 1053840512, 1053843199, 'EU', 'Europe'), +('62.208.95.0', '62.208.95.7', 1053843200, 1053843207, 'DK', 'Denmark'), +('62.208.95.8', '62.208.96.255', 1053843208, 1053843711, 'EU', 'Europe'), +('62.208.97.0', '62.208.97.255', 1053843712, 1053843967, 'DE', 'Germany'), +('62.208.98.0', '62.208.98.255', 1053843968, 1053844223, 'GB', 'United Kingdom'), +('62.208.99.0', '62.208.99.255', 1053844224, 1053844479, 'DE', 'Germany'), +('62.208.100.0', '62.208.101.255', 1053844480, 1053844991, 'EU', 'Europe'), +('62.208.102.0', '62.208.103.255', 1053844992, 1053845503, 'DE', 'Germany'), +('62.208.104.0', '62.208.104.223', 1053845504, 1053845727, 'EU', 'Europe'), +('62.208.104.224', '62.208.104.231', 1053845728, 1053845735, 'DE', 'Germany'), +('62.208.104.232', '62.208.105.255', 1053845736, 1053846015, 'EU', 'Europe'), +('62.208.106.0', '62.208.107.255', 1053846016, 1053846527, 'DE', 'Germany'), +('62.208.108.0', '62.208.108.255', 1053846528, 1053846783, 'EU', 'Europe'), +('62.208.109.0', '62.208.115.255', 1053846784, 1053848575, 'DE', 'Germany'), +('62.208.116.0', '62.208.119.255', 1053848576, 1053849599, 'GB', 'United Kingdom'), +('62.208.120.0', '62.208.122.255', 1053849600, 1053850367, 'DE', 'Germany'), +('62.208.123.0', '62.208.125.255', 1053850368, 1053851135, 'EU', 'Europe'), +('62.208.126.0', '62.208.127.255', 1053851136, 1053851647, 'DE', 'Germany'), +('62.208.128.0', '62.208.128.255', 1053851648, 1053851903, 'EU', 'Europe'), +('62.208.129.0', '62.208.129.15', 1053851904, 1053851919, 'FR', 'France'), +('62.208.129.16', '62.208.129.127', 1053851920, 1053852031, 'EU', 'Europe'), +('62.208.129.128', '62.208.129.143', 1053852032, 1053852047, 'IT', 'Italy'), +('62.208.129.144', '62.208.129.191', 1053852048, 1053852095, 'EU', 'Europe'), +('62.208.129.192', '62.208.129.199', 1053852096, 1053852103, 'DE', 'Germany'), +('62.208.129.200', '62.208.129.207', 1053852104, 1053852111, 'EU', 'Europe'), +('62.208.129.208', '62.208.129.223', 1053852112, 1053852127, 'GB', 'United Kingdom'), +('62.208.129.224', '62.208.129.255', 1053852128, 1053852159, 'DE', 'Germany'), +('62.208.130.0', '62.208.143.255', 1053852160, 1053855743, 'EU', 'Europe'), +('62.208.144.0', '62.208.159.255', 1053855744, 1053859839, 'GB', 'United Kingdom'), +('62.208.160.0', '62.208.163.255', 1053859840, 1053860863, 'DE', 'Germany'), +('62.208.164.0', '62.208.170.255', 1053860864, 1053862655, 'EU', 'Europe'), +('62.208.171.0', '62.208.171.127', 1053862656, 1053862783, 'DE', 'Germany'), +('62.208.171.128', '62.208.171.191', 1053862784, 1053862847, 'EU', 'Europe'), +('62.208.171.192', '62.208.171.223', 1053862848, 1053862879, 'DE', 'Germany'), +('62.208.171.224', '62.208.173.255', 1053862880, 1053863423, 'EU', 'Europe'), +('62.208.174.0', '62.208.179.255', 1053863424, 1053864959, 'DE', 'Germany'), +('62.208.180.0', '62.208.180.255', 1053864960, 1053865215, 'EU', 'Europe'), +('62.208.181.0', '62.208.182.255', 1053865216, 1053865727, 'DE', 'Germany'), +('62.208.183.0', '62.208.183.31', 1053865728, 1053865759, 'US', 'United States'), +('62.208.183.32', '62.208.183.255', 1053865760, 1053865983, 'EU', 'Europe'), +('62.208.184.0', '62.208.184.255', 1053865984, 1053866239, 'DE', 'Germany'), +('62.208.185.0', '62.208.185.255', 1053866240, 1053866495, 'ES', 'Spain'), +('62.208.186.0', '62.208.187.47', 1053866496, 1053866799, 'DE', 'Germany'), +('62.208.187.48', '62.208.187.55', 1053866800, 1053866807, 'EU', 'Europe'), +('62.208.187.56', '62.208.187.71', 1053866808, 1053866823, 'DE', 'Germany'), +('62.208.187.72', '62.208.187.79', 1053866824, 1053866831, 'EU', 'Europe'), +('62.208.187.80', '62.208.187.95', 1053866832, 1053866847, 'DE', 'Germany'), +('62.208.187.96', '62.208.187.255', 1053866848, 1053867007, 'EU', 'Europe'), +('62.208.188.0', '62.208.190.255', 1053867008, 1053867775, 'DE', 'Germany'), +('62.208.191.0', '62.208.191.199', 1053867776, 1053867975, 'EU', 'Europe'), +('62.208.191.200', '62.208.191.207', 1053867976, 1053867983, 'DE', 'Germany'), +('62.208.191.208', '62.208.191.215', 1053867984, 1053867991, 'EU', 'Europe'), +('62.208.191.216', '62.208.191.223', 1053867992, 1053867999, 'DE', 'Germany'), +('62.208.191.224', '62.208.191.231', 1053868000, 1053868007, 'EU', 'Europe'), +('62.208.191.232', '62.208.191.239', 1053868008, 1053868015, 'DE', 'Germany'), +('62.208.191.240', '62.208.191.255', 1053868016, 1053868031, 'EU', 'Europe'), +('62.208.192.0', '62.208.193.159', 1053868032, 1053868447, 'ES', 'Spain'), +('62.208.193.160', '62.208.193.167', 1053868448, 1053868455, 'GB', 'United Kingdom'), +('62.208.193.168', '62.208.193.175', 1053868456, 1053868463, 'ES', 'Spain'), +('62.208.193.176', '62.208.194.255', 1053868464, 1053868799, 'EU', 'Europe'), +('62.208.195.0', '62.208.197.255', 1053868800, 1053869567, 'DE', 'Germany'), +('62.208.198.0', '62.208.199.255', 1053869568, 1053870079, 'EU', 'Europe'), +('62.208.200.0', '62.208.200.255', 1053870080, 1053870335, 'DE', 'Germany'), +('62.208.201.0', '62.208.201.255', 1053870336, 1053870591, 'GB', 'United Kingdom'), +('62.208.202.0', '62.208.202.255', 1053870592, 1053870847, 'EU', 'Europe'), +('62.208.203.0', '62.208.204.255', 1053870848, 1053871359, 'DE', 'Germany'), +('62.208.205.0', '62.208.205.255', 1053871360, 1053871615, 'EU', 'Europe'), +('62.208.206.0', '62.208.206.255', 1053871616, 1053871871, 'DE', 'Germany'), +('62.208.207.0', '62.208.208.255', 1053871872, 1053872383, 'EU', 'Europe'), +('62.208.209.0', '62.208.209.63', 1053872384, 1053872447, 'DE', 'Germany'), +('62.208.209.64', '62.208.210.255', 1053872448, 1053872895, 'EU', 'Europe'), +('62.208.211.0', '62.208.213.255', 1053872896, 1053873663, 'DE', 'Germany'), +('62.208.214.0', '62.208.223.255', 1053873664, 1053876223, 'EU', 'Europe'), +('62.208.224.0', '62.208.226.255', 1053876224, 1053876991, 'DE', 'Germany'), +('62.208.227.0', '62.208.227.255', 1053876992, 1053877247, 'EU', 'Europe'), +('62.208.228.0', '62.208.231.255', 1053877248, 1053878271, 'DE', 'Germany'), +('62.208.232.0', '62.208.233.255', 1053878272, 1053878783, 'GB', 'United Kingdom'), +('62.208.234.0', '62.208.235.7', 1053878784, 1053879047, 'DE', 'Germany'), +('62.208.235.8', '62.208.235.15', 1053879048, 1053879055, 'EU', 'Europe'), +('62.208.235.16', '62.208.235.31', 1053879056, 1053879071, 'DE', 'Germany'), +('62.208.235.32', '62.208.235.127', 1053879072, 1053879167, 'GB', 'United Kingdom'), +('62.208.235.128', '62.208.235.255', 1053879168, 1053879295, 'EU', 'Europe'), +('62.208.236.0', '62.208.246.255', 1053879296, 1053882111, 'DE', 'Germany'), +('62.208.247.0', '62.208.247.255', 1053882112, 1053882367, 'EU', 'Europe'), +('62.208.248.0', '62.208.249.255', 1053882368, 1053882879, 'DE', 'Germany'), +('62.208.250.0', '62.208.251.255', 1053882880, 1053883391, 'GB', 'United Kingdom'), +('62.208.252.0', '62.208.255.255', 1053883392, 1053884415, 'DE', 'Germany'), +('62.209.0.0', '62.209.31.255', 1053884416, 1053892607, 'BH', 'Bahrain'), +('62.209.32.0', '62.209.32.11', 1053892608, 1053892619, 'DE', 'Germany'), +('62.209.32.12', '62.209.32.15', 1053892620, 1053892623, 'GB', 'United Kingdom'), +('62.209.32.16', '62.209.39.95', 1053892624, 1053894495, 'DE', 'Germany'), +('62.209.39.96', '62.209.39.127', 1053894496, 1053894527, 'GB', 'United Kingdom'), +('62.209.39.128', '62.209.40.63', 1053894528, 1053894719, 'DE', 'Germany'), +('62.209.40.64', '62.209.40.79', 1053894720, 1053894735, 'FR', 'France'), +('62.209.40.80', '62.209.40.87', 1053894736, 1053894743, 'GB', 'United Kingdom'), +('62.209.40.88', '62.209.40.95', 1053894744, 1053894751, 'GE', 'Georgia'), +('62.209.40.96', '62.209.40.127', 1053894752, 1053894783, 'DE', 'Germany'), +('62.209.40.128', '62.209.40.159', 1053894784, 1053894815, 'IL', 'Israel'), +('62.209.40.160', '62.209.40.175', 1053894816, 1053894831, 'NL', 'Netherlands'), +('62.209.40.176', '62.209.40.191', 1053894832, 1053894847, 'US', 'United States'), +('62.209.40.192', '62.209.42.255', 1053894848, 1053895423, 'DE', 'Germany'), +('62.209.43.0', '62.209.43.255', 1053895424, 1053895679, 'GB', 'United Kingdom'), +('62.209.44.0', '62.209.44.255', 1053895680, 1053895935, 'US', 'United States'), +('62.209.45.0', '62.209.45.151', 1053895936, 1053896087, 'DE', 'Germany'), +('62.209.45.152', '62.209.45.159', 1053896088, 1053896095, 'US', 'United States'), +('62.209.45.160', '62.209.45.191', 1053896096, 1053896127, 'GB', 'United Kingdom'), +('62.209.45.192', '62.209.45.223', 1053896128, 1053896159, 'DE', 'Germany'), +('62.209.45.224', '62.209.45.239', 1053896160, 1053896175, 'US', 'United States'), +('62.209.45.240', '62.209.46.255', 1053896176, 1053896447, 'DE', 'Germany'), +('62.209.47.0', '62.209.47.255', 1053896448, 1053896703, 'US', 'United States'), +('62.209.48.0', '62.209.63.255', 1053896704, 1053900799, 'DE', 'Germany'), +('62.209.64.0', '62.209.127.255', 1053900800, 1053917183, 'NO', 'Norway'), +('62.209.128.0', '62.209.159.255', 1053917184, 1053925375, 'UZ', 'Uzbekistan'), +('62.209.160.0', '62.209.191.255', 1053925376, 1053933567, 'SE', 'Sweden'), +('62.209.192.0', '62.209.255.255', 1053933568, 1053949951, 'CZ', 'Czech Republic'), +('62.210.0.0', '62.210.134.159', 1053949952, 1053984415, 'FR', 'France'), +('62.210.134.160', '62.210.134.191', 1053984416, 1053984447, 'US', 'United States'), +('62.210.134.192', '62.210.136.127', 1053984448, 1053984895, 'FR', 'France'), +('62.210.136.128', '62.210.136.255', 1053984896, 1053985023, 'US', 'United States'), +('62.210.137.0', '62.210.255.255', 1053985024, 1054015487, 'FR', 'France'), +('62.211.0.0', '62.212.31.255', 1054015488, 1054089215, 'IT', 'Italy'), +('62.212.32.0', '62.212.63.255', 1054089216, 1054097407, 'GE', 'Georgia'), +('62.212.64.0', '62.212.95.255', 1054097408, 1054105599, 'NL', 'Netherlands'), +('62.212.96.0', '62.212.127.255', 1054105600, 1054113791, 'FR', 'France'), +('62.212.128.0', '62.212.159.255', 1054113792, 1054121983, 'NL', 'Netherlands'), +('62.212.160.0', '62.212.191.255', 1054121984, 1054130175, 'AT', 'Austria'), +('62.212.192.0', '62.212.223.255', 1054130176, 1054138367, 'LT', 'Lithuania'), +('62.212.224.0', '62.212.255.255', 1054138368, 1054146559, 'AZ', 'Azerbaijan'), +('62.213.0.0', '62.213.127.255', 1054146560, 1054179327, 'RU', 'Russian Federation'), +('62.213.128.0', '62.213.159.255', 1054179328, 1054187519, 'GB', 'United Kingdom'), +('62.213.160.0', '62.213.191.255', 1054187520, 1054195711, 'BG', 'Bulgaria'), +('62.213.192.0', '62.213.255.255', 1054195712, 1054212095, 'BE', 'Belgium'), +('62.214.0.0', '62.214.1.167', 1054212096, 1054212519, 'DE', 'Germany'), +('62.214.1.168', '62.214.1.175', 1054212520, 1054212527, 'NL', 'Netherlands'), +('62.214.1.176', '62.214.255.255', 1054212528, 1054277631, 'DE', 'Germany'), +('62.215.0.0', '62.215.255.255', 1054277632, 1054343167, 'KW', 'Kuwait'), +('62.216.0.0', '62.216.31.255', 1054343168, 1054351359, 'NL', 'Netherlands'), +('62.216.32.0', '62.216.63.255', 1054351360, 1054359551, 'UA', 'Ukraine'), +('62.216.64.0', '62.216.95.255', 1054359552, 1054367743, 'GB', 'United Kingdom'), +('62.216.96.0', '62.216.127.255', 1054367744, 1054375935, 'FI', 'Finland'), +('62.216.128.0', '62.216.147.255', 1054375936, 1054381055, 'GB', 'United Kingdom'), +('62.216.148.0', '62.216.150.255', 1054381056, 1054381823, 'EG', 'Egypt'), +('62.216.151.0', '62.216.159.255', 1054381824, 1054384127, 'GB', 'United Kingdom'), +('62.216.160.0', '62.216.223.255', 1054384128, 1054400511, 'DE', 'Germany'), +('62.216.224.0', '62.216.255.255', 1054400512, 1054408703, 'GB', 'United Kingdom'), +('62.217.0.0', '62.217.31.255', 1054408704, 1054416895, 'FR', 'France'), +('62.217.32.0', '62.217.63.255', 1054416896, 1054425087, 'DE', 'Germany'), +('62.217.64.0', '62.217.127.255', 1054425088, 1054441471, 'GR', 'Greece'), +('62.217.128.0', '62.217.159.255', 1054441472, 1054449663, 'AZ', 'Azerbaijan'), +('62.217.160.0', '62.217.191.255', 1054449664, 1054457855, 'RU', 'Russian Federation'), +('62.217.192.0', '62.217.255.255', 1054457856, 1054474239, 'RO', 'Romania'), +('62.218.0.0', '62.218.255.255', 1054474240, 1054539775, 'AT', 'Austria'), +('62.219.0.0', '62.219.255.255', 1054539776, 1054605311, 'IL', 'Israel'), +('62.220.0.0', '62.220.31.255', 1054605312, 1054613503, 'DE', 'Germany'), +('62.220.32.0', '62.220.63.255', 1054613504, 1054621695, 'RU', 'Russian Federation'), +('62.220.64.0', '62.220.95.255', 1054621696, 1054629887, 'IT', 'Italy'), +('62.220.96.0', '62.220.127.255', 1054629888, 1054638079, 'IR', 'Iran, Islamic Republic of'), +('62.220.128.0', '62.220.159.255', 1054638080, 1054646271, 'CH', 'Switzerland'), +('62.220.160.0', '62.220.191.255', 1054646272, 1054654463, 'SE', 'Sweden'), +('62.220.192.0', '62.220.223.255', 1054654464, 1054662655, 'MK', 'Macedonia'), +('62.220.224.0', '62.220.255.255', 1054662656, 1054670847, 'FI', 'Finland'), +('62.221.0.0', '62.221.0.255', 1054670848, 1054671103, 'GB', 'United Kingdom'), +('62.221.1.0', '62.221.1.63', 1054671104, 1054671167, 'EU', 'Europe'), +('62.221.1.64', '62.221.1.127', 1054671168, 1054671231, 'IE', 'Ireland'), +('62.221.1.128', '62.221.2.11', 1054671232, 1054671371, 'EU', 'Europe'), +('62.221.2.12', '62.221.2.15', 1054671372, 1054671375, 'IE', 'Ireland'), +('62.221.2.16', '62.221.2.55', 1054671376, 1054671415, 'EU', 'Europe'), +('62.221.2.56', '62.221.2.63', 1054671416, 1054671423, 'IE', 'Ireland'), +('62.221.2.64', '62.221.2.71', 1054671424, 1054671431, 'EU', 'Europe'), +('62.221.2.72', '62.221.2.79', 1054671432, 1054671439, 'IE', 'Ireland'), +('62.221.2.80', '62.221.5.31', 1054671440, 1054672159, 'EU', 'Europe'), +('62.221.5.32', '62.221.5.47', 1054672160, 1054672175, 'IE', 'Ireland'), +('62.221.5.48', '62.221.5.127', 1054672176, 1054672255, 'EU', 'Europe'), +('62.221.5.128', '62.221.5.159', 1054672256, 1054672287, 'IE', 'Ireland'), +('62.221.5.160', '62.221.5.191', 1054672288, 1054672319, 'EU', 'Europe'), +('62.221.5.192', '62.221.5.207', 1054672320, 1054672335, 'US', 'United States'), +('62.221.5.208', '62.221.5.239', 1054672336, 1054672367, 'IE', 'Ireland'), +('62.221.5.240', '62.221.5.255', 1054672368, 1054672383, 'EU', 'Europe'), +('62.221.6.0', '62.221.6.63', 1054672384, 1054672447, 'IE', 'Ireland'), +('62.221.6.64', '62.221.7.79', 1054672448, 1054672719, 'EU', 'Europe'), +('62.221.7.80', '62.221.7.87', 1054672720, 1054672727, 'IE', 'Ireland'), +('62.221.7.88', '62.221.7.103', 1054672728, 1054672743, 'EU', 'Europe'), +('62.221.7.104', '62.221.7.127', 1054672744, 1054672767, 'IE', 'Ireland'), +('62.221.7.128', '62.221.7.135', 1054672768, 1054672775, 'EU', 'Europe'), +('62.221.7.136', '62.221.7.143', 1054672776, 1054672783, 'IE', 'Ireland'), +('62.221.7.144', '62.221.7.151', 1054672784, 1054672791, 'EU', 'Europe'), +('62.221.7.152', '62.221.7.167', 1054672792, 1054672807, 'IE', 'Ireland'), +('62.221.7.168', '62.221.10.255', 1054672808, 1054673663, 'EU', 'Europe'), +('62.221.11.0', '62.221.11.63', 1054673664, 1054673727, 'IE', 'Ireland'), +('62.221.11.64', '62.221.11.191', 1054673728, 1054673855, 'EU', 'Europe'), +('62.221.11.192', '62.221.11.255', 1054673856, 1054673919, 'IE', 'Ireland'), +('62.221.12.0', '62.221.12.31', 1054673920, 1054673951, 'EU', 'Europe'), +('62.221.12.32', '62.221.12.127', 1054673952, 1054674047, 'IE', 'Ireland'), +('62.221.12.128', '62.221.12.159', 1054674048, 1054674079, 'EU', 'Europe'), +('62.221.12.160', '62.221.12.191', 1054674080, 1054674111, 'IE', 'Ireland'), +('62.221.12.192', '62.221.14.23', 1054674112, 1054674455, 'EU', 'Europe'), +('62.221.14.24', '62.221.14.39', 1054674456, 1054674471, 'IE', 'Ireland'), +('62.221.14.40', '62.221.14.47', 1054674472, 1054674479, 'EU', 'Europe'), +('62.221.14.48', '62.221.14.63', 1054674480, 1054674495, 'IE', 'Ireland'), +('62.221.14.64', '62.221.14.71', 1054674496, 1054674503, 'EU', 'Europe'), +('62.221.14.72', '62.221.14.79', 1054674504, 1054674511, 'IE', 'Ireland'), +('62.221.14.80', '62.221.14.87', 1054674512, 1054674519, 'EU', 'Europe'), +('62.221.14.88', '62.221.14.95', 1054674520, 1054674527, 'GB', 'United Kingdom'), +('62.221.14.96', '62.221.14.255', 1054674528, 1054674687, 'EU', 'Europe'), +('62.221.15.0', '62.221.16.255', 1054674688, 1054675199, 'IE', 'Ireland'), +('62.221.17.0', '62.221.17.255', 1054675200, 1054675455, 'EU', 'Europe'), +('62.221.18.0', '62.221.18.255', 1054675456, 1054675711, 'IE', 'Ireland'), +('62.221.19.0', '62.221.19.255', 1054675712, 1054675967, 'EU', 'Europe'), +('62.221.20.0', '62.221.20.255', 1054675968, 1054676223, 'US', 'United States'), +('62.221.21.0', '62.221.31.255', 1054676224, 1054679039, 'EU', 'Europe'), +('62.221.32.0', '62.221.63.255', 1054679040, 1054687231, 'UA', 'Ukraine'), +('62.221.64.0', '62.221.127.255', 1054687232, 1054703615, 'MD', 'Moldova, Republic of'), +('62.221.128.0', '62.221.159.255', 1054703616, 1054711807, 'BG', 'Bulgaria'), +('62.221.160.0', '62.221.191.255', 1054711808, 1054719999, 'IT', 'Italy'), +('62.221.192.0', '62.223.255.255', 1054720000, 1054867455, 'NL', 'Netherlands'), +('62.224.0.0', '62.225.39.255', 1054867456, 1054943231, 'DE', 'Germany'), +('62.225.40.0', '62.225.40.255', 1054943232, 1054943487, 'PL', 'Poland'), +('62.225.41.0', '62.225.65.175', 1054943488, 1054949807, 'DE', 'Germany'), +('62.225.65.176', '62.225.65.183', 1054949808, 1054949815, 'ES', 'Spain'), +('62.225.65.184', '62.225.118.55', 1054949816, 1054963255, 'DE', 'Germany'), +('62.225.118.56', '62.225.118.63', 1054963256, 1054963263, 'ES', 'Spain'), +('62.225.118.64', '62.225.140.199', 1054963264, 1054969031, 'DE', 'Germany'), +('62.225.140.200', '62.225.140.207', 1054969032, 1054969039, 'AT', 'Austria'), +('62.225.140.208', '62.225.178.255', 1054969040, 1054978815, 'DE', 'Germany'), +('62.225.179.0', '62.225.179.255', 1054978816, 1054979071, 'FR', 'France'), +('62.225.180.0', '62.227.255.255', 1054979072, 1055129599, 'DE', 'Germany'), +('62.229.0.0', '62.229.3.255', 1055195136, 1055196159, 'EU', 'Europe'), +('62.229.4.0', '62.229.10.127', 1055196160, 1055197823, 'CH', 'Switzerland'), +('62.229.10.128', '62.229.10.223', 1055197824, 1055197919, 'EU', 'Europe'), +('62.229.10.224', '62.229.12.255', 1055197920, 1055198463, 'CH', 'Switzerland'), +('62.229.13.0', '62.229.14.255', 1055198464, 1055198975, 'EU', 'Europe'), +('62.229.15.0', '62.229.15.127', 1055198976, 1055199103, 'CH', 'Switzerland'), +('62.229.15.128', '62.229.16.127', 1055199104, 1055199359, 'EU', 'Europe'), +('62.229.16.128', '62.229.16.143', 1055199360, 1055199375, 'CH', 'Switzerland'), +('62.229.16.144', '62.229.16.231', 1055199376, 1055199463, 'EU', 'Europe'), +('62.229.16.232', '62.229.16.255', 1055199464, 1055199487, 'CH', 'Switzerland'), +('62.229.17.0', '62.229.20.159', 1055199488, 1055200415, 'EU', 'Europe'), +('62.229.20.160', '62.229.20.167', 1055200416, 1055200423, 'PT', 'Portugal'), +('62.229.20.168', '62.229.22.255', 1055200424, 1055201023, 'EU', 'Europe'), +('62.229.23.0', '62.229.23.255', 1055201024, 1055201279, 'US', 'United States'), +('62.229.24.0', '62.229.31.255', 1055201280, 1055203327, 'EU', 'Europe'), +('62.229.32.0', '62.229.32.31', 1055203328, 1055203359, 'CZ', 'Czech Republic'), +('62.229.32.32', '62.229.33.255', 1055203360, 1055203839, 'EU', 'Europe'), +('62.229.34.0', '62.229.34.255', 1055203840, 1055204095, 'CZ', 'Czech Republic'), +('62.229.35.0', '62.229.37.255', 1055204096, 1055204863, 'EU', 'Europe'), +('62.229.38.0', '62.229.39.255', 1055204864, 1055205375, 'CZ', 'Czech Republic'), +('62.229.40.0', '62.229.40.255', 1055205376, 1055205631, 'EU', 'Europe'), +('62.229.41.0', '62.229.41.255', 1055205632, 1055205887, 'CZ', 'Czech Republic'), +('62.229.42.0', '62.229.44.255', 1055205888, 1055206655, 'EU', 'Europe'), +('62.229.45.0', '62.229.47.255', 1055206656, 1055207423, 'CZ', 'Czech Republic'), +('62.229.48.0', '62.229.48.255', 1055207424, 1055207679, 'EU', 'Europe'), +('62.229.49.0', '62.229.55.255', 1055207680, 1055209471, 'CZ', 'Czech Republic'), +('62.229.56.0', '62.229.56.255', 1055209472, 1055209727, 'EU', 'Europe'), +('62.229.57.0', '62.229.58.255', 1055209728, 1055210239, 'CZ', 'Czech Republic'), +('62.229.59.0', '62.229.59.255', 1055210240, 1055210495, 'EU', 'Europe'), +('62.229.60.0', '62.229.60.255', 1055210496, 1055210751, 'SK', 'Slovakia'), +('62.229.61.0', '62.229.62.255', 1055210752, 1055211263, 'EU', 'Europe'), +('62.229.63.0', '62.229.63.255', 1055211264, 1055211519, 'CZ', 'Czech Republic'), +('62.229.64.0', '62.229.66.11', 1055211520, 1055212043, 'EU', 'Europe'), +('62.229.66.12', '62.229.66.147', 1055212044, 1055212179, 'PT', 'Portugal'), +('62.229.66.148', '62.229.66.151', 1055212180, 1055212183, 'EU', 'Europe'), +('62.229.66.152', '62.229.66.215', 1055212184, 1055212247, 'PT', 'Portugal'), +('62.229.66.216', '62.229.67.63', 1055212248, 1055212351, 'EU', 'Europe'), +('62.229.67.64', '62.229.67.127', 1055212352, 1055212415, 'PT', 'Portugal'), +('62.229.67.128', '62.229.67.255', 1055212416, 1055212543, 'EU', 'Europe'), +('62.229.68.0', '62.229.68.255', 1055212544, 1055212799, 'PT', 'Portugal'), +('62.229.69.0', '62.229.69.255', 1055212800, 1055213055, 'EU', 'Europe'), +('62.229.70.0', '62.229.70.251', 1055213056, 1055213307, 'PT', 'Portugal'), +('62.229.70.252', '62.229.70.255', 1055213308, 1055213311, 'EU', 'Europe'), +('62.229.71.0', '62.229.71.7', 1055213312, 1055213319, 'PT', 'Portugal'), +('62.229.71.8', '62.229.71.15', 1055213320, 1055213327, 'EU', 'Europe'), +('62.229.71.16', '62.229.71.47', 1055213328, 1055213359, 'PT', 'Portugal'), +('62.229.71.48', '62.229.71.55', 1055213360, 1055213367, 'EU', 'Europe'), +('62.229.71.56', '62.229.71.143', 1055213368, 1055213455, 'PT', 'Portugal'), +('62.229.71.144', '62.229.71.159', 1055213456, 1055213471, 'EU', 'Europe'), +('62.229.71.160', '62.229.71.255', 1055213472, 1055213567, 'PT', 'Portugal'), +('62.229.72.0', '62.229.72.255', 1055213568, 1055213823, 'EU', 'Europe'), +('62.229.73.0', '62.229.74.159', 1055213824, 1055214239, 'PT', 'Portugal'), +('62.229.74.160', '62.229.74.191', 1055214240, 1055214271, 'EU', 'Europe'), +('62.229.74.192', '62.229.76.255', 1055214272, 1055214847, 'PT', 'Portugal'), +('62.229.77.0', '62.229.78.255', 1055214848, 1055215359, 'EU', 'Europe'), +('62.229.79.0', '62.229.81.127', 1055215360, 1055215999, 'PT', 'Portugal'), +('62.229.81.128', '62.229.81.159', 1055216000, 1055216031, 'EU', 'Europe'), +('62.229.81.160', '62.229.82.255', 1055216032, 1055216383, 'PT', 'Portugal'), +('62.229.83.0', '62.229.84.255', 1055216384, 1055216895, 'EU', 'Europe'), +('62.229.85.0', '62.229.87.255', 1055216896, 1055217663, 'PT', 'Portugal'), +('62.229.88.0', '62.229.90.31', 1055217664, 1055218207, 'EU', 'Europe'), +('62.229.90.32', '62.229.90.63', 1055218208, 1055218239, 'PT', 'Portugal'), +('62.229.90.64', '62.229.90.95', 1055218240, 1055218271, 'EU', 'Europe'), +('62.229.90.96', '62.229.90.123', 1055218272, 1055218299, 'PT', 'Portugal'), +('62.229.90.124', '62.229.90.175', 1055218300, 1055218351, 'EU', 'Europe'), +('62.229.90.176', '62.229.90.207', 1055218352, 1055218383, 'PT', 'Portugal'), +('62.229.90.208', '62.229.90.215', 1055218384, 1055218391, 'EU', 'Europe'), +('62.229.90.216', '62.229.90.223', 1055218392, 1055218399, 'PT', 'Portugal'), +('62.229.90.224', '62.229.90.255', 1055218400, 1055218431, 'EU', 'Europe'), +('62.229.91.0', '62.229.91.15', 1055218432, 1055218447, 'PT', 'Portugal'), +('62.229.91.16', '62.229.91.31', 1055218448, 1055218463, 'EU', 'Europe'), +('62.229.91.32', '62.229.91.39', 1055218464, 1055218471, 'PT', 'Portugal'), +('62.229.91.40', '62.229.91.47', 1055218472, 1055218479, 'EU', 'Europe'), +('62.229.91.48', '62.229.95.255', 1055218480, 1055219711, 'PT', 'Portugal'), +('62.229.96.0', '62.229.97.255', 1055219712, 1055220223, 'EU', 'Europe'), +('62.229.98.0', '62.229.98.63', 1055220224, 1055220287, 'NL', 'Netherlands'), +('62.229.98.64', '62.229.98.127', 1055220288, 1055220351, 'EU', 'Europe'), +('62.229.98.128', '62.229.98.175', 1055220352, 1055220399, 'NL', 'Netherlands'), +('62.229.98.176', '62.229.102.255', 1055220400, 1055221503, 'EU', 'Europe'), +('62.229.103.0', '62.229.103.127', 1055221504, 1055221631, 'BE', 'Belgium'), +('62.229.103.128', '62.229.108.255', 1055221632, 1055223039, 'EU', 'Europe'), +('62.229.109.0', '62.229.111.255', 1055223040, 1055223807, 'NL', 'Netherlands'), +('62.229.112.0', '62.229.112.95', 1055223808, 1055223903, 'EU', 'Europe'), +('62.229.112.96', '62.229.112.191', 1055223904, 1055223999, 'LU', 'Luxembourg'), +('62.229.112.192', '62.229.112.255', 1055224000, 1055224063, 'EU', 'Europe'), +('62.229.113.0', '62.229.114.143', 1055224064, 1055224463, 'LU', 'Luxembourg'), +('62.229.114.144', '62.229.114.255', 1055224464, 1055224575, 'EU', 'Europe'), +('62.229.115.0', '62.229.115.31', 1055224576, 1055224607, 'LU', 'Luxembourg'), +('62.229.115.32', '62.229.115.255', 1055224608, 1055224831, 'EU', 'Europe'), +('62.229.116.0', '62.229.116.79', 1055224832, 1055224911, 'LU', 'Luxembourg'), +('62.229.116.80', '62.229.120.255', 1055224912, 1055226111, 'EU', 'Europe'), +('62.229.121.0', '62.229.121.63', 1055226112, 1055226175, 'ES', 'Spain'), +('62.229.121.64', '62.229.121.79', 1055226176, 1055226191, 'EU', 'Europe'), +('62.229.121.80', '62.229.121.95', 1055226192, 1055226207, 'ES', 'Spain'), +('62.229.121.96', '62.229.121.127', 1055226208, 1055226239, 'EU', 'Europe'), +('62.229.121.128', '62.229.121.143', 1055226240, 1055226255, 'ES', 'Spain'), +('62.229.121.144', '62.229.121.151', 1055226256, 1055226263, 'EU', 'Europe'), +('62.229.121.152', '62.229.121.159', 1055226264, 1055226271, 'ES', 'Spain'), +('62.229.121.160', '62.229.121.255', 1055226272, 1055226367, 'EU', 'Europe'), +('62.229.122.0', '62.229.122.31', 1055226368, 1055226399, 'ES', 'Spain'), +('62.229.122.32', '62.229.126.247', 1055226400, 1055227639, 'EU', 'Europe'), +('62.229.126.248', '62.229.126.255', 1055227640, 1055227647, 'PT', 'Portugal'), +('62.229.127.0', '62.229.127.255', 1055227648, 1055227903, 'EU', 'Europe'), +('62.229.128.0', '62.229.128.255', 1055227904, 1055228159, 'TR', 'Turkey'), +('62.229.129.0', '62.229.131.255', 1055228160, 1055228927, 'EU', 'Europe'), +('62.229.132.0', '62.229.132.255', 1055228928, 1055229183, 'TR', 'Turkey'), +('62.229.133.0', '62.229.143.255', 1055229184, 1055231999, 'EU', 'Europe'), +('62.229.144.0', '62.229.144.255', 1055232000, 1055232255, 'NL', 'Netherlands'), +('62.229.145.0', '62.229.145.255', 1055232256, 1055232511, 'EU', 'Europe'), +('62.229.146.0', '62.229.147.255', 1055232512, 1055233023, 'NL', 'Netherlands'), +('62.229.148.0', '62.229.152.15', 1055233024, 1055234063, 'EU', 'Europe'), +('62.229.152.16', '62.229.152.31', 1055234064, 1055234079, 'NL', 'Netherlands'), +('62.229.152.32', '62.229.152.79', 1055234080, 1055234127, 'US', 'United States'), +('62.229.152.80', '62.229.182.255', 1055234128, 1055241983, 'EU', 'Europe'), +('62.229.183.0', '62.229.183.255', 1055241984, 1055242239, 'GR', 'Greece'), +('62.229.184.0', '62.229.224.255', 1055242240, 1055252735, 'EU', 'Europe'), +('62.229.225.0', '62.229.225.255', 1055252736, 1055252991, 'ES', 'Spain'), +('62.229.226.0', '62.229.226.63', 1055252992, 1055253055, 'EU', 'Europe'), +('62.229.226.64', '62.229.226.95', 1055253056, 1055253087, 'ES', 'Spain'), +('62.229.226.96', '62.229.239.127', 1055253088, 1055256447, 'EU', 'Europe'), +('62.229.239.128', '62.229.239.143', 1055256448, 1055256463, 'ES', 'Spain'), +('62.229.239.144', '62.229.255.255', 1055256464, 1055260671, 'EU', 'Europe'), +('62.230.0.0', '62.230.255.255', 1055260672, 1055326207, 'SE', 'Sweden'), +('62.231.0.0', '62.231.31.255', 1055326208, 1055334399, 'RU', 'Russian Federation'), +('62.231.32.0', '62.231.63.255', 1055334400, 1055342591, 'IE', 'Ireland'), +('62.231.64.0', '62.231.127.255', 1055342592, 1055358975, 'RO', 'Romania'), +('62.231.128.0', '62.231.159.255', 1055358976, 1055367167, 'GB', 'United Kingdom'), +('62.231.160.0', '62.231.191.255', 1055367168, 1055375359, 'RU', 'Russian Federation'), +('62.231.192.0', '62.231.255.255', 1055375360, 1055391743, 'OM', 'Oman'), +('62.232.0.0', '62.232.255.255', 1055391744, 1055457279, 'GB', 'United Kingdom'), +('62.233.0.0', '62.233.31.255', 1055457280, 1055465471, 'BE', 'Belgium'), +('62.233.32.0', '62.233.40.55', 1055465472, 1055467575, 'FR', 'France'), +('62.233.40.56', '62.233.40.59', 1055467576, 1055467579, 'ES', 'Spain'), +('62.233.40.60', '62.233.45.255', 1055467580, 1055469055, 'FR', 'France'), +('62.233.46.0', '62.233.46.3', 1055469056, 1055469059, 'CH', 'Switzerland'), +('62.233.46.4', '62.233.46.7', 1055469060, 1055469063, 'DE', 'Germany'), +('62.233.46.8', '62.233.46.11', 1055469064, 1055469067, 'IT', 'Italy'), +('62.233.46.12', '62.233.46.15', 1055469068, 1055469071, 'BE', 'Belgium'), +('62.233.46.16', '62.233.55.255', 1055469072, 1055471615, 'FR', 'France'), +('62.233.56.0', '62.233.57.255', 1055471616, 1055472127, 'BE', 'Belgium'), +('62.233.58.0', '62.233.58.31', 1055472128, 1055472159, 'NL', 'Netherlands'), +('62.233.58.32', '62.233.58.255', 1055472160, 1055472383, 'FR', 'France'), +('62.233.59.0', '62.233.59.255', 1055472384, 1055472639, 'NL', 'Netherlands'), +('62.233.60.0', '62.233.63.255', 1055472640, 1055473663, 'FR', 'France'), +('62.233.64.0', '62.233.127.255', 1055473664, 1055490047, 'GB', 'United Kingdom'), +('62.233.128.0', '62.233.255.255', 1055490048, 1055522815, 'PL', 'Poland'), +('62.234.0.0', '62.234.255.255', 1055522816, 1055588351, 'NL', 'Netherlands'), +('62.235.0.0', '62.235.255.255', 1055588352, 1055653887, 'BE', 'Belgium'), +('62.236.0.0', '62.236.106.31', 1055653888, 1055681055, 'FI', 'Finland'), +('62.236.106.32', '62.236.106.47', 1055681056, 1055681071, 'SE', 'Sweden'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('62.236.106.48', '62.236.218.223', 1055681072, 1055709919, 'FI', 'Finland'), +('62.236.218.224', '62.236.218.239', 1055709920, 1055709935, 'AX', 'Aland Islands'), +('62.236.218.240', '62.237.255.255', 1055709936, 1055784959, 'FI', 'Finland'), +('62.238.0.0', '62.238.255.255', 1055784960, 1055850495, 'NL', 'Netherlands'), +('62.239.0.0', '62.239.255.255', 1055850496, 1055916031, 'GB', 'United Kingdom'), +('62.240.0.0', '62.240.31.255', 1055916032, 1055924223, 'RS', 'Serbia'), +('62.240.32.0', '62.240.63.255', 1055924224, 1055932415, 'LY', 'Libyan Arab Jamahiriya'), +('62.240.64.0', '62.240.95.255', 1055932416, 1055940607, 'FI', 'Finland'), +('62.240.96.0', '62.240.127.255', 1055940608, 1055948799, 'EG', 'Egypt'), +('62.240.128.0', '62.240.159.255', 1055948800, 1055956991, 'DE', 'Germany'), +('62.240.160.0', '62.240.191.255', 1055956992, 1055965183, 'CZ', 'Czech Republic'), +('62.240.192.0', '62.240.223.255', 1055965184, 1055973375, 'CH', 'Switzerland'), +('62.240.224.0', '62.240.255.255', 1055973376, 1055981567, 'FR', 'France'), +('62.241.0.0', '62.241.31.255', 1055981568, 1055989759, 'IT', 'Italy'), +('62.241.32.0', '62.241.52.255', 1055989760, 1055995135, 'DE', 'Germany'), +('62.241.53.0', '62.241.53.255', 1055995136, 1055995391, 'NL', 'Netherlands'), +('62.241.54.0', '62.241.63.255', 1055995392, 1055997951, 'DE', 'Germany'), +('62.241.64.0', '62.241.127.255', 1055997952, 1056014335, 'FR', 'France'), +('62.241.128.0', '62.241.159.255', 1056014336, 1056022527, 'EG', 'Egypt'), +('62.241.160.0', '62.241.191.255', 1056022528, 1056030719, 'GB', 'United Kingdom'), +('62.241.192.0', '62.241.255.255', 1056030720, 1056047103, 'FI', 'Finland'), +('62.242.0.0', '62.243.255.255', 1056047104, 1056178175, 'DK', 'Denmark'), +('62.244.0.0', '62.244.63.255', 1056178176, 1056194559, 'UA', 'Ukraine'), +('62.244.64.0', '62.244.127.255', 1056194560, 1056210943, 'FR', 'France'), +('62.244.128.0', '62.244.159.255', 1056210944, 1056219135, 'PL', 'Poland'), +('62.244.160.0', '62.244.191.255', 1056219136, 1056227327, 'GB', 'United Kingdom'), +('62.244.192.0', '62.244.255.255', 1056227328, 1056243711, 'TR', 'Turkey'), +('62.245.0.0', '62.245.31.255', 1056243712, 1056251903, 'MC', 'Monaco'), +('62.245.32.0', '62.245.63.255', 1056251904, 1056260095, 'GB', 'United Kingdom'), +('62.245.64.0', '62.245.127.255', 1056260096, 1056276479, 'CZ', 'Czech Republic'), +('62.245.128.0', '62.246.255.255', 1056276480, 1056374783, 'DE', 'Germany'), +('62.247.0.0', '62.247.255.255', 1056374784, 1056440319, 'SE', 'Sweden'), +('62.248.0.0', '62.248.127.255', 1056440320, 1056473087, 'TR', 'Turkey'), +('62.248.128.0', '62.248.252.255', 1056473088, 1056505087, 'FI', 'Finland'), +('62.248.253.0', '62.248.253.19', 1056505088, 1056505107, 'SE', 'Sweden'), +('62.248.253.20', '62.248.253.27', 1056505108, 1056505115, 'FI', 'Finland'), +('62.248.253.28', '62.248.253.31', 1056505116, 1056505119, 'SE', 'Sweden'), +('62.248.253.32', '62.248.253.255', 1056505120, 1056505343, 'FI', 'Finland'), +('62.248.254.0', '62.248.254.255', 1056505344, 1056505599, 'SE', 'Sweden'), +('62.248.255.0', '62.248.255.255', 1056505600, 1056505855, 'FI', 'Finland'), +('62.249.0.0', '62.249.31.255', 1056505856, 1056514047, 'PT', 'Portugal'), +('62.249.32.0', '62.249.63.255', 1056514048, 1056522239, 'IT', 'Italy'), +('62.249.64.0', '62.249.127.255', 1056522240, 1056538623, 'AT', 'Austria'), +('62.249.128.0', '62.249.159.255', 1056538624, 1056546815, 'DE', 'Germany'), +('62.249.160.0', '62.249.191.255', 1056546816, 1056555007, 'NO', 'Norway'), +('62.249.192.0', '62.249.255.255', 1056555008, 1056571391, 'GB', 'United Kingdom'), +('62.250.0.0', '62.251.127.255', 1056571392, 1056669695, 'NL', 'Netherlands'), +('62.251.128.0', '62.251.255.255', 1056669696, 1056702463, 'MA', 'Morocco'), +('62.252.0.0', '62.254.160.63', 1056702464, 1056874559, 'GB', 'United Kingdom'), +('62.254.160.64', '62.254.160.71', 1056874560, 1056874567, 'IE', 'Ireland'), +('62.254.160.72', '62.254.160.103', 1056874568, 1056874599, 'GB', 'United Kingdom'), +('62.254.160.104', '62.254.160.111', 1056874600, 1056874607, 'IE', 'Ireland'), +('62.254.160.112', '62.254.160.143', 1056874608, 1056874639, 'GB', 'United Kingdom'), +('62.254.160.144', '62.254.160.151', 1056874640, 1056874647, 'IE', 'Ireland'), +('62.254.160.152', '62.254.160.159', 1056874648, 1056874655, 'GB', 'United Kingdom'), +('62.254.160.160', '62.254.160.183', 1056874656, 1056874679, 'IE', 'Ireland'), +('62.254.160.184', '62.254.160.255', 1056874680, 1056874751, 'GB', 'United Kingdom'), +('62.254.161.0', '62.254.161.31', 1056874752, 1056874783, 'IE', 'Ireland'), +('62.254.161.32', '62.254.161.167', 1056874784, 1056874919, 'GB', 'United Kingdom'), +('62.254.161.168', '62.254.161.175', 1056874920, 1056874927, 'IE', 'Ireland'), +('62.254.161.176', '62.254.161.239', 1056874928, 1056874991, 'GB', 'United Kingdom'), +('62.254.161.240', '62.254.161.255', 1056874992, 1056875007, 'IE', 'Ireland'), +('62.254.162.0', '62.254.162.63', 1056875008, 1056875071, 'GB', 'United Kingdom'), +('62.254.162.64', '62.254.162.95', 1056875072, 1056875103, 'IE', 'Ireland'), +('62.254.162.96', '62.254.162.103', 1056875104, 1056875111, 'GB', 'United Kingdom'), +('62.254.162.104', '62.254.162.127', 1056875112, 1056875135, 'IE', 'Ireland'), +('62.254.162.128', '62.254.162.143', 1056875136, 1056875151, 'GB', 'United Kingdom'), +('62.254.162.144', '62.254.162.159', 1056875152, 1056875167, 'IE', 'Ireland'), +('62.254.162.160', '62.254.162.255', 1056875168, 1056875263, 'GB', 'United Kingdom'), +('62.254.163.0', '62.254.163.47', 1056875264, 1056875311, 'IE', 'Ireland'), +('62.254.163.48', '62.254.164.95', 1056875312, 1056875615, 'GB', 'United Kingdom'), +('62.254.164.96', '62.254.164.103', 1056875616, 1056875623, 'IE', 'Ireland'), +('62.254.164.104', '62.254.164.119', 1056875624, 1056875639, 'GB', 'United Kingdom'), +('62.254.164.120', '62.254.164.151', 1056875640, 1056875671, 'IE', 'Ireland'), +('62.254.164.152', '62.254.165.255', 1056875672, 1056876031, 'GB', 'United Kingdom'), +('62.254.166.0', '62.254.166.15', 1056876032, 1056876047, 'IE', 'Ireland'), +('62.254.166.16', '62.255.255.255', 1056876048, 1056964607, 'GB', 'United Kingdom'), +('63.0.0.0', '63.65.9.255', 1056964608, 1061227007, 'US', 'United States'), +('63.65.10.0', '63.65.10.255', 1061227008, 1061227263, 'HT', 'Haiti'), +('63.65.11.0', '63.65.12.254', 1061227264, 1061227774, 'BO', 'Bolivia'), +('63.65.12.255', '63.68.222.255', 1061227775, 1061478143, 'US', 'United States'), +('63.68.223.0', '63.68.223.255', 1061478144, 1061478399, 'BO', 'Bolivia'), +('63.68.224.0', '63.69.122.191', 1061478400, 1061518015, 'US', 'United States'), +('63.69.122.192', '63.69.122.223', 1061518016, 1061518047, 'A2', 'Satellite Provider'), +('63.69.122.224', '63.70.23.255', 1061518048, 1061558271, 'US', 'United States'), +('63.70.24.0', '63.70.27.255', 1061558272, 1061559295, 'PK', 'Pakistan'), +('63.70.28.0', '63.70.142.255', 1061559296, 1061588735, 'US', 'United States'), +('63.70.143.0', '63.70.143.255', 1061588736, 1061588991, 'GU', 'Guam'), +('63.70.144.0', '63.71.62.31', 1061588992, 1061633567, 'US', 'United States'), +('63.71.62.32', '63.71.62.39', 1061633568, 1061633575, 'CA', 'Canada'), +('63.71.62.40', '63.73.0.255', 1061633576, 1061748991, 'US', 'United States'), +('63.73.1.0', '63.73.1.255', 1061748992, 1061749247, 'PR', 'Puerto Rico'), +('63.73.2.0', '63.73.51.255', 1061749248, 1061762047, 'US', 'United States'), +('63.73.52.0', '63.73.52.255', 1061762048, 1061762303, 'FR', 'France'), +('63.73.53.0', '63.73.108.95', 1061762304, 1061776479, 'US', 'United States'), +('63.73.108.96', '63.73.108.255', 1061776480, 1061776639, 'CA', 'Canada'), +('63.73.109.0', '63.74.76.127', 1061776640, 1061833855, 'US', 'United States'), +('63.74.76.128', '63.74.76.255', 1061833856, 1061833983, 'PR', 'Puerto Rico'), +('63.74.77.0', '63.74.130.159', 1061833984, 1061847711, 'US', 'United States'), +('63.74.130.160', '63.74.130.191', 1061847712, 1061847743, 'FR', 'France'), +('63.74.130.192', '63.74.153.255', 1061847744, 1061853695, 'US', 'United States'), +('63.74.154.0', '63.74.155.255', 1061853696, 1061854207, 'GB', 'United Kingdom'), +('63.74.156.0', '63.75.233.255', 1061854208, 1061939711, 'US', 'United States'), +('63.75.234.0', '63.75.235.255', 1061939712, 1061940223, 'JM', 'Jamaica'), +('63.75.236.0', '63.76.214.191', 1061940224, 1062000319, 'US', 'United States'), +('63.76.214.192', '63.76.214.255', 1062000320, 1062000383, 'PR', 'Puerto Rico'), +('63.76.215.0', '63.77.227.255', 1062000384, 1062069247, 'US', 'United States'), +('63.77.228.0', '63.77.231.255', 1062069248, 1062070271, 'PR', 'Puerto Rico'), +('63.77.232.0', '63.80.46.255', 1062070272, 1062219519, 'US', 'United States'), +('63.80.47.0', '63.80.47.255', 1062219520, 1062219775, 'IN', 'India'), +('63.80.48.0', '63.80.60.127', 1062219776, 1062222975, 'US', 'United States'), +('63.80.60.128', '63.80.60.191', 1062222976, 1062223039, 'PH', 'Philippines'), +('63.80.60.192', '63.80.143.215', 1062223040, 1062244311, 'US', 'United States'), +('63.80.143.216', '63.80.143.223', 1062244312, 1062244319, 'PH', 'Philippines'), +('63.80.143.224', '63.80.215.255', 1062244320, 1062262783, 'US', 'United States'), +('63.80.216.0', '63.80.216.255', 1062262784, 1062263039, 'PH', 'Philippines'), +('63.80.217.0', '63.82.157.15', 1062263040, 1062378767, 'US', 'United States'), +('63.82.157.16', '63.82.157.31', 1062378768, 1062378783, 'CA', 'Canada'), +('63.82.157.32', '63.83.99.255', 1062378784, 1062429695, 'US', 'United States'), +('63.83.100.0', '63.83.101.255', 1062429696, 1062430207, 'PR', 'Puerto Rico'), +('63.83.102.0', '63.84.24.159', 1062430208, 1062475935, 'US', 'United States'), +('63.84.24.160', '63.84.24.175', 1062475936, 1062475951, 'GB', 'United Kingdom'), +('63.84.24.176', '63.84.64.255', 1062475952, 1062486271, 'US', 'United States'), +('63.84.65.0', '63.84.65.255', 1062486272, 1062486527, 'MX', 'Mexico'), +('63.84.66.0', '63.84.109.255', 1062486528, 1062497791, 'US', 'United States'), +('63.84.110.0', '63.84.111.255', 1062497792, 1062498303, 'FM', 'Micronesia, Federated States of'), +('63.84.112.0', '63.84.115.231', 1062498304, 1062499303, 'US', 'United States'), +('63.84.115.232', '63.84.115.239', 1062499304, 1062499311, 'CA', 'Canada'), +('63.84.115.240', '63.84.235.255', 1062499312, 1062530047, 'US', 'United States'), +('63.84.236.0', '63.84.239.255', 1062530048, 1062531071, 'EC', 'Ecuador'), +('63.84.240.0', '63.85.41.255', 1062531072, 1062545919, 'US', 'United States'), +('63.85.42.0', '63.85.43.255', 1062545920, 1062546431, 'BM', 'Bermuda'), +('63.85.44.0', '63.85.242.255', 1062546432, 1062597375, 'US', 'United States'), +('63.85.243.0', '63.85.243.255', 1062597376, 1062597631, 'PR', 'Puerto Rico'), +('63.85.244.0', '63.87.134.151', 1062597632, 1062700695, 'US', 'United States'), +('63.87.134.152', '63.87.134.159', 1062700696, 1062700703, 'CA', 'Canada'), +('63.87.134.160', '63.87.229.239', 1062700704, 1062725103, 'US', 'United States'), +('63.87.229.240', '63.87.229.247', 1062725104, 1062725111, 'IL', 'Israel'), +('63.87.229.248', '63.90.33.255', 1062725112, 1062871551, 'US', 'United States'), +('63.90.34.0', '63.90.36.255', 1062871552, 1062872319, 'PR', 'Puerto Rico'), +('63.90.37.0', '63.97.53.254', 1062872320, 1063335422, 'US', 'United States'), +('63.97.53.255', '63.97.53.255', 1063335423, 1063335423, 'CO', 'Colombia'), +('63.97.54.0', '63.97.74.255', 1063335424, 1063340799, 'US', 'United States'), +('63.97.75.0', '63.97.75.127', 1063340800, 1063340927, 'CA', 'Canada'), +('63.97.75.128', '63.98.11.255', 1063340928, 1063390207, 'US', 'United States'), +('63.98.12.0', '63.98.12.255', 1063390208, 1063390463, 'PR', 'Puerto Rico'), +('63.98.13.0', '63.99.201.63', 1063390464, 1063504191, 'US', 'United States'), +('63.99.201.64', '63.99.201.127', 1063504192, 1063504255, 'MX', 'Mexico'), +('63.99.201.128', '63.100.165.239', 1063504256, 1063560687, 'US', 'United States'), +('63.100.165.240', '63.100.165.255', 1063560688, 1063560703, 'CA', 'Canada'), +('63.100.166.0', '63.100.168.15', 1063560704, 1063561231, 'US', 'United States'), +('63.100.168.16', '63.100.168.31', 1063561232, 1063561247, 'CA', 'Canada'), +('63.100.168.32', '63.100.191.255', 1063561248, 1063567359, 'US', 'United States'), +('63.100.192.0', '63.100.223.255', 1063567360, 1063575551, 'A2', 'Satellite Provider'), +('63.100.224.0', '63.100.241.95', 1063575552, 1063579999, 'US', 'United States'), +('63.100.241.96', '63.100.241.111', 1063580000, 1063580015, 'CA', 'Canada'), +('63.100.241.112', '63.101.15.47', 1063580016, 1063587631, 'US', 'United States'), +('63.101.15.48', '63.101.15.63', 1063587632, 1063587647, 'CA', 'Canada'), +('63.101.15.64', '63.101.58.255', 1063587648, 1063598847, 'US', 'United States'), +('63.101.59.0', '63.101.59.15', 1063598848, 1063598863, 'CA', 'Canada'), +('63.101.59.16', '63.102.159.255', 1063598864, 1063690239, 'US', 'United States'), +('63.102.160.0', '63.102.160.255', 1063690240, 1063690495, 'PR', 'Puerto Rico'), +('63.102.161.0', '63.103.49.255', 1063690496, 1063727615, 'US', 'United States'), +('63.103.50.0', '63.103.51.255', 1063727616, 1063728127, 'GU', 'Guam'), +('63.103.52.0', '63.103.127.255', 1063728128, 1063747583, 'US', 'United States'), +('63.103.128.0', '63.103.128.255', 1063747584, 1063747839, 'A2', 'Satellite Provider'), +('63.103.129.0', '63.103.129.255', 1063747840, 1063748095, 'UG', 'Uganda'), +('63.103.130.0', '63.103.131.255', 1063748096, 1063748607, 'A2', 'Satellite Provider'), +('63.103.132.0', '63.103.133.255', 1063748608, 1063749119, 'GH', 'Ghana'), +('63.103.134.0', '63.103.134.255', 1063749120, 1063749375, 'A2', 'Satellite Provider'), +('63.103.135.0', '63.103.135.255', 1063749376, 1063749631, 'US', 'United States'), +('63.103.136.0', '63.103.136.255', 1063749632, 1063749887, 'LR', 'Liberia'), +('63.103.137.0', '63.103.137.255', 1063749888, 1063750143, 'SA', 'Saudi Arabia'), +('63.103.138.0', '63.103.138.255', 1063750144, 1063750399, 'NG', 'Nigeria'), +('63.103.139.0', '63.103.139.63', 1063750400, 1063750463, 'SA', 'Saudi Arabia'), +('63.103.139.64', '63.103.139.127', 1063750464, 1063750527, 'NG', 'Nigeria'), +('63.103.139.128', '63.103.139.143', 1063750528, 1063750543, 'US', 'United States'), +('63.103.139.144', '63.103.139.159', 1063750544, 1063750559, 'A2', 'Satellite Provider'), +('63.103.139.160', '63.103.139.255', 1063750560, 1063750655, 'US', 'United States'), +('63.103.140.0', '63.103.143.255', 1063750656, 1063751679, 'NG', 'Nigeria'), +('63.103.144.0', '63.103.148.255', 1063751680, 1063752959, 'US', 'United States'), +('63.103.149.0', '63.103.149.255', 1063752960, 1063753215, 'A2', 'Satellite Provider'), +('63.103.150.0', '63.105.191.255', 1063753216, 1063895039, 'US', 'United States'), +('63.105.192.0', '63.105.207.255', 1063895040, 1063899135, 'KR', 'Korea, Republic of'), +('63.105.208.0', '63.108.84.127', 1063899136, 1064064127, 'US', 'United States'), +('63.108.84.128', '63.108.84.191', 1064064128, 1064064191, 'CA', 'Canada'), +('63.108.84.192', '63.109.65.255', 1064064192, 1064124927, 'US', 'United States'), +('63.109.66.0', '63.109.68.255', 1064124928, 1064125695, 'EC', 'Ecuador'), +('63.109.69.0', '63.109.69.255', 1064125696, 1064125951, 'US', 'United States'), +('63.109.70.0', '63.109.70.255', 1064125952, 1064126207, 'PE', 'Peru'), +('63.109.71.0', '63.109.72.255', 1064126208, 1064126719, 'US', 'United States'), +('63.109.73.0', '63.109.73.255', 1064126720, 1064126975, 'EC', 'Ecuador'), +('63.109.74.0', '63.109.75.255', 1064126976, 1064127487, 'US', 'United States'), +('63.109.76.0', '63.109.77.255', 1064127488, 1064127999, 'EC', 'Ecuador'), +('63.109.78.0', '63.109.244.255', 1064128000, 1064170751, 'US', 'United States'), +('63.109.245.0', '63.109.245.47', 1064170752, 1064170799, 'A2', 'Satellite Provider'), +('63.109.245.48', '63.109.245.55', 1064170800, 1064170807, 'NG', 'Nigeria'), +('63.109.245.56', '63.109.245.71', 1064170808, 1064170823, 'IN', 'India'), +('63.109.245.72', '63.109.245.79', 1064170824, 1064170831, 'A2', 'Satellite Provider'), +('63.109.245.80', '63.109.245.119', 1064170832, 1064170871, 'IN', 'India'), +('63.109.245.120', '63.109.245.127', 1064170872, 1064170879, 'A2', 'Satellite Provider'), +('63.109.245.128', '63.109.245.159', 1064170880, 1064170911, 'DE', 'Germany'), +('63.109.245.160', '63.109.245.167', 1064170912, 1064170919, 'A2', 'Satellite Provider'), +('63.109.245.168', '63.109.245.175', 1064170920, 1064170927, 'NG', 'Nigeria'), +('63.109.245.176', '63.109.245.191', 1064170928, 1064170943, 'DE', 'Germany'), +('63.109.245.192', '63.109.245.239', 1064170944, 1064170991, 'A2', 'Satellite Provider'), +('63.109.245.240', '63.109.245.247', 1064170992, 1064170999, 'NG', 'Nigeria'), +('63.109.245.248', '63.109.245.255', 1064171000, 1064171007, 'A2', 'Satellite Provider'), +('63.109.246.0', '63.109.246.127', 1064171008, 1064171135, 'NG', 'Nigeria'), +('63.109.246.128', '63.109.246.255', 1064171136, 1064171263, 'IN', 'India'), +('63.109.247.0', '63.109.248.31', 1064171264, 1064171551, 'NG', 'Nigeria'), +('63.109.248.32', '63.109.248.39', 1064171552, 1064171559, 'TZ', 'Tanzania, United Republic of'), +('63.109.248.40', '63.109.248.55', 1064171560, 1064171575, 'A2', 'Satellite Provider'), +('63.109.248.56', '63.109.248.63', 1064171576, 1064171583, 'PK', 'Pakistan'), +('63.109.248.64', '63.109.248.87', 1064171584, 1064171607, 'A2', 'Satellite Provider'), +('63.109.248.88', '63.109.248.95', 1064171608, 1064171615, 'PK', 'Pakistan'), +('63.109.248.96', '63.109.248.111', 1064171616, 1064171631, 'GH', 'Ghana'), +('63.109.248.112', '63.109.248.127', 1064171632, 1064171647, 'A2', 'Satellite Provider'), +('63.109.248.128', '63.109.248.255', 1064171648, 1064171775, 'NG', 'Nigeria'), +('63.109.249.0', '63.109.249.23', 1064171776, 1064171799, 'A2', 'Satellite Provider'), +('63.109.249.24', '63.109.249.39', 1064171800, 1064171815, 'IN', 'India'), +('63.109.249.40', '63.109.249.47', 1064171816, 1064171823, 'A2', 'Satellite Provider'), +('63.109.249.48', '63.109.249.63', 1064171824, 1064171839, 'IN', 'India'), +('63.109.249.64', '63.109.249.79', 1064171840, 1064171855, 'A2', 'Satellite Provider'), +('63.109.249.80', '63.109.249.95', 1064171856, 1064171871, 'TZ', 'Tanzania, United Republic of'), +('63.109.249.96', '63.109.249.127', 1064171872, 1064171903, 'A2', 'Satellite Provider'), +('63.109.249.128', '63.109.249.135', 1064171904, 1064171911, 'NG', 'Nigeria'), +('63.109.249.136', '63.109.249.143', 1064171912, 1064171919, 'A2', 'Satellite Provider'), +('63.109.249.144', '63.109.249.151', 1064171920, 1064171927, 'PK', 'Pakistan'), +('63.109.249.152', '63.109.249.159', 1064171928, 1064171935, 'A2', 'Satellite Provider'), +('63.109.249.160', '63.109.249.191', 1064171936, 1064171967, 'NG', 'Nigeria'), +('63.109.249.192', '63.109.249.255', 1064171968, 1064172031, 'A2', 'Satellite Provider'), +('63.109.250.0', '63.110.19.255', 1064172032, 1064178687, 'US', 'United States'), +('63.110.20.0', '63.110.20.127', 1064178688, 1064178815, 'ID', 'Indonesia'), +('63.110.20.128', '63.110.119.255', 1064178816, 1064204287, 'US', 'United States'), +('63.110.120.0', '63.110.123.255', 1064204288, 1064205311, 'MX', 'Mexico'), +('63.110.124.0', '63.110.149.127', 1064205312, 1064211839, 'US', 'United States'), +('63.110.149.128', '63.110.149.255', 1064211840, 1064211967, 'PH', 'Philippines'), +('63.110.150.0', '63.110.188.255', 1064211968, 1064221951, 'US', 'United States'), +('63.110.189.0', '63.110.189.255', 1064221952, 1064222207, 'MX', 'Mexico'), +('63.110.190.0', '63.110.224.111', 1064222208, 1064231023, 'US', 'United States'), +('63.110.224.112', '63.110.224.127', 1064231024, 1064231039, 'CA', 'Canada'), +('63.110.224.128', '63.113.126.255', 1064231040, 1064402687, 'US', 'United States'), +('63.113.127.0', '63.113.127.63', 1064402688, 1064402751, 'CA', 'Canada'), +('63.113.127.64', '63.114.36.255', 1064402752, 1064445183, 'US', 'United States'), +('63.114.37.0', '63.114.37.255', 1064445184, 1064445439, 'PK', 'Pakistan'), +('63.114.38.0', '63.117.71.255', 1064445440, 1064650751, 'US', 'United States'), +('63.117.72.0', '63.117.75.255', 1064650752, 1064651775, 'EC', 'Ecuador'), +('63.117.76.0', '63.122.50.255', 1064651776, 1064973055, 'US', 'United States'), +('63.122.51.0', '63.122.51.127', 1064973056, 1064973183, 'AU', 'Australia'), +('63.122.51.128', '63.130.136.255', 1064973184, 1065519359, 'US', 'United States'), +('63.130.137.0', '63.130.137.127', 1065519360, 1065519487, 'CA', 'Canada'), +('63.130.137.128', '63.131.131.63', 1065519488, 1065583423, 'US', 'United States'), +('63.131.131.64', '63.131.131.79', 1065583424, 1065583439, 'HK', 'Hong Kong'), +('63.131.131.80', '63.131.175.255', 1065583440, 1065594879, 'US', 'United States'), +('63.131.192.0', '63.134.236.99', 1065598976, 1065806947, 'US', 'United States'), +('63.134.236.100', '63.134.236.109', 1065806948, 1065806957, 'TH', 'Thailand'), +('63.134.236.110', '63.134.255.255', 1065806958, 1065811967, 'US', 'United States'), +('63.135.0.0', '63.135.31.255', 1065811968, 1065820159, 'CA', 'Canada'), +('63.135.32.0', '63.135.239.255', 1065820160, 1065873407, 'US', 'United States'), +('63.135.240.0', '63.135.255.255', 1065873408, 1065877503, 'PR', 'Puerto Rico'), +('63.136.0.0', '63.136.111.255', 1065877504, 1065906175, 'US', 'United States'), +('63.136.112.0', '63.136.119.255', 1065906176, 1065908223, 'KY', 'Cayman Islands'), +('63.136.120.0', '63.139.255.255', 1065908224, 1066139647, 'US', 'United States'), +('63.140.251.0', '63.140.251.127', 1066203904, 1066204031, 'US', 'United States'), +('63.144.0.0', '63.144.10.255', 1066401792, 1066404607, 'US', 'United States'), +('63.144.11.0', '63.144.11.255', 1066404608, 1066404863, 'A2', 'Satellite Provider'), +('63.144.12.0', '63.145.244.127', 1066404864, 1066529919, 'US', 'United States'), +('63.145.244.128', '63.145.244.255', 1066529920, 1066530047, 'CA', 'Canada'), +('63.145.245.0', '63.146.199.255', 1066530048, 1066584063, 'US', 'United States'), +('63.146.200.0', '63.146.207.255', 1066584064, 1066586111, 'PE', 'Peru'), +('63.146.208.0', '63.147.25.127', 1066586112, 1066604927, 'US', 'United States'), +('63.147.25.128', '63.147.25.159', 1066604928, 1066604959, 'CA', 'Canada'), +('63.147.25.160', '63.147.113.7', 1066604960, 1066627335, 'US', 'United States'), +('63.147.113.8', '63.147.113.15', 1066627336, 1066627343, 'CA', 'Canada'), +('63.147.113.16', '63.148.213.95', 1066627344, 1066718559, 'US', 'United States'), +('63.148.213.96', '63.148.213.127', 1066718560, 1066718591, 'PR', 'Puerto Rico'), +('63.148.213.128', '63.149.14.191', 1066718592, 1066733247, 'US', 'United States'), +('63.149.14.192', '63.149.14.223', 1066733248, 1066733279, 'CA', 'Canada'), +('63.149.14.224', '63.149.27.63', 1066733280, 1066736447, 'US', 'United States'), +('63.149.27.64', '63.149.27.95', 1066736448, 1066736479, 'NO', 'Norway'), +('63.149.27.96', '63.150.129.63', 1066736480, 1066828095, 'US', 'United States'), +('63.150.129.64', '63.150.129.95', 1066828096, 1066828127, 'HK', 'Hong Kong'), +('63.150.129.96', '63.150.129.119', 1066828128, 1066828151, 'US', 'United States'), +('63.150.129.120', '63.150.129.127', 1066828152, 1066828159, 'CN', 'China'), +('63.150.129.128', '63.150.129.223', 1066828160, 1066828255, 'US', 'United States'), +('63.150.129.224', '63.150.129.255', 1066828256, 1066828287, 'HK', 'Hong Kong'), +('63.150.130.0', '63.150.133.255', 1066828288, 1066829311, 'US', 'United States'), +('63.150.134.0', '63.150.134.255', 1066829312, 1066829567, 'HK', 'Hong Kong'), +('63.150.135.0', '63.150.136.255', 1066829568, 1066830079, 'US', 'United States'), +('63.150.137.0', '63.150.137.31', 1066830080, 1066830111, 'SI', 'Slovenia'), +('63.150.137.32', '63.150.137.127', 1066830112, 1066830207, 'US', 'United States'), +('63.150.137.128', '63.150.137.159', 1066830208, 1066830239, 'SG', 'Singapore'), +('63.150.137.160', '63.150.137.207', 1066830240, 1066830287, 'US', 'United States'), +('63.150.137.208', '63.150.137.223', 1066830288, 1066830303, 'SG', 'Singapore'), +('63.150.137.224', '63.150.137.231', 1066830304, 1066830311, 'US', 'United States'), +('63.150.137.232', '63.150.138.255', 1066830312, 1066830591, 'SG', 'Singapore'), +('63.150.139.0', '63.150.139.207', 1066830592, 1066830799, 'US', 'United States'), +('63.150.139.208', '63.150.139.215', 1066830800, 1066830807, 'SG', 'Singapore'), +('63.150.139.216', '63.150.139.223', 1066830808, 1066830815, 'US', 'United States'), +('63.150.139.224', '63.150.139.255', 1066830816, 1066830847, 'SG', 'Singapore'), +('63.150.140.0', '63.150.140.191', 1066830848, 1066831039, 'US', 'United States'), +('63.150.140.192', '63.150.140.223', 1066831040, 1066831071, 'JP', 'Japan'), +('63.150.140.224', '63.150.146.143', 1066831072, 1066832527, 'US', 'United States'), +('63.150.146.144', '63.150.146.159', 1066832528, 1066832543, 'CA', 'Canada'), +('63.150.146.160', '63.151.149.95', 1066832544, 1066898783, 'US', 'United States'), +('63.151.149.96', '63.151.149.127', 1066898784, 1066898815, 'CO', 'Colombia'), +('63.151.149.128', '63.160.90.63', 1066898816, 1067473471, 'US', 'United States'), +('63.160.90.64', '63.160.90.127', 1067473472, 1067473535, 'CA', 'Canada'), +('63.160.90.128', '63.160.95.63', 1067473536, 1067474751, 'US', 'United States'), +('63.160.95.64', '63.160.95.79', 1067474752, 1067474767, 'NL', 'Netherlands'), +('63.160.95.80', '63.160.122.255', 1067474768, 1067481855, 'US', 'United States'), +('63.160.123.0', '63.160.123.255', 1067481856, 1067482111, 'CA', 'Canada'), +('63.160.124.0', '63.160.173.191', 1067482112, 1067494847, 'US', 'United States'), +('63.160.173.192', '63.160.173.223', 1067494848, 1067494879, 'CA', 'Canada'), +('63.160.173.224', '63.160.207.255', 1067494880, 1067503615, 'US', 'United States'), +('63.160.208.0', '63.160.208.127', 1067503616, 1067503743, 'CA', 'Canada'), +('63.160.208.128', '63.161.63.255', 1067503744, 1067532287, 'US', 'United States'), +('63.161.64.0', '63.161.65.255', 1067532288, 1067532799, 'HN', 'Honduras'), +('63.161.66.0', '63.161.86.39', 1067532800, 1067537959, 'US', 'United States'), +('63.161.86.40', '63.161.86.47', 1067537960, 1067537967, 'GB', 'United Kingdom'), +('63.161.86.48', '63.161.142.255', 1067537968, 1067552511, 'US', 'United States'), +('63.161.143.0', '63.161.143.255', 1067552512, 1067552767, 'PR', 'Puerto Rico'), +('63.161.144.0', '63.161.181.255', 1067552768, 1067562495, 'US', 'United States'), +('63.161.182.0', '63.161.182.255', 1067562496, 1067562751, 'SL', 'Sierra Leone'), +('63.161.183.0', '63.161.223.255', 1067562752, 1067573247, 'US', 'United States'), +('63.161.224.0', '63.161.224.7', 1067573248, 1067573255, 'SG', 'Singapore'), +('63.161.224.8', '63.161.231.255', 1067573256, 1067575295, 'US', 'United States'), +('63.161.232.0', '63.161.239.255', 1067575296, 1067577343, 'HN', 'Honduras'), +('63.161.240.0', '63.162.33.223', 1067577344, 1067590111, 'US', 'United States'), +('63.162.33.224', '63.162.33.255', 1067590112, 1067590143, 'CA', 'Canada'), +('63.162.34.0', '63.162.48.255', 1067590144, 1067593983, 'US', 'United States'), +('63.162.49.0', '63.162.49.255', 1067593984, 1067594239, 'PR', 'Puerto Rico'), +('63.162.50.0', '63.162.141.255', 1067594240, 1067617791, 'US', 'United States'), +('63.162.142.0', '63.162.142.255', 1067617792, 1067618047, 'CN', 'China'), +('63.162.143.0', '63.162.143.63', 1067618048, 1067618111, 'US', 'United States'), +('63.162.143.64', '63.162.143.127', 1067618112, 1067618175, 'PR', 'Puerto Rico'), +('63.162.143.128', '63.162.155.255', 1067618176, 1067621375, 'US', 'United States'), +('63.162.156.0', '63.162.156.255', 1067621376, 1067621631, 'PR', 'Puerto Rico'), +('63.162.157.0', '63.162.173.239', 1067621632, 1067625967, 'US', 'United States'), +('63.162.173.240', '63.162.173.255', 1067625968, 1067625983, 'CH', 'Switzerland'), +('63.162.174.0', '63.163.24.135', 1067625984, 1067653255, 'US', 'United States'), +('63.163.24.136', '63.163.24.143', 1067653256, 1067653263, 'PR', 'Puerto Rico'), +('63.163.24.144', '63.163.179.255', 1067653264, 1067693055, 'US', 'United States'), +('63.163.180.0', '63.163.181.255', 1067693056, 1067693567, 'CO', 'Colombia'), +('63.163.182.0', '63.163.209.255', 1067693568, 1067700735, 'US', 'United States'), +('63.163.210.0', '63.163.211.255', 1067700736, 1067701247, 'AN', 'Netherlands Antilles'), +('63.163.212.0', '63.164.55.255', 1067701248, 1067726847, 'US', 'United States'), +('63.164.56.0', '63.164.57.255', 1067726848, 1067727359, 'EC', 'Ecuador'), +('63.164.58.0', '63.164.94.255', 1067727360, 1067736831, 'US', 'United States'), +('63.164.95.0', '63.164.95.255', 1067736832, 1067737087, 'PR', 'Puerto Rico'), +('63.164.96.0', '63.164.107.255', 1067737088, 1067740159, 'US', 'United States'), +('63.164.108.0', '63.164.111.255', 1067740160, 1067741183, 'HN', 'Honduras'), +('63.164.112.0', '63.164.153.191', 1067741184, 1067751871, 'US', 'United States'), +('63.164.153.192', '63.164.153.207', 1067751872, 1067751887, 'PR', 'Puerto Rico'), +('63.164.153.208', '63.164.196.127', 1067751888, 1067762815, 'US', 'United States'), +('63.164.196.128', '63.164.196.143', 1067762816, 1067762831, 'CA', 'Canada'), +('63.164.196.144', '63.165.9.255', 1067762832, 1067780607, 'US', 'United States'), +('63.165.10.0', '63.165.10.255', 1067780608, 1067780863, 'GB', 'United Kingdom'), +('63.165.11.0', '63.165.120.15', 1067780864, 1067808783, 'US', 'United States'), +('63.165.120.16', '63.165.120.31', 1067808784, 1067808799, 'GB', 'United Kingdom'), +('63.165.120.32', '63.165.175.15', 1067808800, 1067822863, 'US', 'United States'), +('63.165.175.16', '63.165.175.23', 1067822864, 1067822871, 'CA', 'Canada'), +('63.165.175.24', '63.165.182.255', 1067822872, 1067824895, 'US', 'United States'), +('63.165.183.0', '63.165.183.255', 1067824896, 1067825151, 'PR', 'Puerto Rico'), +('63.165.184.0', '63.165.235.255', 1067825152, 1067838463, 'US', 'United States'), +('63.165.236.0', '63.165.236.127', 1067838464, 1067838591, 'IT', 'Italy'), +('63.165.236.128', '63.166.50.191', 1067838592, 1067856575, 'US', 'United States'), +('63.166.50.192', '63.166.50.223', 1067856576, 1067856607, 'CO', 'Colombia'), +('63.166.50.224', '63.166.78.255', 1067856608, 1067863807, 'US', 'United States'), +('63.166.79.0', '63.166.79.127', 1067863808, 1067863935, 'CA', 'Canada'), +('63.166.79.128', '63.166.197.55', 1067863936, 1067894071, 'US', 'United States'), +('63.166.197.56', '63.166.197.63', 1067894072, 1067894079, 'PR', 'Puerto Rico'), +('63.166.197.64', '63.166.252.199', 1067894080, 1067908295, 'US', 'United States'), +('63.166.252.200', '63.166.252.207', 1067908296, 1067908303, 'CH', 'Switzerland'), +('63.166.252.208', '63.166.255.159', 1067908304, 1067909023, 'US', 'United States'), +('63.166.255.160', '63.166.255.175', 1067909024, 1067909039, 'SG', 'Singapore'), +('63.166.255.176', '63.167.21.159', 1067909040, 1067914655, 'US', 'United States'), +('63.167.21.160', '63.167.21.255', 1067914656, 1067914751, 'CA', 'Canada'), +('63.167.22.0', '63.167.38.31', 1067914752, 1067918879, 'US', 'United States'), +('63.167.38.32', '63.167.38.39', 1067918880, 1067918887, 'NL', 'Netherlands'), +('63.167.38.40', '63.167.55.31', 1067918888, 1067923231, 'US', 'United States'), +('63.167.55.32', '63.167.55.39', 1067923232, 1067923239, 'CA', 'Canada'), +('63.167.55.40', '63.167.100.191', 1067923240, 1067934911, 'US', 'United States'), +('63.167.100.192', '63.167.100.207', 1067934912, 1067934927, 'CN', 'China'), +('63.167.100.208', '63.167.100.215', 1067934928, 1067934935, 'PR', 'Puerto Rico'), +('63.167.100.216', '63.168.12.167', 1067934936, 1067977895, 'US', 'United States'), +('63.168.12.168', '63.168.12.175', 1067977896, 1067977903, 'CA', 'Canada'), +('63.168.12.176', '63.168.15.255', 1067977904, 1067978751, 'US', 'United States'), +('63.168.16.0', '63.168.16.255', 1067978752, 1067979007, 'PR', 'Puerto Rico'), +('63.168.17.0', '63.168.56.255', 1067979008, 1067989247, 'US', 'United States'), +('63.168.57.0', '63.168.57.255', 1067989248, 1067989503, 'EC', 'Ecuador'), +('63.168.58.0', '63.168.92.255', 1067989504, 1067998463, 'US', 'United States'), +('63.168.93.0', '63.168.93.255', 1067998464, 1067998719, 'CO', 'Colombia'), +('63.168.94.0', '63.168.115.255', 1067998720, 1068004351, 'US', 'United States'), +('63.168.116.0', '63.168.116.255', 1068004352, 1068004607, 'CA', 'Canada'), +('63.168.117.0', '63.168.167.255', 1068004608, 1068017663, 'US', 'United States'), +('63.168.168.0', '63.168.169.255', 1068017664, 1068018175, 'YE', 'Yemen'), +('63.168.170.0', '63.169.119.231', 1068018176, 1068070887, 'US', 'United States'), +('63.169.119.232', '63.169.119.239', 1068070888, 1068070895, 'CA', 'Canada'), +('63.169.119.240', '63.169.168.255', 1068070896, 1068083455, 'US', 'United States'), +('63.169.169.0', '63.169.169.255', 1068083456, 1068083711, 'PR', 'Puerto Rico'), +('63.169.170.0', '63.169.219.159', 1068083712, 1068096415, 'US', 'United States'), +('63.169.219.160', '63.169.219.191', 1068096416, 1068096447, 'CA', 'Canada'), +('63.169.219.192', '63.170.53.111', 1068096448, 1068119407, 'US', 'United States'), +('63.170.53.112', '63.170.53.127', 1068119408, 1068119423, 'DE', 'Germany'), +('63.170.53.128', '63.171.2.175', 1068119424, 1068171951, 'US', 'United States'), +('63.171.2.176', '63.171.2.191', 1068171952, 1068171967, 'PR', 'Puerto Rico'), +('63.171.2.192', '63.171.17.255', 1068171968, 1068175871, 'US', 'United States'), +('63.171.18.0', '63.171.19.255', 1068175872, 1068176383, 'YE', 'Yemen'), +('63.171.20.0', '63.171.32.31', 1068176384, 1068179487, 'US', 'United States'), +('63.171.32.32', '63.171.32.47', 1068179488, 1068179503, 'PR', 'Puerto Rico'), +('63.171.32.48', '63.171.107.223', 1068179504, 1068198879, 'US', 'United States'), +('63.171.107.224', '63.171.107.255', 1068198880, 1068198911, 'IN', 'India'), +('63.171.108.0', '63.171.111.255', 1068198912, 1068199935, 'US', 'United States'), +('63.171.112.0', '63.171.127.255', 1068199936, 1068204031, 'CA', 'Canada'), +('63.171.128.0', '63.171.231.255', 1068204032, 1068230655, 'US', 'United States'), +('63.171.232.0', '63.171.232.255', 1068230656, 1068230911, 'CO', 'Colombia'), +('63.171.233.0', '63.172.12.63', 1068230912, 1068239935, 'US', 'United States'), +('63.172.12.64', '63.172.12.127', 1068239936, 1068239999, 'PR', 'Puerto Rico'), +('63.172.12.128', '63.172.187.63', 1068240000, 1068284735, 'US', 'United States'), +('63.172.187.64', '63.172.187.71', 1068284736, 1068284743, 'CA', 'Canada'), +('63.172.187.72', '63.172.187.79', 1068284744, 1068284751, 'US', 'United States'), +('63.172.187.80', '63.172.187.87', 1068284752, 1068284759, 'DK', 'Denmark'), +('63.172.187.88', '63.173.95.255', 1068284760, 1068326911, 'US', 'United States'), +('63.173.96.0', '63.173.96.255', 1068326912, 1068327167, 'EC', 'Ecuador'), +('63.173.97.0', '63.173.171.255', 1068327168, 1068346367, 'US', 'United States'), +('63.173.172.0', '63.173.173.255', 1068346368, 1068346879, 'YE', 'Yemen'), +('63.173.174.0', '63.173.236.111', 1068346880, 1068362863, 'US', 'United States'), +('63.173.236.112', '63.173.236.127', 1068362864, 1068362879, 'GB', 'United Kingdom'), +('63.173.236.128', '63.174.199.255', 1068362880, 1068419071, 'US', 'United States'), +('63.174.200.0', '63.174.207.255', 1068419072, 1068421119, 'CO', 'Colombia'), +('63.174.208.0', '63.174.226.255', 1068421120, 1068425983, 'US', 'United States'), +('63.174.227.0', '63.174.227.255', 1068425984, 1068426239, 'EC', 'Ecuador'), +('63.174.228.0', '63.175.111.255', 1068426240, 1068462079, 'US', 'United States'), +('63.175.112.0', '63.175.112.255', 1068462080, 1068462335, 'PR', 'Puerto Rico'), +('63.175.113.0', '63.175.176.127', 1068462336, 1068478591, 'US', 'United States'), +('63.175.176.128', '63.175.176.143', 1068478592, 1068478607, 'PR', 'Puerto Rico'), +('63.175.176.144', '63.175.182.159', 1068478608, 1068480159, 'US', 'United States'), +('63.175.182.160', '63.175.182.191', 1068480160, 1068480191, 'IN', 'India'), +('63.175.182.192', '63.175.183.175', 1068480192, 1068480431, 'US', 'United States'), +('63.175.183.176', '63.175.183.191', 1068480432, 1068480447, 'SE', 'Sweden'), +('63.175.183.192', '63.175.185.255', 1068480448, 1068481023, 'US', 'United States'), +('63.175.186.0', '63.175.187.255', 1068481024, 1068481535, 'PR', 'Puerto Rico'), +('63.175.188.0', '63.175.225.255', 1068481536, 1068491263, 'US', 'United States'), +('63.175.226.0', '63.175.226.255', 1068491264, 1068491519, 'HN', 'Honduras'), +('63.175.227.0', '63.206.134.231', 1068491520, 1070499559, 'US', 'United States'), +('63.206.134.232', '63.206.134.239', 1070499560, 1070499567, 'PR', 'Puerto Rico'), +('63.206.134.240', '63.210.8.255', 1070499568, 1070729471, 'US', 'United States'), +('63.210.9.0', '63.210.9.255', 1070729472, 1070729727, 'CA', 'Canada'), +('63.210.10.0', '63.211.50.55', 1070729728, 1070805559, 'US', 'United States'), +('63.211.50.56', '63.211.50.63', 1070805560, 1070805567, 'VG', 'Virgin Islands, British'), +('63.211.50.64', '63.215.176.255', 1070805568, 1071100159, 'US', 'United States'), +('63.215.177.0', '63.215.177.255', 1071100160, 1071100415, 'PR', 'Puerto Rico'), +('63.215.178.0', '63.215.179.255', 1071100416, 1071100927, 'US', 'United States'), +('63.215.180.0', '63.215.183.255', 1071100928, 1071101951, 'PR', 'Puerto Rico'), +('63.215.184.0', '63.216.196.255', 1071101952, 1071170815, 'US', 'United States'), +('63.216.197.0', '63.216.197.255', 1071170816, 1071171071, 'PH', 'Philippines'), +('63.216.198.0', '63.217.80.127', 1071171072, 1071206527, 'US', 'United States'), +('63.217.80.128', '63.217.80.159', 1071206528, 1071206559, 'HK', 'Hong Kong'), +('63.217.80.160', '63.218.226.95', 1071206560, 1071309407, 'US', 'United States'), +('63.218.226.96', '63.218.226.127', 1071309408, 1071309439, 'HK', 'Hong Kong'), +('63.218.226.128', '63.218.226.159', 1071309440, 1071309471, 'US', 'United States'), +('63.218.226.160', '63.218.226.191', 1071309472, 1071309503, 'HK', 'Hong Kong'), +('63.218.226.192', '63.218.227.127', 1071309504, 1071309695, 'US', 'United States'), +('63.218.227.128', '63.218.227.159', 1071309696, 1071309727, 'HK', 'Hong Kong'), +('63.218.227.160', '63.219.6.255', 1071309728, 1071318783, 'US', 'United States'), +('63.219.7.0', '63.219.7.255', 1071318784, 1071319039, 'IN', 'India'), +('63.219.8.0', '63.219.176.31', 1071319040, 1071362079, 'US', 'United States'), +('63.219.176.32', '63.219.176.63', 1071362080, 1071362111, 'HK', 'Hong Kong'), +('63.219.176.64', '63.219.176.159', 1071362112, 1071362207, 'US', 'United States'), +('63.219.176.160', '63.219.176.191', 1071362208, 1071362239, 'HK', 'Hong Kong'), +('63.219.176.192', '63.221.95.255', 1071362240, 1071472639, 'US', 'United States'), +('63.221.96.0', '63.221.127.255', 1071472640, 1071480831, 'CA', 'Canada'), +('63.221.128.0', '63.236.37.63', 1071480832, 1072440639, 'US', 'United States'), +('63.236.37.64', '63.236.37.95', 1072440640, 1072440671, 'CA', 'Canada'), +('63.236.37.96', '63.236.56.191', 1072440672, 1072445631, 'US', 'United States'), +('63.236.56.192', '63.236.56.223', 1072445632, 1072445663, 'AU', 'Australia'), +('63.236.56.224', '63.237.63.183', 1072445664, 1072512951, 'US', 'United States'), +('63.237.63.184', '63.237.63.191', 1072512952, 1072512959, 'CA', 'Canada'), +('63.237.63.192', '63.239.206.175', 1072512960, 1072680623, 'US', 'United States'), +('63.239.206.176', '63.239.206.183', 1072680624, 1072680631, 'CA', 'Canada'), +('63.239.206.184', '63.240.17.39', 1072680632, 1072697639, 'US', 'United States'), +('63.240.17.40', '63.240.17.47', 1072697640, 1072697647, 'IL', 'Israel'), +('63.240.17.48', '63.240.54.255', 1072697648, 1072707327, 'US', 'United States'), +('63.240.55.0', '63.240.55.255', 1072707328, 1072707583, 'IN', 'India'), +('63.240.56.0', '63.240.66.183', 1072707584, 1072710327, 'US', 'United States'), +('63.240.66.184', '63.240.66.191', 1072710328, 1072710335, 'DE', 'Germany'), +('63.240.66.192', '63.240.73.255', 1072710336, 1072712191, 'US', 'United States'), +('63.240.74.0', '63.240.74.31', 1072712192, 1072712223, 'DE', 'Germany'), +('63.240.74.32', '63.240.131.255', 1072712224, 1072727039, 'US', 'United States'), +('63.240.132.0', '63.240.132.7', 1072727040, 1072727047, 'JM', 'Jamaica'), +('63.240.132.8', '63.240.132.175', 1072727048, 1072727215, 'US', 'United States'), +('63.240.132.176', '63.240.132.183', 1072727216, 1072727223, 'JM', 'Jamaica'), +('63.240.132.184', '63.240.133.255', 1072727224, 1072727551, 'US', 'United States'), +('63.240.134.0', '63.240.134.15', 1072727552, 1072727567, 'DE', 'Germany'), +('63.240.134.16', '63.240.160.47', 1072727568, 1072734255, 'US', 'United States'), +('63.240.160.48', '63.240.160.55', 1072734256, 1072734263, 'DE', 'Germany'), +('63.240.160.56', '63.240.170.135', 1072734264, 1072736903, 'US', 'United States'), +('63.240.170.136', '63.240.170.143', 1072736904, 1072736911, 'IE', 'Ireland'), +('63.240.170.144', '63.241.73.159', 1072736912, 1072777631, 'US', 'United States'), +('63.241.73.160', '63.241.73.175', 1072777632, 1072777647, 'TW', 'Taiwan'), +('63.241.73.176', '63.243.127.255', 1072777648, 1072922623, 'US', 'United States'), +('63.243.128.0', '63.243.128.255', 1072922624, 1072922879, 'PH', 'Philippines'), +('63.243.129.0', '63.243.129.255', 1072922880, 1072923135, 'PK', 'Pakistan'), +('63.243.130.0', '63.243.130.255', 1072923136, 1072923391, 'CA', 'Canada'), +('63.243.131.0', '63.243.132.255', 1072923392, 1072923903, 'US', 'United States'), +('63.243.133.0', '63.243.133.255', 1072923904, 1072924159, 'CA', 'Canada'), +('63.243.134.0', '63.243.135.255', 1072924160, 1072924671, 'HT', 'Haiti'), +('63.243.136.0', '63.243.136.255', 1072924672, 1072924927, 'CA', 'Canada'), +('63.243.137.0', '63.243.137.255', 1072924928, 1072925183, 'US', 'United States'), +('63.243.138.0', '63.243.141.255', 1072925184, 1072926207, 'CA', 'Canada'), +('63.243.142.0', '63.243.143.7', 1072926208, 1072926471, 'US', 'United States'), +('63.243.143.8', '63.243.143.63', 1072926472, 1072926527, 'CA', 'Canada'), +('63.243.143.64', '63.243.143.127', 1072926528, 1072926591, 'US', 'United States'), +('63.243.143.128', '63.243.143.191', 1072926592, 1072926655, 'LC', 'Saint Lucia'), +('63.243.143.192', '63.243.143.255', 1072926656, 1072926719, 'CA', 'Canada'), +('63.243.144.0', '63.243.144.255', 1072926720, 1072926975, 'PH', 'Philippines'), +('63.243.145.0', '63.243.146.255', 1072926976, 1072927487, 'CA', 'Canada'), +('63.243.147.0', '63.243.147.255', 1072927488, 1072927743, 'US', 'United States'), +('63.243.148.0', '63.243.149.47', 1072927744, 1072928047, 'CA', 'Canada'), +('63.243.149.48', '63.243.149.63', 1072928048, 1072928063, 'IE', 'Ireland'), +('63.243.149.64', '63.243.149.95', 1072928064, 1072928095, 'US', 'United States'), +('63.243.149.96', '63.243.149.127', 1072928096, 1072928127, 'CA', 'Canada'), +('63.243.149.128', '63.243.149.255', 1072928128, 1072928255, 'US', 'United States'), +('63.243.150.0', '63.243.150.7', 1072928256, 1072928263, 'CA', 'Canada'), +('63.243.150.8', '63.243.150.31', 1072928264, 1072928287, 'AF', 'Afghanistan'), +('63.243.150.32', '63.243.150.39', 1072928288, 1072928295, 'CA', 'Canada'), +('63.243.150.40', '63.243.150.47', 1072928296, 1072928303, 'US', 'United States'), +('63.243.150.48', '63.243.150.63', 1072928304, 1072928319, 'CA', 'Canada'), +('63.243.150.64', '63.243.150.191', 1072928320, 1072928447, 'US', 'United States'), +('63.243.150.192', '63.243.154.255', 1072928448, 1072929535, 'CA', 'Canada'), +('63.243.155.0', '63.243.155.255', 1072929536, 1072929791, 'US', 'United States'), +('63.243.156.0', '63.243.156.255', 1072929792, 1072930047, 'CA', 'Canada'), +('63.243.157.0', '63.243.157.255', 1072930048, 1072930303, 'US', 'United States'), +('63.243.158.0', '63.243.160.255', 1072930304, 1072931071, 'CA', 'Canada'), +('63.243.161.0', '63.243.161.255', 1072931072, 1072931327, 'US', 'United States'), +('63.243.162.0', '63.243.162.255', 1072931328, 1072931583, 'CA', 'Canada'), +('63.243.163.0', '63.243.163.255', 1072931584, 1072931839, 'SY', 'Syrian Arab Republic'), +('63.243.164.0', '63.243.166.255', 1072931840, 1072932607, 'CA', 'Canada'), +('63.243.167.0', '63.243.167.255', 1072932608, 1072932863, 'NG', 'Nigeria'), +('63.243.168.0', '63.243.173.255', 1072932864, 1072934399, 'CA', 'Canada'), +('63.243.174.0', '63.243.175.127', 1072934400, 1072934783, 'US', 'United States'), +('63.243.175.128', '63.243.175.191', 1072934784, 1072934847, 'AU', 'Australia'), +('63.243.175.192', '63.243.175.223', 1072934848, 1072934879, 'CA', 'Canada'), +('63.243.175.224', '63.243.175.255', 1072934880, 1072934911, 'TW', 'Taiwan'), +('63.243.176.0', '63.243.176.31', 1072934912, 1072934943, 'CA', 'Canada'), +('63.243.176.32', '63.243.176.63', 1072934944, 1072934975, 'PH', 'Philippines'), +('63.243.176.64', '63.243.176.223', 1072934976, 1072935135, 'US', 'United States'), +('63.243.176.224', '63.243.176.247', 1072935136, 1072935159, 'CA', 'Canada'), +('63.243.176.248', '63.243.176.255', 1072935160, 1072935167, 'US', 'United States'), +('63.243.177.0', '63.243.178.255', 1072935168, 1072935679, 'CA', 'Canada'), +('63.243.179.0', '63.243.179.127', 1072935680, 1072935807, 'PH', 'Philippines'), +('63.243.179.128', '63.243.179.191', 1072935808, 1072935871, 'CA', 'Canada'), +('63.243.179.192', '63.243.179.255', 1072935872, 1072935935, 'US', 'United States'), +('63.243.180.0', '63.243.180.255', 1072935936, 1072936191, 'CA', 'Canada'), +('63.243.181.0', '63.243.181.255', 1072936192, 1072936447, 'US', 'United States'), +('63.243.182.0', '63.243.183.255', 1072936448, 1072936959, 'PH', 'Philippines'), +('63.243.184.0', '63.243.184.255', 1072936960, 1072937215, 'US', 'United States'), +('63.243.185.0', '63.243.185.255', 1072937216, 1072937471, 'IR', 'Iran, Islamic Republic of'), +('63.243.186.0', '63.243.186.255', 1072937472, 1072937727, 'CA', 'Canada'), +('63.243.187.0', '63.243.187.255', 1072937728, 1072937983, 'US', 'United States'), +('63.243.188.0', '63.243.188.255', 1072937984, 1072938239, 'CA', 'Canada'), +('63.243.189.0', '63.243.189.255', 1072938240, 1072938495, 'VG', 'Virgin Islands, British'), +('63.243.190.0', '63.243.190.255', 1072938496, 1072938751, 'CA', 'Canada'), +('63.243.191.0', '63.243.195.255', 1072938752, 1072940031, 'US', 'United States'), +('63.243.196.0', '63.243.255.255', 1072940032, 1072955391, 'CA', 'Canada'), +('63.244.0.0', '63.245.7.255', 1072955392, 1073022975, 'US', 'United States'), +('63.245.8.0', '63.245.18.255', 1073022976, 1073025791, 'HN', 'Honduras'), +('63.245.19.0', '63.245.19.255', 1073025792, 1073026047, 'NI', 'Nicaragua'), +('63.245.20.0', '63.245.20.255', 1073026048, 1073026303, 'US', 'United States'), +('63.245.21.0', '63.245.21.127', 1073026304, 1073026431, 'DO', 'Dominican Republic'), +('63.245.21.128', '63.245.23.255', 1073026432, 1073027071, 'US', 'United States'), +('63.245.24.0', '63.245.28.255', 1073027072, 1073028351, 'NI', 'Nicaragua'), +('63.245.29.0', '63.245.29.255', 1073028352, 1073028607, 'US', 'United States'), +('63.245.30.0', '63.245.31.255', 1073028608, 1073029119, 'GD', 'Grenada'), +('63.245.32.0', '63.245.39.255', 1073029120, 1073031167, 'PR', 'Puerto Rico'), +('63.245.40.0', '63.245.40.63', 1073031168, 1073031231, 'US', 'United States'), +('63.245.40.64', '63.245.40.95', 1073031232, 1073031263, 'AN', 'Netherlands Antilles'), +('63.245.40.96', '63.245.40.255', 1073031264, 1073031423, 'US', 'United States'), +('63.245.41.0', '63.245.42.255', 1073031424, 1073031935, 'AN', 'Netherlands Antilles'), +('63.245.43.0', '63.245.47.255', 1073031936, 1073033215, 'US', 'United States'), +('63.245.48.0', '63.245.55.255', 1073033216, 1073035263, 'AN', 'Netherlands Antilles'), +('63.245.56.0', '63.245.60.255', 1073035264, 1073036543, 'US', 'United States'), +('63.245.61.0', '63.245.62.255', 1073036544, 1073037055, 'MX', 'Mexico'), +('63.245.63.0', '63.245.63.255', 1073037056, 1073037311, 'AN', 'Netherlands Antilles'), +('63.245.64.0', '63.245.65.255', 1073037312, 1073037823, 'CO', 'Colombia'), +('63.245.66.0', '63.245.67.255', 1073037824, 1073038335, 'GD', 'Grenada'), +('63.245.68.0', '63.245.71.255', 1073038336, 1073039359, 'US', 'United States'), +('63.245.72.0', '63.245.79.255', 1073039360, 1073041407, 'GT', 'Guatemala'), +('63.245.80.0', '63.245.87.255', 1073041408, 1073043455, 'CO', 'Colombia'), +('63.245.88.0', '63.245.95.255', 1073043456, 1073045503, 'US', 'United States'), +('63.245.96.0', '63.245.103.255', 1073045504, 1073047551, 'CO', 'Colombia'), +('63.245.104.0', '63.245.111.255', 1073047552, 1073049599, 'PR', 'Puerto Rico'), +('63.245.112.0', '63.245.127.255', 1073049600, 1073053695, 'BS', 'Bahamas'), +('63.245.128.0', '63.246.14.221', 1073053696, 1073090269, 'US', 'United States'), +('63.246.14.222', '63.246.14.252', 1073090270, 1073090300, 'PE', 'Peru'), +('63.246.14.253', '63.246.19.69', 1073090301, 1073091397, 'US', 'United States'), +('63.246.19.70', '63.246.19.79', 1073091398, 1073091407, 'CH', 'Switzerland'), +('63.246.19.80', '63.246.22.239', 1073091408, 1073092335, 'US', 'United States'), +('63.246.22.240', '63.246.22.255', 1073092336, 1073092351, 'CA', 'Canada'), +('63.246.23.0', '63.246.28.14', 1073092352, 1073093646, 'US', 'United States'), +('63.246.28.15', '63.246.28.22', 1073093647, 1073093654, 'PE', 'Peru'), +('63.246.28.23', '63.246.31.157', 1073093655, 1073094557, 'US', 'United States'), +('63.246.31.158', '63.246.31.170', 1073094558, 1073094570, 'IT', 'Italy'), +('63.246.31.171', '63.250.95.255', 1073094571, 1073373183, 'US', 'United States'), +('63.250.96.0', '63.250.127.255', 1073373184, 1073381375, 'CA', 'Canada'), +('63.250.128.0', '63.250.128.23', 1073381376, 1073381399, 'US', 'United States'), +('63.250.128.24', '63.250.128.87', 1073381400, 1073381463, 'NL', 'Netherlands'), +('63.250.128.88', '63.250.128.95', 1073381464, 1073381471, 'US', 'United States'), +('63.250.128.96', '63.250.129.255', 1073381472, 1073381887, 'NL', 'Netherlands'), +('63.250.130.0', '63.250.133.31', 1073381888, 1073382687, 'US', 'United States'), +('63.250.133.32', '63.250.133.39', 1073382688, 1073382695, 'CA', 'Canada'), +('63.250.133.40', '63.250.133.159', 1073382696, 1073382815, 'US', 'United States'), +('63.250.133.160', '63.250.133.191', 1073382816, 1073382847, 'CR', 'Costa Rica'), +('63.250.133.192', '63.250.133.199', 1073382848, 1073382855, 'US', 'United States'), +('63.250.133.200', '63.250.133.207', 1073382856, 1073382863, 'BR', 'Brazil'), +('63.250.133.208', '63.250.133.223', 1073382864, 1073382879, 'US', 'United States'), +('63.250.133.224', '63.250.133.255', 1073382880, 1073382911, 'AR', 'Argentina'), +('63.250.134.0', '63.250.134.47', 1073382912, 1073382959, 'US', 'United States'), +('63.250.134.48', '63.250.134.63', 1073382960, 1073382975, 'CA', 'Canada'), +('63.250.134.64', '63.250.136.95', 1073382976, 1073383519, 'US', 'United States'), +('63.250.136.96', '63.250.136.127', 1073383520, 1073383551, 'SV', 'El Salvador'), +('63.250.136.128', '63.250.137.47', 1073383552, 1073383727, 'US', 'United States'), +('63.250.137.48', '63.250.137.55', 1073383728, 1073383735, 'CA', 'Canada'), +('63.250.137.56', '63.250.137.159', 1073383736, 1073383839, 'US', 'United States'), +('63.250.137.160', '63.250.137.191', 1073383840, 1073383871, 'VE', 'Venezuela'), +('63.250.137.192', '63.250.138.255', 1073383872, 1073384191, 'US', 'United States'), +('63.250.139.0', '63.250.139.31', 1073384192, 1073384223, 'BR', 'Brazil'), +('63.250.139.32', '63.250.139.63', 1073384224, 1073384255, 'US', 'United States'), +('63.250.139.64', '63.250.139.95', 1073384256, 1073384287, 'CA', 'Canada'), +('63.250.139.96', '63.250.139.103', 1073384288, 1073384295, 'BR', 'Brazil'), +('63.250.139.104', '63.250.140.63', 1073384296, 1073384511, 'US', 'United States'), +('63.250.140.64', '63.250.140.127', 1073384512, 1073384575, 'CA', 'Canada'), +('63.250.140.128', '63.250.140.159', 1073384576, 1073384607, 'US', 'United States'), +('63.250.140.160', '63.250.140.191', 1073384608, 1073384639, 'BR', 'Brazil'), +('63.250.140.192', '63.250.141.7', 1073384640, 1073384711, 'US', 'United States'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('63.250.141.8', '63.250.141.15', 1073384712, 1073384719, 'CL', 'Chile'), +('63.250.141.16', '63.250.141.71', 1073384720, 1073384775, 'US', 'United States'), +('63.250.141.72', '63.250.141.79', 1073384776, 1073384783, 'CA', 'Canada'), +('63.250.141.80', '63.250.141.175', 1073384784, 1073384879, 'US', 'United States'), +('63.250.141.176', '63.250.141.183', 1073384880, 1073384887, 'CA', 'Canada'), +('63.250.141.184', '63.250.142.127', 1073384888, 1073385087, 'US', 'United States'), +('63.250.142.128', '63.250.142.135', 1073385088, 1073385095, 'CA', 'Canada'), +('63.250.142.136', '63.250.142.191', 1073385096, 1073385151, 'US', 'United States'), +('63.250.142.192', '63.250.142.223', 1073385152, 1073385183, 'BR', 'Brazil'), +('63.250.142.224', '63.250.143.63', 1073385184, 1073385279, 'US', 'United States'), +('63.250.143.64', '63.250.143.95', 1073385280, 1073385311, 'BR', 'Brazil'), +('63.250.143.96', '63.250.160.7', 1073385312, 1073389575, 'US', 'United States'), +('63.250.160.8', '63.250.160.15', 1073389576, 1073389583, 'CA', 'Canada'), +('63.250.160.16', '63.250.160.31', 1073389584, 1073389599, 'US', 'United States'), +('63.250.160.32', '63.250.160.63', 1073389600, 1073389631, 'GB', 'United Kingdom'), +('63.250.160.64', '63.250.160.215', 1073389632, 1073389783, 'US', 'United States'), +('63.250.160.216', '63.250.160.223', 1073389784, 1073389791, 'CL', 'Chile'), +('63.250.160.224', '63.250.162.127', 1073389792, 1073390207, 'US', 'United States'), +('63.250.162.128', '63.250.162.135', 1073390208, 1073390215, 'CA', 'Canada'), +('63.250.162.136', '63.250.162.191', 1073390216, 1073390271, 'US', 'United States'), +('63.250.162.192', '63.250.162.223', 1073390272, 1073390303, 'CA', 'Canada'), +('63.250.162.224', '63.250.176.223', 1073390304, 1073393887, 'US', 'United States'), +('63.250.176.224', '63.250.176.231', 1073393888, 1073393895, 'CO', 'Colombia'), +('63.250.176.232', '63.250.176.247', 1073393896, 1073393911, 'US', 'United States'), +('63.250.176.248', '63.250.176.255', 1073393912, 1073393919, 'CO', 'Colombia'), +('63.250.177.0', '63.250.178.15', 1073393920, 1073394191, 'US', 'United States'), +('63.250.178.16', '63.250.178.31', 1073394192, 1073394207, 'MX', 'Mexico'), +('63.250.178.32', '63.250.178.63', 1073394208, 1073394239, 'CA', 'Canada'), +('63.250.178.64', '63.250.178.71', 1073394240, 1073394247, 'MX', 'Mexico'), +('63.250.178.72', '63.250.178.79', 1073394248, 1073394255, 'US', 'United States'), +('63.250.178.80', '63.250.178.95', 1073394256, 1073394271, 'MX', 'Mexico'), +('63.250.178.96', '63.250.178.103', 1073394272, 1073394279, 'US', 'United States'), +('63.250.178.104', '63.250.178.111', 1073394280, 1073394287, 'MX', 'Mexico'), +('63.250.178.112', '63.250.178.119', 1073394288, 1073394295, 'US', 'United States'), +('63.250.178.120', '63.250.178.127', 1073394296, 1073394303, 'MX', 'Mexico'), +('63.250.178.128', '63.250.178.135', 1073394304, 1073394311, 'AR', 'Argentina'), +('63.250.178.136', '63.250.179.7', 1073394312, 1073394439, 'US', 'United States'), +('63.250.179.8', '63.250.179.31', 1073394440, 1073394463, 'MX', 'Mexico'), +('63.250.179.32', '63.250.179.63', 1073394464, 1073394495, 'US', 'United States'), +('63.250.179.64', '63.250.179.71', 1073394496, 1073394503, 'MX', 'Mexico'), +('63.250.179.72', '63.250.179.111', 1073394504, 1073394543, 'US', 'United States'), +('63.250.179.112', '63.250.179.127', 1073394544, 1073394559, 'MX', 'Mexico'), +('63.250.179.128', '63.250.179.159', 1073394560, 1073394591, 'US', 'United States'), +('63.250.179.160', '63.250.179.191', 1073394592, 1073394623, 'AF', 'Afghanistan'), +('63.250.179.192', '63.250.180.31', 1073394624, 1073394719, 'US', 'United States'), +('63.250.180.32', '63.250.180.63', 1073394720, 1073394751, 'BR', 'Brazil'), +('63.250.180.64', '63.250.180.79', 1073394752, 1073394767, 'AR', 'Argentina'), +('63.250.180.80', '63.250.180.111', 1073394768, 1073394799, 'US', 'United States'), +('63.250.180.112', '63.250.180.119', 1073394800, 1073394807, 'CA', 'Canada'), +('63.250.180.120', '63.250.181.239', 1073394808, 1073395183, 'US', 'United States'), +('63.250.181.240', '63.250.181.247', 1073395184, 1073395191, 'AR', 'Argentina'), +('63.250.181.248', '63.250.182.39', 1073395192, 1073395239, 'US', 'United States'), +('63.250.182.40', '63.250.182.47', 1073395240, 1073395247, 'BR', 'Brazil'), +('63.250.182.48', '63.250.182.191', 1073395248, 1073395391, 'US', 'United States'), +('63.250.182.192', '63.250.182.199', 1073395392, 1073395399, 'AF', 'Afghanistan'), +('63.250.182.200', '63.250.182.207', 1073395400, 1073395407, 'CA', 'Canada'), +('63.250.182.208', '63.250.182.223', 1073395408, 1073395423, 'PR', 'Puerto Rico'), +('63.250.182.224', '63.250.184.255', 1073395424, 1073395967, 'US', 'United States'), +('63.250.185.0', '63.250.185.31', 1073395968, 1073395999, 'BR', 'Brazil'), +('63.250.185.32', '63.250.185.223', 1073396000, 1073396191, 'US', 'United States'), +('63.250.185.224', '63.250.185.239', 1073396192, 1073396207, 'CA', 'Canada'), +('63.250.185.240', '63.250.185.247', 1073396208, 1073396215, 'BR', 'Brazil'), +('63.250.185.248', '63.250.188.15', 1073396216, 1073396751, 'US', 'United States'), +('63.250.188.16', '63.250.188.95', 1073396752, 1073396831, 'BR', 'Brazil'), +('63.250.188.96', '63.250.188.127', 1073396832, 1073396863, 'US', 'United States'), +('63.250.188.128', '63.250.188.159', 1073396864, 1073396895, 'CA', 'Canada'), +('63.250.188.160', '63.250.188.175', 1073396896, 1073396911, 'US', 'United States'), +('63.250.188.176', '63.250.188.183', 1073396912, 1073396919, 'CA', 'Canada'), +('63.250.188.184', '63.250.188.191', 1073396920, 1073396927, 'BR', 'Brazil'), +('63.250.188.192', '63.250.188.199', 1073396928, 1073396935, 'VE', 'Venezuela'), +('63.250.188.200', '63.250.188.223', 1073396936, 1073396959, 'US', 'United States'), +('63.250.188.224', '63.250.188.255', 1073396960, 1073396991, 'CA', 'Canada'), +('63.250.189.0', '63.250.189.71', 1073396992, 1073397063, 'US', 'United States'), +('63.250.189.72', '63.250.189.79', 1073397064, 1073397071, 'BR', 'Brazil'), +('63.250.189.80', '63.251.44.151', 1073397072, 1073425559, 'US', 'United States'), +('63.251.44.152', '63.251.44.159', 1073425560, 1073425567, 'CA', 'Canada'), +('63.251.44.160', '63.251.48.127', 1073425568, 1073426559, 'US', 'United States'), +('63.251.48.128', '63.251.48.191', 1073426560, 1073426623, 'AU', 'Australia'), +('63.251.48.192', '63.251.83.191', 1073426624, 1073435583, 'US', 'United States'), +('63.251.83.192', '63.251.83.255', 1073435584, 1073435647, 'CA', 'Canada'), +('63.251.84.0', '63.251.93.255', 1073435648, 1073438207, 'US', 'United States'), +('63.251.94.0', '63.251.94.255', 1073438208, 1073438463, 'A2', 'Satellite Provider'), +('63.251.95.0', '63.251.135.223', 1073438464, 1073448927, 'US', 'United States'), +('63.251.135.224', '63.251.135.255', 1073448928, 1073448959, 'IL', 'Israel'), +('63.251.136.0', '63.251.141.159', 1073448960, 1073450399, 'US', 'United States'), +('63.251.141.160', '63.251.141.191', 1073450400, 1073450431, 'GB', 'United Kingdom'), +('63.251.141.192', '63.251.197.223', 1073450432, 1073464799, 'US', 'United States'), +('63.251.197.224', '63.251.197.255', 1073464800, 1073464831, 'IL', 'Israel'), +('63.251.198.0', '64.4.63.255', 1073464832, 1074020351, 'US', 'United States'), +('64.4.64.0', '64.4.95.255', 1074020352, 1074028543, 'CA', 'Canada'), +('64.4.96.0', '64.5.191.255', 1074028544, 1074118655, 'US', 'United States'), +('64.5.192.0', '64.5.199.255', 1074118656, 1074120703, 'CA', 'Canada'), +('64.5.200.0', '64.5.200.15', 1074120704, 1074120719, 'US', 'United States'), +('64.5.200.16', '64.5.200.255', 1074120720, 1074120959, 'CA', 'Canada'), +('64.5.201.0', '64.5.201.255', 1074120960, 1074121215, 'US', 'United States'), +('64.5.202.0', '64.5.206.175', 1074121216, 1074122415, 'CA', 'Canada'), +('64.5.206.176', '64.5.206.191', 1074122416, 1074122431, 'US', 'United States'), +('64.5.206.192', '64.5.216.255', 1074122432, 1074125055, 'CA', 'Canada'), +('64.5.217.0', '64.5.217.255', 1074125056, 1074125311, 'US', 'United States'), +('64.5.218.0', '64.5.223.255', 1074125312, 1074126847, 'CA', 'Canada'), +('64.5.224.0', '64.5.225.255', 1074126848, 1074127359, 'US', 'United States'), +('64.5.226.0', '64.5.230.127', 1074127360, 1074128511, 'CA', 'Canada'), +('64.5.230.128', '64.5.230.191', 1074128512, 1074128575, 'US', 'United States'), +('64.5.230.192', '64.5.239.255', 1074128576, 1074130943, 'CA', 'Canada'), +('64.5.240.0', '64.5.240.255', 1074130944, 1074131199, 'US', 'United States'), +('64.5.241.0', '64.5.255.255', 1074131200, 1074135039, 'CA', 'Canada'), +('64.6.0.0', '64.6.191.255', 1074135040, 1074184191, 'US', 'United States'), +('64.6.192.0', '64.6.207.255', 1074184192, 1074188287, 'CA', 'Canada'), +('64.6.208.0', '64.7.111.255', 1074188288, 1074229247, 'US', 'United States'), +('64.7.112.0', '64.7.159.255', 1074229248, 1074241535, 'CA', 'Canada'), +('64.7.160.0', '64.7.192.63', 1074241536, 1074249791, 'US', 'United States'), +('64.7.192.64', '64.7.192.79', 1074249792, 1074249807, 'BB', 'Barbados'), +('64.7.192.80', '64.10.0.255', 1074249808, 1074397439, 'US', 'United States'), +('64.10.1.0', '64.10.7.63', 1074397440, 1074399039, 'CA', 'Canada'), +('64.10.7.64', '64.10.7.255', 1074399040, 1074399231, 'US', 'United States'), +('64.10.8.0', '64.10.43.127', 1074399232, 1074408319, 'CA', 'Canada'), +('64.10.43.128', '64.10.43.255', 1074408320, 1074408447, 'US', 'United States'), +('64.10.44.0', '64.10.254.255', 1074408448, 1074462463, 'CA', 'Canada'), +('64.10.255.0', '64.11.3.255', 1074462464, 1074463743, 'US', 'United States'), +('64.11.4.0', '64.11.120.255', 1074463744, 1074493695, 'CA', 'Canada'), +('64.11.121.0', '64.11.121.127', 1074493696, 1074493823, 'US', 'United States'), +('64.11.121.128', '64.11.124.255', 1074493824, 1074494719, 'CA', 'Canada'), +('64.11.125.0', '64.11.128.255', 1074494720, 1074495743, 'US', 'United States'), +('64.11.129.0', '64.11.197.255', 1074495744, 1074513407, 'CA', 'Canada'), +('64.11.198.0', '64.14.50.239', 1074513408, 1074672367, 'US', 'United States'), +('64.14.50.240', '64.14.50.255', 1074672368, 1074672383, 'DK', 'Denmark'), +('64.14.51.0', '64.14.52.31', 1074672384, 1074672671, 'US', 'United States'), +('64.14.52.32', '64.14.52.63', 1074672672, 1074672703, 'IN', 'India'), +('64.14.52.64', '64.14.53.47', 1074672704, 1074672943, 'US', 'United States'), +('64.14.53.48', '64.14.53.63', 1074672944, 1074672959, 'DK', 'Denmark'), +('64.14.53.64', '64.14.55.255', 1074672960, 1074673663, 'US', 'United States'), +('64.14.56.0', '64.14.56.15', 1074673664, 1074673679, 'CY', 'Cyprus'), +('64.14.56.16', '64.14.62.111', 1074673680, 1074675311, 'US', 'United States'), +('64.14.62.112', '64.14.62.127', 1074675312, 1074675327, 'NO', 'Norway'), +('64.14.62.128', '64.14.71.255', 1074675328, 1074677759, 'US', 'United States'), +('64.14.72.0', '64.14.73.255', 1074677760, 1074678271, 'BG', 'Bulgaria'), +('64.14.74.0', '64.14.83.47', 1074678272, 1074680623, 'US', 'United States'), +('64.14.83.48', '64.14.83.63', 1074680624, 1074680639, 'CA', 'Canada'), +('64.14.83.64', '64.14.83.127', 1074680640, 1074680703, 'US', 'United States'), +('64.14.83.128', '64.14.83.143', 1074680704, 1074680719, 'IL', 'Israel'), +('64.14.83.144', '64.14.85.175', 1074680720, 1074681263, 'US', 'United States'), +('64.14.85.176', '64.14.85.191', 1074681264, 1074681279, 'CA', 'Canada'), +('64.14.85.192', '64.14.85.255', 1074681280, 1074681343, 'US', 'United States'), +('64.14.86.0', '64.14.86.15', 1074681344, 1074681359, 'CA', 'Canada'), +('64.14.86.16', '64.14.91.63', 1074681360, 1074682687, 'US', 'United States'), +('64.14.91.64', '64.14.91.127', 1074682688, 1074682751, 'CA', 'Canada'), +('64.14.91.128', '64.14.92.143', 1074682752, 1074683023, 'US', 'United States'), +('64.14.92.144', '64.14.92.159', 1074683024, 1074683039, 'CA', 'Canada'), +('64.14.92.160', '64.14.95.159', 1074683040, 1074683807, 'US', 'United States'), +('64.14.95.160', '64.14.95.191', 1074683808, 1074683839, 'CA', 'Canada'), +('64.14.95.192', '64.14.123.79', 1074683840, 1074690895, 'US', 'United States'), +('64.14.123.80', '64.14.123.95', 1074690896, 1074690911, 'AR', 'Argentina'), +('64.14.123.96', '64.14.123.127', 1074690912, 1074690943, 'US', 'United States'), +('64.14.123.128', '64.14.123.191', 1074690944, 1074691007, 'AR', 'Argentina'), +('64.14.123.192', '64.14.124.63', 1074691008, 1074691135, 'US', 'United States'), +('64.14.124.64', '64.14.124.127', 1074691136, 1074691199, 'AR', 'Argentina'), +('64.14.124.128', '64.14.143.127', 1074691200, 1074696063, 'US', 'United States'), +('64.14.143.128', '64.14.143.159', 1074696064, 1074696095, 'AU', 'Australia'), +('64.14.143.160', '64.14.165.15', 1074696096, 1074701583, 'US', 'United States'), +('64.14.165.16', '64.14.165.23', 1074701584, 1074701591, 'CA', 'Canada'), +('64.14.165.24', '64.14.165.31', 1074701592, 1074701599, 'US', 'United States'), +('64.14.165.32', '64.14.165.63', 1074701600, 1074701631, 'CA', 'Canada'), +('64.14.165.64', '64.14.181.127', 1074701632, 1074705791, 'US', 'United States'), +('64.14.181.128', '64.14.181.135', 1074705792, 1074705799, 'IL', 'Israel'), +('64.14.181.136', '64.14.181.223', 1074705800, 1074705887, 'US', 'United States'), +('64.14.181.224', '64.14.181.239', 1074705888, 1074705903, 'IL', 'Israel'), +('64.14.181.240', '64.14.182.255', 1074705904, 1074706175, 'US', 'United States'), +('64.14.183.0', '64.14.183.127', 1074706176, 1074706303, 'IL', 'Israel'), +('64.14.183.128', '64.14.183.191', 1074706304, 1074706367, 'US', 'United States'), +('64.14.183.192', '64.14.183.255', 1074706368, 1074706431, 'GB', 'United Kingdom'), +('64.14.184.0', '64.14.184.247', 1074706432, 1074706679, 'US', 'United States'), +('64.14.184.248', '64.14.184.255', 1074706680, 1074706687, 'GB', 'United Kingdom'), +('64.14.185.0', '64.14.189.63', 1074706688, 1074707775, 'US', 'United States'), +('64.14.189.64', '64.14.189.127', 1074707776, 1074707839, 'GB', 'United Kingdom'), +('64.14.189.128', '64.14.189.255', 1074707840, 1074707967, 'US', 'United States'), +('64.14.190.0', '64.14.190.255', 1074707968, 1074708223, 'GB', 'United Kingdom'), +('64.14.191.0', '64.14.193.255', 1074708224, 1074708991, 'US', 'United States'), +('64.14.194.0', '64.14.194.255', 1074708992, 1074709247, 'PH', 'Philippines'), +('64.14.195.0', '64.14.201.255', 1074709248, 1074711039, 'US', 'United States'), +('64.14.202.0', '64.14.202.15', 1074711040, 1074711055, 'IN', 'India'), +('64.14.202.16', '64.14.224.7', 1074711056, 1074716679, 'US', 'United States'), +('64.14.224.8', '64.14.224.15', 1074716680, 1074716687, 'GB', 'United Kingdom'), +('64.14.224.16', '64.14.224.47', 1074716688, 1074716719, 'US', 'United States'), +('64.14.224.48', '64.14.224.63', 1074716720, 1074716735, 'GB', 'United Kingdom'), +('64.14.224.64', '64.14.226.63', 1074716736, 1074717247, 'US', 'United States'), +('64.14.226.64', '64.14.226.79', 1074717248, 1074717263, 'IT', 'Italy'), +('64.14.226.80', '64.15.31.255', 1074717264, 1074733055, 'US', 'United States'), +('64.15.32.0', '64.15.47.255', 1074733056, 1074737151, 'AU', 'Australia'), +('64.15.48.0', '64.15.79.255', 1074737152, 1074745343, 'CA', 'Canada'), +('64.15.80.0', '64.15.127.255', 1074745344, 1074757631, 'US', 'United States'), +('64.15.128.0', '64.15.159.255', 1074757632, 1074765823, 'CA', 'Canada'), +('64.15.160.0', '64.15.227.191', 1074765824, 1074783167, 'US', 'United States'), +('64.15.227.192', '64.15.227.223', 1074783168, 1074783199, 'CA', 'Canada'), +('64.15.227.224', '64.17.15.255', 1074783200, 1074860031, 'US', 'United States'), +('64.17.32.0', '64.17.61.31', 1074864128, 1074871583, 'US', 'United States'), +('64.17.61.32', '64.17.61.55', 1074871584, 1074871607, 'CA', 'Canada'), +('64.17.61.56', '64.18.63.255', 1074871608, 1074937855, 'US', 'United States'), +('64.18.64.0', '64.18.95.255', 1074937856, 1074946047, 'CA', 'Canada'), +('64.18.96.0', '64.18.159.255', 1074946048, 1074962431, 'US', 'United States'), +('64.18.160.0', '64.18.191.255', 1074962432, 1074970623, 'CA', 'Canada'), +('64.18.192.0', '64.25.159.255', 1074970624, 1075421183, 'US', 'United States'), +('64.25.160.0', '64.25.191.255', 1075421184, 1075429375, 'CA', 'Canada'), +('64.25.192.0', '64.26.127.255', 1075429376, 1075478527, 'US', 'United States'), +('64.26.128.0', '64.26.130.63', 1075478528, 1075479103, 'CA', 'Canada'), +('64.26.130.64', '64.26.130.71', 1075479104, 1075479111, 'GB', 'United Kingdom'), +('64.26.130.72', '64.26.130.95', 1075479112, 1075479135, 'CA', 'Canada'), +('64.26.130.96', '64.26.130.111', 1075479136, 1075479151, 'US', 'United States'), +('64.26.130.112', '64.26.130.239', 1075479152, 1075479279, 'CA', 'Canada'), +('64.26.130.240', '64.26.130.255', 1075479280, 1075479295, 'US', 'United States'), +('64.26.131.0', '64.26.132.55', 1075479296, 1075479607, 'CA', 'Canada'), +('64.26.132.56', '64.26.132.63', 1075479608, 1075479615, 'US', 'United States'), +('64.26.132.64', '64.26.135.143', 1075479616, 1075480463, 'CA', 'Canada'), +('64.26.135.144', '64.26.135.159', 1075480464, 1075480479, 'US', 'United States'), +('64.26.135.160', '64.26.137.143', 1075480480, 1075480975, 'CA', 'Canada'), +('64.26.137.144', '64.26.137.159', 1075480976, 1075480991, 'US', 'United States'), +('64.26.137.160', '64.26.139.255', 1075480992, 1075481599, 'CA', 'Canada'), +('64.26.140.0', '64.26.140.7', 1075481600, 1075481607, 'US', 'United States'), +('64.26.140.8', '64.26.141.191', 1075481608, 1075482047, 'CA', 'Canada'), +('64.26.141.192', '64.26.141.223', 1075482048, 1075482079, 'US', 'United States'), +('64.26.141.224', '64.26.145.71', 1075482080, 1075482951, 'CA', 'Canada'), +('64.26.145.72', '64.26.145.79', 1075482952, 1075482959, 'US', 'United States'), +('64.26.145.80', '64.26.148.255', 1075482960, 1075483903, 'CA', 'Canada'), +('64.26.149.0', '64.26.149.15', 1075483904, 1075483919, 'US', 'United States'), +('64.26.149.16', '64.26.149.143', 1075483920, 1075484047, 'CA', 'Canada'), +('64.26.149.144', '64.26.149.159', 1075484048, 1075484063, 'US', 'United States'), +('64.26.149.160', '64.26.150.103', 1075484064, 1075484263, 'CA', 'Canada'), +('64.26.150.104', '64.26.150.111', 1075484264, 1075484271, 'AU', 'Australia'), +('64.26.150.112', '64.26.150.127', 1075484272, 1075484287, 'CA', 'Canada'), +('64.26.150.128', '64.26.150.255', 1075484288, 1075484415, 'US', 'United States'), +('64.26.151.0', '64.26.191.255', 1075484416, 1075494911, 'CA', 'Canada'), +('64.26.192.0', '64.27.7.63', 1075494912, 1075513151, 'US', 'United States'), +('64.27.7.64', '64.27.7.95', 1075513152, 1075513183, 'KW', 'Kuwait'), +('64.27.7.96', '64.27.83.119', 1075513184, 1075532663, 'US', 'United States'), +('64.27.83.120', '64.27.83.129', 1075532664, 1075532673, 'IT', 'Italy'), +('64.27.83.130', '64.27.255.255', 1075532674, 1075576831, 'US', 'United States'), +('64.28.0.0', '64.28.0.135', 1075576832, 1075576967, 'NO', 'Norway'), +('64.28.0.136', '64.28.0.143', 1075576968, 1075576975, 'GB', 'United Kingdom'), +('64.28.0.144', '64.28.0.159', 1075576976, 1075576991, 'NO', 'Norway'), +('64.28.0.160', '64.28.0.191', 1075576992, 1075577023, 'GB', 'United Kingdom'), +('64.28.0.192', '64.28.0.235', 1075577024, 1075577067, 'NO', 'Norway'), +('64.28.0.236', '64.28.0.239', 1075577068, 1075577071, 'GB', 'United Kingdom'), +('64.28.0.240', '64.28.0.255', 1075577072, 1075577087, 'NO', 'Norway'), +('64.28.1.0', '64.28.1.15', 1075577088, 1075577103, 'GB', 'United Kingdom'), +('64.28.1.16', '64.28.1.183', 1075577104, 1075577271, 'NO', 'Norway'), +('64.28.1.184', '64.28.1.191', 1075577272, 1075577279, 'GB', 'United Kingdom'), +('64.28.1.192', '64.28.1.223', 1075577280, 1075577311, 'NO', 'Norway'), +('64.28.1.224', '64.28.2.255', 1075577312, 1075577599, 'GB', 'United Kingdom'), +('64.28.3.0', '64.28.3.175', 1075577600, 1075577775, 'NO', 'Norway'), +('64.28.3.176', '64.28.3.191', 1075577776, 1075577791, 'GB', 'United Kingdom'), +('64.28.3.192', '64.28.3.255', 1075577792, 1075577855, 'NO', 'Norway'), +('64.28.4.0', '64.28.4.255', 1075577856, 1075578111, 'GB', 'United Kingdom'), +('64.28.5.0', '64.28.6.255', 1075578112, 1075578623, 'NO', 'Norway'), +('64.28.7.0', '64.28.7.255', 1075578624, 1075578879, 'GB', 'United Kingdom'), +('64.28.8.0', '64.28.8.47', 1075578880, 1075578927, 'NO', 'Norway'), +('64.28.8.48', '64.28.8.63', 1075578928, 1075578943, 'GB', 'United Kingdom'), +('64.28.8.64', '64.28.8.127', 1075578944, 1075579007, 'NO', 'Norway'), +('64.28.8.128', '64.28.8.159', 1075579008, 1075579039, 'GB', 'United Kingdom'), +('64.28.8.160', '64.28.8.175', 1075579040, 1075579055, 'NO', 'Norway'), +('64.28.8.176', '64.28.8.179', 1075579056, 1075579059, 'GB', 'United Kingdom'), +('64.28.8.180', '64.28.11.99', 1075579060, 1075579747, 'NO', 'Norway'), +('64.28.11.100', '64.28.11.103', 1075579748, 1075579751, 'GB', 'United Kingdom'), +('64.28.11.104', '64.28.12.31', 1075579752, 1075579935, 'NO', 'Norway'), +('64.28.12.32', '64.28.12.39', 1075579936, 1075579943, 'GB', 'United Kingdom'), +('64.28.12.40', '64.28.12.79', 1075579944, 1075579983, 'NO', 'Norway'), +('64.28.12.80', '64.28.12.95', 1075579984, 1075579999, 'GB', 'United Kingdom'), +('64.28.12.96', '64.28.17.111', 1075580000, 1075581295, 'NO', 'Norway'), +('64.28.17.112', '64.28.17.127', 1075581296, 1075581311, 'NL', 'Netherlands'), +('64.28.17.128', '64.28.18.7', 1075581312, 1075581447, 'NO', 'Norway'), +('64.28.18.8', '64.28.18.15', 1075581448, 1075581455, 'NL', 'Netherlands'), +('64.28.18.16', '64.28.18.31', 1075581456, 1075581471, 'NO', 'Norway'), +('64.28.18.32', '64.28.18.39', 1075581472, 1075581479, 'NL', 'Netherlands'), +('64.28.18.40', '64.28.18.55', 1075581480, 1075581495, 'NO', 'Norway'), +('64.28.18.56', '64.28.18.59', 1075581496, 1075581499, 'NL', 'Netherlands'), +('64.28.18.60', '64.28.22.39', 1075581500, 1075582503, 'NO', 'Norway'), +('64.28.22.40', '64.28.22.47', 1075582504, 1075582511, 'NL', 'Netherlands'), +('64.28.22.48', '64.28.22.151', 1075582512, 1075582615, 'NO', 'Norway'), +('64.28.22.152', '64.28.22.159', 1075582616, 1075582623, 'NL', 'Netherlands'), +('64.28.22.160', '64.28.24.143', 1075582624, 1075583119, 'NO', 'Norway'), +('64.28.24.144', '64.28.24.147', 1075583120, 1075583123, 'NL', 'Netherlands'), +('64.28.24.148', '64.28.24.151', 1075583124, 1075583127, 'NO', 'Norway'), +('64.28.24.152', '64.28.24.159', 1075583128, 1075583135, 'NL', 'Netherlands'), +('64.28.24.160', '64.28.24.171', 1075583136, 1075583147, 'NO', 'Norway'), +('64.28.24.172', '64.28.24.175', 1075583148, 1075583151, 'NL', 'Netherlands'), +('64.28.24.176', '64.28.26.15', 1075583152, 1075583503, 'NO', 'Norway'), +('64.28.26.16', '64.28.26.31', 1075583504, 1075583519, 'NL', 'Netherlands'), +('64.28.26.32', '64.28.26.63', 1075583520, 1075583551, 'NO', 'Norway'), +('64.28.26.64', '64.28.26.79', 1075583552, 1075583567, 'NL', 'Netherlands'), +('64.28.26.80', '64.28.26.95', 1075583568, 1075583583, 'NO', 'Norway'), +('64.28.26.96', '64.28.26.103', 1075583584, 1075583591, 'NL', 'Netherlands'), +('64.28.26.104', '64.28.26.255', 1075583592, 1075583743, 'NO', 'Norway'), +('64.28.27.0', '64.28.27.15', 1075583744, 1075583759, 'NL', 'Netherlands'), +('64.28.27.16', '64.28.27.39', 1075583760, 1075583783, 'NO', 'Norway'), +('64.28.27.40', '64.28.27.47', 1075583784, 1075583791, 'NL', 'Netherlands'), +('64.28.27.48', '64.28.27.159', 1075583792, 1075583903, 'NO', 'Norway'), +('64.28.27.160', '64.28.27.167', 1075583904, 1075583911, 'NL', 'Netherlands'), +('64.28.27.168', '64.28.28.71', 1075583912, 1075584071, 'NO', 'Norway'), +('64.28.28.72', '64.28.28.95', 1075584072, 1075584095, 'NL', 'Netherlands'), +('64.28.28.96', '64.28.29.103', 1075584096, 1075584359, 'NO', 'Norway'), +('64.28.29.104', '64.28.29.111', 1075584360, 1075584367, 'NL', 'Netherlands'), +('64.28.29.112', '64.28.30.183', 1075584368, 1075584695, 'NO', 'Norway'), +('64.28.30.184', '64.28.30.199', 1075584696, 1075584711, 'NL', 'Netherlands'), +('64.28.30.200', '64.28.31.255', 1075584712, 1075585023, 'NO', 'Norway'), +('64.28.32.0', '64.28.66.239', 1075585024, 1075593967, 'US', 'United States'), +('64.28.66.240', '64.28.66.255', 1075593968, 1075593983, 'CA', 'Canada'), +('64.28.67.0', '64.28.70.223', 1075593984, 1075594975, 'US', 'United States'), +('64.28.70.224', '64.28.70.239', 1075594976, 1075594991, 'CA', 'Canada'), +('64.28.70.240', '64.28.72.79', 1075594992, 1075595343, 'US', 'United States'), +('64.28.72.80', '64.28.72.95', 1075595344, 1075595359, 'CA', 'Canada'), +('64.28.72.96', '64.28.74.255', 1075595360, 1075596031, 'US', 'United States'), +('64.28.75.0', '64.28.75.15', 1075596032, 1075596047, 'CA', 'Canada'), +('64.28.75.16', '64.28.78.31', 1075596048, 1075596831, 'US', 'United States'), +('64.28.78.32', '64.28.78.47', 1075596832, 1075596847, 'CA', 'Canada'), +('64.28.78.48', '64.28.78.223', 1075596848, 1075597023, 'US', 'United States'), +('64.28.78.224', '64.28.78.239', 1075597024, 1075597039, 'CA', 'Canada'), +('64.28.78.240', '64.28.79.111', 1075597040, 1075597167, 'US', 'United States'), +('64.28.79.112', '64.28.79.127', 1075597168, 1075597183, 'CA', 'Canada'), +('64.28.79.128', '64.28.80.63', 1075597184, 1075597375, 'US', 'United States'), +('64.28.80.64', '64.28.80.95', 1075597376, 1075597407, 'CA', 'Canada'), +('64.28.80.96', '64.28.80.127', 1075597408, 1075597439, 'IL', 'Israel'), +('64.28.80.128', '64.28.80.239', 1075597440, 1075597551, 'US', 'United States'), +('64.28.80.240', '64.28.81.31', 1075597552, 1075597599, 'CA', 'Canada'), +('64.28.81.32', '64.28.84.31', 1075597600, 1075598367, 'US', 'United States'), +('64.28.84.32', '64.28.84.47', 1075598368, 1075598383, 'CA', 'Canada'), +('64.28.84.48', '64.28.86.95', 1075598384, 1075598943, 'US', 'United States'), +('64.28.86.96', '64.28.86.143', 1075598944, 1075598991, 'CA', 'Canada'), +('64.28.86.144', '64.28.86.159', 1075598992, 1075599007, 'US', 'United States'), +('64.28.86.160', '64.28.86.191', 1075599008, 1075599039, 'CA', 'Canada'), +('64.28.86.192', '64.28.88.111', 1075599040, 1075599471, 'US', 'United States'), +('64.28.88.112', '64.28.88.127', 1075599472, 1075599487, 'IL', 'Israel'), +('64.28.88.128', '64.28.90.95', 1075599488, 1075599967, 'US', 'United States'), +('64.28.90.96', '64.28.90.111', 1075599968, 1075599983, 'IE', 'Ireland'), +('64.28.90.112', '64.28.95.127', 1075599984, 1075601279, 'US', 'United States'), +('64.28.95.128', '64.28.95.143', 1075601280, 1075601295, 'CA', 'Canada'), +('64.28.95.144', '64.28.127.255', 1075601296, 1075609599, 'US', 'United States'), +('64.28.128.0', '64.28.143.255', 1075609600, 1075613695, 'TT', 'Trinidad and Tobago'), +('64.28.144.0', '64.32.63.255', 1075613696, 1075855359, 'US', 'United States'), +('64.32.64.0', '64.32.127.255', 1075855360, 1075871743, 'DO', 'Dominican Republic'), +('64.32.128.0', '64.33.255.255', 1075871744, 1075970047, 'US', 'United States'), +('64.34.0.0', '64.34.7.255', 1075970048, 1075972095, 'CA', 'Canada'), +('64.34.8.0', '64.34.8.255', 1075972096, 1075972351, 'GB', 'United Kingdom'), +('64.34.9.0', '64.34.14.255', 1075972352, 1075973887, 'US', 'United States'), +('64.34.15.0', '64.34.15.255', 1075973888, 1075974143, 'CA', 'Canada'), +('64.34.16.0', '64.34.23.255', 1075974144, 1075976191, 'US', 'United States'), +('64.34.24.0', '64.34.25.31', 1075976192, 1075976479, 'CA', 'Canada'), +('64.34.25.32', '64.34.25.95', 1075976480, 1075976543, 'US', 'United States'), +('64.34.25.96', '64.34.25.239', 1075976544, 1075976687, 'CA', 'Canada'), +('64.34.25.240', '64.34.25.247', 1075976688, 1075976695, 'US', 'United States'), +('64.34.25.248', '64.34.27.63', 1075976696, 1075977023, 'CA', 'Canada'), +('64.34.27.64', '64.34.27.79', 1075977024, 1075977039, 'US', 'United States'), +('64.34.27.80', '64.34.27.111', 1075977040, 1075977071, 'CA', 'Canada'), +('64.34.27.112', '64.34.27.127', 1075977072, 1075977087, 'US', 'United States'), +('64.34.27.128', '64.34.27.239', 1075977088, 1075977199, 'CA', 'Canada'), +('64.34.27.240', '64.34.27.255', 1075977200, 1075977215, 'US', 'United States'), +('64.34.28.0', '64.34.31.255', 1075977216, 1075978239, 'CA', 'Canada'), +('64.34.32.0', '64.34.37.31', 1075978240, 1075979551, 'US', 'United States'), +('64.34.37.32', '64.34.37.63', 1075979552, 1075979583, 'CA', 'Canada'), +('64.34.37.64', '64.34.41.31', 1075979584, 1075980575, 'US', 'United States'), +('64.34.41.32', '64.34.41.47', 1075980576, 1075980591, 'GB', 'United Kingdom'), +('64.34.41.48', '64.34.44.159', 1075980592, 1075981471, 'US', 'United States'), +('64.34.44.160', '64.34.44.175', 1075981472, 1075981487, 'CA', 'Canada'), +('64.34.44.176', '64.34.47.255', 1075981488, 1075982335, 'US', 'United States'), +('64.34.48.0', '64.34.48.255', 1075982336, 1075982591, 'CA', 'Canada'), +('64.34.49.0', '64.34.49.7', 1075982592, 1075982599, 'US', 'United States'), +('64.34.49.8', '64.34.49.15', 1075982600, 1075982607, 'NZ', 'New Zealand'), +('64.34.49.16', '64.34.49.31', 1075982608, 1075982623, 'US', 'United States'), +('64.34.49.32', '64.34.49.63', 1075982624, 1075982655, 'GB', 'United Kingdom'), +('64.34.49.64', '64.34.49.79', 1075982656, 1075982671, 'US', 'United States'), +('64.34.49.80', '64.34.49.95', 1075982672, 1075982687, 'CA', 'Canada'), +('64.34.49.96', '64.34.49.111', 1075982688, 1075982703, 'US', 'United States'), +('64.34.49.112', '64.34.49.127', 1075982704, 1075982719, 'CA', 'Canada'), +('64.34.49.128', '64.34.49.143', 1075982720, 1075982735, 'US', 'United States'), +('64.34.49.144', '64.34.49.159', 1075982736, 1075982751, 'CA', 'Canada'), +('64.34.49.160', '64.34.49.191', 1075982752, 1075982783, 'MX', 'Mexico'), +('64.34.49.192', '64.34.49.223', 1075982784, 1075982815, 'US', 'United States'), +('64.34.49.224', '64.34.49.239', 1075982816, 1075982831, 'CA', 'Canada'), +('64.34.49.240', '64.34.49.255', 1075982832, 1075982847, 'US', 'United States'), +('64.34.50.0', '64.34.51.79', 1075982848, 1075983183, 'CA', 'Canada'), +('64.34.51.80', '64.34.51.127', 1075983184, 1075983231, 'US', 'United States'), +('64.34.51.128', '64.34.55.255', 1075983232, 1075984383, 'CA', 'Canada'), +('64.34.56.0', '64.34.57.183', 1075984384, 1075984823, 'US', 'United States'), +('64.34.57.184', '64.34.57.191', 1075984824, 1075984831, 'CA', 'Canada'), +('64.34.57.192', '64.34.60.7', 1075984832, 1075985415, 'US', 'United States'), +('64.34.60.8', '64.34.60.15', 1075985416, 1075985423, 'CR', 'Costa Rica'), +('64.34.60.16', '64.34.61.255', 1075985424, 1075985919, 'US', 'United States'), +('64.34.62.0', '64.34.63.255', 1075985920, 1075986431, 'CA', 'Canada'), +('64.34.64.0', '64.34.64.255', 1075986432, 1075986687, 'US', 'United States'), +('64.34.65.0', '64.34.65.255', 1075986688, 1075986943, 'CA', 'Canada'), +('64.34.66.0', '64.34.66.255', 1075986944, 1075987199, 'US', 'United States'), +('64.34.67.0', '64.34.67.255', 1075987200, 1075987455, 'CA', 'Canada'), +('64.34.68.0', '64.34.68.255', 1075987456, 1075987711, 'US', 'United States'), +('64.34.69.0', '64.34.69.191', 1075987712, 1075987903, 'CA', 'Canada'), +('64.34.69.192', '64.34.69.207', 1075987904, 1075987919, 'US', 'United States'), +('64.34.69.208', '64.34.69.239', 1075987920, 1075987951, 'CA', 'Canada'), +('64.34.69.240', '64.34.70.255', 1075987952, 1075988223, 'US', 'United States'), +('64.34.71.0', '64.34.71.63', 1075988224, 1075988287, 'CA', 'Canada'), +('64.34.71.64', '64.34.71.95', 1075988288, 1075988319, 'US', 'United States'), +('64.34.71.96', '64.34.71.255', 1075988320, 1075988479, 'CA', 'Canada'), +('64.34.72.0', '64.34.72.255', 1075988480, 1075988735, 'US', 'United States'), +('64.34.73.0', '64.34.73.255', 1075988736, 1075988991, 'CA', 'Canada'), +('64.34.74.0', '64.34.74.255', 1075988992, 1075989247, 'US', 'United States'), +('64.34.75.0', '64.34.75.63', 1075989248, 1075989311, 'FI', 'Finland'), +('64.34.75.64', '64.34.75.111', 1075989312, 1075989359, 'CA', 'Canada'), +('64.34.75.112', '64.34.75.127', 1075989360, 1075989375, 'US', 'United States'), +('64.34.75.128', '64.34.77.31', 1075989376, 1075989791, 'CA', 'Canada'), +('64.34.77.32', '64.34.77.63', 1075989792, 1075989823, 'US', 'United States'), +('64.34.77.64', '64.34.77.87', 1075989824, 1075989847, 'CA', 'Canada'), +('64.34.77.88', '64.34.77.95', 1075989848, 1075989855, 'US', 'United States'), +('64.34.77.96', '64.34.79.255', 1075989856, 1075990527, 'CA', 'Canada'), +('64.34.80.0', '64.34.83.255', 1075990528, 1075991551, 'US', 'United States'), +('64.34.84.0', '64.34.84.31', 1075991552, 1075991583, 'CA', 'Canada'), +('64.34.84.32', '64.34.86.255', 1075991584, 1075992319, 'US', 'United States'), +('64.34.87.0', '64.34.87.127', 1075992320, 1075992447, 'GB', 'United Kingdom'), +('64.34.87.128', '64.34.89.255', 1075992448, 1075993087, 'US', 'United States'), +('64.34.90.0', '64.34.90.15', 1075993088, 1075993103, 'CA', 'Canada'), +('64.34.90.16', '64.34.97.127', 1075993104, 1075995007, 'US', 'United States'), +('64.34.97.128', '64.34.97.143', 1075995008, 1075995023, 'VG', 'Virgin Islands, British'), +('64.34.97.144', '64.34.97.167', 1075995024, 1075995047, 'US', 'United States'), +('64.34.97.168', '64.34.97.175', 1075995048, 1075995055, 'CA', 'Canada'), +('64.34.97.176', '64.34.97.255', 1075995056, 1075995135, 'US', 'United States'), +('64.34.98.0', '64.34.98.127', 1075995136, 1075995263, 'CA', 'Canada'), +('64.34.98.128', '64.34.98.159', 1075995264, 1075995295, 'US', 'United States'), +('64.34.98.160', '64.34.98.190', 1075995296, 1075995326, 'CA', 'Canada'), +('64.34.98.191', '64.34.98.207', 1075995327, 1075995343, 'US', 'United States'), +('64.34.98.208', '64.34.99.87', 1075995344, 1075995479, 'CA', 'Canada'), +('64.34.99.88', '64.34.99.95', 1075995480, 1075995487, 'US', 'United States'), +('64.34.99.96', '64.34.99.111', 1075995488, 1075995503, 'CA', 'Canada'), +('64.34.99.112', '64.34.99.127', 1075995504, 1075995519, 'MX', 'Mexico'), +('64.34.99.128', '64.34.99.175', 1075995520, 1075995567, 'CA', 'Canada'), +('64.34.99.176', '64.34.99.191', 1075995568, 1075995583, 'CN', 'China'), +('64.34.99.192', '64.34.99.255', 1075995584, 1075995647, 'CA', 'Canada'), +('64.34.100.0', '64.34.100.255', 1075995648, 1075995903, 'US', 'United States'), +('64.34.101.0', '64.34.103.255', 1075995904, 1075996671, 'CA', 'Canada'), +('64.34.104.0', '64.34.104.79', 1075996672, 1075996751, 'US', 'United States'), +('64.34.104.80', '64.34.104.95', 1075996752, 1075996767, 'CA', 'Canada'), +('64.34.104.96', '64.34.104.127', 1075996768, 1075996799, 'BV', 'Bouvet Island'), +('64.34.104.128', '64.34.105.191', 1075996800, 1075997119, 'CA', 'Canada'), +('64.34.105.192', '64.34.105.255', 1075997120, 1075997183, 'MX', 'Mexico'), +('64.34.106.0', '64.34.107.79', 1075997184, 1075997519, 'CA', 'Canada'), +('64.34.107.80', '64.34.107.95', 1075997520, 1075997535, 'US', 'United States'), +('64.34.107.96', '64.34.107.255', 1075997536, 1075997695, 'CA', 'Canada'), +('64.34.108.0', '64.34.108.127', 1075997696, 1075997823, 'CR', 'Costa Rica'), +('64.34.108.128', '64.34.108.255', 1075997824, 1075997951, 'US', 'United States'), +('64.34.109.0', '64.34.109.255', 1075997952, 1075998207, 'CA', 'Canada'), +('64.34.110.0', '64.34.110.127', 1075998208, 1075998335, 'US', 'United States'), +('64.34.110.128', '64.34.110.143', 1075998336, 1075998351, 'CA', 'Canada'), +('64.34.110.144', '64.34.110.223', 1075998352, 1075998431, 'US', 'United States'), +('64.34.110.224', '64.34.113.255', 1075998432, 1075999231, 'CA', 'Canada'), +('64.34.114.0', '64.34.116.255', 1075999232, 1075999999, 'US', 'United States'), +('64.34.117.0', '64.34.117.255', 1076000000, 1076000255, 'CA', 'Canada'), +('64.34.118.0', '64.34.119.255', 1076000256, 1076000767, 'US', 'United States'), +('64.34.120.0', '64.34.124.255', 1076000768, 1076002047, 'CA', 'Canada'), +('64.34.125.0', '64.34.128.7', 1076002048, 1076002823, 'US', 'United States'), +('64.34.128.8', '64.34.128.15', 1076002824, 1076002831, 'CA', 'Canada'), +('64.34.128.16', '64.34.128.63', 1076002832, 1076002879, 'US', 'United States'), +('64.34.128.64', '64.34.128.159', 1076002880, 1076002975, 'CA', 'Canada'), +('64.34.128.160', '64.34.128.207', 1076002976, 1076003023, 'US', 'United States'), +('64.34.128.208', '64.34.128.239', 1076003024, 1076003055, 'CA', 'Canada'), +('64.34.128.240', '64.34.128.255', 1076003056, 1076003071, 'US', 'United States'), +('64.34.129.0', '64.34.129.255', 1076003072, 1076003327, 'CA', 'Canada'), +('64.34.130.0', '64.34.130.31', 1076003328, 1076003359, 'US', 'United States'), +('64.34.130.32', '64.34.130.47', 1076003360, 1076003375, 'CA', 'Canada'), +('64.34.130.48', '64.34.130.191', 1076003376, 1076003519, 'US', 'United States'), +('64.34.130.192', '64.34.134.15', 1076003520, 1076004367, 'CA', 'Canada'), +('64.34.134.16', '64.34.134.71', 1076004368, 1076004423, 'US', 'United States'), +('64.34.134.72', '64.34.134.79', 1076004424, 1076004431, 'CA', 'Canada'), +('64.34.134.80', '64.34.134.119', 1076004432, 1076004471, 'US', 'United States'), +('64.34.134.120', '64.34.134.127', 1076004472, 1076004479, 'CA', 'Canada'), +('64.34.134.128', '64.34.134.143', 1076004480, 1076004495, 'US', 'United States'), +('64.34.134.144', '64.34.134.159', 1076004496, 1076004511, 'CA', 'Canada'), +('64.34.134.160', '64.34.134.207', 1076004512, 1076004559, 'US', 'United States'), +('64.34.134.208', '64.34.134.239', 1076004560, 1076004591, 'CA', 'Canada'), +('64.34.134.240', '64.34.134.255', 1076004592, 1076004607, 'US', 'United States'), +('64.34.135.0', '64.34.135.31', 1076004608, 1076004639, 'CA', 'Canada'), +('64.34.135.32', '64.34.135.95', 1076004640, 1076004703, 'US', 'United States'), +('64.34.135.96', '64.34.136.255', 1076004704, 1076005119, 'CA', 'Canada'), +('64.34.137.0', '64.34.137.143', 1076005120, 1076005263, 'US', 'United States'), +('64.34.137.144', '64.34.137.159', 1076005264, 1076005279, 'CA', 'Canada'), +('64.34.137.160', '64.34.137.255', 1076005280, 1076005375, 'US', 'United States'), +('64.34.138.0', '64.34.139.95', 1076005376, 1076005727, 'CA', 'Canada'), +('64.34.139.96', '64.34.139.127', 1076005728, 1076005759, 'US', 'United States'), +('64.34.139.128', '64.34.139.255', 1076005760, 1076005887, 'CA', 'Canada'), +('64.34.140.0', '64.34.140.127', 1076005888, 1076006015, 'US', 'United States'), +('64.34.140.128', '64.34.140.159', 1076006016, 1076006047, 'CA', 'Canada'), +('64.34.140.160', '64.34.140.191', 1076006048, 1076006079, 'US', 'United States'), +('64.34.140.192', '64.34.140.223', 1076006080, 1076006111, 'CA', 'Canada'), +('64.34.140.224', '64.34.141.127', 1076006112, 1076006271, 'US', 'United States'), +('64.34.141.128', '64.34.141.159', 1076006272, 1076006303, 'CA', 'Canada'), +('64.34.141.160', '64.34.141.223', 1076006304, 1076006367, 'US', 'United States'), +('64.34.141.224', '64.34.143.63', 1076006368, 1076006719, 'CA', 'Canada'), +('64.34.143.64', '64.34.143.95', 1076006720, 1076006751, 'US', 'United States'), +('64.34.143.96', '64.34.143.127', 1076006752, 1076006783, 'CA', 'Canada'), +('64.34.143.128', '64.34.143.255', 1076006784, 1076006911, 'US', 'United States'), +('64.34.144.0', '64.34.144.255', 1076006912, 1076007167, 'CA', 'Canada'), +('64.34.145.0', '64.34.145.15', 1076007168, 1076007183, 'US', 'United States'), +('64.34.145.16', '64.34.145.79', 1076007184, 1076007247, 'CA', 'Canada'), +('64.34.145.80', '64.34.145.95', 1076007248, 1076007263, 'US', 'United States'), +('64.34.145.96', '64.34.146.255', 1076007264, 1076007679, 'CA', 'Canada'), +('64.34.147.0', '64.34.147.255', 1076007680, 1076007935, 'US', 'United States'), +('64.34.148.0', '64.34.149.191', 1076007936, 1076008383, 'CA', 'Canada'), +('64.34.149.192', '64.34.149.255', 1076008384, 1076008447, 'US', 'United States'), +('64.34.150.0', '64.34.154.159', 1076008448, 1076009631, 'CA', 'Canada'), +('64.34.154.160', '64.34.154.191', 1076009632, 1076009663, 'US', 'United States'), +('64.34.154.192', '64.34.154.223', 1076009664, 1076009695, 'CA', 'Canada'), +('64.34.154.224', '64.34.154.239', 1076009696, 1076009711, 'US', 'United States'), +('64.34.154.240', '64.34.155.159', 1076009712, 1076009887, 'CA', 'Canada'), +('64.34.155.160', '64.34.155.191', 1076009888, 1076009919, 'US', 'United States'), +('64.34.155.192', '64.34.158.191', 1076009920, 1076010687, 'CA', 'Canada'), +('64.34.158.192', '64.34.158.199', 1076010688, 1076010695, 'US', 'United States'), +('64.34.158.200', '64.34.159.255', 1076010696, 1076011007, 'CA', 'Canada'), +('64.34.160.0', '64.34.218.167', 1076011008, 1076026023, 'US', 'United States'), +('64.34.218.168', '64.34.218.175', 1076026024, 1076026031, 'CA', 'Canada'), +('64.34.218.176', '64.34.219.255', 1076026032, 1076026367, 'US', 'United States'), +('64.34.220.0', '64.34.221.255', 1076026368, 1076026879, 'CA', 'Canada'), +('64.34.222.0', '64.34.222.159', 1076026880, 1076027039, 'US', 'United States'), +('64.34.222.160', '64.34.222.191', 1076027040, 1076027071, 'CA', 'Canada'), +('64.34.222.192', '64.34.222.255', 1076027072, 1076027135, 'US', 'United States'), +('64.34.223.0', '64.34.223.127', 1076027136, 1076027263, 'CA', 'Canada'), +('64.34.223.128', '64.34.223.159', 1076027264, 1076027295, 'US', 'United States'), +('64.34.223.160', '64.34.223.255', 1076027296, 1076027391, 'CA', 'Canada'), +('64.34.224.0', '64.34.224.7', 1076027392, 1076027399, 'US', 'United States'), +('64.34.224.8', '64.34.224.15', 1076027400, 1076027407, 'CA', 'Canada'), +('64.34.224.16', '64.34.224.63', 1076027408, 1076027455, 'US', 'United States'), +('64.34.224.64', '64.34.225.63', 1076027456, 1076027711, 'CA', 'Canada'), +('64.34.225.64', '64.34.225.79', 1076027712, 1076027727, 'US', 'United States'), +('64.34.225.80', '64.34.225.127', 1076027728, 1076027775, 'CA', 'Canada'), +('64.34.225.128', '64.34.225.143', 1076027776, 1076027791, 'US', 'United States'), +('64.34.225.144', '64.34.226.7', 1076027792, 1076027911, 'CA', 'Canada'), +('64.34.226.8', '64.34.226.15', 1076027912, 1076027919, 'US', 'United States'), +('64.34.226.16', '64.34.226.239', 1076027920, 1076028143, 'CA', 'Canada'), +('64.34.226.240', '64.34.226.247', 1076028144, 1076028151, 'US', 'United States'), +('64.34.226.248', '64.34.228.63', 1076028152, 1076028479, 'CA', 'Canada'), +('64.34.228.64', '64.34.228.127', 1076028480, 1076028543, 'GB', 'United Kingdom'), +('64.34.228.128', '64.34.228.255', 1076028544, 1076028671, 'CA', 'Canada'), +('64.34.229.0', '64.34.229.255', 1076028672, 1076028927, 'US', 'United States'), +('64.34.230.0', '64.34.230.255', 1076028928, 1076029183, 'IL', 'Israel'), +('64.34.231.0', '64.34.231.31', 1076029184, 1076029215, 'CA', 'Canada'), +('64.34.231.32', '64.34.231.39', 1076029216, 1076029223, 'US', 'United States'), +('64.34.231.40', '64.34.231.47', 1076029224, 1076029231, 'DM', 'Dominica'), +('64.34.231.48', '64.34.231.55', 1076029232, 1076029239, 'CA', 'Canada'), +('64.34.231.56', '64.34.231.63', 1076029240, 1076029247, 'US', 'United States'), +('64.34.231.64', '64.34.231.231', 1076029248, 1076029415, 'CA', 'Canada'), +('64.34.231.232', '64.34.231.238', 1076029416, 1076029422, 'US', 'United States'), +('64.34.231.239', '64.34.231.246', 1076029423, 1076029430, 'CA', 'Canada'), +('64.34.231.247', '64.34.231.255', 1076029431, 1076029439, 'US', 'United States'), +('64.34.232.0', '64.34.233.255', 1076029440, 1076029951, 'CA', 'Canada'), +('64.34.234.0', '64.34.234.255', 1076029952, 1076030207, 'CN', 'China'), +('64.34.235.0', '64.34.235.15', 1076030208, 1076030223, 'CA', 'Canada'), +('64.34.235.16', '64.34.235.23', 1076030224, 1076030231, 'US', 'United States'), +('64.34.235.24', '64.34.235.111', 1076030232, 1076030319, 'CA', 'Canada'), +('64.34.235.112', '64.34.235.127', 1076030320, 1076030335, 'US', 'United States'), +('64.34.235.128', '64.34.235.191', 1076030336, 1076030399, 'CA', 'Canada'), +('64.34.235.192', '64.34.235.255', 1076030400, 1076030463, 'US', 'United States'), +('64.34.236.0', '64.34.236.159', 1076030464, 1076030623, 'CA', 'Canada'), +('64.34.236.160', '64.34.236.167', 1076030624, 1076030631, 'US', 'United States'), +('64.34.236.168', '64.34.237.191', 1076030632, 1076030911, 'CA', 'Canada'), +('64.34.237.192', '64.34.237.255', 1076030912, 1076030975, 'US', 'United States'), +('64.34.238.0', '64.34.239.255', 1076030976, 1076031487, 'CA', 'Canada'), +('64.34.240.0', '64.34.240.255', 1076031488, 1076031743, 'US', 'United States'), +('64.34.241.0', '64.34.241.255', 1076031744, 1076031999, 'CA', 'Canada'), +('64.34.242.0', '64.34.242.255', 1076032000, 1076032255, 'US', 'United States'), +('64.34.243.0', '64.34.243.255', 1076032256, 1076032511, 'CA', 'Canada'), +('64.34.244.0', '64.34.248.111', 1076032512, 1076033647, 'US', 'United States'), +('64.34.248.112', '64.34.248.127', 1076033648, 1076033663, 'EG', 'Egypt'), +('64.34.248.128', '64.34.248.135', 1076033664, 1076033671, 'US', 'United States'), +('64.34.248.136', '64.34.248.151', 1076033672, 1076033687, 'CA', 'Canada'), +('64.34.248.152', '64.34.249.63', 1076033688, 1076033855, 'US', 'United States'), +('64.34.249.64', '64.34.249.79', 1076033856, 1076033871, 'CA', 'Canada'), +('64.34.249.80', '64.34.249.111', 1076033872, 1076033903, 'US', 'United States'), +('64.34.249.112', '64.34.249.159', 1076033904, 1076033951, 'CA', 'Canada'), +('64.34.249.160', '64.34.249.255', 1076033952, 1076034047, 'US', 'United States'), +('64.34.250.0', '64.34.250.15', 1076034048, 1076034063, 'CN', 'China'), +('64.34.250.16', '64.34.251.63', 1076034064, 1076034367, 'US', 'United States'), +('64.34.251.64', '64.34.251.79', 1076034368, 1076034383, 'CA', 'Canada'), +('64.34.251.80', '64.34.251.119', 1076034384, 1076034423, 'US', 'United States'), +('64.34.251.120', '64.34.251.127', 1076034424, 1076034431, 'AU', 'Australia'), +('64.34.251.128', '64.34.254.223', 1076034432, 1076035295, 'US', 'United States'), +('64.34.254.224', '64.34.254.255', 1076035296, 1076035327, 'EG', 'Egypt'), +('64.34.255.0', '64.34.255.87', 1076035328, 1076035415, 'US', 'United States'), +('64.34.255.88', '64.34.255.95', 1076035416, 1076035423, 'EG', 'Egypt'), +('64.34.255.96', '64.35.2.151', 1076035424, 1076036247, 'US', 'United States'), +('64.35.2.152', '64.35.2.159', 1076036248, 1076036255, 'IL', 'Israel'), +('64.35.2.160', '64.35.2.255', 1076036256, 1076036351, 'US', 'United States'), +('64.35.3.0', '64.35.3.253', 1076036352, 1076036605, 'ES', 'Spain'), +('64.35.3.254', '64.35.4.127', 1076036606, 1076036735, 'US', 'United States'), +('64.35.4.128', '64.35.4.143', 1076036736, 1076036751, 'CA', 'Canada'), +('64.35.4.144', '64.35.4.183', 1076036752, 1076036791, 'US', 'United States'), +('64.35.4.184', '64.35.4.191', 1076036792, 1076036799, 'ZA', 'South Africa'), +('64.35.4.192', '64.35.7.63', 1076036800, 1076037439, 'US', 'United States'), +('64.35.7.64', '64.35.7.71', 1076037440, 1076037447, 'MX', 'Mexico'), +('64.35.7.72', '64.35.31.255', 1076037448, 1076043775, 'US', 'United States'), +('64.35.32.0', '64.35.32.63', 1076043776, 1076043839, 'CA', 'Canada'), +('64.35.32.64', '64.35.32.95', 1076043840, 1076043871, 'MX', 'Mexico'), +('64.35.32.96', '64.35.33.63', 1076043872, 1076044095, 'US', 'United States'), +('64.35.33.64', '64.35.33.95', 1076044096, 1076044127, 'IN', 'India'), +('64.35.33.96', '64.35.33.143', 1076044128, 1076044175, 'US', 'United States'), +('64.35.33.144', '64.35.33.151', 1076044176, 1076044183, 'IE', 'Ireland'), +('64.35.33.152', '64.35.33.159', 1076044184, 1076044191, 'FR', 'France'), +('64.35.33.160', '64.35.35.7', 1076044192, 1076044551, 'US', 'United States'), +('64.35.35.8', '64.35.35.23', 1076044552, 1076044567, 'DE', 'Germany'), +('64.35.35.24', '64.35.35.159', 1076044568, 1076044703, 'US', 'United States'), +('64.35.35.160', '64.35.35.191', 1076044704, 1076044735, 'AR', 'Argentina'), +('64.35.35.192', '64.35.46.167', 1076044736, 1076047527, 'US', 'United States'), +('64.35.46.168', '64.35.46.175', 1076047528, 1076047535, 'JP', 'Japan'), +('64.35.46.176', '64.35.46.191', 1076047536, 1076047551, 'US', 'United States'), +('64.35.46.192', '64.35.46.223', 1076047552, 1076047583, 'CH', 'Switzerland'), +('64.35.46.224', '64.35.48.95', 1076047584, 1076047967, 'US', 'United States'), +('64.35.48.96', '64.35.48.103', 1076047968, 1076047975, 'VE', 'Venezuela'), +('64.35.48.104', '64.35.50.255', 1076047976, 1076048639, 'US', 'United States'), +('64.35.51.0', '64.35.51.31', 1076048640, 1076048671, 'MX', 'Mexico'), +('64.35.51.32', '64.35.51.63', 1076048672, 1076048703, 'AR', 'Argentina'), +('64.35.51.64', '64.35.51.95', 1076048704, 1076048735, 'US', 'United States'), +('64.35.51.96', '64.35.51.127', 1076048736, 1076048767, 'CA', 'Canada'), +('64.35.51.128', '64.35.51.191', 1076048768, 1076048831, 'US', 'United States'), +('64.35.51.192', '64.35.51.223', 1076048832, 1076048863, 'IL', 'Israel'), +('64.35.51.224', '64.35.52.255', 1076048864, 1076049151, 'US', 'United States'), +('64.35.53.0', '64.35.53.255', 1076049152, 1076049407, 'DE', 'Germany'), +('64.35.54.0', '64.35.54.31', 1076049408, 1076049439, 'CA', 'Canada'), +('64.35.54.32', '64.35.54.63', 1076049440, 1076049471, 'US', 'United States'), +('64.35.54.64', '64.35.54.95', 1076049472, 1076049503, 'PR', 'Puerto Rico'), +('64.35.54.96', '64.35.55.255', 1076049504, 1076049919, 'US', 'United States'), +('64.35.56.0', '64.35.56.255', 1076049920, 1076050175, 'IL', 'Israel'), +('64.35.57.0', '64.37.63.255', 1076050176, 1076183039, 'US', 'United States'), +('64.37.64.0', '64.37.64.31', 1076183040, 1076183071, 'IN', 'India'), +('64.37.64.32', '64.37.64.63', 1076183072, 1076183103, 'US', 'United States'), +('64.37.64.64', '64.37.64.95', 1076183104, 1076183135, 'CA', 'Canada'), +('64.37.64.96', '64.37.64.223', 1076183136, 1076183263, 'US', 'United States'), +('64.37.64.224', '64.37.64.255', 1076183264, 1076183295, 'CA', 'Canada'), +('64.37.65.0', '64.37.66.255', 1076183296, 1076183807, 'US', 'United States'), +('64.37.67.0', '64.37.67.255', 1076183808, 1076184063, 'CA', 'Canada'), +('64.37.68.0', '64.37.68.63', 1076184064, 1076184127, 'US', 'United States'), +('64.37.68.64', '64.37.68.95', 1076184128, 1076184159, 'VE', 'Venezuela'), +('64.37.68.96', '64.37.68.127', 1076184160, 1076184191, 'US', 'United States'), +('64.37.68.128', '64.37.68.159', 1076184192, 1076184223, 'IN', 'India'), +('64.37.68.160', '64.37.68.191', 1076184224, 1076184255, 'US', 'United States'), +('64.37.68.192', '64.37.68.223', 1076184256, 1076184287, 'BE', 'Belgium'), +('64.37.68.224', '64.37.68.255', 1076184288, 1076184319, 'CA', 'Canada'), +('64.37.69.0', '64.37.69.255', 1076184320, 1076184575, 'US', 'United States'), +('64.37.70.0', '64.37.70.127', 1076184576, 1076184703, 'SG', 'Singapore'), +('64.37.70.128', '64.37.71.63', 1076184704, 1076184895, 'US', 'United States'), +('64.37.71.64', '64.37.71.95', 1076184896, 1076184927, 'FR', 'France'), +('64.37.71.96', '64.37.71.127', 1076184928, 1076184959, 'US', 'United States'), +('64.37.71.128', '64.37.71.159', 1076184960, 1076184991, 'VE', 'Venezuela'), +('64.37.71.160', '64.37.71.191', 1076184992, 1076185023, 'US', 'United States'), +('64.37.71.192', '64.37.71.223', 1076185024, 1076185055, 'GB', 'United Kingdom'), +('64.37.71.224', '64.37.72.127', 1076185056, 1076185215, 'US', 'United States'), +('64.37.72.128', '64.37.72.255', 1076185216, 1076185343, 'CA', 'Canada'), +('64.37.73.0', '64.37.73.95', 1076185344, 1076185439, 'US', 'United States'), +('64.37.73.96', '64.37.73.127', 1076185440, 1076185471, 'IT', 'Italy'), +('64.37.73.128', '64.37.73.159', 1076185472, 1076185503, 'US', 'United States'), +('64.37.73.160', '64.37.73.191', 1076185504, 1076185535, 'DO', 'Dominican Republic'), +('64.37.73.192', '64.37.73.255', 1076185536, 1076185599, 'US', 'United States'), +('64.37.74.0', '64.37.74.255', 1076185600, 1076185855, 'MY', 'Malaysia'), +('64.37.75.0', '64.37.75.127', 1076185856, 1076185983, 'US', 'United States'), +('64.37.75.128', '64.37.75.159', 1076185984, 1076186015, 'PK', 'Pakistan'), +('64.37.75.160', '64.37.76.191', 1076186016, 1076186303, 'US', 'United States'), +('64.37.76.192', '64.37.76.223', 1076186304, 1076186335, 'CA', 'Canada'), +('64.37.76.224', '64.37.76.255', 1076186336, 1076186367, 'IT', 'Italy'), +('64.37.77.0', '64.37.77.255', 1076186368, 1076186623, 'CA', 'Canada'), +('64.37.78.0', '64.37.78.127', 1076186624, 1076186751, 'US', 'United States'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('64.37.78.128', '64.37.78.159', 1076186752, 1076186783, 'CA', 'Canada'), +('64.37.78.160', '64.37.78.255', 1076186784, 1076186879, 'US', 'United States'), +('64.37.79.0', '64.37.79.255', 1076186880, 1076187135, 'AT', 'Austria'), +('64.37.80.0', '64.37.80.255', 1076187136, 1076187391, 'US', 'United States'), +('64.37.81.0', '64.37.81.255', 1076187392, 1076187647, 'CA', 'Canada'), +('64.37.82.0', '64.37.82.31', 1076187648, 1076187679, 'BE', 'Belgium'), +('64.37.82.32', '64.37.82.127', 1076187680, 1076187775, 'US', 'United States'), +('64.37.82.128', '64.37.82.159', 1076187776, 1076187807, 'IN', 'India'), +('64.37.82.160', '64.37.82.255', 1076187808, 1076187903, 'US', 'United States'), +('64.37.83.0', '64.37.83.255', 1076187904, 1076188159, 'CA', 'Canada'), +('64.37.84.0', '64.37.84.127', 1076188160, 1076188287, 'US', 'United States'), +('64.37.84.128', '64.37.84.255', 1076188288, 1076188415, 'BE', 'Belgium'), +('64.37.85.0', '64.37.85.255', 1076188416, 1076188671, 'MY', 'Malaysia'), +('64.37.86.0', '64.37.87.255', 1076188672, 1076189183, 'US', 'United States'), +('64.37.88.0', '64.37.88.31', 1076189184, 1076189215, 'VE', 'Venezuela'), +('64.37.88.32', '64.37.88.95', 1076189216, 1076189279, 'CA', 'Canada'), +('64.37.88.96', '64.37.88.127', 1076189280, 1076189311, 'US', 'United States'), +('64.37.88.128', '64.37.88.159', 1076189312, 1076189343, 'CA', 'Canada'), +('64.37.88.160', '64.37.88.223', 1076189344, 1076189407, 'US', 'United States'), +('64.37.88.224', '64.37.88.255', 1076189408, 1076189439, 'IN', 'India'), +('64.37.89.0', '64.37.89.255', 1076189440, 1076189695, 'US', 'United States'), +('64.37.90.0', '64.37.90.255', 1076189696, 1076189951, 'CA', 'Canada'), +('64.37.91.0', '64.37.91.127', 1076189952, 1076190079, 'US', 'United States'), +('64.37.91.128', '64.37.91.191', 1076190080, 1076190143, 'IN', 'India'), +('64.37.91.192', '64.37.91.223', 1076190144, 1076190175, 'BE', 'Belgium'), +('64.37.91.224', '64.37.91.255', 1076190176, 1076190207, 'IN', 'India'), +('64.37.92.0', '64.37.92.255', 1076190208, 1076190463, 'CA', 'Canada'), +('64.37.93.0', '64.37.93.63', 1076190464, 1076190527, 'US', 'United States'), +('64.37.93.64', '64.37.93.127', 1076190528, 1076190591, 'IN', 'India'), +('64.37.93.128', '64.37.94.95', 1076190592, 1076190815, 'US', 'United States'), +('64.37.94.96', '64.37.94.127', 1076190816, 1076190847, 'IN', 'India'), +('64.37.94.128', '64.37.99.255', 1076190848, 1076192255, 'US', 'United States'), +('64.37.100.0', '64.37.100.127', 1076192256, 1076192383, 'BE', 'Belgium'), +('64.37.100.128', '64.37.101.255', 1076192384, 1076192767, 'US', 'United States'), +('64.37.102.0', '64.37.102.63', 1076192768, 1076192831, 'IN', 'India'), +('64.37.102.64', '64.37.102.255', 1076192832, 1076193023, 'US', 'United States'), +('64.37.103.0', '64.37.103.31', 1076193024, 1076193055, 'GB', 'United Kingdom'), +('64.37.103.32', '64.37.103.63', 1076193056, 1076193087, 'AU', 'Australia'), +('64.37.103.64', '64.37.103.127', 1076193088, 1076193151, 'US', 'United States'), +('64.37.103.128', '64.37.103.159', 1076193152, 1076193183, 'TR', 'Turkey'), +('64.37.103.160', '64.37.103.223', 1076193184, 1076193247, 'US', 'United States'), +('64.37.103.224', '64.37.103.255', 1076193248, 1076193279, 'CA', 'Canada'), +('64.37.104.0', '64.37.108.63', 1076193280, 1076194367, 'US', 'United States'), +('64.37.108.64', '64.37.108.95', 1076194368, 1076194399, 'IN', 'India'), +('64.37.108.96', '64.37.108.127', 1076194400, 1076194431, 'IL', 'Israel'), +('64.37.108.128', '64.37.108.191', 1076194432, 1076194495, 'US', 'United States'), +('64.37.108.192', '64.37.108.223', 1076194496, 1076194527, 'BE', 'Belgium'), +('64.37.108.224', '64.37.108.255', 1076194528, 1076194559, 'US', 'United States'), +('64.37.109.0', '64.37.109.255', 1076194560, 1076194815, 'CA', 'Canada'), +('64.37.110.0', '64.37.110.255', 1076194816, 1076195071, 'US', 'United States'), +('64.37.111.0', '64.37.111.255', 1076195072, 1076195327, 'IN', 'India'), +('64.37.112.0', '64.37.112.223', 1076195328, 1076195551, 'US', 'United States'), +('64.37.112.224', '64.37.112.255', 1076195552, 1076195583, 'IN', 'India'), +('64.37.113.0', '64.37.114.31', 1076195584, 1076195871, 'US', 'United States'), +('64.37.114.32', '64.37.114.63', 1076195872, 1076195903, 'BE', 'Belgium'), +('64.37.114.64', '64.37.114.95', 1076195904, 1076195935, 'CA', 'Canada'), +('64.37.114.96', '64.37.114.255', 1076195936, 1076196095, 'US', 'United States'), +('64.37.115.0', '64.37.116.31', 1076196096, 1076196383, 'CA', 'Canada'), +('64.37.116.32', '64.37.116.127', 1076196384, 1076196479, 'US', 'United States'), +('64.37.116.128', '64.37.116.159', 1076196480, 1076196511, 'FR', 'France'), +('64.37.116.160', '64.37.116.191', 1076196512, 1076196543, 'AT', 'Austria'), +('64.37.116.192', '64.37.117.33', 1076196544, 1076196641, 'US', 'United States'), +('64.37.117.34', '64.37.117.63', 1076196642, 1076196671, 'BE', 'Belgium'), +('64.37.117.64', '64.37.117.95', 1076196672, 1076196703, 'US', 'United States'), +('64.37.117.96', '64.37.117.127', 1076196704, 1076196735, 'FR', 'France'), +('64.37.117.128', '64.37.118.255', 1076196736, 1076197119, 'US', 'United States'), +('64.37.119.0', '64.37.119.255', 1076197120, 1076197375, 'CA', 'Canada'), +('64.37.120.0', '64.37.120.255', 1076197376, 1076197631, 'US', 'United States'), +('64.37.121.0', '64.37.121.31', 1076197632, 1076197663, 'BE', 'Belgium'), +('64.37.121.32', '64.37.124.255', 1076197664, 1076198655, 'US', 'United States'), +('64.37.125.0', '64.37.125.255', 1076198656, 1076198911, 'AE', 'United Arab Emirates'), +('64.37.126.0', '64.38.193.31', 1076198912, 1076281631, 'US', 'United States'), +('64.38.193.32', '64.38.193.63', 1076281632, 1076281663, 'AT', 'Austria'), +('64.38.193.64', '64.38.193.95', 1076281664, 1076281695, 'US', 'United States'), +('64.38.193.96', '64.38.193.127', 1076281696, 1076281727, 'TH', 'Thailand'), +('64.38.193.128', '64.38.194.255', 1076281728, 1076282111, 'US', 'United States'), +('64.38.195.0', '64.38.195.31', 1076282112, 1076282143, 'AU', 'Australia'), +('64.38.195.32', '64.38.195.239', 1076282144, 1076282351, 'US', 'United States'), +('64.38.195.240', '64.38.195.255', 1076282352, 1076282367, 'CA', 'Canada'), +('64.38.196.0', '64.38.201.255', 1076282368, 1076283903, 'US', 'United States'), +('64.38.202.0', '64.38.202.255', 1076283904, 1076284159, 'NO', 'Norway'), +('64.38.203.0', '64.38.205.7', 1076284160, 1076284679, 'US', 'United States'), +('64.38.205.8', '64.38.205.15', 1076284680, 1076284687, 'HU', 'Hungary'), +('64.38.205.16', '64.38.207.255', 1076284688, 1076285439, 'US', 'United States'), +('64.38.208.0', '64.38.208.15', 1076285440, 1076285455, 'DK', 'Denmark'), +('64.38.208.16', '64.38.233.63', 1076285456, 1076291903, 'US', 'United States'), +('64.38.233.64', '64.38.233.79', 1076291904, 1076291919, 'UA', 'Ukraine'), +('64.38.233.80', '64.38.235.207', 1076291920, 1076292559, 'US', 'United States'), +('64.38.235.208', '64.38.235.215', 1076292560, 1076292567, 'NL', 'Netherlands'), +('64.38.235.216', '64.38.243.255', 1076292568, 1076294655, 'US', 'United States'), +('64.38.244.0', '64.38.244.31', 1076294656, 1076294687, 'CY', 'Cyprus'), +('64.38.244.32', '64.38.244.47', 1076294688, 1076294703, 'US', 'United States'), +('64.38.244.48', '64.38.244.63', 1076294704, 1076294719, 'NO', 'Norway'), +('64.38.244.64', '64.38.245.159', 1076294720, 1076295071, 'US', 'United States'), +('64.38.245.160', '64.38.245.175', 1076295072, 1076295087, 'NL', 'Netherlands'), +('64.38.245.176', '64.38.245.255', 1076295088, 1076295167, 'US', 'United States'), +('64.38.246.0', '64.38.246.31', 1076295168, 1076295199, 'CY', 'Cyprus'), +('64.38.246.32', '64.39.34.79', 1076295200, 1076306511, 'US', 'United States'), +('64.39.34.80', '64.39.34.95', 1076306512, 1076306527, 'AE', 'United Arab Emirates'), +('64.39.34.96', '64.39.38.39', 1076306528, 1076307495, 'US', 'United States'), +('64.39.38.40', '64.39.38.47', 1076307496, 1076307503, 'DE', 'Germany'), +('64.39.38.48', '64.39.38.63', 1076307504, 1076307519, 'US', 'United States'), +('64.39.38.64', '64.39.38.79', 1076307520, 1076307535, 'DE', 'Germany'), +('64.39.38.80', '64.39.39.31', 1076307536, 1076307743, 'US', 'United States'), +('64.39.39.32', '64.39.39.95', 1076307744, 1076307807, 'DE', 'Germany'), +('64.39.39.96', '64.39.39.255', 1076307808, 1076307967, 'US', 'United States'), +('64.39.40.0', '64.39.40.255', 1076307968, 1076308223, 'DE', 'Germany'), +('64.39.41.0', '64.39.42.15', 1076308224, 1076308495, 'US', 'United States'), +('64.39.42.16', '64.39.42.31', 1076308496, 1076308511, 'AE', 'United Arab Emirates'), +('64.39.42.32', '64.39.42.95', 1076308512, 1076308575, 'US', 'United States'), +('64.39.42.96', '64.39.42.111', 1076308576, 1076308591, 'IL', 'Israel'), +('64.39.42.112', '64.39.42.191', 1076308592, 1076308671, 'US', 'United States'), +('64.39.42.192', '64.39.42.207', 1076308672, 1076308687, 'DE', 'Germany'), +('64.39.42.208', '64.39.43.255', 1076308688, 1076308991, 'US', 'United States'), +('64.39.44.0', '64.39.44.15', 1076308992, 1076309007, 'IE', 'Ireland'), +('64.39.44.16', '64.39.44.127', 1076309008, 1076309119, 'US', 'United States'), +('64.39.44.128', '64.39.44.143', 1076309120, 1076309135, 'IE', 'Ireland'), +('64.39.44.144', '64.39.44.159', 1076309136, 1076309151, 'US', 'United States'), +('64.39.44.160', '64.39.44.191', 1076309152, 1076309183, 'DE', 'Germany'), +('64.39.44.192', '64.39.47.207', 1076309184, 1076309967, 'US', 'United States'), +('64.39.47.208', '64.39.47.223', 1076309968, 1076309983, 'DE', 'Germany'), +('64.39.47.224', '64.39.47.255', 1076309984, 1076310015, 'US', 'United States'), +('64.39.48.0', '64.39.48.255', 1076310016, 1076310271, 'DE', 'Germany'), +('64.39.49.0', '64.39.49.31', 1076310272, 1076310303, 'AE', 'United Arab Emirates'), +('64.39.49.32', '64.39.49.95', 1076310304, 1076310367, 'US', 'United States'), +('64.39.49.96', '64.39.49.111', 1076310368, 1076310383, 'IE', 'Ireland'), +('64.39.49.112', '64.39.49.127', 1076310384, 1076310399, 'US', 'United States'), +('64.39.49.128', '64.39.49.159', 1076310400, 1076310431, 'AE', 'United Arab Emirates'), +('64.39.49.160', '64.39.49.191', 1076310432, 1076310463, 'AU', 'Australia'), +('64.39.49.192', '64.39.49.255', 1076310464, 1076310527, 'IL', 'Israel'), +('64.39.50.0', '64.39.159.255', 1076310528, 1076338687, 'US', 'United States'), +('64.39.160.0', '64.39.191.255', 1076338688, 1076346879, 'CA', 'Canada'), +('64.39.192.0', '64.40.95.255', 1076346880, 1076387839, 'US', 'United States'), +('64.40.96.0', '64.40.127.255', 1076387840, 1076396031, 'CA', 'Canada'), +('64.40.128.0', '64.40.159.255', 1076396032, 1076404223, 'US', 'United States'), +('64.40.160.0', '64.40.166.255', 1076404224, 1076406015, 'A2', 'Satellite Provider'), +('64.40.167.0', '64.40.167.255', 1076406016, 1076406271, 'US', 'United States'), +('64.40.168.0', '64.40.174.255', 1076406272, 1076408063, 'A2', 'Satellite Provider'), +('64.40.175.0', '64.40.175.255', 1076408064, 1076408319, 'US', 'United States'), +('64.40.176.0', '64.40.191.255', 1076408320, 1076412415, 'CA', 'Canada'), +('64.40.192.0', '64.40.239.255', 1076412416, 1076424703, 'US', 'United States'), +('64.40.240.0', '64.40.255.255', 1076424704, 1076428799, 'CA', 'Canada'), +('64.41.0.0', '64.41.251.255', 1076428800, 1076493311, 'US', 'United States'), +('64.41.252.0', '64.41.252.63', 1076493312, 1076493375, 'IN', 'India'), +('64.41.252.64', '64.42.191.255', 1076493376, 1076543487, 'US', 'United States'), +('64.42.192.0', '64.42.255.255', 1076543488, 1076559871, 'CA', 'Canada'), +('64.43.0.0', '64.45.22.79', 1076559872, 1076696655, 'US', 'United States'), +('64.45.22.80', '64.45.22.87', 1076696656, 1076696663, 'CA', 'Canada'), +('64.45.22.88', '64.45.25.159', 1076696664, 1076697503, 'US', 'United States'), +('64.45.25.160', '64.45.25.175', 1076697504, 1076697519, 'NZ', 'New Zealand'), +('64.45.25.176', '64.45.25.223', 1076697520, 1076697567, 'US', 'United States'), +('64.45.25.224', '64.45.25.239', 1076697568, 1076697583, 'PE', 'Peru'), +('64.45.25.240', '64.45.29.197', 1076697584, 1076698565, 'US', 'United States'), +('64.45.29.198', '64.45.29.212', 1076698566, 1076698580, 'AU', 'Australia'), +('64.45.29.213', '64.45.52.120', 1076698581, 1076704376, 'US', 'United States'), +('64.45.52.121', '64.45.52.149', 1076704377, 1076704405, 'CO', 'Colombia'), +('64.45.52.150', '64.45.53.231', 1076704406, 1076704743, 'US', 'United States'), +('64.45.53.232', '64.45.53.239', 1076704744, 1076704751, 'GB', 'United Kingdom'), +('64.45.53.240', '64.45.55.167', 1076704752, 1076705191, 'US', 'United States'), +('64.45.55.168', '64.45.55.175', 1076705192, 1076705199, 'AE', 'United Arab Emirates'), +('64.45.55.176', '64.45.55.191', 1076705200, 1076705215, 'US', 'United States'), +('64.45.55.192', '64.45.55.223', 1076705216, 1076705247, 'CA', 'Canada'), +('64.45.55.224', '64.45.57.183', 1076705248, 1076705719, 'US', 'United States'), +('64.45.57.184', '64.45.57.193', 1076705720, 1076705729, 'AU', 'Australia'), +('64.45.57.194', '64.45.63.15', 1076705730, 1076707087, 'US', 'United States'), +('64.45.63.16', '64.45.63.31', 1076707088, 1076707103, 'AT', 'Austria'), +('64.45.63.32', '64.45.63.47', 1076707104, 1076707119, 'GB', 'United Kingdom'), +('64.45.63.48', '64.45.63.239', 1076707120, 1076707311, 'US', 'United States'), +('64.45.63.240', '64.45.63.247', 1076707312, 1076707319, 'AR', 'Argentina'), +('64.45.63.248', '64.45.255.255', 1076707320, 1076756479, 'US', 'United States'), +('64.46.0.0', '64.46.31.255', 1076756480, 1076764671, 'CA', 'Canada'), +('64.46.32.0', '64.46.33.255', 1076764672, 1076765183, 'A1', 'Anonymous Proxy'), +('64.46.34.0', '64.46.34.255', 1076765184, 1076765439, 'CA', 'Canada'), +('64.46.35.0', '64.46.35.255', 1076765440, 1076765695, 'A1', 'Anonymous Proxy'), +('64.46.36.0', '64.46.40.63', 1076765696, 1076766783, 'CA', 'Canada'), +('64.46.40.64', '64.46.40.127', 1076766784, 1076766847, 'A1', 'Anonymous Proxy'), +('64.46.40.128', '64.46.41.255', 1076766848, 1076767231, 'CA', 'Canada'), +('64.46.42.0', '64.46.43.255', 1076767232, 1076767743, 'A1', 'Anonymous Proxy'), +('64.46.44.0', '64.46.46.255', 1076767744, 1076768511, 'CA', 'Canada'), +('64.46.47.0', '64.46.47.255', 1076768512, 1076768767, 'A1', 'Anonymous Proxy'), +('64.46.48.0', '64.46.63.255', 1076768768, 1076772863, 'CA', 'Canada'), +('64.46.64.0', '64.46.95.255', 1076772864, 1076781055, 'US', 'United States'), +('64.46.128.0', '64.47.111.255', 1076789248, 1076850687, 'US', 'United States'), +('64.47.112.0', '64.47.112.255', 1076850688, 1076850943, 'CA', 'Canada'), +('64.47.113.0', '64.49.127.255', 1076850944, 1076985855, 'US', 'United States'), +('64.49.128.0', '64.49.191.255', 1076985856, 1077002239, 'A2', 'Satellite Provider'), +('64.49.192.0', '64.50.143.255', 1077002240, 1077055487, 'US', 'United States'), +('64.50.144.0', '64.50.159.255', 1077055488, 1077059583, 'CA', 'Canada'), +('64.50.160.0', '64.56.127.255', 1077059584, 1077444607, 'US', 'United States'), +('64.56.128.0', '64.56.159.255', 1077444608, 1077452799, 'CA', 'Canada'), +('64.56.160.0', '64.56.191.255', 1077452800, 1077460991, 'JP', 'Japan'), +('64.56.192.0', '64.56.223.255', 1077460992, 1077469183, 'US', 'United States'), +('64.56.224.0', '64.56.255.255', 1077469184, 1077477375, 'CA', 'Canada'), +('64.57.0.0', '64.57.111.255', 1077477376, 1077506047, 'US', 'United States'), +('64.57.112.0', '64.57.127.255', 1077506048, 1077510143, 'LS', 'Lesotho'), +('64.57.128.0', '64.58.71.239', 1077510144, 1077561327, 'US', 'United States'), +('64.58.71.240', '64.58.71.255', 1077561328, 1077561343, 'AR', 'Argentina'), +('64.58.72.0', '64.58.88.63', 1077561344, 1077565503, 'US', 'United States'), +('64.58.88.64', '64.58.88.127', 1077565504, 1077565567, 'AR', 'Argentina'), +('64.58.88.128', '64.58.95.255', 1077565568, 1077567487, 'US', 'United States'), +('64.58.96.0', '64.58.111.255', 1077567488, 1077571583, 'A2', 'Satellite Provider'), +('64.58.112.0', '64.58.112.255', 1077571584, 1077571839, 'US', 'United States'), +('64.58.113.0', '64.58.113.127', 1077571840, 1077571967, 'CA', 'Canada'), +('64.58.113.128', '64.59.69.127', 1077571968, 1077626239, 'US', 'United States'), +('64.59.69.128', '64.59.69.159', 1077626240, 1077626271, 'WS', 'Samoa'), +('64.59.69.160', '64.59.80.31', 1077626272, 1077628959, 'US', 'United States'), +('64.59.80.32', '64.59.80.63', 1077628960, 1077628991, 'ES', 'Spain'), +('64.59.80.64', '64.59.80.143', 1077628992, 1077629071, 'US', 'United States'), +('64.59.80.144', '64.59.80.159', 1077629072, 1077629087, 'CR', 'Costa Rica'), +('64.59.80.160', '64.59.80.191', 1077629088, 1077629119, 'US', 'United States'), +('64.59.80.192', '64.59.80.223', 1077629120, 1077629151, 'NL', 'Netherlands'), +('64.59.80.224', '64.59.80.255', 1077629152, 1077629183, 'CA', 'Canada'), +('64.59.81.0', '64.59.82.95', 1077629184, 1077629535, 'US', 'United States'), +('64.59.82.96', '64.59.82.127', 1077629536, 1077629567, 'CA', 'Canada'), +('64.59.82.128', '64.59.83.207', 1077629568, 1077629903, 'US', 'United States'), +('64.59.83.208', '64.59.83.223', 1077629904, 1077629919, 'AN', 'Netherlands Antilles'), +('64.59.83.224', '64.59.84.63', 1077629920, 1077630015, 'US', 'United States'), +('64.59.84.64', '64.59.84.95', 1077630016, 1077630047, 'CA', 'Canada'), +('64.59.84.96', '64.59.92.159', 1077630048, 1077632159, 'US', 'United States'), +('64.59.92.160', '64.59.92.191', 1077632160, 1077632191, 'GB', 'United Kingdom'), +('64.59.92.192', '64.59.93.191', 1077632192, 1077632447, 'US', 'United States'), +('64.59.93.192', '64.59.93.223', 1077632448, 1077632479, 'NL', 'Netherlands'), +('64.59.93.224', '64.59.99.31', 1077632480, 1077633823, 'US', 'United States'), +('64.59.99.32', '64.59.99.63', 1077633824, 1077633855, 'AN', 'Netherlands Antilles'), +('64.59.99.64', '64.59.127.255', 1077633856, 1077641215, 'US', 'United States'), +('64.59.128.0', '64.59.191.255', 1077641216, 1077657599, 'CA', 'Canada'), +('64.59.192.0', '64.62.132.255', 1077657600, 1077839103, 'US', 'United States'), +('64.62.133.0', '64.62.133.15', 1077839104, 1077839119, 'ES', 'Spain'), +('64.62.133.16', '64.62.134.183', 1077839120, 1077839543, 'US', 'United States'), +('64.62.134.184', '64.62.134.191', 1077839544, 1077839551, 'ES', 'Spain'), +('64.62.134.192', '64.62.134.223', 1077839552, 1077839583, 'US', 'United States'), +('64.62.134.224', '64.62.134.231', 1077839584, 1077839591, 'JP', 'Japan'), +('64.62.134.232', '64.62.143.7', 1077839592, 1077841671, 'US', 'United States'), +('64.62.143.8', '64.62.143.15', 1077841672, 1077841679, 'ES', 'Spain'), +('64.62.143.16', '64.62.143.95', 1077841680, 1077841759, 'US', 'United States'), +('64.62.143.96', '64.62.143.103', 1077841760, 1077841767, 'IT', 'Italy'), +('64.62.143.104', '64.62.151.7', 1077841768, 1077843719, 'US', 'United States'), +('64.62.151.8', '64.62.151.15', 1077843720, 1077843727, 'CN', 'China'), +('64.62.151.16', '64.62.160.255', 1077843728, 1077846271, 'US', 'United States'), +('64.62.161.0', '64.62.161.255', 1077846272, 1077846527, 'JP', 'Japan'), +('64.62.162.0', '64.62.169.255', 1077846528, 1077848575, 'US', 'United States'), +('64.62.170.0', '64.62.170.255', 1077848576, 1077848831, 'GR', 'Greece'), +('64.62.171.0', '64.62.181.79', 1077848832, 1077851471, 'US', 'United States'), +('64.62.181.80', '64.62.181.95', 1077851472, 1077851487, 'HK', 'Hong Kong'), +('64.62.181.96', '64.62.185.255', 1077851488, 1077852671, 'US', 'United States'), +('64.62.186.0', '64.62.186.255', 1077852672, 1077852927, 'CA', 'Canada'), +('64.62.187.0', '64.62.187.255', 1077852928, 1077853183, 'US', 'United States'), +('64.62.188.0', '64.62.188.255', 1077853184, 1077853439, 'IT', 'Italy'), +('64.62.189.0', '64.62.194.167', 1077853440, 1077854887, 'US', 'United States'), +('64.62.194.168', '64.62.194.175', 1077854888, 1077854895, 'SE', 'Sweden'), +('64.62.194.176', '64.62.199.15', 1077854896, 1077856015, 'US', 'United States'), +('64.62.199.16', '64.62.199.31', 1077856016, 1077856031, 'IT', 'Italy'), +('64.62.199.32', '64.62.199.127', 1077856032, 1077856127, 'US', 'United States'), +('64.62.199.128', '64.62.199.191', 1077856128, 1077856191, 'AU', 'Australia'), +('64.62.199.192', '64.62.199.223', 1077856192, 1077856223, 'IT', 'Italy'), +('64.62.199.224', '64.62.203.255', 1077856224, 1077857279, 'US', 'United States'), +('64.62.204.0', '64.62.204.255', 1077857280, 1077857535, 'CA', 'Canada'), +('64.62.205.0', '64.62.205.31', 1077857536, 1077857567, 'US', 'United States'), +('64.62.205.32', '64.62.205.39', 1077857568, 1077857575, 'IT', 'Italy'), +('64.62.205.40', '64.62.205.63', 1077857576, 1077857599, 'US', 'United States'), +('64.62.205.64', '64.62.205.95', 1077857600, 1077857631, 'DE', 'Germany'), +('64.62.205.96', '64.62.206.223', 1077857632, 1077858015, 'US', 'United States'), +('64.62.206.224', '64.62.206.255', 1077858016, 1077858047, 'CN', 'China'), +('64.62.207.0', '64.62.210.95', 1077858048, 1077858911, 'US', 'United States'), +('64.62.210.96', '64.62.210.127', 1077858912, 1077858943, 'LV', 'Latvia'), +('64.62.210.128', '64.62.210.159', 1077858944, 1077858975, 'ZA', 'South Africa'), +('64.62.210.160', '64.62.214.95', 1077858976, 1077859935, 'US', 'United States'), +('64.62.214.96', '64.62.214.111', 1077859936, 1077859951, 'IT', 'Italy'), +('64.62.214.112', '64.62.214.127', 1077859952, 1077859967, 'US', 'United States'), +('64.62.214.128', '64.62.214.255', 1077859968, 1077860095, 'IT', 'Italy'), +('64.62.215.0', '64.62.218.255', 1077860096, 1077861119, 'US', 'United States'), +('64.62.219.0', '64.62.220.255', 1077861120, 1077861631, 'IT', 'Italy'), +('64.62.221.0', '64.62.225.255', 1077861632, 1077862911, 'US', 'United States'), +('64.62.226.0', '64.62.226.255', 1077862912, 1077863167, 'IT', 'Italy'), +('64.62.227.0', '64.62.232.255', 1077863168, 1077864703, 'US', 'United States'), +('64.62.233.0', '64.62.233.15', 1077864704, 1077864719, 'IT', 'Italy'), +('64.62.233.16', '64.62.237.255', 1077864720, 1077865983, 'US', 'United States'), +('64.62.238.0', '64.62.238.255', 1077865984, 1077866239, 'CA', 'Canada'), +('64.62.239.0', '64.62.244.135', 1077866240, 1077867655, 'US', 'United States'), +('64.62.244.136', '64.62.244.143', 1077867656, 1077867663, 'CK', 'Cook Islands'), +('64.62.244.144', '64.62.244.255', 1077867664, 1077867775, 'US', 'United States'), +('64.62.245.0', '64.62.245.255', 1077867776, 1077868031, 'IT', 'Italy'), +('64.62.246.0', '64.62.252.95', 1077868032, 1077869663, 'US', 'United States'), +('64.62.252.96', '64.62.252.103', 1077869664, 1077869671, 'LV', 'Latvia'), +('64.62.252.104', '64.62.254.255', 1077869672, 1077870335, 'US', 'United States'), +('64.62.255.0', '64.62.255.255', 1077870336, 1077870591, 'CN', 'China'), +('64.63.0.0', '64.63.255.255', 1077870592, 1077936127, 'US', 'United States'), +('64.65.0.0', '64.66.223.255', 1078001664, 1078124543, 'US', 'United States'), +('64.66.224.0', '64.66.239.255', 1078124544, 1078128639, 'CA', 'Canada'), +('64.66.240.0', '64.68.191.255', 1078128640, 1078247423, 'US', 'United States'), +('64.68.192.0', '64.68.207.255', 1078247424, 1078251519, 'CA', 'Canada'), +('64.68.208.0', '64.69.64.255', 1078251520, 1078280447, 'US', 'United States'), +('64.69.65.0', '64.69.65.127', 1078280448, 1078280575, 'CA', 'Canada'), +('64.69.65.128', '64.69.65.143', 1078280576, 1078280591, 'US', 'United States'), +('64.69.65.144', '64.69.65.191', 1078280592, 1078280639, 'CA', 'Canada'), +('64.69.65.192', '64.69.65.223', 1078280640, 1078280671, 'CR', 'Costa Rica'), +('64.69.65.224', '64.69.65.247', 1078280672, 1078280695, 'US', 'United States'), +('64.69.65.248', '64.69.66.255', 1078280696, 1078280959, 'CA', 'Canada'), +('64.69.67.0', '64.69.67.111', 1078280960, 1078281071, 'US', 'United States'), +('64.69.67.112', '64.69.67.119', 1078281072, 1078281079, 'CA', 'Canada'), +('64.69.67.120', '64.69.67.127', 1078281080, 1078281087, 'US', 'United States'), +('64.69.67.128', '64.69.68.63', 1078281088, 1078281279, 'CA', 'Canada'), +('64.69.68.64', '64.69.68.79', 1078281280, 1078281295, 'US', 'United States'), +('64.69.68.80', '64.69.69.39', 1078281296, 1078281511, 'CA', 'Canada'), +('64.69.69.40', '64.69.69.63', 1078281512, 1078281535, 'US', 'United States'), +('64.69.69.64', '64.69.69.127', 1078281536, 1078281599, 'CA', 'Canada'), +('64.69.69.128', '64.69.69.207', 1078281600, 1078281679, 'US', 'United States'), +('64.69.69.208', '64.69.69.239', 1078281680, 1078281711, 'CA', 'Canada'), +('64.69.69.240', '64.69.69.247', 1078281712, 1078281719, 'US', 'United States'), +('64.69.69.248', '64.69.69.255', 1078281720, 1078281727, 'CA', 'Canada'), +('64.69.70.0', '64.69.70.15', 1078281728, 1078281743, 'US', 'United States'), +('64.69.70.16', '64.69.70.31', 1078281744, 1078281759, 'CA', 'Canada'), +('64.69.70.32', '64.69.70.63', 1078281760, 1078281791, 'KN', 'Saint Kitts and Nevis'), +('64.69.70.64', '64.69.71.135', 1078281792, 1078282119, 'CA', 'Canada'), +('64.69.71.136', '64.69.71.239', 1078282120, 1078282223, 'US', 'United States'), +('64.69.71.240', '64.69.71.254', 1078282224, 1078282238, 'CA', 'Canada'), +('64.69.71.255', '64.69.71.255', 1078282239, 1078282239, 'US', 'United States'), +('64.69.72.0', '64.69.75.7', 1078282240, 1078283015, 'CA', 'Canada'), +('64.69.75.8', '64.69.75.15', 1078283016, 1078283023, 'VG', 'Virgin Islands, British'), +('64.69.75.16', '64.69.75.95', 1078283024, 1078283103, 'CA', 'Canada'), +('64.69.75.96', '64.69.75.127', 1078283104, 1078283135, 'US', 'United States'), +('64.69.75.128', '64.69.75.255', 1078283136, 1078283263, 'CA', 'Canada'), +('64.69.76.0', '64.69.76.0', 1078283264, 1078283264, 'US', 'United States'), +('64.69.76.1', '64.69.76.111', 1078283265, 1078283375, 'CA', 'Canada'), +('64.69.76.112', '64.69.76.127', 1078283376, 1078283391, 'US', 'United States'), +('64.69.76.128', '64.69.76.143', 1078283392, 1078283407, 'CA', 'Canada'), +('64.69.76.144', '64.69.76.159', 1078283408, 1078283423, 'US', 'United States'), +('64.69.76.160', '64.69.76.223', 1078283424, 1078283487, 'CA', 'Canada'), +('64.69.76.224', '64.69.76.231', 1078283488, 1078283495, 'US', 'United States'), +('64.69.76.232', '64.69.77.31', 1078283496, 1078283551, 'CA', 'Canada'), +('64.69.77.32', '64.69.77.63', 1078283552, 1078283583, 'US', 'United States'), +('64.69.77.64', '64.69.77.127', 1078283584, 1078283647, 'CA', 'Canada'), +('64.69.77.128', '64.69.77.143', 1078283648, 1078283663, 'US', 'United States'), +('64.69.77.144', '64.69.77.151', 1078283664, 1078283671, 'CA', 'Canada'), +('64.69.77.152', '64.69.77.159', 1078283672, 1078283679, 'US', 'United States'), +('64.69.77.160', '64.69.77.167', 1078283680, 1078283687, 'CA', 'Canada'), +('64.69.77.168', '64.69.77.175', 1078283688, 1078283695, 'US', 'United States'), +('64.69.77.176', '64.69.78.255', 1078283696, 1078284031, 'CA', 'Canada'), +('64.69.79.0', '64.69.79.127', 1078284032, 1078284159, 'BS', 'Bahamas'), +('64.69.79.128', '64.69.79.223', 1078284160, 1078284255, 'CA', 'Canada'), +('64.69.79.224', '64.69.79.255', 1078284256, 1078284287, 'US', 'United States'), +('64.69.80.0', '64.69.80.31', 1078284288, 1078284319, 'CA', 'Canada'), +('64.69.80.32', '64.69.80.79', 1078284320, 1078284367, 'US', 'United States'), +('64.69.80.80', '64.69.80.95', 1078284368, 1078284383, 'BV', 'Bouvet Island'), +('64.69.80.96', '64.69.80.111', 1078284384, 1078284399, 'US', 'United States'), +('64.69.80.112', '64.69.80.191', 1078284400, 1078284479, 'CA', 'Canada'), +('64.69.80.192', '64.69.80.255', 1078284480, 1078284543, 'US', 'United States'), +('64.69.81.0', '64.69.81.143', 1078284544, 1078284687, 'CA', 'Canada'), +('64.69.81.144', '64.69.81.159', 1078284688, 1078284703, 'US', 'United States'), +('64.69.81.160', '64.69.82.63', 1078284704, 1078284863, 'CA', 'Canada'), +('64.69.82.64', '64.69.82.127', 1078284864, 1078284927, 'US', 'United States'), +('64.69.82.128', '64.69.82.191', 1078284928, 1078284991, 'CA', 'Canada'), +('64.69.82.192', '64.69.82.207', 1078284992, 1078285007, 'US', 'United States'), +('64.69.82.208', '64.69.82.215', 1078285008, 1078285015, 'CA', 'Canada'), +('64.69.82.216', '64.69.82.239', 1078285016, 1078285039, 'US', 'United States'), +('64.69.82.240', '64.69.83.95', 1078285040, 1078285151, 'CA', 'Canada'), +('64.69.83.96', '64.69.83.111', 1078285152, 1078285167, 'US', 'United States'), +('64.69.83.112', '64.69.83.119', 1078285168, 1078285175, 'CA', 'Canada'), +('64.69.83.120', '64.69.83.191', 1078285176, 1078285247, 'US', 'United States'), +('64.69.83.192', '64.69.83.199', 1078285248, 1078285255, 'CA', 'Canada'), +('64.69.83.200', '64.69.83.207', 1078285256, 1078285263, 'US', 'United States'), +('64.69.83.208', '64.69.83.223', 1078285264, 1078285279, 'CA', 'Canada'), +('64.69.83.224', '64.69.83.239', 1078285280, 1078285295, 'US', 'United States'), +('64.69.83.240', '64.69.83.247', 1078285296, 1078285303, 'CA', 'Canada'), +('64.69.83.248', '64.69.84.255', 1078285304, 1078285567, 'US', 'United States'), +('64.69.85.0', '64.69.85.71', 1078285568, 1078285639, 'CA', 'Canada'), +('64.69.85.72', '64.69.85.87', 1078285640, 1078285655, 'US', 'United States'), +('64.69.85.88', '64.69.86.95', 1078285656, 1078285919, 'CA', 'Canada'), +('64.69.86.96', '64.69.86.127', 1078285920, 1078285951, 'US', 'United States'), +('64.69.86.128', '64.69.86.191', 1078285952, 1078286015, 'CA', 'Canada'), +('64.69.86.192', '64.69.86.255', 1078286016, 1078286079, 'US', 'United States'), +('64.69.87.0', '64.69.87.31', 1078286080, 1078286111, 'CA', 'Canada'), +('64.69.87.32', '64.69.87.35', 1078286112, 1078286115, 'US', 'United States'), +('64.69.87.36', '64.69.87.63', 1078286116, 1078286143, 'CA', 'Canada'), +('64.69.87.64', '64.69.87.127', 1078286144, 1078286207, 'US', 'United States'), +('64.69.87.128', '64.69.87.255', 1078286208, 1078286335, 'CA', 'Canada'), +('64.69.88.0', '64.69.88.15', 1078286336, 1078286351, 'US', 'United States'), +('64.69.88.16', '64.69.88.31', 1078286352, 1078286367, 'CA', 'Canada'), +('64.69.88.32', '64.69.88.127', 1078286368, 1078286463, 'US', 'United States'), +('64.69.88.128', '64.69.88.223', 1078286464, 1078286559, 'CA', 'Canada'), +('64.69.88.224', '64.69.88.239', 1078286560, 1078286575, 'TW', 'Taiwan'), +('64.69.88.240', '64.69.88.255', 1078286576, 1078286591, 'CA', 'Canada'), +('64.69.89.0', '64.69.89.159', 1078286592, 1078286751, 'US', 'United States'), +('64.69.89.160', '64.69.89.167', 1078286752, 1078286759, 'CA', 'Canada'), +('64.69.89.168', '64.69.89.255', 1078286760, 1078286847, 'US', 'United States'), +('64.69.90.0', '64.69.90.127', 1078286848, 1078286975, 'CA', 'Canada'), +('64.69.90.128', '64.69.90.143', 1078286976, 1078286991, 'US', 'United States'), +('64.69.90.144', '64.69.90.175', 1078286992, 1078287023, 'CA', 'Canada'), +('64.69.90.176', '64.69.90.191', 1078287024, 1078287039, 'US', 'United States'), +('64.69.90.192', '64.69.90.223', 1078287040, 1078287071, 'CA', 'Canada'), +('64.69.90.224', '64.69.90.255', 1078287072, 1078287103, 'US', 'United States'), +('64.69.91.0', '64.69.91.79', 1078287104, 1078287183, 'CA', 'Canada'), +('64.69.91.80', '64.69.91.95', 1078287184, 1078287199, 'US', 'United States'), +('64.69.91.96', '64.69.91.127', 1078287200, 1078287231, 'CA', 'Canada'), +('64.69.91.128', '64.69.91.143', 1078287232, 1078287247, 'US', 'United States'), +('64.69.91.144', '64.69.91.191', 1078287248, 1078287295, 'CA', 'Canada'), +('64.69.91.192', '64.69.91.239', 1078287296, 1078287343, 'US', 'United States'), +('64.69.91.240', '64.69.93.143', 1078287344, 1078287759, 'CA', 'Canada'), +('64.69.93.144', '64.69.93.159', 1078287760, 1078287775, 'US', 'United States'), +('64.69.93.160', '64.69.93.223', 1078287776, 1078287839, 'CA', 'Canada'), +('64.69.93.224', '64.69.93.255', 1078287840, 1078287871, 'US', 'United States'), +('64.69.94.0', '64.69.94.255', 1078287872, 1078288127, 'CA', 'Canada'), +('64.69.95.0', '64.70.27.191', 1078288128, 1078336447, 'US', 'United States'), +('64.70.27.192', '64.70.27.199', 1078336448, 1078336455, 'HK', 'Hong Kong'), +('64.70.27.200', '64.70.27.207', 1078336456, 1078336463, 'US', 'United States'), +('64.70.27.208', '64.70.27.223', 1078336464, 1078336479, 'HK', 'Hong Kong'), +('64.70.27.224', '64.70.48.175', 1078336480, 1078341807, 'US', 'United States'), +('64.70.48.176', '64.70.48.191', 1078341808, 1078341823, 'PH', 'Philippines'), +('64.70.48.192', '64.70.77.255', 1078341824, 1078349311, 'US', 'United States'), +('64.70.78.0', '64.70.79.255', 1078349312, 1078349823, 'PH', 'Philippines'), +('64.70.80.0', '64.71.129.127', 1078349824, 1078428031, 'US', 'United States'), +('64.71.129.128', '64.71.129.255', 1078428032, 1078428159, 'AU', 'Australia'), +('64.71.130.0', '64.71.130.95', 1078428160, 1078428255, 'US', 'United States'), +('64.71.130.96', '64.71.130.103', 1078428256, 1078428263, 'PH', 'Philippines'), +('64.71.130.104', '64.71.130.127', 1078428264, 1078428287, 'US', 'United States'), +('64.71.130.128', '64.71.130.255', 1078428288, 1078428415, 'JP', 'Japan'), +('64.71.131.0', '64.71.131.191', 1078428416, 1078428607, 'US', 'United States'), +('64.71.131.192', '64.71.131.223', 1078428608, 1078428639, 'DE', 'Germany'), +('64.71.131.224', '64.71.133.71', 1078428640, 1078428999, 'US', 'United States'), +('64.71.133.72', '64.71.133.79', 1078429000, 1078429007, 'MX', 'Mexico'), +('64.71.133.80', '64.71.135.183', 1078429008, 1078429623, 'US', 'United States'), +('64.71.135.184', '64.71.135.191', 1078429624, 1078429631, 'AU', 'Australia'), +('64.71.135.192', '64.71.135.255', 1078429632, 1078429695, 'US', 'United States'), +('64.71.136.0', '64.71.136.255', 1078429696, 1078429951, 'GR', 'Greece'), +('64.71.137.0', '64.71.137.143', 1078429952, 1078430095, 'US', 'United States'), +('64.71.137.144', '64.71.137.159', 1078430096, 1078430111, 'AE', 'United Arab Emirates'), +('64.71.137.160', '64.71.137.207', 1078430112, 1078430159, 'US', 'United States'), +('64.71.137.208', '64.71.137.215', 1078430160, 1078430167, 'FJ', 'Fiji'), +('64.71.137.216', '64.71.140.127', 1078430168, 1078430847, 'US', 'United States'), +('64.71.140.128', '64.71.140.135', 1078430848, 1078430855, 'JP', 'Japan'), +('64.71.140.136', '64.71.140.191', 1078430856, 1078430911, 'US', 'United States'), +('64.71.140.192', '64.71.140.255', 1078430912, 1078430975, 'AU', 'Australia'), +('64.71.141.0', '64.71.145.95', 1078430976, 1078432095, 'US', 'United States'), +('64.71.145.96', '64.71.145.103', 1078432096, 1078432103, 'JP', 'Japan'), +('64.71.145.104', '64.71.145.151', 1078432104, 1078432151, 'US', 'United States'), +('64.71.145.152', '64.71.145.159', 1078432152, 1078432159, 'JP', 'Japan'), +('64.71.145.160', '64.71.145.223', 1078432160, 1078432223, 'US', 'United States'), +('64.71.145.224', '64.71.145.239', 1078432224, 1078432239, 'AE', 'United Arab Emirates'), +('64.71.145.240', '64.71.147.255', 1078432240, 1078432767, 'US', 'United States'), +('64.71.148.0', '64.71.148.7', 1078432768, 1078432775, 'GB', 'United Kingdom'), +('64.71.148.8', '64.71.148.111', 1078432776, 1078432879, 'US', 'United States'), +('64.71.148.112', '64.71.148.119', 1078432880, 1078432887, 'GB', 'United Kingdom'), +('64.71.148.120', '64.71.148.159', 1078432888, 1078432927, 'US', 'United States'), +('64.71.148.160', '64.71.148.175', 1078432928, 1078432943, 'JM', 'Jamaica'), +('64.71.148.176', '64.71.150.31', 1078432944, 1078433311, 'US', 'United States'), +('64.71.150.32', '64.71.150.63', 1078433312, 1078433343, 'IT', 'Italy'), +('64.71.150.64', '64.71.151.95', 1078433344, 1078433631, 'US', 'United States'), +('64.71.151.96', '64.71.151.127', 1078433632, 1078433663, 'CN', 'China'), +('64.71.151.128', '64.71.153.31', 1078433664, 1078434079, 'US', 'United States'), +('64.71.153.32', '64.71.153.39', 1078434080, 1078434087, 'LV', 'Latvia'), +('64.71.153.40', '64.71.153.223', 1078434088, 1078434271, 'US', 'United States'), +('64.71.153.224', '64.71.153.255', 1078434272, 1078434303, 'GR', 'Greece'), +('64.71.154.0', '64.71.155.199', 1078434304, 1078434759, 'US', 'United States'), +('64.71.155.200', '64.71.155.207', 1078434760, 1078434767, 'BE', 'Belgium'), +('64.71.155.208', '64.71.155.215', 1078434768, 1078434775, 'US', 'United States'), +('64.71.155.216', '64.71.155.223', 1078434776, 1078434783, 'JP', 'Japan'), +('64.71.155.224', '64.71.156.111', 1078434784, 1078434927, 'US', 'United States'), +('64.71.156.112', '64.71.156.127', 1078434928, 1078434943, 'DE', 'Germany'), +('64.71.156.128', '64.71.157.159', 1078434944, 1078435231, 'US', 'United States'), +('64.71.157.160', '64.71.157.167', 1078435232, 1078435239, 'JP', 'Japan'), +('64.71.157.168', '64.71.158.95', 1078435240, 1078435423, 'US', 'United States'), +('64.71.158.96', '64.71.158.127', 1078435424, 1078435455, 'HK', 'Hong Kong'), +('64.71.158.128', '64.71.158.143', 1078435456, 1078435471, 'US', 'United States'), +('64.71.158.144', '64.71.158.151', 1078435472, 1078435479, 'BM', 'Bermuda'), +('64.71.158.152', '64.71.162.127', 1078435480, 1078436479, 'US', 'United States'), +('64.71.162.128', '64.71.162.255', 1078436480, 1078436607, 'JP', 'Japan'), +('64.71.163.0', '64.71.163.111', 1078436608, 1078436719, 'US', 'United States'), +('64.71.163.112', '64.71.163.119', 1078436720, 1078436727, 'JP', 'Japan'), +('64.71.163.120', '64.71.163.159', 1078436728, 1078436767, 'US', 'United States'), +('64.71.163.160', '64.71.163.191', 1078436768, 1078436799, 'GB', 'United Kingdom'), +('64.71.163.192', '64.71.166.95', 1078436800, 1078437471, 'US', 'United States'), +('64.71.166.96', '64.71.166.103', 1078437472, 1078437479, 'JP', 'Japan'), +('64.71.166.104', '64.71.166.127', 1078437480, 1078437503, 'US', 'United States'), +('64.71.166.128', '64.71.166.191', 1078437504, 1078437567, 'IT', 'Italy'), +('64.71.166.192', '64.71.166.223', 1078437568, 1078437599, 'HK', 'Hong Kong'), +('64.71.166.224', '64.71.169.255', 1078437600, 1078438399, 'US', 'United States'), +('64.71.170.0', '64.71.170.255', 1078438400, 1078438655, 'CA', 'Canada'), +('64.71.171.0', '64.71.171.255', 1078438656, 1078438911, 'US', 'United States'), +('64.71.172.0', '64.71.172.255', 1078438912, 1078439167, 'CN', 'China'), +('64.71.173.0', '64.71.173.255', 1078439168, 1078439423, 'HK', 'Hong Kong'), +('64.71.174.0', '64.71.174.255', 1078439424, 1078439679, 'US', 'United States'), +('64.71.175.0', '64.71.175.255', 1078439680, 1078439935, 'NL', 'Netherlands'), +('64.71.176.0', '64.71.239.255', 1078439936, 1078456319, 'US', 'United States'), +('64.71.240.0', '64.71.255.255', 1078456320, 1078460415, 'CA', 'Canada'), +('64.72.0.0', '64.72.223.255', 1078460416, 1078517759, 'US', 'United States'), +('64.72.224.0', '64.72.255.255', 1078517760, 1078525951, 'CA', 'Canada'), +('64.73.0.0', '64.74.35.191', 1078525952, 1078600639, 'US', 'United States'), +('64.74.35.192', '64.74.35.199', 1078600640, 1078600647, 'GB', 'United Kingdom'), +('64.74.35.200', '64.74.94.127', 1078600648, 1078615679, 'US', 'United States'), +('64.74.94.128', '64.74.94.159', 1078615680, 1078615711, 'GB', 'United Kingdom'), +('64.74.94.160', '64.74.117.255', 1078615712, 1078621695, 'US', 'United States'), +('64.74.118.0', '64.74.118.255', 1078621696, 1078621951, 'IN', 'India'), +('64.74.119.0', '64.74.242.255', 1078621952, 1078653695, 'US', 'United States'), +('64.74.243.0', '64.74.243.31', 1078653696, 1078653727, 'CZ', 'Czech Republic'), +('64.74.243.32', '64.75.255.255', 1078653728, 1078722559, 'US', 'United States'), +('64.76.0.0', '64.76.29.143', 1078722560, 1078730127, 'AR', 'Argentina'), +('64.76.29.144', '64.76.29.151', 1078730128, 1078730135, 'CH', 'Switzerland'), +('64.76.29.152', '64.76.47.255', 1078730136, 1078734847, 'AR', 'Argentina'), +('64.76.48.0', '64.76.59.255', 1078734848, 1078737919, 'CO', 'Colombia'), +('64.76.60.0', '64.76.63.255', 1078737920, 1078738943, 'EC', 'Ecuador'), +('64.76.64.0', '64.76.65.255', 1078738944, 1078739455, 'VE', 'Venezuela'), +('64.76.66.0', '64.76.67.255', 1078739456, 1078739967, 'US', 'United States'), +('64.76.68.0', '64.76.79.255', 1078739968, 1078743039, 'PE', 'Peru'), +('64.76.80.0', '64.76.91.255', 1078743040, 1078746111, 'CO', 'Colombia'), +('64.76.92.0', '64.76.95.255', 1078746112, 1078747135, 'PE', 'Peru'), +('64.76.96.0', '64.76.103.255', 1078747136, 1078749183, 'CL', 'Chile'), +('64.76.104.0', '64.76.108.23', 1078749184, 1078750231, 'PE', 'Peru'), +('64.76.108.24', '64.76.108.31', 1078750232, 1078750239, 'CA', 'Canada'), +('64.76.108.32', '64.76.111.255', 1078750240, 1078751231, 'PE', 'Peru'), +('64.76.112.0', '64.76.119.255', 1078751232, 1078753279, 'CO', 'Colombia'), +('64.76.120.0', '64.76.127.255', 1078753280, 1078755327, 'AR', 'Argentina'), +('64.76.128.0', '64.76.135.255', 1078755328, 1078757375, 'PE', 'Peru'), +('64.76.136.0', '64.76.136.47', 1078757376, 1078757423, 'CL', 'Chile'), +('64.76.136.48', '64.76.136.63', 1078757424, 1078757439, 'EC', 'Ecuador'), +('64.76.136.64', '64.76.175.255', 1078757440, 1078767615, 'CL', 'Chile'), +('64.76.176.0', '64.76.179.255', 1078767616, 1078768639, 'CO', 'Colombia'), +('64.76.180.0', '64.76.183.255', 1078768640, 1078769663, 'CL', 'Chile'), +('64.76.184.0', '64.76.191.255', 1078769664, 1078771711, 'CO', 'Colombia'), +('64.76.192.0', '64.76.199.255', 1078771712, 1078773759, 'EC', 'Ecuador'), +('64.76.200.0', '64.76.207.255', 1078773760, 1078775807, 'PE', 'Peru'), +('64.76.208.0', '64.76.215.255', 1078775808, 1078777855, 'CO', 'Colombia'), +('64.76.216.0', '64.76.227.255', 1078777856, 1078780927, 'EC', 'Ecuador'), +('64.76.228.0', '64.76.233.255', 1078780928, 1078782463, 'US', 'United States'), +('64.76.234.0', '64.76.234.255', 1078782464, 1078782719, 'PA', 'Panama'), +('64.76.235.0', '64.77.12.47', 1078782720, 1078791215, 'US', 'United States'), +('64.77.12.48', '64.77.12.55', 1078791216, 1078791223, 'AU', 'Australia'), +('64.77.12.56', '64.77.12.87', 1078791224, 1078791255, 'US', 'United States'), +('64.77.12.88', '64.77.12.95', 1078791256, 1078791263, 'CO', 'Colombia'), +('64.77.12.96', '64.77.12.135', 1078791264, 1078791303, 'US', 'United States'), +('64.77.12.136', '64.77.12.143', 1078791304, 1078791311, 'CA', 'Canada'), +('64.77.12.144', '64.77.12.151', 1078791312, 1078791319, 'US', 'United States'), +('64.77.12.152', '64.77.12.175', 1078791320, 1078791343, 'AU', 'Australia'), +('64.77.12.176', '64.77.12.223', 1078791344, 1078791391, 'US', 'United States'), +('64.77.12.224', '64.77.12.239', 1078791392, 1078791407, 'MX', 'Mexico'), +('64.77.12.240', '64.77.13.15', 1078791408, 1078791439, 'US', 'United States'), +('64.77.13.16', '64.77.13.23', 1078791440, 1078791447, 'PK', 'Pakistan'), +('64.77.13.24', '64.77.13.47', 1078791448, 1078791471, 'US', 'United States'), +('64.77.13.48', '64.77.13.63', 1078791472, 1078791487, 'IL', 'Israel'), +('64.77.13.64', '64.77.13.79', 1078791488, 1078791503, 'US', 'United States'), +('64.77.13.80', '64.77.13.95', 1078791504, 1078791519, 'MX', 'Mexico'), +('64.77.13.96', '64.77.14.31', 1078791520, 1078791711, 'US', 'United States'), +('64.77.14.32', '64.77.14.47', 1078791712, 1078791727, 'AU', 'Australia'), +('64.77.14.48', '64.77.15.79', 1078791728, 1078792015, 'US', 'United States'), +('64.77.15.80', '64.77.15.95', 1078792016, 1078792031, 'AU', 'Australia'), +('64.77.15.96', '64.77.15.159', 1078792032, 1078792095, 'US', 'United States'), +('64.77.15.160', '64.77.15.175', 1078792096, 1078792111, 'AU', 'Australia'), +('64.77.15.176', '64.77.15.191', 1078792112, 1078792127, 'IN', 'India'), +('64.77.15.192', '64.77.15.239', 1078792128, 1078792175, 'US', 'United States'), +('64.77.15.240', '64.77.15.255', 1078792176, 1078792191, 'AU', 'Australia'), +('64.77.16.0', '64.77.17.63', 1078792192, 1078792511, 'US', 'United States'), +('64.77.17.64', '64.77.17.95', 1078792512, 1078792543, 'SG', 'Singapore'), +('64.77.17.96', '64.77.19.159', 1078792544, 1078793119, 'US', 'United States'), +('64.77.19.160', '64.77.19.191', 1078793120, 1078793151, 'CA', 'Canada'), +('64.77.19.192', '64.77.21.63', 1078793152, 1078793535, 'US', 'United States'), +('64.77.21.64', '64.77.21.127', 1078793536, 1078793599, 'ZA', 'South Africa'), +('64.77.21.128', '64.77.21.191', 1078793600, 1078793663, 'US', 'United States'), +('64.77.21.192', '64.77.21.255', 1078793664, 1078793727, 'ZA', 'South Africa'), +('64.77.22.0', '64.77.24.255', 1078793728, 1078794495, 'US', 'United States'), +('64.77.25.0', '64.77.25.63', 1078794496, 1078794559, 'ZA', 'South Africa'), +('64.77.25.64', '64.77.25.95', 1078794560, 1078794591, 'US', 'United States'), +('64.77.25.96', '64.77.25.127', 1078794592, 1078794623, 'AU', 'Australia'), +('64.77.25.128', '64.77.27.151', 1078794624, 1078795159, 'US', 'United States'), +('64.77.27.152', '64.77.27.159', 1078795160, 1078795167, 'AE', 'United Arab Emirates'), +('64.77.27.160', '64.77.27.247', 1078795168, 1078795255, 'US', 'United States'), +('64.77.27.248', '64.77.27.255', 1078795256, 1078795263, 'MX', 'Mexico'), +('64.77.28.0', '64.77.29.247', 1078795264, 1078795767, 'US', 'United States'), +('64.77.29.248', '64.77.29.255', 1078795768, 1078795775, 'IN', 'India'), +('64.77.30.0', '64.77.30.7', 1078795776, 1078795783, 'CA', 'Canada'), +('64.77.30.8', '64.77.30.31', 1078795784, 1078795807, 'US', 'United States'), +('64.77.30.32', '64.77.30.39', 1078795808, 1078795815, 'AU', 'Australia'), +('64.77.30.40', '64.77.30.47', 1078795816, 1078795823, 'US', 'United States'), +('64.77.30.48', '64.77.30.55', 1078795824, 1078795831, 'CA', 'Canada'), +('64.77.30.56', '64.77.30.111', 1078795832, 1078795887, 'US', 'United States'), +('64.77.30.112', '64.77.30.119', 1078795888, 1078795895, 'CA', 'Canada'), +('64.77.30.120', '64.77.30.127', 1078795896, 1078795903, 'US', 'United States'), +('64.77.30.128', '64.77.30.135', 1078795904, 1078795911, 'ES', 'Spain'), +('64.77.30.136', '64.77.36.87', 1078795912, 1078797399, 'US', 'United States'), +('64.77.36.88', '64.77.36.95', 1078797400, 1078797407, 'CA', 'Canada'), +('64.77.36.96', '64.77.37.23', 1078797408, 1078797591, 'US', 'United States'), +('64.77.37.24', '64.77.37.31', 1078797592, 1078797599, 'IN', 'India'), +('64.77.37.32', '64.77.37.135', 1078797600, 1078797703, 'US', 'United States'), +('64.77.37.136', '64.77.37.143', 1078797704, 1078797711, 'JP', 'Japan'), +('64.77.37.144', '64.77.37.223', 1078797712, 1078797791, 'US', 'United States'), +('64.77.37.224', '64.77.37.247', 1078797792, 1078797815, 'IN', 'India'), +('64.77.37.248', '64.77.37.255', 1078797816, 1078797823, 'MX', 'Mexico'), +('64.77.38.0', '64.77.38.167', 1078797824, 1078797991, 'US', 'United States'), +('64.77.38.168', '64.77.38.175', 1078797992, 1078797999, 'CA', 'Canada'), +('64.77.38.176', '64.77.38.247', 1078798000, 1078798071, 'US', 'United States'), +('64.77.38.248', '64.77.38.255', 1078798072, 1078798079, 'GB', 'United Kingdom'), +('64.77.39.0', '64.77.39.31', 1078798080, 1078798111, 'US', 'United States'), +('64.77.39.32', '64.77.39.39', 1078798112, 1078798119, 'CA', 'Canada'), +('64.77.39.40', '64.77.39.71', 1078798120, 1078798151, 'US', 'United States'), +('64.77.39.72', '64.77.39.79', 1078798152, 1078798159, 'AU', 'Australia'), +('64.77.39.80', '64.77.39.103', 1078798160, 1078798183, 'US', 'United States'), +('64.77.39.104', '64.77.39.111', 1078798184, 1078798191, 'FR', 'France'), +('64.77.39.112', '64.77.39.119', 1078798192, 1078798199, 'IN', 'India'), +('64.77.39.120', '64.77.39.127', 1078798200, 1078798207, 'US', 'United States'), +('64.77.39.128', '64.77.39.135', 1078798208, 1078798215, 'IN', 'India'), +('64.77.39.136', '64.77.39.143', 1078798216, 1078798223, 'GB', 'United Kingdom'), +('64.77.39.144', '64.77.39.151', 1078798224, 1078798231, 'GR', 'Greece'), +('64.77.39.152', '64.77.39.199', 1078798232, 1078798279, 'US', 'United States'), +('64.77.39.200', '64.77.39.207', 1078798280, 1078798287, 'PK', 'Pakistan'), +('64.77.39.208', '64.77.40.111', 1078798288, 1078798447, 'US', 'United States'), +('64.77.40.112', '64.77.40.119', 1078798448, 1078798455, 'AT', 'Austria'), +('64.77.40.120', '64.77.40.239', 1078798456, 1078798575, 'US', 'United States'), +('64.77.40.240', '64.77.40.255', 1078798576, 1078798591, 'AR', 'Argentina'), +('64.77.41.0', '64.77.41.95', 1078798592, 1078798687, 'US', 'United States'), +('64.77.41.96', '64.77.41.111', 1078798688, 1078798703, 'AU', 'Australia'), +('64.77.41.112', '64.77.42.63', 1078798704, 1078798911, 'US', 'United States'), +('64.77.42.64', '64.77.42.79', 1078798912, 1078798927, 'IT', 'Italy'), +('64.77.42.80', '64.77.42.191', 1078798928, 1078799039, 'US', 'United States'), +('64.77.42.192', '64.77.42.207', 1078799040, 1078799055, 'IT', 'Italy'), +('64.77.42.208', '64.77.42.223', 1078799056, 1078799071, 'US', 'United States'), +('64.77.42.224', '64.77.42.239', 1078799072, 1078799087, 'CA', 'Canada'), +('64.77.42.240', '64.77.43.159', 1078799088, 1078799263, 'US', 'United States'), +('64.77.43.160', '64.77.43.191', 1078799264, 1078799295, 'MX', 'Mexico'), +('64.77.43.192', '64.77.44.63', 1078799296, 1078799423, 'US', 'United States'), +('64.77.44.64', '64.77.44.95', 1078799424, 1078799455, 'MX', 'Mexico'), +('64.77.44.96', '64.77.44.191', 1078799456, 1078799551, 'US', 'United States'), +('64.77.44.192', '64.77.44.223', 1078799552, 1078799583, 'ID', 'Indonesia'), +('64.77.44.224', '64.77.45.63', 1078799584, 1078799679, 'US', 'United States'), +('64.77.45.64', '64.77.45.127', 1078799680, 1078799743, 'BR', 'Brazil'), +('64.77.45.128', '64.77.46.127', 1078799744, 1078799999, 'US', 'United States'), +('64.77.46.128', '64.77.46.159', 1078800000, 1078800031, 'AU', 'Australia'), +('64.77.46.160', '64.77.47.63', 1078800032, 1078800191, 'US', 'United States'), +('64.77.47.64', '64.77.47.95', 1078800192, 1078800223, 'IN', 'India'), +('64.77.47.96', '64.77.47.159', 1078800224, 1078800287, 'US', 'United States'), +('64.77.47.160', '64.77.47.191', 1078800288, 1078800319, 'MX', 'Mexico'), +('64.77.47.192', '64.77.49.159', 1078800320, 1078800799, 'US', 'United States'), +('64.77.49.160', '64.77.49.191', 1078800800, 1078800831, 'MX', 'Mexico'), +('64.77.49.192', '64.77.51.175', 1078800832, 1078801327, 'US', 'United States'), +('64.77.51.176', '64.77.51.191', 1078801328, 1078801343, 'CL', 'Chile'), +('64.77.51.192', '64.77.81.159', 1078801344, 1078808991, 'US', 'United States'), +('64.77.81.160', '64.77.81.191', 1078808992, 1078809023, 'AU', 'Australia'), +('64.77.81.192', '64.77.84.47', 1078809024, 1078809647, 'US', 'United States'), +('64.77.84.48', '64.77.84.63', 1078809648, 1078809663, 'CA', 'Canada'), +('64.77.84.64', '64.77.101.183', 1078809664, 1078814135, 'US', 'United States'), +('64.77.101.184', '64.77.101.191', 1078814136, 1078814143, 'HK', 'Hong Kong'), +('64.77.101.192', '64.77.102.191', 1078814144, 1078814399, 'US', 'United States'), +('64.77.102.192', '64.77.102.207', 1078814400, 1078814415, 'CA', 'Canada'), +('64.77.102.208', '64.79.146.255', 1078814416, 1078956799, 'US', 'United States'), +('64.79.147.0', '64.79.147.255', 1078956800, 1078957055, 'GB', 'United Kingdom'), +('64.79.148.0', '64.85.31.255', 1078957056, 1079320575, 'US', 'United States'), +('64.85.32.0', '64.85.32.95', 1079320576, 1079320671, 'CA', 'Canada'), +('64.85.32.96', '64.85.32.127', 1079320672, 1079320703, 'US', 'United States'), +('64.85.32.128', '64.85.32.143', 1079320704, 1079320719, 'CA', 'Canada'), +('64.85.32.144', '64.85.32.159', 1079320720, 1079320735, 'US', 'United States'), +('64.85.32.160', '64.85.32.247', 1079320736, 1079320823, 'CA', 'Canada'), +('64.85.32.248', '64.85.32.255', 1079320824, 1079320831, 'US', 'United States'), +('64.85.33.0', '64.85.33.255', 1079320832, 1079321087, 'CA', 'Canada'), +('64.85.34.0', '64.85.34.15', 1079321088, 1079321103, 'US', 'United States'), +('64.85.34.16', '64.85.34.111', 1079321104, 1079321199, 'CA', 'Canada'), +('64.85.34.112', '64.85.34.119', 1079321200, 1079321207, 'US', 'United States'), +('64.85.34.120', '64.85.34.127', 1079321208, 1079321215, 'CA', 'Canada'), +('64.85.34.128', '64.85.34.143', 1079321216, 1079321231, 'US', 'United States'), +('64.85.34.144', '64.85.40.79', 1079321232, 1079322703, 'CA', 'Canada'), +('64.85.40.80', '64.85.40.95', 1079322704, 1079322719, 'US', 'United States'), +('64.85.40.96', '64.85.40.191', 1079322720, 1079322815, 'CA', 'Canada'), +('64.85.40.192', '64.85.40.215', 1079322816, 1079322839, 'US', 'United States'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('64.85.40.216', '64.85.40.223', 1079322840, 1079322847, 'CA', 'Canada'), +('64.85.40.224', '64.85.40.239', 1079322848, 1079322863, 'US', 'United States'), +('64.85.40.240', '64.85.42.95', 1079322864, 1079323231, 'CA', 'Canada'), +('64.85.42.96', '64.85.42.111', 1079323232, 1079323247, 'US', 'United States'), +('64.85.42.112', '64.85.42.127', 1079323248, 1079323263, 'CA', 'Canada'), +('64.85.42.128', '64.85.42.143', 1079323264, 1079323279, 'US', 'United States'), +('64.85.42.144', '64.85.42.175', 1079323280, 1079323311, 'CA', 'Canada'), +('64.85.42.176', '64.85.42.191', 1079323312, 1079323327, 'US', 'United States'), +('64.85.42.192', '64.85.43.23', 1079323328, 1079323415, 'CA', 'Canada'), +('64.85.43.24', '64.85.43.31', 1079323416, 1079323423, 'US', 'United States'), +('64.85.43.32', '64.85.43.191', 1079323424, 1079323583, 'CA', 'Canada'), +('64.85.43.192', '64.85.43.207', 1079323584, 1079323599, 'US', 'United States'), +('64.85.43.208', '64.85.43.223', 1079323600, 1079323615, 'CA', 'Canada'), +('64.85.43.224', '64.85.43.255', 1079323616, 1079323647, 'US', 'United States'), +('64.85.44.0', '64.85.47.39', 1079323648, 1079324455, 'CA', 'Canada'), +('64.85.47.40', '64.85.47.47', 1079324456, 1079324463, 'US', 'United States'), +('64.85.47.48', '64.85.48.127', 1079324464, 1079324799, 'CA', 'Canada'), +('64.85.48.128', '64.85.48.159', 1079324800, 1079324831, 'US', 'United States'), +('64.85.48.160', '64.85.51.15', 1079324832, 1079325455, 'CA', 'Canada'), +('64.85.51.16', '64.85.51.43', 1079325456, 1079325483, 'US', 'United States'), +('64.85.51.44', '64.85.51.87', 1079325484, 1079325527, 'CA', 'Canada'), +('64.85.51.88', '64.85.51.95', 1079325528, 1079325535, 'US', 'United States'), +('64.85.51.96', '64.85.51.107', 1079325536, 1079325547, 'CA', 'Canada'), +('64.85.51.108', '64.85.51.119', 1079325548, 1079325559, 'US', 'United States'), +('64.85.51.120', '64.85.51.159', 1079325560, 1079325599, 'CA', 'Canada'), +('64.85.51.160', '64.85.51.167', 1079325600, 1079325607, 'US', 'United States'), +('64.85.51.168', '64.85.51.255', 1079325608, 1079325695, 'CA', 'Canada'), +('64.85.52.0', '64.85.52.31', 1079325696, 1079325727, 'US', 'United States'), +('64.85.52.32', '64.85.52.175', 1079325728, 1079325871, 'CA', 'Canada'), +('64.85.52.176', '64.85.52.191', 1079325872, 1079325887, 'US', 'United States'), +('64.85.52.192', '64.85.53.39', 1079325888, 1079325991, 'CA', 'Canada'), +('64.85.53.40', '64.85.53.47', 1079325992, 1079325999, 'US', 'United States'), +('64.85.53.48', '64.85.62.247', 1079326000, 1079328503, 'CA', 'Canada'), +('64.85.62.248', '64.85.62.255', 1079328504, 1079328511, 'US', 'United States'), +('64.85.63.0', '64.85.63.255', 1079328512, 1079328767, 'CA', 'Canada'), +('64.85.64.0', '64.85.68.127', 1079328768, 1079329919, 'US', 'United States'), +('64.85.68.128', '64.85.68.159', 1079329920, 1079329951, 'CA', 'Canada'), +('64.85.68.160', '64.85.163.15', 1079329952, 1079354127, 'US', 'United States'), +('64.85.163.16', '64.85.163.31', 1079354128, 1079354143, 'TR', 'Turkey'), +('64.85.163.32', '64.85.169.255', 1079354144, 1079355903, 'US', 'United States'), +('64.85.170.0', '64.85.170.35', 1079355904, 1079355939, 'CA', 'Canada'), +('64.85.170.36', '64.85.170.47', 1079355940, 1079355951, 'AU', 'Australia'), +('64.85.170.48', '64.85.171.255', 1079355952, 1079356415, 'CA', 'Canada'), +('64.85.172.0', '64.85.172.247', 1079356416, 1079356663, 'US', 'United States'), +('64.85.172.248', '64.85.172.255', 1079356664, 1079356671, 'CA', 'Canada'), +('64.85.173.0', '64.85.255.255', 1079356672, 1079377919, 'US', 'United States'), +('64.86.0.0', '64.86.3.255', 1079377920, 1079378943, 'CA', 'Canada'), +('64.86.4.0', '64.86.4.255', 1079378944, 1079379199, 'US', 'United States'), +('64.86.5.0', '64.86.5.255', 1079379200, 1079379455, 'CA', 'Canada'), +('64.86.6.0', '64.86.6.255', 1079379456, 1079379711, 'US', 'United States'), +('64.86.7.0', '64.86.11.191', 1079379712, 1079380927, 'CA', 'Canada'), +('64.86.11.192', '64.86.12.191', 1079380928, 1079381183, 'US', 'United States'), +('64.86.12.192', '64.86.13.255', 1079381184, 1079381503, 'CA', 'Canada'), +('64.86.14.0', '64.86.14.95', 1079381504, 1079381599, 'US', 'United States'), +('64.86.14.96', '64.86.14.127', 1079381600, 1079381631, 'WS', 'Samoa'), +('64.86.14.128', '64.86.15.255', 1079381632, 1079382015, 'US', 'United States'), +('64.86.16.0', '64.86.17.255', 1079382016, 1079382527, 'CA', 'Canada'), +('64.86.18.0', '64.86.19.255', 1079382528, 1079383039, 'US', 'United States'), +('64.86.20.0', '64.86.20.255', 1079383040, 1079383295, 'VG', 'Virgin Islands, British'), +('64.86.21.0', '64.86.22.255', 1079383296, 1079383807, 'US', 'United States'), +('64.86.23.0', '64.86.23.255', 1079383808, 1079384063, 'MH', 'Marshall Islands'), +('64.86.24.0', '64.86.24.255', 1079384064, 1079384319, 'LR', 'Liberia'), +('64.86.25.0', '64.86.25.255', 1079384320, 1079384575, 'CA', 'Canada'), +('64.86.26.0', '64.86.27.255', 1079384576, 1079385087, 'ZW', 'Zimbabwe'), +('64.86.28.0', '64.86.30.255', 1079385088, 1079385855, 'CA', 'Canada'), +('64.86.31.0', '64.86.31.255', 1079385856, 1079386111, 'SZ', 'Swaziland'), +('64.86.32.0', '64.86.33.255', 1079386112, 1079386623, 'US', 'United States'), +('64.86.34.0', '64.86.34.255', 1079386624, 1079386879, 'SG', 'Singapore'), +('64.86.35.0', '64.86.35.255', 1079386880, 1079387135, 'EG', 'Egypt'), +('64.86.36.0', '64.86.36.255', 1079387136, 1079387391, 'US', 'United States'), +('64.86.37.0', '64.86.37.255', 1079387392, 1079387647, 'NG', 'Nigeria'), +('64.86.38.0', '64.86.38.255', 1079387648, 1079387903, 'US', 'United States'), +('64.86.39.0', '64.86.39.255', 1079387904, 1079388159, 'PH', 'Philippines'), +('64.86.40.0', '64.86.44.255', 1079388160, 1079389439, 'CA', 'Canada'), +('64.86.45.0', '64.86.45.255', 1079389440, 1079389695, 'US', 'United States'), +('64.86.46.0', '64.86.46.255', 1079389696, 1079389951, 'LC', 'Saint Lucia'), +('64.86.47.0', '64.86.49.255', 1079389952, 1079390719, 'CA', 'Canada'), +('64.86.50.0', '64.86.51.255', 1079390720, 1079391231, 'US', 'United States'), +('64.86.52.0', '64.86.52.255', 1079391232, 1079391487, 'LC', 'Saint Lucia'), +('64.86.53.0', '64.86.53.127', 1079391488, 1079391615, 'CA', 'Canada'), +('64.86.53.128', '64.86.53.191', 1079391616, 1079391679, 'US', 'United States'), +('64.86.53.192', '64.86.53.255', 1079391680, 1079391743, 'CA', 'Canada'), +('64.86.54.0', '64.86.55.255', 1079391744, 1079392255, 'HT', 'Haiti'), +('64.86.56.0', '64.86.59.255', 1079392256, 1079393279, 'CA', 'Canada'), +('64.86.60.0', '64.86.61.255', 1079393280, 1079393791, 'US', 'United States'), +('64.86.62.0', '64.86.63.15', 1079393792, 1079394063, 'CA', 'Canada'), +('64.86.63.16', '64.86.63.23', 1079394064, 1079394071, 'SG', 'Singapore'), +('64.86.63.24', '64.86.63.31', 1079394072, 1079394079, 'CA', 'Canada'), +('64.86.63.32', '64.86.63.63', 1079394080, 1079394111, 'US', 'United States'), +('64.86.63.64', '64.86.63.95', 1079394112, 1079394143, 'AF', 'Afghanistan'), +('64.86.63.96', '64.86.63.127', 1079394144, 1079394175, 'CA', 'Canada'), +('64.86.63.128', '64.86.63.143', 1079394176, 1079394191, 'US', 'United States'), +('64.86.63.144', '64.86.63.191', 1079394192, 1079394239, 'CA', 'Canada'), +('64.86.63.192', '64.86.63.255', 1079394240, 1079394303, 'US', 'United States'), +('64.86.64.0', '64.86.67.255', 1079394304, 1079395327, 'EC', 'Ecuador'), +('64.86.68.0', '64.86.69.255', 1079395328, 1079395839, 'CA', 'Canada'), +('64.86.70.0', '64.86.71.255', 1079395840, 1079396351, 'US', 'United States'), +('64.86.72.0', '64.86.75.255', 1079396352, 1079397375, 'MP', 'Northern Mariana Islands'), +('64.86.76.0', '64.86.76.255', 1079397376, 1079397631, 'MH', 'Marshall Islands'), +('64.86.77.0', '64.86.77.255', 1079397632, 1079397887, 'CA', 'Canada'), +('64.86.78.0', '64.86.79.255', 1079397888, 1079398399, 'US', 'United States'), +('64.86.80.0', '64.86.84.159', 1079398400, 1079399583, 'CA', 'Canada'), +('64.86.84.160', '64.86.84.175', 1079399584, 1079399599, 'US', 'United States'), +('64.86.84.176', '64.86.85.255', 1079399600, 1079399935, 'CA', 'Canada'), +('64.86.86.0', '64.86.87.255', 1079399936, 1079400447, 'US', 'United States'), +('64.86.88.0', '64.86.88.63', 1079400448, 1079400511, 'FR', 'France'), +('64.86.88.64', '64.86.88.127', 1079400512, 1079400575, 'CA', 'Canada'), +('64.86.88.128', '64.86.88.191', 1079400576, 1079400639, 'US', 'United States'), +('64.86.88.192', '64.86.88.255', 1079400640, 1079400703, 'CA', 'Canada'), +('64.86.89.0', '64.86.89.127', 1079400704, 1079400831, 'US', 'United States'), +('64.86.89.128', '64.86.93.255', 1079400832, 1079401983, 'CA', 'Canada'), +('64.86.94.0', '64.86.95.255', 1079401984, 1079402495, 'US', 'United States'), +('64.86.96.0', '64.86.97.255', 1079402496, 1079403007, 'CA', 'Canada'), +('64.86.98.0', '64.86.99.255', 1079403008, 1079403519, 'US', 'United States'), +('64.86.100.0', '64.86.100.255', 1079403520, 1079403775, 'CA', 'Canada'), +('64.86.101.0', '64.86.101.191', 1079403776, 1079403967, 'US', 'United States'), +('64.86.101.192', '64.86.101.223', 1079403968, 1079403999, 'CA', 'Canada'), +('64.86.101.224', '64.86.104.255', 1079404000, 1079404799, 'US', 'United States'), +('64.86.105.0', '64.86.105.223', 1079404800, 1079405023, 'CA', 'Canada'), +('64.86.105.224', '64.86.106.191', 1079405024, 1079405247, 'US', 'United States'), +('64.86.106.192', '64.86.107.95', 1079405248, 1079405407, 'CA', 'Canada'), +('64.86.107.96', '64.86.107.127', 1079405408, 1079405439, 'BD', 'Bangladesh'), +('64.86.107.128', '64.86.107.255', 1079405440, 1079405567, 'US', 'United States'), +('64.86.108.0', '64.86.115.255', 1079405568, 1079407615, 'CA', 'Canada'), +('64.86.116.0', '64.86.117.255', 1079407616, 1079408127, 'US', 'United States'), +('64.86.118.0', '64.86.118.255', 1079408128, 1079408383, 'CA', 'Canada'), +('64.86.119.0', '64.86.119.31', 1079408384, 1079408415, 'ZA', 'South Africa'), +('64.86.119.32', '64.86.119.47', 1079408416, 1079408431, 'CA', 'Canada'), +('64.86.119.48', '64.86.119.63', 1079408432, 1079408447, 'US', 'United States'), +('64.86.119.64', '64.86.120.255', 1079408448, 1079408895, 'CA', 'Canada'), +('64.86.121.0', '64.86.122.255', 1079408896, 1079409407, 'PK', 'Pakistan'), +('64.86.123.0', '64.86.124.255', 1079409408, 1079409919, 'LR', 'Liberia'), +('64.86.125.0', '64.86.125.255', 1079409920, 1079410175, 'US', 'United States'), +('64.86.126.0', '64.86.130.255', 1079410176, 1079411455, 'CA', 'Canada'), +('64.86.131.0', '64.86.131.255', 1079411456, 1079411711, 'PK', 'Pakistan'), +('64.86.132.0', '64.86.135.255', 1079411712, 1079412735, 'CA', 'Canada'), +('64.86.136.0', '64.86.137.255', 1079412736, 1079413247, 'US', 'United States'), +('64.86.138.0', '64.86.138.63', 1079413248, 1079413311, 'CA', 'Canada'), +('64.86.138.64', '64.86.138.95', 1079413312, 1079413343, 'US', 'United States'), +('64.86.138.96', '64.86.141.255', 1079413344, 1079414271, 'CA', 'Canada'), +('64.86.142.0', '64.86.144.255', 1079414272, 1079415039, 'US', 'United States'), +('64.86.145.0', '64.86.145.255', 1079415040, 1079415295, 'HN', 'Honduras'), +('64.86.146.0', '64.86.146.255', 1079415296, 1079415551, 'CA', 'Canada'), +('64.86.147.0', '64.86.149.255', 1079415552, 1079416319, 'US', 'United States'), +('64.86.150.0', '64.86.160.255', 1079416320, 1079419135, 'CA', 'Canada'), +('64.86.161.0', '64.86.163.255', 1079419136, 1079419903, 'US', 'United States'), +('64.86.164.0', '64.86.164.255', 1079419904, 1079420159, 'CA', 'Canada'), +('64.86.165.0', '64.86.166.255', 1079420160, 1079420671, 'US', 'United States'), +('64.86.167.0', '64.86.173.255', 1079420672, 1079422463, 'CA', 'Canada'), +('64.86.174.0', '64.86.177.255', 1079422464, 1079423487, 'MZ', 'Mozambique'), +('64.86.178.0', '64.86.179.255', 1079423488, 1079423999, 'CA', 'Canada'), +('64.86.180.0', '64.86.182.255', 1079424000, 1079424767, 'MZ', 'Mozambique'), +('64.86.183.0', '64.86.184.255', 1079424768, 1079425279, 'US', 'United States'), +('64.86.185.0', '64.86.185.255', 1079425280, 1079425535, 'CA', 'Canada'), +('64.86.186.0', '64.86.186.15', 1079425536, 1079425551, 'ZA', 'South Africa'), +('64.86.186.16', '64.86.191.255', 1079425552, 1079427071, 'CA', 'Canada'), +('64.86.192.0', '64.86.192.255', 1079427072, 1079427327, 'US', 'United States'), +('64.86.193.0', '64.86.193.255', 1079427328, 1079427583, 'CA', 'Canada'), +('64.86.194.0', '64.86.195.255', 1079427584, 1079428095, 'PW', 'Palau'), +('64.86.196.0', '64.86.200.255', 1079428096, 1079429375, 'CA', 'Canada'), +('64.86.201.0', '64.86.202.255', 1079429376, 1079429887, 'US', 'United States'), +('64.86.203.0', '64.86.209.255', 1079429888, 1079431679, 'CA', 'Canada'), +('64.86.210.0', '64.86.211.255', 1079431680, 1079432191, 'ZM', 'Zambia'), +('64.86.212.0', '64.86.215.255', 1079432192, 1079433215, 'CA', 'Canada'), +('64.86.216.0', '64.86.223.255', 1079433216, 1079435263, 'CR', 'Costa Rica'), +('64.86.224.0', '64.86.225.255', 1079435264, 1079435775, 'CO', 'Colombia'), +('64.86.226.0', '64.86.229.255', 1079435776, 1079436799, 'HT', 'Haiti'), +('64.86.230.0', '64.86.231.255', 1079436800, 1079437311, 'CA', 'Canada'), +('64.86.232.0', '64.86.239.255', 1079437312, 1079439359, 'US', 'United States'), +('64.86.240.0', '64.86.254.255', 1079439360, 1079443199, 'CA', 'Canada'), +('64.86.255.0', '64.86.255.31', 1079443200, 1079443231, 'PW', 'Palau'), +('64.86.255.32', '64.86.255.127', 1079443232, 1079443327, 'CA', 'Canada'), +('64.86.255.128', '64.86.255.255', 1079443328, 1079443455, 'AU', 'Australia'), +('64.87.0.0', '64.87.31.255', 1079443456, 1079451647, 'US', 'United States'), +('64.87.128.0', '64.87.255.255', 1079476224, 1079508991, 'CA', 'Canada'), +('64.88.0.0', '64.88.223.255', 1079508992, 1079566335, 'US', 'United States'), +('64.88.224.0', '64.88.239.255', 1079566336, 1079570431, 'A2', 'Satellite Provider'), +('64.88.240.0', '64.88.255.255', 1079570432, 1079574527, 'US', 'United States'), +('64.89.0.0', '64.89.15.255', 1079574528, 1079578623, 'PR', 'Puerto Rico'), +('64.89.16.0', '64.89.42.111', 1079578624, 1079585391, 'US', 'United States'), +('64.89.42.112', '64.89.42.127', 1079585392, 1079585407, 'IN', 'India'), +('64.89.42.128', '64.90.95.255', 1079585408, 1079664639, 'US', 'United States'), +('64.90.96.0', '64.90.111.255', 1079664640, 1079668735, 'CA', 'Canada'), +('64.90.112.0', '64.92.221.159', 1079668736, 1079827871, 'US', 'United States'), +('64.92.221.160', '64.92.221.175', 1079827872, 1079827887, 'RU', 'Russian Federation'), +('64.92.221.176', '64.93.77.255', 1079827888, 1079856639, 'US', 'United States'), +('64.93.78.0', '64.93.78.255', 1079856640, 1079856895, 'IN', 'India'), +('64.93.79.0', '64.93.82.223', 1079856896, 1079857887, 'US', 'United States'), +('64.93.82.224', '64.93.82.239', 1079857888, 1079857903, 'NZ', 'New Zealand'), +('64.93.82.240', '64.93.95.255', 1079857904, 1079861247, 'US', 'United States'), +('64.93.96.0', '64.93.111.255', 1079861248, 1079865343, 'CA', 'Canada'), +('64.93.112.0', '64.94.164.103', 1079865344, 1079944295, 'US', 'United States'), +('64.94.164.104', '64.94.164.111', 1079944296, 1079944303, 'IL', 'Israel'), +('64.94.164.112', '64.94.164.191', 1079944304, 1079944383, 'US', 'United States'), +('64.94.164.192', '64.94.164.223', 1079944384, 1079944415, 'IL', 'Israel'), +('64.94.164.224', '64.94.171.159', 1079944416, 1079946143, 'US', 'United States'), +('64.94.171.160', '64.94.171.167', 1079946144, 1079946151, 'FR', 'France'), +('64.94.171.168', '64.94.200.159', 1079946152, 1079953567, 'US', 'United States'), +('64.94.200.160', '64.94.200.191', 1079953568, 1079953599, 'GB', 'United Kingdom'), +('64.94.200.192', '64.95.103.255', 1079953600, 1079994367, 'US', 'United States'), +('64.95.104.0', '64.95.111.255', 1079994368, 1079996415, 'CA', 'Canada'), +('64.95.112.0', '64.95.211.239', 1079996416, 1080021999, 'US', 'United States'), +('64.95.211.240', '64.95.211.247', 1080022000, 1080022007, 'CA', 'Canada'), +('64.95.211.248', '64.95.240.31', 1080022008, 1080029215, 'US', 'United States'), +('64.95.240.32', '64.95.240.63', 1080029216, 1080029247, 'CA', 'Canada'), +('64.95.240.64', '64.95.255.255', 1080029248, 1080033279, 'US', 'United States'), +('64.96.0.0', '64.99.255.255', 1080033280, 1080295423, 'CA', 'Canada'), +('64.100.0.0', '64.106.133.139', 1080295424, 1080722827, 'US', 'United States'), +('64.106.133.140', '64.106.133.149', 1080722828, 1080722837, 'IT', 'Italy'), +('64.106.133.150', '64.106.134.49', 1080722838, 1080722993, 'US', 'United States'), +('64.106.134.50', '64.106.134.59', 1080722994, 1080723003, 'CA', 'Canada'), +('64.106.134.60', '64.106.134.169', 1080723004, 1080723113, 'US', 'United States'), +('64.106.134.170', '64.106.134.179', 1080723114, 1080723123, 'BR', 'Brazil'), +('64.106.134.180', '64.106.135.29', 1080723124, 1080723229, 'US', 'United States'), +('64.106.135.30', '64.106.135.39', 1080723230, 1080723239, 'GB', 'United Kingdom'), +('64.106.135.40', '64.106.135.59', 1080723240, 1080723259, 'US', 'United States'), +('64.106.135.60', '64.106.135.69', 1080723260, 1080723269, 'GB', 'United Kingdom'), +('64.106.135.70', '64.106.135.159', 1080723270, 1080723359, 'US', 'United States'), +('64.106.135.160', '64.106.135.169', 1080723360, 1080723369, 'BR', 'Brazil'), +('64.106.135.170', '64.106.136.109', 1080723370, 1080723565, 'US', 'United States'), +('64.106.136.110', '64.106.136.119', 1080723566, 1080723575, 'AE', 'United Arab Emirates'), +('64.106.136.120', '64.106.140.39', 1080723576, 1080724519, 'US', 'United States'), +('64.106.140.40', '64.106.140.59', 1080724520, 1080724539, 'CA', 'Canada'), +('64.106.140.60', '64.106.141.139', 1080724540, 1080724875, 'US', 'United States'), +('64.106.141.140', '64.106.141.149', 1080724876, 1080724885, 'SY', 'Syrian Arab Republic'), +('64.106.141.150', '64.106.142.49', 1080724886, 1080725041, 'US', 'United States'), +('64.106.142.50', '64.106.142.59', 1080725042, 1080725051, 'QA', 'Qatar'), +('64.106.142.60', '64.106.142.89', 1080725052, 1080725081, 'US', 'United States'), +('64.106.142.90', '64.106.142.99', 1080725082, 1080725091, 'QA', 'Qatar'), +('64.106.142.100', '64.106.142.179', 1080725092, 1080725171, 'US', 'United States'), +('64.106.142.180', '64.106.142.189', 1080725172, 1080725181, 'QA', 'Qatar'), +('64.106.142.190', '64.106.143.29', 1080725182, 1080725277, 'US', 'United States'), +('64.106.143.30', '64.106.143.39', 1080725278, 1080725287, 'CA', 'Canada'), +('64.106.143.40', '64.106.143.49', 1080725288, 1080725297, 'NZ', 'New Zealand'), +('64.106.143.50', '64.106.143.219', 1080725298, 1080725467, 'US', 'United States'), +('64.106.143.220', '64.106.143.229', 1080725468, 1080725477, 'LB', 'Lebanon'), +('64.106.143.230', '64.106.144.59', 1080725478, 1080725563, 'US', 'United States'), +('64.106.144.60', '64.106.144.69', 1080725564, 1080725573, 'IT', 'Italy'), +('64.106.144.70', '64.106.144.209', 1080725574, 1080725713, 'US', 'United States'), +('64.106.144.210', '64.106.144.219', 1080725714, 1080725723, 'BE', 'Belgium'), +('64.106.144.220', '64.106.145.169', 1080725724, 1080725929, 'US', 'United States'), +('64.106.145.170', '64.106.145.179', 1080725930, 1080725939, 'BE', 'Belgium'), +('64.106.145.180', '64.106.146.169', 1080725940, 1080726185, 'US', 'United States'), +('64.106.146.170', '64.106.146.179', 1080726186, 1080726195, 'JO', 'Jordan'), +('64.106.146.180', '64.106.148.79', 1080726196, 1080726607, 'US', 'United States'), +('64.106.148.80', '64.106.148.89', 1080726608, 1080726617, 'CA', 'Canada'), +('64.106.148.90', '64.106.150.89', 1080726618, 1080727129, 'US', 'United States'), +('64.106.150.90', '64.106.150.99', 1080727130, 1080727139, 'AU', 'Australia'), +('64.106.150.100', '64.106.150.119', 1080727140, 1080727159, 'US', 'United States'), +('64.106.150.120', '64.106.150.129', 1080727160, 1080727169, 'CA', 'Canada'), +('64.106.150.130', '64.106.150.149', 1080727170, 1080727189, 'US', 'United States'), +('64.106.150.150', '64.106.150.159', 1080727190, 1080727199, 'AU', 'Australia'), +('64.106.150.160', '64.106.152.189', 1080727200, 1080727741, 'US', 'United States'), +('64.106.152.190', '64.106.152.209', 1080727742, 1080727761, 'BR', 'Brazil'), +('64.106.152.210', '64.106.152.229', 1080727762, 1080727781, 'US', 'United States'), +('64.106.152.230', '64.106.152.249', 1080727782, 1080727801, 'GB', 'United Kingdom'), +('64.106.152.250', '64.106.156.49', 1080727802, 1080728625, 'US', 'United States'), +('64.106.156.50', '64.106.156.79', 1080728626, 1080728655, 'NZ', 'New Zealand'), +('64.106.156.80', '64.106.156.199', 1080728656, 1080728775, 'US', 'United States'), +('64.106.156.200', '64.106.156.229', 1080728776, 1080728805, 'SE', 'Sweden'), +('64.106.156.230', '64.106.157.49', 1080728806, 1080728881, 'US', 'United States'), +('64.106.157.50', '64.106.157.59', 1080728882, 1080728891, 'IN', 'India'), +('64.106.157.60', '64.106.158.39', 1080728892, 1080729127, 'US', 'United States'), +('64.106.158.40', '64.106.158.49', 1080729128, 1080729137, 'UA', 'Ukraine'), +('64.106.158.50', '64.106.158.59', 1080729138, 1080729147, 'US', 'United States'), +('64.106.158.60', '64.106.158.69', 1080729148, 1080729157, 'CA', 'Canada'), +('64.106.158.70', '64.106.158.89', 1080729158, 1080729177, 'US', 'United States'), +('64.106.158.90', '64.106.158.99', 1080729178, 1080729187, 'KH', 'Cambodia'), +('64.106.158.100', '64.106.158.129', 1080729188, 1080729217, 'US', 'United States'), +('64.106.158.130', '64.106.158.149', 1080729218, 1080729237, 'KH', 'Cambodia'), +('64.106.158.150', '64.106.158.199', 1080729238, 1080729287, 'US', 'United States'), +('64.106.158.200', '64.106.158.209', 1080729288, 1080729297, 'IT', 'Italy'), +('64.106.158.210', '64.106.160.29', 1080729298, 1080729629, 'US', 'United States'), +('64.106.160.30', '64.106.160.39', 1080729630, 1080729639, 'JP', 'Japan'), +('64.106.160.40', '64.106.160.49', 1080729640, 1080729649, 'CA', 'Canada'), +('64.106.160.50', '64.106.170.159', 1080729650, 1080732319, 'US', 'United States'), +('64.106.170.160', '64.106.170.191', 1080732320, 1080732351, 'QA', 'Qatar'), +('64.106.170.192', '64.106.174.9', 1080732352, 1080733193, 'US', 'United States'), +('64.106.174.10', '64.106.174.19', 1080733194, 1080733203, 'NZ', 'New Zealand'), +('64.106.174.20', '64.106.174.29', 1080733204, 1080733213, 'LB', 'Lebanon'), +('64.106.174.30', '64.106.174.49', 1080733214, 1080733233, 'US', 'United States'), +('64.106.174.50', '64.106.174.59', 1080733234, 1080733243, 'DK', 'Denmark'), +('64.106.174.60', '64.106.196.191', 1080733244, 1080739007, 'US', 'United States'), +('64.106.196.192', '64.106.196.207', 1080739008, 1080739023, 'JO', 'Jordan'), +('64.106.196.208', '64.106.200.59', 1080739024, 1080739899, 'US', 'United States'), +('64.106.200.60', '64.106.200.69', 1080739900, 1080739909, 'IN', 'India'), +('64.106.200.70', '64.106.201.139', 1080739910, 1080740235, 'US', 'United States'), +('64.106.201.140', '64.106.201.159', 1080740236, 1080740255, 'UA', 'Ukraine'), +('64.106.201.160', '64.106.201.169', 1080740256, 1080740265, 'GA', 'Gabon'), +('64.106.201.170', '64.106.201.209', 1080740266, 1080740305, 'US', 'United States'), +('64.106.201.210', '64.106.201.219', 1080740306, 1080740315, 'LB', 'Lebanon'), +('64.106.201.220', '64.106.202.199', 1080740316, 1080740551, 'US', 'United States'), +('64.106.202.200', '64.106.202.209', 1080740552, 1080740561, 'UA', 'Ukraine'), +('64.106.202.210', '64.106.205.69', 1080740562, 1080741189, 'US', 'United States'), +('64.106.205.70', '64.106.205.79', 1080741190, 1080741199, 'GR', 'Greece'), +('64.106.205.80', '64.106.205.149', 1080741200, 1080741269, 'US', 'United States'), +('64.106.205.150', '64.106.205.159', 1080741270, 1080741279, 'GR', 'Greece'), +('64.106.205.160', '64.106.205.169', 1080741280, 1080741289, 'GB', 'United Kingdom'), +('64.106.205.170', '64.106.206.119', 1080741290, 1080741495, 'US', 'United States'), +('64.106.206.120', '64.106.206.129', 1080741496, 1080741505, 'CA', 'Canada'), +('64.106.206.130', '64.106.206.229', 1080741506, 1080741605, 'US', 'United States'), +('64.106.206.230', '64.106.206.239', 1080741606, 1080741615, 'SE', 'Sweden'), +('64.106.206.240', '64.106.207.39', 1080741616, 1080741671, 'US', 'United States'), +('64.106.207.40', '64.106.207.49', 1080741672, 1080741681, 'CA', 'Canada'), +('64.106.207.50', '64.106.217.19', 1080741682, 1080744211, 'US', 'United States'), +('64.106.217.20', '64.106.217.29', 1080744212, 1080744221, 'CA', 'Canada'), +('64.106.217.30', '64.106.218.63', 1080744222, 1080744511, 'US', 'United States'), +('64.106.218.64', '64.106.218.127', 1080744512, 1080744575, 'NO', 'Norway'), +('64.106.218.128', '64.106.226.195', 1080744576, 1080746691, 'US', 'United States'), +('64.106.226.196', '64.106.226.227', 1080746692, 1080746723, 'QA', 'Qatar'), +('64.106.226.228', '64.106.229.69', 1080746724, 1080747333, 'US', 'United States'), +('64.106.229.70', '64.106.229.79', 1080747334, 1080747343, 'NZ', 'New Zealand'), +('64.106.229.80', '64.106.229.89', 1080747344, 1080747353, 'CA', 'Canada'), +('64.106.229.90', '64.106.229.239', 1080747354, 1080747503, 'US', 'United States'), +('64.106.229.240', '64.106.229.249', 1080747504, 1080747513, 'CA', 'Canada'), +('64.106.229.250', '64.106.230.19', 1080747514, 1080747539, 'US', 'United States'), +('64.106.230.20', '64.106.230.39', 1080747540, 1080747559, 'CA', 'Canada'), +('64.106.230.40', '64.106.231.99', 1080747560, 1080747875, 'US', 'United States'), +('64.106.231.100', '64.106.231.109', 1080747876, 1080747885, 'ES', 'Spain'), +('64.106.231.110', '64.106.231.139', 1080747886, 1080747915, 'US', 'United States'), +('64.106.231.140', '64.106.231.149', 1080747916, 1080747925, 'IL', 'Israel'), +('64.106.231.150', '64.106.231.179', 1080747926, 1080747955, 'US', 'United States'), +('64.106.231.180', '64.106.231.189', 1080747956, 1080747965, 'ES', 'Spain'), +('64.106.231.190', '64.106.231.199', 1080747966, 1080747975, 'US', 'United States'), +('64.106.231.200', '64.106.231.229', 1080747976, 1080748005, 'CA', 'Canada'), +('64.106.231.230', '64.106.232.31', 1080748006, 1080748063, 'US', 'United States'), +('64.106.232.32', '64.106.232.63', 1080748064, 1080748095, 'QA', 'Qatar'), +('64.106.232.64', '64.106.238.255', 1080748096, 1080749823, 'US', 'United States'), +('64.106.239.0', '64.106.239.127', 1080749824, 1080749951, 'CA', 'Canada'), +('64.106.239.128', '64.106.242.9', 1080749952, 1080750601, 'US', 'United States'), +('64.106.242.10', '64.106.242.19', 1080750602, 1080750611, 'GB', 'United Kingdom'), +('64.106.242.20', '64.108.4.135', 1080750612, 1080820871, 'US', 'United States'), +('64.108.4.136', '64.108.4.143', 1080820872, 1080820879, 'PR', 'Puerto Rico'), +('64.108.4.144', '64.110.191.255', 1080820880, 1080999935, 'US', 'United States'), +('64.110.192.0', '64.110.255.255', 1080999936, 1081016319, 'CA', 'Canada'), +('64.111.0.0', '64.113.255.255', 1081016320, 1081212927, 'US', 'United States'), +('64.114.0.0', '64.114.255.255', 1081212928, 1081278463, 'CA', 'Canada'), +('64.115.0.0', '64.116.96.31', 1081278464, 1081368607, 'US', 'United States'), +('64.116.96.32', '64.116.96.39', 1081368608, 1081368615, 'CO', 'Colombia'), +('64.116.96.40', '64.116.96.47', 1081368616, 1081368623, 'US', 'United States'), +('64.116.96.48', '64.116.96.55', 1081368624, 1081368631, 'CO', 'Colombia'), +('64.116.96.56', '64.116.96.167', 1081368632, 1081368743, 'US', 'United States'), +('64.116.96.168', '64.116.96.175', 1081368744, 1081368751, 'CO', 'Colombia'), +('64.116.96.176', '64.116.99.255', 1081368752, 1081369599, 'US', 'United States'), +('64.116.100.0', '64.116.101.255', 1081369600, 1081370111, 'CO', 'Colombia'), +('64.116.102.0', '64.116.129.31', 1081370112, 1081377055, 'US', 'United States'), +('64.116.129.32', '64.116.129.47', 1081377056, 1081377071, 'VE', 'Venezuela'), +('64.116.129.48', '64.116.129.55', 1081377072, 1081377079, 'US', 'United States'), +('64.116.129.56', '64.116.129.63', 1081377080, 1081377087, 'VE', 'Venezuela'), +('64.116.129.64', '64.116.129.95', 1081377088, 1081377119, 'US', 'United States'), +('64.116.129.96', '64.116.129.111', 1081377120, 1081377135, 'VE', 'Venezuela'), +('64.116.129.112', '64.116.129.167', 1081377136, 1081377191, 'US', 'United States'), +('64.116.129.168', '64.116.129.175', 1081377192, 1081377199, 'VE', 'Venezuela'), +('64.116.129.176', '64.116.129.223', 1081377200, 1081377247, 'US', 'United States'), +('64.116.129.224', '64.116.129.255', 1081377248, 1081377279, 'VE', 'Venezuela'), +('64.116.130.0', '64.116.131.127', 1081377280, 1081377663, 'US', 'United States'), +('64.116.131.128', '64.116.131.255', 1081377664, 1081377791, 'VE', 'Venezuela'), +('64.116.132.0', '64.116.132.23', 1081377792, 1081377815, 'US', 'United States'), +('64.116.132.24', '64.116.132.31', 1081377816, 1081377823, 'VE', 'Venezuela'), +('64.116.132.32', '64.116.132.95', 1081377824, 1081377887, 'US', 'United States'), +('64.116.132.96', '64.116.132.127', 1081377888, 1081377919, 'VE', 'Venezuela'), +('64.116.132.128', '64.116.132.143', 1081377920, 1081377935, 'US', 'United States'), +('64.116.132.144', '64.116.132.207', 1081377936, 1081377999, 'VE', 'Venezuela'), +('64.116.132.208', '64.116.132.223', 1081378000, 1081378015, 'US', 'United States'), +('64.116.132.224', '64.116.132.255', 1081378016, 1081378047, 'VE', 'Venezuela'), +('64.116.133.0', '64.116.133.255', 1081378048, 1081378303, 'US', 'United States'), +('64.116.134.0', '64.116.134.15', 1081378304, 1081378319, 'VE', 'Venezuela'), +('64.116.134.16', '64.116.134.79', 1081378320, 1081378383, 'US', 'United States'), +('64.116.134.80', '64.116.134.95', 1081378384, 1081378399, 'VE', 'Venezuela'), +('64.116.134.96', '64.116.134.191', 1081378400, 1081378495, 'US', 'United States'), +('64.116.134.192', '64.116.135.15', 1081378496, 1081378575, 'VE', 'Venezuela'), +('64.116.135.16', '64.116.135.47', 1081378576, 1081378607, 'US', 'United States'), +('64.116.135.48', '64.116.135.95', 1081378608, 1081378655, 'VE', 'Venezuela'), +('64.116.135.96', '64.116.135.191', 1081378656, 1081378751, 'US', 'United States'), +('64.116.135.192', '64.116.135.255', 1081378752, 1081378815, 'VE', 'Venezuela'), +('64.116.136.0', '64.116.137.255', 1081378816, 1081379327, 'US', 'United States'), +('64.116.138.0', '64.116.139.255', 1081379328, 1081379839, 'VE', 'Venezuela'), +('64.116.140.0', '64.116.160.255', 1081379840, 1081385215, 'US', 'United States'), +('64.116.161.0', '64.116.162.63', 1081385216, 1081385535, 'PA', 'Panama'), +('64.116.162.64', '64.116.163.255', 1081385536, 1081385983, 'US', 'United States'), +('64.116.164.0', '64.116.164.7', 1081385984, 1081385991, 'PA', 'Panama'), +('64.116.164.8', '64.116.164.15', 1081385992, 1081385999, 'US', 'United States'), +('64.116.164.16', '64.116.164.31', 1081386000, 1081386015, 'PA', 'Panama'), +('64.116.164.32', '64.116.164.63', 1081386016, 1081386047, 'VE', 'Venezuela'), +('64.116.164.64', '64.116.166.127', 1081386048, 1081386623, 'US', 'United States'), +('64.116.166.128', '64.116.166.159', 1081386624, 1081386655, 'PA', 'Panama'), +('64.116.166.160', '64.116.169.255', 1081386656, 1081387519, 'US', 'United States'), +('64.116.170.0', '64.116.171.255', 1081387520, 1081388031, 'PA', 'Panama'), +('64.116.172.0', '64.116.172.95', 1081388032, 1081388127, 'US', 'United States'), +('64.116.172.96', '64.116.172.111', 1081388128, 1081388143, 'PA', 'Panama'), +('64.116.172.112', '64.116.172.119', 1081388144, 1081388151, 'PR', 'Puerto Rico'), +('64.116.172.120', '64.116.183.255', 1081388152, 1081391103, 'US', 'United States'), +('64.116.184.0', '64.116.191.255', 1081391104, 1081393151, 'PA', 'Panama'), +('64.116.192.0', '64.116.192.255', 1081393152, 1081393407, 'US', 'United States'), +('64.116.193.0', '64.116.194.87', 1081393408, 1081393751, 'CL', 'Chile'), +('64.116.194.88', '64.116.194.95', 1081393752, 1081393759, 'US', 'United States'), +('64.116.194.96', '64.116.194.119', 1081393760, 1081393783, 'CL', 'Chile'), +('64.116.194.120', '64.116.194.167', 1081393784, 1081393831, 'US', 'United States'), +('64.116.194.168', '64.116.194.175', 1081393832, 1081393839, 'CL', 'Chile'), +('64.116.194.176', '64.116.194.223', 1081393840, 1081393887, 'US', 'United States'), +('64.116.194.224', '64.116.194.239', 1081393888, 1081393903, 'CL', 'Chile'), +('64.116.194.240', '64.116.194.255', 1081393904, 1081393919, 'US', 'United States'), +('64.116.195.0', '64.116.207.255', 1081393920, 1081397247, 'CL', 'Chile'), +('64.116.208.0', '64.116.209.255', 1081397248, 1081397759, 'US', 'United States'), +('64.116.210.0', '64.116.213.255', 1081397760, 1081398783, 'CL', 'Chile'), +('64.116.214.0', '64.116.215.255', 1081398784, 1081399295, 'US', 'United States'), +('64.116.216.0', '64.116.223.255', 1081399296, 1081401343, 'CL', 'Chile'), +('64.116.224.0', '64.116.224.47', 1081401344, 1081401391, 'AR', 'Argentina'), +('64.116.224.48', '64.116.224.71', 1081401392, 1081401415, 'US', 'United States'), +('64.116.224.72', '64.116.224.191', 1081401416, 1081401535, 'AR', 'Argentina'), +('64.116.224.192', '64.116.224.223', 1081401536, 1081401567, 'US', 'United States'), +('64.116.224.224', '64.116.225.135', 1081401568, 1081401735, 'AR', 'Argentina'), +('64.116.225.136', '64.116.225.143', 1081401736, 1081401743, 'US', 'United States'), +('64.116.225.144', '64.116.227.255', 1081401744, 1081402367, 'AR', 'Argentina'), +('64.116.228.0', '64.116.230.15', 1081402368, 1081402895, 'US', 'United States'), +('64.116.230.16', '64.116.230.127', 1081402896, 1081403007, 'AR', 'Argentina'), +('64.116.230.128', '64.116.230.175', 1081403008, 1081403055, 'US', 'United States'), +('64.116.230.176', '64.116.230.223', 1081403056, 1081403103, 'AR', 'Argentina'), +('64.116.230.224', '64.116.230.239', 1081403104, 1081403119, 'US', 'United States'), +('64.116.230.240', '64.116.232.95', 1081403120, 1081403487, 'AR', 'Argentina'), +('64.116.232.96', '64.116.232.127', 1081403488, 1081403519, 'US', 'United States'), +('64.116.232.128', '64.116.232.159', 1081403520, 1081403551, 'AR', 'Argentina'), +('64.116.232.160', '64.116.232.223', 1081403552, 1081403615, 'US', 'United States'), +('64.116.232.224', '64.116.232.239', 1081403616, 1081403631, 'AR', 'Argentina'), +('64.116.232.240', '64.116.233.63', 1081403632, 1081403711, 'US', 'United States'), +('64.116.233.64', '64.116.233.127', 1081403712, 1081403775, 'AR', 'Argentina'), +('64.116.233.128', '64.116.233.199', 1081403776, 1081403847, 'US', 'United States'), +('64.116.233.200', '64.116.233.223', 1081403848, 1081403871, 'AR', 'Argentina'), +('64.116.233.224', '64.116.233.255', 1081403872, 1081403903, 'US', 'United States'), +('64.116.234.0', '64.116.234.63', 1081403904, 1081403967, 'AR', 'Argentina'), +('64.116.234.64', '64.116.234.127', 1081403968, 1081404031, 'US', 'United States'), +('64.116.234.128', '64.116.234.191', 1081404032, 1081404095, 'AR', 'Argentina'), +('64.116.234.192', '64.116.238.63', 1081404096, 1081404991, 'US', 'United States'), +('64.116.238.64', '64.116.238.191', 1081404992, 1081405119, 'AR', 'Argentina'), +('64.116.238.192', '64.117.0.255', 1081405120, 1081409791, 'US', 'United States'), +('64.117.1.0', '64.117.1.255', 1081409792, 1081410047, 'PR', 'Puerto Rico'), +('64.117.2.0', '64.117.3.255', 1081410048, 1081410559, 'US', 'United States'), +('64.117.4.0', '64.117.7.255', 1081410560, 1081411583, 'PR', 'Puerto Rico'), +('64.117.8.0', '64.117.13.255', 1081411584, 1081413119, 'US', 'United States'), +('64.117.14.0', '64.117.14.255', 1081413120, 1081413375, 'PR', 'Puerto Rico'), +('64.117.15.0', '64.117.15.63', 1081413376, 1081413439, 'US', 'United States'), +('64.117.15.64', '64.117.15.71', 1081413440, 1081413447, 'PR', 'Puerto Rico'), +('64.117.15.72', '64.117.15.151', 1081413448, 1081413527, 'US', 'United States'), +('64.117.15.152', '64.117.15.159', 1081413528, 1081413535, 'CA', 'Canada'), +('64.117.15.160', '64.117.15.191', 1081413536, 1081413567, 'US', 'United States'), +('64.117.15.192', '64.117.15.199', 1081413568, 1081413575, 'CA', 'Canada'), +('64.117.15.200', '64.117.15.207', 1081413576, 1081413583, 'US', 'United States'), +('64.117.15.208', '64.117.15.255', 1081413584, 1081413631, 'PR', 'Puerto Rico'), +('64.117.16.0', '64.117.25.255', 1081413632, 1081416191, 'US', 'United States'), +('64.117.26.0', '64.117.26.255', 1081416192, 1081416447, 'PR', 'Puerto Rico'), +('64.117.27.0', '64.117.37.191', 1081416448, 1081419199, 'US', 'United States'), +('64.117.37.192', '64.117.37.223', 1081419200, 1081419231, 'PR', 'Puerto Rico'), +('64.117.37.224', '64.117.37.255', 1081419232, 1081419263, 'US', 'United States'), +('64.117.38.0', '64.117.38.127', 1081419264, 1081419391, 'PR', 'Puerto Rico'), +('64.117.38.128', '64.117.38.159', 1081419392, 1081419423, 'US', 'United States'), +('64.117.38.160', '64.117.38.167', 1081419424, 1081419431, 'PR', 'Puerto Rico'), +('64.117.38.168', '64.117.38.223', 1081419432, 1081419487, 'US', 'United States'), +('64.117.38.224', '64.117.38.255', 1081419488, 1081419519, 'PR', 'Puerto Rico'), +('64.117.39.0', '64.117.39.255', 1081419520, 1081419775, 'US', 'United States'), +('64.117.40.0', '64.117.41.255', 1081419776, 1081420287, 'PR', 'Puerto Rico'), +('64.117.42.0', '64.117.42.31', 1081420288, 1081420319, 'US', 'United States'), +('64.117.42.32', '64.117.42.63', 1081420320, 1081420351, 'PR', 'Puerto Rico'), +('64.117.42.64', '64.117.42.191', 1081420352, 1081420479, 'US', 'United States'), +('64.117.42.192', '64.117.42.255', 1081420480, 1081420543, 'PR', 'Puerto Rico'), +('64.117.43.0', '64.117.45.127', 1081420544, 1081421183, 'US', 'United States'), +('64.117.45.128', '64.117.45.159', 1081421184, 1081421215, 'PR', 'Puerto Rico'), +('64.117.45.160', '64.117.128.63', 1081421216, 1081442367, 'US', 'United States'), +('64.117.128.64', '64.117.128.79', 1081442368, 1081442383, 'CL', 'Chile'), +('64.117.128.80', '64.117.128.159', 1081442384, 1081442463, 'US', 'United States'), +('64.117.128.160', '64.117.128.191', 1081442464, 1081442495, 'CL', 'Chile'), +('64.117.128.192', '64.117.130.95', 1081442496, 1081442911, 'US', 'United States'), +('64.117.130.96', '64.117.130.111', 1081442912, 1081442927, 'CL', 'Chile'), +('64.117.130.112', '64.117.130.143', 1081442928, 1081442959, 'US', 'United States'), +('64.117.130.144', '64.117.130.151', 1081442960, 1081442967, 'CL', 'Chile'), +('64.117.130.152', '64.117.131.255', 1081442968, 1081443327, 'US', 'United States'), +('64.117.132.0', '64.117.137.255', 1081443328, 1081444863, 'CL', 'Chile'), +('64.117.138.0', '64.117.139.183', 1081444864, 1081445303, 'US', 'United States'), +('64.117.139.184', '64.117.139.191', 1081445304, 1081445311, 'CL', 'Chile'), +('64.117.139.192', '64.117.139.255', 1081445312, 1081445375, 'US', 'United States'), +('64.117.140.0', '64.117.159.255', 1081445376, 1081450495, 'CL', 'Chile'), +('64.117.160.0', '64.117.199.255', 1081450496, 1081460735, 'US', 'United States'), +('64.117.200.0', '64.117.207.255', 1081460736, 1081462783, 'PA', 'Panama'), +('64.117.208.0', '64.117.208.31', 1081462784, 1081462815, 'CO', 'Colombia'), +('64.117.208.32', '64.117.208.127', 1081462816, 1081462911, 'BR', 'Brazil'), +('64.117.208.128', '64.118.15.255', 1081462912, 1081479167, 'US', 'United States'), +('64.118.16.0', '64.118.31.255', 1081479168, 1081483263, 'CA', 'Canada'), +('64.118.32.0', '64.118.47.255', 1081483264, 1081487359, 'US', 'United States'), +('64.118.48.0', '64.118.63.255', 1081487360, 1081491455, 'A2', 'Satellite Provider'), +('64.118.64.0', '64.119.95.255', 1081491456, 1081565183, 'US', 'United States'), +('64.119.96.0', '64.119.127.255', 1081565184, 1081573375, 'CA', 'Canada'), +('64.119.128.0', '64.119.160.47', 1081573376, 1081581615, 'US', 'United States'), +('64.119.160.48', '64.119.160.55', 1081581616, 1081581623, 'JP', 'Japan'), +('64.119.160.56', '64.119.160.103', 1081581624, 1081581671, 'US', 'United States'), +('64.119.160.104', '64.119.160.119', 1081581672, 1081581687, 'GB', 'United Kingdom'), +('64.119.160.120', '64.119.160.127', 1081581688, 1081581695, 'US', 'United States'), +('64.119.160.128', '64.119.160.135', 1081581696, 1081581703, 'AE', 'United Arab Emirates'), +('64.119.160.136', '64.119.160.175', 1081581704, 1081581743, 'US', 'United States'), +('64.119.160.176', '64.119.160.191', 1081581744, 1081581759, 'MX', 'Mexico'), +('64.119.160.192', '64.119.160.199', 1081581760, 1081581767, 'US', 'United States'), +('64.119.160.200', '64.119.160.207', 1081581768, 1081581775, 'AR', 'Argentina'), +('64.119.160.208', '64.119.160.255', 1081581776, 1081581823, 'US', 'United States'), +('64.119.161.0', '64.119.161.151', 1081581824, 1081581975, 'GB', 'United Kingdom'), +('64.119.161.152', '64.119.161.159', 1081581976, 1081581983, 'US', 'United States'), +('64.119.161.160', '64.119.161.191', 1081581984, 1081582015, 'AR', 'Argentina'), +('64.119.161.192', '64.119.161.255', 1081582016, 1081582079, 'GB', 'United Kingdom'), +('64.119.162.0', '64.119.162.7', 1081582080, 1081582087, 'PH', 'Philippines'), +('64.119.162.8', '64.119.162.71', 1081582088, 1081582151, 'US', 'United States'), +('64.119.162.72', '64.119.162.79', 1081582152, 1081582159, 'AR', 'Argentina'), +('64.119.162.80', '64.119.162.87', 1081582160, 1081582167, 'US', 'United States'), +('64.119.162.88', '64.119.162.95', 1081582168, 1081582175, 'AE', 'United Arab Emirates'), +('64.119.162.96', '64.119.162.103', 1081582176, 1081582183, 'US', 'United States'), +('64.119.162.104', '64.119.162.119', 1081582184, 1081582199, 'ID', 'Indonesia'), +('64.119.162.120', '64.119.162.143', 1081582200, 1081582223, 'US', 'United States'), +('64.119.162.144', '64.119.162.151', 1081582224, 1081582231, 'JP', 'Japan'), +('64.119.162.152', '64.119.162.255', 1081582232, 1081582335, 'US', 'United States'), +('64.119.163.0', '64.119.163.7', 1081582336, 1081582343, 'MY', 'Malaysia'), +('64.119.163.8', '64.119.163.199', 1081582344, 1081582535, 'US', 'United States'), +('64.119.163.200', '64.119.163.223', 1081582536, 1081582559, 'AR', 'Argentina'), +('64.119.163.224', '64.119.163.231', 1081582560, 1081582567, 'US', 'United States'), +('64.119.163.232', '64.119.163.255', 1081582568, 1081582591, 'MY', 'Malaysia'), +('64.119.164.0', '64.119.164.7', 1081582592, 1081582599, 'AR', 'Argentina'), +('64.119.164.8', '64.119.164.87', 1081582600, 1081582679, 'US', 'United States'), +('64.119.164.88', '64.119.164.95', 1081582680, 1081582687, 'AR', 'Argentina'), +('64.119.164.96', '64.119.164.103', 1081582688, 1081582695, 'US', 'United States'), +('64.119.164.104', '64.119.164.111', 1081582696, 1081582703, 'MY', 'Malaysia'), +('64.119.164.112', '64.119.164.119', 1081582704, 1081582711, 'US', 'United States'), +('64.119.164.120', '64.119.164.127', 1081582712, 1081582719, 'AR', 'Argentina'), +('64.119.164.128', '64.119.164.183', 1081582720, 1081582775, 'US', 'United States'), +('64.119.164.184', '64.119.164.191', 1081582776, 1081582783, 'AR', 'Argentina'), +('64.119.164.192', '64.119.165.55', 1081582784, 1081582903, 'US', 'United States'), +('64.119.165.56', '64.119.165.63', 1081582904, 1081582911, 'AR', 'Argentina'), +('64.119.165.64', '64.119.165.143', 1081582912, 1081582991, 'US', 'United States'), +('64.119.165.144', '64.119.165.151', 1081582992, 1081582999, 'HK', 'Hong Kong'), +('64.119.165.152', '64.119.165.159', 1081583000, 1081583007, 'AR', 'Argentina'), +('64.119.165.160', '64.119.165.207', 1081583008, 1081583055, 'US', 'United States'), +('64.119.165.208', '64.119.165.223', 1081583056, 1081583071, 'AR', 'Argentina'), +('64.119.165.224', '64.119.165.255', 1081583072, 1081583103, 'MY', 'Malaysia'), +('64.119.166.0', '64.119.166.111', 1081583104, 1081583215, 'US', 'United States'), +('64.119.166.112', '64.119.166.127', 1081583216, 1081583231, 'PH', 'Philippines'), +('64.119.166.128', '64.119.167.191', 1081583232, 1081583551, 'US', 'United States'), +('64.119.167.192', '64.119.167.207', 1081583552, 1081583567, 'MY', 'Malaysia'), +('64.119.167.208', '64.119.168.127', 1081583568, 1081583743, 'US', 'United States'), +('64.119.168.128', '64.119.168.151', 1081583744, 1081583767, 'CA', 'Canada'), +('64.119.168.152', '64.119.168.191', 1081583768, 1081583807, 'US', 'United States'), +('64.119.168.192', '64.119.168.199', 1081583808, 1081583815, 'AU', 'Australia'), +('64.119.168.200', '64.119.169.15', 1081583816, 1081583887, 'US', 'United States'), +('64.119.169.16', '64.119.169.39', 1081583888, 1081583911, 'MY', 'Malaysia'), +('64.119.169.40', '64.119.169.47', 1081583912, 1081583919, 'JP', 'Japan'), +('64.119.169.48', '64.119.169.127', 1081583920, 1081583999, 'US', 'United States'), +('64.119.169.128', '64.119.169.135', 1081584000, 1081584007, 'MY', 'Malaysia'), +('64.119.169.136', '64.119.169.207', 1081584008, 1081584079, 'US', 'United States'), +('64.119.169.208', '64.119.169.215', 1081584080, 1081584087, 'MY', 'Malaysia'), +('64.119.169.216', '64.119.169.255', 1081584088, 1081584127, 'US', 'United States'), +('64.119.170.0', '64.119.170.23', 1081584128, 1081584151, 'DE', 'Germany'), +('64.119.170.24', '64.119.170.39', 1081584152, 1081584167, 'US', 'United States'), +('64.119.170.40', '64.119.170.63', 1081584168, 1081584191, 'PH', 'Philippines'), +('64.119.170.64', '64.119.170.71', 1081584192, 1081584199, 'US', 'United States'), +('64.119.170.72', '64.119.170.95', 1081584200, 1081584223, 'MY', 'Malaysia'), +('64.119.170.96', '64.119.170.143', 1081584224, 1081584271, 'AR', 'Argentina'), +('64.119.170.144', '64.119.171.79', 1081584272, 1081584463, 'US', 'United States'), +('64.119.171.80', '64.119.171.103', 1081584464, 1081584487, 'MY', 'Malaysia'), +('64.119.171.104', '64.119.171.127', 1081584488, 1081584511, 'US', 'United States'), +('64.119.171.128', '64.119.171.135', 1081584512, 1081584519, 'AR', 'Argentina'), +('64.119.171.136', '64.119.171.159', 1081584520, 1081584543, 'US', 'United States'), +('64.119.171.160', '64.119.171.191', 1081584544, 1081584575, 'MY', 'Malaysia'), +('64.119.171.192', '64.119.171.215', 1081584576, 1081584599, 'US', 'United States'), +('64.119.171.216', '64.119.171.255', 1081584600, 1081584639, 'AR', 'Argentina'), +('64.119.172.0', '64.119.178.55', 1081584640, 1081586231, 'US', 'United States'), +('64.119.178.56', '64.119.178.63', 1081586232, 1081586239, 'IT', 'Italy'), +('64.119.178.64', '64.119.178.71', 1081586240, 1081586247, 'AU', 'Australia'), +('64.119.178.72', '64.119.184.47', 1081586248, 1081587759, 'US', 'United States'), +('64.119.184.48', '64.119.184.55', 1081587760, 1081587767, 'AU', 'Australia'), +('64.119.184.56', '64.119.186.127', 1081587768, 1081588351, 'US', 'United States'), +('64.119.186.128', '64.119.186.135', 1081588352, 1081588359, 'GB', 'United Kingdom'), +('64.119.186.136', '64.119.187.63', 1081588360, 1081588543, 'US', 'United States'), +('64.119.187.64', '64.119.187.71', 1081588544, 1081588551, 'KH', 'Cambodia'), +('64.119.187.72', '64.119.188.15', 1081588552, 1081588751, 'US', 'United States'), +('64.119.188.16', '64.119.188.31', 1081588752, 1081588767, 'AU', 'Australia'), +('64.119.188.32', '64.119.189.111', 1081588768, 1081589103, 'US', 'United States'), +('64.119.189.112', '64.119.189.119', 1081589104, 1081589111, 'PH', 'Philippines'), +('64.119.189.120', '64.119.191.255', 1081589112, 1081589759, 'US', 'United States'), +('64.119.192.0', '64.119.207.255', 1081589760, 1081593855, 'BB', 'Barbados'), +('64.119.208.0', '64.119.223.255', 1081593856, 1081597951, 'CA', 'Canada'), +('64.119.224.0', '64.123.2.23', 1081597952, 1081803287, 'US', 'United States'), +('64.123.2.24', '64.123.2.31', 1081803288, 1081803295, 'PR', 'Puerto Rico'), +('64.123.2.32', '64.123.4.119', 1081803296, 1081803895, 'US', 'United States'), +('64.123.4.120', '64.123.4.127', 1081803896, 1081803903, 'PR', 'Puerto Rico'), +('64.123.4.128', '64.123.116.215', 1081803904, 1081832663, 'US', 'United States'), +('64.123.116.216', '64.123.116.223', 1081832664, 1081832671, 'PR', 'Puerto Rico'), +('64.123.116.224', '64.123.223.159', 1081832672, 1081859999, 'US', 'United States'), +('64.123.223.160', '64.123.223.167', 1081860000, 1081860007, 'PR', 'Puerto Rico'), +('64.123.223.168', '64.123.233.239', 1081860008, 1081862639, 'US', 'United States'), +('64.123.233.240', '64.123.233.247', 1081862640, 1081862647, 'PR', 'Puerto Rico'), +('64.123.233.248', '64.124.17.23', 1081862648, 1081872663, 'US', 'United States'), +('64.124.17.24', '64.124.17.31', 1081872664, 1081872671, 'FI', 'Finland'), +('64.124.17.32', '64.124.150.63', 1081872672, 1081906751, 'US', 'United States'), +('64.124.150.64', '64.124.150.127', 1081906752, 1081906815, 'IL', 'Israel'), +('64.124.150.128', '64.124.170.15', 1081906816, 1081911823, 'US', 'United States'), +('64.124.170.16', '64.124.170.23', 1081911824, 1081911831, 'GB', 'United Kingdom'), +('64.124.170.24', '64.124.170.127', 1081911832, 1081911935, 'US', 'United States'), +('64.124.170.128', '64.124.170.143', 1081911936, 1081911951, 'GB', 'United Kingdom'), +('64.124.170.144', '64.124.172.255', 1081911952, 1081912575, 'US', 'United States'), +('64.124.173.0', '64.124.173.63', 1081912576, 1081912639, 'DE', 'Germany'), +('64.124.173.64', '64.124.229.223', 1081912640, 1081927135, 'US', 'United States'), +('64.124.229.224', '64.124.229.231', 1081927136, 1081927143, 'GB', 'United Kingdom'), +('64.124.229.232', '64.125.83.255', 1081927144, 1081955327, 'US', 'United States'), +('64.125.84.0', '64.125.84.255', 1081955328, 1081955583, 'CA', 'Canada'), +('64.125.85.0', '64.125.85.255', 1081955584, 1081955839, 'US', 'United States'), +('64.125.86.0', '64.125.86.255', 1081955840, 1081956095, 'CA', 'Canada'), +('64.125.87.0', '64.125.129.23', 1081956096, 1081966871, 'US', 'United States'), +('64.125.129.24', '64.125.129.31', 1081966872, 1081966879, 'AS', 'American Samoa'), +('64.125.129.32', '64.127.102.255', 1081966880, 1082091263, 'US', 'United States'), +('64.127.103.0', '64.127.103.7', 1082091264, 1082091271, 'CN', 'China'), +('64.127.103.8', '64.127.105.223', 1082091272, 1082091999, 'US', 'United States'), +('64.127.105.224', '64.127.105.231', 1082092000, 1082092007, 'CA', 'Canada'), +('64.127.105.232', '64.127.112.111', 1082092008, 1082093679, 'US', 'United States'), +('64.127.112.112', '64.127.112.127', 1082093680, 1082093695, 'AU', 'Australia'), +('64.127.112.128', '64.127.125.159', 1082093696, 1082097055, 'US', 'United States'), +('64.127.125.160', '64.127.125.175', 1082097056, 1082097071, 'CA', 'Canada'), +('64.127.125.176', '64.127.125.247', 1082097072, 1082097143, 'US', 'United States'), +('64.127.125.248', '64.127.125.255', 1082097144, 1082097151, 'AU', 'Australia'), +('64.127.126.0', '64.130.207.255', 1082097152, 1082314751, 'US', 'United States'), +('64.130.208.0', '64.130.223.255', 1082314752, 1082318847, 'CA', 'Canada'), +('64.130.224.0', '64.132.162.191', 1082318848, 1082434239, 'US', 'United States'), +('64.132.162.192', '64.132.162.207', 1082434240, 1082434255, 'IN', 'India'), +('64.132.162.208', '64.135.128.35', 1082434256, 1082621987, 'US', 'United States'), +('64.135.128.36', '64.135.128.39', 1082621988, 1082621991, 'ME', 'Montenegro'), +('64.135.128.40', '64.136.111.255', 1082621992, 1082683391, 'US', 'United States'), +('64.136.112.0', '64.136.127.255', 1082683392, 1082687487, 'CA', 'Canada'), +('64.136.128.0', '64.139.132.191', 1082687488, 1082885311, 'US', 'United States'), +('64.139.132.192', '64.139.132.223', 1082885312, 1082885343, 'CA', 'Canada'), +('64.139.132.224', '64.139.134.223', 1082885344, 1082885855, 'US', 'United States'), +('64.139.134.224', '64.139.134.255', 1082885856, 1082885887, 'CA', 'Canada'), +('64.139.135.0', '64.140.111.255', 1082885888, 1082945535, 'US', 'United States'), +('64.140.112.0', '64.140.127.255', 1082945536, 1082949631, 'CA', 'Canada'), +('64.140.128.0', '64.140.139.255', 1082949632, 1082952703, 'US', 'United States'), +('64.140.140.0', '64.140.140.255', 1082952704, 1082952959, 'CA', 'Canada'), +('64.140.141.0', '64.140.255.255', 1082952960, 1082982399, 'US', 'United States'), +('64.141.0.0', '64.141.127.255', 1082982400, 1083015167, 'CA', 'Canada'), +('64.141.128.0', '64.147.164.127', 1083015168, 1083417727, 'US', 'United States'), +('64.147.164.128', '64.147.164.191', 1083417728, 1083417791, 'CA', 'Canada'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('64.147.164.192', '64.147.165.255', 1083417792, 1083418111, 'US', 'United States'), +('64.147.166.0', '64.147.166.255', 1083418112, 1083418367, 'AU', 'Australia'), +('64.147.167.0', '64.147.179.255', 1083418368, 1083421695, 'US', 'United States'), +('64.147.180.0', '64.147.180.63', 1083421696, 1083421759, 'AU', 'Australia'), +('64.147.180.64', '64.147.190.255', 1083421760, 1083424511, 'US', 'United States'), +('64.147.191.0', '64.147.191.255', 1083424512, 1083424767, 'AU', 'Australia'), +('64.147.192.0', '64.147.239.255', 1083424768, 1083437055, 'US', 'United States'), +('64.147.240.0', '64.147.255.255', 1083437056, 1083441151, 'CA', 'Canada'), +('64.148.0.0', '64.148.178.191', 1083441152, 1083486911, 'US', 'United States'), +('64.148.178.192', '64.148.178.223', 1083486912, 1083486943, 'IS', 'Iceland'), +('64.148.178.224', '64.150.191.255', 1083486944, 1083621375, 'US', 'United States'), +('64.150.192.0', '64.150.255.255', 1083621376, 1083637759, 'BS', 'Bahamas'), +('64.151.0.0', '64.151.191.255', 1083637760, 1083686911, 'US', 'United States'), +('64.151.192.0', '64.151.255.255', 1083686912, 1083703295, 'CA', 'Canada'), +('64.152.0.0', '64.152.135.255', 1083703296, 1083738111, 'US', 'United States'), +('64.152.136.0', '64.152.143.255', 1083738112, 1083740159, 'PR', 'Puerto Rico'), +('64.152.144.0', '64.157.142.255', 1083740160, 1084067583, 'US', 'United States'), +('64.157.143.0', '64.157.143.255', 1084067584, 1084067839, 'CA', 'Canada'), +('64.157.144.0', '64.161.209.247', 1084067840, 1084346871, 'US', 'United States'), +('64.161.209.248', '64.161.209.255', 1084346872, 1084346879, 'PR', 'Puerto Rico'), +('64.161.210.0', '64.178.127.255', 1084346880, 1085439999, 'US', 'United States'), +('64.178.128.0', '64.178.159.255', 1085440000, 1085448191, 'CA', 'Canada'), +('64.178.160.0', '64.178.191.255', 1085448192, 1085456383, 'US', 'United States'), +('64.178.192.0', '64.178.197.255', 1085456384, 1085457919, 'PR', 'Puerto Rico'), +('64.178.198.0', '64.178.198.255', 1085457920, 1085458175, 'US', 'United States'), +('64.178.199.0', '64.178.223.255', 1085458176, 1085464575, 'PR', 'Puerto Rico'), +('64.178.224.0', '64.179.255.255', 1085464576, 1085538303, 'US', 'United States'), +('64.180.0.0', '64.180.255.255', 1085538304, 1085603839, 'CA', 'Canada'), +('64.181.0.0', '64.182.1.24', 1085603840, 1085669656, 'US', 'United States'), +('64.182.1.25', '64.182.1.32', 1085669657, 1085669664, 'BZ', 'Belize'), +('64.182.1.33', '64.182.1.162', 1085669665, 1085669794, 'US', 'United States'), +('64.182.1.163', '64.182.1.171', 1085669795, 1085669803, 'IS', 'Iceland'), +('64.182.1.172', '64.182.1.206', 1085669804, 1085669838, 'US', 'United States'), +('64.182.1.207', '64.182.1.215', 1085669839, 1085669847, 'FR', 'France'), +('64.182.1.216', '64.182.3.72', 1085669848, 1085670216, 'US', 'United States'), +('64.182.3.73', '64.182.3.81', 1085670217, 1085670225, 'HK', 'Hong Kong'), +('64.182.3.82', '64.182.3.135', 1085670226, 1085670279, 'US', 'United States'), +('64.182.3.136', '64.182.3.144', 1085670280, 1085670288, 'CA', 'Canada'), +('64.182.3.145', '64.182.3.153', 1085670289, 1085670297, 'NL', 'Netherlands'), +('64.182.3.154', '64.182.3.198', 1085670298, 1085670342, 'US', 'United States'), +('64.182.3.199', '64.182.3.207', 1085670343, 1085670351, 'IS', 'Iceland'), +('64.182.3.208', '64.182.3.242', 1085670352, 1085670386, 'US', 'United States'), +('64.182.3.243', '64.182.3.251', 1085670387, 1085670395, 'CZ', 'Czech Republic'), +('64.182.3.252', '64.182.4.55', 1085670396, 1085670455, 'US', 'United States'), +('64.182.4.56', '64.182.4.63', 1085670456, 1085670463, 'NL', 'Netherlands'), +('64.182.4.64', '64.182.4.228', 1085670464, 1085670628, 'US', 'United States'), +('64.182.4.229', '64.182.4.236', 1085670629, 1085670636, 'GR', 'Greece'), +('64.182.4.237', '64.182.4.244', 1085670637, 1085670644, 'GE', 'Georgia'), +('64.182.4.245', '64.182.7.160', 1085670645, 1085671328, 'US', 'United States'), +('64.182.7.161', '64.182.7.168', 1085671329, 1085671336, 'IR', 'Iran, Islamic Republic of'), +('64.182.7.169', '64.182.7.186', 1085671337, 1085671354, 'US', 'United States'), +('64.182.7.187', '64.182.7.195', 1085671355, 1085671363, 'MX', 'Mexico'), +('64.182.7.196', '64.182.7.212', 1085671364, 1085671380, 'US', 'United States'), +('64.182.7.213', '64.182.7.221', 1085671381, 1085671389, 'IT', 'Italy'), +('64.182.7.222', '64.182.9.8', 1085671390, 1085671688, 'US', 'United States'), +('64.182.9.9', '64.182.9.16', 1085671689, 1085671696, 'LB', 'Lebanon'), +('64.182.9.17', '64.182.9.32', 1085671697, 1085671712, 'US', 'United States'), +('64.182.9.33', '64.182.9.40', 1085671713, 1085671720, 'AS', 'American Samoa'), +('64.182.9.41', '64.182.11.159', 1085671721, 1085672351, 'US', 'United States'), +('64.182.11.160', '64.182.11.167', 1085672352, 1085672359, 'WS', 'Samoa'), +('64.182.11.168', '64.182.11.199', 1085672360, 1085672391, 'US', 'United States'), +('64.182.11.200', '64.182.11.207', 1085672392, 1085672399, 'WS', 'Samoa'), +('64.182.11.208', '64.182.13.119', 1085672400, 1085672823, 'US', 'United States'), +('64.182.13.120', '64.182.13.127', 1085672824, 1085672831, 'CI', 'Cote D''Ivoire'), +('64.182.13.128', '64.182.13.136', 1085672832, 1085672840, 'US', 'United States'), +('64.182.13.137', '64.182.13.144', 1085672841, 1085672848, 'CZ', 'Czech Republic'), +('64.182.13.145', '64.182.13.169', 1085672849, 1085672873, 'US', 'United States'), +('64.182.13.170', '64.182.13.177', 1085672874, 1085672881, 'NL', 'Netherlands'), +('64.182.13.178', '64.182.14.0', 1085672882, 1085672960, 'US', 'United States'), +('64.182.14.1', '64.182.14.9', 1085672961, 1085672969, 'WS', 'Samoa'), +('64.182.14.10', '64.182.14.18', 1085672970, 1085672978, 'CA', 'Canada'), +('64.182.14.19', '64.182.33.81', 1085672979, 1085677905, 'US', 'United States'), +('64.182.33.82', '64.182.33.89', 1085677906, 1085677913, 'FR', 'France'), +('64.182.33.90', '64.182.33.97', 1085677914, 1085677921, 'CZ', 'Czech Republic'), +('64.182.33.98', '64.182.33.115', 1085677922, 1085677939, 'US', 'United States'), +('64.182.33.116', '64.182.33.123', 1085677940, 1085677947, 'IT', 'Italy'), +('64.182.33.124', '64.182.35.72', 1085677948, 1085678408, 'US', 'United States'), +('64.182.35.73', '64.182.35.81', 1085678409, 1085678417, 'CA', 'Canada'), +('64.182.35.82', '64.182.37.17', 1085678418, 1085678865, 'US', 'United States'), +('64.182.37.18', '64.182.37.146', 1085678866, 1085678994, 'GR', 'Greece'), +('64.182.37.147', '64.182.37.179', 1085678995, 1085679027, 'US', 'United States'), +('64.182.37.180', '64.182.37.197', 1085679028, 1085679045, 'FR', 'France'), +('64.182.37.198', '64.182.48.31', 1085679046, 1085681695, 'US', 'United States'), +('64.182.48.32', '64.182.48.47', 1085681696, 1085681711, 'AS', 'American Samoa'), +('64.182.48.48', '64.182.48.56', 1085681712, 1085681720, 'US', 'United States'), +('64.182.48.57', '64.182.48.64', 1085681721, 1085681728, 'WS', 'Samoa'), +('64.182.48.65', '64.182.48.74', 1085681729, 1085681738, 'US', 'United States'), +('64.182.48.75', '64.182.48.92', 1085681739, 1085681756, 'MX', 'Mexico'), +('64.182.48.93', '64.182.48.101', 1085681757, 1085681765, 'EG', 'Egypt'), +('64.182.48.102', '64.182.48.242', 1085681766, 1085681906, 'US', 'United States'), +('64.182.48.243', '64.182.48.251', 1085681907, 1085681915, 'CA', 'Canada'), +('64.182.48.252', '64.182.49.0', 1085681916, 1085681920, 'US', 'United States'), +('64.182.49.1', '64.182.49.254', 1085681921, 1085682174, 'CA', 'Canada'), +('64.182.49.255', '64.182.50.82', 1085682175, 1085682258, 'US', 'United States'), +('64.182.50.83', '64.182.50.91', 1085682259, 1085682267, 'FR', 'France'), +('64.182.50.92', '64.182.50.108', 1085682268, 1085682284, 'US', 'United States'), +('64.182.50.109', '64.182.50.117', 1085682285, 1085682293, 'IT', 'Italy'), +('64.182.50.118', '64.182.50.155', 1085682294, 1085682331, 'US', 'United States'), +('64.182.50.156', '64.182.50.163', 1085682332, 1085682339, 'CA', 'Canada'), +('64.182.50.164', '64.182.50.198', 1085682340, 1085682374, 'US', 'United States'), +('64.182.50.199', '64.182.50.206', 1085682375, 1085682382, 'HK', 'Hong Kong'), +('64.182.50.207', '64.182.52.175', 1085682383, 1085682863, 'US', 'United States'), +('64.182.52.176', '64.182.52.184', 1085682864, 1085682872, 'AS', 'American Samoa'), +('64.182.52.185', '64.182.52.192', 1085682873, 1085682880, 'IT', 'Italy'), +('64.182.52.193', '64.182.52.218', 1085682881, 1085682906, 'US', 'United States'), +('64.182.52.219', '64.182.52.234', 1085682907, 1085682922, 'WS', 'Samoa'), +('64.182.52.235', '64.182.56.16', 1085682923, 1085683728, 'US', 'United States'), +('64.182.56.17', '64.182.56.24', 1085683729, 1085683736, 'CA', 'Canada'), +('64.182.56.25', '64.182.56.32', 1085683737, 1085683744, 'WS', 'Samoa'), +('64.182.56.33', '64.182.56.193', 1085683745, 1085683905, 'US', 'United States'), +('64.182.56.194', '64.182.56.202', 1085683906, 1085683914, 'TC', 'Turks and Caicos Islands'), +('64.182.56.203', '64.182.59.0', 1085683915, 1085684480, 'US', 'United States'), +('64.182.59.1', '64.182.59.254', 1085684481, 1085684734, 'AS', 'American Samoa'), +('64.182.59.255', '64.182.61.233', 1085684735, 1085685225, 'US', 'United States'), +('64.182.61.234', '64.182.61.241', 1085685226, 1085685233, 'CA', 'Canada'), +('64.182.61.242', '64.182.62.56', 1085685234, 1085685304, 'US', 'United States'), +('64.182.62.57', '64.182.62.64', 1085685305, 1085685312, 'SA', 'Saudi Arabia'), +('64.182.62.65', '64.182.62.97', 1085685313, 1085685345, 'US', 'United States'), +('64.182.62.98', '64.182.62.105', 1085685346, 1085685353, 'CA', 'Canada'), +('64.182.62.106', '64.182.63.70', 1085685354, 1085685574, 'US', 'United States'), +('64.182.63.71', '64.182.63.80', 1085685575, 1085685584, 'EG', 'Egypt'), +('64.182.63.81', '64.182.63.106', 1085685585, 1085685610, 'US', 'United States'), +('64.182.63.107', '64.182.63.114', 1085685611, 1085685618, 'IT', 'Italy'), +('64.182.63.115', '64.182.63.123', 1085685619, 1085685627, 'AU', 'Australia'), +('64.182.63.124', '64.182.63.132', 1085685628, 1085685636, 'US', 'United States'), +('64.182.63.133', '64.182.63.141', 1085685637, 1085685645, 'SN', 'Senegal'), +('64.182.63.142', '64.182.63.157', 1085685646, 1085685661, 'US', 'United States'), +('64.182.63.158', '64.182.63.165', 1085685662, 1085685669, 'FR', 'France'), +('64.182.63.166', '64.182.63.181', 1085685670, 1085685685, 'CA', 'Canada'), +('64.182.63.182', '64.182.112.151', 1085685686, 1085698199, 'US', 'United States'), +('64.182.112.152', '64.182.112.159', 1085698200, 1085698207, 'AS', 'American Samoa'), +('64.182.112.160', '64.184.191.255', 1085698208, 1085849599, 'US', 'United States'), +('64.184.192.0', '64.184.223.255', 1085849600, 1085857791, 'CA', 'Canada'), +('64.184.224.0', '64.185.191.255', 1085857792, 1085915135, 'US', 'United States'), +('64.185.192.0', '64.185.223.255', 1085915136, 1085923327, 'PR', 'Puerto Rico'), +('64.185.224.0', '64.186.255.255', 1085923328, 1085997055, 'US', 'United States'), +('64.187.0.0', '64.187.63.255', 1085997056, 1086013439, 'CA', 'Canada'), +('64.187.64.0', '64.187.112.71', 1086013440, 1086025799, 'US', 'United States'), +('64.187.112.72', '64.187.112.79', 1086025800, 1086025807, 'RO', 'Romania'), +('64.187.112.80', '64.191.24.196', 1086025808, 1086265540, 'US', 'United States'), +('64.191.24.197', '64.191.24.222', 1086265541, 1086265566, 'IE', 'Ireland'), +('64.191.24.223', '64.191.83.132', 1086265567, 1086280580, 'US', 'United States'), +('64.191.83.133', '64.191.83.182', 1086280581, 1086280630, 'IE', 'Ireland'), +('64.191.83.183', '64.191.93.228', 1086280631, 1086283236, 'US', 'United States'), +('64.191.93.229', '64.191.93.238', 1086283237, 1086283246, 'IE', 'Ireland'), +('64.191.93.239', '64.192.130.127', 1086283247, 1086358143, 'US', 'United States'), +('64.192.130.128', '64.192.130.255', 1086358144, 1086358271, 'PA', 'Panama'), +('64.192.131.0', '64.192.134.191', 1086358272, 1086359231, 'US', 'United States'), +('64.192.134.192', '64.192.134.255', 1086359232, 1086359295, 'IL', 'Israel'), +('64.192.135.0', '64.192.136.63', 1086359296, 1086359615, 'US', 'United States'), +('64.192.136.64', '64.192.136.95', 1086359616, 1086359647, 'LB', 'Lebanon'), +('64.192.136.96', '64.193.121.255', 1086359648, 1086421503, 'US', 'United States'), +('64.193.122.0', '64.193.123.255', 1086421504, 1086422015, 'MP', 'Northern Mariana Islands'), +('64.193.124.0', '64.194.80.255', 1086422016, 1086476543, 'US', 'United States'), +('64.194.81.0', '64.194.81.63', 1086476544, 1086476607, 'BM', 'Bermuda'), +('64.194.81.64', '64.200.239.127', 1086476608, 1086910335, 'US', 'United States'), +('64.200.239.128', '64.200.239.255', 1086910336, 1086910463, 'LB', 'Lebanon'), +('64.200.240.0', '64.201.31.255', 1086910464, 1086922751, 'US', 'United States'), +('64.201.32.0', '64.201.34.79', 1086922752, 1086923343, 'CA', 'Canada'), +('64.201.34.80', '64.201.34.95', 1086923344, 1086923359, 'US', 'United States'), +('64.201.34.96', '64.201.63.255', 1086923360, 1086930943, 'CA', 'Canada'), +('64.201.64.0', '64.201.159.255', 1086930944, 1086955519, 'US', 'United States'), +('64.201.160.0', '64.201.167.223', 1086955520, 1086957535, 'CA', 'Canada'), +('64.201.167.224', '64.201.167.255', 1086957536, 1086957567, 'US', 'United States'), +('64.201.168.0', '64.201.223.255', 1086957568, 1086971903, 'CA', 'Canada'), +('64.201.224.0', '64.202.111.255', 1086971904, 1087008767, 'US', 'United States'), +('64.202.112.0', '64.202.113.255', 1087008768, 1087009279, 'SG', 'Singapore'), +('64.202.114.0', '64.202.121.255', 1087009280, 1087011327, 'US', 'United States'), +('64.202.122.0', '64.202.122.255', 1087011328, 1087011583, 'GB', 'United Kingdom'), +('64.202.123.0', '64.202.143.255', 1087011584, 1087016959, 'US', 'United States'), +('64.202.144.0', '64.202.159.255', 1087016960, 1087021055, 'CA', 'Canada'), +('64.202.160.0', '64.208.181.255', 1087021056, 1087419903, 'US', 'United States'), +('64.208.182.0', '64.208.182.255', 1087419904, 1087420159, 'CA', 'Canada'), +('64.208.183.0', '64.209.7.255', 1087420160, 1087440895, 'US', 'United States'), +('64.209.8.0', '64.209.15.255', 1087440896, 1087442943, 'PR', 'Puerto Rico'), +('64.209.16.0', '64.209.225.255', 1087442944, 1087496703, 'US', 'United States'), +('64.209.226.0', '64.209.226.255', 1087496704, 1087496959, 'CA', 'Canada'), +('64.209.227.0', '64.209.230.127', 1087496960, 1087497855, 'US', 'United States'), +('64.209.230.128', '64.209.230.159', 1087497856, 1087497887, 'CA', 'Canada'), +('64.209.230.160', '64.210.196.191', 1087497888, 1087554751, 'US', 'United States'), +('64.210.196.192', '64.210.196.199', 1087554752, 1087554759, 'IL', 'Israel'), +('64.210.196.200', '64.210.207.255', 1087554760, 1087557631, 'US', 'United States'), +('64.210.208.0', '64.210.208.255', 1087557632, 1087557887, 'NO', 'Norway'), +('64.210.209.0', '64.212.199.255', 1087557888, 1087686655, 'US', 'United States'), +('64.212.200.0', '64.212.200.255', 1087686656, 1087686911, 'PR', 'Puerto Rico'), +('64.212.201.0', '64.213.55.255', 1087686912, 1087715327, 'US', 'United States'), +('64.213.56.0', '64.213.63.255', 1087715328, 1087717375, 'PA', 'Panama'), +('64.213.64.0', '64.213.223.255', 1087717376, 1087758335, 'US', 'United States'), +('64.213.224.0', '64.213.255.255', 1087758336, 1087766527, 'PR', 'Puerto Rico'), +('64.214.0.0', '64.215.119.255', 1087766528, 1087862783, 'US', 'United States'), +('64.215.120.0', '64.215.127.255', 1087862784, 1087864831, 'PA', 'Panama'), +('64.215.128.0', '64.216.4.255', 1087864832, 1087898879, 'US', 'United States'), +('64.216.5.0', '64.216.5.7', 1087898880, 1087898887, 'PR', 'Puerto Rico'), +('64.216.5.8', '64.216.6.255', 1087898888, 1087899391, 'US', 'United States'), +('64.216.7.0', '64.216.7.7', 1087899392, 1087899399, 'PR', 'Puerto Rico'), +('64.216.7.8', '64.216.50.47', 1087899400, 1087910447, 'US', 'United States'), +('64.216.50.48', '64.216.50.55', 1087910448, 1087910455, 'PR', 'Puerto Rico'), +('64.216.50.56', '64.216.68.71', 1087910456, 1087915079, 'US', 'United States'), +('64.216.68.72', '64.216.68.79', 1087915080, 1087915087, 'PR', 'Puerto Rico'), +('64.216.68.80', '64.216.69.255', 1087915088, 1087915519, 'US', 'United States'), +('64.216.70.0', '64.216.70.15', 1087915520, 1087915535, 'PR', 'Puerto Rico'), +('64.216.70.16', '64.216.70.63', 1087915536, 1087915583, 'US', 'United States'), +('64.216.70.64', '64.216.70.71', 1087915584, 1087915591, 'PR', 'Puerto Rico'), +('64.216.70.72', '64.216.70.79', 1087915592, 1087915599, 'US', 'United States'), +('64.216.70.80', '64.216.70.87', 1087915600, 1087915607, 'PR', 'Puerto Rico'), +('64.216.70.88', '64.216.81.87', 1087915608, 1087918423, 'US', 'United States'), +('64.216.81.88', '64.216.81.95', 1087918424, 1087918431, 'PR', 'Puerto Rico'), +('64.216.81.96', '64.216.81.167', 1087918432, 1087918503, 'US', 'United States'), +('64.216.81.168', '64.216.81.183', 1087918504, 1087918519, 'PR', 'Puerto Rico'), +('64.216.81.184', '64.216.88.167', 1087918520, 1087920295, 'US', 'United States'), +('64.216.88.168', '64.216.88.199', 1087920296, 1087920327, 'PR', 'Puerto Rico'), +('64.216.88.200', '64.216.88.207', 1087920328, 1087920335, 'US', 'United States'), +('64.216.88.208', '64.216.88.215', 1087920336, 1087920343, 'PR', 'Puerto Rico'), +('64.216.88.216', '64.216.89.47', 1087920344, 1087920431, 'US', 'United States'), +('64.216.89.48', '64.216.89.55', 1087920432, 1087920439, 'PR', 'Puerto Rico'), +('64.216.89.56', '64.216.138.175', 1087920440, 1087933103, 'US', 'United States'), +('64.216.138.176', '64.216.138.183', 1087933104, 1087933111, 'PR', 'Puerto Rico'), +('64.216.138.184', '64.216.146.127', 1087933112, 1087935103, 'US', 'United States'), +('64.216.146.128', '64.216.146.135', 1087935104, 1087935111, 'PR', 'Puerto Rico'), +('64.216.146.136', '64.216.146.239', 1087935112, 1087935215, 'US', 'United States'), +('64.216.146.240', '64.216.146.247', 1087935216, 1087935223, 'PR', 'Puerto Rico'), +('64.216.146.248', '64.216.198.103', 1087935224, 1087948391, 'US', 'United States'), +('64.216.198.104', '64.216.198.111', 1087948392, 1087948399, 'PR', 'Puerto Rico'), +('64.216.198.112', '64.216.199.95', 1087948400, 1087948639, 'US', 'United States'), +('64.216.199.96', '64.216.199.103', 1087948640, 1087948647, 'PR', 'Puerto Rico'), +('64.216.199.104', '64.216.200.39', 1087948648, 1087948839, 'US', 'United States'), +('64.216.200.40', '64.216.200.47', 1087948840, 1087948847, 'PR', 'Puerto Rico'), +('64.216.200.48', '64.216.203.167', 1087948848, 1087949735, 'US', 'United States'), +('64.216.203.168', '64.216.203.175', 1087949736, 1087949743, 'PR', 'Puerto Rico'), +('64.216.203.176', '64.216.204.239', 1087949744, 1087950063, 'US', 'United States'), +('64.216.204.240', '64.216.204.247', 1087950064, 1087950071, 'PR', 'Puerto Rico'), +('64.216.204.248', '64.216.205.31', 1087950072, 1087950111, 'US', 'United States'), +('64.216.205.32', '64.216.205.39', 1087950112, 1087950119, 'PR', 'Puerto Rico'), +('64.216.205.40', '64.216.227.55', 1087950120, 1087955767, 'US', 'United States'), +('64.216.227.56', '64.216.227.63', 1087955768, 1087955775, 'PR', 'Puerto Rico'), +('64.216.227.64', '64.216.244.63', 1087955776, 1087960127, 'US', 'United States'), +('64.216.244.64', '64.216.244.71', 1087960128, 1087960135, 'PR', 'Puerto Rico'), +('64.216.244.72', '64.217.5.15', 1087960136, 1087964431, 'US', 'United States'), +('64.217.5.16', '64.217.5.39', 1087964432, 1087964455, 'PR', 'Puerto Rico'), +('64.217.5.40', '64.217.5.47', 1087964456, 1087964463, 'US', 'United States'), +('64.217.5.48', '64.217.5.55', 1087964464, 1087964471, 'PR', 'Puerto Rico'), +('64.217.5.56', '64.217.5.159', 1087964472, 1087964575, 'US', 'United States'), +('64.217.5.160', '64.217.5.167', 1087964576, 1087964583, 'PR', 'Puerto Rico'), +('64.217.5.168', '64.217.5.183', 1087964584, 1087964599, 'US', 'United States'), +('64.217.5.184', '64.217.5.199', 1087964600, 1087964615, 'PR', 'Puerto Rico'), +('64.217.5.200', '64.217.68.215', 1087964616, 1087980759, 'US', 'United States'), +('64.217.68.216', '64.217.68.239', 1087980760, 1087980783, 'PR', 'Puerto Rico'), +('64.217.68.240', '64.217.109.135', 1087980784, 1087991175, 'US', 'United States'), +('64.217.109.136', '64.217.109.143', 1087991176, 1087991183, 'PR', 'Puerto Rico'), +('64.217.109.144', '64.217.109.167', 1087991184, 1087991207, 'US', 'United States'), +('64.217.109.168', '64.217.109.175', 1087991208, 1087991215, 'PR', 'Puerto Rico'), +('64.217.109.176', '64.217.192.159', 1087991216, 1088012447, 'US', 'United States'), +('64.217.192.160', '64.217.192.167', 1088012448, 1088012455, 'PR', 'Puerto Rico'), +('64.217.192.168', '64.217.193.183', 1088012456, 1088012727, 'US', 'United States'), +('64.217.193.184', '64.217.193.191', 1088012728, 1088012735, 'PR', 'Puerto Rico'), +('64.217.193.192', '64.217.193.207', 1088012736, 1088012751, 'US', 'United States'), +('64.217.193.208', '64.217.193.231', 1088012752, 1088012775, 'PR', 'Puerto Rico'), +('64.217.193.232', '64.217.200.247', 1088012776, 1088014583, 'US', 'United States'), +('64.217.200.248', '64.217.200.255', 1088014584, 1088014591, 'PR', 'Puerto Rico'), +('64.217.201.0', '64.217.222.63', 1088014592, 1088020031, 'US', 'United States'), +('64.217.222.64', '64.217.222.71', 1088020032, 1088020039, 'PR', 'Puerto Rico'), +('64.217.222.72', '64.217.223.135', 1088020040, 1088020359, 'US', 'United States'), +('64.217.223.136', '64.217.223.143', 1088020360, 1088020367, 'PR', 'Puerto Rico'), +('64.217.223.144', '64.218.7.199', 1088020368, 1088030663, 'US', 'United States'), +('64.218.7.200', '64.218.7.207', 1088030664, 1088030671, 'PR', 'Puerto Rico'), +('64.218.7.208', '64.218.12.95', 1088030672, 1088031839, 'US', 'United States'), +('64.218.12.96', '64.218.12.103', 1088031840, 1088031847, 'PR', 'Puerto Rico'), +('64.218.12.104', '64.218.12.199', 1088031848, 1088031943, 'US', 'United States'), +('64.218.12.200', '64.218.12.207', 1088031944, 1088031951, 'PR', 'Puerto Rico'), +('64.218.12.208', '64.218.117.223', 1088031952, 1088058847, 'US', 'United States'), +('64.218.117.224', '64.218.117.231', 1088058848, 1088058855, 'PR', 'Puerto Rico'), +('64.218.117.232', '64.218.245.191', 1088058856, 1088091583, 'US', 'United States'), +('64.218.245.192', '64.218.245.199', 1088091584, 1088091591, 'PR', 'Puerto Rico'), +('64.218.245.200', '64.218.254.31', 1088091592, 1088093727, 'US', 'United States'), +('64.218.254.32', '64.218.254.39', 1088093728, 1088093735, 'PR', 'Puerto Rico'), +('64.218.254.40', '64.219.26.103', 1088093736, 1088100967, 'US', 'United States'), +('64.219.26.104', '64.219.26.111', 1088100968, 1088100975, 'PR', 'Puerto Rico'), +('64.219.26.112', '64.219.26.159', 1088100976, 1088101023, 'US', 'United States'), +('64.219.26.160', '64.219.26.167', 1088101024, 1088101031, 'PR', 'Puerto Rico'), +('64.219.26.168', '64.219.55.63', 1088101032, 1088108351, 'US', 'United States'), +('64.219.55.64', '64.219.55.71', 1088108352, 1088108359, 'PR', 'Puerto Rico'), +('64.219.55.72', '64.219.89.207', 1088108360, 1088117199, 'US', 'United States'), +('64.219.89.208', '64.219.89.215', 1088117200, 1088117207, 'PR', 'Puerto Rico'), +('64.219.89.216', '64.219.102.207', 1088117208, 1088120527, 'US', 'United States'), +('64.219.102.208', '64.219.102.215', 1088120528, 1088120535, 'PR', 'Puerto Rico'), +('64.219.102.216', '64.219.202.231', 1088120536, 1088146151, 'US', 'United States'), +('64.219.202.232', '64.219.202.239', 1088146152, 1088146159, 'PR', 'Puerto Rico'), +('64.219.202.240', '64.219.209.103', 1088146160, 1088147815, 'US', 'United States'), +('64.219.209.104', '64.219.209.111', 1088147816, 1088147823, 'PR', 'Puerto Rico'), +('64.219.209.112', '64.219.226.151', 1088147824, 1088152215, 'US', 'United States'), +('64.219.226.152', '64.219.226.159', 1088152216, 1088152223, 'PR', 'Puerto Rico'), +('64.219.226.160', '64.224.10.16', 1088152224, 1088424464, 'US', 'United States'), +('64.224.10.17', '64.224.10.30', 1088424465, 1088424478, 'AU', 'Australia'), +('64.224.10.31', '64.224.112.144', 1088424479, 1088450704, 'US', 'United States'), +('64.224.112.145', '64.224.112.158', 1088450705, 1088450718, 'ES', 'Spain'), +('64.224.112.159', '64.224.116.176', 1088450719, 1088451760, 'US', 'United States'), +('64.224.116.177', '64.224.116.190', 1088451761, 1088451774, 'CA', 'Canada'), +('64.224.116.191', '64.224.118.16', 1088451775, 1088452112, 'US', 'United States'), +('64.224.118.17', '64.224.118.30', 1088452113, 1088452126, 'CA', 'Canada'), +('64.224.118.31', '64.224.119.48', 1088452127, 1088452400, 'US', 'United States'), +('64.224.119.49', '64.224.119.62', 1088452401, 1088452414, 'VE', 'Venezuela'), +('64.224.119.63', '64.224.121.160', 1088452415, 1088453024, 'US', 'United States'), +('64.224.121.161', '64.224.121.174', 1088453025, 1088453038, 'JP', 'Japan'), +('64.224.121.175', '64.224.121.240', 1088453039, 1088453104, 'US', 'United States'), +('64.224.121.241', '64.224.121.254', 1088453105, 1088453118, 'CL', 'Chile'), +('64.224.121.255', '64.224.123.112', 1088453119, 1088453488, 'US', 'United States'), +('64.224.123.113', '64.224.123.126', 1088453489, 1088453502, 'IE', 'Ireland'), +('64.224.123.127', '64.224.123.160', 1088453503, 1088453536, 'US', 'United States'), +('64.224.123.161', '64.224.123.174', 1088453537, 1088453550, 'CL', 'Chile'), +('64.224.123.175', '64.224.124.176', 1088453551, 1088453808, 'US', 'United States'), +('64.224.124.177', '64.224.124.190', 1088453809, 1088453822, 'AR', 'Argentina'), +('64.224.124.191', '64.224.124.208', 1088453823, 1088453840, 'US', 'United States'), +('64.224.124.209', '64.224.124.222', 1088453841, 1088453854, 'LB', 'Lebanon'), +('64.224.124.223', '64.224.124.224', 1088453855, 1088453856, 'US', 'United States'), +('64.224.124.225', '64.224.124.238', 1088453857, 1088453870, 'CN', 'China'), +('64.224.124.239', '64.224.127.48', 1088453871, 1088454448, 'US', 'United States'), +('64.224.127.49', '64.224.127.62', 1088454449, 1088454462, 'LB', 'Lebanon'), +('64.224.127.63', '64.224.201.31', 1088454463, 1088473375, 'US', 'United States'), +('64.224.201.32', '64.224.201.47', 1088473376, 1088473391, 'ES', 'Spain'), +('64.224.201.48', '64.224.202.95', 1088473392, 1088473695, 'US', 'United States'), +('64.224.202.96', '64.224.202.111', 1088473696, 1088473711, 'IE', 'Ireland'), +('64.224.202.112', '64.225.121.15', 1088473712, 1088518415, 'US', 'United States'), +('64.225.121.16', '64.225.121.31', 1088518416, 1088518431, 'HK', 'Hong Kong'), +('64.225.121.32', '64.225.121.79', 1088518432, 1088518479, 'US', 'United States'), +('64.225.121.80', '64.225.121.95', 1088518480, 1088518495, 'TH', 'Thailand'), +('64.225.121.96', '64.225.123.15', 1088518496, 1088518927, 'US', 'United States'), +('64.225.123.16', '64.225.123.95', 1088518928, 1088519007, 'UA', 'Ukraine'), +('64.225.123.96', '64.225.137.175', 1088519008, 1088522671, 'US', 'United States'), +('64.225.137.176', '64.225.137.191', 1088522672, 1088522687, 'CA', 'Canada'), +('64.225.137.192', '64.225.137.239', 1088522688, 1088522735, 'US', 'United States'), +('64.225.137.240', '64.225.137.255', 1088522736, 1088522751, 'TH', 'Thailand'), +('64.225.138.0', '64.225.139.191', 1088522752, 1088523199, 'US', 'United States'), +('64.225.139.192', '64.225.139.207', 1088523200, 1088523215, 'TH', 'Thailand'), +('64.225.139.208', '64.225.140.175', 1088523216, 1088523439, 'US', 'United States'), +('64.225.140.176', '64.225.140.223', 1088523440, 1088523487, 'JP', 'Japan'), +('64.225.140.224', '64.225.142.31', 1088523488, 1088523807, 'US', 'United States'), +('64.225.142.32', '64.225.142.47', 1088523808, 1088523823, 'PR', 'Puerto Rico'), +('64.225.142.48', '64.225.143.239', 1088523824, 1088524271, 'US', 'United States'), +('64.225.143.240', '64.225.143.254', 1088524272, 1088524286, 'IN', 'India'), +('64.225.143.255', '64.227.255.255', 1088524287, 1088684031, 'US', 'United States'), +('64.228.0.0', '64.231.255.255', 1088684032, 1088946175, 'CA', 'Canada'), +('64.232.0.0', '64.232.14.159', 1088946176, 1088949919, 'US', 'United States'), +('64.232.14.160', '64.232.14.175', 1088949920, 1088949935, 'CA', 'Canada'), +('64.232.14.176', '64.235.47.31', 1088949936, 1089154847, 'US', 'United States'), +('64.235.47.32', '64.235.47.39', 1089154848, 1089154855, 'VE', 'Venezuela'), +('64.235.47.40', '64.235.47.60', 1089154856, 1089154876, 'US', 'United States'), +('64.235.47.61', '64.235.47.68', 1089154877, 1089154884, 'AU', 'Australia'), +('64.235.47.69', '64.235.47.99', 1089154885, 1089154915, 'US', 'United States'), +('64.235.47.100', '64.235.47.116', 1089154916, 1089154932, 'AU', 'Australia'), +('64.235.47.117', '64.235.47.152', 1089154933, 1089154968, 'US', 'United States'), +('64.235.47.153', '64.235.47.161', 1089154969, 1089154977, 'IN', 'India'), +('64.235.47.162', '64.235.47.195', 1089154978, 1089155011, 'US', 'United States'), +('64.235.47.196', '64.235.47.215', 1089155012, 1089155031, 'TR', 'Turkey'), +('64.235.47.216', '64.235.53.255', 1089155032, 1089156607, 'US', 'United States'), +('64.235.54.0', '64.235.54.255', 1089156608, 1089156863, 'CA', 'Canada'), +('64.235.55.0', '64.235.95.255', 1089156864, 1089167359, 'US', 'United States'), +('64.235.96.0', '64.235.111.255', 1089167360, 1089171455, 'CA', 'Canada'), +('64.235.112.0', '64.235.127.255', 1089171456, 1089175551, 'A2', 'Satellite Provider'), +('64.235.128.0', '64.235.191.255', 1089175552, 1089191935, 'US', 'United States'), +('64.235.192.0', '64.235.194.143', 1089191936, 1089192591, 'CA', 'Canada'), +('64.235.194.144', '64.235.194.151', 1089192592, 1089192599, 'IT', 'Italy'), +('64.235.194.152', '64.235.210.79', 1089192600, 1089196623, 'CA', 'Canada'), +('64.235.210.80', '64.235.210.95', 1089196624, 1089196639, 'US', 'United States'), +('64.235.210.96', '64.235.212.255', 1089196640, 1089197311, 'CA', 'Canada'), +('64.235.213.0', '64.235.213.255', 1089197312, 1089197567, 'AU', 'Australia'), +('64.235.214.0', '64.235.223.255', 1089197568, 1089200127, 'CA', 'Canada'), +('64.235.224.0', '64.235.226.111', 1089200128, 1089200751, 'US', 'United States'), +('64.235.226.112', '64.235.226.143', 1089200752, 1089200783, 'CA', 'Canada'), +('64.235.226.144', '64.235.236.239', 1089200784, 1089203439, 'US', 'United States'), +('64.235.236.240', '64.235.236.247', 1089203440, 1089203447, 'AU', 'Australia'), +('64.235.236.248', '64.235.241.95', 1089203448, 1089204575, 'US', 'United States'), +('64.235.241.96', '64.235.241.127', 1089204576, 1089204607, 'CA', 'Canada'), +('64.235.241.128', '64.236.8.255', 1089204608, 1089210623, 'US', 'United States'), +('64.236.9.0', '64.236.9.255', 1089210624, 1089210879, 'GB', 'United Kingdom'), +('64.236.10.0', '64.236.11.255', 1089210880, 1089211391, 'BR', 'Brazil'), +('64.236.12.0', '64.236.44.255', 1089211392, 1089219839, 'US', 'United States'), +('64.236.45.0', '64.236.45.255', 1089219840, 1089220095, 'JP', 'Japan'), +('64.236.46.0', '64.236.99.255', 1089220096, 1089233919, 'US', 'United States'), +('64.236.100.0', '64.236.100.255', 1089233920, 1089234175, 'JP', 'Japan'), +('64.236.101.0', '64.236.105.255', 1089234176, 1089235455, 'US', 'United States'), +('64.236.106.0', '64.236.107.255', 1089235456, 1089235967, 'GB', 'United Kingdom'), +('64.236.108.0', '64.236.159.255', 1089235968, 1089249279, 'US', 'United States'), +('64.236.160.0', '64.236.160.255', 1089249280, 1089249535, 'IE', 'Ireland'), +('64.236.161.0', '64.236.215.255', 1089249536, 1089263615, 'US', 'United States'), +('64.236.216.0', '64.236.216.255', 1089263616, 1089263871, 'GB', 'United Kingdom'), +('64.236.217.0', '64.236.217.255', 1089263872, 1089264127, 'US', 'United States'), +('64.236.218.0', '64.236.219.255', 1089264128, 1089264639, 'FR', 'France'), +('64.236.220.0', '64.236.223.255', 1089264640, 1089265663, 'US', 'United States'), +('64.236.224.0', '64.236.224.255', 1089265664, 1089265919, 'GB', 'United Kingdom'), +('64.236.225.0', '64.236.226.255', 1089265920, 1089266431, 'US', 'United States'), +('64.236.227.0', '64.236.228.255', 1089266432, 1089266943, 'GB', 'United Kingdom'), +('64.236.229.0', '64.237.127.255', 1089266944, 1089306623, 'US', 'United States'), +('64.237.128.0', '64.237.255.255', 1089306624, 1089339391, 'PR', 'Puerto Rico'), +('64.238.0.0', '64.238.210.143', 1089339392, 1089393295, 'US', 'United States'), +('64.238.210.144', '64.238.210.255', 1089393296, 1089393407, 'CA', 'Canada'), +('64.238.211.0', '64.240.48.175', 1089393408, 1089482927, 'US', 'United States'), +('64.240.48.176', '64.240.48.183', 1089482928, 1089482935, 'CA', 'Canada'), +('64.240.48.184', '64.240.62.255', 1089482936, 1089486591, 'US', 'United States'), +('64.240.63.0', '64.240.63.15', 1089486592, 1089486607, 'CA', 'Canada'), +('64.240.63.16', '64.240.70.79', 1089486608, 1089488463, 'US', 'United States'), +('64.240.70.80', '64.240.70.95', 1089488464, 1089488479, 'JP', 'Japan'), +('64.240.70.96', '64.240.85.127', 1089488480, 1089492351, 'US', 'United States'), +('64.240.85.128', '64.240.85.191', 1089492352, 1089492415, 'CA', 'Canada'), +('64.240.85.192', '64.240.90.127', 1089492416, 1089493631, 'US', 'United States'), +('64.240.90.128', '64.240.90.143', 1089493632, 1089493647, 'CA', 'Canada'), +('64.240.90.144', '64.240.130.127', 1089493648, 1089503871, 'US', 'United States'), +('64.240.130.128', '64.240.130.135', 1089503872, 1089503879, 'CA', 'Canada'), +('64.240.130.136', '64.240.219.255', 1089503880, 1089526783, 'US', 'United States'), +('64.240.220.0', '64.240.220.255', 1089526784, 1089527039, 'VE', 'Venezuela'), +('64.240.221.0', '64.241.63.255', 1089527040, 1089552383, 'US', 'United States'), +('64.241.64.0', '64.241.64.7', 1089552384, 1089552391, 'AU', 'Australia'), +('64.241.64.8', '64.241.84.47', 1089552392, 1089557551, 'US', 'United States'), +('64.241.84.48', '64.241.84.55', 1089557552, 1089557559, 'CA', 'Canada'), +('64.241.84.56', '64.241.158.175', 1089557560, 1089576623, 'US', 'United States'), +('64.241.158.176', '64.241.158.183', 1089576624, 1089576631, 'CA', 'Canada'), +('64.241.158.184', '64.241.168.207', 1089576632, 1089579215, 'US', 'United States'), +('64.241.168.208', '64.241.168.215', 1089579216, 1089579223, 'VI', 'Virgin Islands, U.S.'), +('64.241.168.216', '64.241.169.255', 1089579224, 1089579519, 'US', 'United States'), +('64.241.170.0', '64.241.171.255', 1089579520, 1089580031, 'VE', 'Venezuela'), +('64.241.172.0', '64.241.176.231', 1089580032, 1089581287, 'US', 'United States'), +('64.241.176.232', '64.241.176.239', 1089581288, 1089581295, 'CA', 'Canada'), +('64.241.176.240', '64.241.194.255', 1089581296, 1089585919, 'US', 'United States'), +('64.241.195.0', '64.241.195.31', 1089585920, 1089585951, 'CA', 'Canada'), +('64.241.195.32', '64.241.203.31', 1089585952, 1089587999, 'US', 'United States'), +('64.241.203.32', '64.241.203.47', 1089588000, 1089588015, 'IN', 'India'), +('64.241.203.48', '64.241.225.15', 1089588016, 1089593615, 'US', 'United States'), +('64.241.225.16', '64.241.225.23', 1089593616, 1089593623, 'CA', 'Canada'), +('64.241.225.24', '64.241.231.143', 1089593624, 1089595279, 'US', 'United States'), +('64.241.231.144', '64.241.231.151', 1089595280, 1089595287, 'CA', 'Canada'), +('64.241.231.152', '64.241.236.127', 1089595288, 1089596543, 'US', 'United States'), +('64.241.236.128', '64.241.236.159', 1089596544, 1089596575, 'CA', 'Canada'), +('64.241.236.160', '64.241.245.255', 1089596576, 1089598975, 'US', 'United States'), +('64.241.246.0', '64.241.246.255', 1089598976, 1089599231, 'HK', 'Hong Kong'), +('64.241.247.0', '64.242.97.31', 1089599232, 1089626399, 'US', 'United States'), +('64.242.97.32', '64.242.97.39', 1089626400, 1089626407, 'CA', 'Canada'), +('64.242.97.40', '64.242.97.47', 1089626408, 1089626415, 'US', 'United States'), +('64.242.97.48', '64.242.97.63', 1089626416, 1089626431, 'CA', 'Canada'), +('64.242.97.64', '64.242.115.79', 1089626432, 1089631055, 'US', 'United States'), +('64.242.115.80', '64.242.115.95', 1089631056, 1089631071, 'CA', 'Canada'), +('64.242.115.96', '64.242.169.15', 1089631072, 1089644815, 'US', 'United States'), +('64.242.169.16', '64.242.169.31', 1089644816, 1089644831, 'GB', 'United Kingdom'), +('64.242.169.32', '64.243.28.127', 1089644832, 1089674367, 'US', 'United States'), +('64.243.28.128', '64.243.28.143', 1089674368, 1089674383, 'CA', 'Canada'), +('64.243.28.144', '64.243.210.127', 1089674384, 1089720959, 'US', 'United States'), +('64.243.210.128', '64.243.210.135', 1089720960, 1089720967, 'CA', 'Canada'), +('64.243.210.136', '64.243.210.191', 1089720968, 1089721023, 'US', 'United States'), +('64.243.210.192', '64.243.210.255', 1089721024, 1089721087, 'CA', 'Canada'), +('64.243.211.0', '64.243.212.159', 1089721088, 1089721503, 'US', 'United States'), +('64.243.212.160', '64.243.212.175', 1089721504, 1089721519, 'CA', 'Canada'), +('64.243.212.176', '64.243.213.127', 1089721520, 1089721727, 'US', 'United States'), +('64.243.213.128', '64.243.213.191', 1089721728, 1089721791, 'CA', 'Canada'), +('64.243.213.192', '64.243.221.175', 1089721792, 1089723823, 'US', 'United States'), +('64.243.221.176', '64.243.221.183', 1089723824, 1089723831, 'CA', 'Canada'), +('64.243.221.184', '64.247.127.255', 1089723832, 1089961983, 'US', 'United States'), +('64.247.128.0', '64.247.159.255', 1089961984, 1089970175, 'CA', 'Canada'), +('64.247.160.0', '64.247.175.255', 1089970176, 1089974271, 'PR', 'Puerto Rico'), +('64.247.176.0', '64.251.63.255', 1089974272, 1090207743, 'US', 'United States'), +('64.251.64.0', '64.251.111.255', 1090207744, 1090220031, 'CA', 'Canada'), +('64.251.112.0', '64.253.127.255', 1090220032, 1090355199, 'US', 'United States'), +('64.253.128.0', '64.253.132.103', 1090355200, 1090356327, 'CA', 'Canada'), +('64.253.132.104', '64.253.132.111', 1090356328, 1090356335, 'US', 'United States'), +('64.253.132.112', '64.253.137.159', 1090356336, 1090357663, 'CA', 'Canada'), +('64.253.137.160', '64.253.137.175', 1090357664, 1090357679, 'US', 'United States'), +('64.253.137.176', '64.253.137.199', 1090357680, 1090357703, 'CA', 'Canada'), +('64.253.137.200', '64.253.137.207', 1090357704, 1090357711, 'US', 'United States'), +('64.253.137.208', '64.253.137.223', 1090357712, 1090357727, 'CA', 'Canada'), +('64.253.137.224', '64.253.137.231', 1090357728, 1090357735, 'US', 'United States'), +('64.253.137.232', '64.253.159.255', 1090357736, 1090363391, 'CA', 'Canada'), +('64.253.160.0', '64.253.255.255', 1090363392, 1090387967, 'US', 'United States'), +('64.254.0.0', '64.254.13.4', 1090387968, 1090391300, 'CA', 'Canada'), +('64.254.13.5', '64.254.13.6', 1090391301, 1090391302, 'US', 'United States'), +('64.254.13.7', '64.254.13.63', 1090391303, 1090391359, 'CA', 'Canada'), +('64.254.13.64', '64.254.13.64', 1090391360, 1090391360, 'US', 'United States'), +('64.254.13.65', '64.254.31.255', 1090391361, 1090396159, 'CA', 'Canada'), +('64.254.32.0', '64.254.143.255', 1090396160, 1090424831, 'US', 'United States'), +('64.254.144.0', '64.254.159.255', 1090424832, 1090428927, 'CA', 'Canada'), +('64.254.160.0', '64.254.223.255', 1090428928, 1090445311, 'US', 'United States'), +('64.254.224.0', '64.254.231.255', 1090445312, 1090447359, 'CA', 'Canada'), +('64.254.232.0', '64.254.232.127', 1090447360, 1090447487, 'US', 'United States'), +('64.254.232.128', '64.254.234.255', 1090447488, 1090448127, 'CA', 'Canada'), +('64.254.235.0', '64.254.235.127', 1090448128, 1090448255, 'US', 'United States'), +('64.254.235.128', '64.254.255.255', 1090448256, 1090453503, 'CA', 'Canada'), +('64.255.0.0', '64.255.173.111', 1090453504, 1090497903, 'US', 'United States'), +('64.255.173.112', '64.255.173.127', 1090497904, 1090497919, 'AU', 'Australia'), +('64.255.173.128', '64.255.179.255', 1090497920, 1090499583, 'US', 'United States'), +('64.255.180.0', '64.255.180.255', 1090499584, 1090499839, 'NO', 'Norway'), +('64.255.181.0', '65.14.31.255', 1090499840, 1091444735, 'US', 'United States'), +('65.14.32.0', '65.14.33.255', 1091444736, 1091445247, 'A2', 'Satellite Provider'), +('65.14.34.0', '65.17.196.29', 1091445248, 1091683357, 'US', 'United States'), +('65.17.196.30', '65.17.196.39', 1091683358, 1091683367, 'GB', 'United Kingdom'), +('65.17.196.40', '65.17.196.59', 1091683368, 1091683387, 'US', 'United States'), +('65.17.196.60', '65.17.196.69', 1091683388, 1091683397, 'LB', 'Lebanon'), +('65.17.196.70', '65.17.196.79', 1091683398, 1091683407, 'US', 'United States'), +('65.17.196.80', '65.17.196.89', 1091683408, 1091683417, 'BE', 'Belgium'), +('65.17.196.90', '65.17.196.109', 1091683418, 1091683437, 'US', 'United States'), +('65.17.196.110', '65.17.196.119', 1091683438, 1091683447, 'QA', 'Qatar'), +('65.17.196.120', '65.17.197.9', 1091683448, 1091683593, 'US', 'United States'), +('65.17.197.10', '65.17.197.19', 1091683594, 1091683603, 'CA', 'Canada'), +('65.17.197.20', '65.17.197.29', 1091683604, 1091683613, 'US', 'United States'), +('65.17.197.30', '65.17.197.69', 1091683614, 1091683653, 'CA', 'Canada'), +('65.17.197.70', '65.17.198.29', 1091683654, 1091683869, 'US', 'United States'), +('65.17.198.30', '65.17.198.49', 1091683870, 1091683889, 'AU', 'Australia'), +('65.17.198.50', '65.17.198.69', 1091683890, 1091683909, 'US', 'United States'), +('65.17.198.70', '65.17.198.79', 1091683910, 1091683919, 'CR', 'Costa Rica'), +('65.17.198.80', '65.17.202.15', 1091683920, 1091684879, 'US', 'United States'), +('65.17.202.16', '65.17.202.31', 1091684880, 1091684895, 'CA', 'Canada'), +('65.17.202.32', '65.17.205.63', 1091684896, 1091685695, 'US', 'United States'), +('65.17.205.64', '65.17.205.79', 1091685696, 1091685711, 'QA', 'Qatar'), +('65.17.205.80', '65.17.205.127', 1091685712, 1091685759, 'US', 'United States'), +('65.17.205.128', '65.17.205.255', 1091685760, 1091685887, 'QA', 'Qatar'), +('65.17.206.0', '65.17.210.255', 1091685888, 1091687167, 'US', 'United States'), +('65.17.211.0', '65.17.211.15', 1091687168, 1091687183, 'CA', 'Canada'), +('65.17.211.16', '65.17.211.191', 1091687184, 1091687359, 'US', 'United States'), +('65.17.211.192', '65.17.211.223', 1091687360, 1091687391, 'CA', 'Canada'), +('65.17.211.224', '65.17.213.31', 1091687392, 1091687711, 'US', 'United States'), +('65.17.213.32', '65.17.213.47', 1091687712, 1091687727, 'ES', 'Spain'), +('65.17.213.48', '65.17.213.63', 1091687728, 1091687743, 'CO', 'Colombia'), +('65.17.213.64', '65.17.213.127', 1091687744, 1091687807, 'US', 'United States'), +('65.17.213.128', '65.17.213.159', 1091687808, 1091687839, 'CR', 'Costa Rica'), +('65.17.213.160', '65.17.213.191', 1091687840, 1091687871, 'ES', 'Spain'), +('65.17.213.192', '65.17.219.39', 1091687872, 1091689255, 'US', 'United States'), +('65.17.219.40', '65.17.219.49', 1091689256, 1091689265, 'GB', 'United Kingdom'), +('65.17.219.50', '65.17.219.79', 1091689266, 1091689295, 'US', 'United States'), +('65.17.219.80', '65.17.219.89', 1091689296, 1091689305, 'NZ', 'New Zealand'), +('65.17.219.90', '65.17.219.119', 1091689306, 1091689335, 'US', 'United States'), +('65.17.219.120', '65.17.219.129', 1091689336, 1091689345, 'SI', 'Slovenia'), +('65.17.219.130', '65.17.223.255', 1091689346, 1091690495, 'US', 'United States'), +('65.17.224.0', '65.17.224.15', 1091690496, 1091690511, 'CA', 'Canada'), +('65.17.224.16', '65.17.224.31', 1091690512, 1091690527, 'GB', 'United Kingdom'), +('65.17.224.32', '65.17.224.255', 1091690528, 1091690751, 'US', 'United States'), +('65.17.225.0', '65.17.225.63', 1091690752, 1091690815, 'GB', 'United Kingdom'), +('65.17.225.64', '65.17.227.63', 1091690816, 1091691327, 'US', 'United States'), +('65.17.227.64', '65.17.227.95', 1091691328, 1091691359, 'SA', 'Saudi Arabia'), +('65.17.227.96', '65.17.231.59', 1091691360, 1091692347, 'US', 'United States'), +('65.17.231.60', '65.17.231.69', 1091692348, 1091692357, 'SY', 'Syrian Arab Republic'), +('65.17.231.70', '65.17.231.99', 1091692358, 1091692387, 'US', 'United States'), +('65.17.231.100', '65.17.231.109', 1091692388, 1091692397, 'GB', 'United Kingdom'), +('65.17.231.110', '65.17.231.119', 1091692398, 1091692407, 'NL', 'Netherlands'), +('65.17.231.120', '65.17.231.159', 1091692408, 1091692447, 'US', 'United States'), +('65.17.231.160', '65.17.231.169', 1091692448, 1091692457, 'GB', 'United Kingdom'), +('65.17.231.170', '65.17.232.29', 1091692458, 1091692573, 'US', 'United States'), +('65.17.232.30', '65.17.232.39', 1091692574, 1091692583, 'BE', 'Belgium'), +('65.17.232.40', '65.17.232.99', 1091692584, 1091692643, 'US', 'United States'), +('65.17.232.100', '65.17.232.109', 1091692644, 1091692653, 'PH', 'Philippines'), +('65.17.232.110', '65.17.232.159', 1091692654, 1091692703, 'US', 'United States'), +('65.17.232.160', '65.17.232.169', 1091692704, 1091692713, 'SI', 'Slovenia'), +('65.17.232.170', '65.17.232.179', 1091692714, 1091692723, 'US', 'United States'), +('65.17.232.180', '65.17.232.189', 1091692724, 1091692733, 'CA', 'Canada'), +('65.17.232.190', '65.17.234.39', 1091692734, 1091693095, 'US', 'United States'), +('65.17.234.40', '65.17.234.79', 1091693096, 1091693135, 'NZ', 'New Zealand'), +('65.17.234.80', '65.17.239.111', 1091693136, 1091694447, 'US', 'United States'), +('65.17.239.112', '65.17.239.127', 1091694448, 1091694463, 'BG', 'Bulgaria'), +('65.17.239.128', '65.17.241.29', 1091694464, 1091694877, 'US', 'United States'), +('65.17.241.30', '65.17.241.39', 1091694878, 1091694887, 'DE', 'Germany'), +('65.17.241.40', '65.17.241.149', 1091694888, 1091694997, 'US', 'United States'), +('65.17.241.150', '65.17.241.159', 1091694998, 1091695007, 'CR', 'Costa Rica'), +('65.17.241.160', '65.17.241.169', 1091695008, 1091695017, 'CA', 'Canada'), +('65.17.241.170', '65.17.241.209', 1091695018, 1091695057, 'US', 'United States'), +('65.17.241.210', '65.17.241.219', 1091695058, 1091695067, 'CR', 'Costa Rica'), +('65.17.241.220', '65.17.242.19', 1091695068, 1091695123, 'US', 'United States'), +('65.17.242.20', '65.17.242.59', 1091695124, 1091695163, 'CA', 'Canada'), +('65.17.242.60', '65.17.242.109', 1091695164, 1091695213, 'US', 'United States'), +('65.17.242.110', '65.17.242.119', 1091695214, 1091695223, 'CA', 'Canada'), +('65.17.242.120', '65.17.242.179', 1091695224, 1091695283, 'US', 'United States'), +('65.17.242.180', '65.17.242.189', 1091695284, 1091695293, 'CA', 'Canada'), +('65.17.242.190', '65.17.243.127', 1091695294, 1091695487, 'US', 'United States'), +('65.17.243.128', '65.17.243.191', 1091695488, 1091695551, 'SA', 'Saudi Arabia'), +('65.17.243.192', '65.19.131.95', 1091695552, 1091797855, 'US', 'United States'), +('65.19.131.96', '65.19.131.111', 1091797856, 1091797871, 'IT', 'Italy'), +('65.19.131.112', '65.19.131.239', 1091797872, 1091797999, 'US', 'United States'), +('65.19.131.240', '65.19.131.255', 1091798000, 1091798015, 'DE', 'Germany'), +('65.19.132.0', '65.19.134.111', 1091798016, 1091798639, 'US', 'United States'), +('65.19.134.112', '65.19.134.119', 1091798640, 1091798647, 'CN', 'China'), +('65.19.134.120', '65.19.134.255', 1091798648, 1091798783, 'US', 'United States'), +('65.19.135.0', '65.19.135.255', 1091798784, 1091799039, 'CN', 'China'), +('65.19.136.0', '65.19.138.167', 1091799040, 1091799719, 'US', 'United States'), +('65.19.138.168', '65.19.138.175', 1091799720, 1091799727, 'SG', 'Singapore'), +('65.19.138.176', '65.19.140.255', 1091799728, 1091800319, 'US', 'United States'), +('65.19.141.0', '65.19.141.7', 1091800320, 1091800327, 'JP', 'Japan'), +('65.19.141.8', '65.19.147.255', 1091800328, 1091802111, 'US', 'United States'), +('65.19.148.0', '65.19.148.255', 1091802112, 1091802367, 'CA', 'Canada'), +('65.19.149.0', '65.19.151.255', 1091802368, 1091803135, 'US', 'United States'), +('65.19.152.0', '65.19.152.255', 1091803136, 1091803391, 'CN', 'China'), +('65.19.153.0', '65.19.154.223', 1091803392, 1091803871, 'US', 'United States'), +('65.19.154.224', '65.19.154.255', 1091803872, 1091803903, 'NL', 'Netherlands'), +('65.19.155.0', '65.19.156.103', 1091803904, 1091804263, 'US', 'United States'), +('65.19.156.104', '65.19.156.111', 1091804264, 1091804271, 'BM', 'Bermuda'), +('65.19.156.112', '65.19.156.127', 1091804272, 1091804287, 'US', 'United States'), +('65.19.156.128', '65.19.156.255', 1091804288, 1091804415, 'JP', 'Japan'), +('65.19.157.0', '65.19.165.255', 1091804416, 1091806719, 'US', 'United States'), +('65.19.166.0', '65.19.166.127', 1091806720, 1091806847, 'IT', 'Italy'), +('65.19.166.128', '65.19.167.111', 1091806848, 1091807087, 'US', 'United States'), +('65.19.167.112', '65.19.167.119', 1091807088, 1091807095, 'MY', 'Malaysia'), +('65.19.167.120', '65.19.167.255', 1091807096, 1091807231, 'US', 'United States'), +('65.19.168.0', '65.19.168.255', 1091807232, 1091807487, 'CA', 'Canada'), +('65.19.169.0', '65.19.170.255', 1091807488, 1091807999, 'US', 'United States'), +('65.19.171.0', '65.19.172.255', 1091808000, 1091808511, 'CA', 'Canada'), +('65.19.173.0', '65.19.174.15', 1091808512, 1091808783, 'US', 'United States'), +('65.19.174.16', '65.19.174.31', 1091808784, 1091808799, 'JP', 'Japan'), +('65.19.174.32', '65.19.176.95', 1091808800, 1091809375, 'US', 'United States'), +('65.19.176.96', '65.19.176.111', 1091809376, 1091809391, 'GB', 'United Kingdom'), +('65.19.176.112', '65.19.176.127', 1091809392, 1091809407, 'US', 'United States'), +('65.19.176.128', '65.19.176.159', 1091809408, 1091809439, 'JP', 'Japan'), +('65.19.176.160', '65.19.185.255', 1091809440, 1091811839, 'US', 'United States'), +('65.19.186.0', '65.19.186.255', 1091811840, 1091812095, 'IT', 'Italy'), +('65.19.187.0', '65.19.187.255', 1091812096, 1091812351, 'US', 'United States'), +('65.19.188.0', '65.19.188.255', 1091812352, 1091812607, 'CN', 'China'), +('65.19.189.0', '65.21.255.255', 1091812608, 1091960831, 'US', 'United States'), +('65.22.0.0', '65.22.255.255', 1091960832, 1092026367, 'CA', 'Canada'), +('65.23.0.0', '65.23.157.29', 1092026368, 1092066589, 'US', 'United States'), +('65.23.157.30', '65.23.157.37', 1092066590, 1092066597, 'KN', 'Saint Kitts and Nevis'), +('65.23.157.38', '65.23.158.226', 1092066598, 1092067042, 'US', 'United States'), +('65.23.158.227', '65.23.158.234', 1092067043, 1092067050, 'KN', 'Saint Kitts and Nevis'), +('65.23.158.235', '65.23.191.255', 1092067051, 1092075519, 'US', 'United States'), +('65.23.192.0', '65.23.255.255', 1092075520, 1092091903, 'PR', 'Puerto Rico'), +('65.24.0.0', '65.36.243.63', 1092091904, 1092940607, 'US', 'United States'), +('65.36.243.64', '65.36.243.95', 1092940608, 1092940639, 'AU', 'Australia'), +('65.36.243.96', '65.38.31.255', 1092940640, 1093017599, 'US', 'United States'), +('65.38.32.0', '65.38.47.255', 1093017600, 1093021695, 'CA', 'Canada'), +('65.38.48.0', '65.38.63.255', 1093021696, 1093025791, 'US', 'United States'), +('65.38.64.0', '65.38.95.255', 1093025792, 1093033983, 'CA', 'Canada'), +('65.38.96.0', '65.38.166.207', 1093033984, 1093052111, 'US', 'United States'), +('65.38.166.208', '65.38.166.223', 1093052112, 1093052127, 'AR', 'Argentina'), +('65.38.166.224', '65.38.168.31', 1093052128, 1093052447, 'US', 'United States'), +('65.38.168.32', '65.38.168.47', 1093052448, 1093052463, 'SA', 'Saudi Arabia'), +('65.38.168.48', '65.38.168.63', 1093052464, 1093052479, 'GB', 'United Kingdom'), +('65.38.168.64', '65.38.174.127', 1093052480, 1093054079, 'US', 'United States'), +('65.38.174.128', '65.38.174.143', 1093054080, 1093054095, 'GB', 'United Kingdom'), +('65.38.174.144', '65.38.174.175', 1093054096, 1093054127, 'US', 'United States'), +('65.38.174.176', '65.38.174.191', 1093054128, 1093054143, 'FR', 'France'), +('65.38.174.192', '65.38.174.223', 1093054144, 1093054175, 'US', 'United States'), +('65.38.174.224', '65.38.174.239', 1093054176, 1093054191, 'CA', 'Canada'), +('65.38.174.240', '65.38.179.255', 1093054192, 1093055487, 'US', 'United States'), +('65.38.180.0', '65.38.181.127', 1093055488, 1093055871, 'AR', 'Argentina'), +('65.38.181.128', '65.38.182.95', 1093055872, 1093056095, 'US', 'United States'), +('65.38.182.96', '65.38.182.127', 1093056096, 1093056127, 'SY', 'Syrian Arab Republic'), +('65.38.182.128', '65.38.182.143', 1093056128, 1093056143, 'US', 'United States'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('65.38.182.144', '65.38.182.159', 1093056144, 1093056159, 'SY', 'Syrian Arab Republic'), +('65.38.182.160', '65.38.182.167', 1093056160, 1093056167, 'US', 'United States'), +('65.38.182.168', '65.38.182.175', 1093056168, 1093056175, 'RO', 'Romania'), +('65.38.182.176', '65.38.183.63', 1093056176, 1093056319, 'US', 'United States'), +('65.38.183.64', '65.38.183.79', 1093056320, 1093056335, 'CA', 'Canada'), +('65.38.183.80', '65.38.183.191', 1093056336, 1093056447, 'US', 'United States'), +('65.38.183.192', '65.38.183.207', 1093056448, 1093056463, 'FR', 'France'), +('65.38.183.208', '65.38.183.223', 1093056464, 1093056479, 'CA', 'Canada'), +('65.38.183.224', '65.38.183.255', 1093056480, 1093056511, 'US', 'United States'), +('65.38.184.0', '65.38.184.15', 1093056512, 1093056527, 'GB', 'United Kingdom'), +('65.38.184.16', '65.38.184.79', 1093056528, 1093056591, 'US', 'United States'), +('65.38.184.80', '65.38.184.95', 1093056592, 1093056607, 'CA', 'Canada'), +('65.38.184.96', '65.38.185.191', 1093056608, 1093056959, 'US', 'United States'), +('65.38.185.192', '65.38.185.207', 1093056960, 1093056975, 'SA', 'Saudi Arabia'), +('65.38.185.208', '65.38.186.79', 1093056976, 1093057103, 'US', 'United States'), +('65.38.186.80', '65.38.186.95', 1093057104, 1093057119, 'JP', 'Japan'), +('65.38.186.96', '65.38.186.239', 1093057120, 1093057263, 'US', 'United States'), +('65.38.186.240', '65.38.186.255', 1093057264, 1093057279, 'IT', 'Italy'), +('65.38.187.0', '65.38.187.15', 1093057280, 1093057295, 'US', 'United States'), +('65.38.187.16', '65.38.187.63', 1093057296, 1093057343, 'CY', 'Cyprus'), +('65.38.187.64', '65.38.187.111', 1093057344, 1093057391, 'US', 'United States'), +('65.38.187.112', '65.38.187.127', 1093057392, 1093057407, 'RO', 'Romania'), +('65.38.187.128', '65.38.187.143', 1093057408, 1093057423, 'PH', 'Philippines'), +('65.38.187.144', '65.38.187.207', 1093057424, 1093057487, 'US', 'United States'), +('65.38.187.208', '65.38.187.223', 1093057488, 1093057503, 'CY', 'Cyprus'), +('65.38.187.224', '65.38.190.47', 1093057504, 1093058095, 'US', 'United States'), +('65.38.190.48', '65.38.190.63', 1093058096, 1093058111, 'SY', 'Syrian Arab Republic'), +('65.38.190.64', '65.38.190.223', 1093058112, 1093058271, 'US', 'United States'), +('65.38.190.224', '65.38.190.239', 1093058272, 1093058287, 'SY', 'Syrian Arab Republic'), +('65.38.190.240', '65.38.191.255', 1093058288, 1093058559, 'US', 'United States'), +('65.38.192.0', '65.38.209.255', 1093058560, 1093063167, 'PR', 'Puerto Rico'), +('65.38.210.0', '65.38.211.255', 1093063168, 1093063679, 'DO', 'Dominican Republic'), +('65.38.212.0', '65.38.223.255', 1093063680, 1093066751, 'PR', 'Puerto Rico'), +('65.38.224.0', '65.38.255.255', 1093066752, 1093074943, 'US', 'United States'), +('65.39.0.0', '65.39.63.255', 1093074944, 1093091327, 'CA', 'Canada'), +('65.39.64.0', '65.39.127.255', 1093091328, 1093107711, 'US', 'United States'), +('65.39.128.0', '65.39.134.119', 1093107712, 1093109367, 'CA', 'Canada'), +('65.39.134.120', '65.39.134.127', 1093109368, 1093109375, 'US', 'United States'), +('65.39.134.128', '65.39.136.119', 1093109376, 1093109879, 'CA', 'Canada'), +('65.39.136.120', '65.39.136.127', 1093109880, 1093109887, 'US', 'United States'), +('65.39.136.128', '65.39.136.207', 1093109888, 1093109967, 'CA', 'Canada'), +('65.39.136.208', '65.39.136.223', 1093109968, 1093109983, 'US', 'United States'), +('65.39.136.224', '65.39.139.255', 1093109984, 1093110783, 'CA', 'Canada'), +('65.39.140.0', '65.39.140.31', 1093110784, 1093110815, 'US', 'United States'), +('65.39.140.32', '65.39.140.47', 1093110816, 1093110831, 'CA', 'Canada'), +('65.39.140.48', '65.39.140.127', 1093110832, 1093110911, 'US', 'United States'), +('65.39.140.128', '65.39.140.143', 1093110912, 1093110927, 'CA', 'Canada'), +('65.39.140.144', '65.39.140.159', 1093110928, 1093110943, 'US', 'United States'), +('65.39.140.160', '65.39.143.159', 1093110944, 1093111711, 'CA', 'Canada'), +('65.39.143.160', '65.39.143.207', 1093111712, 1093111759, 'US', 'United States'), +('65.39.143.208', '65.39.144.63', 1093111760, 1093111871, 'CA', 'Canada'), +('65.39.144.64', '65.39.144.95', 1093111872, 1093111903, 'US', 'United States'), +('65.39.144.96', '65.39.144.127', 1093111904, 1093111935, 'CA', 'Canada'), +('65.39.144.128', '65.39.144.143', 1093111936, 1093111951, 'US', 'United States'), +('65.39.144.144', '65.39.144.151', 1093111952, 1093111959, 'CA', 'Canada'), +('65.39.144.152', '65.39.144.159', 1093111960, 1093111967, 'BV', 'Bouvet Island'), +('65.39.144.160', '65.39.146.63', 1093111968, 1093112383, 'CA', 'Canada'), +('65.39.146.64', '65.39.146.95', 1093112384, 1093112415, 'US', 'United States'), +('65.39.146.96', '65.39.146.111', 1093112416, 1093112431, 'CA', 'Canada'), +('65.39.146.112', '65.39.146.159', 1093112432, 1093112479, 'US', 'United States'), +('65.39.146.160', '65.39.146.207', 1093112480, 1093112527, 'CA', 'Canada'), +('65.39.146.208', '65.39.154.255', 1093112528, 1093114623, 'US', 'United States'), +('65.39.155.0', '65.39.155.55', 1093114624, 1093114679, 'CA', 'Canada'), +('65.39.155.56', '65.39.155.63', 1093114680, 1093114687, 'US', 'United States'), +('65.39.155.64', '65.39.155.87', 1093114688, 1093114711, 'CA', 'Canada'), +('65.39.155.88', '65.39.155.127', 1093114712, 1093114751, 'US', 'United States'), +('65.39.155.128', '65.39.155.199', 1093114752, 1093114823, 'CA', 'Canada'), +('65.39.155.200', '65.39.155.239', 1093114824, 1093114863, 'US', 'United States'), +('65.39.155.240', '65.39.156.255', 1093114864, 1093115135, 'CA', 'Canada'), +('65.39.157.0', '65.39.157.255', 1093115136, 1093115391, 'US', 'United States'), +('65.39.158.0', '65.39.159.191', 1093115392, 1093115839, 'CA', 'Canada'), +('65.39.159.192', '65.39.159.255', 1093115840, 1093115903, 'US', 'United States'), +('65.39.160.0', '65.39.163.63', 1093115904, 1093116735, 'CA', 'Canada'), +('65.39.163.64', '65.39.163.127', 1093116736, 1093116799, 'US', 'United States'), +('65.39.163.128', '65.39.163.191', 1093116800, 1093116863, 'CA', 'Canada'), +('65.39.163.192', '65.39.165.255', 1093116864, 1093117439, 'US', 'United States'), +('65.39.166.0', '65.39.166.79', 1093117440, 1093117519, 'CA', 'Canada'), +('65.39.166.80', '65.39.166.87', 1093117520, 1093117527, 'US', 'United States'), +('65.39.166.88', '65.39.166.95', 1093117528, 1093117535, 'CA', 'Canada'), +('65.39.166.96', '65.39.166.159', 1093117536, 1093117599, 'US', 'United States'), +('65.39.166.160', '65.39.166.167', 1093117600, 1093117607, 'CA', 'Canada'), +('65.39.166.168', '65.39.166.175', 1093117608, 1093117615, 'US', 'United States'), +('65.39.166.176', '65.39.167.159', 1093117616, 1093117855, 'CA', 'Canada'), +('65.39.167.160', '65.39.167.191', 1093117856, 1093117887, 'US', 'United States'), +('65.39.167.192', '65.39.168.255', 1093117888, 1093118207, 'CA', 'Canada'), +('65.39.169.0', '65.39.170.15', 1093118208, 1093118479, 'US', 'United States'), +('65.39.170.16', '65.39.170.31', 1093118480, 1093118495, 'CA', 'Canada'), +('65.39.170.32', '65.39.170.127', 1093118496, 1093118591, 'US', 'United States'), +('65.39.170.128', '65.39.170.223', 1093118592, 1093118687, 'CA', 'Canada'), +('65.39.170.224', '65.39.172.17', 1093118688, 1093118993, 'US', 'United States'), +('65.39.172.18', '65.39.172.30', 1093118994, 1093119006, 'CA', 'Canada'), +('65.39.172.31', '65.39.172.39', 1093119007, 1093119015, 'US', 'United States'), +('65.39.172.40', '65.39.172.47', 1093119016, 1093119023, 'CA', 'Canada'), +('65.39.172.48', '65.39.172.63', 1093119024, 1093119039, 'US', 'United States'), +('65.39.172.64', '65.39.172.159', 1093119040, 1093119135, 'CA', 'Canada'), +('65.39.172.160', '65.39.172.191', 1093119136, 1093119167, 'US', 'United States'), +('65.39.172.192', '65.39.173.79', 1093119168, 1093119311, 'CA', 'Canada'), +('65.39.173.80', '65.39.173.127', 1093119312, 1093119359, 'US', 'United States'), +('65.39.173.128', '65.39.174.175', 1093119360, 1093119663, 'CA', 'Canada'), +('65.39.174.176', '65.39.174.191', 1093119664, 1093119679, 'US', 'United States'), +('65.39.174.192', '65.39.174.207', 1093119680, 1093119695, 'CA', 'Canada'), +('65.39.174.208', '65.39.174.255', 1093119696, 1093119743, 'US', 'United States'), +('65.39.175.0', '65.39.175.63', 1093119744, 1093119807, 'CA', 'Canada'), +('65.39.175.64', '65.39.175.79', 1093119808, 1093119823, 'US', 'United States'), +('65.39.175.80', '65.39.175.87', 1093119824, 1093119831, 'CA', 'Canada'), +('65.39.175.88', '65.39.175.95', 1093119832, 1093119839, 'US', 'United States'), +('65.39.175.96', '65.39.175.191', 1093119840, 1093119935, 'CA', 'Canada'), +('65.39.175.192', '65.39.175.255', 1093119936, 1093119999, 'US', 'United States'), +('65.39.176.0', '65.39.177.127', 1093120000, 1093120383, 'CA', 'Canada'), +('65.39.177.128', '65.39.177.143', 1093120384, 1093120399, 'US', 'United States'), +('65.39.177.144', '65.39.177.159', 1093120400, 1093120415, 'BV', 'Bouvet Island'), +('65.39.177.160', '65.39.177.207', 1093120416, 1093120463, 'CA', 'Canada'), +('65.39.177.208', '65.39.177.223', 1093120464, 1093120479, 'US', 'United States'), +('65.39.177.224', '65.39.177.255', 1093120480, 1093120511, 'CA', 'Canada'), +('65.39.178.0', '65.39.178.255', 1093120512, 1093120767, 'GB', 'United Kingdom'), +('65.39.179.0', '65.39.179.143', 1093120768, 1093120911, 'US', 'United States'), +('65.39.179.144', '65.39.179.175', 1093120912, 1093120943, 'CA', 'Canada'), +('65.39.179.176', '65.39.179.191', 1093120944, 1093120959, 'US', 'United States'), +('65.39.179.192', '65.39.183.255', 1093120960, 1093122047, 'CA', 'Canada'), +('65.39.184.0', '65.39.184.255', 1093122048, 1093122303, 'US', 'United States'), +('65.39.185.0', '65.39.185.143', 1093122304, 1093122447, 'CA', 'Canada'), +('65.39.185.144', '65.39.185.159', 1093122448, 1093122463, 'US', 'United States'), +('65.39.185.160', '65.39.185.239', 1093122464, 1093122543, 'CA', 'Canada'), +('65.39.185.240', '65.39.185.247', 1093122544, 1093122551, 'US', 'United States'), +('65.39.185.248', '65.39.185.255', 1093122552, 1093122559, 'CA', 'Canada'), +('65.39.186.0', '65.39.186.31', 1093122560, 1093122591, 'US', 'United States'), +('65.39.186.32', '65.39.186.95', 1093122592, 1093122655, 'CA', 'Canada'), +('65.39.186.96', '65.39.186.127', 1093122656, 1093122687, 'US', 'United States'), +('65.39.186.128', '65.39.186.159', 1093122688, 1093122719, 'CA', 'Canada'), +('65.39.186.160', '65.39.186.167', 1093122720, 1093122727, 'US', 'United States'), +('65.39.186.168', '65.39.186.207', 1093122728, 1093122767, 'CA', 'Canada'), +('65.39.186.208', '65.39.186.223', 1093122768, 1093122783, 'US', 'United States'), +('65.39.186.224', '65.39.186.231', 1093122784, 1093122791, 'CA', 'Canada'), +('65.39.186.232', '65.39.186.239', 1093122792, 1093122799, 'US', 'United States'), +('65.39.186.240', '65.39.186.247', 1093122800, 1093122807, 'CA', 'Canada'), +('65.39.186.248', '65.39.186.255', 1093122808, 1093122815, 'US', 'United States'), +('65.39.187.0', '65.39.190.255', 1093122816, 1093123839, 'CA', 'Canada'), +('65.39.191.0', '65.39.191.63', 1093123840, 1093123903, 'US', 'United States'), +('65.39.191.64', '65.39.191.95', 1093123904, 1093123935, 'AN', 'Netherlands Antilles'), +('65.39.191.96', '65.39.191.111', 1093123936, 1093123951, 'US', 'United States'), +('65.39.191.112', '65.39.191.127', 1093123952, 1093123967, 'CA', 'Canada'), +('65.39.191.128', '65.39.191.143', 1093123968, 1093123983, 'US', 'United States'), +('65.39.191.144', '65.39.191.159', 1093123984, 1093123999, 'VG', 'Virgin Islands, British'), +('65.39.191.160', '65.39.191.255', 1093124000, 1093124095, 'US', 'United States'), +('65.39.192.0', '65.39.192.191', 1093124096, 1093124287, 'CA', 'Canada'), +('65.39.192.192', '65.39.192.255', 1093124288, 1093124351, 'US', 'United States'), +('65.39.193.0', '65.39.195.191', 1093124352, 1093125055, 'CA', 'Canada'), +('65.39.195.192', '65.39.195.199', 1093125056, 1093125063, 'US', 'United States'), +('65.39.195.200', '65.39.195.239', 1093125064, 1093125103, 'CA', 'Canada'), +('65.39.195.240', '65.39.195.247', 1093125104, 1093125111, 'US', 'United States'), +('65.39.195.248', '65.39.198.63', 1093125112, 1093125695, 'CA', 'Canada'), +('65.39.198.64', '65.39.198.87', 1093125696, 1093125719, 'US', 'United States'), +('65.39.198.88', '65.39.198.103', 1093125720, 1093125735, 'CA', 'Canada'), +('65.39.198.104', '65.39.198.111', 1093125736, 1093125743, 'US', 'United States'), +('65.39.198.112', '65.39.198.143', 1093125744, 1093125775, 'CA', 'Canada'), +('65.39.198.144', '65.39.198.239', 1093125776, 1093125871, 'US', 'United States'), +('65.39.198.240', '65.39.199.127', 1093125872, 1093126015, 'CA', 'Canada'), +('65.39.199.128', '65.39.199.159', 1093126016, 1093126047, 'US', 'United States'), +('65.39.199.160', '65.39.199.223', 1093126048, 1093126111, 'CA', 'Canada'), +('65.39.199.224', '65.39.199.246', 1093126112, 1093126134, 'US', 'United States'), +('65.39.199.247', '65.39.199.254', 1093126135, 1093126142, 'CA', 'Canada'), +('65.39.199.255', '65.39.199.255', 1093126143, 1093126143, 'US', 'United States'), +('65.39.200.0', '65.39.200.255', 1093126144, 1093126399, 'CA', 'Canada'), +('65.39.201.0', '65.39.201.31', 1093126400, 1093126431, 'VG', 'Virgin Islands, British'), +('65.39.201.32', '65.39.201.127', 1093126432, 1093126527, 'CA', 'Canada'), +('65.39.201.128', '65.39.201.143', 1093126528, 1093126543, 'US', 'United States'), +('65.39.201.144', '65.39.201.151', 1093126544, 1093126551, 'CA', 'Canada'), +('65.39.201.152', '65.39.201.159', 1093126552, 1093126559, 'US', 'United States'), +('65.39.201.160', '65.39.201.191', 1093126560, 1093126591, 'CA', 'Canada'), +('65.39.201.192', '65.39.201.207', 1093126592, 1093126607, 'US', 'United States'), +('65.39.201.208', '65.39.201.239', 1093126608, 1093126639, 'CA', 'Canada'), +('65.39.201.240', '65.39.202.145', 1093126640, 1093126801, 'US', 'United States'), +('65.39.202.146', '65.39.202.153', 1093126802, 1093126809, 'CA', 'Canada'), +('65.39.202.154', '65.39.202.167', 1093126810, 1093126823, 'US', 'United States'), +('65.39.202.168', '65.39.202.175', 1093126824, 1093126831, 'CA', 'Canada'), +('65.39.202.176', '65.39.202.255', 1093126832, 1093126911, 'US', 'United States'), +('65.39.203.0', '65.39.203.255', 1093126912, 1093127167, 'CA', 'Canada'), +('65.39.204.0', '65.39.204.23', 1093127168, 1093127191, 'US', 'United States'), +('65.39.204.24', '65.39.204.31', 1093127192, 1093127199, 'CA', 'Canada'), +('65.39.204.32', '65.39.204.255', 1093127200, 1093127423, 'US', 'United States'), +('65.39.205.0', '65.39.205.31', 1093127424, 1093127455, 'CA', 'Canada'), +('65.39.205.32', '65.39.205.47', 1093127456, 1093127471, 'US', 'United States'), +('65.39.205.48', '65.39.205.63', 1093127472, 1093127487, 'CA', 'Canada'), +('65.39.205.64', '65.39.205.127', 1093127488, 1093127551, 'US', 'United States'), +('65.39.205.128', '65.39.205.191', 1093127552, 1093127615, 'CA', 'Canada'), +('65.39.205.192', '65.39.205.223', 1093127616, 1093127647, 'US', 'United States'), +('65.39.205.224', '65.39.205.239', 1093127648, 1093127663, 'CA', 'Canada'), +('65.39.205.240', '65.39.206.95', 1093127664, 1093127775, 'US', 'United States'), +('65.39.206.96', '65.39.206.111', 1093127776, 1093127791, 'CA', 'Canada'), +('65.39.206.112', '65.39.207.255', 1093127792, 1093128191, 'US', 'United States'), +('65.39.208.0', '65.39.208.191', 1093128192, 1093128383, 'CA', 'Canada'), +('65.39.208.192', '65.39.210.255', 1093128384, 1093128959, 'US', 'United States'), +('65.39.211.0', '65.39.211.255', 1093128960, 1093129215, 'CA', 'Canada'), +('65.39.212.0', '65.39.216.127', 1093129216, 1093130367, 'US', 'United States'), +('65.39.216.128', '65.39.216.175', 1093130368, 1093130415, 'CA', 'Canada'), +('65.39.216.176', '65.39.216.255', 1093130416, 1093130495, 'US', 'United States'), +('65.39.217.0', '65.39.217.95', 1093130496, 1093130591, 'CA', 'Canada'), +('65.39.217.96', '65.39.217.191', 1093130592, 1093130687, 'US', 'United States'), +('65.39.217.192', '65.39.219.207', 1093130688, 1093131215, 'CA', 'Canada'), +('65.39.219.208', '65.39.219.223', 1093131216, 1093131231, 'US', 'United States'), +('65.39.219.224', '65.39.219.255', 1093131232, 1093131263, 'CA', 'Canada'), +('65.39.220.0', '65.39.220.127', 1093131264, 1093131391, 'US', 'United States'), +('65.39.220.128', '65.39.220.223', 1093131392, 1093131487, 'CA', 'Canada'), +('65.39.220.224', '65.39.221.255', 1093131488, 1093131775, 'US', 'United States'), +('65.39.222.0', '65.39.223.255', 1093131776, 1093132287, 'CA', 'Canada'), +('65.39.224.0', '65.39.224.63', 1093132288, 1093132351, 'US', 'United States'), +('65.39.224.64', '65.39.225.255', 1093132352, 1093132799, 'CA', 'Canada'), +('65.39.226.0', '65.39.226.255', 1093132800, 1093133055, 'US', 'United States'), +('65.39.227.0', '65.39.227.255', 1093133056, 1093133311, 'CA', 'Canada'), +('65.39.228.0', '65.39.228.255', 1093133312, 1093133567, 'US', 'United States'), +('65.39.229.0', '65.39.231.63', 1093133568, 1093134143, 'CA', 'Canada'), +('65.39.231.64', '65.39.231.127', 1093134144, 1093134207, 'US', 'United States'), +('65.39.231.128', '65.39.231.159', 1093134208, 1093134239, 'CA', 'Canada'), +('65.39.231.160', '65.39.231.175', 1093134240, 1093134255, 'US', 'United States'), +('65.39.231.176', '65.39.231.183', 1093134256, 1093134263, 'CA', 'Canada'), +('65.39.231.184', '65.39.231.191', 1093134264, 1093134271, 'US', 'United States'), +('65.39.231.192', '65.39.231.255', 1093134272, 1093134335, 'CA', 'Canada'), +('65.39.232.0', '65.39.235.255', 1093134336, 1093135359, 'US', 'United States'), +('65.39.236.0', '65.39.236.255', 1093135360, 1093135615, 'CA', 'Canada'), +('65.39.237.0', '65.39.237.15', 1093135616, 1093135631, 'US', 'United States'), +('65.39.237.16', '65.39.237.23', 1093135632, 1093135639, 'CA', 'Canada'), +('65.39.237.24', '65.39.237.63', 1093135640, 1093135679, 'US', 'United States'), +('65.39.237.64', '65.39.237.255', 1093135680, 1093135871, 'CA', 'Canada'), +('65.39.238.0', '65.39.241.255', 1093135872, 1093136895, 'US', 'United States'), +('65.39.242.0', '65.39.242.255', 1093136896, 1093137151, 'CA', 'Canada'), +('65.39.243.0', '65.39.243.127', 1093137152, 1093137279, 'US', 'United States'), +('65.39.243.128', '65.39.244.255', 1093137280, 1093137663, 'CA', 'Canada'), +('65.39.245.0', '65.39.245.127', 1093137664, 1093137791, 'US', 'United States'), +('65.39.245.128', '65.39.246.127', 1093137792, 1093138047, 'CA', 'Canada'), +('65.39.246.128', '65.39.246.255', 1093138048, 1093138175, 'US', 'United States'), +('65.39.247.0', '65.39.247.255', 1093138176, 1093138431, 'CA', 'Canada'), +('65.39.248.0', '65.39.248.127', 1093138432, 1093138559, 'US', 'United States'), +('65.39.248.128', '65.39.248.191', 1093138560, 1093138623, 'CA', 'Canada'), +('65.39.248.192', '65.39.251.255', 1093138624, 1093139455, 'US', 'United States'), +('65.39.252.0', '65.39.252.127', 1093139456, 1093139583, 'CA', 'Canada'), +('65.39.252.128', '65.39.252.191', 1093139584, 1093139647, 'US', 'United States'), +('65.39.252.192', '65.39.252.223', 1093139648, 1093139679, 'CA', 'Canada'), +('65.39.252.224', '65.39.252.239', 1093139680, 1093139695, 'US', 'United States'), +('65.39.252.240', '65.39.254.255', 1093139696, 1093140223, 'CA', 'Canada'), +('65.39.255.0', '65.43.7.15', 1093140224, 1093338895, 'US', 'United States'), +('65.43.7.16', '65.43.7.23', 1093338896, 1093338903, 'PR', 'Puerto Rico'), +('65.43.7.24', '65.48.127.255', 1093338904, 1093697535, 'US', 'United States'), +('65.48.128.0', '65.48.133.255', 1093697536, 1093699071, 'BB', 'Barbados'), +('65.48.134.0', '65.48.139.255', 1093699072, 1093700607, 'GD', 'Grenada'), +('65.48.140.0', '65.48.143.255', 1093700608, 1093701631, 'VC', 'Saint Vincent and the Grenadines'), +('65.48.144.0', '65.48.169.255', 1093701632, 1093708287, 'BB', 'Barbados'), +('65.48.170.0', '65.48.173.255', 1093708288, 1093709311, 'LC', 'Saint Lucia'), +('65.48.174.0', '65.48.214.255', 1093709312, 1093719807, 'BB', 'Barbados'), +('65.48.215.0', '65.48.216.255', 1093719808, 1093720319, 'LC', 'Saint Lucia'), +('65.48.217.0', '65.48.255.255', 1093720320, 1093730303, 'BB', 'Barbados'), +('65.49.0.0', '65.49.0.255', 1093730304, 1093730559, 'US', 'United States'), +('65.49.1.0', '65.49.1.255', 1093730560, 1093730815, 'HK', 'Hong Kong'), +('65.49.2.0', '65.49.27.207', 1093730816, 1093737423, 'US', 'United States'), +('65.49.27.208', '65.49.27.215', 1093737424, 1093737431, 'SE', 'Sweden'), +('65.49.27.216', '65.49.38.63', 1093737432, 1093740095, 'US', 'United States'), +('65.49.38.64', '65.49.38.127', 1093740096, 1093740159, 'JP', 'Japan'), +('65.49.38.128', '65.49.39.63', 1093740160, 1093740351, 'US', 'United States'), +('65.49.39.64', '65.49.39.127', 1093740352, 1093740415, 'JP', 'Japan'), +('65.49.39.128', '65.49.44.31', 1093740416, 1093741599, 'US', 'United States'), +('65.49.44.32', '65.49.44.39', 1093741600, 1093741607, 'ES', 'Spain'), +('65.49.44.40', '65.49.49.255', 1093741608, 1093743103, 'US', 'United States'), +('65.49.50.0', '65.49.50.255', 1093743104, 1093743359, 'HK', 'Hong Kong'), +('65.49.51.0', '65.49.51.63', 1093743360, 1093743423, 'US', 'United States'), +('65.49.51.64', '65.49.51.127', 1093743424, 1093743487, 'JP', 'Japan'), +('65.49.51.128', '65.57.253.223', 1093743488, 1094319583, 'US', 'United States'), +('65.57.253.224', '65.57.253.239', 1094319584, 1094319599, 'CA', 'Canada'), +('65.57.253.240', '65.61.191.255', 1094319600, 1094565887, 'US', 'United States'), +('65.61.192.0', '65.61.200.110', 1094565888, 1094568046, 'CA', 'Canada'), +('65.61.200.111', '65.61.200.125', 1094568047, 1094568061, 'MO', 'Macau'), +('65.61.200.126', '65.61.255.255', 1094568062, 1094582271, 'CA', 'Canada'), +('65.62.0.0', '65.64.38.23', 1094582272, 1094723095, 'US', 'United States'), +('65.64.38.24', '65.64.38.39', 1094723096, 1094723111, 'PR', 'Puerto Rico'), +('65.64.38.40', '65.64.55.7', 1094723112, 1094727431, 'US', 'United States'), +('65.64.55.8', '65.64.55.15', 1094727432, 1094727439, 'PR', 'Puerto Rico'), +('65.64.55.16', '65.64.55.215', 1094727440, 1094727639, 'US', 'United States'), +('65.64.55.216', '65.64.55.223', 1094727640, 1094727647, 'PR', 'Puerto Rico'), +('65.64.55.224', '65.64.141.63', 1094727648, 1094749503, 'US', 'United States'), +('65.64.141.64', '65.64.141.71', 1094749504, 1094749511, 'PR', 'Puerto Rico'), +('65.64.141.72', '65.64.180.183', 1094749512, 1094759607, 'US', 'United States'), +('65.64.180.184', '65.64.180.191', 1094759608, 1094759615, 'PR', 'Puerto Rico'), +('65.64.180.192', '65.64.199.231', 1094759616, 1094764519, 'US', 'United States'), +('65.64.199.232', '65.64.199.239', 1094764520, 1094764527, 'PR', 'Puerto Rico'), +('65.64.199.240', '65.65.6.223', 1094764528, 1094780639, 'US', 'United States'), +('65.65.6.224', '65.65.6.231', 1094780640, 1094780647, 'PR', 'Puerto Rico'), +('65.65.6.232', '65.65.67.31', 1094780648, 1094796063, 'US', 'United States'), +('65.65.67.32', '65.65.67.39', 1094796064, 1094796071, 'PR', 'Puerto Rico'), +('65.65.67.40', '65.65.73.175', 1094796072, 1094797743, 'US', 'United States'), +('65.65.73.176', '65.65.73.183', 1094797744, 1094797751, 'PR', 'Puerto Rico'), +('65.65.73.184', '65.65.73.247', 1094797752, 1094797815, 'US', 'United States'), +('65.65.73.248', '65.65.73.255', 1094797816, 1094797823, 'PR', 'Puerto Rico'), +('65.65.74.0', '65.65.90.55', 1094797824, 1094801975, 'US', 'United States'), +('65.65.90.56', '65.65.90.63', 1094801976, 1094801983, 'PR', 'Puerto Rico'), +('65.65.90.64', '65.65.90.207', 1094801984, 1094802127, 'US', 'United States'), +('65.65.90.208', '65.65.90.215', 1094802128, 1094802135, 'PR', 'Puerto Rico'), +('65.65.90.216', '65.65.111.191', 1094802136, 1094807487, 'US', 'United States'), +('65.65.111.192', '65.65.111.199', 1094807488, 1094807495, 'PR', 'Puerto Rico'), +('65.65.111.200', '65.65.122.23', 1094807496, 1094810135, 'US', 'United States'), +('65.65.122.24', '65.65.122.31', 1094810136, 1094810143, 'PR', 'Puerto Rico'), +('65.65.122.32', '65.65.125.143', 1094810144, 1094811023, 'US', 'United States'), +('65.65.125.144', '65.65.125.151', 1094811024, 1094811031, 'PR', 'Puerto Rico'), +('65.65.125.152', '65.65.125.191', 1094811032, 1094811071, 'US', 'United States'), +('65.65.125.192', '65.65.125.199', 1094811072, 1094811079, 'PR', 'Puerto Rico'), +('65.65.125.200', '65.65.169.103', 1094811080, 1094822247, 'US', 'United States'), +('65.65.169.104', '65.65.169.111', 1094822248, 1094822255, 'PR', 'Puerto Rico'), +('65.65.169.112', '65.65.169.183', 1094822256, 1094822327, 'US', 'United States'), +('65.65.169.184', '65.65.169.191', 1094822328, 1094822335, 'PR', 'Puerto Rico'), +('65.65.169.192', '65.65.170.159', 1094822336, 1094822559, 'US', 'United States'), +('65.65.170.160', '65.65.170.167', 1094822560, 1094822567, 'PR', 'Puerto Rico'), +('65.65.170.168', '65.65.205.119', 1094822568, 1094831479, 'US', 'United States'), +('65.65.205.120', '65.65.205.127', 1094831480, 1094831487, 'PR', 'Puerto Rico'), +('65.65.205.128', '65.65.215.55', 1094831488, 1094833975, 'US', 'United States'), +('65.65.215.56', '65.65.215.63', 1094833976, 1094833983, 'PR', 'Puerto Rico'), +('65.65.215.64', '65.65.237.231', 1094833984, 1094839783, 'US', 'United States'), +('65.65.237.232', '65.65.237.239', 1094839784, 1094839791, 'PR', 'Puerto Rico'), +('65.65.237.240', '65.65.238.55', 1094839792, 1094839863, 'US', 'United States'), +('65.65.238.56', '65.65.238.63', 1094839864, 1094839871, 'PR', 'Puerto Rico'), +('65.65.238.64', '65.65.243.23', 1094839872, 1094841111, 'US', 'United States'), +('65.65.243.24', '65.65.243.31', 1094841112, 1094841119, 'PR', 'Puerto Rico'), +('65.65.243.32', '65.65.243.103', 1094841120, 1094841191, 'US', 'United States'), +('65.65.243.104', '65.65.243.111', 1094841192, 1094841199, 'PR', 'Puerto Rico'), +('65.65.243.112', '65.65.251.135', 1094841200, 1094843271, 'US', 'United States'), +('65.65.251.136', '65.65.251.143', 1094843272, 1094843279, 'PR', 'Puerto Rico'), +('65.65.251.144', '65.66.6.111', 1094843280, 1094846063, 'US', 'United States'), +('65.66.6.112', '65.66.6.119', 1094846064, 1094846071, 'PR', 'Puerto Rico'), +('65.66.6.120', '65.66.24.175', 1094846072, 1094850735, 'US', 'United States'), +('65.66.24.176', '65.66.24.183', 1094850736, 1094850743, 'PR', 'Puerto Rico'), +('65.66.24.184', '65.66.49.135', 1094850744, 1094857095, 'US', 'United States'), +('65.66.49.136', '65.66.49.143', 1094857096, 1094857103, 'PR', 'Puerto Rico'), +('65.66.49.144', '65.66.65.127', 1094857104, 1094861183, 'US', 'United States'), +('65.66.65.128', '65.66.65.135', 1094861184, 1094861191, 'PR', 'Puerto Rico'), +('65.66.65.136', '65.66.67.223', 1094861192, 1094861791, 'US', 'United States'), +('65.66.67.224', '65.66.67.231', 1094861792, 1094861799, 'PR', 'Puerto Rico'), +('65.66.67.232', '65.66.88.135', 1094861800, 1094867079, 'US', 'United States'), +('65.66.88.136', '65.66.88.143', 1094867080, 1094867087, 'PR', 'Puerto Rico'), +('65.66.88.144', '65.66.96.103', 1094867088, 1094869095, 'US', 'United States'), +('65.66.96.104', '65.66.96.111', 1094869096, 1094869103, 'PR', 'Puerto Rico'), +('65.66.96.112', '65.66.116.103', 1094869104, 1094874215, 'US', 'United States'), +('65.66.116.104', '65.66.116.111', 1094874216, 1094874223, 'PR', 'Puerto Rico'), +('65.66.116.112', '65.66.133.175', 1094874224, 1094878639, 'US', 'United States'), +('65.66.133.176', '65.66.133.183', 1094878640, 1094878647, 'PR', 'Puerto Rico'), +('65.66.133.184', '65.66.138.215', 1094878648, 1094879959, 'US', 'United States'), +('65.66.138.216', '65.66.138.223', 1094879960, 1094879967, 'PR', 'Puerto Rico'), +('65.66.138.224', '65.66.140.199', 1094879968, 1094880455, 'US', 'United States'), +('65.66.140.200', '65.66.140.207', 1094880456, 1094880463, 'PR', 'Puerto Rico'), +('65.66.140.208', '65.66.144.7', 1094880464, 1094881287, 'US', 'United States'), +('65.66.144.8', '65.66.144.15', 1094881288, 1094881295, 'PR', 'Puerto Rico'), +('65.66.144.16', '65.66.144.23', 1094881296, 1094881303, 'US', 'United States'), +('65.66.144.24', '65.66.144.31', 1094881304, 1094881311, 'PR', 'Puerto Rico'), +('65.66.144.32', '65.66.163.47', 1094881312, 1094886191, 'US', 'United States'), +('65.66.163.48', '65.66.163.55', 1094886192, 1094886199, 'PR', 'Puerto Rico'), +('65.66.163.56', '65.66.163.159', 1094886200, 1094886303, 'US', 'United States'), +('65.66.163.160', '65.66.163.167', 1094886304, 1094886311, 'PR', 'Puerto Rico'), +('65.66.163.168', '65.66.174.127', 1094886312, 1094889087, 'US', 'United States'), +('65.66.174.128', '65.66.174.135', 1094889088, 1094889095, 'PR', 'Puerto Rico'), +('65.66.174.136', '65.66.186.223', 1094889096, 1094892255, 'US', 'United States'), +('65.66.186.224', '65.66.186.231', 1094892256, 1094892263, 'PR', 'Puerto Rico'), +('65.66.186.232', '65.66.190.71', 1094892264, 1094893127, 'US', 'United States'), +('65.66.190.72', '65.66.190.79', 1094893128, 1094893135, 'PR', 'Puerto Rico'), +('65.66.190.80', '65.66.190.231', 1094893136, 1094893287, 'US', 'United States'), +('65.66.190.232', '65.66.190.239', 1094893288, 1094893295, 'PR', 'Puerto Rico'), +('65.66.190.240', '65.66.212.159', 1094893296, 1094898847, 'US', 'United States'), +('65.66.212.160', '65.66.212.167', 1094898848, 1094898855, 'PR', 'Puerto Rico'), +('65.66.212.168', '65.66.224.223', 1094898856, 1094901983, 'US', 'United States'), +('65.66.224.224', '65.66.224.239', 1094901984, 1094901999, 'PR', 'Puerto Rico'), +('65.66.224.240', '65.66.224.247', 1094902000, 1094902007, 'US', 'United States'), +('65.66.224.248', '65.66.224.255', 1094902008, 1094902015, 'PR', 'Puerto Rico'), +('65.66.225.0', '65.66.235.103', 1094902016, 1094904679, 'US', 'United States'), +('65.66.235.104', '65.66.235.111', 1094904680, 1094904687, 'PR', 'Puerto Rico'), +('65.66.235.112', '65.66.255.175', 1094904688, 1094909871, 'US', 'United States'), +('65.66.255.176', '65.66.255.183', 1094909872, 1094909879, 'PR', 'Puerto Rico'), +('65.66.255.184', '65.67.0.31', 1094909880, 1094909983, 'US', 'United States'), +('65.67.0.32', '65.67.0.39', 1094909984, 1094909991, 'PR', 'Puerto Rico'), +('65.67.0.40', '65.67.4.47', 1094909992, 1094911023, 'US', 'United States'), +('65.67.4.48', '65.67.4.55', 1094911024, 1094911031, 'PR', 'Puerto Rico'), +('65.67.4.56', '65.67.8.143', 1094911032, 1094912143, 'US', 'United States'), +('65.67.8.144', '65.67.8.151', 1094912144, 1094912151, 'PR', 'Puerto Rico'), +('65.67.8.152', '65.67.8.239', 1094912152, 1094912239, 'US', 'United States'), +('65.67.8.240', '65.67.8.247', 1094912240, 1094912247, 'PR', 'Puerto Rico'), +('65.67.8.248', '65.67.11.7', 1094912248, 1094912775, 'US', 'United States'), +('65.67.11.8', '65.67.11.15', 1094912776, 1094912783, 'PR', 'Puerto Rico'), +('65.67.11.16', '65.67.12.15', 1094912784, 1094913039, 'US', 'United States'), +('65.67.12.16', '65.67.12.23', 1094913040, 1094913047, 'PR', 'Puerto Rico'), +('65.67.12.24', '65.67.12.135', 1094913048, 1094913159, 'US', 'United States'), +('65.67.12.136', '65.67.12.143', 1094913160, 1094913167, 'PR', 'Puerto Rico'), +('65.67.12.144', '65.67.29.63', 1094913168, 1094917439, 'US', 'United States'), +('65.67.29.64', '65.67.29.71', 1094917440, 1094917447, 'PR', 'Puerto Rico'), +('65.67.29.72', '65.67.30.39', 1094917448, 1094917671, 'US', 'United States'), +('65.67.30.40', '65.67.30.55', 1094917672, 1094917687, 'PR', 'Puerto Rico'), +('65.67.30.56', '65.67.32.183', 1094917688, 1094918327, 'US', 'United States'), +('65.67.32.184', '65.67.32.191', 1094918328, 1094918335, 'PR', 'Puerto Rico'), +('65.67.32.192', '65.67.38.103', 1094918336, 1094919783, 'US', 'United States'), +('65.67.38.104', '65.67.38.111', 1094919784, 1094919791, 'PR', 'Puerto Rico'), +('65.67.38.112', '65.67.38.151', 1094919792, 1094919831, 'US', 'United States'), +('65.67.38.152', '65.67.38.159', 1094919832, 1094919839, 'PR', 'Puerto Rico'), +('65.67.38.160', '65.67.46.23', 1094919840, 1094921751, 'US', 'United States'), +('65.67.46.24', '65.67.46.31', 1094921752, 1094921759, 'PR', 'Puerto Rico'), +('65.67.46.32', '65.67.46.71', 1094921760, 1094921799, 'US', 'United States'), +('65.67.46.72', '65.67.46.79', 1094921800, 1094921807, 'PR', 'Puerto Rico'), +('65.67.46.80', '65.67.55.151', 1094921808, 1094924183, 'US', 'United States'), +('65.67.55.152', '65.67.55.159', 1094924184, 1094924191, 'PR', 'Puerto Rico'), +('65.67.55.160', '65.67.64.63', 1094924192, 1094926399, 'US', 'United States'), +('65.67.64.64', '65.67.64.71', 1094926400, 1094926407, 'PR', 'Puerto Rico'), +('65.67.64.72', '65.67.64.191', 1094926408, 1094926527, 'US', 'United States'), +('65.67.64.192', '65.67.64.199', 1094926528, 1094926535, 'PR', 'Puerto Rico'), +('65.67.64.200', '65.67.65.151', 1094926536, 1094926743, 'US', 'United States'), +('65.67.65.152', '65.67.65.159', 1094926744, 1094926751, 'PR', 'Puerto Rico'), +('65.67.65.160', '65.67.73.87', 1094926752, 1094928727, 'US', 'United States'), +('65.67.73.88', '65.67.73.95', 1094928728, 1094928735, 'PR', 'Puerto Rico'), +('65.67.73.96', '65.67.90.207', 1094928736, 1094933199, 'US', 'United States'), +('65.67.90.208', '65.67.90.215', 1094933200, 1094933207, 'PR', 'Puerto Rico'), +('65.67.90.216', '65.67.91.199', 1094933208, 1094933447, 'US', 'United States'), +('65.67.91.200', '65.67.91.207', 1094933448, 1094933455, 'PR', 'Puerto Rico'), +('65.67.91.208', '65.67.96.111', 1094933456, 1094934639, 'US', 'United States'), +('65.67.96.112', '65.67.96.119', 1094934640, 1094934647, 'PR', 'Puerto Rico'), +('65.67.96.120', '65.67.96.175', 1094934648, 1094934703, 'US', 'United States'), +('65.67.96.176', '65.67.96.183', 1094934704, 1094934711, 'PR', 'Puerto Rico'), +('65.67.96.184', '65.67.97.191', 1094934712, 1094934975, 'US', 'United States'), +('65.67.97.192', '65.67.97.207', 1094934976, 1094934991, 'PR', 'Puerto Rico'), +('65.67.97.208', '65.67.98.23', 1094934992, 1094935063, 'US', 'United States'), +('65.67.98.24', '65.67.98.31', 1094935064, 1094935071, 'PR', 'Puerto Rico'), +('65.67.98.32', '65.67.98.87', 1094935072, 1094935127, 'US', 'United States'), +('65.67.98.88', '65.67.98.95', 1094935128, 1094935135, 'PR', 'Puerto Rico'), +('65.67.98.96', '65.67.99.63', 1094935136, 1094935359, 'US', 'United States'), +('65.67.99.64', '65.67.99.71', 1094935360, 1094935367, 'PR', 'Puerto Rico'), +('65.67.99.72', '65.67.99.199', 1094935368, 1094935495, 'US', 'United States'), +('65.67.99.200', '65.67.99.207', 1094935496, 1094935503, 'PR', 'Puerto Rico'), +('65.67.99.208', '65.67.104.159', 1094935504, 1094936735, 'US', 'United States'), +('65.67.104.160', '65.67.104.167', 1094936736, 1094936743, 'PR', 'Puerto Rico'), +('65.67.104.168', '65.67.105.15', 1094936744, 1094936847, 'US', 'United States'), +('65.67.105.16', '65.67.105.23', 1094936848, 1094936855, 'PR', 'Puerto Rico'), +('65.67.105.24', '65.67.154.111', 1094936856, 1094949487, 'US', 'United States'), +('65.67.154.112', '65.67.154.119', 1094949488, 1094949495, 'PR', 'Puerto Rico'), +('65.67.154.120', '65.67.160.15', 1094949496, 1094950927, 'US', 'United States'), +('65.67.160.16', '65.67.160.23', 1094950928, 1094950935, 'PR', 'Puerto Rico'), +('65.67.160.24', '65.67.160.47', 1094950936, 1094950959, 'US', 'United States'), +('65.67.160.48', '65.67.160.55', 1094950960, 1094950967, 'PR', 'Puerto Rico'), +('65.67.160.56', '65.67.160.63', 1094950968, 1094950975, 'US', 'United States'), +('65.67.160.64', '65.67.160.71', 1094950976, 1094950983, 'PR', 'Puerto Rico'), +('65.67.160.72', '65.67.160.239', 1094950984, 1094951151, 'US', 'United States'), +('65.67.160.240', '65.67.160.247', 1094951152, 1094951159, 'PR', 'Puerto Rico'), +('65.67.160.248', '65.67.196.111', 1094951160, 1094960239, 'US', 'United States'), +('65.67.196.112', '65.67.196.119', 1094960240, 1094960247, 'PR', 'Puerto Rico'), +('65.67.196.120', '65.67.236.159', 1094960248, 1094970527, 'US', 'United States'), +('65.67.236.160', '65.67.236.167', 1094970528, 1094970535, 'PR', 'Puerto Rico'), +('65.67.236.168', '65.68.10.111', 1094970536, 1094978159, 'US', 'United States'), +('65.68.10.112', '65.68.10.119', 1094978160, 1094978167, 'PR', 'Puerto Rico'), +('65.68.10.120', '65.68.34.79', 1094978168, 1094984271, 'US', 'United States'), +('65.68.34.80', '65.68.34.87', 1094984272, 1094984279, 'PR', 'Puerto Rico'), +('65.68.34.88', '65.68.34.167', 1094984280, 1094984359, 'US', 'United States'), +('65.68.34.168', '65.68.34.175', 1094984360, 1094984367, 'PR', 'Puerto Rico'), +('65.68.34.176', '65.68.35.39', 1094984368, 1094984487, 'US', 'United States'), +('65.68.35.40', '65.68.35.55', 1094984488, 1094984503, 'PR', 'Puerto Rico'), +('65.68.35.56', '65.68.37.207', 1094984504, 1094985167, 'US', 'United States'), +('65.68.37.208', '65.68.37.215', 1094985168, 1094985175, 'PR', 'Puerto Rico'), +('65.68.37.216', '65.68.38.207', 1094985176, 1094985423, 'US', 'United States'), +('65.68.38.208', '65.68.38.215', 1094985424, 1094985431, 'PR', 'Puerto Rico'), +('65.68.38.216', '65.68.39.183', 1094985432, 1094985655, 'US', 'United States'), +('65.68.39.184', '65.68.39.191', 1094985656, 1094985663, 'PR', 'Puerto Rico'), +('65.68.39.192', '65.68.40.199', 1094985664, 1094985927, 'US', 'United States'), +('65.68.40.200', '65.68.40.207', 1094985928, 1094985935, 'PR', 'Puerto Rico'), +('65.68.40.208', '65.68.124.31', 1094985936, 1095007263, 'US', 'United States'), +('65.68.124.32', '65.68.124.63', 1095007264, 1095007295, 'PR', 'Puerto Rico'), +('65.68.124.64', '65.68.164.63', 1095007296, 1095017535, 'US', 'United States'), +('65.68.164.64', '65.68.164.71', 1095017536, 1095017543, 'PR', 'Puerto Rico'), +('65.68.164.72', '65.68.165.79', 1095017544, 1095017807, 'US', 'United States'), +('65.68.165.80', '65.68.165.87', 1095017808, 1095017815, 'PR', 'Puerto Rico'), +('65.68.165.88', '65.68.167.71', 1095017816, 1095018311, 'US', 'United States'), +('65.68.167.72', '65.68.167.79', 1095018312, 1095018319, 'PR', 'Puerto Rico'), +('65.68.167.80', '65.68.167.223', 1095018320, 1095018463, 'US', 'United States'), +('65.68.167.224', '65.68.167.231', 1095018464, 1095018471, 'PR', 'Puerto Rico'), +('65.68.167.232', '65.68.233.135', 1095018472, 1095035271, 'US', 'United States'), +('65.68.233.136', '65.68.233.143', 1095035272, 1095035279, 'PR', 'Puerto Rico'), +('65.68.233.144', '65.68.244.119', 1095035280, 1095038071, 'US', 'United States'), +('65.68.244.120', '65.68.244.127', 1095038072, 1095038079, 'PR', 'Puerto Rico'), +('65.68.244.128', '65.68.244.247', 1095038080, 1095038199, 'US', 'United States'), +('65.68.244.248', '65.68.244.255', 1095038200, 1095038207, 'PR', 'Puerto Rico'), +('65.68.245.0', '65.68.246.31', 1095038208, 1095038495, 'US', 'United States'), +('65.68.246.32', '65.68.246.39', 1095038496, 1095038503, 'PR', 'Puerto Rico'), +('65.68.246.40', '65.69.15.135', 1095038504, 1095044999, 'US', 'United States'), +('65.69.15.136', '65.69.15.143', 1095045000, 1095045007, 'PR', 'Puerto Rico'), +('65.69.15.144', '65.69.18.95', 1095045008, 1095045727, 'US', 'United States'), +('65.69.18.96', '65.69.18.103', 1095045728, 1095045735, 'PR', 'Puerto Rico'), +('65.69.18.104', '65.69.19.47', 1095045736, 1095045935, 'US', 'United States'), +('65.69.19.48', '65.69.19.55', 1095045936, 1095045943, 'PR', 'Puerto Rico'), +('65.69.19.56', '65.69.19.63', 1095045944, 1095045951, 'US', 'United States'), +('65.69.19.64', '65.69.19.71', 1095045952, 1095045959, 'PR', 'Puerto Rico'), +('65.69.19.72', '65.69.22.231', 1095045960, 1095046887, 'US', 'United States'), +('65.69.22.232', '65.69.22.239', 1095046888, 1095046895, 'PR', 'Puerto Rico'), +('65.69.22.240', '65.69.29.15', 1095046896, 1095048463, 'US', 'United States'), +('65.69.29.16', '65.69.29.23', 1095048464, 1095048471, 'PR', 'Puerto Rico'), +('65.69.29.24', '65.69.61.15', 1095048472, 1095056655, 'US', 'United States'), +('65.69.61.16', '65.69.61.23', 1095056656, 1095056663, 'PR', 'Puerto Rico'), +('65.69.61.24', '65.69.63.223', 1095056664, 1095057375, 'US', 'United States'), +('65.69.63.224', '65.69.63.231', 1095057376, 1095057383, 'PR', 'Puerto Rico'), +('65.69.63.232', '65.69.104.47', 1095057384, 1095067695, 'US', 'United States'), +('65.69.104.48', '65.69.104.55', 1095067696, 1095067703, 'PR', 'Puerto Rico'), +('65.69.104.56', '65.69.106.191', 1095067704, 1095068351, 'US', 'United States'), +('65.69.106.192', '65.69.106.199', 1095068352, 1095068359, 'PR', 'Puerto Rico'), +('65.69.106.200', '65.69.107.23', 1095068360, 1095068439, 'US', 'United States'), +('65.69.107.24', '65.69.107.31', 1095068440, 1095068447, 'PR', 'Puerto Rico'), +('65.69.107.32', '65.69.107.39', 1095068448, 1095068455, 'US', 'United States'), +('65.69.107.40', '65.69.107.47', 1095068456, 1095068463, 'PR', 'Puerto Rico'), +('65.69.107.48', '65.69.110.127', 1095068464, 1095069311, 'US', 'United States'), +('65.69.110.128', '65.69.110.135', 1095069312, 1095069319, 'PR', 'Puerto Rico'), +('65.69.110.136', '65.69.111.151', 1095069320, 1095069591, 'US', 'United States'), +('65.69.111.152', '65.69.111.159', 1095069592, 1095069599, 'PR', 'Puerto Rico'), +('65.69.111.160', '65.69.123.255', 1095069600, 1095072767, 'US', 'United States'), +('65.69.124.0', '65.69.124.7', 1095072768, 1095072775, 'PR', 'Puerto Rico'), +('65.69.124.8', '65.69.125.23', 1095072776, 1095073047, 'US', 'United States'), +('65.69.125.24', '65.69.125.31', 1095073048, 1095073055, 'PR', 'Puerto Rico'), +('65.69.125.32', '65.69.134.223', 1095073056, 1095075551, 'US', 'United States'), +('65.69.134.224', '65.69.134.231', 1095075552, 1095075559, 'PR', 'Puerto Rico'), +('65.69.134.232', '65.69.147.47', 1095075560, 1095078703, 'US', 'United States'), +('65.69.147.48', '65.69.147.55', 1095078704, 1095078711, 'PR', 'Puerto Rico'), +('65.69.147.56', '65.69.156.15', 1095078712, 1095080975, 'US', 'United States'), +('65.69.156.16', '65.69.156.23', 1095080976, 1095080983, 'PR', 'Puerto Rico'), +('65.69.156.24', '65.69.157.79', 1095080984, 1095081295, 'US', 'United States'), +('65.69.157.80', '65.69.157.87', 1095081296, 1095081303, 'PR', 'Puerto Rico'), +('65.69.157.88', '65.69.157.223', 1095081304, 1095081439, 'US', 'United States'), +('65.69.157.224', '65.69.157.231', 1095081440, 1095081447, 'PR', 'Puerto Rico'), +('65.69.157.232', '65.69.169.247', 1095081448, 1095084535, 'US', 'United States'), +('65.69.169.248', '65.69.169.255', 1095084536, 1095084543, 'PR', 'Puerto Rico'), +('65.69.170.0', '65.69.171.247', 1095084544, 1095085047, 'US', 'United States'), +('65.69.171.248', '65.69.171.255', 1095085048, 1095085055, 'PR', 'Puerto Rico'), +('65.69.172.0', '65.69.180.111', 1095085056, 1095087215, 'US', 'United States'), +('65.69.180.112', '65.69.180.119', 1095087216, 1095087223, 'PR', 'Puerto Rico'), +('65.69.180.120', '65.69.180.183', 1095087224, 1095087287, 'US', 'United States'), +('65.69.180.184', '65.69.180.191', 1095087288, 1095087295, 'PR', 'Puerto Rico'), +('65.69.180.192', '65.69.182.87', 1095087296, 1095087703, 'US', 'United States'), +('65.69.182.88', '65.69.182.95', 1095087704, 1095087711, 'PR', 'Puerto Rico'), +('65.69.182.96', '65.69.182.127', 1095087712, 1095087743, 'US', 'United States'), +('65.69.182.128', '65.69.182.135', 1095087744, 1095087751, 'PR', 'Puerto Rico'), +('65.69.182.136', '65.69.184.239', 1095087752, 1095088367, 'US', 'United States'), +('65.69.184.240', '65.69.184.247', 1095088368, 1095088375, 'PR', 'Puerto Rico'), +('65.69.184.248', '65.69.185.15', 1095088376, 1095088399, 'US', 'United States'), +('65.69.185.16', '65.69.185.23', 1095088400, 1095088407, 'PR', 'Puerto Rico'), +('65.69.185.24', '65.69.189.207', 1095088408, 1095089615, 'US', 'United States'), +('65.69.189.208', '65.69.189.215', 1095089616, 1095089623, 'PR', 'Puerto Rico'), +('65.69.189.216', '65.69.190.175', 1095089624, 1095089839, 'US', 'United States'), +('65.69.190.176', '65.69.190.183', 1095089840, 1095089847, 'PR', 'Puerto Rico'), +('65.69.190.184', '65.69.192.231', 1095089848, 1095090407, 'US', 'United States'), +('65.69.192.232', '65.69.192.239', 1095090408, 1095090415, 'PR', 'Puerto Rico'), +('65.69.192.240', '65.69.202.143', 1095090416, 1095092879, 'US', 'United States'), +('65.69.202.144', '65.69.202.151', 1095092880, 1095092887, 'PR', 'Puerto Rico'), +('65.69.202.152', '65.69.203.159', 1095092888, 1095093151, 'US', 'United States'), +('65.69.203.160', '65.69.203.167', 1095093152, 1095093159, 'PR', 'Puerto Rico'), +('65.69.203.168', '65.69.241.159', 1095093160, 1095102879, 'US', 'United States'), +('65.69.241.160', '65.69.241.167', 1095102880, 1095102887, 'PR', 'Puerto Rico'), +('65.69.241.168', '65.69.242.231', 1095102888, 1095103207, 'US', 'United States'), +('65.69.242.232', '65.69.242.239', 1095103208, 1095103215, 'PR', 'Puerto Rico'), +('65.69.242.240', '65.69.243.95', 1095103216, 1095103327, 'US', 'United States'), +('65.69.243.96', '65.69.243.103', 1095103328, 1095103335, 'PR', 'Puerto Rico'), +('65.69.243.104', '65.69.253.31', 1095103336, 1095105823, 'US', 'United States'), +('65.69.253.32', '65.69.253.39', 1095105824, 1095105831, 'PR', 'Puerto Rico'), +('65.69.253.40', '65.69.254.135', 1095105832, 1095106183, 'US', 'United States'), +('65.69.254.136', '65.69.254.143', 1095106184, 1095106191, 'PR', 'Puerto Rico'), +('65.69.254.144', '65.69.254.151', 1095106192, 1095106199, 'US', 'United States'), +('65.69.254.152', '65.69.254.159', 1095106200, 1095106207, 'PR', 'Puerto Rico'), +('65.69.254.160', '65.70.0.15', 1095106208, 1095106575, 'US', 'United States'), +('65.70.0.16', '65.70.0.23', 1095106576, 1095106583, 'PR', 'Puerto Rico'), +('65.70.0.24', '65.70.2.7', 1095106584, 1095107079, 'US', 'United States'), +('65.70.2.8', '65.70.2.15', 1095107080, 1095107087, 'PR', 'Puerto Rico'), +('65.70.2.16', '65.70.42.223', 1095107088, 1095117535, 'US', 'United States'), +('65.70.42.224', '65.70.42.231', 1095117536, 1095117543, 'PR', 'Puerto Rico'), +('65.70.42.232', '65.70.61.255', 1095117544, 1095122431, 'US', 'United States'), +('65.70.62.0', '65.70.62.7', 1095122432, 1095122439, 'PR', 'Puerto Rico'), +('65.70.62.8', '65.70.62.95', 1095122440, 1095122527, 'US', 'United States'), +('65.70.62.96', '65.70.62.103', 1095122528, 1095122535, 'PR', 'Puerto Rico'), +('65.70.62.104', '65.70.72.79', 1095122536, 1095125071, 'US', 'United States'), +('65.70.72.80', '65.70.72.87', 1095125072, 1095125079, 'PR', 'Puerto Rico'), +('65.70.72.88', '65.70.73.135', 1095125080, 1095125383, 'US', 'United States'), +('65.70.73.136', '65.70.73.143', 1095125384, 1095125391, 'PR', 'Puerto Rico'), +('65.70.73.144', '65.70.81.151', 1095125392, 1095127447, 'US', 'United States'), +('65.70.81.152', '65.70.81.159', 1095127448, 1095127455, 'PR', 'Puerto Rico'), +('65.70.81.160', '65.70.83.159', 1095127456, 1095127967, 'US', 'United States'), +('65.70.83.160', '65.70.83.175', 1095127968, 1095127983, 'PR', 'Puerto Rico'), +('65.70.83.176', '65.70.90.207', 1095127984, 1095129807, 'US', 'United States'), +('65.70.90.208', '65.70.90.215', 1095129808, 1095129815, 'PR', 'Puerto Rico'), +('65.70.90.216', '65.70.125.47', 1095129816, 1095138607, 'US', 'United States'), +('65.70.125.48', '65.70.125.55', 1095138608, 1095138615, 'PR', 'Puerto Rico'), +('65.70.125.56', '65.70.130.87', 1095138616, 1095139927, 'US', 'United States'), +('65.70.130.88', '65.70.130.95', 1095139928, 1095139935, 'PR', 'Puerto Rico'), +('65.70.130.96', '65.70.138.255', 1095139936, 1095142143, 'US', 'United States'), +('65.70.139.0', '65.70.139.7', 1095142144, 1095142151, 'PR', 'Puerto Rico'), +('65.70.139.8', '65.70.195.127', 1095142152, 1095156607, 'US', 'United States'), +('65.70.195.128', '65.70.195.135', 1095156608, 1095156615, 'PR', 'Puerto Rico'), +('65.70.195.136', '65.70.209.175', 1095156616, 1095160239, 'US', 'United States'), +('65.70.209.176', '65.70.209.183', 1095160240, 1095160247, 'PR', 'Puerto Rico'), +('65.70.209.184', '65.70.212.95', 1095160248, 1095160927, 'US', 'United States'), +('65.70.212.96', '65.70.212.103', 1095160928, 1095160935, 'PR', 'Puerto Rico'), +('65.70.212.104', '65.71.61.207', 1095160936, 1095187919, 'US', 'United States'), +('65.71.61.208', '65.71.61.215', 1095187920, 1095187927, 'PR', 'Puerto Rico'), +('65.71.61.216', '65.71.63.135', 1095187928, 1095188359, 'US', 'United States'), +('65.71.63.136', '65.71.63.143', 1095188360, 1095188367, 'PR', 'Puerto Rico'), +('65.71.63.144', '65.71.73.39', 1095188368, 1095190823, 'US', 'United States'), +('65.71.73.40', '65.71.73.47', 1095190824, 1095190831, 'PR', 'Puerto Rico'), +('65.71.73.48', '65.71.99.55', 1095190832, 1095197495, 'US', 'United States'), +('65.71.99.56', '65.71.99.63', 1095197496, 1095197503, 'PR', 'Puerto Rico'), +('65.71.99.64', '65.71.139.255', 1095197504, 1095207935, 'US', 'United States'), +('65.71.140.0', '65.71.140.15', 1095207936, 1095207951, 'PR', 'Puerto Rico'), +('65.71.140.16', '65.71.192.207', 1095207952, 1095221455, 'US', 'United States'), +('65.71.192.208', '65.71.192.215', 1095221456, 1095221463, 'PR', 'Puerto Rico'), +('65.71.192.216', '65.71.195.207', 1095221464, 1095222223, 'US', 'United States'), +('65.71.195.208', '65.71.195.215', 1095222224, 1095222231, 'PR', 'Puerto Rico'), +('65.71.195.216', '65.71.251.199', 1095222232, 1095236551, 'US', 'United States'), +('65.71.251.200', '65.71.251.207', 1095236552, 1095236559, 'PR', 'Puerto Rico'), +('65.71.251.208', '65.74.156.247', 1095236560, 1095408887, 'US', 'United States'), +('65.74.156.248', '65.74.156.255', 1095408888, 1095408895, 'SE', 'Sweden'), +('65.74.157.0', '65.75.63.255', 1095408896, 1095450623, 'US', 'United States'), +('65.75.64.0', '65.75.127.255', 1095450624, 1095467007, 'BS', 'Bahamas'), +('65.75.128.0', '65.77.243.255', 1095467008, 1095627775, 'US', 'United States'), +('65.77.244.0', '65.77.245.255', 1095627776, 1095628287, 'CA', 'Canada'), +('65.77.246.0', '65.87.16.151', 1095628288, 1096224919, 'US', 'United States'), +('65.87.16.152', '65.87.16.159', 1096224920, 1096224927, 'CO', 'Colombia'), +('65.87.16.160', '65.87.223.255', 1096224928, 1096278015, 'US', 'United States'), +('65.87.224.0', '65.87.255.255', 1096278016, 1096286207, 'CA', 'Canada'), +('65.88.0.0', '65.88.18.63', 1096286208, 1096290879, 'US', 'United States'), +('65.88.18.64', '65.88.18.127', 1096290880, 1096290943, 'A2', 'Satellite Provider'), +('65.88.18.128', '65.88.253.255', 1096290944, 1096351231, 'US', 'United States'), +('65.88.254.0', '65.88.255.255', 1096351232, 1096351743, 'A2', 'Satellite Provider'), +('65.89.0.0', '65.91.255.255', 1096351744, 1096548351, 'US', 'United States'), +('65.92.0.0', '65.95.255.255', 1096548352, 1096810495, 'CA', 'Canada'), +('65.96.0.0', '65.97.31.255', 1096810496, 1096884223, 'US', 'United States'), +('65.97.32.0', '65.97.47.255', 1096884224, 1096888319, 'CA', 'Canada'), +('65.97.48.0', '65.97.191.255', 1096888320, 1096925183, 'US', 'United States'), +('65.97.192.0', '65.97.255.255', 1096925184, 1096941567, 'CA', 'Canada'), +('65.98.0.0', '65.98.4.87', 1096941568, 1096942679, 'US', 'United States'), +('65.98.4.88', '65.98.4.95', 1096942680, 1096942687, 'IE', 'Ireland'), +('65.98.4.96', '65.98.42.135', 1096942688, 1096952455, 'US', 'United States'), +('65.98.42.136', '65.98.42.143', 1096952456, 1096952463, 'GB', 'United Kingdom'), +('65.98.42.144', '65.98.42.199', 1096952464, 1096952519, 'US', 'United States'), +('65.98.42.200', '65.98.42.207', 1096952520, 1096952527, 'GB', 'United Kingdom'), +('65.98.42.208', '65.98.58.47', 1096952528, 1096956463, 'US', 'United States'), +('65.98.58.48', '65.98.58.55', 1096956464, 1096956471, 'GB', 'United Kingdom'), +('65.98.58.56', '65.98.58.215', 1096956472, 1096956631, 'US', 'United States'), +('65.98.58.216', '65.98.58.223', 1096956632, 1096956639, 'GB', 'United Kingdom'), +('65.98.58.224', '65.98.63.79', 1096956640, 1096957775, 'US', 'United States'), +('65.98.63.80', '65.98.63.95', 1096957776, 1096957791, 'IE', 'Ireland'), +('65.98.63.96', '65.98.67.71', 1096957792, 1096958791, 'US', 'United States'), +('65.98.67.72', '65.98.67.79', 1096958792, 1096958799, 'IN', 'India'), +('65.98.67.80', '65.98.70.111', 1096958800, 1096959599, 'US', 'United States'), +('65.98.70.112', '65.98.70.119', 1096959600, 1096959607, 'GB', 'United Kingdom'), +('65.98.70.120', '65.98.74.255', 1096959608, 1096960767, 'US', 'United States'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('65.98.75.0', '65.98.75.127', 1096960768, 1096960895, 'GB', 'United Kingdom'), +('65.98.75.128', '65.98.75.255', 1096960896, 1096961023, 'US', 'United States'), +('65.98.76.0', '65.98.76.127', 1096961024, 1096961151, 'GB', 'United Kingdom'), +('65.98.76.128', '65.98.88.23', 1096961152, 1096964119, 'US', 'United States'), +('65.98.88.24', '65.98.88.31', 1096964120, 1096964127, 'GB', 'United Kingdom'), +('65.98.88.32', '65.98.88.167', 1096964128, 1096964263, 'US', 'United States'), +('65.98.88.168', '65.98.88.175', 1096964264, 1096964271, 'IN', 'India'), +('65.98.88.176', '65.98.103.255', 1096964272, 1096968191, 'US', 'United States'), +('65.98.104.0', '65.98.104.127', 1096968192, 1096968319, 'GB', 'United Kingdom'), +('65.98.104.128', '65.98.104.255', 1096968320, 1096968447, 'US', 'United States'), +('65.98.105.0', '65.98.105.127', 1096968448, 1096968575, 'GB', 'United Kingdom'), +('65.98.105.128', '65.99.197.87', 1096968576, 1097057623, 'US', 'United States'), +('65.99.197.88', '65.99.197.95', 1097057624, 1097057631, 'IT', 'Italy'), +('65.99.197.96', '65.99.197.119', 1097057632, 1097057655, 'US', 'United States'), +('65.99.197.120', '65.99.197.127', 1097057656, 1097057663, 'NZ', 'New Zealand'), +('65.99.197.128', '65.99.197.191', 1097057664, 1097057727, 'US', 'United States'), +('65.99.197.192', '65.99.197.199', 1097057728, 1097057735, 'NZ', 'New Zealand'), +('65.99.197.200', '65.99.197.207', 1097057736, 1097057743, 'IT', 'Italy'), +('65.99.197.208', '65.99.197.231', 1097057744, 1097057767, 'US', 'United States'), +('65.99.197.232', '65.99.197.239', 1097057768, 1097057775, 'HK', 'Hong Kong'), +('65.99.197.240', '65.99.199.255', 1097057776, 1097058303, 'US', 'United States'), +('65.99.200.0', '65.99.200.63', 1097058304, 1097058367, 'IT', 'Italy'), +('65.99.200.64', '65.99.207.255', 1097058368, 1097060351, 'US', 'United States'), +('65.99.208.0', '65.99.208.7', 1097060352, 1097060359, 'IT', 'Italy'), +('65.99.208.8', '65.99.208.15', 1097060360, 1097060367, 'AU', 'Australia'), +('65.99.208.16', '65.99.208.31', 1097060368, 1097060383, 'US', 'United States'), +('65.99.208.32', '65.99.208.47', 1097060384, 1097060399, 'IT', 'Italy'), +('65.99.208.48', '65.99.208.111', 1097060400, 1097060463, 'US', 'United States'), +('65.99.208.112', '65.99.208.119', 1097060464, 1097060471, 'IT', 'Italy'), +('65.99.208.120', '65.99.220.239', 1097060472, 1097063663, 'US', 'United States'), +('65.99.220.240', '65.99.220.255', 1097063664, 1097063679, 'IT', 'Italy'), +('65.99.221.0', '65.99.235.255', 1097063680, 1097067519, 'US', 'United States'), +('65.99.236.0', '65.99.237.255', 1097067520, 1097068031, 'GB', 'United Kingdom'), +('65.99.238.0', '65.99.241.255', 1097068032, 1097069055, 'US', 'United States'), +('65.99.242.0', '65.99.242.255', 1097069056, 1097069311, 'CA', 'Canada'), +('65.99.243.0', '65.109.255.255', 1097069312, 1097727999, 'US', 'United States'), +('65.110.0.0', '65.110.4.127', 1097728000, 1097729151, 'CA', 'Canada'), +('65.110.4.128', '65.110.4.143', 1097729152, 1097729167, 'US', 'United States'), +('65.110.4.144', '65.110.11.31', 1097729168, 1097730847, 'CA', 'Canada'), +('65.110.11.32', '65.110.11.39', 1097730848, 1097730855, 'US', 'United States'), +('65.110.11.40', '65.110.11.103', 1097730856, 1097730919, 'CA', 'Canada'), +('65.110.11.104', '65.110.11.111', 1097730920, 1097730927, 'US', 'United States'), +('65.110.11.112', '65.110.13.119', 1097730928, 1097731447, 'CA', 'Canada'), +('65.110.13.120', '65.110.13.127', 1097731448, 1097731455, 'GB', 'United Kingdom'), +('65.110.13.128', '65.110.31.255', 1097731456, 1097736191, 'CA', 'Canada'), +('65.110.32.0', '65.110.159.255', 1097736192, 1097768959, 'US', 'United States'), +('65.110.160.0', '65.110.191.255', 1097768960, 1097777151, 'CA', 'Canada'), +('65.110.192.0', '65.111.19.95', 1097777152, 1097798495, 'US', 'United States'), +('65.111.19.96', '65.111.19.127', 1097798496, 1097798527, 'CA', 'Canada'), +('65.111.19.128', '65.111.143.255', 1097798528, 1097830399, 'US', 'United States'), +('65.111.144.0', '65.111.159.255', 1097830400, 1097834495, 'CA', 'Canada'), +('65.111.160.0', '65.112.144.255', 1097834496, 1097896191, 'US', 'United States'), +('65.112.145.0', '65.112.146.255', 1097896192, 1097896703, 'VI', 'Virgin Islands, U.S.'), +('65.112.147.0', '65.112.147.255', 1097896704, 1097896959, 'US', 'United States'), +('65.112.148.0', '65.112.148.255', 1097896960, 1097897215, 'VI', 'Virgin Islands, U.S.'), +('65.112.149.0', '65.113.87.255', 1097897216, 1097947135, 'US', 'United States'), +('65.113.88.0', '65.113.89.223', 1097947136, 1097947615, 'VI', 'Virgin Islands, U.S.'), +('65.113.89.224', '65.113.89.231', 1097947616, 1097947623, 'US', 'United States'), +('65.113.89.232', '65.113.92.119', 1097947624, 1097948279, 'VI', 'Virgin Islands, U.S.'), +('65.113.92.120', '65.113.92.127', 1097948280, 1097948287, 'US', 'United States'), +('65.113.92.128', '65.113.95.255', 1097948288, 1097949183, 'VI', 'Virgin Islands, U.S.'), +('65.113.96.0', '65.117.5.15', 1097949184, 1098188047, 'US', 'United States'), +('65.117.5.16', '65.117.5.23', 1098188048, 1098188055, 'CA', 'Canada'), +('65.117.5.24', '65.119.141.47', 1098188056, 1098353967, 'US', 'United States'), +('65.119.141.48', '65.119.141.63', 1098353968, 1098353983, 'CA', 'Canada'), +('65.119.141.64', '65.127.193.55', 1098353984, 1098891575, 'US', 'United States'), +('65.127.193.56', '65.127.193.87', 1098891576, 1098891607, 'AU', 'Australia'), +('65.127.193.88', '65.127.193.127', 1098891608, 1098891647, 'US', 'United States'), +('65.127.193.128', '65.127.193.159', 1098891648, 1098891679, 'AU', 'Australia'), +('65.127.193.160', '65.127.193.175', 1098891680, 1098891695, 'US', 'United States'), +('65.127.193.176', '65.127.193.191', 1098891696, 1098891711, 'AU', 'Australia'), +('65.127.193.192', '65.127.193.223', 1098891712, 1098891743, 'US', 'United States'), +('65.127.193.224', '65.127.193.255', 1098891744, 1098891775, 'AU', 'Australia'), +('65.127.194.0', '65.127.194.95', 1098891776, 1098891871, 'US', 'United States'), +('65.127.194.96', '65.127.194.111', 1098891872, 1098891887, 'AU', 'Australia'), +('65.127.194.112', '65.127.194.127', 1098891888, 1098891903, 'US', 'United States'), +('65.127.194.128', '65.127.194.159', 1098891904, 1098891935, 'AU', 'Australia'), +('65.127.194.160', '65.127.194.175', 1098891936, 1098891951, 'US', 'United States'), +('65.127.194.176', '65.127.194.223', 1098891952, 1098891999, 'AU', 'Australia'), +('65.127.194.224', '65.127.194.239', 1098892000, 1098892015, 'US', 'United States'), +('65.127.194.240', '65.127.194.255', 1098892016, 1098892031, 'AU', 'Australia'), +('65.127.195.0', '65.160.142.127', 1098892032, 1101041279, 'US', 'United States'), +('65.160.142.128', '65.160.142.255', 1101041280, 1101041407, 'IN', 'India'), +('65.160.143.0', '65.161.31.183', 1101041408, 1101078455, 'US', 'United States'), +('65.161.31.184', '65.161.31.191', 1101078456, 1101078463, 'CA', 'Canada'), +('65.161.31.192', '65.161.167.47', 1101078464, 1101113135, 'US', 'United States'), +('65.161.167.48', '65.161.167.55', 1101113136, 1101113143, 'CA', 'Canada'), +('65.161.167.56', '65.161.187.31', 1101113144, 1101118239, 'US', 'United States'), +('65.161.187.32', '65.161.187.63', 1101118240, 1101118271, 'GB', 'United Kingdom'), +('65.161.187.64', '65.161.199.255', 1101118272, 1101121535, 'US', 'United States'), +('65.161.200.0', '65.161.200.255', 1101121536, 1101121791, 'EC', 'Ecuador'), +('65.161.201.0', '65.162.15.255', 1101121792, 1101139967, 'US', 'United States'), +('65.162.16.0', '65.162.16.255', 1101139968, 1101140223, 'PR', 'Puerto Rico'), +('65.162.17.0', '65.162.162.135', 1101140224, 1101177479, 'US', 'United States'), +('65.162.162.136', '65.162.162.143', 1101177480, 1101177487, 'FR', 'France'), +('65.162.162.144', '65.162.183.255', 1101177488, 1101182975, 'US', 'United States'), +('65.162.184.0', '65.162.185.255', 1101182976, 1101183487, 'YE', 'Yemen'), +('65.162.186.0', '65.162.213.255', 1101183488, 1101190655, 'US', 'United States'), +('65.162.214.0', '65.162.215.255', 1101190656, 1101191167, 'EC', 'Ecuador'), +('65.162.216.0', '65.163.91.255', 1101191168, 1101224959, 'US', 'United States'), +('65.163.92.0', '65.163.92.255', 1101224960, 1101225215, 'EC', 'Ecuador'), +('65.163.93.0', '65.163.240.255', 1101225216, 1101263103, 'US', 'United States'), +('65.163.241.0', '65.163.241.255', 1101263104, 1101263359, 'AN', 'Netherlands Antilles'), +('65.163.242.0', '65.164.2.255', 1101263360, 1101267711, 'US', 'United States'), +('65.164.3.0', '65.164.3.255', 1101267712, 1101267967, 'CA', 'Canada'), +('65.164.4.0', '65.164.89.255', 1101267968, 1101289983, 'US', 'United States'), +('65.164.90.0', '65.164.90.255', 1101289984, 1101290239, 'AN', 'Netherlands Antilles'), +('65.164.91.0', '65.164.144.255', 1101290240, 1101304063, 'US', 'United States'), +('65.164.145.0', '65.164.145.255', 1101304064, 1101304319, 'EC', 'Ecuador'), +('65.164.146.0', '65.164.147.255', 1101304320, 1101304831, 'US', 'United States'), +('65.164.148.0', '65.164.151.255', 1101304832, 1101305855, 'HN', 'Honduras'), +('65.164.152.0', '65.164.152.191', 1101305856, 1101306047, 'US', 'United States'), +('65.164.152.192', '65.164.152.223', 1101306048, 1101306079, 'PR', 'Puerto Rico'), +('65.164.152.224', '65.165.28.239', 1101306080, 1101339887, 'US', 'United States'), +('65.165.28.240', '65.165.28.255', 1101339888, 1101339903, 'CA', 'Canada'), +('65.165.29.0', '65.165.79.255', 1101339904, 1101352959, 'US', 'United States'), +('65.165.80.0', '65.165.87.255', 1101352960, 1101355007, 'HN', 'Honduras'), +('65.165.88.0', '65.165.96.159', 1101355008, 1101357215, 'US', 'United States'), +('65.165.96.160', '65.165.96.167', 1101357216, 1101357223, 'SE', 'Sweden'), +('65.165.96.168', '65.165.208.127', 1101357224, 1101385855, 'US', 'United States'), +('65.165.208.128', '65.165.208.191', 1101385856, 1101385919, 'DK', 'Denmark'), +('65.165.208.192', '65.166.15.175', 1101385920, 1101402031, 'US', 'United States'), +('65.166.15.176', '65.166.15.191', 1101402032, 1101402047, 'PR', 'Puerto Rico'), +('65.166.15.192', '65.166.108.255', 1101402048, 1101425919, 'US', 'United States'), +('65.166.109.0', '65.166.109.255', 1101425920, 1101426175, 'EC', 'Ecuador'), +('65.166.110.0', '65.166.165.39', 1101426176, 1101440295, 'US', 'United States'), +('65.166.165.40', '65.166.165.47', 1101440296, 1101440303, 'CA', 'Canada'), +('65.166.165.48', '65.166.186.143', 1101440304, 1101445775, 'US', 'United States'), +('65.166.186.144', '65.166.186.159', 1101445776, 1101445791, 'CA', 'Canada'), +('65.166.186.160', '65.166.248.255', 1101445792, 1101461759, 'US', 'United States'), +('65.166.249.0', '65.166.249.255', 1101461760, 1101462015, 'AN', 'Netherlands Antilles'), +('65.166.250.0', '65.167.23.255', 1101462016, 1101469695, 'US', 'United States'), +('65.167.24.0', '65.167.31.255', 1101469696, 1101471743, 'HN', 'Honduras'), +('65.167.32.0', '65.167.47.255', 1101471744, 1101475839, 'US', 'United States'), +('65.167.48.0', '65.167.63.255', 1101475840, 1101479935, 'CO', 'Colombia'), +('65.167.64.0', '65.167.79.255', 1101479936, 1101484031, 'US', 'United States'), +('65.167.80.0', '65.167.95.255', 1101484032, 1101488127, 'CO', 'Colombia'), +('65.167.96.0', '65.167.113.143', 1101488128, 1101492623, 'US', 'United States'), +('65.167.113.144', '65.167.113.159', 1101492624, 1101492639, 'BE', 'Belgium'), +('65.167.113.160', '65.167.232.95', 1101492640, 1101523039, 'US', 'United States'), +('65.167.232.96', '65.167.232.127', 1101523040, 1101523071, 'GB', 'United Kingdom'), +('65.167.232.128', '65.168.51.255', 1101523072, 1101542399, 'US', 'United States'), +('65.168.52.0', '65.168.53.255', 1101542400, 1101542911, 'CO', 'Colombia'), +('65.168.54.0', '65.168.177.255', 1101542912, 1101574655, 'US', 'United States'), +('65.168.178.0', '65.168.179.255', 1101574656, 1101575167, 'EC', 'Ecuador'), +('65.168.180.0', '65.169.90.15', 1101575168, 1101617679, 'US', 'United States'), +('65.169.90.16', '65.169.90.23', 1101617680, 1101617687, 'CA', 'Canada'), +('65.169.90.24', '65.169.96.47', 1101617688, 1101619247, 'US', 'United States'), +('65.169.96.48', '65.169.96.55', 1101619248, 1101619255, 'NL', 'Netherlands'), +('65.169.96.56', '65.169.119.255', 1101619256, 1101625343, 'US', 'United States'), +('65.169.120.0', '65.169.120.63', 1101625344, 1101625407, 'VI', 'Virgin Islands, U.S.'), +('65.169.120.64', '65.169.154.143', 1101625408, 1101634191, 'US', 'United States'), +('65.169.154.144', '65.169.154.159', 1101634192, 1101634207, 'VI', 'Virgin Islands, U.S.'), +('65.169.154.160', '65.169.158.255', 1101634208, 1101635327, 'US', 'United States'), +('65.169.159.0', '65.169.159.255', 1101635328, 1101635583, 'HN', 'Honduras'), +('65.169.160.0', '65.169.217.255', 1101635584, 1101650431, 'US', 'United States'), +('65.169.218.0', '65.169.219.255', 1101650432, 1101650943, 'HN', 'Honduras'), +('65.169.220.0', '65.170.10.231', 1101650944, 1101662951, 'US', 'United States'), +('65.170.10.232', '65.170.10.239', 1101662952, 1101662959, 'PR', 'Puerto Rico'), +('65.170.10.240', '65.170.30.255', 1101662960, 1101668095, 'US', 'United States'), +('65.170.31.0', '65.170.31.255', 1101668096, 1101668351, 'EC', 'Ecuador'), +('65.170.32.0', '65.170.62.103', 1101668352, 1101676135, 'US', 'United States'), +('65.170.62.104', '65.170.62.111', 1101676136, 1101676143, 'CA', 'Canada'), +('65.170.62.112', '65.170.63.255', 1101676144, 1101676543, 'US', 'United States'), +('65.170.64.0', '65.170.71.255', 1101676544, 1101678591, 'EC', 'Ecuador'), +('65.170.72.0', '65.170.82.255', 1101678592, 1101681407, 'US', 'United States'), +('65.170.83.0', '65.170.83.255', 1101681408, 1101681663, 'NL', 'Netherlands'), +('65.170.84.0', '65.170.98.135', 1101681664, 1101685383, 'US', 'United States'), +('65.170.98.136', '65.170.98.143', 1101685384, 1101685391, 'NL', 'Netherlands'), +('65.170.98.144', '65.170.178.15', 1101685392, 1101705743, 'US', 'United States'), +('65.170.178.16', '65.170.178.31', 1101705744, 1101705759, 'PR', 'Puerto Rico'), +('65.170.178.32', '65.171.25.103', 1101705760, 1101732199, 'US', 'United States'), +('65.171.25.104', '65.171.25.111', 1101732200, 1101732207, 'CH', 'Switzerland'), +('65.171.25.112', '65.171.97.255', 1101732208, 1101750783, 'US', 'United States'), +('65.171.98.0', '65.171.99.255', 1101750784, 1101751295, 'BM', 'Bermuda'), +('65.171.100.0', '65.171.163.255', 1101751296, 1101767679, 'US', 'United States'), +('65.171.164.0', '65.171.165.255', 1101767680, 1101768191, 'AN', 'Netherlands Antilles'), +('65.171.166.0', '65.172.1.255', 1101768192, 1101791743, 'US', 'United States'), +('65.172.2.0', '65.172.2.255', 1101791744, 1101791999, 'A2', 'Satellite Provider'), +('65.172.3.0', '65.172.3.255', 1101792000, 1101792255, 'US', 'United States'), +('65.172.4.0', '65.172.5.255', 1101792256, 1101792767, 'A2', 'Satellite Provider'), +('65.172.6.0', '65.172.179.255', 1101792768, 1101837311, 'US', 'United States'), +('65.172.180.0', '65.172.180.255', 1101837312, 1101837567, 'EC', 'Ecuador'), +('65.172.181.0', '65.172.255.255', 1101837568, 1101856767, 'US', 'United States'), +('65.173.0.0', '65.173.0.7', 1101856768, 1101856775, 'DK', 'Denmark'), +('65.173.0.8', '65.173.29.31', 1101856776, 1101864223, 'US', 'United States'), +('65.173.29.32', '65.173.29.63', 1101864224, 1101864255, 'BE', 'Belgium'), +('65.173.29.64', '65.173.47.255', 1101864256, 1101869055, 'US', 'United States'), +('65.173.48.0', '65.173.49.255', 1101869056, 1101869567, 'GH', 'Ghana'), +('65.173.50.0', '65.173.55.255', 1101869568, 1101871103, 'US', 'United States'), +('65.173.56.0', '65.173.63.255', 1101871104, 1101873151, 'BO', 'Bolivia'), +('65.173.64.0', '65.173.98.79', 1101873152, 1101881935, 'US', 'United States'), +('65.173.98.80', '65.173.98.95', 1101881936, 1101881951, 'GB', 'United Kingdom'), +('65.173.98.96', '65.173.189.255', 1101881952, 1101905407, 'US', 'United States'), +('65.173.190.0', '65.173.190.255', 1101905408, 1101905663, 'GH', 'Ghana'), +('65.173.191.0', '65.173.252.127', 1101905664, 1101921407, 'US', 'United States'), +('65.173.252.128', '65.173.252.191', 1101921408, 1101921471, 'BA', 'Bosnia and Herzegovina'), +('65.173.252.192', '65.174.117.183', 1101921472, 1101952439, 'US', 'United States'), +('65.174.117.184', '65.174.117.191', 1101952440, 1101952447, 'CA', 'Canada'), +('65.174.117.192', '65.174.190.127', 1101952448, 1101971071, 'US', 'United States'), +('65.174.190.128', '65.174.190.135', 1101971072, 1101971079, 'VI', 'Virgin Islands, U.S.'), +('65.174.190.136', '65.174.198.31', 1101971080, 1101973023, 'US', 'United States'), +('65.174.198.32', '65.174.198.47', 1101973024, 1101973039, 'PR', 'Puerto Rico'), +('65.174.198.48', '65.174.231.223', 1101973040, 1101981663, 'US', 'United States'), +('65.174.231.224', '65.174.231.255', 1101981664, 1101981695, 'A2', 'Satellite Provider'), +('65.174.232.0', '65.174.237.255', 1101981696, 1101983231, 'US', 'United States'), +('65.174.238.0', '65.174.239.255', 1101983232, 1101983743, 'AN', 'Netherlands Antilles'), +('65.174.240.0', '65.175.63.255', 1101983744, 1102004223, 'US', 'United States'), +('65.175.64.0', '65.175.64.255', 1102004224, 1102004479, 'IN', 'India'), +('65.175.65.0', '65.175.68.255', 1102004480, 1102005503, 'US', 'United States'), +('65.175.69.0', '65.175.69.255', 1102005504, 1102005759, 'PK', 'Pakistan'), +('65.175.70.0', '65.175.70.63', 1102005760, 1102005823, 'BE', 'Belgium'), +('65.175.70.64', '65.175.71.255', 1102005824, 1102006271, 'US', 'United States'), +('65.175.72.0', '65.175.72.255', 1102006272, 1102006527, 'CA', 'Canada'), +('65.175.73.0', '65.175.77.47', 1102006528, 1102007599, 'US', 'United States'), +('65.175.77.48', '65.175.77.63', 1102007600, 1102007615, 'AR', 'Argentina'), +('65.175.77.64', '65.175.77.127', 1102007616, 1102007679, 'US', 'United States'), +('65.175.77.128', '65.175.77.143', 1102007680, 1102007695, 'IN', 'India'), +('65.175.77.144', '65.175.77.239', 1102007696, 1102007791, 'US', 'United States'), +('65.175.77.240', '65.175.77.255', 1102007792, 1102007807, 'VE', 'Venezuela'), +('65.175.78.0', '65.175.79.15', 1102007808, 1102008079, 'US', 'United States'), +('65.175.79.16', '65.175.79.23', 1102008080, 1102008087, 'DO', 'Dominican Republic'), +('65.175.79.24', '65.175.79.31', 1102008088, 1102008095, 'US', 'United States'), +('65.175.79.32', '65.175.79.39', 1102008096, 1102008103, 'CA', 'Canada'), +('65.175.79.40', '65.175.79.95', 1102008104, 1102008159, 'US', 'United States'), +('65.175.79.96', '65.175.79.103', 1102008160, 1102008167, 'GB', 'United Kingdom'), +('65.175.79.104', '65.175.81.159', 1102008168, 1102008735, 'US', 'United States'), +('65.175.81.160', '65.175.81.191', 1102008736, 1102008767, 'BE', 'Belgium'), +('65.175.81.192', '65.175.81.255', 1102008768, 1102008831, 'US', 'United States'), +('65.175.82.0', '65.175.82.31', 1102008832, 1102008863, 'BE', 'Belgium'), +('65.175.82.32', '65.175.88.255', 1102008864, 1102010623, 'US', 'United States'), +('65.175.89.0', '65.175.89.255', 1102010624, 1102010879, 'PK', 'Pakistan'), +('65.175.90.0', '65.175.92.255', 1102010880, 1102011647, 'US', 'United States'), +('65.175.93.0', '65.175.93.15', 1102011648, 1102011663, 'VE', 'Venezuela'), +('65.175.93.16', '65.175.93.31', 1102011664, 1102011679, 'GB', 'United Kingdom'), +('65.175.93.32', '65.175.93.207', 1102011680, 1102011855, 'US', 'United States'), +('65.175.93.208', '65.175.93.223', 1102011856, 1102011871, 'CR', 'Costa Rica'), +('65.175.93.224', '65.175.93.239', 1102011872, 1102011887, 'US', 'United States'), +('65.175.93.240', '65.175.93.255', 1102011888, 1102011903, 'AU', 'Australia'), +('65.175.94.0', '65.175.97.127', 1102011904, 1102012799, 'US', 'United States'), +('65.175.97.128', '65.175.97.255', 1102012800, 1102012927, 'IN', 'India'), +('65.175.98.0', '65.175.98.47', 1102012928, 1102012975, 'US', 'United States'), +('65.175.98.48', '65.175.98.63', 1102012976, 1102012991, 'RU', 'Russian Federation'), +('65.175.98.64', '65.175.98.239', 1102012992, 1102013167, 'US', 'United States'), +('65.175.98.240', '65.175.98.255', 1102013168, 1102013183, 'VE', 'Venezuela'), +('65.175.99.0', '65.175.110.255', 1102013184, 1102016255, 'US', 'United States'), +('65.175.111.0', '65.175.111.31', 1102016256, 1102016287, 'AR', 'Argentina'), +('65.175.111.32', '65.175.123.255', 1102016288, 1102019583, 'US', 'United States'), +('65.175.124.0', '65.175.124.127', 1102019584, 1102019711, 'IN', 'India'), +('65.175.124.128', '65.181.31.255', 1102019712, 1102389247, 'US', 'United States'), +('65.181.32.0', '65.181.47.255', 1102389248, 1102393343, 'CA', 'Canada'), +('65.181.48.0', '65.181.255.255', 1102393344, 1102446591, 'US', 'United States'), +('65.182.0.0', '65.182.6.255', 1102446592, 1102448383, 'HN', 'Honduras'), +('65.182.7.0', '65.182.9.255', 1102448384, 1102449151, 'US', 'United States'), +('65.182.10.0', '65.182.10.255', 1102449152, 1102449407, 'SV', 'El Salvador'), +('65.182.11.0', '65.182.30.255', 1102449408, 1102454527, 'CR', 'Costa Rica'), +('65.182.31.0', '65.182.31.255', 1102454528, 1102454783, 'HN', 'Honduras'), +('65.182.32.0', '65.182.162.59', 1102454784, 1102488123, 'US', 'United States'), +('65.182.162.60', '65.182.162.99', 1102488124, 1102488163, 'IN', 'India'), +('65.182.162.100', '65.182.162.220', 1102488164, 1102488284, 'US', 'United States'), +('65.182.162.221', '65.182.162.251', 1102488285, 1102488315, 'IN', 'India'), +('65.182.162.252', '65.182.255.255', 1102488316, 1102512127, 'US', 'United States'), +('65.183.0.0', '65.183.15.255', 1102512128, 1102516223, 'JM', 'Jamaica'), +('65.183.16.0', '65.194.45.255', 1102516224, 1103244799, 'US', 'United States'), +('65.194.46.0', '65.194.46.255', 1103244800, 1103245055, 'EC', 'Ecuador'), +('65.194.47.0', '65.196.163.7', 1103245056, 1103405831, 'US', 'United States'), +('65.196.163.8', '65.196.163.15', 1103405832, 1103405839, 'CA', 'Canada'), +('65.196.163.16', '65.197.176.255', 1103405840, 1103474943, 'US', 'United States'), +('65.197.177.0', '65.197.177.255', 1103474944, 1103475199, 'MH', 'Marshall Islands'), +('65.197.178.0', '65.197.181.255', 1103475200, 1103476223, 'US', 'United States'), +('65.197.182.0', '65.197.182.31', 1103476224, 1103476255, 'CA', 'Canada'), +('65.197.182.32', '65.198.207.255', 1103476256, 1103548415, 'US', 'United States'), +('65.198.208.0', '65.198.215.255', 1103548416, 1103550463, 'BS', 'Bahamas'), +('65.198.216.0', '65.199.100.31', 1103550464, 1103586335, 'US', 'United States'), +('65.199.100.32', '65.199.100.47', 1103586336, 1103586351, 'DE', 'Germany'), +('65.199.100.48', '65.199.167.255', 1103586352, 1103603711, 'US', 'United States'), +('65.199.168.0', '65.199.175.255', 1103603712, 1103605759, 'EC', 'Ecuador'), +('65.199.176.0', '65.199.243.255', 1103605760, 1103623167, 'US', 'United States'), +('65.199.244.0', '65.199.245.255', 1103623168, 1103623679, 'CO', 'Colombia'), +('65.199.246.0', '65.200.52.127', 1103623680, 1103639679, 'US', 'United States'), +('65.200.52.128', '65.200.52.159', 1103639680, 1103639711, 'PR', 'Puerto Rico'), +('65.200.52.160', '65.200.60.87', 1103639712, 1103641687, 'US', 'United States'), +('65.200.60.88', '65.200.60.95', 1103641688, 1103641695, 'PR', 'Puerto Rico'), +('65.200.60.96', '65.200.171.191', 1103641696, 1103670207, 'US', 'United States'), +('65.200.171.192', '65.200.171.255', 1103670208, 1103670271, 'GB', 'United Kingdom'), +('65.200.172.0', '65.200.192.255', 1103670272, 1103675647, 'US', 'United States'), +('65.200.193.0', '65.200.193.63', 1103675648, 1103675711, 'AU', 'Australia'), +('65.200.193.64', '65.200.193.127', 1103675712, 1103675775, 'US', 'United States'), +('65.200.193.128', '65.200.193.255', 1103675776, 1103675903, 'AU', 'Australia'), +('65.200.194.0', '65.200.194.255', 1103675904, 1103676159, 'US', 'United States'), +('65.200.195.0', '65.200.195.15', 1103676160, 1103676175, 'AU', 'Australia'), +('65.200.195.16', '65.200.204.79', 1103676176, 1103678543, 'US', 'United States'), +('65.200.204.80', '65.200.204.87', 1103678544, 1103678551, 'PH', 'Philippines'), +('65.200.204.88', '65.200.204.191', 1103678552, 1103678655, 'US', 'United States'), +('65.200.204.192', '65.200.204.255', 1103678656, 1103678719, 'PH', 'Philippines'), +('65.200.205.0', '65.200.205.111', 1103678720, 1103678831, 'US', 'United States'), +('65.200.205.112', '65.200.205.127', 1103678832, 1103678847, 'AU', 'Australia'), +('65.200.205.128', '65.202.34.255', 1103678848, 1103766271, 'US', 'United States'), +('65.202.35.0', '65.202.35.255', 1103766272, 1103766527, 'PR', 'Puerto Rico'), +('65.202.36.0', '65.202.47.23', 1103766528, 1103769367, 'US', 'United States'), +('65.202.47.24', '65.202.47.31', 1103769368, 1103769375, 'LU', 'Luxembourg'), +('65.202.47.32', '65.204.158.223', 1103769376, 1103929055, 'US', 'United States'), +('65.204.158.224', '65.204.158.231', 1103929056, 1103929063, 'MX', 'Mexico'), +('65.204.158.232', '65.204.165.255', 1103929064, 1103930879, 'US', 'United States'), +('65.204.166.0', '65.204.166.255', 1103930880, 1103931135, 'MX', 'Mexico'), +('65.204.167.0', '65.205.132.255', 1103931136, 1103987967, 'US', 'United States'), +('65.205.133.0', '65.205.133.255', 1103987968, 1103988223, 'BR', 'Brazil'), +('65.205.134.0', '65.205.149.255', 1103988224, 1103992319, 'US', 'United States'), +('65.205.150.0', '65.205.150.255', 1103992320, 1103992575, 'FI', 'Finland'), +('65.205.151.0', '65.205.167.255', 1103992576, 1103996927, 'US', 'United States'), +('65.205.168.0', '65.205.169.255', 1103996928, 1103997439, 'EC', 'Ecuador'), +('65.205.170.0', '65.205.193.127', 1103997440, 1104003455, 'US', 'United States'), +('65.205.193.128', '65.205.193.255', 1104003456, 1104003583, 'PH', 'Philippines'), +('65.205.194.0', '65.206.8.255', 1104003584, 1104021759, 'US', 'United States'), +('65.206.9.0', '65.206.9.255', 1104021760, 1104022015, 'PK', 'Pakistan'), +('65.206.10.0', '65.206.42.95', 1104022016, 1104030303, 'US', 'United States'), +('65.206.42.96', '65.206.42.127', 1104030304, 1104030335, 'PR', 'Puerto Rico'), +('65.206.42.128', '65.206.54.159', 1104030336, 1104033439, 'US', 'United States'), +('65.206.54.160', '65.206.54.191', 1104033440, 1104033471, 'GB', 'United Kingdom'), +('65.206.54.192', '65.206.241.239', 1104033472, 1104081391, 'US', 'United States'), +('65.206.241.240', '65.206.241.247', 1104081392, 1104081399, 'PR', 'Puerto Rico'), +('65.206.241.248', '65.207.44.151', 1104081400, 1104096407, 'US', 'United States'), +('65.207.44.152', '65.207.44.159', 1104096408, 1104096415, 'DE', 'Germany'), +('65.207.44.160', '65.208.63.255', 1104096416, 1104166911, 'US', 'United States'), +('65.208.64.0', '65.208.71.255', 1104166912, 1104168959, 'CO', 'Colombia'), +('65.208.72.0', '65.208.173.7', 1104168960, 1104194823, 'US', 'United States'), +('65.208.173.8', '65.208.173.15', 1104194824, 1104194831, 'PR', 'Puerto Rico'), +('65.208.173.16', '65.209.65.39', 1104194832, 1104232743, 'US', 'United States'), +('65.209.65.40', '65.209.65.47', 1104232744, 1104232751, 'CA', 'Canada'), +('65.209.65.48', '65.209.191.255', 1104232752, 1104265215, 'US', 'United States'), +('65.209.192.0', '65.209.193.255', 1104265216, 1104265727, 'PH', 'Philippines'), +('65.209.194.0', '65.211.202.223', 1104265728, 1104399071, 'US', 'United States'), +('65.211.202.224', '65.211.202.231', 1104399072, 1104399079, 'CA', 'Canada'), +('65.211.202.232', '65.212.3.255', 1104399080, 1104413695, 'US', 'United States'), +('65.212.4.0', '65.212.4.15', 1104413696, 1104413711, 'CA', 'Canada'), +('65.212.4.16', '65.212.6.79', 1104413712, 1104414287, 'US', 'United States'), +('65.212.6.80', '65.212.6.95', 1104414288, 1104414303, 'CA', 'Canada'), +('65.212.6.96', '65.213.54.255', 1104414304, 1104492287, 'US', 'United States'), +('65.213.55.0', '65.213.55.255', 1104492288, 1104492543, 'PH', 'Philippines'), +('65.213.56.0', '65.213.127.255', 1104492544, 1104510975, 'US', 'United States'), +('65.213.128.0', '65.213.130.255', 1104510976, 1104511743, 'EC', 'Ecuador'), +('65.213.131.0', '65.214.61.31', 1104511744, 1104559391, 'US', 'United States'), +('65.214.61.32', '65.214.61.39', 1104559392, 1104559399, 'CA', 'Canada'), +('65.214.61.40', '65.214.61.127', 1104559400, 1104559487, 'US', 'United States'), +('65.214.61.128', '65.214.61.143', 1104559488, 1104559503, 'CA', 'Canada'), +('65.214.61.144', '65.215.27.63', 1104559504, 1104616255, 'US', 'United States'), +('65.215.27.64', '65.215.27.79', 1104616256, 1104616271, 'DE', 'Germany'), +('65.215.27.80', '65.215.35.31', 1104616272, 1104618271, 'US', 'United States'), +('65.215.35.32', '65.215.35.63', 1104618272, 1104618303, 'CA', 'Canada'), +('65.215.35.64', '65.215.84.191', 1104618304, 1104630975, 'US', 'United States'), +('65.215.84.192', '65.215.84.255', 1104630976, 1104631039, 'CA', 'Canada'), +('65.215.85.0', '65.215.224.127', 1104631040, 1104666751, 'US', 'United States'), +('65.215.224.128', '65.215.224.143', 1104666752, 1104666767, 'CA', 'Canada'), +('65.215.224.144', '65.216.132.79', 1104666768, 1104708687, 'US', 'United States'), +('65.216.132.80', '65.216.132.95', 1104708688, 1104708703, 'DE', 'Germany'), +('65.216.132.96', '65.217.184.31', 1104708704, 1104787487, 'US', 'United States'), +('65.217.184.32', '65.217.184.63', 1104787488, 1104787519, 'GB', 'United Kingdom'), +('65.217.184.64', '65.218.130.151', 1104787520, 1104839319, 'US', 'United States'), +('65.218.130.152', '65.218.130.159', 1104839320, 1104839327, 'GB', 'United Kingdom'), +('65.218.130.160', '65.218.143.255', 1104839328, 1104842751, 'US', 'United States'), +('65.218.144.0', '65.218.151.255', 1104842752, 1104844799, 'PR', 'Puerto Rico'), +('65.218.152.0', '65.218.254.7', 1104844800, 1104870919, 'US', 'United States'), +('65.218.254.8', '65.218.254.15', 1104870920, 1104870927, 'MX', 'Mexico'), +('65.218.254.16', '65.219.37.191', 1104870928, 1104881087, 'US', 'United States'), +('65.219.37.192', '65.219.37.255', 1104881088, 1104881151, 'PH', 'Philippines'), +('65.219.38.0', '65.221.124.255', 1104881152, 1105034495, 'US', 'United States'), +('65.221.125.0', '65.221.125.255', 1105034496, 1105034751, 'IT', 'Italy'), +('65.221.126.0', '65.222.122.255', 1105034752, 1105099519, 'US', 'United States'), +('65.222.123.0', '65.222.123.255', 1105099520, 1105099775, 'EC', 'Ecuador'), +('65.222.124.0', '65.223.27.39', 1105099776, 1105140519, 'US', 'United States'), +('65.223.27.40', '65.223.27.47', 1105140520, 1105140527, 'MX', 'Mexico'), +('65.223.27.48', '65.223.34.191', 1105140528, 1105142463, 'US', 'United States'), +('65.223.34.192', '65.223.34.199', 1105142464, 1105142471, 'MN', 'Mongolia'), +('65.223.34.200', '65.223.36.255', 1105142472, 1105143039, 'US', 'United States'), +('65.223.37.0', '65.223.37.7', 1105143040, 1105143047, 'MN', 'Mongolia'), +('65.223.37.8', '65.223.76.191', 1105143048, 1105153215, 'US', 'United States'), +('65.223.76.192', '65.223.76.255', 1105153216, 1105153279, 'PH', 'Philippines'), +('65.223.77.0', '65.223.214.111', 1105153280, 1105188463, 'US', 'United States'), +('65.223.214.112', '65.223.214.119', 1105188464, 1105188471, 'CA', 'Canada'), +('65.223.214.120', '65.240.226.127', 1105188472, 1106305663, 'US', 'United States'), +('65.240.226.128', '65.240.226.135', 1106305664, 1106305671, 'CA', 'Canada'), +('65.240.226.136', '65.240.227.255', 1106305672, 1106306047, 'US', 'United States'), +('65.240.228.0', '65.240.228.31', 1106306048, 1106306079, 'CA', 'Canada'), +('65.240.228.32', '65.240.235.127', 1106306080, 1106307967, 'US', 'United States'), +('65.240.235.128', '65.240.235.191', 1106307968, 1106308031, 'CA', 'Canada'), +('65.240.235.192', '65.241.27.47', 1106308032, 1106320175, 'US', 'United States'), +('65.241.27.48', '65.241.27.55', 1106320176, 1106320183, 'CA', 'Canada'), +('65.241.27.56', '65.241.142.31', 1106320184, 1106349599, 'US', 'United States'), +('65.241.142.32', '65.241.142.39', 1106349600, 1106349607, 'UM', 'United States Minor Outlying Islands'), +('65.241.142.40', '65.242.196.31', 1106349608, 1106428959, 'US', 'United States'), +('65.242.196.32', '65.242.196.47', 1106428960, 1106428975, 'UM', 'United States Minor Outlying Islands'), +('65.242.196.48', '65.242.253.103', 1106428976, 1106443623, 'US', 'United States'), +('65.242.253.104', '65.242.253.111', 1106443624, 1106443631, 'CA', 'Canada'), +('65.242.253.112', '65.243.99.63', 1106443632, 1106469695, 'US', 'United States'), +('65.243.99.64', '65.243.99.127', 1106469696, 1106469759, 'CO', 'Colombia'), +('65.243.99.128', '65.243.99.255', 1106469760, 1106469887, 'US', 'United States'), +('65.243.100.0', '65.243.103.255', 1106469888, 1106470911, 'BS', 'Bahamas'), +('65.243.104.0', '65.243.119.255', 1106470912, 1106475007, 'US', 'United States'), +('65.243.120.0', '65.243.121.255', 1106475008, 1106475519, 'CO', 'Colombia'), +('65.243.122.0', '65.243.156.127', 1106475520, 1106484351, 'US', 'United States'), +('65.243.156.128', '65.243.156.191', 1106484352, 1106484415, 'PH', 'Philippines'), +('65.243.156.192', '65.243.199.71', 1106484416, 1106495303, 'US', 'United States'), +('65.243.199.72', '65.243.199.87', 1106495304, 1106495319, 'GB', 'United Kingdom'), +('65.243.199.88', '65.244.90.23', 1106495320, 1106532887, 'US', 'United States'), +('65.244.90.24', '65.244.90.31', 1106532888, 1106532895, 'TW', 'Taiwan'), +('65.244.90.32', '65.244.148.31', 1106532896, 1106547743, 'US', 'United States'), +('65.244.148.32', '65.244.148.47', 1106547744, 1106547759, 'DK', 'Denmark'), +('65.244.148.48', '65.244.224.255', 1106547760, 1106567423, 'US', 'United States'), +('65.244.225.0', '65.244.225.31', 1106567424, 1106567455, 'NZ', 'New Zealand'), +('65.244.225.32', '65.245.118.127', 1106567456, 1106605695, 'US', 'United States'), +('65.245.118.128', '65.245.118.135', 1106605696, 1106605703, 'DE', 'Germany'), +('65.245.118.136', '65.246.172.119', 1106605704, 1106685047, 'US', 'United States'), +('65.246.172.120', '65.246.172.127', 1106685048, 1106685055, 'CA', 'Canada'), +('65.246.172.128', '65.247.134.255', 1106685056, 1106740991, 'US', 'United States'), +('65.247.135.0', '65.247.135.255', 1106740992, 1106741247, 'CR', 'Costa Rica'), +('65.247.136.0', '65.247.203.255', 1106741248, 1106758655, 'US', 'United States'), +('65.247.204.0', '65.247.205.255', 1106758656, 1106759167, 'EC', 'Ecuador'), +('65.247.206.0', '65.247.207.255', 1106759168, 1106759679, 'CO', 'Colombia'), +('65.247.208.0', '65.247.239.255', 1106759680, 1106767871, 'US', 'United States'), +('65.247.240.0', '65.247.241.255', 1106767872, 1106768383, 'CO', 'Colombia'), +('65.247.242.0', '65.247.243.255', 1106768384, 1106768895, 'EC', 'Ecuador'), +('65.247.244.0', '65.247.247.255', 1106768896, 1106769919, 'CO', 'Colombia'), +('65.247.248.0', '65.248.166.255', 1106769920, 1106814719, 'US', 'United States'), +('65.248.167.0', '65.248.167.255', 1106814720, 1106814975, 'EC', 'Ecuador'), +('65.248.168.0', '65.254.127.255', 1106814976, 1107197951, 'US', 'United States'), +('65.254.160.0', '65.254.214.255', 1107206144, 1107220223, 'US', 'United States'), +('65.254.215.0', '65.254.215.15', 1107220224, 1107220239, 'AX', 'Aland Islands'), +('65.254.215.16', '65.255.31.255', 1107220240, 1107238911, 'US', 'United States'), +('65.255.48.0', '65.255.63.255', 1107243008, 1107247103, 'TC', 'Turks and Caicos Islands'), +('65.255.64.0', '65.255.175.255', 1107247104, 1107275775, 'US', 'United States'), +('65.255.176.0', '65.255.191.255', 1107275776, 1107279871, 'CA', 'Canada'), +('65.255.192.0', '65.255.223.255', 1107279872, 1107288063, 'US', 'United States'), +('65.255.224.0', '65.255.255.255', 1107288064, 1107296255, 'CA', 'Canada'), +('66.0.0.0', '66.6.47.255', 1107296256, 1107701759, 'US', 'United States'), +('66.6.48.0', '66.6.63.255', 1107701760, 1107705855, 'CA', 'Canada'), +('66.6.64.0', '66.7.175.255', 1107705856, 1107800063, 'US', 'United States'), +('66.7.176.0', '66.7.176.255', 1107800064, 1107800319, 'CA', 'Canada'), +('66.7.177.0', '66.7.181.23', 1107800320, 1107801367, 'US', 'United States'), +('66.7.181.24', '66.7.181.31', 1107801368, 1107801375, 'CA', 'Canada'), +('66.7.181.32', '66.7.197.255', 1107801376, 1107805695, 'US', 'United States'), +('66.7.198.0', '66.7.198.255', 1107805696, 1107805951, 'TR', 'Turkey'), +('66.7.199.0', '66.7.255.255', 1107805952, 1107820543, 'US', 'United States'), +('66.8.0.0', '66.8.127.255', 1107820544, 1107853311, 'ZA', 'South Africa'), +('66.8.128.0', '66.9.235.255', 1107853312, 1107946495, 'US', 'United States'), +('66.9.236.0', '66.9.237.255', 1107946496, 1107947007, 'GB', 'United Kingdom'), +('66.9.238.0', '66.11.63.255', 1107947008, 1108033535, 'US', 'United States'), +('66.11.64.0', '66.11.95.255', 1108033536, 1108041727, 'CA', 'Canada'), +('66.11.96.0', '66.11.143.255', 1108041728, 1108054015, 'US', 'United States'), +('66.11.144.0', '66.11.157.159', 1108054016, 1108057503, 'CA', 'Canada'), +('66.11.157.160', '66.11.157.175', 1108057504, 1108057519, 'BS', 'Bahamas'), +('66.11.157.176', '66.11.191.255', 1108057520, 1108066303, 'CA', 'Canada'), +('66.11.192.0', '66.18.63.255', 1108066304, 1108492287, 'US', 'United States'), +('66.18.64.0', '66.18.95.255', 1108492288, 1108500479, 'ZA', 'South Africa'), +('66.18.96.0', '66.18.103.31', 1108500480, 1108502303, 'US', 'United States'), +('66.18.103.32', '66.18.103.39', 1108502304, 1108502311, 'PR', 'Puerto Rico'), +('66.18.103.40', '66.18.191.255', 1108502312, 1108525055, 'US', 'United States'), +('66.18.192.0', '66.18.255.255', 1108525056, 1108541439, 'CA', 'Canada'), +('66.19.0.0', '66.29.211.44', 1108541440, 1109250860, 'US', 'United States'), +('66.29.211.45', '66.29.211.52', 1109250861, 1109250868, 'PH', 'Philippines'), +('66.29.211.53', '66.29.217.103', 1109250869, 1109252455, 'US', 'United States'), +('66.29.217.104', '66.29.217.111', 1109252456, 1109252463, 'AU', 'Australia'), +('66.29.217.112', '66.29.218.170', 1109252464, 1109252778, 'US', 'United States'), +('66.29.218.171', '66.29.218.178', 1109252779, 1109252786, 'CA', 'Canada'), +('66.29.218.179', '66.29.218.195', 1109252787, 1109252803, 'US', 'United States'), +('66.29.218.196', '66.29.218.205', 1109252804, 1109252813, 'CA', 'Canada'), +('66.29.218.206', '66.29.221.40', 1109252814, 1109253416, 'US', 'United States'), +('66.29.221.41', '66.29.221.56', 1109253417, 1109253432, 'CH', 'Switzerland'), +('66.29.221.57', '66.29.221.124', 1109253433, 1109253500, 'US', 'United States'), +('66.29.221.125', '66.29.221.132', 1109253501, 1109253508, 'CH', 'Switzerland'), +('66.29.221.133', '66.35.192.31', 1109253509, 1109639199, 'US', 'United States'), +('66.35.192.32', '66.35.192.47', 1109639200, 1109639215, 'IN', 'India'), +('66.35.192.48', '66.35.201.191', 1109639216, 1109641663, 'US', 'United States'), +('66.35.201.192', '66.35.201.207', 1109641664, 1109641679, 'JP', 'Japan'), +('66.35.201.208', '66.35.205.87', 1109641680, 1109642583, 'US', 'United States'), +('66.35.205.88', '66.35.205.95', 1109642584, 1109642591, 'DE', 'Germany'), +('66.35.205.96', '66.35.208.39', 1109642592, 1109643303, 'US', 'United States'), +('66.35.208.40', '66.35.208.47', 1109643304, 1109643311, 'DE', 'Germany'), +('66.35.208.48', '66.35.208.255', 1109643312, 1109643519, 'US', 'United States'), +('66.35.209.0', '66.35.209.31', 1109643520, 1109643551, 'CA', 'Canada'), +('66.35.209.32', '66.35.223.127', 1109643552, 1109647231, 'US', 'United States'), +('66.35.223.128', '66.35.223.143', 1109647232, 1109647247, 'AU', 'Australia'), +('66.35.223.144', '66.35.227.191', 1109647248, 1109648319, 'US', 'United States'), +('66.35.227.192', '66.35.227.207', 1109648320, 1109648335, 'JP', 'Japan'), +('66.35.227.208', '66.35.230.31', 1109648336, 1109648927, 'US', 'United States'), +('66.35.230.32', '66.35.230.47', 1109648928, 1109648943, 'AU', 'Australia'), +('66.35.230.48', '66.35.236.207', 1109648944, 1109650639, 'US', 'United States'), +('66.35.236.208', '66.35.236.223', 1109650640, 1109650655, 'AU', 'Australia'), +('66.35.236.224', '66.36.127.255', 1109650656, 1109688319, 'US', 'United States'), +('66.36.128.0', '66.36.159.255', 1109688320, 1109696511, 'CA', 'Canada'), +('66.36.160.0', '66.36.195.255', 1109696512, 1109705727, 'US', 'United States'), +('66.36.196.0', '66.36.196.15', 1109705728, 1109705743, 'CG', 'Congo'), +('66.36.196.16', '66.36.196.31', 1109705744, 1109705759, 'US', 'United States'), +('66.36.196.32', '66.36.196.63', 1109705760, 1109705791, 'CD', 'Congo, The Democratic Republic of the'), +('66.36.196.64', '66.36.196.95', 1109705792, 1109705823, 'US', 'United States'), +('66.36.196.96', '66.36.196.111', 1109705824, 1109705839, 'CD', 'Congo, The Democratic Republic of the'), +('66.36.196.112', '66.36.196.127', 1109705840, 1109705855, 'US', 'United States'), +('66.36.196.128', '66.36.196.255', 1109705856, 1109705983, 'CD', 'Congo, The Democratic Republic of the'), +('66.36.197.0', '66.36.197.255', 1109705984, 1109706239, 'HT', 'Haiti'), +('66.36.198.0', '66.36.200.255', 1109706240, 1109707007, 'US', 'United States'), +('66.36.201.0', '66.36.201.255', 1109707008, 1109707263, 'JM', 'Jamaica'), +('66.36.202.0', '66.36.202.255', 1109707264, 1109707519, 'US', 'United States'), +('66.36.203.0', '66.36.203.255', 1109707520, 1109707775, 'MW', 'Malawi'), +('66.36.204.0', '66.36.207.95', 1109707776, 1109708639, 'US', 'United States'), +('66.36.207.96', '66.36.207.127', 1109708640, 1109708671, 'HT', 'Haiti'), +('66.36.207.128', '66.36.211.255', 1109708672, 1109709823, 'US', 'United States'), +('66.36.212.0', '66.36.215.255', 1109709824, 1109710847, 'ZM', 'Zambia'), +('66.36.216.0', '66.36.217.71', 1109710848, 1109711175, 'US', 'United States'), +('66.36.217.72', '66.36.217.79', 1109711176, 1109711183, 'HT', 'Haiti'), +('66.36.217.80', '66.37.207.95', 1109711184, 1109774175, 'US', 'United States'), +('66.37.207.96', '66.37.207.103', 1109774176, 1109774183, 'CA', 'Canada'), +('66.37.207.104', '66.37.216.191', 1109774184, 1109776575, 'US', 'United States'), +('66.37.216.192', '66.37.216.223', 1109776576, 1109776607, 'CN', 'China'), +('66.37.216.224', '66.37.216.231', 1109776608, 1109776615, 'CA', 'Canada'), +('66.37.216.232', '66.38.127.255', 1109776616, 1109819391, 'US', 'United States'), +('66.38.128.0', '66.38.242.255', 1109819392, 1109848831, 'CA', 'Canada'), +('66.38.243.0', '66.38.243.255', 1109848832, 1109849087, 'A1', 'Anonymous Proxy'), +('66.38.244.0', '66.38.255.255', 1109849088, 1109852159, 'CA', 'Canada'), +('66.39.0.0', '66.39.196.79', 1109852160, 1109902415, 'US', 'United States'), +('66.39.196.80', '66.39.196.95', 1109902416, 1109902431, 'CY', 'Cyprus'), +('66.39.196.96', '66.39.196.175', 1109902432, 1109902511, 'US', 'United States'), +('66.39.196.176', '66.39.196.191', 1109902512, 1109902527, 'CY', 'Cyprus'), +('66.39.196.192', '66.39.215.255', 1109902528, 1109907455, 'US', 'United States'), +('66.39.216.0', '66.39.216.255', 1109907456, 1109907711, 'CY', 'Cyprus'), +('66.39.217.0', '66.40.2.255', 1109907712, 1109918463, 'US', 'United States'), +('66.40.3.0', '66.40.3.255', 1109918464, 1109918719, 'GB', 'United Kingdom'), +('66.40.4.0', '66.40.6.255', 1109918720, 1109919487, 'US', 'United States'), +('66.40.7.0', '66.40.8.255', 1109919488, 1109919999, 'GB', 'United Kingdom'), +('66.40.9.0', '66.40.21.63', 1109920000, 1109923135, 'US', 'United States'), +('66.40.21.64', '66.40.21.79', 1109923136, 1109923151, 'BG', 'Bulgaria'), +('66.40.21.80', '66.40.21.111', 1109923152, 1109923183, 'US', 'United States'), +('66.40.21.112', '66.40.21.127', 1109923184, 1109923199, 'SK', 'Slovakia'), +('66.40.21.128', '66.40.21.207', 1109923200, 1109923279, 'US', 'United States'), +('66.40.21.208', '66.40.21.223', 1109923280, 1109923295, 'GB', 'United Kingdom'), +('66.40.21.224', '66.40.23.63', 1109923296, 1109923647, 'US', 'United States'), +('66.40.23.64', '66.40.23.127', 1109923648, 1109923711, 'CA', 'Canada'), +('66.40.23.128', '66.40.30.127', 1109923712, 1109925503, 'US', 'United States'), +('66.40.30.128', '66.40.30.191', 1109925504, 1109925567, 'GB', 'United Kingdom'), +('66.40.30.192', '66.40.35.255', 1109925568, 1109926911, 'US', 'United States'), +('66.40.36.0', '66.40.36.255', 1109926912, 1109927167, 'CA', 'Canada'), +('66.40.37.0', '66.40.37.255', 1109927168, 1109927423, 'AU', 'Australia'), +('66.40.38.0', '66.40.65.255', 1109927424, 1109934591, 'US', 'United States'), +('66.40.66.0', '66.40.66.255', 1109934592, 1109934847, 'GB', 'United Kingdom'), +('66.40.67.0', '66.40.136.87', 1109934848, 1109952599, 'US', 'United States'), +('66.40.136.88', '66.40.136.95', 1109952600, 1109952607, 'JP', 'Japan'), +('66.40.136.96', '66.40.136.111', 1109952608, 1109952623, 'US', 'United States'), +('66.40.136.112', '66.40.136.119', 1109952624, 1109952631, 'GB', 'United Kingdom'), +('66.40.136.120', '66.40.142.119', 1109952632, 1109954167, 'US', 'United States'), +('66.40.142.120', '66.40.142.127', 1109954168, 1109954175, 'VE', 'Venezuela'), +('66.40.142.128', '66.40.143.47', 1109954176, 1109954351, 'US', 'United States'), +('66.40.143.48', '66.40.143.63', 1109954352, 1109954367, 'ES', 'Spain'), +('66.40.143.64', '66.43.47.255', 1109954368, 1110126591, 'US', 'United States'), +('66.43.48.0', '66.43.63.255', 1110126592, 1110130687, 'CA', 'Canada'), +('66.43.64.0', '66.45.255.255', 1110130688, 1110310911, 'US', 'United States'), +('66.46.0.0', '66.46.255.255', 1110310912, 1110376447, 'CA', 'Canada'), +('66.47.0.0', '66.47.255.255', 1110376448, 1110441983, 'US', 'United States'), +('66.48.0.0', '66.48.0.255', 1110441984, 1110442239, 'CA', 'Canada'), +('66.48.1.0', '66.48.1.63', 1110442240, 1110442303, 'US', 'United States'), +('66.48.1.64', '66.48.1.127', 1110442304, 1110442367, 'CA', 'Canada'), +('66.48.1.128', '66.48.1.191', 1110442368, 1110442431, 'US', 'United States'), +('66.48.1.192', '66.48.2.223', 1110442432, 1110442719, 'CA', 'Canada'), +('66.48.2.224', '66.48.2.255', 1110442720, 1110442751, 'US', 'United States'), +('66.48.3.0', '66.48.3.111', 1110442752, 1110442863, 'CA', 'Canada'), +('66.48.3.112', '66.48.3.255', 1110442864, 1110443007, 'US', 'United States'), +('66.48.4.0', '66.48.5.31', 1110443008, 1110443295, 'CA', 'Canada'), +('66.48.5.32', '66.48.5.63', 1110443296, 1110443327, 'US', 'United States'), +('66.48.5.64', '66.48.6.31', 1110443328, 1110443551, 'CA', 'Canada'), +('66.48.6.32', '66.48.6.191', 1110443552, 1110443711, 'US', 'United States'), +('66.48.6.192', '66.48.6.199', 1110443712, 1110443719, 'CA', 'Canada'), +('66.48.6.200', '66.48.8.255', 1110443720, 1110444287, 'US', 'United States'), +('66.48.9.0', '66.48.10.255', 1110444288, 1110444799, 'CA', 'Canada'), +('66.48.11.0', '66.48.11.255', 1110444800, 1110445055, 'US', 'United States'), +('66.48.12.0', '66.48.18.63', 1110445056, 1110446655, 'CA', 'Canada'), +('66.48.18.64', '66.48.18.127', 1110446656, 1110446719, 'IL', 'Israel'), +('66.48.18.128', '66.48.18.255', 1110446720, 1110446847, 'CA', 'Canada'), +('66.48.19.0', '66.48.19.127', 1110446848, 1110446975, 'US', 'United States'), +('66.48.19.128', '66.48.19.191', 1110446976, 1110447039, 'CA', 'Canada'), +('66.48.19.192', '66.48.19.255', 1110447040, 1110447103, 'US', 'United States'), +('66.48.20.0', '66.48.24.255', 1110447104, 1110448383, 'CA', 'Canada'), +('66.48.25.0', '66.48.25.255', 1110448384, 1110448639, 'US', 'United States'), +('66.48.26.0', '66.48.27.159', 1110448640, 1110449055, 'CA', 'Canada'), +('66.48.27.160', '66.48.29.255', 1110449056, 1110449663, 'US', 'United States'), +('66.48.30.0', '66.48.30.39', 1110449664, 1110449703, 'CA', 'Canada'), +('66.48.30.40', '66.48.30.55', 1110449704, 1110449719, 'US', 'United States'), +('66.48.30.56', '66.48.30.71', 1110449720, 1110449735, 'CA', 'Canada'), +('66.48.30.72', '66.48.30.87', 1110449736, 1110449751, 'US', 'United States'), +('66.48.30.88', '66.48.30.119', 1110449752, 1110449783, 'CA', 'Canada'), +('66.48.30.120', '66.48.30.127', 1110449784, 1110449791, 'US', 'United States'), +('66.48.30.128', '66.48.30.135', 1110449792, 1110449799, 'CA', 'Canada'), +('66.48.30.136', '66.48.30.143', 1110449800, 1110449807, 'US', 'United States'), +('66.48.30.144', '66.48.30.215', 1110449808, 1110449879, 'CA', 'Canada'), +('66.48.30.216', '66.48.30.231', 1110449880, 1110449895, 'US', 'United States'), +('66.48.30.232', '66.48.31.23', 1110449896, 1110449943, 'CA', 'Canada'), +('66.48.31.24', '66.48.31.47', 1110449944, 1110449967, 'US', 'United States'), +('66.48.31.48', '66.48.31.55', 1110449968, 1110449975, 'CA', 'Canada'), +('66.48.31.56', '66.48.31.103', 1110449976, 1110450023, 'US', 'United States'), +('66.48.31.104', '66.48.31.151', 1110450024, 1110450071, 'CA', 'Canada'), +('66.48.31.152', '66.48.31.255', 1110450072, 1110450175, 'US', 'United States'), +('66.48.32.0', '66.48.36.127', 1110450176, 1110451327, 'CA', 'Canada'), +('66.48.36.128', '66.48.36.255', 1110451328, 1110451455, 'US', 'United States'), +('66.48.37.0', '66.48.37.255', 1110451456, 1110451711, 'CA', 'Canada'), +('66.48.38.0', '66.48.38.255', 1110451712, 1110451967, 'US', 'United States'), +('66.48.39.0', '66.48.43.255', 1110451968, 1110453247, 'CA', 'Canada'), +('66.48.44.0', '66.48.47.255', 1110453248, 1110454271, 'US', 'United States'), +('66.48.48.0', '66.48.51.255', 1110454272, 1110455295, 'CA', 'Canada'), +('66.48.52.0', '66.48.63.255', 1110455296, 1110458367, 'US', 'United States'), +('66.48.64.0', '66.48.64.47', 1110458368, 1110458415, 'CA', 'Canada'), +('66.48.64.48', '66.48.64.63', 1110458416, 1110458431, 'US', 'United States'), +('66.48.64.64', '66.48.64.111', 1110458432, 1110458479, 'CA', 'Canada'), +('66.48.64.112', '66.48.64.127', 1110458480, 1110458495, 'US', 'United States'), +('66.48.64.128', '66.48.64.207', 1110458496, 1110458575, 'CA', 'Canada'), +('66.48.64.208', '66.48.65.31', 1110458576, 1110458655, 'US', 'United States'), +('66.48.65.32', '66.48.65.63', 1110458656, 1110458687, 'CA', 'Canada'), +('66.48.65.64', '66.48.65.79', 1110458688, 1110458703, 'US', 'United States'), +('66.48.65.80', '66.48.65.111', 1110458704, 1110458735, 'CA', 'Canada'), +('66.48.65.112', '66.48.65.143', 1110458736, 1110458767, 'US', 'United States'), +('66.48.65.144', '66.48.65.159', 1110458768, 1110458783, 'CA', 'Canada'), +('66.48.65.160', '66.48.65.207', 1110458784, 1110458831, 'US', 'United States'), +('66.48.65.208', '66.48.65.223', 1110458832, 1110458847, 'CA', 'Canada'), +('66.48.65.224', '66.48.65.255', 1110458848, 1110458879, 'US', 'United States'), +('66.48.66.0', '66.48.66.47', 1110458880, 1110458927, 'CA', 'Canada'), +('66.48.66.48', '66.48.66.63', 1110458928, 1110458943, 'US', 'United States'), +('66.48.66.64', '66.48.66.79', 1110458944, 1110458959, 'CA', 'Canada'), +('66.48.66.80', '66.48.66.95', 1110458960, 1110458975, 'US', 'United States'), +('66.48.66.96', '66.48.66.191', 1110458976, 1110459071, 'CA', 'Canada'), +('66.48.66.192', '66.48.66.207', 1110459072, 1110459087, 'US', 'United States'), +('66.48.66.208', '66.48.67.15', 1110459088, 1110459151, 'CA', 'Canada'), +('66.48.67.16', '66.48.67.31', 1110459152, 1110459167, 'US', 'United States'), +('66.48.67.32', '66.48.67.47', 1110459168, 1110459183, 'CA', 'Canada'), +('66.48.67.48', '66.48.67.63', 1110459184, 1110459199, 'US', 'United States'), +('66.48.67.64', '66.48.67.79', 1110459200, 1110459215, 'CA', 'Canada'), +('66.48.67.80', '66.48.67.175', 1110459216, 1110459311, 'US', 'United States'), +('66.48.67.176', '66.48.67.191', 1110459312, 1110459327, 'CA', 'Canada'), +('66.48.67.192', '66.48.67.255', 1110459328, 1110459391, 'US', 'United States'), +('66.48.68.0', '66.48.68.31', 1110459392, 1110459423, 'CA', 'Canada'), +('66.48.68.32', '66.48.68.63', 1110459424, 1110459455, 'US', 'United States'), +('66.48.68.64', '66.48.69.95', 1110459456, 1110459743, 'CA', 'Canada'), +('66.48.69.96', '66.48.69.255', 1110459744, 1110459903, 'US', 'United States'), +('66.48.70.0', '66.48.70.63', 1110459904, 1110459967, 'CA', 'Canada'), +('66.48.70.64', '66.48.71.63', 1110459968, 1110460223, 'US', 'United States'), +('66.48.71.64', '66.48.71.159', 1110460224, 1110460319, 'CA', 'Canada'), +('66.48.71.160', '66.48.71.223', 1110460320, 1110460383, 'US', 'United States'), +('66.48.71.224', '66.48.72.31', 1110460384, 1110460447, 'CA', 'Canada'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('66.48.72.32', '66.48.72.255', 1110460448, 1110460671, 'US', 'United States'), +('66.48.73.0', '66.48.73.47', 1110460672, 1110460719, 'CA', 'Canada'), +('66.48.73.48', '66.48.73.71', 1110460720, 1110460743, 'US', 'United States'), +('66.48.73.72', '66.48.73.103', 1110460744, 1110460775, 'CA', 'Canada'), +('66.48.73.104', '66.48.73.111', 1110460776, 1110460783, 'US', 'United States'), +('66.48.73.112', '66.48.73.159', 1110460784, 1110460831, 'CA', 'Canada'), +('66.48.73.160', '66.48.73.191', 1110460832, 1110460863, 'US', 'United States'), +('66.48.73.192', '66.48.73.215', 1110460864, 1110460887, 'CA', 'Canada'), +('66.48.73.216', '66.48.73.231', 1110460888, 1110460903, 'US', 'United States'), +('66.48.73.232', '66.48.73.239', 1110460904, 1110460911, 'CA', 'Canada'), +('66.48.73.240', '66.48.74.7', 1110460912, 1110460935, 'US', 'United States'), +('66.48.74.8', '66.48.74.63', 1110460936, 1110460991, 'CA', 'Canada'), +('66.48.74.64', '66.48.74.255', 1110460992, 1110461183, 'US', 'United States'), +('66.48.75.0', '66.48.75.191', 1110461184, 1110461375, 'CA', 'Canada'), +('66.48.75.192', '66.48.75.255', 1110461376, 1110461439, 'US', 'United States'), +('66.48.76.0', '66.48.77.127', 1110461440, 1110461823, 'CA', 'Canada'), +('66.48.77.128', '66.48.78.127', 1110461824, 1110462079, 'US', 'United States'), +('66.48.78.128', '66.48.79.63', 1110462080, 1110462271, 'CA', 'Canada'), +('66.48.79.64', '66.48.79.127', 1110462272, 1110462335, 'US', 'United States'), +('66.48.79.128', '66.48.80.255', 1110462336, 1110462719, 'CA', 'Canada'), +('66.48.81.0', '66.48.81.127', 1110462720, 1110462847, 'US', 'United States'), +('66.48.81.128', '66.48.82.127', 1110462848, 1110463103, 'CA', 'Canada'), +('66.48.82.128', '66.48.82.255', 1110463104, 1110463231, 'US', 'United States'), +('66.48.83.0', '66.48.83.255', 1110463232, 1110463487, 'CA', 'Canada'), +('66.48.84.0', '66.48.85.255', 1110463488, 1110463999, 'US', 'United States'), +('66.48.86.0', '66.48.88.255', 1110464000, 1110464767, 'CA', 'Canada'), +('66.48.89.0', '66.48.89.127', 1110464768, 1110464895, 'US', 'United States'), +('66.48.89.128', '66.48.89.191', 1110464896, 1110464959, 'CA', 'Canada'), +('66.48.89.192', '66.48.89.255', 1110464960, 1110465023, 'US', 'United States'), +('66.48.90.0', '66.48.91.255', 1110465024, 1110465535, 'CA', 'Canada'), +('66.48.92.0', '66.48.95.255', 1110465536, 1110466559, 'US', 'United States'), +('66.48.96.0', '66.48.96.7', 1110466560, 1110466567, 'CA', 'Canada'), +('66.48.96.8', '66.48.96.255', 1110466568, 1110466815, 'US', 'United States'), +('66.48.97.0', '66.48.97.31', 1110466816, 1110466847, 'CA', 'Canada'), +('66.48.97.32', '66.48.99.255', 1110466848, 1110467583, 'US', 'United States'), +('66.48.100.0', '66.48.100.127', 1110467584, 1110467711, 'CA', 'Canada'), +('66.48.100.128', '66.48.118.255', 1110467712, 1110472447, 'US', 'United States'), +('66.48.119.0', '66.48.123.255', 1110472448, 1110473727, 'CA', 'Canada'), +('66.48.124.0', '66.48.124.255', 1110473728, 1110473983, 'US', 'United States'), +('66.48.125.0', '66.48.126.63', 1110473984, 1110474303, 'CA', 'Canada'), +('66.48.126.64', '66.48.126.255', 1110474304, 1110474495, 'US', 'United States'), +('66.48.127.0', '66.48.127.255', 1110474496, 1110474751, 'CA', 'Canada'), +('66.48.128.0', '66.49.127.255', 1110474752, 1110540287, 'US', 'United States'), +('66.49.128.0', '66.49.255.255', 1110540288, 1110573055, 'CA', 'Canada'), +('66.50.0.0', '66.50.255.255', 1110573056, 1110638591, 'PR', 'Puerto Rico'), +('66.51.0.0', '66.51.95.255', 1110638592, 1110663167, 'US', 'United States'), +('66.51.96.0', '66.51.143.255', 1110663168, 1110675455, 'CA', 'Canada'), +('66.51.144.0', '66.51.159.255', 1110675456, 1110679551, 'US', 'United States'), +('66.51.160.0', '66.51.175.31', 1110679552, 1110683423, 'CA', 'Canada'), +('66.51.175.32', '66.51.175.39', 1110683424, 1110683431, 'US', 'United States'), +('66.51.175.40', '66.51.175.255', 1110683432, 1110683647, 'CA', 'Canada'), +('66.51.176.0', '66.51.239.255', 1110683648, 1110700031, 'US', 'United States'), +('66.51.240.0', '66.51.255.255', 1110700032, 1110704127, 'CA', 'Canada'), +('66.52.0.0', '66.54.63.255', 1110704128, 1110851583, 'US', 'United States'), +('66.54.112.0', '66.54.127.255', 1110863872, 1110867967, 'JM', 'Jamaica'), +('66.54.128.0', '66.54.139.7', 1110867968, 1110870791, 'US', 'United States'), +('66.54.139.8', '66.54.139.15', 1110870792, 1110870799, 'HK', 'Hong Kong'), +('66.54.139.16', '66.55.63.255', 1110870800, 1110917119, 'US', 'United States'), +('66.55.96.0', '66.55.111.255', 1110925312, 1110929407, 'US', 'United States'), +('66.55.112.0', '66.55.127.255', 1110929408, 1110933503, 'BM', 'Bermuda'), +('66.55.128.0', '66.59.127.255', 1110933504, 1111195647, 'US', 'United States'), +('66.59.128.0', '66.59.191.255', 1111195648, 1111212031, 'CA', 'Canada'), +('66.59.192.0', '66.59.255.255', 1111212032, 1111228415, 'US', 'United States'), +('66.60.0.0', '66.60.63.255', 1111228416, 1111244799, 'AR', 'Argentina'), +('66.60.64.0', '66.63.183.255', 1111244800, 1111472127, 'US', 'United States'), +('66.63.184.0', '66.63.184.255', 1111472128, 1111472383, 'AU', 'Australia'), +('66.63.185.0', '66.70.20.9', 1111472384, 1111888905, 'US', 'United States'), +('66.70.20.10', '66.70.20.19', 1111888906, 1111888915, 'IN', 'India'), +('66.70.20.20', '66.70.64.63', 1111888916, 1111900223, 'US', 'United States'), +('66.70.64.64', '66.70.64.127', 1111900224, 1111900287, 'NL', 'Netherlands'), +('66.70.64.128', '66.70.70.109', 1111900288, 1111901805, 'US', 'United States'), +('66.70.70.110', '66.70.70.119', 1111901806, 1111901815, 'GB', 'United Kingdom'), +('66.70.70.120', '66.77.71.255', 1111901816, 1112360959, 'US', 'United States'), +('66.77.72.0', '66.77.72.63', 1112360960, 1112361023, 'CA', 'Canada'), +('66.77.72.64', '66.78.95.255', 1112361024, 1112432639, 'US', 'United States'), +('66.78.96.0', '66.78.97.251', 1112432640, 1112433147, 'CA', 'Canada'), +('66.78.97.252', '66.78.97.255', 1112433148, 1112433151, 'US', 'United States'), +('66.78.98.0', '66.78.127.255', 1112433152, 1112440831, 'CA', 'Canada'), +('66.78.128.0', '66.79.223.255', 1112440832, 1112530943, 'US', 'United States'), +('66.79.224.0', '66.79.255.255', 1112530944, 1112539135, 'CA', 'Canada'), +('66.80.0.0', '66.96.15.255', 1112539136, 1113591807, 'US', 'United States'), +('66.96.16.0', '66.96.31.255', 1113591808, 1113595903, 'CA', 'Canada'), +('66.96.32.0', '66.96.33.255', 1113595904, 1113596415, 'CL', 'Chile'), +('66.96.34.0', '66.96.35.255', 1113596416, 1113596927, 'GT', 'Guatemala'), +('66.96.36.0', '66.96.36.255', 1113596928, 1113597183, 'PE', 'Peru'), +('66.96.37.0', '66.96.37.255', 1113597184, 1113597439, 'US', 'United States'), +('66.96.38.0', '66.96.38.255', 1113597440, 1113597695, 'PE', 'Peru'), +('66.96.39.0', '66.96.41.255', 1113597696, 1113598463, 'PA', 'Panama'), +('66.96.42.0', '66.96.45.255', 1113598464, 1113599487, 'US', 'United States'), +('66.96.46.0', '66.96.47.255', 1113599488, 1113599999, 'VE', 'Venezuela'), +('66.96.48.0', '66.96.48.255', 1113600000, 1113600255, 'US', 'United States'), +('66.96.49.0', '66.96.59.255', 1113600256, 1113603071, 'VE', 'Venezuela'), +('66.96.60.0', '66.96.60.255', 1113603072, 1113603327, 'CL', 'Chile'), +('66.96.61.0', '66.96.61.255', 1113603328, 1113603583, 'SV', 'El Salvador'), +('66.96.62.0', '66.96.62.255', 1113603584, 1113603839, 'US', 'United States'), +('66.96.63.0', '66.96.63.255', 1113603840, 1113604095, 'CA', 'Canada'), +('66.96.64.0', '66.96.205.204', 1113604096, 1113640396, 'US', 'United States'), +('66.96.205.205', '66.96.205.224', 1113640397, 1113640416, 'CN', 'China'), +('66.96.205.225', '66.96.208.1', 1113640417, 1113640961, 'US', 'United States'), +('66.96.208.2', '66.96.208.9', 1113640962, 1113640969, 'BG', 'Bulgaria'), +('66.96.208.10', '66.96.208.49', 1113640970, 1113641009, 'US', 'United States'), +('66.96.208.50', '66.96.208.79', 1113641010, 1113641039, 'FR', 'France'), +('66.96.208.80', '66.96.208.184', 1113641040, 1113641144, 'US', 'United States'), +('66.96.208.185', '66.96.208.209', 1113641145, 1113641169, 'SE', 'Sweden'), +('66.96.208.210', '66.96.209.1', 1113641170, 1113641217, 'US', 'United States'), +('66.96.209.2', '66.96.209.94', 1113641218, 1113641310, 'SG', 'Singapore'), +('66.96.209.95', '66.96.209.135', 1113641311, 1113641351, 'CA', 'Canada'), +('66.96.209.136', '66.96.209.234', 1113641352, 1113641450, 'US', 'United States'), +('66.96.209.235', '66.96.209.254', 1113641451, 1113641470, 'CA', 'Canada'), +('66.96.209.255', '66.96.212.1', 1113641471, 1113641985, 'US', 'United States'), +('66.96.212.2', '66.96.212.99', 1113641986, 1113642083, 'IN', 'India'), +('66.96.212.100', '66.96.212.149', 1113642084, 1113642133, 'US', 'United States'), +('66.96.212.150', '66.96.212.184', 1113642134, 1113642168, 'DK', 'Denmark'), +('66.96.212.185', '66.96.212.194', 1113642169, 1113642178, 'GB', 'United Kingdom'), +('66.96.212.195', '66.96.212.219', 1113642179, 1113642203, 'US', 'United States'), +('66.96.212.220', '66.96.212.229', 1113642204, 1113642213, 'SA', 'Saudi Arabia'), +('66.96.212.230', '66.96.212.239', 1113642214, 1113642223, 'US', 'United States'), +('66.96.212.240', '66.96.212.254', 1113642224, 1113642238, 'CA', 'Canada'), +('66.96.212.255', '66.96.214.189', 1113642239, 1113642685, 'US', 'United States'), +('66.96.214.190', '66.96.214.199', 1113642686, 1113642695, 'SA', 'Saudi Arabia'), +('66.96.214.200', '66.96.214.224', 1113642696, 1113642720, 'US', 'United States'), +('66.96.214.225', '66.96.214.234', 1113642721, 1113642730, 'TR', 'Turkey'), +('66.96.214.235', '66.96.214.244', 1113642731, 1113642740, 'US', 'United States'), +('66.96.214.245', '66.96.214.254', 1113642741, 1113642750, 'IT', 'Italy'), +('66.96.214.255', '66.96.215.204', 1113642751, 1113642956, 'US', 'United States'), +('66.96.215.205', '66.96.215.214', 1113642957, 1113642966, 'CA', 'Canada'), +('66.96.215.215', '66.96.215.234', 1113642967, 1113642986, 'US', 'United States'), +('66.96.215.235', '66.96.215.254', 1113642987, 1113643006, 'SA', 'Saudi Arabia'), +('66.96.215.255', '66.96.216.139', 1113643007, 1113643147, 'US', 'United States'), +('66.96.216.140', '66.96.216.149', 1113643148, 1113643157, 'PH', 'Philippines'), +('66.96.216.150', '66.96.216.154', 1113643158, 1113643162, 'US', 'United States'), +('66.96.216.155', '66.96.216.164', 1113643163, 1113643172, 'CA', 'Canada'), +('66.96.216.165', '66.96.216.194', 1113643173, 1113643202, 'US', 'United States'), +('66.96.216.195', '66.96.216.229', 1113643203, 1113643237, 'CH', 'Switzerland'), +('66.96.216.230', '66.96.219.179', 1113643238, 1113643955, 'US', 'United States'), +('66.96.219.180', '66.96.219.199', 1113643956, 1113643975, 'CA', 'Canada'), +('66.96.219.200', '66.96.219.219', 1113643976, 1113643995, 'US', 'United States'), +('66.96.219.220', '66.96.219.239', 1113643996, 1113644015, 'TR', 'Turkey'), +('66.96.219.240', '66.96.222.1', 1113644016, 1113644545, 'US', 'United States'), +('66.96.222.2', '66.96.222.14', 1113644546, 1113644558, 'IN', 'India'), +('66.96.222.15', '66.96.222.29', 1113644559, 1113644573, 'CA', 'Canada'), +('66.96.222.30', '66.96.222.49', 1113644574, 1113644593, 'NL', 'Netherlands'), +('66.96.222.50', '66.96.222.84', 1113644594, 1113644628, 'US', 'United States'), +('66.96.222.85', '66.96.222.99', 1113644629, 1113644643, 'CA', 'Canada'), +('66.96.222.100', '66.96.226.199', 1113644644, 1113645767, 'US', 'United States'), +('66.96.226.200', '66.96.226.209', 1113645768, 1113645777, 'CA', 'Canada'), +('66.96.226.210', '66.96.231.169', 1113645778, 1113647017, 'US', 'United States'), +('66.96.231.170', '66.96.231.199', 1113647018, 1113647047, 'IN', 'India'), +('66.96.231.200', '66.96.232.44', 1113647048, 1113647148, 'US', 'United States'), +('66.96.232.45', '66.96.232.54', 1113647149, 1113647158, 'IT', 'Italy'), +('66.96.232.55', '66.96.232.64', 1113647159, 1113647168, 'BR', 'Brazil'), +('66.96.232.65', '66.96.232.119', 1113647169, 1113647223, 'US', 'United States'), +('66.96.232.120', '66.96.232.129', 1113647224, 1113647233, 'SE', 'Sweden'), +('66.96.232.130', '66.96.233.1', 1113647234, 1113647361, 'US', 'United States'), +('66.96.233.2', '66.96.233.99', 1113647362, 1113647459, 'MX', 'Mexico'), +('66.96.233.100', '66.96.233.189', 1113647460, 1113647549, 'US', 'United States'), +('66.96.233.190', '66.96.233.254', 1113647550, 1113647614, 'CH', 'Switzerland'), +('66.96.233.255', '66.96.234.134', 1113647615, 1113647750, 'US', 'United States'), +('66.96.234.135', '66.96.234.149', 1113647751, 1113647765, 'CA', 'Canada'), +('66.96.234.150', '66.96.244.34', 1113647766, 1113650210, 'US', 'United States'), +('66.96.244.35', '66.96.244.59', 1113650211, 1113650235, 'SE', 'Sweden'), +('66.96.244.60', '66.96.244.99', 1113650236, 1113650275, 'US', 'United States'), +('66.96.244.100', '66.96.244.109', 1113650276, 1113650285, 'CA', 'Canada'), +('66.96.244.110', '66.96.244.144', 1113650286, 1113650320, 'US', 'United States'), +('66.96.244.145', '66.96.244.154', 1113650321, 1113650330, 'IN', 'India'), +('66.96.244.155', '66.96.244.174', 1113650331, 1113650350, 'US', 'United States'), +('66.96.244.175', '66.96.244.204', 1113650351, 1113650380, 'AU', 'Australia'), +('66.96.244.205', '66.96.244.254', 1113650381, 1113650430, 'GB', 'United Kingdom'), +('66.96.244.255', '66.96.247.34', 1113650431, 1113650978, 'US', 'United States'), +('66.96.247.35', '66.96.247.74', 1113650979, 1113651018, 'CA', 'Canada'), +('66.96.247.75', '66.96.247.99', 1113651019, 1113651043, 'US', 'United States'), +('66.96.247.100', '66.96.247.139', 1113651044, 1113651083, 'CA', 'Canada'), +('66.96.247.140', '66.96.248.1', 1113651084, 1113651201, 'US', 'United States'), +('66.96.248.2', '66.96.248.81', 1113651202, 1113651281, 'CA', 'Canada'), +('66.96.248.82', '66.96.250.99', 1113651282, 1113651811, 'US', 'United States'), +('66.96.250.100', '66.96.250.119', 1113651812, 1113651831, 'CA', 'Canada'), +('66.96.250.120', '66.96.250.139', 1113651832, 1113651851, 'IN', 'India'), +('66.96.250.140', '66.96.250.214', 1113651852, 1113651926, 'US', 'United States'), +('66.96.250.215', '66.96.250.224', 1113651927, 1113651936, 'GB', 'United Kingdom'), +('66.96.250.225', '66.96.250.244', 1113651937, 1113651956, 'CA', 'Canada'), +('66.96.250.245', '66.96.253.1', 1113651957, 1113652481, 'US', 'United States'), +('66.96.253.2', '66.96.253.129', 1113652482, 1113652609, 'GB', 'United Kingdom'), +('66.96.253.130', '66.96.253.139', 1113652610, 1113652619, 'US', 'United States'), +('66.96.253.140', '66.96.253.179', 1113652620, 1113652659, 'AU', 'Australia'), +('66.96.253.180', '66.97.15.255', 1113652660, 1113657343, 'US', 'United States'), +('66.97.16.0', '66.97.31.255', 1113657344, 1113661439, 'CA', 'Canada'), +('66.97.32.0', '66.97.169.63', 1113661440, 1113696575, 'US', 'United States'), +('66.97.169.64', '66.97.169.127', 1113696576, 1113696639, 'CA', 'Canada'), +('66.97.169.128', '66.97.170.63', 1113696640, 1113696831, 'US', 'United States'), +('66.97.170.64', '66.97.170.127', 1113696832, 1113696895, 'CA', 'Canada'), +('66.97.170.128', '66.97.255.255', 1113696896, 1113718783, 'US', 'United States'), +('66.98.0.0', '66.98.95.255', 1113718784, 1113743359, 'DO', 'Dominican Republic'), +('66.98.96.0', '66.100.16.55', 1113743360, 1113854007, 'US', 'United States'), +('66.100.16.56', '66.100.16.63', 1113854008, 1113854015, 'CA', 'Canada'), +('66.100.16.64', '66.100.16.255', 1113854016, 1113854207, 'US', 'United States'), +('66.100.17.0', '66.100.17.255', 1113854208, 1113854463, 'CA', 'Canada'), +('66.100.18.0', '66.100.19.255', 1113854464, 1113854975, 'US', 'United States'), +('66.100.20.0', '66.100.21.255', 1113854976, 1113855487, 'CA', 'Canada'), +('66.100.22.0', '66.100.27.255', 1113855488, 1113857023, 'US', 'United States'), +('66.100.28.0', '66.100.28.7', 1113857024, 1113857031, 'CA', 'Canada'), +('66.100.28.8', '66.100.28.63', 1113857032, 1113857087, 'US', 'United States'), +('66.100.28.64', '66.100.28.127', 1113857088, 1113857151, 'CA', 'Canada'), +('66.100.28.128', '66.100.48.103', 1113857152, 1113862247, 'US', 'United States'), +('66.100.48.104', '66.100.48.111', 1113862248, 1113862255, 'MX', 'Mexico'), +('66.100.48.112', '66.100.58.31', 1113862256, 1113864735, 'US', 'United States'), +('66.100.58.32', '66.100.58.39', 1113864736, 1113864743, 'BR', 'Brazil'), +('66.100.58.40', '66.100.58.63', 1113864744, 1113864767, 'US', 'United States'), +('66.100.58.64', '66.100.58.79', 1113864768, 1113864783, 'VI', 'Virgin Islands, U.S.'), +('66.100.58.80', '66.100.125.15', 1113864784, 1113881871, 'US', 'United States'), +('66.100.125.16', '66.100.125.23', 1113881872, 1113881879, 'GB', 'United Kingdom'), +('66.100.125.24', '66.100.126.239', 1113881880, 1113882351, 'US', 'United States'), +('66.100.126.240', '66.100.126.247', 1113882352, 1113882359, 'CA', 'Canada'), +('66.100.126.248', '66.100.151.87', 1113882360, 1113888599, 'US', 'United States'), +('66.100.151.88', '66.100.151.95', 1113888600, 1113888607, 'CA', 'Canada'), +('66.100.151.96', '66.100.208.191', 1113888608, 1113903295, 'US', 'United States'), +('66.100.208.192', '66.100.208.255', 1113903296, 1113903359, 'CA', 'Canada'), +('66.100.209.0', '66.100.218.127', 1113903360, 1113905791, 'US', 'United States'), +('66.100.218.128', '66.100.218.143', 1113905792, 1113905807, 'CA', 'Canada'), +('66.100.218.144', '66.101.5.159', 1113905808, 1113916831, 'US', 'United States'), +('66.101.5.160', '66.101.5.167', 1113916832, 1113916839, 'GB', 'United Kingdom'), +('66.101.5.168', '66.101.15.151', 1113916840, 1113919383, 'US', 'United States'), +('66.101.15.152', '66.101.15.159', 1113919384, 1113919391, 'CA', 'Canada'), +('66.101.15.160', '66.101.32.255', 1113919392, 1113923839, 'US', 'United States'), +('66.101.33.0', '66.101.33.63', 1113923840, 1113923903, 'BR', 'Brazil'), +('66.101.33.64', '66.102.63.255', 1113923904, 1113997311, 'US', 'United States'), +('66.102.64.0', '66.102.95.255', 1113997312, 1114005503, 'CA', 'Canada'), +('66.102.96.0', '66.103.31.255', 1114005504, 1114054655, 'US', 'United States'), +('66.103.32.0', '66.103.63.255', 1114054656, 1114062847, 'CA', 'Canada'), +('66.103.64.0', '66.103.191.255', 1114062848, 1114095615, 'US', 'United States'), +('66.103.192.0', '66.103.223.255', 1114095616, 1114103807, 'CA', 'Canada'), +('66.103.224.0', '66.104.202.255', 1114103808, 1114163967, 'US', 'United States'), +('66.104.203.0', '66.104.204.255', 1114163968, 1114164479, 'VI', 'Virgin Islands, U.S.'), +('66.104.205.0', '66.104.226.239', 1114164480, 1114170095, 'US', 'United States'), +('66.104.226.240', '66.104.226.255', 1114170096, 1114170111, 'CA', 'Canada'), +('66.104.227.0', '66.109.255.255', 1114170112, 1114505215, 'US', 'United States'), +('66.110.0.0', '66.110.8.15', 1114505216, 1114507279, 'CA', 'Canada'), +('66.110.8.16', '66.110.8.31', 1114507280, 1114507295, 'US', 'United States'), +('66.110.8.32', '66.110.8.159', 1114507296, 1114507423, 'CA', 'Canada'), +('66.110.8.160', '66.110.8.167', 1114507424, 1114507431, 'TZ', 'Tanzania, United Republic of'), +('66.110.8.168', '66.110.23.255', 1114507432, 1114511359, 'CA', 'Canada'), +('66.110.24.0', '66.110.24.255', 1114511360, 1114511615, 'US', 'United States'), +('66.110.25.0', '66.110.31.255', 1114511616, 1114513407, 'CA', 'Canada'), +('66.110.32.0', '66.110.39.255', 1114513408, 1114515455, 'SA', 'Saudi Arabia'), +('66.110.40.0', '66.110.47.255', 1114515456, 1114517503, 'GU', 'Guam'), +('66.110.48.0', '66.110.57.255', 1114517504, 1114520063, 'CA', 'Canada'), +('66.110.58.0', '66.110.58.255', 1114520064, 1114520319, 'PH', 'Philippines'), +('66.110.59.0', '66.110.59.255', 1114520320, 1114520575, 'CA', 'Canada'), +('66.110.60.0', '66.110.60.255', 1114520576, 1114520831, 'PH', 'Philippines'), +('66.110.61.0', '66.110.73.255', 1114520832, 1114524159, 'CA', 'Canada'), +('66.110.74.0', '66.110.75.255', 1114524160, 1114524671, 'ZA', 'South Africa'), +('66.110.76.0', '66.110.109.255', 1114524672, 1114533375, 'CA', 'Canada'), +('66.110.110.0', '66.110.111.255', 1114533376, 1114533887, 'ZA', 'South Africa'), +('66.110.112.0', '66.110.127.255', 1114533888, 1114537983, 'AO', 'Angola'), +('66.110.128.0', '66.110.175.255', 1114537984, 1114550271, 'CA', 'Canada'), +('66.110.176.0', '66.112.68.255', 1114550272, 1114653951, 'US', 'United States'), +('66.112.69.0', '66.112.69.31', 1114653952, 1114653983, 'MO', 'Macau'), +('66.112.69.32', '66.112.84.135', 1114653984, 1114657927, 'US', 'United States'), +('66.112.84.136', '66.112.84.143', 1114657928, 1114657935, 'LA', 'Lao People''s Democratic Republic'), +('66.112.84.144', '66.112.159.255', 1114657936, 1114677247, 'US', 'United States'), +('66.112.176.0', '66.112.191.255', 1114681344, 1114685439, 'CA', 'Canada'), +('66.112.192.0', '66.113.111.255', 1114685440, 1114730495, 'US', 'United States'), +('66.113.112.0', '66.113.127.255', 1114730496, 1114734591, 'CA', 'Canada'), +('66.113.128.0', '66.115.172.255', 1114734592, 1114877183, 'US', 'United States'), +('66.115.173.0', '66.115.173.255', 1114877184, 1114877439, 'PA', 'Panama'), +('66.115.174.0', '66.115.175.255', 1114877440, 1114877951, 'US', 'United States'), +('66.115.176.0', '66.115.176.255', 1114877952, 1114878207, 'PA', 'Panama'), +('66.115.177.0', '66.115.179.129', 1114878208, 1114878849, 'US', 'United States'), +('66.115.179.130', '66.115.180.1', 1114878850, 1114878977, 'LT', 'Lithuania'), +('66.115.180.2', '66.119.65.255', 1114878978, 1115111935, 'US', 'United States'), +('66.119.66.0', '66.119.66.127', 1115111936, 1115112063, 'PR', 'Puerto Rico'), +('66.119.66.128', '66.119.71.255', 1115112064, 1115113471, 'US', 'United States'), +('66.119.72.0', '66.119.75.255', 1115113472, 1115114495, 'HN', 'Honduras'), +('66.119.76.0', '66.119.76.255', 1115114496, 1115114751, 'MX', 'Mexico'), +('66.119.77.0', '66.119.77.255', 1115114752, 1115115007, 'GT', 'Guatemala'), +('66.119.78.0', '66.119.79.255', 1115115008, 1115115519, 'US', 'United States'), +('66.119.80.0', '66.119.83.255', 1115115520, 1115116543, 'HN', 'Honduras'), +('66.119.84.0', '66.119.85.255', 1115116544, 1115117055, 'US', 'United States'), +('66.119.86.0', '66.119.86.255', 1115117056, 1115117311, 'GB', 'United Kingdom'), +('66.119.87.0', '66.119.87.255', 1115117312, 1115117567, 'US', 'United States'), +('66.119.88.0', '66.119.91.255', 1115117568, 1115118591, 'HN', 'Honduras'), +('66.119.92.0', '66.119.95.255', 1115118592, 1115119615, 'SV', 'El Salvador'), +('66.119.96.0', '66.119.159.255', 1115119616, 1115135999, 'US', 'United States'), +('66.119.160.0', '66.119.191.255', 1115136000, 1115144191, 'CA', 'Canada'), +('66.119.192.0', '66.121.66.255', 1115144192, 1115243263, 'US', 'United States'), +('66.121.67.0', '66.121.67.7', 1115243264, 1115243271, 'PR', 'Puerto Rico'), +('66.121.67.8', '66.122.32.31', 1115243272, 1115299871, 'US', 'United States'), +('66.122.32.32', '66.122.32.39', 1115299872, 1115299879, 'PR', 'Puerto Rico'), +('66.122.32.40', '66.122.230.15', 1115299880, 1115350543, 'US', 'United States'), +('66.122.230.16', '66.122.230.23', 1115350544, 1115350551, 'PR', 'Puerto Rico'), +('66.122.230.24', '66.123.172.215', 1115350552, 1115401431, 'US', 'United States'), +('66.123.172.216', '66.123.172.223', 1115401432, 1115401439, 'PR', 'Puerto Rico'), +('66.123.172.224', '66.127.180.223', 1115401440, 1115665631, 'US', 'United States'), +('66.127.180.224', '66.127.180.231', 1115665632, 1115665639, 'PR', 'Puerto Rico'), +('66.127.180.232', '66.128.31.255', 1115665640, 1115693055, 'US', 'United States'), +('66.128.32.0', '66.128.47.255', 1115693056, 1115697151, 'CO', 'Colombia'), +('66.128.48.0', '66.128.48.7', 1115697152, 1115697159, 'US', 'United States'), +('66.128.48.8', '66.128.48.15', 1115697160, 1115697167, 'CO', 'Colombia'), +('66.128.48.16', '66.128.48.23', 1115697168, 1115697175, 'US', 'United States'), +('66.128.48.24', '66.128.48.31', 1115697176, 1115697183, 'AU', 'Australia'), +('66.128.48.32', '66.128.48.47', 1115697184, 1115697199, 'US', 'United States'), +('66.128.48.48', '66.128.48.55', 1115697200, 1115697207, 'ID', 'Indonesia'), +('66.128.48.56', '66.128.48.63', 1115697208, 1115697215, 'US', 'United States'), +('66.128.48.64', '66.128.48.71', 1115697216, 1115697223, 'ID', 'Indonesia'), +('66.128.48.72', '66.128.48.79', 1115697224, 1115697231, 'CA', 'Canada'), +('66.128.48.80', '66.128.48.111', 1115697232, 1115697263, 'US', 'United States'), +('66.128.48.112', '66.128.48.127', 1115697264, 1115697279, 'IN', 'India'), +('66.128.48.128', '66.128.48.167', 1115697280, 1115697319, 'US', 'United States'), +('66.128.48.168', '66.128.48.175', 1115697320, 1115697327, 'GB', 'United Kingdom'), +('66.128.48.176', '66.128.48.231', 1115697328, 1115697383, 'US', 'United States'), +('66.128.48.232', '66.128.48.239', 1115697384, 1115697391, 'CO', 'Colombia'), +('66.128.48.240', '66.128.49.63', 1115697392, 1115697471, 'US', 'United States'), +('66.128.49.64', '66.128.49.71', 1115697472, 1115697479, 'CO', 'Colombia'), +('66.128.49.72', '66.128.50.135', 1115697480, 1115697799, 'US', 'United States'), +('66.128.50.136', '66.128.50.143', 1115697800, 1115697807, 'CA', 'Canada'), +('66.128.50.144', '66.128.50.151', 1115697808, 1115697815, 'US', 'United States'), +('66.128.50.152', '66.128.50.159', 1115697816, 1115697823, 'DO', 'Dominican Republic'), +('66.128.50.160', '66.128.51.23', 1115697824, 1115697943, 'US', 'United States'), +('66.128.51.24', '66.128.51.31', 1115697944, 1115697951, 'MX', 'Mexico'), +('66.128.51.32', '66.128.51.41', 1115697952, 1115697961, 'DO', 'Dominican Republic'), +('66.128.51.42', '66.128.51.71', 1115697962, 1115697991, 'US', 'United States'), +('66.128.51.72', '66.128.51.79', 1115697992, 1115697999, 'CO', 'Colombia'), +('66.128.51.80', '66.128.51.87', 1115698000, 1115698007, 'DO', 'Dominican Republic'), +('66.128.51.88', '66.128.51.95', 1115698008, 1115698015, 'US', 'United States'), +('66.128.51.96', '66.128.51.127', 1115698016, 1115698047, 'AF', 'Afghanistan'), +('66.128.51.128', '66.128.51.207', 1115698048, 1115698127, 'US', 'United States'), +('66.128.51.208', '66.128.51.215', 1115698128, 1115698135, 'DO', 'Dominican Republic'), +('66.128.51.216', '66.128.51.239', 1115698136, 1115698159, 'US', 'United States'), +('66.128.51.240', '66.128.51.247', 1115698160, 1115698167, 'AU', 'Australia'), +('66.128.51.248', '66.128.52.223', 1115698168, 1115698399, 'US', 'United States'), +('66.128.52.224', '66.128.52.231', 1115698400, 1115698407, 'CA', 'Canada'), +('66.128.52.232', '66.128.52.255', 1115698408, 1115698431, 'US', 'United States'), +('66.128.53.0', '66.128.53.255', 1115698432, 1115698687, 'DO', 'Dominican Republic'), +('66.128.54.0', '66.128.54.95', 1115698688, 1115698783, 'US', 'United States'), +('66.128.54.96', '66.128.54.103', 1115698784, 1115698791, 'CO', 'Colombia'), +('66.128.54.104', '66.128.54.255', 1115698792, 1115698943, 'US', 'United States'), +('66.128.55.0', '66.128.55.7', 1115698944, 1115698951, 'CA', 'Canada'), +('66.128.55.8', '66.128.55.39', 1115698952, 1115698983, 'US', 'United States'), +('66.128.55.40', '66.128.55.47', 1115698984, 1115698991, 'CO', 'Colombia'), +('66.128.55.48', '66.128.58.191', 1115698992, 1115699903, 'US', 'United States'), +('66.128.58.192', '66.128.58.199', 1115699904, 1115699911, 'CA', 'Canada'), +('66.128.58.200', '66.128.58.207', 1115699912, 1115699919, 'US', 'United States'), +('66.128.58.208', '66.128.58.215', 1115699920, 1115699927, 'CA', 'Canada'), +('66.128.58.216', '66.128.59.255', 1115699928, 1115700223, 'US', 'United States'), +('66.128.60.0', '66.128.60.255', 1115700224, 1115700479, 'DO', 'Dominican Republic'), +('66.128.61.0', '66.128.61.255', 1115700480, 1115700735, 'US', 'United States'), +('66.128.62.0', '66.128.62.7', 1115700736, 1115700743, 'CA', 'Canada'), +('66.128.62.8', '66.128.62.55', 1115700744, 1115700791, 'US', 'United States'), +('66.128.62.56', '66.128.62.63', 1115700792, 1115700799, 'CA', 'Canada'), +('66.128.62.64', '66.128.79.255', 1115700800, 1115705343, 'US', 'United States'), +('66.128.80.0', '66.128.95.255', 1115705344, 1115709439, 'CA', 'Canada'), +('66.128.96.0', '66.129.127.255', 1115709440, 1115783167, 'US', 'United States'), +('66.129.128.0', '66.129.133.151', 1115783168, 1115784599, 'CA', 'Canada'), +('66.129.133.152', '66.129.133.159', 1115784600, 1115784607, 'US', 'United States'), +('66.129.133.160', '66.129.159.255', 1115784608, 1115791359, 'CA', 'Canada'), +('66.129.160.0', '66.129.175.255', 1115791360, 1115795455, 'PR', 'Puerto Rico'), +('66.129.176.0', '66.129.191.255', 1115795456, 1115799551, 'CA', 'Canada'), +('66.129.192.0', '66.129.255.255', 1115799552, 1115815935, 'US', 'United States'), +('66.130.0.0', '66.131.255.255', 1115815936, 1115947007, 'CA', 'Canada'), +('66.132.0.0', '66.133.112.63', 1115947008, 1116041279, 'US', 'United States'), +('66.133.112.64', '66.133.112.79', 1116041280, 1116041295, 'CA', 'Canada'), +('66.133.112.80', '66.135.57.255', 1116041296, 1116158463, 'US', 'United States'), +('66.135.58.0', '66.135.58.31', 1116158464, 1116158495, 'AU', 'Australia'), +('66.135.58.32', '66.135.95.255', 1116158496, 1116168191, 'US', 'United States'), +('66.135.96.0', '66.135.100.95', 1116168192, 1116169311, 'CA', 'Canada'), +('66.135.100.96', '66.135.100.111', 1116169312, 1116169327, 'US', 'United States'), +('66.135.100.112', '66.135.127.255', 1116169328, 1116176383, 'CA', 'Canada'), +('66.135.128.0', '66.136.4.71', 1116176384, 1116210247, 'US', 'United States'), +('66.136.4.72', '66.136.4.79', 1116210248, 1116210255, 'PR', 'Puerto Rico'), +('66.136.4.80', '66.136.4.199', 1116210256, 1116210375, 'US', 'United States'), +('66.136.4.200', '66.136.4.207', 1116210376, 1116210383, 'PR', 'Puerto Rico'), +('66.136.4.208', '66.136.5.87', 1116210384, 1116210519, 'US', 'United States'), +('66.136.5.88', '66.136.5.95', 1116210520, 1116210527, 'PR', 'Puerto Rico'), +('66.136.5.96', '66.136.6.15', 1116210528, 1116210703, 'US', 'United States'), +('66.136.6.16', '66.136.6.23', 1116210704, 1116210711, 'PR', 'Puerto Rico'), +('66.136.6.24', '66.136.9.31', 1116210712, 1116211487, 'US', 'United States'), +('66.136.9.32', '66.136.9.39', 1116211488, 1116211495, 'PR', 'Puerto Rico'), +('66.136.9.40', '66.136.9.175', 1116211496, 1116211631, 'US', 'United States'), +('66.136.9.176', '66.136.9.183', 1116211632, 1116211639, 'PR', 'Puerto Rico'), +('66.136.9.184', '66.136.9.191', 1116211640, 1116211647, 'US', 'United States'), +('66.136.9.192', '66.136.9.199', 1116211648, 1116211655, 'PR', 'Puerto Rico'), +('66.136.9.200', '66.136.16.127', 1116211656, 1116213375, 'US', 'United States'), +('66.136.16.128', '66.136.16.135', 1116213376, 1116213383, 'PR', 'Puerto Rico'), +('66.136.16.136', '66.136.16.199', 1116213384, 1116213447, 'US', 'United States'), +('66.136.16.200', '66.136.16.215', 1116213448, 1116213463, 'PR', 'Puerto Rico'), +('66.136.16.216', '66.136.17.135', 1116213464, 1116213639, 'US', 'United States'), +('66.136.17.136', '66.136.17.143', 1116213640, 1116213647, 'PR', 'Puerto Rico'), +('66.136.17.144', '66.136.18.183', 1116213648, 1116213943, 'US', 'United States'), +('66.136.18.184', '66.136.18.191', 1116213944, 1116213951, 'PR', 'Puerto Rico'), +('66.136.18.192', '66.136.19.143', 1116213952, 1116214159, 'US', 'United States'), +('66.136.19.144', '66.136.19.151', 1116214160, 1116214167, 'PR', 'Puerto Rico'), +('66.136.19.152', '66.136.31.63', 1116214168, 1116217151, 'US', 'United States'), +('66.136.31.64', '66.136.31.71', 1116217152, 1116217159, 'PR', 'Puerto Rico'), +('66.136.31.72', '66.136.32.95', 1116217160, 1116217439, 'US', 'United States'), +('66.136.32.96', '66.136.32.103', 1116217440, 1116217447, 'PR', 'Puerto Rico'), +('66.136.32.104', '66.136.36.159', 1116217448, 1116218527, 'US', 'United States'), +('66.136.36.160', '66.136.36.167', 1116218528, 1116218535, 'PR', 'Puerto Rico'), +('66.136.36.168', '66.136.43.71', 1116218536, 1116220231, 'US', 'United States'), +('66.136.43.72', '66.136.43.79', 1116220232, 1116220239, 'PR', 'Puerto Rico'), +('66.136.43.80', '66.136.54.223', 1116220240, 1116223199, 'US', 'United States'), +('66.136.54.224', '66.136.54.231', 1116223200, 1116223207, 'PR', 'Puerto Rico'), +('66.136.54.232', '66.136.58.47', 1116223208, 1116224047, 'US', 'United States'), +('66.136.58.48', '66.136.58.55', 1116224048, 1116224055, 'PR', 'Puerto Rico'), +('66.136.58.56', '66.136.77.79', 1116224056, 1116228943, 'US', 'United States'), +('66.136.77.80', '66.136.77.87', 1116228944, 1116228951, 'PR', 'Puerto Rico'), +('66.136.77.88', '66.136.77.199', 1116228952, 1116229063, 'US', 'United States'), +('66.136.77.200', '66.136.77.207', 1116229064, 1116229071, 'PR', 'Puerto Rico'), +('66.136.77.208', '66.136.96.39', 1116229072, 1116233767, 'US', 'United States'), +('66.136.96.40', '66.136.96.47', 1116233768, 1116233775, 'PR', 'Puerto Rico'), +('66.136.96.48', '66.136.96.63', 1116233776, 1116233791, 'US', 'United States'), +('66.136.96.64', '66.136.96.71', 1116233792, 1116233799, 'PR', 'Puerto Rico'), +('66.136.96.72', '66.136.136.183', 1116233800, 1116244151, 'US', 'United States'), +('66.136.136.184', '66.136.136.191', 1116244152, 1116244159, 'PR', 'Puerto Rico'), +('66.136.136.192', '66.136.139.31', 1116244160, 1116244767, 'US', 'United States'), +('66.136.139.32', '66.136.139.39', 1116244768, 1116244775, 'PR', 'Puerto Rico'), +('66.136.139.40', '66.136.139.199', 1116244776, 1116244935, 'US', 'United States'), +('66.136.139.200', '66.136.139.207', 1116244936, 1116244943, 'PR', 'Puerto Rico'), +('66.136.139.208', '66.136.140.255', 1116244944, 1116245247, 'US', 'United States'), +('66.136.141.0', '66.136.141.7', 1116245248, 1116245255, 'PR', 'Puerto Rico'), +('66.136.141.8', '66.136.141.15', 1116245256, 1116245263, 'US', 'United States'), +('66.136.141.16', '66.136.141.23', 1116245264, 1116245271, 'PR', 'Puerto Rico'), +('66.136.141.24', '66.136.166.175', 1116245272, 1116251823, 'US', 'United States'), +('66.136.166.176', '66.136.166.183', 1116251824, 1116251831, 'PR', 'Puerto Rico'), +('66.136.166.184', '66.136.168.159', 1116251832, 1116252319, 'US', 'United States'), +('66.136.168.160', '66.136.168.167', 1116252320, 1116252327, 'PR', 'Puerto Rico'), +('66.136.168.168', '66.136.172.63', 1116252328, 1116253247, 'US', 'United States'), +('66.136.172.64', '66.136.172.71', 1116253248, 1116253255, 'PR', 'Puerto Rico'), +('66.136.172.72', '66.136.172.111', 1116253256, 1116253295, 'US', 'United States'), +('66.136.172.112', '66.136.172.119', 1116253296, 1116253303, 'PR', 'Puerto Rico'), +('66.136.172.120', '66.136.173.15', 1116253304, 1116253455, 'US', 'United States'), +('66.136.173.16', '66.136.173.23', 1116253456, 1116253463, 'PR', 'Puerto Rico'), +('66.136.173.24', '66.136.204.207', 1116253464, 1116261583, 'US', 'United States'), +('66.136.204.208', '66.136.204.215', 1116261584, 1116261591, 'PR', 'Puerto Rico'), +('66.136.204.216', '66.136.235.255', 1116261592, 1116269567, 'US', 'United States'), +('66.136.236.0', '66.136.236.7', 1116269568, 1116269575, 'PR', 'Puerto Rico'), +('66.136.236.8', '66.136.243.143', 1116269576, 1116271503, 'US', 'United States'), +('66.136.243.144', '66.136.243.151', 1116271504, 1116271511, 'PR', 'Puerto Rico'), +('66.136.243.152', '66.136.248.239', 1116271512, 1116272879, 'US', 'United States'), +('66.136.248.240', '66.136.248.247', 1116272880, 1116272887, 'PR', 'Puerto Rico'), +('66.136.248.248', '66.137.1.103', 1116272888, 1116275047, 'US', 'United States'), +('66.137.1.104', '66.137.1.111', 1116275048, 1116275055, 'PR', 'Puerto Rico'), +('66.137.1.112', '66.137.3.55', 1116275056, 1116275511, 'US', 'United States'), +('66.137.3.56', '66.137.3.63', 1116275512, 1116275519, 'PR', 'Puerto Rico'), +('66.137.3.64', '66.137.10.7', 1116275520, 1116277255, 'US', 'United States'), +('66.137.10.8', '66.137.10.15', 1116277256, 1116277263, 'PR', 'Puerto Rico'), +('66.137.10.16', '66.137.10.31', 1116277264, 1116277279, 'US', 'United States'), +('66.137.10.32', '66.137.10.63', 1116277280, 1116277311, 'PR', 'Puerto Rico'), +('66.137.10.64', '66.137.11.183', 1116277312, 1116277687, 'US', 'United States'), +('66.137.11.184', '66.137.11.191', 1116277688, 1116277695, 'PR', 'Puerto Rico'), +('66.137.11.192', '66.137.18.55', 1116277696, 1116279351, 'US', 'United States'), +('66.137.18.56', '66.137.18.63', 1116279352, 1116279359, 'PR', 'Puerto Rico'), +('66.137.18.64', '66.137.18.207', 1116279360, 1116279503, 'US', 'United States'), +('66.137.18.208', '66.137.18.215', 1116279504, 1116279511, 'PR', 'Puerto Rico'), +('66.137.18.216', '66.137.36.95', 1116279512, 1116283999, 'US', 'United States'), +('66.137.36.96', '66.137.36.103', 1116284000, 1116284007, 'PR', 'Puerto Rico'), +('66.137.36.104', '66.137.39.199', 1116284008, 1116284871, 'US', 'United States'), +('66.137.39.200', '66.137.39.207', 1116284872, 1116284879, 'PR', 'Puerto Rico'), +('66.137.39.208', '66.137.65.23', 1116284880, 1116291351, 'US', 'United States'), +('66.137.65.24', '66.137.65.31', 1116291352, 1116291359, 'PR', 'Puerto Rico'), +('66.137.65.32', '66.137.97.31', 1116291360, 1116299551, 'US', 'United States'), +('66.137.97.32', '66.137.97.39', 1116299552, 1116299559, 'PR', 'Puerto Rico'), +('66.137.97.40', '66.137.97.103', 1116299560, 1116299623, 'US', 'United States'), +('66.137.97.104', '66.137.97.111', 1116299624, 1116299631, 'PR', 'Puerto Rico'), +('66.137.97.112', '66.137.102.47', 1116299632, 1116300847, 'US', 'United States'), +('66.137.102.48', '66.137.102.55', 1116300848, 1116300855, 'PR', 'Puerto Rico'), +('66.137.102.56', '66.137.103.87', 1116300856, 1116301143, 'US', 'United States'), +('66.137.103.88', '66.137.103.95', 1116301144, 1116301151, 'PR', 'Puerto Rico'), +('66.137.103.96', '66.137.108.87', 1116301152, 1116302423, 'US', 'United States'), +('66.137.108.88', '66.137.108.95', 1116302424, 1116302431, 'PR', 'Puerto Rico'), +('66.137.108.96', '66.137.110.175', 1116302432, 1116303023, 'US', 'United States'), +('66.137.110.176', '66.137.110.183', 1116303024, 1116303031, 'PR', 'Puerto Rico'), +('66.137.110.184', '66.137.122.47', 1116303032, 1116305967, 'US', 'United States'), +('66.137.122.48', '66.137.122.55', 1116305968, 1116305975, 'PR', 'Puerto Rico'), +('66.137.122.56', '66.137.139.255', 1116305976, 1116310527, 'US', 'United States'), +('66.137.140.0', '66.137.140.7', 1116310528, 1116310535, 'PR', 'Puerto Rico'), +('66.137.140.8', '66.137.145.23', 1116310536, 1116311831, 'US', 'United States'), +('66.137.145.24', '66.137.145.31', 1116311832, 1116311839, 'PR', 'Puerto Rico'), +('66.137.145.32', '66.137.162.239', 1116311840, 1116316399, 'US', 'United States'), +('66.137.162.240', '66.137.162.247', 1116316400, 1116316407, 'PR', 'Puerto Rico'), +('66.137.162.248', '66.137.183.23', 1116316408, 1116321559, 'US', 'United States'), +('66.137.183.24', '66.137.183.31', 1116321560, 1116321567, 'PR', 'Puerto Rico'), +('66.137.183.32', '66.137.198.23', 1116321568, 1116325399, 'US', 'United States'), +('66.137.198.24', '66.137.198.31', 1116325400, 1116325407, 'PR', 'Puerto Rico'), +('66.137.198.32', '66.137.217.167', 1116325408, 1116330407, 'US', 'United States'), +('66.137.217.168', '66.137.217.175', 1116330408, 1116330415, 'PR', 'Puerto Rico'), +('66.137.217.176', '66.137.234.151', 1116330416, 1116334743, 'US', 'United States'), +('66.137.234.152', '66.137.234.159', 1116334744, 1116334751, 'PR', 'Puerto Rico'), +('66.137.234.160', '66.137.235.135', 1116334752, 1116334983, 'US', 'United States'), +('66.137.235.136', '66.137.235.143', 1116334984, 1116334991, 'PR', 'Puerto Rico'), +('66.137.235.144', '66.137.238.119', 1116334992, 1116335735, 'US', 'United States'), +('66.137.238.120', '66.137.238.127', 1116335736, 1116335743, 'PR', 'Puerto Rico'), +('66.137.238.128', '66.137.242.199', 1116335744, 1116336839, 'US', 'United States'), +('66.137.242.200', '66.137.242.207', 1116336840, 1116336847, 'PR', 'Puerto Rico'), +('66.137.242.208', '66.137.243.223', 1116336848, 1116337119, 'US', 'United States'), +('66.137.243.224', '66.137.243.231', 1116337120, 1116337127, 'PR', 'Puerto Rico'), +('66.137.243.232', '66.137.247.15', 1116337128, 1116337935, 'US', 'United States'), +('66.137.247.16', '66.137.247.23', 1116337936, 1116337943, 'PR', 'Puerto Rico'), +('66.137.247.24', '66.137.253.103', 1116337944, 1116339559, 'US', 'United States'), +('66.137.253.104', '66.137.253.111', 1116339560, 1116339567, 'PR', 'Puerto Rico'), +('66.137.253.112', '66.137.253.119', 1116339568, 1116339575, 'US', 'United States'), +('66.137.253.120', '66.137.253.127', 1116339576, 1116339583, 'PR', 'Puerto Rico'), +('66.137.253.128', '66.137.253.143', 1116339584, 1116339599, 'US', 'United States'), +('66.137.253.144', '66.137.253.151', 1116339600, 1116339607, 'PR', 'Puerto Rico'), +('66.137.253.152', '66.138.76.135', 1116339608, 1116359815, 'US', 'United States'), +('66.138.76.136', '66.138.76.143', 1116359816, 1116359823, 'PR', 'Puerto Rico'), +('66.138.76.144', '66.138.76.239', 1116359824, 1116359919, 'US', 'United States'), +('66.138.76.240', '66.138.76.247', 1116359920, 1116359927, 'PR', 'Puerto Rico'), +('66.138.76.248', '66.138.78.23', 1116359928, 1116360215, 'US', 'United States'), +('66.138.78.24', '66.138.78.31', 1116360216, 1116360223, 'PR', 'Puerto Rico'), +('66.138.78.32', '66.138.204.15', 1116360224, 1116392463, 'US', 'United States'), +('66.138.204.16', '66.138.204.23', 1116392464, 1116392471, 'PR', 'Puerto Rico'), +('66.138.204.24', '66.138.238.151', 1116392472, 1116401303, 'US', 'United States'), +('66.138.238.152', '66.138.238.159', 1116401304, 1116401311, 'PR', 'Puerto Rico'), +('66.138.238.160', '66.139.1.159', 1116401312, 1116406175, 'US', 'United States'), +('66.139.1.160', '66.139.1.175', 1116406176, 1116406191, 'PR', 'Puerto Rico'), +('66.139.1.176', '66.139.13.199', 1116406192, 1116409287, 'US', 'United States'), +('66.139.13.200', '66.139.13.207', 1116409288, 1116409295, 'PR', 'Puerto Rico'), +('66.139.13.208', '66.139.65.39', 1116409296, 1116422439, 'US', 'United States'), +('66.139.65.40', '66.139.65.47', 1116422440, 1116422447, 'PR', 'Puerto Rico'), +('66.139.65.48', '66.139.152.111', 1116422448, 1116444783, 'US', 'United States'), +('66.139.152.112', '66.139.152.119', 1116444784, 1116444791, 'PR', 'Puerto Rico'), +('66.139.152.120', '66.139.210.111', 1116444792, 1116459631, 'US', 'United States'), +('66.139.210.112', '66.139.210.127', 1116459632, 1116459647, 'PR', 'Puerto Rico'), +('66.139.210.128', '66.140.8.231', 1116459648, 1116473575, 'US', 'United States'), +('66.140.8.232', '66.140.8.239', 1116473576, 1116473583, 'PR', 'Puerto Rico'), +('66.140.8.240', '66.140.27.191', 1116473584, 1116478399, 'US', 'United States'), +('66.140.27.192', '66.140.27.199', 1116478400, 1116478407, 'PR', 'Puerto Rico'), +('66.140.27.200', '66.140.41.87', 1116478408, 1116481879, 'US', 'United States'), +('66.140.41.88', '66.140.41.95', 1116481880, 1116481887, 'PR', 'Puerto Rico'), +('66.140.41.96', '66.140.64.215', 1116481888, 1116487895, 'US', 'United States'), +('66.140.64.216', '66.140.64.223', 1116487896, 1116487903, 'PR', 'Puerto Rico'), +('66.140.64.224', '66.140.64.231', 1116487904, 1116487911, 'US', 'United States'), +('66.140.64.232', '66.140.64.239', 1116487912, 1116487919, 'PR', 'Puerto Rico'), +('66.140.64.240', '66.140.78.39', 1116487920, 1116491303, 'US', 'United States'), +('66.140.78.40', '66.140.78.47', 1116491304, 1116491311, 'PR', 'Puerto Rico'), +('66.140.78.48', '66.140.96.175', 1116491312, 1116496047, 'US', 'United States'), +('66.140.96.176', '66.140.96.183', 1116496048, 1116496055, 'PR', 'Puerto Rico'), +('66.140.96.184', '66.140.112.15', 1116496056, 1116499983, 'US', 'United States'), +('66.140.112.16', '66.140.112.23', 1116499984, 1116499991, 'PR', 'Puerto Rico'), +('66.140.112.24', '66.140.135.63', 1116499992, 1116505919, 'US', 'United States'), +('66.140.135.64', '66.140.135.95', 1116505920, 1116505951, 'PR', 'Puerto Rico'), +('66.140.135.96', '66.140.138.143', 1116505952, 1116506767, 'US', 'United States'), +('66.140.138.144', '66.140.138.151', 1116506768, 1116506775, 'PR', 'Puerto Rico'), +('66.140.138.152', '66.140.138.239', 1116506776, 1116506863, 'US', 'United States'), +('66.140.138.240', '66.140.138.247', 1116506864, 1116506871, 'PR', 'Puerto Rico'), +('66.140.138.248', '66.140.149.55', 1116506872, 1116509495, 'US', 'United States'), +('66.140.149.56', '66.140.149.63', 1116509496, 1116509503, 'PR', 'Puerto Rico'), +('66.140.149.64', '66.140.154.191', 1116509504, 1116510911, 'US', 'United States'), +('66.140.154.192', '66.140.154.207', 1116510912, 1116510927, 'PR', 'Puerto Rico'), +('66.140.154.208', '66.140.225.127', 1116510928, 1116529023, 'US', 'United States'), +('66.140.225.128', '66.140.225.135', 1116529024, 1116529031, 'PR', 'Puerto Rico'), +('66.140.225.136', '66.141.7.63', 1116529032, 1116538687, 'US', 'United States'), +('66.141.7.64', '66.141.7.79', 1116538688, 1116538703, 'UA', 'Ukraine'), +('66.141.7.80', '66.141.115.71', 1116538704, 1116566343, 'US', 'United States'), +('66.141.115.72', '66.141.115.79', 1116566344, 1116566351, 'PR', 'Puerto Rico'), +('66.141.115.80', '66.141.158.135', 1116566352, 1116577415, 'US', 'United States'), +('66.141.158.136', '66.141.158.143', 1116577416, 1116577423, 'PR', 'Puerto Rico'), +('66.141.158.144', '66.141.244.183', 1116577424, 1116599479, 'US', 'United States'), +('66.141.244.184', '66.141.244.191', 1116599480, 1116599487, 'PR', 'Puerto Rico'), +('66.141.244.192', '66.146.127.255', 1116599488, 1116897279, 'US', 'United States'), +('66.146.128.0', '66.146.159.255', 1116897280, 1116905471, 'CA', 'Canada'), +('66.146.160.0', '66.150.43.255', 1116905472, 1117137919, 'US', 'United States'), +('66.150.44.0', '66.150.44.255', 1117137920, 1117138175, 'CA', 'Canada'), +('66.150.45.0', '66.150.60.255', 1117138176, 1117142271, 'US', 'United States'), +('66.150.61.0', '66.150.61.255', 1117142272, 1117142527, 'CA', 'Canada'), +('66.150.62.0', '66.150.142.15', 1117142528, 1117163023, 'US', 'United States'), +('66.150.142.16', '66.150.142.23', 1117163024, 1117163031, 'CA', 'Canada'), +('66.150.142.24', '66.150.201.175', 1117163032, 1117178287, 'US', 'United States'), +('66.150.201.176', '66.150.201.191', 1117178288, 1117178303, 'GB', 'United Kingdom'), +('66.150.201.192', '66.150.217.63', 1117178304, 1117182271, 'US', 'United States'), +('66.150.217.64', '66.150.217.127', 1117182272, 1117182335, 'CA', 'Canada'), +('66.150.217.128', '66.150.247.63', 1117182336, 1117189951, 'US', 'United States'), +('66.150.247.64', '66.150.247.127', 1117189952, 1117190015, 'KR', 'Korea, Republic of'), +('66.150.247.128', '66.151.14.215', 1117190016, 1117195991, 'US', 'United States'), +('66.151.14.216', '66.151.14.223', 1117195992, 1117195999, 'A2', 'Satellite Provider'), +('66.151.14.224', '66.151.24.255', 1117196000, 1117198591, 'US', 'United States'), +('66.151.25.0', '66.151.25.255', 1117198592, 1117198847, 'CA', 'Canada'), +('66.151.26.0', '66.151.56.71', 1117198848, 1117206599, 'US', 'United States'), +('66.151.56.72', '66.151.56.95', 1117206600, 1117206623, 'FR', 'France'), +('66.151.56.96', '66.151.112.255', 1117206624, 1117221119, 'US', 'United States'), +('66.151.113.0', '66.151.113.255', 1117221120, 1117221375, 'SG', 'Singapore'), +('66.151.114.0', '66.151.238.127', 1117221376, 1117253247, 'US', 'United States'), +('66.151.238.128', '66.151.238.135', 1117253248, 1117253255, 'IL', 'Israel'), +('66.151.238.136', '66.152.63.255', 1117253256, 1117274111, 'US', 'United States'), +('66.152.64.0', '66.152.95.255', 1117274112, 1117282303, 'CA', 'Canada'), +('66.152.96.0', '66.152.163.159', 1117282304, 1117299615, 'US', 'United States'), +('66.152.163.160', '66.152.163.167', 1117299616, 1117299623, 'GB', 'United Kingdom'), +('66.152.163.168', '66.152.177.63', 1117299624, 1117303103, 'US', 'United States'), +('66.152.177.64', '66.152.177.127', 1117303104, 1117303167, 'CA', 'Canada'), +('66.152.177.128', '66.152.187.71', 1117303168, 1117305671, 'US', 'United States'), +('66.152.187.72', '66.152.187.79', 1117305672, 1117305679, 'GB', 'United Kingdom'), +('66.152.187.80', '66.154.80.63', 1117305680, 1117409343, 'US', 'United States'), +('66.154.80.64', '66.154.80.71', 1117409344, 1117409351, 'GB', 'United Kingdom'), +('66.154.80.72', '66.154.81.247', 1117409352, 1117409783, 'US', 'United States'), +('66.154.81.248', '66.154.81.255', 1117409784, 1117409791, 'GB', 'United Kingdom'), +('66.154.82.0', '66.154.86.255', 1117409792, 1117411071, 'US', 'United States'), +('66.154.87.0', '66.154.87.15', 1117411072, 1117411087, 'PL', 'Poland'), +('66.154.87.16', '66.154.93.255', 1117411088, 1117412863, 'US', 'United States'), +('66.154.94.0', '66.154.94.127', 1117412864, 1117412991, 'CA', 'Canada'), +('66.154.94.128', '66.154.95.255', 1117412992, 1117413375, 'US', 'United States'), +('66.154.96.0', '66.154.96.255', 1117413376, 1117413631, 'CA', 'Canada'), +('66.154.97.0', '66.154.103.255', 1117413632, 1117415423, 'US', 'United States'), +('66.154.104.0', '66.154.106.255', 1117415424, 1117416191, 'AN', 'Netherlands Antilles'), +('66.154.107.0', '66.154.107.255', 1117416192, 1117416447, 'CA', 'Canada'), +('66.154.108.0', '66.154.108.255', 1117416448, 1117416703, 'US', 'United States'), +('66.154.109.0', '66.154.110.255', 1117416704, 1117417215, 'CA', 'Canada'), +('66.154.111.0', '66.154.111.7', 1117417216, 1117417223, 'US', 'United States'), +('66.154.111.8', '66.154.111.15', 1117417224, 1117417231, 'CA', 'Canada'), +('66.154.111.16', '66.154.111.23', 1117417232, 1117417239, 'US', 'United States'), +('66.154.111.24', '66.154.111.31', 1117417240, 1117417247, 'CA', 'Canada'), +('66.154.111.32', '66.154.111.47', 1117417248, 1117417263, 'US', 'United States'), +('66.154.111.48', '66.154.111.63', 1117417264, 1117417279, 'CA', 'Canada'), +('66.154.111.64', '66.154.111.127', 1117417280, 1117417343, 'US', 'United States'), +('66.154.111.128', '66.154.117.255', 1117417344, 1117419007, 'CA', 'Canada'), +('66.154.118.0', '66.154.119.255', 1117419008, 1117419519, 'US', 'United States'), +('66.154.120.0', '66.154.121.255', 1117419520, 1117420031, 'CA', 'Canada'), +('66.154.122.0', '66.154.122.255', 1117420032, 1117420287, 'US', 'United States'), +('66.154.123.0', '66.154.125.255', 1117420288, 1117421055, 'CA', 'Canada'), +('66.154.126.0', '66.154.126.255', 1117421056, 1117421311, 'US', 'United States'), +('66.154.127.0', '66.154.127.255', 1117421312, 1117421567, 'CA', 'Canada'), +('66.154.128.0', '66.158.127.255', 1117421568, 1117683711, 'US', 'United States'), +('66.158.128.0', '66.158.159.255', 1117683712, 1117691903, 'CA', 'Canada'), +('66.158.160.0', '66.159.31.255', 1117691904, 1117724671, 'US', 'United States'), +('66.159.32.0', '66.159.47.255', 1117724672, 1117728767, 'CA', 'Canada'), +('66.159.48.0', '66.159.111.255', 1117728768, 1117745151, 'US', 'United States'), +('66.159.112.0', '66.159.127.255', 1117745152, 1117749247, 'CA', 'Canada'), +('66.159.128.0', '66.160.56.223', 1117749248, 1117796575, 'US', 'United States'), +('66.160.56.224', '66.160.56.239', 1117796576, 1117796591, 'CA', 'Canada'), +('66.160.56.240', '66.160.129.255', 1117796592, 1117815295, 'US', 'United States'), +('66.160.130.0', '66.160.130.255', 1117815296, 1117815551, 'CN', 'China'), +('66.160.131.0', '66.160.140.63', 1117815552, 1117817919, 'US', 'United States'), +('66.160.140.64', '66.160.140.127', 1117817920, 1117817983, 'CA', 'Canada'), +('66.160.140.128', '66.160.142.127', 1117817984, 1117818495, 'US', 'United States'), +('66.160.142.128', '66.160.142.255', 1117818496, 1117818623, 'IT', 'Italy'), +('66.160.143.0', '66.160.144.95', 1117818624, 1117818975, 'US', 'United States'), +('66.160.144.96', '66.160.144.111', 1117818976, 1117818991, 'HK', 'Hong Kong'), +('66.160.144.112', '66.160.144.127', 1117818992, 1117819007, 'US', 'United States'), +('66.160.144.128', '66.160.144.255', 1117819008, 1117819135, 'JP', 'Japan'), +('66.160.145.0', '66.160.146.239', 1117819136, 1117819631, 'US', 'United States'), +('66.160.146.240', '66.160.146.255', 1117819632, 1117819647, 'AE', 'United Arab Emirates'), +('66.160.147.0', '66.160.160.255', 1117819648, 1117823231, 'US', 'United States'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('66.160.161.0', '66.160.161.255', 1117823232, 1117823487, 'CA', 'Canada'), +('66.160.162.0', '66.160.162.255', 1117823488, 1117823743, 'CN', 'China'), +('66.160.163.0', '66.160.163.255', 1117823744, 1117823999, 'US', 'United States'), +('66.160.164.0', '66.160.165.255', 1117824000, 1117824511, 'GR', 'Greece'), +('66.160.166.0', '66.160.184.255', 1117824512, 1117829375, 'US', 'United States'), +('66.160.185.0', '66.160.185.255', 1117829376, 1117829631, 'GR', 'Greece'), +('66.160.186.0', '66.160.192.191', 1117829632, 1117831359, 'US', 'United States'), +('66.160.192.192', '66.160.192.255', 1117831360, 1117831423, 'A2', 'Satellite Provider'), +('66.160.193.0', '66.160.195.255', 1117831424, 1117832191, 'US', 'United States'), +('66.160.196.0', '66.160.196.255', 1117832192, 1117832447, 'IT', 'Italy'), +('66.160.197.0', '66.162.255.255', 1117832448, 1117978623, 'US', 'United States'), +('66.163.0.0', '66.163.3.111', 1117978624, 1117979503, 'CA', 'Canada'), +('66.163.3.112', '66.163.3.127', 1117979504, 1117979519, 'US', 'United States'), +('66.163.3.128', '66.163.15.175', 1117979520, 1117982639, 'CA', 'Canada'), +('66.163.15.176', '66.163.15.191', 1117982640, 1117982655, 'US', 'United States'), +('66.163.15.192', '66.163.17.47', 1117982656, 1117983023, 'CA', 'Canada'), +('66.163.17.48', '66.163.17.63', 1117983024, 1117983039, 'US', 'United States'), +('66.163.17.64', '66.163.17.239', 1117983040, 1117983215, 'CA', 'Canada'), +('66.163.17.240', '66.163.17.247', 1117983216, 1117983223, 'US', 'United States'), +('66.163.17.248', '66.163.21.191', 1117983224, 1117984191, 'CA', 'Canada'), +('66.163.21.192', '66.163.21.199', 1117984192, 1117984199, 'US', 'United States'), +('66.163.21.200', '66.163.25.31', 1117984200, 1117985055, 'CA', 'Canada'), +('66.163.25.32', '66.163.25.55', 1117985056, 1117985079, 'US', 'United States'), +('66.163.25.56', '66.163.26.143', 1117985080, 1117985423, 'CA', 'Canada'), +('66.163.26.144', '66.163.26.167', 1117985424, 1117985447, 'US', 'United States'), +('66.163.26.168', '66.163.26.183', 1117985448, 1117985463, 'CA', 'Canada'), +('66.163.26.184', '66.163.26.191', 1117985464, 1117985471, 'US', 'United States'), +('66.163.26.192', '66.163.27.71', 1117985472, 1117985607, 'CA', 'Canada'), +('66.163.27.72', '66.163.27.127', 1117985608, 1117985663, 'US', 'United States'), +('66.163.27.128', '66.163.27.135', 1117985664, 1117985671, 'CA', 'Canada'), +('66.163.27.136', '66.163.27.143', 1117985672, 1117985679, 'US', 'United States'), +('66.163.27.144', '66.163.27.159', 1117985680, 1117985695, 'CA', 'Canada'), +('66.163.27.160', '66.163.27.175', 1117985696, 1117985711, 'US', 'United States'), +('66.163.27.176', '66.163.27.183', 1117985712, 1117985719, 'CA', 'Canada'), +('66.163.27.184', '66.163.27.207', 1117985720, 1117985743, 'US', 'United States'), +('66.163.27.208', '66.163.27.231', 1117985744, 1117985767, 'CA', 'Canada'), +('66.163.27.232', '66.163.27.247', 1117985768, 1117985783, 'US', 'United States'), +('66.163.27.248', '66.163.31.15', 1117985784, 1117986575, 'CA', 'Canada'), +('66.163.31.16', '66.163.31.127', 1117986576, 1117986687, 'US', 'United States'), +('66.163.31.128', '66.163.31.255', 1117986688, 1117986815, 'CA', 'Canada'), +('66.163.32.0', '66.163.63.255', 1117986816, 1117995007, 'US', 'United States'), +('66.163.64.0', '66.163.79.255', 1117995008, 1117999103, 'CA', 'Canada'), +('66.163.80.0', '66.163.111.255', 1117999104, 1118007295, 'US', 'United States'), +('66.163.128.0', '66.163.191.255', 1118011392, 1118027775, 'US', 'United States'), +('66.163.192.0', '66.163.207.255', 1118027776, 1118031871, 'CA', 'Canada'), +('66.163.208.0', '66.165.63.255', 1118031872, 1118126079, 'US', 'United States'), +('66.165.64.0', '66.165.65.255', 1118126080, 1118126591, 'CA', 'Canada'), +('66.165.66.0', '66.165.66.255', 1118126592, 1118126847, 'US', 'United States'), +('66.165.67.0', '66.165.68.127', 1118126848, 1118127231, 'CA', 'Canada'), +('66.165.68.128', '66.165.68.255', 1118127232, 1118127359, 'US', 'United States'), +('66.165.69.0', '66.165.69.255', 1118127360, 1118127615, 'CA', 'Canada'), +('66.165.70.0', '66.165.72.255', 1118127616, 1118128383, 'US', 'United States'), +('66.165.73.0', '66.165.73.255', 1118128384, 1118128639, 'CA', 'Canada'), +('66.165.74.0', '66.165.75.255', 1118128640, 1118129151, 'US', 'United States'), +('66.165.76.0', '66.165.77.255', 1118129152, 1118129663, 'CA', 'Canada'), +('66.165.78.0', '66.165.78.31', 1118129664, 1118129695, 'BR', 'Brazil'), +('66.165.78.32', '66.165.78.159', 1118129696, 1118129823, 'US', 'United States'), +('66.165.78.160', '66.165.78.191', 1118129824, 1118129855, 'AU', 'Australia'), +('66.165.78.192', '66.165.78.223', 1118129856, 1118129887, 'US', 'United States'), +('66.165.78.224', '66.165.78.255', 1118129888, 1118129919, 'CA', 'Canada'), +('66.165.79.0', '66.165.80.255', 1118129920, 1118130431, 'US', 'United States'), +('66.165.81.0', '66.165.84.255', 1118130432, 1118131455, 'CA', 'Canada'), +('66.165.85.0', '66.165.85.127', 1118131456, 1118131583, 'US', 'United States'), +('66.165.85.128', '66.165.85.255', 1118131584, 1118131711, 'IN', 'India'), +('66.165.86.0', '66.165.88.255', 1118131712, 1118132479, 'CA', 'Canada'), +('66.165.89.0', '66.165.90.255', 1118132480, 1118132991, 'US', 'United States'), +('66.165.91.0', '66.165.92.127', 1118132992, 1118133375, 'CA', 'Canada'), +('66.165.92.128', '66.165.92.255', 1118133376, 1118133503, 'US', 'United States'), +('66.165.93.0', '66.165.93.127', 1118133504, 1118133631, 'CA', 'Canada'), +('66.165.93.128', '66.165.93.255', 1118133632, 1118133759, 'US', 'United States'), +('66.165.94.0', '66.165.94.127', 1118133760, 1118133887, 'CA', 'Canada'), +('66.165.94.128', '66.165.97.255', 1118133888, 1118134783, 'US', 'United States'), +('66.165.98.0', '66.165.98.95', 1118134784, 1118134879, 'CA', 'Canada'), +('66.165.98.96', '66.165.98.127', 1118134880, 1118134911, 'US', 'United States'), +('66.165.98.128', '66.165.98.191', 1118134912, 1118134975, 'CA', 'Canada'), +('66.165.98.192', '66.165.101.95', 1118134976, 1118135647, 'US', 'United States'), +('66.165.101.96', '66.165.101.111', 1118135648, 1118135663, 'CA', 'Canada'), +('66.165.101.112', '66.165.101.239', 1118135664, 1118135791, 'US', 'United States'), +('66.165.101.240', '66.165.101.255', 1118135792, 1118135807, 'ID', 'Indonesia'), +('66.165.102.0', '66.165.102.255', 1118135808, 1118136063, 'US', 'United States'), +('66.165.103.0', '66.165.103.127', 1118136064, 1118136191, 'CA', 'Canada'), +('66.165.103.128', '66.165.105.255', 1118136192, 1118136831, 'US', 'United States'), +('66.165.106.0', '66.165.106.31', 1118136832, 1118136863, 'IN', 'India'), +('66.165.106.32', '66.165.106.63', 1118136864, 1118136895, 'BE', 'Belgium'), +('66.165.106.64', '66.165.106.95', 1118136896, 1118136927, 'US', 'United States'), +('66.165.106.96', '66.165.106.127', 1118136928, 1118136959, 'CA', 'Canada'), +('66.165.106.128', '66.165.107.31', 1118136960, 1118137119, 'US', 'United States'), +('66.165.107.32', '66.165.107.63', 1118137120, 1118137151, 'IL', 'Israel'), +('66.165.107.64', '66.165.107.127', 1118137152, 1118137215, 'US', 'United States'), +('66.165.107.128', '66.165.107.159', 1118137216, 1118137247, 'GB', 'United Kingdom'), +('66.165.107.160', '66.165.107.191', 1118137248, 1118137279, 'US', 'United States'), +('66.165.107.192', '66.165.107.223', 1118137280, 1118137311, 'FR', 'France'), +('66.165.107.224', '66.165.112.191', 1118137312, 1118138559, 'US', 'United States'), +('66.165.112.192', '66.165.112.223', 1118138560, 1118138591, 'AU', 'Australia'), +('66.165.112.224', '66.165.117.255', 1118138592, 1118139903, 'US', 'United States'), +('66.165.118.0', '66.165.119.255', 1118139904, 1118140415, 'CA', 'Canada'), +('66.165.120.0', '66.165.121.63', 1118140416, 1118140735, 'US', 'United States'), +('66.165.121.64', '66.165.121.95', 1118140736, 1118140767, 'AU', 'Australia'), +('66.165.121.96', '66.165.122.255', 1118140768, 1118141183, 'US', 'United States'), +('66.165.123.0', '66.165.123.255', 1118141184, 1118141439, 'CA', 'Canada'), +('66.165.124.0', '66.165.124.255', 1118141440, 1118141695, 'US', 'United States'), +('66.165.125.0', '66.165.125.255', 1118141696, 1118141951, 'CA', 'Canada'), +('66.165.126.0', '66.165.162.255', 1118141952, 1118151423, 'US', 'United States'), +('66.165.163.0', '66.165.163.7', 1118151424, 1118151431, 'ES', 'Spain'), +('66.165.163.8', '66.165.163.207', 1118151432, 1118151631, 'US', 'United States'), +('66.165.163.208', '66.165.163.223', 1118151632, 1118151647, 'MX', 'Mexico'), +('66.165.163.224', '66.165.164.127', 1118151648, 1118151807, 'US', 'United States'), +('66.165.164.128', '66.165.164.143', 1118151808, 1118151823, 'JM', 'Jamaica'), +('66.165.164.144', '66.165.166.63', 1118151824, 1118152255, 'US', 'United States'), +('66.165.166.64', '66.165.166.79', 1118152256, 1118152271, 'PR', 'Puerto Rico'), +('66.165.166.80', '66.165.166.95', 1118152272, 1118152287, 'US', 'United States'), +('66.165.166.96', '66.165.166.111', 1118152288, 1118152303, 'BR', 'Brazil'), +('66.165.166.112', '66.165.166.223', 1118152304, 1118152415, 'US', 'United States'), +('66.165.166.224', '66.165.166.239', 1118152416, 1118152431, 'PR', 'Puerto Rico'), +('66.165.166.240', '66.165.168.175', 1118152432, 1118152879, 'US', 'United States'), +('66.165.168.176', '66.165.168.191', 1118152880, 1118152895, 'DO', 'Dominican Republic'), +('66.165.168.192', '66.165.169.111', 1118152896, 1118153071, 'US', 'United States'), +('66.165.169.112', '66.165.169.127', 1118153072, 1118153087, 'UY', 'Uruguay'), +('66.165.169.128', '66.165.169.191', 1118153088, 1118153151, 'US', 'United States'), +('66.165.169.192', '66.165.169.207', 1118153152, 1118153167, 'AR', 'Argentina'), +('66.165.169.208', '66.165.170.207', 1118153168, 1118153423, 'US', 'United States'), +('66.165.170.208', '66.165.170.223', 1118153424, 1118153439, 'BR', 'Brazil'), +('66.165.170.224', '66.165.171.79', 1118153440, 1118153551, 'US', 'United States'), +('66.165.171.80', '66.165.171.95', 1118153552, 1118153567, 'DE', 'Germany'), +('66.165.171.96', '66.165.171.207', 1118153568, 1118153679, 'US', 'United States'), +('66.165.171.208', '66.165.171.223', 1118153680, 1118153695, 'VE', 'Venezuela'), +('66.165.171.224', '66.165.172.127', 1118153696, 1118153855, 'US', 'United States'), +('66.165.172.128', '66.165.172.191', 1118153856, 1118153919, 'GB', 'United Kingdom'), +('66.165.172.192', '66.165.172.207', 1118153920, 1118153935, 'US', 'United States'), +('66.165.172.208', '66.165.172.223', 1118153936, 1118153951, 'TT', 'Trinidad and Tobago'), +('66.165.172.224', '66.165.173.79', 1118153952, 1118154063, 'US', 'United States'), +('66.165.173.80', '66.165.173.95', 1118154064, 1118154079, 'MX', 'Mexico'), +('66.165.173.96', '66.165.173.223', 1118154080, 1118154207, 'US', 'United States'), +('66.165.173.224', '66.165.173.239', 1118154208, 1118154223, 'CL', 'Chile'), +('66.165.173.240', '66.165.175.47', 1118154224, 1118154543, 'US', 'United States'), +('66.165.175.48', '66.165.175.63', 1118154544, 1118154559, 'BB', 'Barbados'), +('66.165.175.64', '66.165.177.95', 1118154560, 1118155103, 'US', 'United States'), +('66.165.177.96', '66.165.177.111', 1118155104, 1118155119, 'NL', 'Netherlands'), +('66.165.177.112', '66.165.177.175', 1118155120, 1118155183, 'US', 'United States'), +('66.165.177.176', '66.165.177.191', 1118155184, 1118155199, 'CA', 'Canada'), +('66.165.177.192', '66.165.177.207', 1118155200, 1118155215, 'JM', 'Jamaica'), +('66.165.177.208', '66.165.177.223', 1118155216, 1118155231, 'PA', 'Panama'), +('66.165.177.224', '66.165.181.143', 1118155232, 1118156175, 'US', 'United States'), +('66.165.181.144', '66.165.181.159', 1118156176, 1118156191, 'GY', 'Guyana'), +('66.165.181.160', '66.165.182.111', 1118156192, 1118156399, 'US', 'United States'), +('66.165.182.112', '66.165.182.127', 1118156400, 1118156415, 'VE', 'Venezuela'), +('66.165.182.128', '66.165.183.63', 1118156416, 1118156607, 'US', 'United States'), +('66.165.183.64', '66.165.183.79', 1118156608, 1118156623, 'ES', 'Spain'), +('66.165.183.80', '66.165.183.159', 1118156624, 1118156703, 'US', 'United States'), +('66.165.183.160', '66.165.183.191', 1118156704, 1118156735, 'BS', 'Bahamas'), +('66.165.183.192', '66.165.187.127', 1118156736, 1118157695, 'US', 'United States'), +('66.165.187.128', '66.165.187.143', 1118157696, 1118157711, 'NL', 'Netherlands'), +('66.165.187.144', '66.165.187.191', 1118157712, 1118157759, 'US', 'United States'), +('66.165.187.192', '66.165.187.207', 1118157760, 1118157775, 'GY', 'Guyana'), +('66.165.187.208', '66.165.189.79', 1118157776, 1118158159, 'US', 'United States'), +('66.165.189.80', '66.165.189.95', 1118158160, 1118158175, 'ES', 'Spain'), +('66.165.189.96', '66.165.191.255', 1118158176, 1118158847, 'US', 'United States'), +('66.165.192.0', '66.165.223.255', 1118158848, 1118167039, 'CA', 'Canada'), +('66.165.224.0', '66.170.143.255', 1118167040, 1118474239, 'US', 'United States'), +('66.170.144.0', '66.170.145.95', 1118474240, 1118474591, 'CA', 'Canada'), +('66.170.145.96', '66.170.145.103', 1118474592, 1118474599, 'US', 'United States'), +('66.170.145.104', '66.170.145.111', 1118474600, 1118474607, 'CA', 'Canada'), +('66.170.145.112', '66.170.145.119', 1118474608, 1118474615, 'US', 'United States'), +('66.170.145.120', '66.170.146.111', 1118474616, 1118474863, 'CA', 'Canada'), +('66.170.146.112', '66.170.146.119', 1118474864, 1118474871, 'US', 'United States'), +('66.170.146.120', '66.170.146.127', 1118474872, 1118474879, 'CA', 'Canada'), +('66.170.146.128', '66.170.146.159', 1118474880, 1118474911, 'US', 'United States'), +('66.170.146.160', '66.170.147.79', 1118474912, 1118475087, 'CA', 'Canada'), +('66.170.147.80', '66.170.147.87', 1118475088, 1118475095, 'US', 'United States'), +('66.170.147.88', '66.170.147.207', 1118475096, 1118475215, 'CA', 'Canada'), +('66.170.147.208', '66.170.147.215', 1118475216, 1118475223, 'US', 'United States'), +('66.170.147.216', '66.170.147.223', 1118475224, 1118475231, 'CA', 'Canada'), +('66.170.147.224', '66.170.147.239', 1118475232, 1118475247, 'US', 'United States'), +('66.170.147.240', '66.170.153.207', 1118475248, 1118476751, 'CA', 'Canada'), +('66.170.153.208', '66.170.153.215', 1118476752, 1118476759, 'US', 'United States'), +('66.170.153.216', '66.170.154.87', 1118476760, 1118476887, 'CA', 'Canada'), +('66.170.154.88', '66.170.154.95', 1118476888, 1118476895, 'US', 'United States'), +('66.170.154.96', '66.170.156.223', 1118476896, 1118477535, 'CA', 'Canada'), +('66.170.156.224', '66.170.156.231', 1118477536, 1118477543, 'US', 'United States'), +('66.170.156.232', '66.170.159.255', 1118477544, 1118478335, 'CA', 'Canada'), +('66.170.160.0', '66.175.96.127', 1118478336, 1118789759, 'US', 'United States'), +('66.175.96.128', '66.175.96.159', 1118789760, 1118789791, 'JM', 'Jamaica'), +('66.175.96.160', '66.175.107.255', 1118789792, 1118792703, 'US', 'United States'), +('66.175.108.0', '66.175.111.255', 1118792704, 1118793727, 'JM', 'Jamaica'), +('66.175.112.0', '66.175.112.207', 1118793728, 1118793935, 'US', 'United States'), +('66.175.112.208', '66.175.112.223', 1118793936, 1118793951, 'ES', 'Spain'), +('66.175.112.224', '66.175.114.47', 1118793952, 1118794287, 'US', 'United States'), +('66.175.114.48', '66.175.114.63', 1118794288, 1118794303, 'BR', 'Brazil'), +('66.175.114.64', '66.175.116.47', 1118794304, 1118794799, 'US', 'United States'), +('66.175.116.48', '66.175.116.63', 1118794800, 1118794815, 'PR', 'Puerto Rico'), +('66.175.116.64', '66.175.116.207', 1118794816, 1118794959, 'US', 'United States'), +('66.175.116.208', '66.175.116.223', 1118794960, 1118794975, 'JM', 'Jamaica'), +('66.175.116.224', '66.175.120.119', 1118794976, 1118795895, 'US', 'United States'), +('66.175.120.120', '66.175.120.127', 1118795896, 1118795903, 'GB', 'United Kingdom'), +('66.175.120.128', '66.175.122.255', 1118795904, 1118796543, 'US', 'United States'), +('66.175.123.0', '66.175.123.255', 1118796544, 1118796799, 'GB', 'United Kingdom'), +('66.175.124.0', '66.177.255.255', 1118796800, 1118961663, 'US', 'United States'), +('66.178.0.0', '66.178.4.143', 1118961664, 1118962831, 'A2', 'Satellite Provider'), +('66.178.4.144', '66.178.4.151', 1118962832, 1118962839, 'SA', 'Saudi Arabia'), +('66.178.4.152', '66.178.4.159', 1118962840, 1118962847, 'NG', 'Nigeria'), +('66.178.4.160', '66.178.4.255', 1118962848, 1118962943, 'A2', 'Satellite Provider'), +('66.178.5.0', '66.178.5.255', 1118962944, 1118963199, 'TR', 'Turkey'), +('66.178.6.0', '66.178.6.255', 1118963200, 1118963455, 'A2', 'Satellite Provider'), +('66.178.7.0', '66.178.7.7', 1118963456, 1118963463, 'TZ', 'Tanzania, United Republic of'), +('66.178.7.8', '66.178.7.15', 1118963464, 1118963471, 'A2', 'Satellite Provider'), +('66.178.7.16', '66.178.7.23', 1118963472, 1118963479, 'NG', 'Nigeria'), +('66.178.7.24', '66.178.7.31', 1118963480, 1118963487, 'GB', 'United Kingdom'), +('66.178.7.32', '66.178.7.39', 1118963488, 1118963495, 'AO', 'Angola'), +('66.178.7.40', '66.178.7.127', 1118963496, 1118963583, 'A2', 'Satellite Provider'), +('66.178.7.128', '66.178.7.191', 1118963584, 1118963647, 'KE', 'Kenya'), +('66.178.7.192', '66.178.8.255', 1118963648, 1118963967, 'A2', 'Satellite Provider'), +('66.178.9.0', '66.178.9.23', 1118963968, 1118963991, 'LB', 'Lebanon'), +('66.178.9.24', '66.178.12.127', 1118963992, 1118964863, 'A2', 'Satellite Provider'), +('66.178.12.128', '66.178.12.143', 1118964864, 1118964879, 'LB', 'Lebanon'), +('66.178.12.144', '66.178.12.255', 1118964880, 1118964991, 'A2', 'Satellite Provider'), +('66.178.13.0', '66.178.14.255', 1118964992, 1118965503, 'LC', 'Saint Lucia'), +('66.178.15.0', '66.178.16.79', 1118965504, 1118965839, 'A2', 'Satellite Provider'), +('66.178.16.80', '66.178.16.87', 1118965840, 1118965847, 'EC', 'Ecuador'), +('66.178.16.88', '66.178.16.151', 1118965848, 1118965911, 'A2', 'Satellite Provider'), +('66.178.16.152', '66.178.16.159', 1118965912, 1118965919, 'MA', 'Morocco'), +('66.178.16.160', '66.178.16.231', 1118965920, 1118965991, 'A2', 'Satellite Provider'), +('66.178.16.232', '66.178.16.247', 1118965992, 1118966007, 'NG', 'Nigeria'), +('66.178.16.248', '66.178.17.7', 1118966008, 1118966023, 'A2', 'Satellite Provider'), +('66.178.17.8', '66.178.17.15', 1118966024, 1118966031, 'US', 'United States'), +('66.178.17.16', '66.178.17.23', 1118966032, 1118966039, 'A2', 'Satellite Provider'), +('66.178.17.24', '66.178.17.47', 1118966040, 1118966063, 'EC', 'Ecuador'), +('66.178.17.48', '66.178.17.55', 1118966064, 1118966071, 'A2', 'Satellite Provider'), +('66.178.17.56', '66.178.17.63', 1118966072, 1118966079, 'PY', 'Paraguay'), +('66.178.17.64', '66.178.17.71', 1118966080, 1118966087, 'NG', 'Nigeria'), +('66.178.17.72', '66.178.17.95', 1118966088, 1118966111, 'A2', 'Satellite Provider'), +('66.178.17.96', '66.178.17.103', 1118966112, 1118966119, 'SV', 'El Salvador'), +('66.178.17.104', '66.178.17.127', 1118966120, 1118966143, 'VE', 'Venezuela'), +('66.178.17.128', '66.178.17.135', 1118966144, 1118966151, 'BB', 'Barbados'), +('66.178.17.136', '66.178.17.175', 1118966152, 1118966191, 'A2', 'Satellite Provider'), +('66.178.17.176', '66.178.17.191', 1118966192, 1118966207, 'NI', 'Nicaragua'), +('66.178.17.192', '66.178.17.199', 1118966208, 1118966215, 'A2', 'Satellite Provider'), +('66.178.17.200', '66.178.17.207', 1118966216, 1118966223, 'EC', 'Ecuador'), +('66.178.17.208', '66.178.17.255', 1118966224, 1118966271, 'A2', 'Satellite Provider'), +('66.178.18.0', '66.178.18.79', 1118966272, 1118966351, 'SV', 'El Salvador'), +('66.178.18.80', '66.178.18.95', 1118966352, 1118966367, 'A2', 'Satellite Provider'), +('66.178.18.96', '66.178.18.127', 1118966368, 1118966399, 'SV', 'El Salvador'), +('66.178.18.128', '66.178.18.135', 1118966400, 1118966407, 'A2', 'Satellite Provider'), +('66.178.18.136', '66.178.18.143', 1118966408, 1118966415, 'SV', 'El Salvador'), +('66.178.18.144', '66.178.18.151', 1118966416, 1118966423, 'NI', 'Nicaragua'), +('66.178.18.152', '66.178.18.183', 1118966424, 1118966455, 'A2', 'Satellite Provider'), +('66.178.18.184', '66.178.18.191', 1118966456, 1118966463, 'NI', 'Nicaragua'), +('66.178.18.192', '66.178.18.215', 1118966464, 1118966487, 'A2', 'Satellite Provider'), +('66.178.18.216', '66.178.18.223', 1118966488, 1118966495, 'NI', 'Nicaragua'), +('66.178.18.224', '66.178.18.231', 1118966496, 1118966503, 'A2', 'Satellite Provider'), +('66.178.18.232', '66.178.18.239', 1118966504, 1118966511, 'NI', 'Nicaragua'), +('66.178.18.240', '66.178.18.247', 1118966512, 1118966519, 'A2', 'Satellite Provider'), +('66.178.18.248', '66.178.18.255', 1118966520, 1118966527, 'NI', 'Nicaragua'), +('66.178.19.0', '66.178.19.127', 1118966528, 1118966655, 'US', 'United States'), +('66.178.19.128', '66.178.19.159', 1118966656, 1118966687, 'SV', 'El Salvador'), +('66.178.19.160', '66.178.19.167', 1118966688, 1118966695, 'NI', 'Nicaragua'), +('66.178.19.168', '66.178.19.175', 1118966696, 1118966703, 'A2', 'Satellite Provider'), +('66.178.19.176', '66.178.19.183', 1118966704, 1118966711, 'NI', 'Nicaragua'), +('66.178.19.184', '66.178.19.191', 1118966712, 1118966719, 'A2', 'Satellite Provider'), +('66.178.19.192', '66.178.19.255', 1118966720, 1118966783, 'EC', 'Ecuador'), +('66.178.20.0', '66.178.20.7', 1118966784, 1118966791, 'LB', 'Lebanon'), +('66.178.20.8', '66.178.20.23', 1118966792, 1118966807, 'A2', 'Satellite Provider'), +('66.178.20.24', '66.178.20.31', 1118966808, 1118966815, 'LB', 'Lebanon'), +('66.178.20.32', '66.178.20.63', 1118966816, 1118966847, 'A2', 'Satellite Provider'), +('66.178.20.64', '66.178.20.127', 1118966848, 1118966911, 'PY', 'Paraguay'), +('66.178.20.128', '66.178.20.175', 1118966912, 1118966959, 'A2', 'Satellite Provider'), +('66.178.20.176', '66.178.20.191', 1118966960, 1118966975, 'SA', 'Saudi Arabia'), +('66.178.20.192', '66.178.20.207', 1118966976, 1118966991, 'A2', 'Satellite Provider'), +('66.178.20.208', '66.178.20.215', 1118966992, 1118966999, 'SA', 'Saudi Arabia'), +('66.178.20.216', '66.178.20.231', 1118967000, 1118967015, 'LB', 'Lebanon'), +('66.178.20.232', '66.178.20.255', 1118967016, 1118967039, 'A2', 'Satellite Provider'), +('66.178.21.0', '66.178.21.7', 1118967040, 1118967047, 'LB', 'Lebanon'), +('66.178.21.8', '66.178.21.23', 1118967048, 1118967063, 'A2', 'Satellite Provider'), +('66.178.21.24', '66.178.21.95', 1118967064, 1118967135, 'SA', 'Saudi Arabia'), +('66.178.21.96', '66.178.21.127', 1118967136, 1118967167, 'LB', 'Lebanon'), +('66.178.21.128', '66.178.21.159', 1118967168, 1118967199, 'SA', 'Saudi Arabia'), +('66.178.21.160', '66.178.21.167', 1118967200, 1118967207, 'A2', 'Satellite Provider'), +('66.178.21.168', '66.178.21.207', 1118967208, 1118967247, 'LB', 'Lebanon'), +('66.178.21.208', '66.178.21.215', 1118967248, 1118967255, 'A2', 'Satellite Provider'), +('66.178.21.216', '66.178.21.231', 1118967256, 1118967271, 'LB', 'Lebanon'), +('66.178.21.232', '66.178.21.239', 1118967272, 1118967279, 'A2', 'Satellite Provider'), +('66.178.21.240', '66.178.21.247', 1118967280, 1118967287, 'LB', 'Lebanon'), +('66.178.21.248', '66.178.21.255', 1118967288, 1118967295, 'A2', 'Satellite Provider'), +('66.178.22.0', '66.178.22.31', 1118967296, 1118967327, 'LB', 'Lebanon'), +('66.178.22.32', '66.178.22.39', 1118967328, 1118967335, 'A2', 'Satellite Provider'), +('66.178.22.40', '66.178.22.47', 1118967336, 1118967343, 'LB', 'Lebanon'), +('66.178.22.48', '66.178.22.63', 1118967344, 1118967359, 'A2', 'Satellite Provider'), +('66.178.22.64', '66.178.22.71', 1118967360, 1118967367, 'LB', 'Lebanon'), +('66.178.22.72', '66.178.22.79', 1118967368, 1118967375, 'SA', 'Saudi Arabia'), +('66.178.22.80', '66.178.22.87', 1118967376, 1118967383, 'LB', 'Lebanon'), +('66.178.22.88', '66.178.22.95', 1118967384, 1118967391, 'A2', 'Satellite Provider'), +('66.178.22.96', '66.178.22.103', 1118967392, 1118967399, 'MA', 'Morocco'), +('66.178.22.104', '66.178.22.127', 1118967400, 1118967423, 'LB', 'Lebanon'), +('66.178.22.128', '66.178.22.191', 1118967424, 1118967487, 'A2', 'Satellite Provider'), +('66.178.22.192', '66.178.22.223', 1118967488, 1118967519, 'SA', 'Saudi Arabia'), +('66.178.22.224', '66.178.22.239', 1118967520, 1118967535, 'A2', 'Satellite Provider'), +('66.178.22.240', '66.178.22.247', 1118967536, 1118967543, 'LB', 'Lebanon'), +('66.178.22.248', '66.178.22.255', 1118967544, 1118967551, 'SA', 'Saudi Arabia'), +('66.178.23.0', '66.178.23.15', 1118967552, 1118967567, 'LB', 'Lebanon'), +('66.178.23.16', '66.178.23.31', 1118967568, 1118967583, 'A2', 'Satellite Provider'), +('66.178.23.32', '66.178.23.63', 1118967584, 1118967615, 'SA', 'Saudi Arabia'), +('66.178.23.64', '66.178.23.79', 1118967616, 1118967631, 'A2', 'Satellite Provider'), +('66.178.23.80', '66.178.23.95', 1118967632, 1118967647, 'SA', 'Saudi Arabia'), +('66.178.23.96', '66.178.23.111', 1118967648, 1118967663, 'LB', 'Lebanon'), +('66.178.23.112', '66.178.23.127', 1118967664, 1118967679, 'SA', 'Saudi Arabia'), +('66.178.23.128', '66.178.23.191', 1118967680, 1118967743, 'LB', 'Lebanon'), +('66.178.23.192', '66.178.23.223', 1118967744, 1118967775, 'SA', 'Saudi Arabia'), +('66.178.23.224', '66.178.24.31', 1118967776, 1118967839, 'A2', 'Satellite Provider'), +('66.178.24.32', '66.178.24.39', 1118967840, 1118967847, 'LB', 'Lebanon'), +('66.178.24.40', '66.178.24.95', 1118967848, 1118967903, 'A2', 'Satellite Provider'), +('66.178.24.96', '66.178.24.207', 1118967904, 1118968015, 'SA', 'Saudi Arabia'), +('66.178.24.208', '66.178.24.231', 1118968016, 1118968039, 'A2', 'Satellite Provider'), +('66.178.24.232', '66.178.24.239', 1118968040, 1118968047, 'LB', 'Lebanon'), +('66.178.24.240', '66.178.24.247', 1118968048, 1118968055, 'A2', 'Satellite Provider'), +('66.178.24.248', '66.178.25.31', 1118968056, 1118968095, 'SA', 'Saudi Arabia'), +('66.178.25.32', '66.178.25.47', 1118968096, 1118968111, 'A2', 'Satellite Provider'), +('66.178.25.48', '66.178.25.63', 1118968112, 1118968127, 'LB', 'Lebanon'), +('66.178.25.64', '66.178.25.95', 1118968128, 1118968159, 'A2', 'Satellite Provider'), +('66.178.25.96', '66.178.25.111', 1118968160, 1118968175, 'LB', 'Lebanon'), +('66.178.25.112', '66.178.25.119', 1118968176, 1118968183, 'AE', 'United Arab Emirates'), +('66.178.25.120', '66.178.25.127', 1118968184, 1118968191, 'A2', 'Satellite Provider'), +('66.178.25.128', '66.178.25.143', 1118968192, 1118968207, 'SA', 'Saudi Arabia'), +('66.178.25.144', '66.178.25.159', 1118968208, 1118968223, 'IQ', 'Iraq'), +('66.178.25.160', '66.178.25.191', 1118968224, 1118968255, 'A2', 'Satellite Provider'), +('66.178.25.192', '66.178.25.223', 1118968256, 1118968287, 'IQ', 'Iraq'), +('66.178.25.224', '66.178.25.231', 1118968288, 1118968295, 'AE', 'United Arab Emirates'), +('66.178.25.232', '66.178.25.239', 1118968296, 1118968303, 'A2', 'Satellite Provider'), +('66.178.25.240', '66.178.25.255', 1118968304, 1118968319, 'AE', 'United Arab Emirates'), +('66.178.26.0', '66.178.26.255', 1118968320, 1118968575, 'SR', 'Suriname'), +('66.178.27.0', '66.178.27.255', 1118968576, 1118968831, 'A2', 'Satellite Provider'), +('66.178.28.0', '66.178.28.143', 1118968832, 1118968975, 'SA', 'Saudi Arabia'), +('66.178.28.144', '66.178.28.159', 1118968976, 1118968991, 'A2', 'Satellite Provider'), +('66.178.28.160', '66.178.28.175', 1118968992, 1118969007, 'SA', 'Saudi Arabia'), +('66.178.28.176', '66.178.28.191', 1118969008, 1118969023, 'A2', 'Satellite Provider'), +('66.178.28.192', '66.178.29.127', 1118969024, 1118969215, 'SA', 'Saudi Arabia'), +('66.178.29.128', '66.178.29.191', 1118969216, 1118969279, 'A2', 'Satellite Provider'), +('66.178.29.192', '66.178.29.255', 1118969280, 1118969343, 'SA', 'Saudi Arabia'), +('66.178.30.0', '66.178.30.23', 1118969344, 1118969367, 'A2', 'Satellite Provider'), +('66.178.30.24', '66.178.30.31', 1118969368, 1118969375, 'NI', 'Nicaragua'), +('66.178.30.32', '66.178.30.127', 1118969376, 1118969471, 'A2', 'Satellite Provider'), +('66.178.30.128', '66.178.30.255', 1118969472, 1118969599, 'TT', 'Trinidad and Tobago'), +('66.178.31.0', '66.178.31.127', 1118969600, 1118969727, 'GY', 'Guyana'), +('66.178.31.128', '66.178.31.255', 1118969728, 1118969855, 'A2', 'Satellite Provider'), +('66.178.32.0', '66.178.32.255', 1118969856, 1118970111, 'LB', 'Lebanon'), +('66.178.33.0', '66.178.33.7', 1118970112, 1118970119, 'KE', 'Kenya'), +('66.178.33.8', '66.178.33.127', 1118970120, 1118970239, 'A2', 'Satellite Provider'), +('66.178.33.128', '66.178.33.255', 1118970240, 1118970367, 'NG', 'Nigeria'), +('66.178.34.0', '66.178.34.255', 1118970368, 1118970623, 'GY', 'Guyana'), +('66.178.35.0', '66.178.35.127', 1118970624, 1118970751, 'SA', 'Saudi Arabia'), +('66.178.35.128', '66.178.35.255', 1118970752, 1118970879, 'GY', 'Guyana'), +('66.178.36.0', '66.178.38.128', 1118970880, 1118971520, 'SR', 'Suriname'), +('66.178.38.129', '66.178.38.255', 1118971521, 1118971647, 'A2', 'Satellite Provider'), +('66.178.39.0', '66.178.39.255', 1118971648, 1118971903, 'GY', 'Guyana'), +('66.178.40.0', '66.178.40.255', 1118971904, 1118972159, 'A2', 'Satellite Provider'), +('66.178.41.0', '66.178.41.255', 1118972160, 1118972415, 'VE', 'Venezuela'), +('66.178.42.0', '66.178.42.255', 1118972416, 1118972671, 'EC', 'Ecuador'), +('66.178.43.0', '66.178.43.255', 1118972672, 1118972927, 'SA', 'Saudi Arabia'), +('66.178.44.0', '66.178.44.15', 1118972928, 1118972943, 'NI', 'Nicaragua'), +('66.178.44.16', '66.178.44.31', 1118972944, 1118972959, 'VE', 'Venezuela'), +('66.178.44.32', '66.178.44.39', 1118972960, 1118972967, 'A2', 'Satellite Provider'), +('66.178.44.40', '66.178.44.47', 1118972968, 1118972975, 'NI', 'Nicaragua'), +('66.178.44.48', '66.178.44.55', 1118972976, 1118972983, 'A2', 'Satellite Provider'), +('66.178.44.56', '66.178.44.71', 1118972984, 1118972999, 'NI', 'Nicaragua'), +('66.178.44.72', '66.178.44.79', 1118973000, 1118973007, 'SV', 'El Salvador'), +('66.178.44.80', '66.178.44.103', 1118973008, 1118973031, 'A2', 'Satellite Provider'), +('66.178.44.104', '66.178.44.111', 1118973032, 1118973039, 'NI', 'Nicaragua'), +('66.178.44.112', '66.178.44.119', 1118973040, 1118973047, 'A2', 'Satellite Provider'), +('66.178.44.120', '66.178.44.127', 1118973048, 1118973055, 'NI', 'Nicaragua'), +('66.178.44.128', '66.178.44.135', 1118973056, 1118973063, 'A2', 'Satellite Provider'), +('66.178.44.136', '66.178.44.143', 1118973064, 1118973071, 'EC', 'Ecuador'), +('66.178.44.144', '66.178.44.151', 1118973072, 1118973079, 'SV', 'El Salvador'), +('66.178.44.152', '66.178.44.183', 1118973080, 1118973111, 'VE', 'Venezuela'), +('66.178.44.184', '66.178.44.191', 1118973112, 1118973119, 'SV', 'El Salvador'), +('66.178.44.192', '66.178.44.223', 1118973120, 1118973151, 'NI', 'Nicaragua'), +('66.178.44.224', '66.178.44.231', 1118973152, 1118973159, 'A2', 'Satellite Provider'), +('66.178.44.232', '66.178.44.239', 1118973160, 1118973167, 'NI', 'Nicaragua'), +('66.178.44.240', '66.178.44.255', 1118973168, 1118973183, 'A2', 'Satellite Provider'), +('66.178.45.0', '66.178.45.255', 1118973184, 1118973439, 'VE', 'Venezuela'), +('66.178.46.0', '66.178.46.255', 1118973440, 1118973695, 'GY', 'Guyana'), +('66.178.47.0', '66.178.47.255', 1118973696, 1118973951, 'NG', 'Nigeria'), +('66.178.48.0', '66.178.48.63', 1118973952, 1118974015, 'GY', 'Guyana'), +('66.178.48.64', '66.178.48.95', 1118974016, 1118974047, 'A2', 'Satellite Provider'), +('66.178.48.96', '66.178.48.103', 1118974048, 1118974055, 'SV', 'El Salvador'), +('66.178.48.104', '66.178.48.143', 1118974056, 1118974095, 'A2', 'Satellite Provider'), +('66.178.48.144', '66.178.48.151', 1118974096, 1118974103, 'EC', 'Ecuador'), +('66.178.48.152', '66.178.48.159', 1118974104, 1118974111, 'SV', 'El Salvador'), +('66.178.48.160', '66.178.48.167', 1118974112, 1118974119, 'NI', 'Nicaragua'), +('66.178.48.168', '66.178.48.175', 1118974120, 1118974127, 'A2', 'Satellite Provider'), +('66.178.48.176', '66.178.48.183', 1118974128, 1118974135, 'US', 'United States'), +('66.178.48.184', '66.178.48.255', 1118974136, 1118974207, 'EC', 'Ecuador'), +('66.178.49.0', '66.178.49.7', 1118974208, 1118974215, 'US', 'United States'), +('66.178.49.8', '66.178.52.255', 1118974216, 1118975231, 'A2', 'Satellite Provider'), +('66.178.53.0', '66.178.53.255', 1118975232, 1118975487, 'NI', 'Nicaragua'), +('66.178.54.0', '66.178.54.255', 1118975488, 1118975743, 'KE', 'Kenya'), +('66.178.55.0', '66.178.55.255', 1118975744, 1118975999, 'A2', 'Satellite Provider'), +('66.178.56.0', '66.178.56.255', 1118976000, 1118976255, 'GB', 'United Kingdom'), +('66.178.57.0', '66.178.57.31', 1118976256, 1118976287, 'LB', 'Lebanon'), +('66.178.57.32', '66.178.57.39', 1118976288, 1118976295, 'A2', 'Satellite Provider'), +('66.178.57.40', '66.178.57.55', 1118976296, 1118976311, 'SA', 'Saudi Arabia'), +('66.178.57.56', '66.178.57.63', 1118976312, 1118976319, 'A2', 'Satellite Provider'), +('66.178.57.64', '66.178.57.71', 1118976320, 1118976327, 'SA', 'Saudi Arabia'), +('66.178.57.72', '66.178.57.87', 1118976328, 1118976343, 'A2', 'Satellite Provider'), +('66.178.57.88', '66.178.57.103', 1118976344, 1118976359, 'LB', 'Lebanon'), +('66.178.57.104', '66.178.57.111', 1118976360, 1118976367, 'A2', 'Satellite Provider'), +('66.178.57.112', '66.178.57.119', 1118976368, 1118976375, 'SA', 'Saudi Arabia'), +('66.178.57.120', '66.178.57.127', 1118976376, 1118976383, 'LB', 'Lebanon'), +('66.178.57.128', '66.178.57.135', 1118976384, 1118976391, 'SA', 'Saudi Arabia'), +('66.178.57.136', '66.178.57.143', 1118976392, 1118976399, 'A2', 'Satellite Provider'), +('66.178.57.144', '66.178.57.167', 1118976400, 1118976423, 'SA', 'Saudi Arabia'), +('66.178.57.168', '66.178.57.255', 1118976424, 1118976511, 'A2', 'Satellite Provider'), +('66.178.58.0', '66.178.58.63', 1118976512, 1118976575, 'NG', 'Nigeria'), +('66.178.58.64', '66.178.58.87', 1118976576, 1118976599, 'A2', 'Satellite Provider'), +('66.178.58.88', '66.178.58.95', 1118976600, 1118976607, 'NG', 'Nigeria'), +('66.178.58.96', '66.178.58.103', 1118976608, 1118976615, 'LB', 'Lebanon'), +('66.178.58.104', '66.178.58.175', 1118976616, 1118976687, 'A2', 'Satellite Provider'), +('66.178.58.176', '66.178.58.191', 1118976688, 1118976703, 'NG', 'Nigeria'), +('66.178.58.192', '66.178.58.215', 1118976704, 1118976727, 'A2', 'Satellite Provider'), +('66.178.58.216', '66.178.58.223', 1118976728, 1118976735, 'NG', 'Nigeria'), +('66.178.58.224', '66.178.58.255', 1118976736, 1118976767, 'A2', 'Satellite Provider'), +('66.178.59.0', '66.178.59.23', 1118976768, 1118976791, 'NG', 'Nigeria'), +('66.178.59.24', '66.178.59.63', 1118976792, 1118976831, 'A2', 'Satellite Provider'), +('66.178.59.64', '66.178.59.95', 1118976832, 1118976863, 'NG', 'Nigeria'), +('66.178.59.96', '66.178.59.127', 1118976864, 1118976895, 'A2', 'Satellite Provider'), +('66.178.59.128', '66.178.59.255', 1118976896, 1118977023, 'NG', 'Nigeria'), +('66.178.60.0', '66.178.60.255', 1118977024, 1118977279, 'SA', 'Saudi Arabia'), +('66.178.61.0', '66.178.61.31', 1118977280, 1118977311, 'A2', 'Satellite Provider'), +('66.178.61.32', '66.178.61.63', 1118977312, 1118977343, 'NG', 'Nigeria'), +('66.178.61.64', '66.178.61.71', 1118977344, 1118977351, 'KE', 'Kenya'), +('66.178.61.72', '66.178.61.255', 1118977352, 1118977535, 'A2', 'Satellite Provider'), +('66.178.62.0', '66.178.62.15', 1118977536, 1118977551, 'US', 'United States'), +('66.178.62.16', '66.178.62.39', 1118977552, 1118977575, 'A2', 'Satellite Provider'), +('66.178.62.40', '66.178.62.47', 1118977576, 1118977583, 'SA', 'Saudi Arabia'), +('66.178.62.48', '66.178.62.95', 1118977584, 1118977631, 'A2', 'Satellite Provider'), +('66.178.62.96', '66.178.62.127', 1118977632, 1118977663, 'NG', 'Nigeria'), +('66.178.62.128', '66.178.63.47', 1118977664, 1118977839, 'A2', 'Satellite Provider'), +('66.178.63.48', '66.178.63.55', 1118977840, 1118977847, 'LB', 'Lebanon'), +('66.178.63.56', '66.178.63.87', 1118977848, 1118977879, 'A2', 'Satellite Provider'), +('66.178.63.88', '66.178.63.95', 1118977880, 1118977887, 'NI', 'Nicaragua'), +('66.178.63.96', '66.178.63.255', 1118977888, 1118978047, 'A2', 'Satellite Provider'), +('66.178.64.0', '66.178.64.31', 1118978048, 1118978079, 'SA', 'Saudi Arabia'), +('66.178.64.32', '66.178.64.63', 1118978080, 1118978111, 'A2', 'Satellite Provider'), +('66.178.64.64', '66.178.65.135', 1118978112, 1118978439, 'SA', 'Saudi Arabia'), +('66.178.65.136', '66.178.65.143', 1118978440, 1118978447, 'A2', 'Satellite Provider'), +('66.178.65.144', '66.178.65.159', 1118978448, 1118978463, 'LB', 'Lebanon'), +('66.178.65.160', '66.178.65.191', 1118978464, 1118978495, 'SA', 'Saudi Arabia'), +('66.178.65.192', '66.178.67.255', 1118978496, 1118979071, 'A2', 'Satellite Provider'), +('66.178.68.0', '66.178.68.159', 1118979072, 1118979231, 'SA', 'Saudi Arabia'), +('66.178.68.160', '66.178.68.191', 1118979232, 1118979263, 'A2', 'Satellite Provider'), +('66.178.68.192', '66.178.68.223', 1118979264, 1118979295, 'SA', 'Saudi Arabia'), +('66.178.68.224', '66.178.68.255', 1118979296, 1118979327, 'LB', 'Lebanon'), +('66.178.69.0', '66.178.69.127', 1118979328, 1118979455, 'SA', 'Saudi Arabia'), +('66.178.69.128', '66.178.69.151', 1118979456, 1118979479, 'LB', 'Lebanon'), +('66.178.69.152', '66.178.69.167', 1118979480, 1118979495, 'SA', 'Saudi Arabia'), +('66.178.69.168', '66.178.69.175', 1118979496, 1118979503, 'LB', 'Lebanon'), +('66.178.69.176', '66.178.69.207', 1118979504, 1118979535, 'SA', 'Saudi Arabia'), +('66.178.69.208', '66.178.69.247', 1118979536, 1118979575, 'LB', 'Lebanon'), +('66.178.69.248', '66.178.69.255', 1118979576, 1118979583, 'SA', 'Saudi Arabia'), +('66.178.70.0', '66.178.70.127', 1118979584, 1118979711, 'A2', 'Satellite Provider'), +('66.178.70.128', '66.178.70.191', 1118979712, 1118979775, 'LB', 'Lebanon'), +('66.178.70.192', '66.178.70.255', 1118979776, 1118979839, 'A2', 'Satellite Provider'), +('66.178.71.0', '66.178.71.15', 1118979840, 1118979855, 'NI', 'Nicaragua'), +('66.178.71.16', '66.178.71.55', 1118979856, 1118979895, 'A2', 'Satellite Provider'), +('66.178.71.56', '66.178.71.63', 1118979896, 1118979903, 'NI', 'Nicaragua'), +('66.178.71.64', '66.178.71.255', 1118979904, 1118980095, 'A2', 'Satellite Provider'), +('66.178.72.0', '66.178.72.255', 1118980096, 1118980351, 'NG', 'Nigeria'), +('66.178.73.0', '66.178.73.255', 1118980352, 1118980607, 'A2', 'Satellite Provider'), +('66.178.74.0', '66.178.74.255', 1118980608, 1118980863, 'TZ', 'Tanzania, United Republic of'), +('66.178.75.0', '66.178.75.255', 1118980864, 1118981119, 'LC', 'Saint Lucia'), +('66.178.76.0', '66.178.76.255', 1118981120, 1118981375, 'A2', 'Satellite Provider'), +('66.178.77.0', '66.178.77.255', 1118981376, 1118981631, 'IQ', 'Iraq'), +('66.178.78.0', '66.178.78.55', 1118981632, 1118981687, 'EC', 'Ecuador'), +('66.178.78.56', '66.178.78.63', 1118981688, 1118981695, 'A2', 'Satellite Provider'), +('66.178.78.64', '66.178.78.103', 1118981696, 1118981735, 'SV', 'El Salvador'), +('66.178.78.104', '66.178.78.111', 1118981736, 1118981743, 'EC', 'Ecuador'), +('66.178.78.112', '66.178.78.119', 1118981744, 1118981751, 'SV', 'El Salvador'), +('66.178.78.120', '66.178.78.127', 1118981752, 1118981759, 'NG', 'Nigeria'), +('66.178.78.128', '66.178.78.151', 1118981760, 1118981783, 'A2', 'Satellite Provider'), +('66.178.78.152', '66.178.78.159', 1118981784, 1118981791, 'NI', 'Nicaragua'), +('66.178.78.160', '66.178.78.191', 1118981792, 1118981823, 'NG', 'Nigeria'), +('66.178.78.192', '66.178.78.199', 1118981824, 1118981831, 'EC', 'Ecuador'), +('66.178.78.200', '66.178.78.223', 1118981832, 1118981855, 'NI', 'Nicaragua'), +('66.178.78.224', '66.178.78.231', 1118981856, 1118981863, 'EC', 'Ecuador'), +('66.178.78.232', '66.178.78.239', 1118981864, 1118981871, 'NI', 'Nicaragua'), +('66.178.78.240', '66.178.78.247', 1118981872, 1118981879, 'A2', 'Satellite Provider'), +('66.178.78.248', '66.178.78.255', 1118981880, 1118981887, 'NI', 'Nicaragua'), +('66.178.79.0', '66.178.80.31', 1118981888, 1118982175, 'A2', 'Satellite Provider'), +('66.178.80.32', '66.178.80.39', 1118982176, 1118982183, 'NG', 'Nigeria'), +('66.178.80.40', '66.178.80.47', 1118982184, 1118982191, 'A2', 'Satellite Provider'), +('66.178.80.48', '66.178.80.55', 1118982192, 1118982199, 'KE', 'Kenya'), +('66.178.80.56', '66.178.80.63', 1118982200, 1118982207, 'US', 'United States'), +('66.178.80.64', '66.178.80.71', 1118982208, 1118982215, 'A2', 'Satellite Provider'), +('66.178.80.72', '66.178.80.135', 1118982216, 1118982279, 'NG', 'Nigeria'), +('66.178.80.136', '66.178.80.143', 1118982280, 1118982287, 'A2', 'Satellite Provider'), +('66.178.80.144', '66.178.80.151', 1118982288, 1118982295, 'NG', 'Nigeria'), +('66.178.80.152', '66.178.80.159', 1118982296, 1118982303, 'A2', 'Satellite Provider'), +('66.178.80.160', '66.178.80.167', 1118982304, 1118982311, 'KE', 'Kenya'), +('66.178.80.168', '66.178.80.183', 1118982312, 1118982327, 'NG', 'Nigeria'), +('66.178.80.184', '66.178.80.191', 1118982328, 1118982335, 'A2', 'Satellite Provider'), +('66.178.80.192', '66.178.80.223', 1118982336, 1118982367, 'NG', 'Nigeria'), +('66.178.80.224', '66.178.80.239', 1118982368, 1118982383, 'A2', 'Satellite Provider'), +('66.178.80.240', '66.178.80.247', 1118982384, 1118982391, 'NG', 'Nigeria'), +('66.178.80.248', '66.178.80.255', 1118982392, 1118982399, 'A2', 'Satellite Provider'), +('66.178.81.0', '66.178.81.15', 1118982400, 1118982415, 'NG', 'Nigeria'), +('66.178.81.16', '66.178.81.31', 1118982416, 1118982431, 'SV', 'El Salvador'), +('66.178.81.32', '66.178.81.47', 1118982432, 1118982447, 'NG', 'Nigeria'), +('66.178.81.48', '66.178.81.63', 1118982448, 1118982463, 'US', 'United States'), +('66.178.81.64', '66.178.81.79', 1118982464, 1118982479, 'NG', 'Nigeria'), +('66.178.81.80', '66.178.81.87', 1118982480, 1118982487, 'A2', 'Satellite Provider'), +('66.178.81.88', '66.178.81.151', 1118982488, 1118982551, 'NG', 'Nigeria'), +('66.178.81.152', '66.178.81.159', 1118982552, 1118982559, 'US', 'United States'), +('66.178.81.160', '66.178.81.167', 1118982560, 1118982567, 'NG', 'Nigeria'), +('66.178.81.168', '66.178.81.175', 1118982568, 1118982575, 'US', 'United States'), +('66.178.81.176', '66.178.81.183', 1118982576, 1118982583, 'NG', 'Nigeria'), +('66.178.81.184', '66.178.81.191', 1118982584, 1118982591, 'CM', 'Cameroon'), +('66.178.81.192', '66.178.81.199', 1118982592, 1118982599, 'NG', 'Nigeria'), +('66.178.81.200', '66.178.81.207', 1118982600, 1118982607, 'A2', 'Satellite Provider'), +('66.178.81.208', '66.178.81.247', 1118982608, 1118982647, 'NG', 'Nigeria'), +('66.178.81.248', '66.178.82.127', 1118982648, 1118982783, 'A2', 'Satellite Provider'), +('66.178.82.128', '66.178.82.255', 1118982784, 1118982911, 'NG', 'Nigeria'), +('66.178.83.0', '66.178.83.7', 1118982912, 1118982919, 'LB', 'Lebanon'), +('66.178.83.8', '66.178.83.15', 1118982920, 1118982927, 'A2', 'Satellite Provider'), +('66.178.83.16', '66.178.83.23', 1118982928, 1118982935, 'NG', 'Nigeria'), +('66.178.83.24', '66.178.83.167', 1118982936, 1118983079, 'A2', 'Satellite Provider'), +('66.178.83.168', '66.178.83.175', 1118983080, 1118983087, 'NG', 'Nigeria'), +('66.178.83.176', '66.178.83.255', 1118983088, 1118983167, 'A2', 'Satellite Provider'), +('66.178.84.0', '66.178.84.31', 1118983168, 1118983199, 'AE', 'United Arab Emirates'), +('66.178.84.32', '66.178.84.111', 1118983200, 1118983279, 'SA', 'Saudi Arabia'), +('66.178.84.112', '66.178.84.127', 1118983280, 1118983295, 'A2', 'Satellite Provider'), +('66.178.84.128', '66.178.84.191', 1118983296, 1118983359, 'AE', 'United Arab Emirates'), +('66.178.84.192', '66.178.84.255', 1118983360, 1118983423, 'A2', 'Satellite Provider'), +('66.178.85.0', '66.178.85.255', 1118983424, 1118983679, 'NI', 'Nicaragua'), +('66.178.86.0', '66.178.86.63', 1118983680, 1118983743, 'TZ', 'Tanzania, United Republic of'), +('66.178.86.64', '66.178.86.79', 1118983744, 1118983759, 'VE', 'Venezuela'), +('66.178.86.80', '66.178.86.191', 1118983760, 1118983871, 'A2', 'Satellite Provider'), +('66.178.86.192', '66.178.86.199', 1118983872, 1118983879, 'TZ', 'Tanzania, United Republic of'), +('66.178.86.200', '66.178.86.239', 1118983880, 1118983919, 'US', 'United States'), +('66.178.86.240', '66.178.88.255', 1118983920, 1118984447, 'A2', 'Satellite Provider'), +('66.178.89.0', '66.178.89.255', 1118984448, 1118984703, 'SA', 'Saudi Arabia'), +('66.178.90.0', '66.178.90.71', 1118984704, 1118984775, 'TZ', 'Tanzania, United Republic of'), +('66.178.90.72', '66.178.90.79', 1118984776, 1118984783, 'IQ', 'Iraq'), +('66.178.90.80', '66.178.90.87', 1118984784, 1118984791, 'A2', 'Satellite Provider'), +('66.178.90.88', '66.178.90.95', 1118984792, 1118984799, 'NG', 'Nigeria'), +('66.178.90.96', '66.178.90.103', 1118984800, 1118984807, 'A2', 'Satellite Provider'), +('66.178.90.104', '66.178.90.111', 1118984808, 1118984815, 'LB', 'Lebanon'), +('66.178.90.112', '66.178.90.127', 1118984816, 1118984831, 'A2', 'Satellite Provider'), +('66.178.90.128', '66.178.90.135', 1118984832, 1118984839, 'LB', 'Lebanon'), +('66.178.90.136', '66.178.90.143', 1118984840, 1118984847, 'SA', 'Saudi Arabia'), +('66.178.90.144', '66.178.90.151', 1118984848, 1118984855, 'A2', 'Satellite Provider'), +('66.178.90.152', '66.178.90.159', 1118984856, 1118984863, 'IQ', 'Iraq'), +('66.178.90.160', '66.178.90.183', 1118984864, 1118984887, 'TZ', 'Tanzania, United Republic of'), +('66.178.90.184', '66.178.90.191', 1118984888, 1118984895, 'LB', 'Lebanon'), +('66.178.90.192', '66.178.90.239', 1118984896, 1118984943, 'SA', 'Saudi Arabia'), +('66.178.90.240', '66.178.90.247', 1118984944, 1118984951, 'LB', 'Lebanon'), +('66.178.90.248', '66.178.90.255', 1118984952, 1118984959, 'SA', 'Saudi Arabia'), +('66.178.91.0', '66.178.91.255', 1118984960, 1118985215, 'VE', 'Venezuela'), +('66.178.92.0', '66.178.94.255', 1118985216, 1118985983, 'A2', 'Satellite Provider'), +('66.178.95.0', '66.178.95.127', 1118985984, 1118986111, 'NG', 'Nigeria'), +('66.178.95.128', '66.178.95.255', 1118986112, 1118986239, 'A2', 'Satellite Provider'), +('66.178.96.0', '66.178.98.255', 1118986240, 1118987007, 'GB', 'United Kingdom'), +('66.178.99.0', '66.178.99.255', 1118987008, 1118987263, 'US', 'United States'), +('66.178.100.0', '66.178.103.255', 1118987264, 1118988287, 'KE', 'Kenya'), +('66.178.104.0', '66.178.104.255', 1118988288, 1118988543, 'A2', 'Satellite Provider'), +('66.178.105.0', '66.178.105.31', 1118988544, 1118988575, 'NG', 'Nigeria'), +('66.178.105.32', '66.178.105.71', 1118988576, 1118988615, 'A2', 'Satellite Provider'), +('66.178.105.72', '66.178.105.79', 1118988616, 1118988623, 'GB', 'United Kingdom'), +('66.178.105.80', '66.178.105.191', 1118988624, 1118988735, 'A2', 'Satellite Provider'), +('66.178.105.192', '66.178.105.207', 1118988736, 1118988751, 'GB', 'United Kingdom'), +('66.178.105.208', '66.178.105.255', 1118988752, 1118988799, 'A2', 'Satellite Provider'), +('66.178.106.0', '66.178.106.255', 1118988800, 1118989055, 'VE', 'Venezuela'), +('66.178.107.0', '66.178.107.127', 1118989056, 1118989183, 'KE', 'Kenya'), +('66.178.107.128', '66.178.107.255', 1118989184, 1118989311, 'GB', 'United Kingdom'), +('66.178.108.0', '66.178.109.255', 1118989312, 1118989823, 'KE', 'Kenya'), +('66.178.110.0', '66.178.110.127', 1118989824, 1118989951, 'A2', 'Satellite Provider'), +('66.178.110.128', '66.178.110.255', 1118989952, 1118990079, 'FR', 'France'), +('66.178.111.0', '66.178.111.191', 1118990080, 1118990271, 'A2', 'Satellite Provider'), +('66.178.111.192', '66.178.111.223', 1118990272, 1118990303, 'US', 'United States'), +('66.178.111.224', '66.178.113.127', 1118990304, 1118990719, 'A2', 'Satellite Provider'), +('66.178.113.128', '66.178.113.135', 1118990720, 1118990727, 'KE', 'Kenya'), +('66.178.113.136', '66.178.120.255', 1118990728, 1118992639, 'A2', 'Satellite Provider'), +('66.178.121.0', '66.178.121.15', 1118992640, 1118992655, 'KE', 'Kenya'), +('66.178.121.16', '66.178.121.95', 1118992656, 1118992735, 'A2', 'Satellite Provider'), +('66.178.121.96', '66.178.121.103', 1118992736, 1118992743, 'SA', 'Saudi Arabia'), +('66.178.121.104', '66.178.121.127', 1118992744, 1118992767, 'A2', 'Satellite Provider'), +('66.178.121.128', '66.178.121.199', 1118992768, 1118992839, 'US', 'United States'), +('66.178.121.200', '66.178.125.255', 1118992840, 1118993919, 'A2', 'Satellite Provider'), +('66.178.126.0', '66.178.127.255', 1118993920, 1118994431, 'GY', 'Guyana'), +('66.178.128.0', '66.178.242.119', 1118994432, 1119023735, 'US', 'United States'), +('66.178.242.120', '66.178.242.127', 1119023736, 1119023743, 'UY', 'Uruguay'), +('66.178.242.128', '66.180.63.255', 1119023744, 1119109119, 'US', 'United States'), +('66.180.64.0', '66.180.79.255', 1119109120, 1119113215, 'CA', 'Canada'), +('66.180.80.0', '66.181.33.127', 1119113216, 1119166847, 'US', 'United States'), +('66.181.33.128', '66.181.33.151', 1119166848, 1119166871, 'HT', 'Haiti'), +('66.181.33.152', '66.181.34.103', 1119166872, 1119167079, 'US', 'United States'), +('66.181.34.104', '66.181.34.111', 1119167080, 1119167087, 'CA', 'Canada'), +('66.181.34.112', '66.181.34.143', 1119167088, 1119167119, 'US', 'United States'), +('66.181.34.144', '66.181.34.151', 1119167120, 1119167127, 'MX', 'Mexico'), +('66.181.34.152', '66.181.34.255', 1119167128, 1119167231, 'US', 'United States'), +('66.181.35.0', '66.181.35.7', 1119167232, 1119167239, 'CA', 'Canada'), +('66.181.35.8', '66.181.35.127', 1119167240, 1119167359, 'US', 'United States'), +('66.181.35.128', '66.181.35.135', 1119167360, 1119167367, 'CA', 'Canada'), +('66.181.35.136', '66.181.35.175', 1119167368, 1119167407, 'US', 'United States'), +('66.181.35.176', '66.181.35.183', 1119167408, 1119167415, 'CA', 'Canada'), +('66.181.35.184', '66.181.37.95', 1119167416, 1119167839, 'US', 'United States'), +('66.181.37.96', '66.181.37.111', 1119167840, 1119167855, 'CA', 'Canada'), +('66.181.37.112', '66.181.37.151', 1119167856, 1119167895, 'US', 'United States'), +('66.181.37.152', '66.181.37.159', 1119167896, 1119167903, 'CA', 'Canada'), +('66.181.37.160', '66.181.38.23', 1119167904, 1119168023, 'US', 'United States'), +('66.181.38.24', '66.181.38.31', 1119168024, 1119168031, 'CA', 'Canada'), +('66.181.38.32', '66.181.38.55', 1119168032, 1119168055, 'US', 'United States'), +('66.181.38.56', '66.181.38.63', 1119168056, 1119168063, 'MX', 'Mexico'), +('66.181.38.64', '66.181.38.183', 1119168064, 1119168183, 'US', 'United States'), +('66.181.38.184', '66.181.38.191', 1119168184, 1119168191, 'CA', 'Canada'), +('66.181.38.192', '66.181.40.175', 1119168192, 1119168687, 'US', 'United States'), +('66.181.40.176', '66.181.40.183', 1119168688, 1119168695, 'CA', 'Canada'), +('66.181.40.184', '66.181.41.31', 1119168696, 1119168799, 'US', 'United States'), +('66.181.41.32', '66.181.41.39', 1119168800, 1119168807, 'MX', 'Mexico'), +('66.181.41.40', '66.181.41.207', 1119168808, 1119168975, 'US', 'United States'), +('66.181.41.208', '66.181.41.215', 1119168976, 1119168983, 'CA', 'Canada'), +('66.181.41.216', '66.181.43.79', 1119168984, 1119169359, 'US', 'United States'), +('66.181.43.80', '66.181.43.87', 1119169360, 1119169367, 'HT', 'Haiti'), +('66.181.43.88', '66.181.43.255', 1119169368, 1119169535, 'US', 'United States'), +('66.181.44.0', '66.181.44.7', 1119169536, 1119169543, 'CA', 'Canada'), +('66.181.44.8', '66.181.44.63', 1119169544, 1119169599, 'US', 'United States'), +('66.181.44.64', '66.181.44.79', 1119169600, 1119169615, 'MX', 'Mexico'), +('66.181.44.80', '66.181.47.135', 1119169616, 1119170439, 'US', 'United States'), +('66.181.47.136', '66.181.47.143', 1119170440, 1119170447, 'CA', 'Canada'), +('66.181.47.144', '66.181.47.167', 1119170448, 1119170471, 'US', 'United States'), +('66.181.47.168', '66.181.47.175', 1119170472, 1119170479, 'CA', 'Canada'), +('66.181.47.176', '66.181.48.63', 1119170480, 1119170623, 'US', 'United States'), +('66.181.48.64', '66.181.48.71', 1119170624, 1119170631, 'CA', 'Canada'), +('66.181.48.72', '66.181.50.135', 1119170632, 1119171207, 'US', 'United States'), +('66.181.50.136', '66.181.50.143', 1119171208, 1119171215, 'CA', 'Canada'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('66.181.50.144', '66.181.51.55', 1119171216, 1119171383, 'US', 'United States'), +('66.181.51.56', '66.181.51.63', 1119171384, 1119171391, 'CA', 'Canada'), +('66.181.51.64', '66.181.57.31', 1119171392, 1119172895, 'US', 'United States'), +('66.181.57.32', '66.181.57.127', 1119172896, 1119172991, 'MX', 'Mexico'), +('66.181.57.128', '66.181.57.143', 1119172992, 1119173007, 'US', 'United States'), +('66.181.57.144', '66.181.57.231', 1119173008, 1119173095, 'MX', 'Mexico'), +('66.181.57.232', '66.181.57.255', 1119173096, 1119173119, 'US', 'United States'), +('66.181.58.0', '66.181.58.23', 1119173120, 1119173143, 'MX', 'Mexico'), +('66.181.58.24', '66.181.58.31', 1119173144, 1119173151, 'US', 'United States'), +('66.181.58.32', '66.181.58.143', 1119173152, 1119173263, 'MX', 'Mexico'), +('66.181.58.144', '66.181.58.151', 1119173264, 1119173271, 'US', 'United States'), +('66.181.58.152', '66.181.58.247', 1119173272, 1119173367, 'MX', 'Mexico'), +('66.181.58.248', '66.181.58.255', 1119173368, 1119173375, 'US', 'United States'), +('66.181.59.0', '66.181.59.23', 1119173376, 1119173399, 'MX', 'Mexico'), +('66.181.59.24', '66.181.59.31', 1119173400, 1119173407, 'US', 'United States'), +('66.181.59.32', '66.181.59.95', 1119173408, 1119173471, 'MX', 'Mexico'), +('66.181.59.96', '66.181.59.119', 1119173472, 1119173495, 'US', 'United States'), +('66.181.59.120', '66.181.59.151', 1119173496, 1119173527, 'MX', 'Mexico'), +('66.181.59.152', '66.181.59.159', 1119173528, 1119173535, 'US', 'United States'), +('66.181.59.160', '66.181.59.167', 1119173536, 1119173543, 'MX', 'Mexico'), +('66.181.59.168', '66.181.59.175', 1119173544, 1119173551, 'US', 'United States'), +('66.181.59.176', '66.181.59.199', 1119173552, 1119173575, 'MX', 'Mexico'), +('66.181.59.200', '66.181.59.207', 1119173576, 1119173583, 'US', 'United States'), +('66.181.59.208', '66.181.60.23', 1119173584, 1119173655, 'MX', 'Mexico'), +('66.181.60.24', '66.181.60.39', 1119173656, 1119173671, 'US', 'United States'), +('66.181.60.40', '66.181.60.47', 1119173672, 1119173679, 'MX', 'Mexico'), +('66.181.60.48', '66.181.60.71', 1119173680, 1119173703, 'US', 'United States'), +('66.181.60.72', '66.181.60.127', 1119173704, 1119173759, 'MX', 'Mexico'), +('66.181.60.128', '66.181.60.135', 1119173760, 1119173767, 'US', 'United States'), +('66.181.60.136', '66.181.60.151', 1119173768, 1119173783, 'MX', 'Mexico'), +('66.181.60.152', '66.181.60.159', 1119173784, 1119173791, 'US', 'United States'), +('66.181.60.160', '66.181.60.183', 1119173792, 1119173815, 'MX', 'Mexico'), +('66.181.60.184', '66.181.60.191', 1119173816, 1119173823, 'US', 'United States'), +('66.181.60.192', '66.181.60.215', 1119173824, 1119173847, 'MX', 'Mexico'), +('66.181.60.216', '66.181.60.231', 1119173848, 1119173863, 'US', 'United States'), +('66.181.60.232', '66.181.60.247', 1119173864, 1119173879, 'MX', 'Mexico'), +('66.181.60.248', '66.181.61.47', 1119173880, 1119173935, 'US', 'United States'), +('66.181.61.48', '66.181.61.95', 1119173936, 1119173983, 'MX', 'Mexico'), +('66.181.61.96', '66.181.61.111', 1119173984, 1119173999, 'US', 'United States'), +('66.181.61.112', '66.181.61.127', 1119174000, 1119174015, 'MX', 'Mexico'), +('66.181.61.128', '66.181.61.135', 1119174016, 1119174023, 'US', 'United States'), +('66.181.61.136', '66.181.61.143', 1119174024, 1119174031, 'GT', 'Guatemala'), +('66.181.61.144', '66.181.61.151', 1119174032, 1119174039, 'MX', 'Mexico'), +('66.181.61.152', '66.181.61.159', 1119174040, 1119174047, 'US', 'United States'), +('66.181.61.160', '66.181.62.63', 1119174048, 1119174207, 'MX', 'Mexico'), +('66.181.62.64', '66.181.62.71', 1119174208, 1119174215, 'US', 'United States'), +('66.181.62.72', '66.181.62.103', 1119174216, 1119174247, 'GT', 'Guatemala'), +('66.181.62.104', '66.181.62.143', 1119174248, 1119174287, 'US', 'United States'), +('66.181.62.144', '66.181.62.175', 1119174288, 1119174319, 'MX', 'Mexico'), +('66.181.62.176', '66.181.62.199', 1119174320, 1119174343, 'US', 'United States'), +('66.181.62.200', '66.181.62.207', 1119174344, 1119174351, 'GT', 'Guatemala'), +('66.181.62.208', '66.181.62.215', 1119174352, 1119174359, 'MX', 'Mexico'), +('66.181.62.216', '66.181.62.255', 1119174360, 1119174399, 'US', 'United States'), +('66.181.63.0', '66.181.63.7', 1119174400, 1119174407, 'GT', 'Guatemala'), +('66.181.63.8', '66.181.63.71', 1119174408, 1119174471, 'MX', 'Mexico'), +('66.181.63.72', '66.181.63.79', 1119174472, 1119174479, 'US', 'United States'), +('66.181.63.80', '66.181.63.119', 1119174480, 1119174519, 'MX', 'Mexico'), +('66.181.63.120', '66.181.63.127', 1119174520, 1119174527, 'US', 'United States'), +('66.181.63.128', '66.181.63.143', 1119174528, 1119174543, 'MX', 'Mexico'), +('66.181.63.144', '66.181.207.255', 1119174544, 1119211519, 'US', 'United States'), +('66.181.208.0', '66.181.223.255', 1119211520, 1119215615, 'CA', 'Canada'), +('66.181.224.0', '66.182.255.255', 1119215616, 1119289343, 'US', 'United States'), +('66.183.0.0', '66.183.255.255', 1119289344, 1119354879, 'CA', 'Canada'), +('66.184.0.0', '66.184.56.191', 1119354880, 1119369407, 'US', 'United States'), +('66.184.56.192', '66.184.56.199', 1119369408, 1119369415, 'UM', 'United States Minor Outlying Islands'), +('66.184.56.200', '66.185.31.255', 1119369416, 1119428607, 'US', 'United States'), +('66.185.32.0', '66.185.47.255', 1119428608, 1119432703, 'VI', 'Virgin Islands, U.S.'), +('66.185.48.0', '66.185.63.255', 1119432704, 1119436799, 'CA', 'Canada'), +('66.185.64.0', '66.185.79.255', 1119436800, 1119440895, 'US', 'United States'), +('66.185.80.0', '66.185.95.255', 1119440896, 1119444991, 'CA', 'Canada'), +('66.185.96.0', '66.185.102.223', 1119444992, 1119446751, 'US', 'United States'), +('66.185.102.224', '66.185.102.231', 1119446752, 1119446759, 'CO', 'Colombia'), +('66.185.102.232', '66.185.191.255', 1119446760, 1119469567, 'US', 'United States'), +('66.185.192.0', '66.185.223.255', 1119469568, 1119477759, 'CA', 'Canada'), +('66.185.224.0', '66.186.2.159', 1119477760, 1119486623, 'US', 'United States'), +('66.186.2.160', '66.186.2.167', 1119486624, 1119486631, 'AU', 'Australia'), +('66.186.2.168', '66.186.15.223', 1119486632, 1119490015, 'US', 'United States'), +('66.186.15.224', '66.186.15.255', 1119490016, 1119490047, 'IE', 'Ireland'), +('66.186.16.0', '66.186.17.191', 1119490048, 1119490495, 'US', 'United States'), +('66.186.17.192', '66.186.17.223', 1119490496, 1119490527, 'GI', 'Gibraltar'), +('66.186.17.224', '66.186.63.255', 1119490528, 1119502335, 'US', 'United States'), +('66.186.64.0', '66.186.95.255', 1119502336, 1119510527, 'CA', 'Canada'), +('66.186.96.0', '66.187.63.255', 1119510528, 1119567871, 'US', 'United States'), +('66.187.64.0', '66.187.79.255', 1119567872, 1119571967, 'CA', 'Canada'), +('66.187.80.0', '66.187.111.255', 1119571968, 1119580159, 'US', 'United States'), +('66.187.112.0', '66.187.127.255', 1119580160, 1119584255, 'CA', 'Canada'), +('66.187.128.0', '66.193.215.191', 1119584256, 1119999935, 'US', 'United States'), +('66.193.215.192', '66.193.215.223', 1119999936, 1119999967, 'A2', 'Satellite Provider'), +('66.193.215.224', '66.194.19.191', 1119999968, 1120015295, 'US', 'United States'), +('66.194.19.192', '66.194.19.223', 1120015296, 1120015327, 'A2', 'Satellite Provider'), +('66.194.19.224', '66.194.211.255', 1120015328, 1120064511, 'US', 'United States'), +('66.194.212.0', '66.194.212.255', 1120064512, 1120064767, 'AR', 'Argentina'), +('66.194.213.0', '66.196.31.255', 1120064768, 1120149503, 'US', 'United States'), +('66.196.32.0', '66.196.32.95', 1120149504, 1120149599, 'CA', 'Canada'), +('66.196.32.96', '66.196.32.127', 1120149600, 1120149631, 'US', 'United States'), +('66.196.32.128', '66.196.34.15', 1120149632, 1120150031, 'CA', 'Canada'), +('66.196.34.16', '66.196.34.23', 1120150032, 1120150039, 'TW', 'Taiwan'), +('66.196.34.24', '66.196.34.31', 1120150040, 1120150047, 'CA', 'Canada'), +('66.196.34.32', '66.196.34.39', 1120150048, 1120150055, 'US', 'United States'), +('66.196.34.40', '66.196.40.143', 1120150056, 1120151695, 'CA', 'Canada'), +('66.196.40.144', '66.196.40.159', 1120151696, 1120151711, 'TW', 'Taiwan'), +('66.196.40.160', '66.196.42.95', 1120151712, 1120152159, 'CA', 'Canada'), +('66.196.42.96', '66.196.42.127', 1120152160, 1120152191, 'US', 'United States'), +('66.196.42.128', '66.196.42.255', 1120152192, 1120152319, 'CA', 'Canada'), +('66.196.43.0', '66.196.43.255', 1120152320, 1120152575, 'US', 'United States'), +('66.196.44.0', '66.196.47.255', 1120152576, 1120153599, 'CA', 'Canada'), +('66.196.48.0', '66.197.129.1', 1120153600, 1120239873, 'US', 'United States'), +('66.197.129.2', '66.197.129.254', 1120239874, 1120240126, 'CA', 'Canada'), +('66.197.129.255', '66.197.137.1', 1120240127, 1120241921, 'US', 'United States'), +('66.197.137.2', '66.197.137.254', 1120241922, 1120242174, 'RU', 'Russian Federation'), +('66.197.137.255', '66.197.150.59', 1120242175, 1120245307, 'US', 'United States'), +('66.197.150.60', '66.197.150.79', 1120245308, 1120245327, 'EG', 'Egypt'), +('66.197.150.80', '66.197.150.99', 1120245328, 1120245347, 'US', 'United States'), +('66.197.150.100', '66.197.150.254', 1120245348, 1120245502, 'RU', 'Russian Federation'), +('66.197.150.255', '66.197.156.148', 1120245503, 1120246932, 'US', 'United States'), +('66.197.156.149', '66.197.156.158', 1120246933, 1120246942, 'LB', 'Lebanon'), +('66.197.156.159', '66.197.160.129', 1120246943, 1120247937, 'US', 'United States'), +('66.197.160.130', '66.197.160.139', 1120247938, 1120247947, 'IT', 'Italy'), +('66.197.160.140', '66.197.161.199', 1120247948, 1120248263, 'US', 'United States'), +('66.197.161.200', '66.197.161.249', 1120248264, 1120248313, 'CA', 'Canada'), +('66.197.161.250', '66.197.165.209', 1120248314, 1120249297, 'US', 'United States'), +('66.197.165.210', '66.197.165.239', 1120249298, 1120249327, 'CA', 'Canada'), +('66.197.165.240', '66.197.165.249', 1120249328, 1120249337, 'IT', 'Italy'), +('66.197.165.250', '66.197.166.1', 1120249338, 1120249345, 'US', 'United States'), +('66.197.166.2', '66.197.166.254', 1120249346, 1120249598, 'CA', 'Canada'), +('66.197.166.255', '66.197.167.79', 1120249599, 1120249679, 'US', 'United States'), +('66.197.167.80', '66.197.167.199', 1120249680, 1120249799, 'IN', 'India'), +('66.197.167.200', '66.197.167.209', 1120249800, 1120249809, 'US', 'United States'), +('66.197.167.210', '66.197.167.224', 1120249810, 1120249824, 'HK', 'Hong Kong'), +('66.197.167.225', '66.197.167.244', 1120249825, 1120249844, 'US', 'United States'), +('66.197.167.245', '66.197.167.254', 1120249845, 1120249854, 'ES', 'Spain'), +('66.197.167.255', '66.197.168.1', 1120249855, 1120249857, 'US', 'United States'), +('66.197.168.2', '66.197.168.67', 1120249858, 1120249923, 'LB', 'Lebanon'), +('66.197.168.68', '66.197.168.99', 1120249924, 1120249955, 'US', 'United States'), +('66.197.168.100', '66.197.168.119', 1120249956, 1120249975, 'AU', 'Australia'), +('66.197.168.120', '66.197.168.159', 1120249976, 1120250015, 'US', 'United States'), +('66.197.168.160', '66.197.168.194', 1120250016, 1120250050, 'KW', 'Kuwait'), +('66.197.168.195', '66.197.168.244', 1120250051, 1120250100, 'US', 'United States'), +('66.197.168.245', '66.197.168.254', 1120250101, 1120250110, 'MX', 'Mexico'), +('66.197.168.255', '66.197.171.1', 1120250111, 1120250625, 'US', 'United States'), +('66.197.171.2', '66.197.171.254', 1120250626, 1120250878, 'CA', 'Canada'), +('66.197.171.255', '66.197.173.1', 1120250879, 1120251137, 'US', 'United States'), +('66.197.173.2', '66.197.173.49', 1120251138, 1120251185, 'BR', 'Brazil'), +('66.197.173.50', '66.197.173.99', 1120251186, 1120251235, 'IN', 'India'), +('66.197.173.100', '66.197.173.214', 1120251236, 1120251350, 'US', 'United States'), +('66.197.173.215', '66.197.173.254', 1120251351, 1120251390, 'IN', 'India'), +('66.197.173.255', '66.197.174.4', 1120251391, 1120251396, 'US', 'United States'), +('66.197.174.5', '66.197.174.30', 1120251397, 1120251422, 'IE', 'Ireland'), +('66.197.174.31', '66.197.174.49', 1120251423, 1120251441, 'US', 'United States'), +('66.197.174.50', '66.197.174.69', 1120251442, 1120251461, 'AU', 'Australia'), +('66.197.174.70', '66.197.174.79', 1120251462, 1120251471, 'US', 'United States'), +('66.197.174.80', '66.197.174.89', 1120251472, 1120251481, 'IT', 'Italy'), +('66.197.174.90', '66.197.176.4', 1120251482, 1120251908, 'US', 'United States'), +('66.197.176.5', '66.197.176.254', 1120251909, 1120252158, 'IE', 'Ireland'), +('66.197.176.255', '66.197.178.1', 1120252159, 1120252417, 'US', 'United States'), +('66.197.178.2', '66.197.178.254', 1120252418, 1120252670, 'CA', 'Canada'), +('66.197.178.255', '66.197.198.228', 1120252671, 1120257764, 'US', 'United States'), +('66.197.198.229', '66.197.198.248', 1120257765, 1120257784, 'IE', 'Ireland'), +('66.197.198.249', '66.197.255.255', 1120257785, 1120272383, 'US', 'United States'), +('66.198.0.0', '66.198.33.255', 1120272384, 1120281087, 'CA', 'Canada'), +('66.198.34.0', '66.198.34.7', 1120281088, 1120281095, 'PG', 'Papua New Guinea'), +('66.198.34.8', '66.198.34.15', 1120281096, 1120281103, 'LB', 'Lebanon'), +('66.198.34.16', '66.198.34.23', 1120281104, 1120281111, 'CA', 'Canada'), +('66.198.34.24', '66.198.34.31', 1120281112, 1120281119, 'US', 'United States'), +('66.198.34.32', '66.198.34.47', 1120281120, 1120281135, 'ZA', 'South Africa'), +('66.198.34.48', '66.198.35.31', 1120281136, 1120281375, 'CA', 'Canada'), +('66.198.35.32', '66.198.35.39', 1120281376, 1120281383, 'AR', 'Argentina'), +('66.198.35.40', '66.198.35.47', 1120281384, 1120281391, 'US', 'United States'), +('66.198.35.48', '66.198.35.63', 1120281392, 1120281407, 'ZA', 'South Africa'), +('66.198.35.64', '66.198.35.255', 1120281408, 1120281599, 'CA', 'Canada'), +('66.198.36.0', '66.198.38.255', 1120281600, 1120282367, 'US', 'United States'), +('66.198.39.0', '66.198.39.255', 1120282368, 1120282623, 'SY', 'Syrian Arab Republic'), +('66.198.40.0', '66.198.40.255', 1120282624, 1120282879, 'CA', 'Canada'), +('66.198.41.0', '66.198.41.255', 1120282880, 1120283135, 'SY', 'Syrian Arab Republic'), +('66.198.42.0', '66.198.43.255', 1120283136, 1120283647, 'CA', 'Canada'), +('66.198.44.0', '66.198.47.255', 1120283648, 1120284671, 'EC', 'Ecuador'), +('66.198.48.0', '66.198.55.255', 1120284672, 1120286719, 'CA', 'Canada'), +('66.198.56.0', '66.198.63.255', 1120286720, 1120288767, 'US', 'United States'), +('66.198.64.0', '66.198.103.255', 1120288768, 1120299007, 'CA', 'Canada'), +('66.198.104.0', '66.198.104.255', 1120299008, 1120299263, 'PK', 'Pakistan'), +('66.198.105.0', '66.198.105.255', 1120299264, 1120299519, 'CA', 'Canada'), +('66.198.106.0', '66.198.110.255', 1120299520, 1120300799, 'PK', 'Pakistan'), +('66.198.111.0', '66.198.131.255', 1120300800, 1120306175, 'CA', 'Canada'), +('66.198.132.0', '66.198.134.255', 1120306176, 1120306943, 'PH', 'Philippines'), +('66.198.135.0', '66.198.135.255', 1120306944, 1120307199, 'CA', 'Canada'), +('66.198.136.0', '66.198.138.255', 1120307200, 1120307967, 'EC', 'Ecuador'), +('66.198.139.0', '66.198.139.255', 1120307968, 1120308223, 'PH', 'Philippines'), +('66.198.140.0', '66.198.143.255', 1120308224, 1120309247, 'HT', 'Haiti'), +('66.198.144.0', '66.198.146.255', 1120309248, 1120310015, 'CA', 'Canada'), +('66.198.147.0', '66.198.149.255', 1120310016, 1120310783, 'PH', 'Philippines'), +('66.198.150.0', '66.198.154.255', 1120310784, 1120312063, 'CA', 'Canada'), +('66.198.155.0', '66.198.156.127', 1120312064, 1120312447, 'PH', 'Philippines'), +('66.198.156.128', '66.198.156.255', 1120312448, 1120312575, 'US', 'United States'), +('66.198.157.0', '66.198.157.255', 1120312576, 1120312831, 'PH', 'Philippines'), +('66.198.158.0', '66.198.166.255', 1120312832, 1120315135, 'CA', 'Canada'), +('66.198.167.0', '66.198.167.255', 1120315136, 1120315391, 'US', 'United States'), +('66.198.168.0', '66.198.191.255', 1120315392, 1120321535, 'CA', 'Canada'), +('66.198.192.0', '66.199.127.255', 1120321536, 1120370687, 'US', 'United States'), +('66.199.128.0', '66.199.131.55', 1120370688, 1120371511, 'CA', 'Canada'), +('66.199.131.56', '66.199.131.63', 1120371512, 1120371519, 'US', 'United States'), +('66.199.131.64', '66.199.131.191', 1120371520, 1120371647, 'CA', 'Canada'), +('66.199.131.192', '66.199.131.195', 1120371648, 1120371651, 'US', 'United States'), +('66.199.131.196', '66.199.131.255', 1120371652, 1120371711, 'CA', 'Canada'), +('66.199.132.0', '66.199.133.95', 1120371712, 1120372063, 'US', 'United States'), +('66.199.133.96', '66.199.133.111', 1120372064, 1120372079, 'CA', 'Canada'), +('66.199.133.112', '66.199.133.255', 1120372080, 1120372223, 'US', 'United States'), +('66.199.134.0', '66.199.134.255', 1120372224, 1120372479, 'CA', 'Canada'), +('66.199.135.0', '66.199.135.255', 1120372480, 1120372735, 'US', 'United States'), +('66.199.136.0', '66.199.136.255', 1120372736, 1120372991, 'CA', 'Canada'), +('66.199.137.0', '66.199.137.255', 1120372992, 1120373247, 'US', 'United States'), +('66.199.138.0', '66.199.141.31', 1120373248, 1120374047, 'CA', 'Canada'), +('66.199.141.32', '66.199.141.47', 1120374048, 1120374063, 'US', 'United States'), +('66.199.141.48', '66.199.141.255', 1120374064, 1120374271, 'CA', 'Canada'), +('66.199.142.0', '66.199.142.63', 1120374272, 1120374335, 'US', 'United States'), +('66.199.142.64', '66.199.142.111', 1120374336, 1120374383, 'CA', 'Canada'), +('66.199.142.112', '66.199.142.143', 1120374384, 1120374415, 'US', 'United States'), +('66.199.142.144', '66.199.142.239', 1120374416, 1120374511, 'CA', 'Canada'), +('66.199.142.240', '66.199.142.255', 1120374512, 1120374527, 'US', 'United States'), +('66.199.143.0', '66.199.145.143', 1120374528, 1120375183, 'CA', 'Canada'), +('66.199.145.144', '66.199.145.159', 1120375184, 1120375199, 'US', 'United States'), +('66.199.145.160', '66.199.145.191', 1120375200, 1120375231, 'CA', 'Canada'), +('66.199.145.192', '66.199.145.223', 1120375232, 1120375263, 'US', 'United States'), +('66.199.145.224', '66.199.148.255', 1120375264, 1120376063, 'CA', 'Canada'), +('66.199.149.0', '66.199.149.63', 1120376064, 1120376127, 'US', 'United States'), +('66.199.149.64', '66.199.149.127', 1120376128, 1120376191, 'CA', 'Canada'), +('66.199.149.128', '66.199.149.143', 1120376192, 1120376207, 'GB', 'United Kingdom'), +('66.199.149.144', '66.199.149.159', 1120376208, 1120376223, 'CA', 'Canada'), +('66.199.149.160', '66.199.149.191', 1120376224, 1120376255, 'US', 'United States'), +('66.199.149.192', '66.199.149.223', 1120376256, 1120376287, 'CA', 'Canada'), +('66.199.149.224', '66.199.149.239', 1120376288, 1120376303, 'US', 'United States'), +('66.199.149.240', '66.199.150.7', 1120376304, 1120376327, 'CA', 'Canada'), +('66.199.150.8', '66.199.150.255', 1120376328, 1120376575, 'US', 'United States'), +('66.199.151.0', '66.199.151.95', 1120376576, 1120376671, 'CA', 'Canada'), +('66.199.151.96', '66.199.151.191', 1120376672, 1120376767, 'US', 'United States'), +('66.199.151.192', '66.199.151.239', 1120376768, 1120376815, 'CA', 'Canada'), +('66.199.151.240', '66.199.151.255', 1120376816, 1120376831, 'US', 'United States'), +('66.199.152.0', '66.199.153.79', 1120376832, 1120377167, 'CA', 'Canada'), +('66.199.153.80', '66.199.153.111', 1120377168, 1120377199, 'US', 'United States'), +('66.199.153.112', '66.199.153.127', 1120377200, 1120377215, 'CA', 'Canada'), +('66.199.153.128', '66.199.153.159', 1120377216, 1120377247, 'US', 'United States'), +('66.199.153.160', '66.199.154.255', 1120377248, 1120377599, 'CA', 'Canada'), +('66.199.155.0', '66.199.155.127', 1120377600, 1120377727, 'US', 'United States'), +('66.199.155.128', '66.199.155.191', 1120377728, 1120377791, 'CA', 'Canada'), +('66.199.155.192', '66.199.155.255', 1120377792, 1120377855, 'US', 'United States'), +('66.199.156.0', '66.199.157.255', 1120377856, 1120378367, 'CA', 'Canada'), +('66.199.158.0', '66.199.158.255', 1120378368, 1120378623, 'US', 'United States'), +('66.199.159.0', '66.199.160.39', 1120378624, 1120378919, 'CA', 'Canada'), +('66.199.160.40', '66.199.160.47', 1120378920, 1120378927, 'US', 'United States'), +('66.199.160.48', '66.199.163.254', 1120378928, 1120379902, 'CA', 'Canada'), +('66.199.163.255', '66.199.163.255', 1120379903, 1120379903, 'US', 'United States'), +('66.199.164.0', '66.199.164.31', 1120379904, 1120379935, 'CA', 'Canada'), +('66.199.164.32', '66.199.164.143', 1120379936, 1120380047, 'US', 'United States'), +('66.199.164.144', '66.199.164.159', 1120380048, 1120380063, 'CA', 'Canada'), +('66.199.164.160', '66.199.165.255', 1120380064, 1120380415, 'US', 'United States'), +('66.199.166.0', '66.199.166.15', 1120380416, 1120380431, 'VG', 'Virgin Islands, British'), +('66.199.166.16', '66.199.166.31', 1120380432, 1120380447, 'CA', 'Canada'), +('66.199.166.32', '66.199.166.63', 1120380448, 1120380479, 'US', 'United States'), +('66.199.166.64', '66.199.166.95', 1120380480, 1120380511, 'CA', 'Canada'), +('66.199.166.96', '66.199.166.127', 1120380512, 1120380543, 'US', 'United States'), +('66.199.166.128', '66.199.166.223', 1120380544, 1120380639, 'CA', 'Canada'), +('66.199.166.224', '66.199.166.239', 1120380640, 1120380655, 'US', 'United States'), +('66.199.166.240', '66.199.166.255', 1120380656, 1120380671, 'CA', 'Canada'), +('66.199.167.0', '66.199.167.255', 1120380672, 1120380927, 'US', 'United States'), +('66.199.168.0', '66.199.168.127', 1120380928, 1120381055, 'CA', 'Canada'), +('66.199.168.128', '66.199.168.143', 1120381056, 1120381071, 'US', 'United States'), +('66.199.168.144', '66.199.168.159', 1120381072, 1120381087, 'PA', 'Panama'), +('66.199.168.160', '66.199.168.167', 1120381088, 1120381095, 'US', 'United States'), +('66.199.168.168', '66.199.168.175', 1120381096, 1120381103, 'CA', 'Canada'), +('66.199.168.176', '66.199.168.191', 1120381104, 1120381119, 'US', 'United States'), +('66.199.168.192', '66.199.173.23', 1120381120, 1120382231, 'CA', 'Canada'), +('66.199.173.24', '66.199.173.31', 1120382232, 1120382239, 'US', 'United States'), +('66.199.173.32', '66.199.173.63', 1120382240, 1120382271, 'CA', 'Canada'), +('66.199.173.64', '66.199.173.127', 1120382272, 1120382335, 'US', 'United States'), +('66.199.173.128', '66.199.173.223', 1120382336, 1120382431, 'CA', 'Canada'), +('66.199.173.224', '66.199.173.255', 1120382432, 1120382463, 'US', 'United States'), +('66.199.174.0', '66.199.175.255', 1120382464, 1120382975, 'CA', 'Canada'), +('66.199.176.0', '66.199.177.31', 1120382976, 1120383263, 'US', 'United States'), +('66.199.177.32', '66.199.177.95', 1120383264, 1120383327, 'CA', 'Canada'), +('66.199.177.96', '66.199.177.111', 1120383328, 1120383343, 'US', 'United States'), +('66.199.177.112', '66.199.177.135', 1120383344, 1120383367, 'CA', 'Canada'), +('66.199.177.136', '66.199.177.191', 1120383368, 1120383423, 'US', 'United States'), +('66.199.177.192', '66.199.177.207', 1120383424, 1120383439, 'CA', 'Canada'), +('66.199.177.208', '66.199.179.31', 1120383440, 1120383775, 'US', 'United States'), +('66.199.179.32', '66.199.179.63', 1120383776, 1120383807, 'CA', 'Canada'), +('66.199.179.64', '66.199.179.95', 1120383808, 1120383839, 'US', 'United States'), +('66.199.179.96', '66.199.179.207', 1120383840, 1120383951, 'CA', 'Canada'), +('66.199.179.208', '66.199.179.255', 1120383952, 1120383999, 'US', 'United States'), +('66.199.180.0', '66.199.180.95', 1120384000, 1120384095, 'CA', 'Canada'), +('66.199.180.96', '66.199.180.127', 1120384096, 1120384127, 'US', 'United States'), +('66.199.180.128', '66.199.183.255', 1120384128, 1120385023, 'CA', 'Canada'), +('66.199.184.0', '66.199.184.111', 1120385024, 1120385135, 'US', 'United States'), +('66.199.184.112', '66.199.184.119', 1120385136, 1120385143, 'CA', 'Canada'), +('66.199.184.120', '66.199.184.127', 1120385144, 1120385151, 'US', 'United States'), +('66.199.184.128', '66.199.184.159', 1120385152, 1120385183, 'GB', 'United Kingdom'), +('66.199.184.160', '66.199.185.255', 1120385184, 1120385535, 'CA', 'Canada'), +('66.199.186.0', '66.201.65.127', 1120385536, 1120485759, 'US', 'United States'), +('66.201.65.128', '66.201.65.255', 1120485760, 1120485887, 'CA', 'Canada'), +('66.201.66.0', '66.201.66.63', 1120485888, 1120485951, 'US', 'United States'), +('66.201.66.64', '66.201.66.127', 1120485952, 1120486015, 'KN', 'Saint Kitts and Nevis'), +('66.201.66.128', '66.201.66.191', 1120486016, 1120486079, 'US', 'United States'), +('66.201.66.192', '66.201.66.255', 1120486080, 1120486143, 'IN', 'India'), +('66.201.67.0', '66.201.67.255', 1120486144, 1120486399, 'US', 'United States'), +('66.201.68.0', '66.201.69.255', 1120486400, 1120486911, 'CA', 'Canada'), +('66.201.70.0', '66.201.70.127', 1120486912, 1120487039, 'US', 'United States'), +('66.201.70.128', '66.201.70.255', 1120487040, 1120487167, 'CA', 'Canada'), +('66.201.71.0', '66.201.71.31', 1120487168, 1120487199, 'US', 'United States'), +('66.201.71.32', '66.201.71.63', 1120487200, 1120487231, 'CA', 'Canada'), +('66.201.71.64', '66.201.71.191', 1120487232, 1120487359, 'US', 'United States'), +('66.201.71.192', '66.201.71.223', 1120487360, 1120487391, 'CA', 'Canada'), +('66.201.71.224', '66.201.71.255', 1120487392, 1120487423, 'BE', 'Belgium'), +('66.201.72.0', '66.201.72.255', 1120487424, 1120487679, 'CA', 'Canada'), +('66.201.73.0', '66.201.73.255', 1120487680, 1120487935, 'US', 'United States'), +('66.201.74.0', '66.201.74.255', 1120487936, 1120488191, 'CA', 'Canada'), +('66.201.75.0', '66.201.75.255', 1120488192, 1120488447, 'US', 'United States'), +('66.201.76.0', '66.201.76.255', 1120488448, 1120488703, 'CA', 'Canada'), +('66.201.77.0', '66.201.77.63', 1120488704, 1120488767, 'US', 'United States'), +('66.201.77.64', '66.201.77.95', 1120488768, 1120488799, 'VE', 'Venezuela'), +('66.201.77.96', '66.201.77.127', 1120488800, 1120488831, 'IL', 'Israel'), +('66.201.77.128', '66.201.77.159', 1120488832, 1120488863, 'CA', 'Canada'), +('66.201.77.160', '66.201.77.191', 1120488864, 1120488895, 'BE', 'Belgium'), +('66.201.77.192', '66.201.77.223', 1120488896, 1120488927, 'KN', 'Saint Kitts and Nevis'), +('66.201.77.224', '66.201.78.255', 1120488928, 1120489215, 'US', 'United States'), +('66.201.79.0', '66.201.79.127', 1120489216, 1120489343, 'CA', 'Canada'), +('66.201.79.128', '66.201.79.255', 1120489344, 1120489471, 'US', 'United States'), +('66.201.80.0', '66.201.80.255', 1120489472, 1120489727, 'CA', 'Canada'), +('66.201.81.0', '66.201.81.255', 1120489728, 1120489983, 'US', 'United States'), +('66.201.82.0', '66.201.82.127', 1120489984, 1120490111, 'SG', 'Singapore'), +('66.201.82.128', '66.201.84.255', 1120490112, 1120490751, 'CA', 'Canada'), +('66.201.85.0', '66.201.85.31', 1120490752, 1120490783, 'GB', 'United Kingdom'), +('66.201.85.32', '66.201.85.255', 1120490784, 1120491007, 'US', 'United States'), +('66.201.86.0', '66.201.88.255', 1120491008, 1120491775, 'CA', 'Canada'), +('66.201.89.0', '66.201.91.127', 1120491776, 1120492415, 'US', 'United States'), +('66.201.91.128', '66.201.91.255', 1120492416, 1120492543, 'FR', 'France'), +('66.201.92.0', '66.201.93.255', 1120492544, 1120493055, 'CA', 'Canada'), +('66.201.94.0', '66.201.94.31', 1120493056, 1120493087, 'IN', 'India'), +('66.201.94.32', '66.201.94.127', 1120493088, 1120493183, 'US', 'United States'), +('66.201.94.128', '66.201.94.159', 1120493184, 1120493215, 'CA', 'Canada'), +('66.201.94.160', '66.201.94.191', 1120493216, 1120493247, 'BE', 'Belgium'), +('66.201.94.192', '66.201.94.255', 1120493248, 1120493311, 'US', 'United States'), +('66.201.95.0', '66.201.95.255', 1120493312, 1120493567, 'CA', 'Canada'), +('66.201.96.0', '66.201.96.255', 1120493568, 1120493823, 'US', 'United States'), +('66.201.97.0', '66.201.97.255', 1120493824, 1120494079, 'CA', 'Canada'), +('66.201.98.0', '66.201.98.255', 1120494080, 1120494335, 'US', 'United States'), +('66.201.99.0', '66.201.99.255', 1120494336, 1120494591, 'CA', 'Canada'), +('66.201.100.0', '66.201.102.255', 1120494592, 1120495359, 'US', 'United States'), +('66.201.103.0', '66.201.103.255', 1120495360, 1120495615, 'CA', 'Canada'), +('66.201.104.0', '66.201.104.127', 1120495616, 1120495743, 'US', 'United States'), +('66.201.104.128', '66.201.104.255', 1120495744, 1120495871, 'SG', 'Singapore'), +('66.201.105.0', '66.201.105.95', 1120495872, 1120495967, 'US', 'United States'), +('66.201.105.96', '66.201.105.127', 1120495968, 1120495999, 'CA', 'Canada'), +('66.201.105.128', '66.201.106.95', 1120496000, 1120496223, 'US', 'United States'), +('66.201.106.96', '66.201.106.127', 1120496224, 1120496255, 'BE', 'Belgium'), +('66.201.106.128', '66.201.106.159', 1120496256, 1120496287, 'CA', 'Canada'), +('66.201.106.160', '66.201.107.1', 1120496288, 1120496385, 'US', 'United States'), +('66.201.107.2', '66.201.107.254', 1120496386, 1120496638, 'CA', 'Canada'), +('66.201.107.255', '66.201.107.255', 1120496639, 1120496639, 'US', 'United States'), +('66.201.108.0', '66.201.109.127', 1120496640, 1120497023, 'CA', 'Canada'), +('66.201.109.128', '66.201.109.255', 1120497024, 1120497151, 'IN', 'India'), +('66.201.110.0', '66.201.110.31', 1120497152, 1120497183, 'BE', 'Belgium'), +('66.201.110.32', '66.201.110.63', 1120497184, 1120497215, 'US', 'United States'), +('66.201.110.64', '66.201.110.95', 1120497216, 1120497247, 'BE', 'Belgium'), +('66.201.110.96', '66.201.110.223', 1120497248, 1120497375, 'US', 'United States'), +('66.201.110.224', '66.201.111.255', 1120497376, 1120497663, 'CA', 'Canada'), +('66.201.112.0', '66.201.112.127', 1120497664, 1120497791, 'MY', 'Malaysia'), +('66.201.112.128', '66.201.112.255', 1120497792, 1120497919, 'AU', 'Australia'), +('66.201.113.0', '66.201.113.63', 1120497920, 1120497983, 'US', 'United States'), +('66.201.113.64', '66.201.113.93', 1120497984, 1120498013, 'BE', 'Belgium'), +('66.201.113.94', '66.201.113.223', 1120498014, 1120498143, 'US', 'United States'), +('66.201.113.224', '66.201.113.255', 1120498144, 1120498175, 'CA', 'Canada'), +('66.201.114.0', '66.201.116.255', 1120498176, 1120498943, 'US', 'United States'), +('66.201.117.0', '66.201.117.255', 1120498944, 1120499199, 'CA', 'Canada'), +('66.201.118.0', '66.201.119.31', 1120499200, 1120499487, 'US', 'United States'), +('66.201.119.32', '66.201.119.63', 1120499488, 1120499519, 'CA', 'Canada'), +('66.201.119.64', '66.201.123.159', 1120499520, 1120500639, 'US', 'United States'), +('66.201.123.160', '66.201.123.191', 1120500640, 1120500671, 'BE', 'Belgium'), +('66.201.123.192', '66.201.125.255', 1120500672, 1120501247, 'US', 'United States'), +('66.201.126.0', '66.201.126.255', 1120501248, 1120501503, 'CA', 'Canada'), +('66.201.127.0', '66.201.159.255', 1120501504, 1120509951, 'US', 'United States'), +('66.201.160.0', '66.201.183.255', 1120509952, 1120516095, 'SV', 'El Salvador'), +('66.201.184.0', '66.201.188.255', 1120516096, 1120517375, 'US', 'United States'), +('66.201.189.0', '66.201.189.255', 1120517376, 1120517631, 'AR', 'Argentina'), +('66.201.190.0', '66.201.190.255', 1120517632, 1120517887, 'US', 'United States'), +('66.201.191.0', '66.201.191.255', 1120517888, 1120518143, 'CL', 'Chile'), +('66.201.192.0', '66.201.255.255', 1120518144, 1120534527, 'CA', 'Canada'), +('66.202.0.0', '66.203.65.103', 1120534528, 1120616807, 'US', 'United States'), +('66.203.65.104', '66.203.65.111', 1120616808, 1120616815, 'CA', 'Canada'), +('66.203.65.112', '66.203.159.255', 1120616816, 1120641023, 'US', 'United States'), +('66.203.160.0', '66.203.223.255', 1120641024, 1120657407, 'CA', 'Canada'), +('66.203.224.0', '66.205.7.255', 1120657408, 1120733183, 'US', 'United States'), +('66.205.8.0', '66.205.15.255', 1120733184, 1120735231, 'BB', 'Barbados'), +('66.205.16.0', '66.205.16.255', 1120735232, 1120735487, 'US', 'United States'), +('66.205.17.0', '66.205.17.255', 1120735488, 1120735743, 'BB', 'Barbados'), +('66.205.18.0', '66.205.19.207', 1120735744, 1120736207, 'US', 'United States'), +('66.205.19.208', '66.205.19.223', 1120736208, 1120736223, 'PY', 'Paraguay'), +('66.205.19.224', '66.205.22.223', 1120736224, 1120736991, 'US', 'United States'), +('66.205.22.224', '66.205.22.239', 1120736992, 1120737007, 'KN', 'Saint Kitts and Nevis'), +('66.205.22.240', '66.205.22.255', 1120737008, 1120737023, 'US', 'United States'), +('66.205.23.0', '66.205.23.255', 1120737024, 1120737279, 'BS', 'Bahamas'), +('66.205.24.0', '66.205.34.111', 1120737280, 1120739951, 'US', 'United States'), +('66.205.34.112', '66.205.34.143', 1120739952, 1120739983, 'MX', 'Mexico'), +('66.205.34.144', '66.205.34.151', 1120739984, 1120739991, 'US', 'United States'), +('66.205.34.152', '66.205.34.239', 1120739992, 1120740079, 'MX', 'Mexico'), +('66.205.34.240', '66.205.34.255', 1120740080, 1120740095, 'US', 'United States'), +('66.205.35.0', '66.205.35.255', 1120740096, 1120740351, 'MX', 'Mexico'), +('66.205.36.0', '66.205.39.255', 1120740352, 1120741375, 'TT', 'Trinidad and Tobago'), +('66.205.40.0', '66.205.40.255', 1120741376, 1120741631, 'US', 'United States'), +('66.205.41.0', '66.205.41.255', 1120741632, 1120741887, 'MX', 'Mexico'), +('66.205.42.0', '66.205.47.255', 1120741888, 1120743423, 'US', 'United States'), +('66.205.48.0', '66.205.48.255', 1120743424, 1120743679, 'KN', 'Saint Kitts and Nevis'), +('66.205.49.0', '66.205.51.255', 1120743680, 1120744447, 'US', 'United States'), +('66.205.52.0', '66.205.52.255', 1120744448, 1120744703, 'KN', 'Saint Kitts and Nevis'), +('66.205.53.0', '66.206.223.255', 1120744704, 1120854015, 'US', 'United States'), +('66.206.224.0', '66.206.255.255', 1120854016, 1120862207, 'CA', 'Canada'), +('66.207.0.0', '66.207.31.255', 1120862208, 1120870399, 'US', 'United States'), +('66.207.48.0', '66.207.63.255', 1120874496, 1120878591, 'A2', 'Satellite Provider'), +('66.207.64.0', '66.207.95.255', 1120878592, 1120886783, 'US', 'United States'), +('66.207.96.0', '66.207.127.255', 1120886784, 1120894975, 'CA', 'Canada'), +('66.207.128.0', '66.207.191.255', 1120894976, 1120911359, 'US', 'United States'), +('66.207.192.0', '66.207.199.231', 1120911360, 1120913383, 'CA', 'Canada'), +('66.207.199.232', '66.207.199.239', 1120913384, 1120913391, 'GE', 'Georgia'), +('66.207.199.240', '66.207.203.239', 1120913392, 1120914415, 'CA', 'Canada'), +('66.207.203.240', '66.207.203.255', 1120914416, 1120914431, 'AT', 'Austria'), +('66.207.204.0', '66.207.204.255', 1120914432, 1120914687, 'CA', 'Canada'), +('66.207.205.0', '66.207.205.31', 1120914688, 1120914719, 'AG', 'Antigua and Barbuda'), +('66.207.205.32', '66.207.216.191', 1120914720, 1120917695, 'CA', 'Canada'), +('66.207.216.192', '66.207.216.199', 1120917696, 1120917703, 'GB', 'United Kingdom'), +('66.207.216.200', '66.207.220.95', 1120917704, 1120918623, 'CA', 'Canada'), +('66.207.220.96', '66.207.220.111', 1120918624, 1120918639, 'US', 'United States'), +('66.207.220.112', '66.207.223.255', 1120918640, 1120919551, 'CA', 'Canada'), +('66.207.224.0', '66.209.47.255', 1120919552, 1121005567, 'US', 'United States'), +('66.209.48.0', '66.209.63.255', 1121005568, 1121009663, 'CA', 'Canada'), +('66.209.64.0', '66.209.175.255', 1121009664, 1121038335, 'US', 'United States'), +('66.209.176.0', '66.209.191.255', 1121038336, 1121042431, 'CA', 'Canada'), +('66.209.192.0', '66.212.159.255', 1121042432, 1121230847, 'US', 'United States'), +('66.212.160.0', '66.212.164.247', 1121230848, 1121232119, 'CA', 'Canada'), +('66.212.164.248', '66.212.164.255', 1121232120, 1121232127, 'US', 'United States'), +('66.212.165.0', '66.212.169.127', 1121232128, 1121233279, 'CA', 'Canada'), +('66.212.169.128', '66.212.169.159', 1121233280, 1121233311, 'DE', 'Germany'), +('66.212.169.160', '66.212.170.47', 1121233312, 1121233455, 'CA', 'Canada'), +('66.212.170.48', '66.212.170.55', 1121233456, 1121233463, 'US', 'United States'), +('66.212.170.56', '66.212.170.63', 1121233464, 1121233471, 'DE', 'Germany'), +('66.212.170.64', '66.212.170.167', 1121233472, 1121233575, 'CA', 'Canada'), +('66.212.170.168', '66.212.170.175', 1121233576, 1121233583, 'US', 'United States'), +('66.212.170.176', '66.212.170.191', 1121233584, 1121233599, 'DE', 'Germany'), +('66.212.170.192', '66.212.191.255', 1121233600, 1121239039, 'CA', 'Canada'), +('66.212.192.0', '66.212.223.255', 1121239040, 1121247231, 'US', 'United States'), +('66.212.224.0', '66.212.224.15', 1121247232, 1121247247, 'CA', 'Canada'), +('66.212.224.16', '66.212.224.23', 1121247248, 1121247255, 'AG', 'Antigua and Barbuda'), +('66.212.224.24', '66.212.224.31', 1121247256, 1121247263, 'CA', 'Canada'), +('66.212.224.32', '66.212.224.39', 1121247264, 1121247271, 'CR', 'Costa Rica'), +('66.212.224.40', '66.212.224.47', 1121247272, 1121247279, 'CA', 'Canada'), +('66.212.224.48', '66.212.224.55', 1121247280, 1121247287, 'GI', 'Gibraltar'), +('66.212.224.56', '66.212.224.63', 1121247288, 1121247295, 'CY', 'Cyprus'), +('66.212.224.64', '66.212.224.255', 1121247296, 1121247487, 'CA', 'Canada'), +('66.212.225.0', '66.212.225.7', 1121247488, 1121247495, 'VG', 'Virgin Islands, British'), +('66.212.225.8', '66.212.225.15', 1121247496, 1121247503, 'CA', 'Canada'), +('66.212.225.16', '66.212.225.31', 1121247504, 1121247519, 'CR', 'Costa Rica'), +('66.212.225.32', '66.212.225.39', 1121247520, 1121247527, 'AW', 'Aruba'), +('66.212.225.40', '66.212.225.47', 1121247528, 1121247535, 'GI', 'Gibraltar'), +('66.212.225.48', '66.212.225.55', 1121247536, 1121247543, 'BZ', 'Belize'), +('66.212.225.56', '66.212.225.79', 1121247544, 1121247567, 'CA', 'Canada'), +('66.212.225.80', '66.212.225.95', 1121247568, 1121247583, 'PA', 'Panama'), +('66.212.225.96', '66.212.225.103', 1121247584, 1121247591, 'CY', 'Cyprus'), +('66.212.225.104', '66.212.225.127', 1121247592, 1121247615, 'CA', 'Canada'), +('66.212.225.128', '66.212.225.143', 1121247616, 1121247631, 'BZ', 'Belize'), +('66.212.225.144', '66.212.225.151', 1121247632, 1121247639, 'AW', 'Aruba'), +('66.212.225.152', '66.212.225.159', 1121247640, 1121247647, 'VG', 'Virgin Islands, British'), +('66.212.225.160', '66.212.225.175', 1121247648, 1121247663, 'US', 'United States'), +('66.212.225.176', '66.212.225.207', 1121247664, 1121247695, 'BZ', 'Belize'), +('66.212.225.208', '66.212.225.255', 1121247696, 1121247743, 'CA', 'Canada'), +('66.212.226.0', '66.212.226.31', 1121247744, 1121247775, 'BZ', 'Belize'), +('66.212.226.32', '66.212.226.79', 1121247776, 1121247823, 'CA', 'Canada'), +('66.212.226.80', '66.212.226.111', 1121247824, 1121247855, 'AG', 'Antigua and Barbuda'), +('66.212.226.112', '66.212.226.255', 1121247856, 1121247999, 'CA', 'Canada'), +('66.212.227.0', '66.212.227.7', 1121248000, 1121248007, 'AG', 'Antigua and Barbuda'), +('66.212.227.8', '66.212.227.15', 1121248008, 1121248015, 'TC', 'Turks and Caicos Islands'), +('66.212.227.16', '66.212.227.39', 1121248016, 1121248039, 'CA', 'Canada'), +('66.212.227.40', '66.212.227.55', 1121248040, 1121248055, 'AG', 'Antigua and Barbuda'), +('66.212.227.56', '66.212.227.63', 1121248056, 1121248063, 'TC', 'Turks and Caicos Islands'), +('66.212.227.64', '66.212.227.79', 1121248064, 1121248079, 'AG', 'Antigua and Barbuda'), +('66.212.227.80', '66.212.227.95', 1121248080, 1121248095, 'CA', 'Canada'), +('66.212.227.96', '66.212.227.111', 1121248096, 1121248111, 'AG', 'Antigua and Barbuda'), +('66.212.227.112', '66.212.227.127', 1121248112, 1121248127, 'CA', 'Canada'), +('66.212.227.128', '66.212.227.135', 1121248128, 1121248135, 'MT', 'Malta'), +('66.212.227.136', '66.212.227.159', 1121248136, 1121248159, 'CA', 'Canada'), +('66.212.227.160', '66.212.227.255', 1121248160, 1121248255, 'AG', 'Antigua and Barbuda'), +('66.212.228.0', '66.212.228.31', 1121248256, 1121248287, 'CA', 'Canada'), +('66.212.228.32', '66.212.228.47', 1121248288, 1121248303, 'BZ', 'Belize'), +('66.212.228.48', '66.212.228.55', 1121248304, 1121248311, 'CA', 'Canada'), +('66.212.228.56', '66.212.228.63', 1121248312, 1121248319, 'MT', 'Malta'), +('66.212.228.64', '66.212.228.87', 1121248320, 1121248343, 'CA', 'Canada'), +('66.212.228.88', '66.212.228.95', 1121248344, 1121248351, 'BZ', 'Belize'), +('66.212.228.96', '66.212.228.127', 1121248352, 1121248383, 'CR', 'Costa Rica'), +('66.212.228.128', '66.212.228.143', 1121248384, 1121248399, 'VG', 'Virgin Islands, British'), +('66.212.228.144', '66.212.228.151', 1121248400, 1121248407, 'CA', 'Canada'), +('66.212.228.152', '66.212.228.175', 1121248408, 1121248431, 'GB', 'United Kingdom'), +('66.212.228.176', '66.212.228.191', 1121248432, 1121248447, 'CA', 'Canada'), +('66.212.228.192', '66.212.228.223', 1121248448, 1121248479, 'MT', 'Malta'), +('66.212.228.224', '66.212.228.239', 1121248480, 1121248495, 'BZ', 'Belize'), +('66.212.228.240', '66.212.230.31', 1121248496, 1121248799, 'CA', 'Canada'), +('66.212.230.32', '66.212.230.63', 1121248800, 1121248831, 'GI', 'Gibraltar'), +('66.212.230.64', '66.212.230.95', 1121248832, 1121248863, 'CA', 'Canada'), +('66.212.230.96', '66.212.230.111', 1121248864, 1121248879, 'VG', 'Virgin Islands, British'), +('66.212.230.112', '66.212.230.143', 1121248880, 1121248911, 'CA', 'Canada'), +('66.212.230.144', '66.212.230.151', 1121248912, 1121248919, 'BZ', 'Belize'), +('66.212.230.152', '66.212.230.191', 1121248920, 1121248959, 'VG', 'Virgin Islands, British'), +('66.212.230.192', '66.212.230.215', 1121248960, 1121248983, 'CA', 'Canada'), +('66.212.230.216', '66.212.230.223', 1121248984, 1121248991, 'AW', 'Aruba'), +('66.212.230.224', '66.212.230.255', 1121248992, 1121249023, 'VG', 'Virgin Islands, British'), +('66.212.231.0', '66.212.231.255', 1121249024, 1121249279, 'CA', 'Canada'), +('66.212.232.0', '66.212.232.103', 1121249280, 1121249383, 'SE', 'Sweden'), +('66.212.232.104', '66.212.232.127', 1121249384, 1121249407, 'CA', 'Canada'), +('66.212.232.128', '66.212.232.159', 1121249408, 1121249439, 'AG', 'Antigua and Barbuda'), +('66.212.232.160', '66.212.233.7', 1121249440, 1121249543, 'CA', 'Canada'), +('66.212.233.8', '66.212.233.15', 1121249544, 1121249551, 'AG', 'Antigua and Barbuda'), +('66.212.233.16', '66.212.233.63', 1121249552, 1121249599, 'CA', 'Canada'), +('66.212.233.64', '66.212.233.79', 1121249600, 1121249615, 'AW', 'Aruba'), +('66.212.233.80', '66.212.233.95', 1121249616, 1121249631, 'CR', 'Costa Rica'), +('66.212.233.96', '66.212.233.255', 1121249632, 1121249791, 'CA', 'Canada'), +('66.212.234.0', '66.212.234.255', 1121249792, 1121250047, 'AG', 'Antigua and Barbuda'), +('66.212.235.0', '66.212.235.31', 1121250048, 1121250079, 'CR', 'Costa Rica'), +('66.212.235.32', '66.212.235.47', 1121250080, 1121250095, 'AG', 'Antigua and Barbuda'), +('66.212.235.48', '66.212.235.63', 1121250096, 1121250111, 'CA', 'Canada'), +('66.212.235.64', '66.212.235.95', 1121250112, 1121250143, 'GB', 'United Kingdom'), +('66.212.235.96', '66.212.235.103', 1121250144, 1121250151, 'CA', 'Canada'), +('66.212.235.104', '66.212.235.111', 1121250152, 1121250159, 'GB', 'United Kingdom'), +('66.212.235.112', '66.212.235.127', 1121250160, 1121250175, 'CA', 'Canada'), +('66.212.235.128', '66.212.235.135', 1121250176, 1121250183, 'AW', 'Aruba'), +('66.212.235.136', '66.212.235.159', 1121250184, 1121250207, 'BZ', 'Belize'), +('66.212.235.160', '66.212.235.175', 1121250208, 1121250223, 'GB', 'United Kingdom'), +('66.212.235.176', '66.212.235.191', 1121250224, 1121250239, 'AW', 'Aruba'), +('66.212.235.192', '66.212.235.255', 1121250240, 1121250303, 'GB', 'United Kingdom'), +('66.212.236.0', '66.212.237.255', 1121250304, 1121250815, 'BZ', 'Belize'), +('66.212.238.0', '66.212.238.15', 1121250816, 1121250831, 'AG', 'Antigua and Barbuda'), +('66.212.238.16', '66.212.238.31', 1121250832, 1121250847, 'CA', 'Canada'), +('66.212.238.32', '66.212.238.63', 1121250848, 1121250879, 'AG', 'Antigua and Barbuda'), +('66.212.238.64', '66.212.238.95', 1121250880, 1121250911, 'CA', 'Canada'), +('66.212.238.96', '66.212.238.111', 1121250912, 1121250927, 'VG', 'Virgin Islands, British'), +('66.212.238.112', '66.212.238.119', 1121250928, 1121250935, 'CA', 'Canada'), +('66.212.238.120', '66.212.238.191', 1121250936, 1121251007, 'BZ', 'Belize'), +('66.212.238.192', '66.212.238.199', 1121251008, 1121251015, 'VG', 'Virgin Islands, British'), +('66.212.238.200', '66.212.238.207', 1121251016, 1121251023, 'CR', 'Costa Rica'), +('66.212.238.208', '66.212.238.223', 1121251024, 1121251039, 'CA', 'Canada'), +('66.212.238.224', '66.212.238.231', 1121251040, 1121251047, 'CR', 'Costa Rica'), +('66.212.238.232', '66.212.238.239', 1121251048, 1121251055, 'AW', 'Aruba'), +('66.212.238.240', '66.212.238.255', 1121251056, 1121251071, 'CA', 'Canada'), +('66.212.239.0', '66.212.239.7', 1121251072, 1121251079, 'GB', 'United Kingdom'), +('66.212.239.8', '66.212.239.15', 1121251080, 1121251087, 'CA', 'Canada'), +('66.212.239.16', '66.212.239.31', 1121251088, 1121251103, 'CY', 'Cyprus'), +('66.212.239.32', '66.212.239.63', 1121251104, 1121251135, 'CA', 'Canada'), +('66.212.239.64', '66.212.239.95', 1121251136, 1121251167, 'AG', 'Antigua and Barbuda'), +('66.212.239.96', '66.212.239.127', 1121251168, 1121251199, 'CA', 'Canada'), +('66.212.239.128', '66.212.239.191', 1121251200, 1121251263, 'AW', 'Aruba'), +('66.212.239.192', '66.212.239.207', 1121251264, 1121251279, 'CA', 'Canada'), +('66.212.239.208', '66.212.239.215', 1121251280, 1121251287, 'CR', 'Costa Rica'), +('66.212.239.216', '66.212.239.223', 1121251288, 1121251295, 'MU', 'Mauritius'), +('66.212.239.224', '66.212.239.239', 1121251296, 1121251311, 'IM', 'Isle of Man'), +('66.212.239.240', '66.212.240.255', 1121251312, 1121251583, 'CA', 'Canada'), +('66.212.241.0', '66.212.241.7', 1121251584, 1121251591, 'BZ', 'Belize'), +('66.212.241.8', '66.212.241.23', 1121251592, 1121251607, 'CA', 'Canada'), +('66.212.241.24', '66.212.241.31', 1121251608, 1121251615, 'BZ', 'Belize'), +('66.212.241.32', '66.212.241.63', 1121251616, 1121251647, 'NL', 'Netherlands'), +('66.212.241.64', '66.212.241.79', 1121251648, 1121251663, 'CA', 'Canada'), +('66.212.241.80', '66.212.241.87', 1121251664, 1121251671, 'MT', 'Malta'), +('66.212.241.88', '66.212.241.95', 1121251672, 1121251679, 'CA', 'Canada'), +('66.212.241.96', '66.212.241.103', 1121251680, 1121251687, 'AG', 'Antigua and Barbuda'), +('66.212.241.104', '66.212.241.191', 1121251688, 1121251775, 'BZ', 'Belize'), +('66.212.241.192', '66.212.241.207', 1121251776, 1121251791, 'CA', 'Canada'), +('66.212.241.208', '66.212.241.223', 1121251792, 1121251807, 'VG', 'Virgin Islands, British'), +('66.212.241.224', '66.212.241.247', 1121251808, 1121251831, 'CA', 'Canada'), +('66.212.241.248', '66.212.241.255', 1121251832, 1121251839, 'AG', 'Antigua and Barbuda'), +('66.212.242.0', '66.212.242.7', 1121251840, 1121251847, 'BZ', 'Belize'), +('66.212.242.8', '66.212.242.31', 1121251848, 1121251871, 'CA', 'Canada'), +('66.212.242.32', '66.212.242.47', 1121251872, 1121251887, 'VG', 'Virgin Islands, British'), +('66.212.242.48', '66.212.242.63', 1121251888, 1121251903, 'CA', 'Canada'), +('66.212.242.64', '66.212.242.95', 1121251904, 1121251935, 'AG', 'Antigua and Barbuda'), +('66.212.242.96', '66.212.242.103', 1121251936, 1121251943, 'CY', 'Cyprus'), +('66.212.242.104', '66.212.242.111', 1121251944, 1121251951, 'PA', 'Panama'), +('66.212.242.112', '66.212.242.127', 1121251952, 1121251967, 'GB', 'United Kingdom'), +('66.212.242.128', '66.212.242.143', 1121251968, 1121251983, 'PA', 'Panama'), +('66.212.242.144', '66.212.242.151', 1121251984, 1121251991, 'CR', 'Costa Rica'), +('66.212.242.152', '66.212.242.159', 1121251992, 1121251999, 'AG', 'Antigua and Barbuda'), +('66.212.242.160', '66.212.242.191', 1121252000, 1121252031, 'CR', 'Costa Rica'), +('66.212.242.192', '66.212.242.223', 1121252032, 1121252063, 'CA', 'Canada'), +('66.212.242.224', '66.212.242.255', 1121252064, 1121252095, 'AG', 'Antigua and Barbuda'), +('66.212.243.0', '66.212.243.255', 1121252096, 1121252351, 'CA', 'Canada'), +('66.212.244.0', '66.212.244.7', 1121252352, 1121252359, 'AG', 'Antigua and Barbuda'), +('66.212.244.8', '66.212.244.23', 1121252360, 1121252375, 'CA', 'Canada'), +('66.212.244.24', '66.212.244.31', 1121252376, 1121252383, 'PA', 'Panama'), +('66.212.244.32', '66.212.244.39', 1121252384, 1121252391, 'CR', 'Costa Rica'), +('66.212.244.40', '66.212.244.47', 1121252392, 1121252399, 'CA', 'Canada'), +('66.212.244.48', '66.212.244.63', 1121252400, 1121252415, 'PA', 'Panama'), +('66.212.244.64', '66.212.244.127', 1121252416, 1121252479, 'GI', 'Gibraltar'), +('66.212.244.128', '66.212.244.255', 1121252480, 1121252607, 'CR', 'Costa Rica'), +('66.212.245.0', '66.212.245.63', 1121252608, 1121252671, 'AW', 'Aruba'), +('66.212.245.64', '66.212.245.127', 1121252672, 1121252735, 'BZ', 'Belize'), +('66.212.245.128', '66.212.245.255', 1121252736, 1121252863, 'CR', 'Costa Rica'), +('66.212.246.0', '66.212.246.255', 1121252864, 1121253119, 'BZ', 'Belize'), +('66.212.247.0', '66.212.248.255', 1121253120, 1121253631, 'CA', 'Canada'), +('66.212.249.0', '66.212.249.255', 1121253632, 1121253887, 'CR', 'Costa Rica'), +('66.212.250.0', '66.212.250.255', 1121253888, 1121254143, 'BZ', 'Belize'), +('66.212.251.0', '66.212.251.7', 1121254144, 1121254151, 'CA', 'Canada'), +('66.212.251.8', '66.212.251.15', 1121254152, 1121254159, 'AG', 'Antigua and Barbuda'), +('66.212.251.16', '66.212.251.23', 1121254160, 1121254167, 'GI', 'Gibraltar'), +('66.212.251.24', '66.212.251.47', 1121254168, 1121254191, 'CA', 'Canada'), +('66.212.251.48', '66.212.251.55', 1121254192, 1121254199, 'CR', 'Costa Rica'), +('66.212.251.56', '66.212.251.63', 1121254200, 1121254207, 'AW', 'Aruba'), +('66.212.251.64', '66.212.251.71', 1121254208, 1121254215, 'GI', 'Gibraltar'), +('66.212.251.72', '66.212.251.79', 1121254216, 1121254223, 'CR', 'Costa Rica'), +('66.212.251.80', '66.212.251.111', 1121254224, 1121254255, 'CA', 'Canada'), +('66.212.251.112', '66.212.251.127', 1121254256, 1121254271, 'AG', 'Antigua and Barbuda'), +('66.212.251.128', '66.212.251.143', 1121254272, 1121254287, 'CR', 'Costa Rica'), +('66.212.251.144', '66.212.255.255', 1121254288, 1121255423, 'CA', 'Canada'), +('66.213.0.0', '66.220.6.255', 1121255424, 1121715967, 'US', 'United States'), +('66.220.7.0', '66.220.7.127', 1121715968, 1121716095, 'IT', 'Italy'), +('66.220.7.128', '66.220.12.183', 1121716096, 1121717431, 'US', 'United States'), +('66.220.12.184', '66.220.12.191', 1121717432, 1121717439, 'JP', 'Japan'), +('66.220.12.192', '66.220.13.255', 1121717440, 1121717759, 'US', 'United States'), +('66.220.14.0', '66.220.14.255', 1121717760, 1121718015, 'IT', 'Italy'), +('66.220.15.0', '66.222.127.255', 1121718016, 1121878015, 'US', 'United States'), +('66.222.128.0', '66.222.255.255', 1121878016, 1121910783, 'CA', 'Canada'), +('66.223.0.0', '66.225.127.255', 1121910784, 1122074623, 'US', 'United States'), +('66.225.128.0', '66.225.191.255', 1122074624, 1122091007, 'CA', 'Canada'), +('66.225.192.0', '66.225.198.255', 1122091008, 1122092799, 'US', 'United States'), +('66.225.199.0', '66.225.199.255', 1122092800, 1122093055, 'CA', 'Canada'), +('66.225.200.0', '66.225.202.239', 1122093056, 1122093807, 'US', 'United States'), +('66.225.202.240', '66.225.202.247', 1122093808, 1122093815, 'HK', 'Hong Kong'), +('66.225.202.248', '66.225.240.175', 1122093816, 1122103471, 'US', 'United States'), +('66.225.240.176', '66.225.240.183', 1122103472, 1122103479, 'BE', 'Belgium'), +('66.225.240.184', '66.226.4.255', 1122103480, 1122108671, 'US', 'United States'), +('66.226.5.0', '66.226.5.63', 1122108672, 1122108735, 'GR', 'Greece'), +('66.226.5.64', '66.226.72.130', 1122108736, 1122125954, 'US', 'United States'), +('66.226.72.131', '66.226.72.154', 1122125955, 1122125978, 'CA', 'Canada'), +('66.226.72.155', '66.226.72.164', 1122125979, 1122125988, 'PH', 'Philippines'), +('66.226.72.165', '66.226.72.172', 1122125989, 1122125996, 'US', 'United States'), +('66.226.72.173', '66.226.72.180', 1122125997, 1122126004, 'GB', 'United Kingdom'), +('66.226.72.181', '66.226.73.159', 1122126005, 1122126239, 'US', 'United States'), +('66.226.73.160', '66.226.73.169', 1122126240, 1122126249, 'GB', 'United Kingdom'), +('66.226.73.170', '66.226.75.153', 1122126250, 1122126745, 'US', 'United States'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('66.226.75.154', '66.226.75.161', 1122126746, 1122126753, 'CH', 'Switzerland'), +('66.226.75.162', '66.226.127.255', 1122126754, 1122140159, 'US', 'United States'), +('66.226.128.0', '66.226.159.255', 1122140160, 1122148351, 'CA', 'Canada'), +('66.226.160.0', '66.227.96.119', 1122148352, 1122197623, 'US', 'United States'), +('66.227.96.120', '66.227.96.127', 1122197624, 1122197631, 'FR', 'France'), +('66.227.96.128', '66.227.96.191', 1122197632, 1122197695, 'US', 'United States'), +('66.227.96.192', '66.227.96.239', 1122197696, 1122197743, 'GB', 'United Kingdom'), +('66.227.96.240', '66.227.97.7', 1122197744, 1122197767, 'US', 'United States'), +('66.227.97.8', '66.227.97.15', 1122197768, 1122197775, 'FR', 'France'), +('66.227.97.16', '66.227.97.127', 1122197776, 1122197887, 'US', 'United States'), +('66.227.97.128', '66.227.97.255', 1122197888, 1122198015, 'GB', 'United Kingdom'), +('66.227.98.0', '66.229.66.63', 1122198016, 1122320959, 'US', 'United States'), +('66.229.66.64', '66.229.66.99', 1122320960, 1122320995, 'PT', 'Portugal'), +('66.229.66.100', '66.230.164.31', 1122320996, 1122411551, 'US', 'United States'), +('66.230.164.32', '66.230.164.63', 1122411552, 1122411583, 'AU', 'Australia'), +('66.230.164.64', '66.230.166.255', 1122411584, 1122412287, 'US', 'United States'), +('66.230.167.0', '66.230.167.255', 1122412288, 1122412543, 'AU', 'Australia'), +('66.230.168.0', '66.230.174.255', 1122412544, 1122414335, 'US', 'United States'), +('66.230.175.0', '66.230.175.255', 1122414336, 1122414591, 'AU', 'Australia'), +('66.230.176.0', '66.230.182.255', 1122414592, 1122416383, 'US', 'United States'), +('66.230.183.0', '66.230.183.255', 1122416384, 1122416639, 'DM', 'Dominica'), +('66.230.184.0', '66.230.188.255', 1122416640, 1122417919, 'US', 'United States'), +('66.230.189.0', '66.230.189.255', 1122417920, 1122418175, 'AU', 'Australia'), +('66.230.190.0', '66.231.63.255', 1122418176, 1122451455, 'US', 'United States'), +('66.231.64.0', '66.231.79.255', 1122451456, 1122455551, 'CO', 'Colombia'), +('66.231.80.0', '66.231.159.255', 1122455552, 1122476031, 'US', 'United States'), +('66.231.160.0', '66.231.175.255', 1122476032, 1122480127, 'PR', 'Puerto Rico'), +('66.231.176.0', '66.231.176.79', 1122480128, 1122480207, 'US', 'United States'), +('66.231.176.80', '66.231.176.95', 1122480208, 1122480223, 'GB', 'United Kingdom'), +('66.231.176.96', '66.231.176.111', 1122480224, 1122480239, 'IL', 'Israel'), +('66.231.176.112', '66.231.180.79', 1122480240, 1122481231, 'US', 'United States'), +('66.231.180.80', '66.231.180.95', 1122481232, 1122481247, 'GB', 'United Kingdom'), +('66.231.180.96', '66.231.226.127', 1122481248, 1122493055, 'US', 'United States'), +('66.231.226.128', '66.231.226.255', 1122493056, 1122493183, 'ES', 'Spain'), +('66.231.227.0', '66.231.227.255', 1122493184, 1122493439, 'US', 'United States'), +('66.231.228.0', '66.231.230.255', 1122493440, 1122494207, 'PR', 'Puerto Rico'), +('66.231.231.0', '66.231.234.255', 1122494208, 1122495231, 'US', 'United States'), +('66.231.235.0', '66.231.237.255', 1122495232, 1122495999, 'PR', 'Puerto Rico'), +('66.231.238.0', '66.231.244.255', 1122496000, 1122497791, 'US', 'United States'), +('66.231.245.0', '66.231.246.255', 1122497792, 1122498303, 'PR', 'Puerto Rico'), +('66.231.247.0', '66.231.247.255', 1122498304, 1122498559, 'US', 'United States'), +('66.231.248.0', '66.231.248.255', 1122498560, 1122498815, 'PR', 'Puerto Rico'), +('66.231.249.0', '66.231.250.255', 1122498816, 1122499327, 'US', 'United States'), +('66.231.251.0', '66.231.253.255', 1122499328, 1122500095, 'PR', 'Puerto Rico'), +('66.231.254.0', '66.232.40.255', 1122500096, 1122511103, 'US', 'United States'), +('66.232.41.0', '66.232.41.255', 1122511104, 1122511359, 'VG', 'Virgin Islands, British'), +('66.232.42.0', '66.232.98.159', 1122511360, 1122525855, 'US', 'United States'), +('66.232.98.160', '66.232.98.169', 1122525856, 1122525865, 'RU', 'Russian Federation'), +('66.232.98.170', '66.232.99.144', 1122525866, 1122526096, 'US', 'United States'), +('66.232.99.145', '66.232.99.159', 1122526097, 1122526111, 'RU', 'Russian Federation'), +('66.232.99.160', '66.232.100.246', 1122526112, 1122526454, 'US', 'United States'), +('66.232.100.247', '66.232.100.254', 1122526455, 1122526462, 'RU', 'Russian Federation'), +('66.232.100.255', '66.232.101.53', 1122526463, 1122526517, 'US', 'United States'), +('66.232.101.54', '66.232.101.77', 1122526518, 1122526541, 'HK', 'Hong Kong'), +('66.232.101.78', '66.232.102.156', 1122526542, 1122526876, 'US', 'United States'), +('66.232.102.157', '66.232.102.168', 1122526877, 1122526888, 'RU', 'Russian Federation'), +('66.232.102.169', '66.232.102.205', 1122526889, 1122526925, 'US', 'United States'), +('66.232.102.206', '66.232.102.219', 1122526926, 1122526939, 'RU', 'Russian Federation'), +('66.232.102.220', '66.232.107.183', 1122526940, 1122528183, 'US', 'United States'), +('66.232.107.184', '66.232.107.254', 1122528184, 1122528254, 'RU', 'Russian Federation'), +('66.232.107.255', '66.232.109.91', 1122528255, 1122528603, 'US', 'United States'), +('66.232.109.92', '66.232.109.101', 1122528604, 1122528613, 'ES', 'Spain'), +('66.232.109.102', '66.232.110.64', 1122528614, 1122528832, 'US', 'United States'), +('66.232.110.65', '66.232.110.95', 1122528833, 1122528863, 'GR', 'Greece'), +('66.232.110.96', '66.232.135.255', 1122528864, 1122535423, 'US', 'United States'), +('66.232.136.0', '66.232.147.255', 1122535424, 1122538495, 'KR', 'Korea, Republic of'), +('66.232.148.0', '66.234.15.255', 1122538496, 1122635775, 'US', 'United States'), +('66.234.16.0', '66.234.31.255', 1122635776, 1122639871, 'CA', 'Canada'), +('66.234.32.0', '66.234.138.63', 1122639872, 1122667071, 'US', 'United States'), +('66.234.138.64', '66.234.138.127', 1122667072, 1122667135, 'CH', 'Switzerland'), +('66.234.138.128', '66.235.242.79', 1122667136, 1122759247, 'US', 'United States'), +('66.235.242.80', '66.235.242.95', 1122759248, 1122759263, 'CA', 'Canada'), +('66.235.242.96', '66.240.127.255', 1122759264, 1123057663, 'US', 'United States'), +('66.240.128.0', '66.240.143.255', 1123057664, 1123061759, 'CA', 'Canada'), +('66.240.144.0', '66.240.151.255', 1123061760, 1123063807, 'US', 'United States'), +('66.240.152.0', '66.240.175.255', 1123063808, 1123069951, 'CA', 'Canada'), +('66.240.176.0', '66.240.183.255', 1123069952, 1123071999, 'US', 'United States'), +('66.240.184.0', '66.240.191.255', 1123072000, 1123074047, 'CA', 'Canada'), +('66.240.192.0', '66.241.127.255', 1123074048, 1123123199, 'US', 'United States'), +('66.241.128.0', '66.241.143.255', 1123123200, 1123127295, 'CA', 'Canada'), +('66.241.144.0', '66.242.36.63', 1123127296, 1123165247, 'US', 'United States'), +('66.242.36.64', '66.242.36.127', 1123165248, 1123165311, 'CA', 'Canada'), +('66.242.36.128', '66.242.95.255', 1123165312, 1123180543, 'US', 'United States'), +('66.242.96.0', '66.242.111.255', 1123180544, 1123184639, 'CA', 'Canada'), +('66.242.112.0', '66.244.127.255', 1123184640, 1123319807, 'US', 'United States'), +('66.244.128.0', '66.244.143.255', 1123319808, 1123323903, 'CA', 'Canada'), +('66.244.144.0', '66.244.191.255', 1123323904, 1123336191, 'US', 'United States'), +('66.244.192.0', '66.244.255.255', 1123336192, 1123352575, 'CA', 'Canada'), +('66.245.0.0', '66.247.199.255', 1123352576, 1123534847, 'US', 'United States'), +('66.247.200.0', '66.247.207.255', 1123534848, 1123536895, 'AW', 'Aruba'), +('66.247.208.0', '66.248.129.31', 1123536896, 1123582239, 'US', 'United States'), +('66.248.129.32', '66.248.129.63', 1123582240, 1123582271, 'CY', 'Cyprus'), +('66.248.129.64', '66.248.129.223', 1123582272, 1123582431, 'US', 'United States'), +('66.248.129.224', '66.248.129.255', 1123582432, 1123582463, 'CA', 'Canada'), +('66.248.130.0', '66.248.133.95', 1123582464, 1123583327, 'US', 'United States'), +('66.248.133.96', '66.248.133.127', 1123583328, 1123583359, 'CA', 'Canada'), +('66.248.133.128', '66.248.133.223', 1123583360, 1123583455, 'US', 'United States'), +('66.248.133.224', '66.248.134.31', 1123583456, 1123583519, 'CY', 'Cyprus'), +('66.248.134.32', '66.248.138.191', 1123583520, 1123584703, 'US', 'United States'), +('66.248.138.192', '66.248.138.223', 1123584704, 1123584735, 'CA', 'Canada'), +('66.248.138.224', '66.248.141.255', 1123584736, 1123585535, 'US', 'United States'), +('66.248.142.0', '66.248.142.255', 1123585536, 1123585791, 'CA', 'Canada'), +('66.248.143.0', '66.248.146.255', 1123585792, 1123586815, 'US', 'United States'), +('66.248.147.0', '66.248.147.255', 1123586816, 1123587071, 'CA', 'Canada'), +('66.248.148.0', '66.248.154.255', 1123587072, 1123588863, 'US', 'United States'), +('66.248.155.0', '66.248.155.255', 1123588864, 1123589119, 'CA', 'Canada'), +('66.248.156.0', '66.248.159.255', 1123589120, 1123590143, 'US', 'United States'), +('66.248.160.0', '66.248.191.255', 1123590144, 1123598335, 'VI', 'Virgin Islands, U.S.'), +('66.248.192.0', '66.249.143.255', 1123598336, 1123651583, 'US', 'United States'), +('66.249.144.0', '66.249.159.255', 1123651584, 1123655679, 'JM', 'Jamaica'), +('66.249.160.0', '66.249.191.255', 1123655680, 1123663871, 'US', 'United States'), +('66.249.192.0', '66.249.207.255', 1123663872, 1123667967, 'SV', 'El Salvador'), +('66.249.208.0', '66.249.215.255', 1123667968, 1123670015, 'PR', 'Puerto Rico'), +('66.249.216.0', '66.249.219.255', 1123670016, 1123671039, 'US', 'United States'), +('66.249.220.0', '66.249.223.255', 1123671040, 1123672063, 'PY', 'Paraguay'), +('66.249.224.0', '66.251.191.255', 1123672064, 1123794943, 'US', 'United States'), +('66.251.192.0', '66.251.192.255', 1123794944, 1123795199, 'DO', 'Dominican Republic'), +('66.251.193.0', '66.251.215.255', 1123795200, 1123801087, 'US', 'United States'), +('66.251.216.0', '66.251.216.255', 1123801088, 1123801343, 'RU', 'Russian Federation'), +('66.251.217.0', '66.252.143.255', 1123801344, 1123848191, 'US', 'United States'), +('66.252.144.0', '66.252.159.255', 1123848192, 1123852287, 'CA', 'Canada'), +('66.252.160.0', '66.254.31.255', 1123852288, 1123950591, 'US', 'United States'), +('66.254.32.0', '66.254.63.255', 1123950592, 1123958783, 'CA', 'Canada'), +('66.254.64.0', '66.255.80.95', 1123958784, 1124028511, 'US', 'United States'), +('66.255.80.96', '66.255.80.127', 1124028512, 1124028543, 'NC', 'New Caledonia'), +('66.255.80.128', '67.15.31.255', 1124028544, 1125064703, 'US', 'United States'), +('67.15.32.0', '67.15.33.255', 1125064704, 1125065215, 'GB', 'United Kingdom'), +('67.15.34.0', '67.15.86.191', 1125065216, 1125078719, 'US', 'United States'), +('67.15.86.192', '67.15.86.223', 1125078720, 1125078751, 'PR', 'Puerto Rico'), +('67.15.86.224', '67.15.95.255', 1125078752, 1125081087, 'US', 'United States'), +('67.15.96.0', '67.15.96.63', 1125081088, 1125081151, 'CL', 'Chile'), +('67.15.96.64', '67.15.96.95', 1125081152, 1125081183, 'CA', 'Canada'), +('67.15.96.96', '67.15.96.127', 1125081184, 1125081215, 'US', 'United States'), +('67.15.96.128', '67.15.96.191', 1125081216, 1125081279, 'GB', 'United Kingdom'), +('67.15.96.192', '67.15.96.223', 1125081280, 1125081311, 'PR', 'Puerto Rico'), +('67.15.96.224', '67.15.98.255', 1125081312, 1125081855, 'US', 'United States'), +('67.15.99.0', '67.15.99.255', 1125081856, 1125082111, 'DE', 'Germany'), +('67.15.100.0', '67.15.100.255', 1125082112, 1125082367, 'US', 'United States'), +('67.15.101.0', '67.15.101.255', 1125082368, 1125082623, 'DE', 'Germany'), +('67.15.102.0', '67.15.102.31', 1125082624, 1125082655, 'US', 'United States'), +('67.15.102.32', '67.15.102.63', 1125082656, 1125082687, 'UY', 'Uruguay'), +('67.15.102.64', '67.15.102.159', 1125082688, 1125082783, 'US', 'United States'), +('67.15.102.160', '67.15.102.175', 1125082784, 1125082799, 'UY', 'Uruguay'), +('67.15.102.176', '67.15.103.127', 1125082800, 1125083007, 'US', 'United States'), +('67.15.103.128', '67.15.103.143', 1125083008, 1125083023, 'RU', 'Russian Federation'), +('67.15.103.144', '67.15.107.63', 1125083024, 1125083967, 'US', 'United States'), +('67.15.107.64', '67.15.107.127', 1125083968, 1125084031, 'UY', 'Uruguay'), +('67.15.107.128', '67.15.107.159', 1125084032, 1125084063, 'US', 'United States'), +('67.15.107.160', '67.15.107.191', 1125084064, 1125084095, 'SE', 'Sweden'), +('67.15.107.192', '67.15.111.207', 1125084096, 1125085135, 'US', 'United States'), +('67.15.111.208', '67.15.111.223', 1125085136, 1125085151, 'DE', 'Germany'), +('67.15.111.224', '67.15.115.127', 1125085152, 1125086079, 'US', 'United States'), +('67.15.115.128', '67.15.115.191', 1125086080, 1125086143, 'AU', 'Australia'), +('67.15.115.192', '67.15.122.255', 1125086144, 1125087999, 'US', 'United States'), +('67.15.123.0', '67.15.123.255', 1125088000, 1125088255, 'CA', 'Canada'), +('67.15.124.0', '67.15.131.255', 1125088256, 1125090303, 'US', 'United States'), +('67.15.132.0', '67.15.132.31', 1125090304, 1125090335, 'AU', 'Australia'), +('67.15.132.32', '67.15.132.63', 1125090336, 1125090367, 'US', 'United States'), +('67.15.132.64', '67.15.132.127', 1125090368, 1125090431, 'ZA', 'South Africa'), +('67.15.132.128', '67.15.132.175', 1125090432, 1125090479, 'US', 'United States'), +('67.15.132.176', '67.15.132.191', 1125090480, 1125090495, 'DE', 'Germany'), +('67.15.132.192', '67.15.135.15', 1125090496, 1125091087, 'US', 'United States'), +('67.15.135.16', '67.15.135.31', 1125091088, 1125091103, 'CA', 'Canada'), +('67.15.135.32', '67.15.135.63', 1125091104, 1125091135, 'US', 'United States'), +('67.15.135.64', '67.15.135.95', 1125091136, 1125091167, 'SK', 'Slovakia'), +('67.15.135.96', '67.15.135.111', 1125091168, 1125091183, 'US', 'United States'), +('67.15.135.112', '67.15.135.127', 1125091184, 1125091199, 'UY', 'Uruguay'), +('67.15.135.128', '67.15.136.255', 1125091200, 1125091583, 'US', 'United States'), +('67.15.137.0', '67.15.137.63', 1125091584, 1125091647, 'GB', 'United Kingdom'), +('67.15.137.64', '67.15.137.79', 1125091648, 1125091663, 'US', 'United States'), +('67.15.137.80', '67.15.137.95', 1125091664, 1125091679, 'HU', 'Hungary'), +('67.15.137.96', '67.15.137.127', 1125091680, 1125091711, 'SE', 'Sweden'), +('67.15.137.128', '67.15.137.159', 1125091712, 1125091743, 'CA', 'Canada'), +('67.15.137.160', '67.15.137.175', 1125091744, 1125091759, 'US', 'United States'), +('67.15.137.176', '67.15.137.191', 1125091760, 1125091775, 'UY', 'Uruguay'), +('67.15.137.192', '67.15.137.255', 1125091776, 1125091839, 'CA', 'Canada'), +('67.15.138.0', '67.15.143.255', 1125091840, 1125093375, 'US', 'United States'), +('67.15.144.0', '67.15.144.31', 1125093376, 1125093407, 'TH', 'Thailand'), +('67.15.144.32', '67.15.144.95', 1125093408, 1125093471, 'US', 'United States'), +('67.15.144.96', '67.15.144.127', 1125093472, 1125093503, 'IL', 'Israel'), +('67.15.144.128', '67.15.144.191', 1125093504, 1125093567, 'SK', 'Slovakia'), +('67.15.144.192', '67.15.144.255', 1125093568, 1125093631, 'AU', 'Australia'), +('67.15.145.0', '67.15.148.63', 1125093632, 1125094463, 'US', 'United States'), +('67.15.148.64', '67.15.148.127', 1125094464, 1125094527, 'BR', 'Brazil'), +('67.15.148.128', '67.15.148.255', 1125094528, 1125094655, 'US', 'United States'), +('67.15.149.0', '67.15.149.15', 1125094656, 1125094671, 'GB', 'United Kingdom'), +('67.15.149.16', '67.15.149.31', 1125094672, 1125094687, 'SK', 'Slovakia'), +('67.15.149.32', '67.15.149.127', 1125094688, 1125094783, 'US', 'United States'), +('67.15.149.128', '67.15.149.143', 1125094784, 1125094799, 'GB', 'United Kingdom'), +('67.15.149.144', '67.15.149.191', 1125094800, 1125094847, 'CA', 'Canada'), +('67.15.149.192', '67.15.149.255', 1125094848, 1125094911, 'BR', 'Brazil'), +('67.15.150.0', '67.15.150.127', 1125094912, 1125095039, 'AU', 'Australia'), +('67.15.150.128', '67.15.150.255', 1125095040, 1125095167, 'GB', 'United Kingdom'), +('67.15.151.0', '67.15.151.15', 1125095168, 1125095183, 'BE', 'Belgium'), +('67.15.151.16', '67.15.151.127', 1125095184, 1125095295, 'US', 'United States'), +('67.15.151.128', '67.15.151.159', 1125095296, 1125095327, 'AU', 'Australia'), +('67.15.151.160', '67.15.157.255', 1125095328, 1125096959, 'US', 'United States'), +('67.15.158.0', '67.15.158.127', 1125096960, 1125097087, 'AR', 'Argentina'), +('67.15.158.128', '67.15.158.159', 1125097088, 1125097119, 'US', 'United States'), +('67.15.158.160', '67.15.158.191', 1125097120, 1125097151, 'TH', 'Thailand'), +('67.15.158.192', '67.15.158.255', 1125097152, 1125097215, 'US', 'United States'), +('67.15.159.0', '67.15.159.63', 1125097216, 1125097279, 'AU', 'Australia'), +('67.15.159.64', '67.15.159.127', 1125097280, 1125097343, 'BR', 'Brazil'), +('67.15.159.128', '67.15.159.191', 1125097344, 1125097407, 'US', 'United States'), +('67.15.159.192', '67.15.159.223', 1125097408, 1125097439, 'IL', 'Israel'), +('67.15.159.224', '67.15.159.239', 1125097440, 1125097455, 'US', 'United States'), +('67.15.159.240', '67.15.159.255', 1125097456, 1125097471, 'GB', 'United Kingdom'), +('67.15.160.0', '67.15.161.63', 1125097472, 1125097791, 'US', 'United States'), +('67.15.161.64', '67.15.161.95', 1125097792, 1125097823, 'ES', 'Spain'), +('67.15.161.96', '67.15.161.127', 1125097824, 1125097855, 'AU', 'Australia'), +('67.15.161.128', '67.15.161.143', 1125097856, 1125097871, 'JO', 'Jordan'), +('67.15.161.144', '67.15.161.159', 1125097872, 1125097887, 'UY', 'Uruguay'), +('67.15.161.160', '67.15.161.191', 1125097888, 1125097919, 'US', 'United States'), +('67.15.161.192', '67.15.161.255', 1125097920, 1125097983, 'IL', 'Israel'), +('67.15.162.0', '67.15.168.255', 1125097984, 1125099775, 'US', 'United States'), +('67.15.169.0', '67.15.169.255', 1125099776, 1125100031, 'GB', 'United Kingdom'), +('67.15.170.0', '67.15.182.255', 1125100032, 1125103359, 'US', 'United States'), +('67.15.183.0', '67.15.183.127', 1125103360, 1125103487, 'A1', 'Anonymous Proxy'), +('67.15.183.128', '67.15.183.159', 1125103488, 1125103519, 'UY', 'Uruguay'), +('67.15.183.160', '67.15.193.143', 1125103520, 1125106063, 'US', 'United States'), +('67.15.193.144', '67.15.193.191', 1125106064, 1125106111, 'CA', 'Canada'), +('67.15.193.192', '67.15.193.255', 1125106112, 1125106175, 'GB', 'United Kingdom'), +('67.15.194.0', '67.15.194.31', 1125106176, 1125106207, 'AU', 'Australia'), +('67.15.194.32', '67.15.194.47', 1125106208, 1125106223, 'TR', 'Turkey'), +('67.15.194.48', '67.15.194.63', 1125106224, 1125106239, 'FR', 'France'), +('67.15.194.64', '67.15.194.79', 1125106240, 1125106255, 'UY', 'Uruguay'), +('67.15.194.80', '67.15.194.95', 1125106256, 1125106271, 'FR', 'France'), +('67.15.194.96', '67.15.194.127', 1125106272, 1125106303, 'US', 'United States'), +('67.15.194.128', '67.15.194.191', 1125106304, 1125106367, 'DE', 'Germany'), +('67.15.194.192', '67.15.209.255', 1125106368, 1125110271, 'US', 'United States'), +('67.15.210.0', '67.15.210.63', 1125110272, 1125110335, 'GB', 'United Kingdom'), +('67.15.210.64', '67.15.210.127', 1125110336, 1125110399, 'US', 'United States'), +('67.15.210.128', '67.15.210.191', 1125110400, 1125110463, 'KW', 'Kuwait'), +('67.15.210.192', '67.15.211.255', 1125110464, 1125110783, 'US', 'United States'), +('67.15.212.0', '67.15.212.127', 1125110784, 1125110911, 'TR', 'Turkey'), +('67.15.212.128', '67.15.212.143', 1125110912, 1125110927, 'UY', 'Uruguay'), +('67.15.212.144', '67.15.212.159', 1125110928, 1125110943, 'TW', 'Taiwan'), +('67.15.212.160', '67.15.212.175', 1125110944, 1125110959, 'CA', 'Canada'), +('67.15.212.176', '67.15.212.191', 1125110960, 1125110975, 'US', 'United States'), +('67.15.212.192', '67.15.212.255', 1125110976, 1125111039, 'MA', 'Morocco'), +('67.15.213.0', '67.15.214.127', 1125111040, 1125111423, 'US', 'United States'), +('67.15.214.128', '67.15.214.143', 1125111424, 1125111439, 'BR', 'Brazil'), +('67.15.214.144', '67.15.214.159', 1125111440, 1125111455, 'US', 'United States'), +('67.15.214.160', '67.15.214.175', 1125111456, 1125111471, 'CA', 'Canada'), +('67.15.214.176', '67.15.214.191', 1125111472, 1125111487, 'US', 'United States'), +('67.15.214.192', '67.15.214.223', 1125111488, 1125111519, 'GB', 'United Kingdom'), +('67.15.214.224', '67.15.214.239', 1125111520, 1125111535, 'IL', 'Israel'), +('67.15.214.240', '67.15.215.191', 1125111536, 1125111743, 'US', 'United States'), +('67.15.215.192', '67.15.215.223', 1125111744, 1125111775, 'DE', 'Germany'), +('67.15.215.224', '67.15.218.127', 1125111776, 1125112447, 'US', 'United States'), +('67.15.218.128', '67.15.218.191', 1125112448, 1125112511, 'PL', 'Poland'), +('67.15.218.192', '67.15.219.191', 1125112512, 1125112767, 'US', 'United States'), +('67.15.219.192', '67.15.219.207', 1125112768, 1125112783, 'GB', 'United Kingdom'), +('67.15.219.208', '67.15.230.255', 1125112784, 1125115647, 'US', 'United States'), +('67.15.231.0', '67.15.231.15', 1125115648, 1125115663, 'ES', 'Spain'), +('67.15.231.16', '67.15.231.79', 1125115664, 1125115727, 'US', 'United States'), +('67.15.231.80', '67.15.231.95', 1125115728, 1125115743, 'ES', 'Spain'), +('67.15.231.96', '67.15.232.255', 1125115744, 1125116159, 'US', 'United States'), +('67.15.233.0', '67.15.233.31', 1125116160, 1125116191, 'BR', 'Brazil'), +('67.15.233.32', '67.15.233.63', 1125116192, 1125116223, 'TR', 'Turkey'), +('67.15.233.64', '67.15.233.255', 1125116224, 1125116415, 'US', 'United States'), +('67.15.234.0', '67.15.234.255', 1125116416, 1125116671, 'MA', 'Morocco'), +('67.15.235.0', '67.15.236.31', 1125116672, 1125116959, 'US', 'United States'), +('67.15.236.32', '67.15.236.63', 1125116960, 1125116991, 'JP', 'Japan'), +('67.15.236.64', '67.15.236.95', 1125116992, 1125117023, 'US', 'United States'), +('67.15.236.96', '67.15.236.127', 1125117024, 1125117055, 'BR', 'Brazil'), +('67.15.236.128', '67.15.236.223', 1125117056, 1125117151, 'US', 'United States'), +('67.15.236.224', '67.15.236.239', 1125117152, 1125117167, 'UY', 'Uruguay'), +('67.15.236.240', '67.15.242.31', 1125117168, 1125118495, 'US', 'United States'), +('67.15.242.32', '67.15.242.47', 1125118496, 1125118511, 'BR', 'Brazil'), +('67.15.242.48', '67.15.242.63', 1125118512, 1125118527, 'US', 'United States'), +('67.15.242.64', '67.15.242.95', 1125118528, 1125118559, 'UY', 'Uruguay'), +('67.15.242.96', '67.15.242.127', 1125118560, 1125118591, 'TR', 'Turkey'), +('67.15.242.128', '67.15.242.191', 1125118592, 1125118655, 'US', 'United States'), +('67.15.242.192', '67.15.242.223', 1125118656, 1125118687, 'IL', 'Israel'), +('67.15.242.224', '67.15.242.255', 1125118688, 1125118719, 'BR', 'Brazil'), +('67.15.243.0', '67.15.244.223', 1125118720, 1125119199, 'US', 'United States'), +('67.15.244.224', '67.15.244.255', 1125119200, 1125119231, 'TR', 'Turkey'), +('67.15.245.0', '67.15.246.255', 1125119232, 1125119743, 'US', 'United States'), +('67.15.247.0', '67.15.247.127', 1125119744, 1125119871, 'RO', 'Romania'), +('67.15.247.128', '67.15.247.159', 1125119872, 1125119903, 'US', 'United States'), +('67.15.247.160', '67.15.247.191', 1125119904, 1125119935, 'IL', 'Israel'), +('67.15.247.192', '67.15.247.223', 1125119936, 1125119967, 'JP', 'Japan'), +('67.15.247.224', '67.15.248.255', 1125119968, 1125120255, 'US', 'United States'), +('67.15.249.0', '67.15.249.255', 1125120256, 1125120511, 'MA', 'Morocco'), +('67.15.250.0', '67.15.250.255', 1125120512, 1125120767, 'US', 'United States'), +('67.15.251.0', '67.15.251.31', 1125120768, 1125120799, 'UY', 'Uruguay'), +('67.15.251.32', '67.15.251.63', 1125120800, 1125120831, 'IL', 'Israel'), +('67.15.251.64', '67.15.251.79', 1125120832, 1125120847, 'TH', 'Thailand'), +('67.15.251.80', '67.15.251.95', 1125120848, 1125120863, 'US', 'United States'), +('67.15.251.96', '67.15.251.127', 1125120864, 1125120895, 'GB', 'United Kingdom'), +('67.15.251.128', '67.15.251.255', 1125120896, 1125121023, 'RO', 'Romania'), +('67.15.252.0', '67.21.95.255', 1125121024, 1125474303, 'US', 'United States'), +('67.21.96.0', '67.21.111.255', 1125474304, 1125478399, 'CA', 'Canada'), +('67.21.112.0', '67.21.191.255', 1125478400, 1125498879, 'US', 'United States'), +('67.21.192.0', '67.21.255.255', 1125498880, 1125515263, 'CA', 'Canada'), +('67.22.0.0', '67.22.63.255', 1125515264, 1125531647, 'US', 'United States'), +('67.22.64.0', '67.22.111.255', 1125531648, 1125543935, 'CA', 'Canada'), +('67.22.112.0', '67.22.119.255', 1125543936, 1125545983, 'US', 'United States'), +('67.22.160.0', '67.22.175.255', 1125556224, 1125560319, 'US', 'United States'), +('67.22.192.0', '67.22.223.255', 1125564416, 1125572607, 'US', 'United States'), +('67.22.224.0', '67.22.239.255', 1125572608, 1125576703, 'CA', 'Canada'), +('67.22.240.0', '67.37.1.151', 1125576704, 1126498711, 'US', 'United States'), +('67.37.1.152', '67.37.1.159', 1126498712, 1126498719, 'PR', 'Puerto Rico'), +('67.37.1.160', '67.37.23.31', 1126498720, 1126504223, 'US', 'United States'), +('67.37.23.32', '67.37.23.39', 1126504224, 1126504231, 'PR', 'Puerto Rico'), +('67.37.23.40', '67.37.208.215', 1126504232, 1126551767, 'US', 'United States'), +('67.37.208.216', '67.37.208.223', 1126551768, 1126551775, 'PR', 'Puerto Rico'), +('67.37.208.224', '67.38.156.239', 1126551776, 1126604015, 'US', 'United States'), +('67.38.156.240', '67.38.156.247', 1126604016, 1126604023, 'PR', 'Puerto Rico'), +('67.38.156.248', '67.38.197.167', 1126604024, 1126614439, 'US', 'United States'), +('67.38.197.168', '67.38.197.175', 1126614440, 1126614447, 'PR', 'Puerto Rico'), +('67.38.197.176', '67.39.165.103', 1126614448, 1126671719, 'US', 'United States'), +('67.39.165.104', '67.39.165.111', 1126671720, 1126671727, 'PR', 'Puerto Rico'), +('67.39.165.112', '67.39.208.95', 1126671728, 1126682719, 'US', 'United States'), +('67.39.208.96', '67.39.208.103', 1126682720, 1126682727, 'PR', 'Puerto Rico'), +('67.39.208.104', '67.39.208.199', 1126682728, 1126682823, 'US', 'United States'), +('67.39.208.200', '67.39.208.207', 1126682824, 1126682831, 'PR', 'Puerto Rico'), +('67.39.208.208', '67.43.127.255', 1126682832, 1126924287, 'US', 'United States'), +('67.43.128.0', '67.43.143.255', 1126924288, 1126928383, 'CA', 'Canada'), +('67.43.144.0', '67.43.223.255', 1126928384, 1126948863, 'US', 'United States'), +('67.43.224.0', '67.43.227.127', 1126948864, 1126949759, 'CA', 'Canada'), +('67.43.227.128', '67.43.227.191', 1126949760, 1126949823, 'ID', 'Indonesia'), +('67.43.227.192', '67.43.229.47', 1126949824, 1126950191, 'CA', 'Canada'), +('67.43.229.48', '67.43.229.55', 1126950192, 1126950199, 'ES', 'Spain'), +('67.43.229.56', '67.43.239.255', 1126950200, 1126952959, 'CA', 'Canada'), +('67.43.240.0', '67.54.255.255', 1126952960, 1127677951, 'US', 'United States'), +('67.55.0.0', '67.55.63.255', 1127677952, 1127694335, 'CA', 'Canada'), +('67.55.64.0', '67.58.4.255', 1127694336, 1127875839, 'US', 'United States'), +('67.58.5.0', '67.58.5.255', 1127875840, 1127876095, 'CA', 'Canada'), +('67.58.6.0', '67.58.10.255', 1127876096, 1127877375, 'US', 'United States'), +('67.58.11.0', '67.58.11.255', 1127877376, 1127877631, 'CA', 'Canada'), +('67.58.12.0', '67.58.14.255', 1127877632, 1127878399, 'US', 'United States'), +('67.58.15.0', '67.58.16.255', 1127878400, 1127878911, 'CA', 'Canada'), +('67.58.17.0', '67.58.19.255', 1127878912, 1127879679, 'US', 'United States'), +('67.58.20.0', '67.58.20.255', 1127879680, 1127879935, 'CA', 'Canada'), +('67.58.21.0', '67.58.23.255', 1127879936, 1127880703, 'US', 'United States'), +('67.58.24.0', '67.58.24.255', 1127880704, 1127880959, 'CA', 'Canada'), +('67.58.25.0', '67.58.26.255', 1127880960, 1127881471, 'US', 'United States'), +('67.58.27.0', '67.58.28.255', 1127881472, 1127881983, 'CA', 'Canada'), +('67.58.29.0', '67.58.191.255', 1127881984, 1127923711, 'US', 'United States'), +('67.58.192.0', '67.58.223.255', 1127923712, 1127931903, 'CA', 'Canada'), +('67.58.224.0', '67.59.140.255', 1127931904, 1127976191, 'US', 'United States'), +('67.59.141.0', '67.59.141.31', 1127976192, 1127976223, 'IL', 'Israel'), +('67.59.141.32', '67.59.152.103', 1127976224, 1127979111, 'US', 'United States'), +('67.59.152.104', '67.59.152.111', 1127979112, 1127979119, 'CA', 'Canada'), +('67.59.152.112', '67.59.179.31', 1127979120, 1127985951, 'US', 'United States'), +('67.59.179.32', '67.59.179.63', 1127985952, 1127985983, 'NG', 'Nigeria'), +('67.59.179.64', '67.59.179.167', 1127985984, 1127986087, 'US', 'United States'), +('67.59.179.168', '67.59.179.175', 1127986088, 1127986095, 'RO', 'Romania'), +('67.59.179.176', '67.59.182.247', 1127986096, 1127986935, 'US', 'United States'), +('67.59.182.248', '67.59.182.255', 1127986936, 1127986943, 'IN', 'India'), +('67.59.183.0', '67.59.185.127', 1127986944, 1127987583, 'US', 'United States'), +('67.59.185.128', '67.59.185.143', 1127987584, 1127987599, 'IL', 'Israel'), +('67.59.185.144', '67.59.189.71', 1127987600, 1127988551, 'US', 'United States'), +('67.59.189.72', '67.59.189.79', 1127988552, 1127988559, 'AU', 'Australia'), +('67.59.189.80', '67.59.189.207', 1127988560, 1127988687, 'US', 'United States'), +('67.59.189.208', '67.59.189.215', 1127988688, 1127988695, 'IL', 'Israel'), +('67.59.189.216', '67.64.67.135', 1127988696, 1128285063, 'US', 'United States'), +('67.64.67.136', '67.64.67.143', 1128285064, 1128285071, 'PR', 'Puerto Rico'), +('67.64.67.144', '67.64.80.15', 1128285072, 1128288271, 'US', 'United States'), +('67.64.80.16', '67.64.80.31', 1128288272, 1128288287, 'PR', 'Puerto Rico'), +('67.64.80.32', '67.67.255.255', 1128288288, 1128529919, 'US', 'United States'), +('67.68.0.0', '67.69.150.143', 1128529920, 1128633999, 'CA', 'Canada'), +('67.69.150.144', '67.69.150.159', 1128634000, 1128634015, 'US', 'United States'), +('67.69.150.160', '67.69.177.255', 1128634016, 1128641023, 'CA', 'Canada'), +('67.69.178.0', '67.69.179.255', 1128641024, 1128641535, 'US', 'United States'), +('67.69.180.0', '67.71.255.255', 1128641536, 1128792063, 'CA', 'Canada'), +('67.72.0.0', '67.72.103.255', 1128792064, 1128818687, 'US', 'United States'), +('67.72.104.0', '67.72.104.31', 1128818688, 1128818719, 'CA', 'Canada'), +('67.72.104.32', '67.98.159.255', 1128818720, 1130536959, 'US', 'United States'), +('67.98.160.0', '67.98.167.255', 1130536960, 1130539007, 'GU', 'Guam'), +('67.98.168.0', '67.112.104.7', 1130539008, 1131440135, 'US', 'United States'), +('67.112.104.8', '67.112.104.15', 1131440136, 1131440143, 'PR', 'Puerto Rico'), +('67.112.104.16', '67.120.44.239', 1131440144, 1131949295, 'US', 'United States'), +('67.120.44.240', '67.120.44.247', 1131949296, 1131949303, 'PR', 'Puerto Rico'), +('67.120.44.248', '67.121.68.31', 1131949304, 1132020767, 'US', 'United States'), +('67.121.68.32', '67.121.68.39', 1132020768, 1132020775, 'PR', 'Puerto Rico'), +('67.121.68.40', '67.129.147.127', 1132020776, 1132565375, 'US', 'United States'), +('67.129.147.128', '67.129.147.255', 1132565376, 1132565503, 'CA', 'Canada'), +('67.129.148.0', '67.129.214.63', 1132565504, 1132582463, 'US', 'United States'), +('67.129.214.64', '67.129.214.79', 1132582464, 1132582479, 'CA', 'Canada'), +('67.129.214.80', '67.131.214.135', 1132582480, 1132713607, 'US', 'United States'), +('67.131.214.136', '67.131.214.143', 1132713608, 1132713615, 'CA', 'Canada'), +('67.131.214.144', '67.132.157.7', 1132713616, 1132764423, 'US', 'United States'), +('67.132.157.8', '67.132.157.15', 1132764424, 1132764431, 'MX', 'Mexico'), +('67.132.157.16', '67.132.195.223', 1132764432, 1132774367, 'US', 'United States'), +('67.132.195.224', '67.132.195.255', 1132774368, 1132774399, 'ZA', 'South Africa'), +('67.132.196.0', '67.134.214.31', 1132774400, 1132910111, 'US', 'United States'), +('67.134.214.32', '67.134.214.63', 1132910112, 1132910143, 'AU', 'Australia'), +('67.134.214.64', '67.135.103.231', 1132910144, 1132947431, 'US', 'United States'), +('67.135.103.232', '67.135.103.239', 1132947432, 1132947439, 'CA', 'Canada'), +('67.135.103.240', '67.151.232.255', 1132947440, 1134029055, 'US', 'United States'), +('67.151.233.0', '67.151.234.255', 1134029056, 1134029567, 'A2', 'Satellite Provider'), +('67.151.235.0', '67.158.63.255', 1134029568, 1134444543, 'US', 'United States'), +('67.158.64.0', '67.158.79.255', 1134444544, 1134448639, 'CA', 'Canada'), +('67.158.80.0', '67.159.203.255', 1134448640, 1134545919, 'US', 'United States'), +('67.159.204.0', '67.159.204.31', 1134545920, 1134545951, 'BH', 'Bahrain'), +('67.159.204.32', '67.159.204.255', 1134545952, 1134546175, 'US', 'United States'), +('67.159.205.0', '67.159.205.31', 1134546176, 1134546207, 'BH', 'Bahrain'), +('67.159.205.32', '67.159.206.47', 1134546208, 1134546479, 'US', 'United States'), +('67.159.206.48', '67.159.206.63', 1134546480, 1134546495, 'JP', 'Japan'), +('67.159.206.64', '67.159.207.255', 1134546496, 1134546943, 'US', 'United States'), +('67.159.208.0', '67.159.223.255', 1134546944, 1134551039, 'CA', 'Canada'), +('67.159.224.0', '67.189.223.143', 1134551040, 1136517007, 'US', 'United States'), +('67.189.223.144', '67.189.223.159', 1136517008, 1136517023, 'GB', 'United Kingdom'), +('67.189.223.160', '67.189.223.175', 1136517024, 1136517039, 'US', 'United States'), +('67.189.223.176', '67.189.223.191', 1136517040, 1136517055, 'GB', 'United Kingdom'), +('67.189.223.192', '67.192.255.255', 1136517056, 1136721919, 'US', 'United States'), +('67.193.0.0', '67.193.255.255', 1136721920, 1136787455, 'CA', 'Canada'), +('67.194.0.0', '67.199.74.3', 1136787456, 1137134083, 'US', 'United States'), +('67.199.74.4', '67.199.74.19', 1137134084, 1137134099, 'CA', 'Canada'), +('67.199.74.20', '67.199.74.203', 1137134100, 1137134283, 'US', 'United States'), +('67.199.74.204', '67.199.74.251', 1137134284, 1137134331, 'CA', 'Canada'), +('67.199.74.252', '67.200.33.15', 1137134332, 1137189135, 'US', 'United States'), +('67.200.33.16', '67.200.33.31', 1137189136, 1137189151, 'IE', 'Ireland'), +('67.200.33.32', '67.200.33.63', 1137189152, 1137189183, 'US', 'United States'), +('67.200.33.64', '67.200.33.127', 1137189184, 1137189247, 'IE', 'Ireland'), +('67.200.33.128', '67.200.33.135', 1137189248, 1137189255, 'GB', 'United Kingdom'), +('67.200.33.136', '67.201.127.255', 1137189256, 1137278975, 'US', 'United States'), +('67.201.128.0', '67.201.191.255', 1137278976, 1137295359, 'CA', 'Canada'), +('67.201.192.0', '67.202.100.255', 1137295360, 1137337599, 'US', 'United States'), +('67.202.101.0', '67.202.103.255', 1137337600, 1137338367, 'CA', 'Canada'), +('67.202.104.0', '67.202.223.255', 1137338368, 1137369087, 'US', 'United States'), +('67.202.224.0', '67.202.225.63', 1137369088, 1137369407, 'CA', 'Canada'), +('67.202.225.64', '67.202.225.255', 1137369408, 1137369599, 'US', 'United States'), +('67.202.226.0', '67.202.227.255', 1137369600, 1137370111, 'CA', 'Canada'), +('67.202.228.0', '67.202.251.255', 1137370112, 1137376255, 'US', 'United States'), +('67.202.252.0', '67.202.252.79', 1137376256, 1137376335, 'CA', 'Canada'), +('67.202.252.80', '67.203.0.191', 1137376336, 1137377471, 'US', 'United States'), +('67.203.0.192', '67.203.0.199', 1137377472, 1137377479, 'IN', 'India'), +('67.203.0.200', '67.203.191.255', 1137377480, 1137426431, 'US', 'United States'), +('67.203.192.0', '67.203.255.255', 1137426432, 1137442815, 'PR', 'Puerto Rico'), +('67.204.0.0', '67.204.63.255', 1137442816, 1137459199, 'CA', 'Canada'), +('67.204.64.0', '67.204.191.255', 1137459200, 1137491967, 'US', 'United States'), +('67.204.192.0', '67.204.255.255', 1137491968, 1137508351, 'CA', 'Canada'), +('67.205.0.0', '67.205.63.255', 1137508352, 1137524735, 'US', 'United States'), +('67.205.64.0', '67.205.127.255', 1137524736, 1137541119, 'CA', 'Canada'), +('67.205.128.0', '67.206.191.255', 1137541120, 1137623039, 'US', 'United States'), +('67.206.192.0', '67.206.255.255', 1137623040, 1137639423, 'PR', 'Puerto Rico'), +('67.207.0.0', '67.207.165.143', 1137639424, 1137681807, 'US', 'United States'), +('67.207.165.144', '67.207.165.159', 1137681808, 1137681823, 'GB', 'United Kingdom'), +('67.207.165.160', '67.207.255.255', 1137681824, 1137704959, 'US', 'United States'), +('67.208.0.0', '67.208.1.167', 1137704960, 1137705383, 'CA', 'Canada'), +('67.208.1.168', '67.208.1.175', 1137705384, 1137705391, 'US', 'United States'), +('67.208.1.176', '67.208.1.231', 1137705392, 1137705447, 'CA', 'Canada'), +('67.208.1.232', '67.208.1.239', 1137705448, 1137705455, 'US', 'United States'), +('67.208.1.240', '67.208.3.39', 1137705456, 1137705767, 'CA', 'Canada'), +('67.208.3.40', '67.208.3.47', 1137705768, 1137705775, 'US', 'United States'), +('67.208.3.48', '67.208.8.159', 1137705776, 1137707167, 'CA', 'Canada'), +('67.208.8.160', '67.208.8.167', 1137707168, 1137707175, 'US', 'United States'), +('67.208.8.168', '67.208.8.199', 1137707176, 1137707207, 'CA', 'Canada'), +('67.208.8.200', '67.208.8.207', 1137707208, 1137707215, 'US', 'United States'), +('67.208.8.208', '67.208.10.255', 1137707216, 1137707775, 'CA', 'Canada'), +('67.208.11.0', '67.208.11.255', 1137707776, 1137708031, 'US', 'United States'), +('67.208.12.0', '67.208.12.135', 1137708032, 1137708167, 'CA', 'Canada'), +('67.208.12.136', '67.208.12.143', 1137708168, 1137708175, 'US', 'United States'), +('67.208.12.144', '67.208.22.255', 1137708176, 1137710847, 'CA', 'Canada'), +('67.208.23.0', '67.208.23.7', 1137710848, 1137710855, 'US', 'United States'), +('67.208.23.8', '67.208.23.255', 1137710856, 1137711103, 'CA', 'Canada'), +('67.208.24.0', '67.208.24.7', 1137711104, 1137711111, 'US', 'United States'), +('67.208.24.8', '67.208.25.255', 1137711112, 1137711615, 'CA', 'Canada'), +('67.208.26.0', '67.208.26.7', 1137711616, 1137711623, 'US', 'United States'), +('67.208.26.8', '67.208.26.127', 1137711624, 1137711743, 'CA', 'Canada'), +('67.208.26.128', '67.208.26.135', 1137711744, 1137711751, 'US', 'United States'), +('67.208.26.136', '67.208.26.183', 1137711752, 1137711799, 'CA', 'Canada'), +('67.208.26.184', '67.208.26.191', 1137711800, 1137711807, 'US', 'United States'), +('67.208.26.192', '67.208.27.255', 1137711808, 1137712127, 'CA', 'Canada'), +('67.208.28.0', '67.208.28.7', 1137712128, 1137712135, 'US', 'United States'), +('67.208.28.8', '67.208.28.151', 1137712136, 1137712279, 'CA', 'Canada'), +('67.208.28.152', '67.208.28.159', 1137712280, 1137712287, 'US', 'United States'), +('67.208.28.160', '67.208.28.215', 1137712288, 1137712343, 'CA', 'Canada'), +('67.208.28.216', '67.208.28.223', 1137712344, 1137712351, 'US', 'United States'), +('67.208.28.224', '67.208.28.255', 1137712352, 1137712383, 'CA', 'Canada'), +('67.208.29.0', '67.208.30.31', 1137712384, 1137712671, 'US', 'United States'), +('67.208.30.32', '67.208.30.47', 1137712672, 1137712687, 'CA', 'Canada'), +('67.208.30.48', '67.208.30.71', 1137712688, 1137712711, 'US', 'United States'), +('67.208.30.72', '67.208.30.95', 1137712712, 1137712735, 'CA', 'Canada'), +('67.208.30.96', '67.208.30.119', 1137712736, 1137712759, 'US', 'United States'), +('67.208.30.120', '67.208.30.255', 1137712760, 1137712895, 'CA', 'Canada'), +('67.208.31.0', '67.208.31.23', 1137712896, 1137712919, 'US', 'United States'), +('67.208.31.24', '67.208.31.39', 1137712920, 1137712935, 'CA', 'Canada'), +('67.208.31.40', '67.208.31.63', 1137712936, 1137712959, 'US', 'United States'), +('67.208.31.64', '67.208.31.79', 1137712960, 1137712975, 'CA', 'Canada'), +('67.208.31.80', '67.208.31.119', 1137712976, 1137713015, 'US', 'United States'), +('67.208.31.120', '67.208.31.127', 1137713016, 1137713023, 'CA', 'Canada'), +('67.208.31.128', '67.208.31.175', 1137713024, 1137713071, 'US', 'United States'), +('67.208.31.176', '67.208.31.191', 1137713072, 1137713087, 'CA', 'Canada'), +('67.208.31.192', '67.208.31.207', 1137713088, 1137713103, 'US', 'United States'), +('67.208.31.208', '67.208.31.215', 1137713104, 1137713111, 'CA', 'Canada'), +('67.208.31.216', '67.208.74.159', 1137713112, 1137724063, 'US', 'United States'), +('67.208.74.160', '67.208.74.167', 1137724064, 1137724071, 'KR', 'Korea, Republic of'), +('67.208.74.168', '67.208.209.31', 1137724072, 1137758495, 'US', 'United States'), +('67.208.209.32', '67.208.209.63', 1137758496, 1137758527, 'AU', 'Australia'), +('67.208.209.64', '67.208.209.95', 1137758528, 1137758559, 'US', 'United States'), +('67.208.209.96', '67.208.209.111', 1137758560, 1137758575, 'HN', 'Honduras'), +('67.208.209.112', '67.208.209.207', 1137758576, 1137758671, 'US', 'United States'), +('67.208.209.208', '67.208.209.223', 1137758672, 1137758687, 'CH', 'Switzerland'), +('67.208.209.224', '67.208.214.255', 1137758688, 1137759999, 'US', 'United States'), +('67.208.215.0', '67.208.215.255', 1137760000, 1137760255, 'PA', 'Panama'), +('67.208.216.0', '67.209.95.255', 1137760256, 1137795071, 'US', 'United States'), +('67.209.96.0', '67.209.111.255', 1137795072, 1137799167, 'A2', 'Satellite Provider'), +('67.209.112.0', '67.210.29.255', 1137799168, 1137843711, 'US', 'United States'), +('67.210.30.0', '67.210.30.63', 1137843712, 1137843775, 'NO', 'Norway'), +('67.210.30.64', '67.210.127.255', 1137843776, 1137868799, 'US', 'United States'), +('67.210.128.0', '67.210.143.255', 1137868800, 1137872895, 'CA', 'Canada'), +('67.210.144.0', '67.210.159.255', 1137872896, 1137876991, 'US', 'United States'), +('67.210.160.0', '67.210.175.255', 1137876992, 1137881087, 'CA', 'Canada'), +('67.210.176.0', '67.210.207.255', 1137881088, 1137889279, 'US', 'United States'), +('67.210.208.0', '67.210.223.255', 1137889280, 1137893375, 'CA', 'Canada'), +('67.210.224.0', '67.210.225.191', 1137893376, 1137893823, 'US', 'United States'), +('67.210.225.192', '67.210.225.199', 1137893824, 1137893831, 'CO', 'Colombia'), +('67.210.225.200', '67.210.227.127', 1137893832, 1137894271, 'US', 'United States'), +('67.210.227.128', '67.210.227.135', 1137894272, 1137894279, 'CO', 'Colombia'), +('67.210.227.136', '67.210.227.151', 1137894280, 1137894295, 'US', 'United States'), +('67.210.227.152', '67.210.227.167', 1137894296, 1137894311, 'CO', 'Colombia'), +('67.210.227.168', '67.210.227.175', 1137894312, 1137894319, 'US', 'United States'), +('67.210.227.176', '67.210.227.183', 1137894320, 1137894327, 'CO', 'Colombia'), +('67.210.227.184', '67.210.228.207', 1137894328, 1137894607, 'US', 'United States'), +('67.210.228.208', '67.210.228.215', 1137894608, 1137894615, 'DO', 'Dominican Republic'), +('67.210.228.216', '67.211.63.255', 1137894616, 1137917951, 'US', 'United States'), +('67.211.64.0', '67.211.79.255', 1137917952, 1137922047, 'CA', 'Canada'), +('67.211.80.0', '67.211.95.255', 1137922048, 1137926143, 'US', 'United States'), +('67.211.96.0', '67.211.127.255', 1137926144, 1137934335, 'CA', 'Canada'), +('67.211.128.0', '67.211.191.255', 1137934336, 1137950719, 'US', 'United States'), +('67.211.192.0', '67.211.207.255', 1137950720, 1137954815, 'CA', 'Canada'), +('67.211.208.0', '67.211.239.255', 1137954816, 1137963007, 'US', 'United States'), +('67.211.240.0', '67.211.255.255', 1137963008, 1137967103, 'VI', 'Virgin Islands, U.S.'), +('67.212.0.0', '67.212.31.255', 1137967104, 1137975295, 'CA', 'Canada'), +('67.212.32.0', '67.212.63.255', 1137975296, 1137983487, 'US', 'United States'), +('67.212.64.0', '67.212.95.255', 1137983488, 1137991679, 'CA', 'Canada'), +('67.212.96.0', '67.213.63.255', 1137991680, 1138049023, 'US', 'United States'), +('67.213.64.0', '67.213.111.255', 1138049024, 1138061311, 'CA', 'Canada'), +('67.213.112.0', '67.214.255.255', 1138061312, 1138163711, 'US', 'United States'), +('67.215.0.0', '67.215.12.135', 1138163712, 1138166919, 'CA', 'Canada'), +('67.215.12.136', '67.215.12.143', 1138166920, 1138166927, 'PH', 'Philippines'), +('67.215.12.144', '67.215.15.247', 1138166928, 1138167799, 'CA', 'Canada'), +('67.215.15.248', '67.215.15.255', 1138167800, 1138167807, 'MA', 'Morocco'), +('67.215.16.0', '67.215.47.255', 1138167808, 1138175999, 'US', 'United States'), +('67.215.48.0', '67.215.63.255', 1138176000, 1138180095, 'CA', 'Canada'), +('67.215.64.0', '67.215.95.255', 1138180096, 1138188287, 'US', 'United States'), +('67.215.96.0', '67.215.111.255', 1138188288, 1138192383, 'PR', 'Puerto Rico'), +('67.215.112.0', '67.215.127.255', 1138192384, 1138196479, 'US', 'United States'), +('67.215.128.0', '67.215.159.255', 1138196480, 1138204671, 'CA', 'Canada'), +('67.215.160.0', '67.215.191.255', 1138204672, 1138212863, 'US', 'United States'), +('67.215.192.0', '67.215.207.255', 1138212864, 1138216959, 'CA', 'Canada'), +('67.215.208.0', '67.218.223.255', 1138216960, 1138417663, 'US', 'United States'), +('67.218.224.0', '67.218.224.31', 1138417664, 1138417695, 'CA', 'Canada'), +('67.218.224.32', '67.218.225.255', 1138417696, 1138418175, 'US', 'United States'), +('67.218.226.0', '67.218.226.255', 1138418176, 1138418431, 'CA', 'Canada'), +('67.218.227.0', '67.218.239.255', 1138418432, 1138421759, 'US', 'United States'), +('67.218.240.0', '67.218.240.31', 1138421760, 1138421791, 'DO', 'Dominican Republic'), +('67.218.240.32', '67.219.98.15', 1138421792, 1138450959, 'US', 'United States'), +('67.219.98.16', '67.219.98.23', 1138450960, 1138450967, 'JM', 'Jamaica'), +('67.219.98.24', '67.219.101.39', 1138450968, 1138451751, 'US', 'United States'), +('67.219.101.40', '67.219.101.47', 1138451752, 1138451759, 'FR', 'France'), +('67.219.101.48', '67.219.101.71', 1138451760, 1138451783, 'GB', 'United Kingdom'), +('67.219.101.72', '67.219.101.95', 1138451784, 1138451807, 'US', 'United States'), +('67.219.101.96', '67.219.101.103', 1138451808, 1138451815, 'AU', 'Australia'), +('67.219.101.104', '67.219.101.119', 1138451816, 1138451831, 'US', 'United States'), +('67.219.101.120', '67.219.101.127', 1138451832, 1138451839, 'EG', 'Egypt'), +('67.219.101.128', '67.219.101.135', 1138451840, 1138451847, 'CA', 'Canada'), +('67.219.101.136', '67.219.101.143', 1138451848, 1138451855, 'RU', 'Russian Federation'), +('67.219.101.144', '67.219.101.159', 1138451856, 1138451871, 'US', 'United States'), +('67.219.101.160', '67.219.101.167', 1138451872, 1138451879, 'CA', 'Canada'), +('67.219.101.168', '67.219.101.175', 1138451880, 1138451887, 'EG', 'Egypt'), +('67.219.101.176', '67.219.101.247', 1138451888, 1138451959, 'US', 'United States'), +('67.219.101.248', '67.219.101.255', 1138451960, 1138451967, 'RU', 'Russian Federation'), +('67.219.102.0', '67.219.102.39', 1138451968, 1138452007, 'US', 'United States'), +('67.219.102.40', '67.219.102.47', 1138452008, 1138452015, 'DE', 'Germany'), +('67.219.102.48', '67.219.102.79', 1138452016, 1138452047, 'US', 'United States'), +('67.219.102.80', '67.219.102.87', 1138452048, 1138452055, 'AU', 'Australia'), +('67.219.102.88', '67.219.102.95', 1138452056, 1138452063, 'GB', 'United Kingdom'), +('67.219.102.96', '67.219.103.31', 1138452064, 1138452255, 'US', 'United States'), +('67.219.103.32', '67.219.103.39', 1138452256, 1138452263, 'GB', 'United Kingdom'), +('67.219.103.40', '67.219.103.47', 1138452264, 1138452271, 'IN', 'India'), +('67.219.103.48', '67.219.103.63', 1138452272, 1138452287, 'US', 'United States'), +('67.219.103.64', '67.219.103.71', 1138452288, 1138452295, 'GR', 'Greece'), +('67.219.103.72', '67.219.103.87', 1138452296, 1138452311, 'US', 'United States'), +('67.219.103.88', '67.219.103.95', 1138452312, 1138452319, 'CA', 'Canada'), +('67.219.103.96', '67.219.103.111', 1138452320, 1138452335, 'US', 'United States'), +('67.219.103.112', '67.219.103.127', 1138452336, 1138452351, 'CA', 'Canada'), +('67.219.103.128', '67.219.103.191', 1138452352, 1138452415, 'US', 'United States'), +('67.219.103.192', '67.219.103.199', 1138452416, 1138452423, 'CA', 'Canada'), +('67.219.103.200', '67.219.103.207', 1138452424, 1138452431, 'FR', 'France'), +('67.219.103.208', '67.219.103.215', 1138452432, 1138452439, 'CN', 'China'), +('67.219.103.216', '67.219.103.231', 1138452440, 1138452455, 'US', 'United States'), +('67.219.103.232', '67.219.103.255', 1138452456, 1138452479, 'FR', 'France'), +('67.219.104.0', '67.219.108.63', 1138452480, 1138453567, 'US', 'United States'), +('67.219.108.64', '67.219.108.111', 1138453568, 1138453615, 'FR', 'France'), +('67.219.108.112', '67.219.109.255', 1138453616, 1138454015, 'US', 'United States'), +('67.219.110.0', '67.219.110.255', 1138454016, 1138454271, 'RU', 'Russian Federation'), +('67.219.111.0', '67.219.112.63', 1138454272, 1138454591, 'US', 'United States'), +('67.219.112.64', '67.219.112.71', 1138454592, 1138454599, 'CA', 'Canada'), +('67.219.112.72', '67.220.31.255', 1138454600, 1138499583, 'US', 'United States'), +('67.220.32.0', '67.220.47.255', 1138499584, 1138503679, 'CA', 'Canada'), +('67.220.48.0', '67.220.81.255', 1138503680, 1138512383, 'US', 'United States'), +('67.220.82.0', '67.220.82.31', 1138512384, 1138512415, 'ID', 'Indonesia'), +('67.220.82.32', '67.220.82.255', 1138512416, 1138512639, 'US', 'United States'), +('67.220.83.0', '67.220.83.31', 1138512640, 1138512671, 'ID', 'Indonesia'), +('67.220.83.32', '67.220.83.255', 1138512672, 1138512895, 'US', 'United States'), +('67.220.84.0', '67.220.84.31', 1138512896, 1138512927, 'ID', 'Indonesia'), +('67.220.84.32', '67.220.223.255', 1138512928, 1138548735, 'US', 'United States'), +('67.220.224.0', '67.220.225.255', 1138548736, 1138549247, 'CA', 'Canada'), +('67.220.226.0', '67.220.226.255', 1138549248, 1138549503, 'HK', 'Hong Kong'), +('67.220.227.0', '67.220.227.127', 1138549504, 1138549631, 'PL', 'Poland'), +('67.220.227.128', '67.220.228.255', 1138549632, 1138550015, 'CA', 'Canada'), +('67.220.229.0', '67.220.238.255', 1138550016, 1138552575, 'US', 'United States'), +('67.220.239.0', '67.220.255.255', 1138552576, 1138556927, 'CA', 'Canada'), +('67.221.0.0', '67.221.143.255', 1138556928, 1138593791, 'US', 'United States'), +('67.221.144.0', '67.221.159.255', 1138593792, 1138597887, 'CA', 'Canada'), +('67.221.160.0', '67.222.128.190', 1138597888, 1138655422, 'US', 'United States'), +('67.222.128.191', '67.222.128.198', 1138655423, 1138655430, 'RU', 'Russian Federation'), +('67.222.128.199', '67.222.129.97', 1138655431, 1138655585, 'US', 'United States'), +('67.222.129.98', '67.222.129.105', 1138655586, 1138655593, 'MO', 'Macau'), +('67.222.129.106', '67.222.136.66', 1138655594, 1138657346, 'US', 'United States'), +('67.222.136.67', '67.222.136.74', 1138657347, 1138657354, 'MO', 'Macau'), +('67.222.136.75', '67.222.137.33', 1138657355, 1138657569, 'US', 'United States'), +('67.222.137.34', '67.222.137.41', 1138657570, 1138657577, 'IN', 'India'), +('67.222.137.42', '67.222.137.229', 1138657578, 1138657765, 'US', 'United States'), +('67.222.137.230', '67.222.137.245', 1138657766, 1138657781, 'GB', 'United Kingdom'), +('67.222.137.246', '67.222.140.127', 1138657782, 1138658431, 'US', 'United States'), +('67.222.140.128', '67.222.140.192', 1138658432, 1138658496, 'PK', 'Pakistan'), +('67.222.140.193', '67.222.143.113', 1138658497, 1138659185, 'US', 'United States'), +('67.222.143.114', '67.222.143.121', 1138659186, 1138659193, 'ES', 'Spain'), +('67.222.143.122', '67.222.150.94', 1138659194, 1138660958, 'US', 'United States'), +('67.222.150.95', '67.222.150.102', 1138660959, 1138660966, 'MO', 'Macau'), +('67.222.150.103', '67.222.175.255', 1138660967, 1138667519, 'US', 'United States'), +('67.222.192.0', '67.223.95.255', 1138671616, 1138712575, 'US', 'United States'), +('67.223.96.0', '67.223.111.255', 1138712576, 1138716671, 'CA', 'Canada'), +('67.223.128.0', '67.223.159.255', 1138720768, 1138728959, 'CA', 'Canada'), +('67.223.160.0', '67.223.175.255', 1138728960, 1138733055, 'US', 'United States'), +('67.223.192.0', '67.224.79.255', 1138737152, 1138774015, 'US', 'United States'), +('67.224.80.0', '67.224.95.255', 1138774016, 1138778111, 'CA', 'Canada'), +('67.224.96.0', '67.224.127.255', 1138778112, 1138786303, 'US', 'United States'), +('67.224.128.0', '67.224.255.255', 1138786304, 1138819071, 'PR', 'Puerto Rico'), +('67.225.0.0', '67.225.127.255', 1138819072, 1138851839, 'CA', 'Canada'), +('67.225.128.0', '67.225.181.154', 1138851840, 1138865562, 'US', 'United States'), +('67.225.181.155', '67.225.181.158', 1138865563, 1138865566, 'IN', 'India'), +('67.225.181.159', '67.225.237.255', 1138865567, 1138879999, 'US', 'United States'), +('67.225.238.0', '67.225.239.255', 1138880000, 1138880511, 'CA', 'Canada'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('67.225.240.0', '67.225.247.141', 1138880512, 1138882445, 'US', 'United States'), +('67.225.247.142', '67.225.247.149', 1138882446, 1138882453, 'GB', 'United Kingdom'), +('67.225.247.150', '67.226.127.255', 1138882454, 1138917375, 'US', 'United States'), +('67.226.128.0', '67.226.255.255', 1138917376, 1138950143, 'CA', 'Canada'), +('67.227.0.0', '67.229.255.255', 1138950144, 1139146751, 'US', 'United States'), +('67.230.0.0', '67.230.31.255', 1139146752, 1139154943, 'GT', 'Guatemala'), +('67.230.32.0', '67.230.79.255', 1139154944, 1139167231, 'JM', 'Jamaica'), +('67.230.80.0', '67.230.127.255', 1139167232, 1139179519, 'US', 'United States'), +('67.230.128.0', '67.230.159.255', 1139179520, 1139187711, 'CA', 'Canada'), +('67.230.192.0', '67.230.207.255', 1139195904, 1139199999, 'US', 'United States'), +('67.231.0.0', '67.231.191.255', 1139212288, 1139261439, 'US', 'United States'), +('67.231.192.0', '67.231.223.255', 1139261440, 1139269631, 'CA', 'Canada'), +('67.231.224.0', '68.20.102.255', 1139269632, 1142187775, 'US', 'United States'), +('68.20.103.0', '68.20.103.7', 1142187776, 1142187783, 'PR', 'Puerto Rico'), +('68.20.103.8', '68.20.118.231', 1142187784, 1142191847, 'US', 'United States'), +('68.20.118.232', '68.20.118.239', 1142191848, 1142191855, 'PR', 'Puerto Rico'), +('68.20.118.240', '68.20.160.255', 1142191856, 1142202623, 'US', 'United States'), +('68.20.161.0', '68.20.161.7', 1142202624, 1142202631, 'PR', 'Puerto Rico'), +('68.20.161.8', '68.20.166.199', 1142202632, 1142204103, 'US', 'United States'), +('68.20.166.200', '68.20.166.207', 1142204104, 1142204111, 'PR', 'Puerto Rico'), +('68.20.166.208', '68.20.167.167', 1142204112, 1142204327, 'US', 'United States'), +('68.20.167.168', '68.20.167.175', 1142204328, 1142204335, 'PR', 'Puerto Rico'), +('68.20.167.176', '68.67.31.255', 1142204336, 1145249791, 'US', 'United States'), +('68.67.80.0', '68.67.95.255', 1145262080, 1145266175, 'CA', 'Canada'), +('68.67.112.0', '68.67.255.255', 1145270272, 1145307135, 'US', 'United States'), +('68.68.0.0', '68.68.15.255', 1145307136, 1145311231, 'CA', 'Canada'), +('68.68.32.0', '68.69.127.255', 1145315328, 1145405439, 'US', 'United States'), +('68.69.128.0', '68.69.143.255', 1145405440, 1145409535, 'CA', 'Canada'), +('68.69.160.0', '68.69.191.255', 1145413632, 1145421823, 'US', 'United States'), +('68.69.192.0', '68.69.223.255', 1145421824, 1145430015, 'CA', 'Canada'), +('68.70.0.0', '68.70.255.255', 1145438208, 1145503743, 'US', 'United States'), +('68.71.0.0', '68.71.63.255', 1145503744, 1145520127, 'CA', 'Canada'), +('68.71.64.0', '68.71.127.255', 1145520128, 1145536511, 'US', 'United States'), +('68.71.192.0', '68.71.207.255', 1145552896, 1145556991, 'CA', 'Canada'), +('68.71.208.0', '68.71.223.255', 1145556992, 1145561087, 'US', 'United States'), +('68.71.240.0', '68.143.255.255', 1145565184, 1150287871, 'US', 'United States'), +('68.144.0.0', '68.151.255.255', 1150287872, 1150812159, 'CA', 'Canada'), +('68.152.0.0', '68.168.79.255', 1150812160, 1151881215, 'US', 'United States'), +('68.168.112.0', '68.168.127.255', 1151889408, 1151893503, 'CA', 'Canada'), +('68.168.128.0', '68.178.255.255', 1151893504, 1152581631, 'US', 'United States'), +('68.179.0.0', '68.179.127.255', 1152581632, 1152614399, 'CA', 'Canada'), +('68.179.128.0', '68.181.255.255', 1152614400, 1152778239, 'US', 'United States'), +('68.182.0.0', '68.182.255.255', 1152778240, 1152843775, 'CA', 'Canada'), +('68.183.0.0', '68.208.23.255', 1152843776, 1154488319, 'US', 'United States'), +('68.208.24.0', '68.208.24.255', 1154488320, 1154488575, 'A2', 'Satellite Provider'), +('68.208.25.0', '68.231.255.255', 1154488576, 1156055039, 'US', 'United States'), +('68.232.32.0', '68.232.47.255', 1156063232, 1156067327, 'US', 'United States'), +('68.232.64.0', '68.232.79.255', 1156071424, 1156075519, 'CA', 'Canada'), +('68.232.112.0', '68.236.71.7', 1156083712, 1156335367, 'US', 'United States'), +('68.236.71.8', '68.236.71.15', 1156335368, 1156335375, 'PR', 'Puerto Rico'), +('68.236.71.16', '69.0.166.31', 1156335376, 1157670431, 'US', 'United States'), +('69.0.166.32', '69.0.166.63', 1157670432, 1157670463, 'CA', 'Canada'), +('69.0.166.64', '69.1.78.255', 1157670464, 1157713663, 'US', 'United States'), +('69.1.79.0', '69.1.79.127', 1157713664, 1157713791, 'CA', 'Canada'), +('69.1.79.128', '69.1.241.111', 1157713792, 1157755247, 'US', 'United States'), +('69.1.241.112', '69.1.241.127', 1157755248, 1157755263, 'GR', 'Greece'), +('69.1.241.128', '69.4.159.255', 1157755264, 1157931007, 'US', 'United States'), +('69.4.160.0', '69.4.175.255', 1157931008, 1157935103, 'BS', 'Bahamas'), +('69.4.176.0', '69.4.207.255', 1157935104, 1157943295, 'US', 'United States'), +('69.4.208.0', '69.4.223.255', 1157943296, 1157947391, 'CA', 'Canada'), +('69.4.224.0', '69.6.23.255', 1157947392, 1158027263, 'US', 'United States'), +('69.6.24.0', '69.6.24.255', 1158027264, 1158027519, 'CA', 'Canada'), +('69.6.25.0', '69.6.27.255', 1158027520, 1158028287, 'US', 'United States'), +('69.6.28.0', '69.6.28.255', 1158028288, 1158028543, 'CA', 'Canada'), +('69.6.29.0', '69.7.239.255', 1158028544, 1158148095, 'US', 'United States'), +('69.7.240.0', '69.7.255.255', 1158148096, 1158152191, 'CA', 'Canada'), +('69.8.0.0', '69.8.159.255', 1158152192, 1158193151, 'US', 'United States'), +('69.8.160.0', '69.8.160.63', 1158193152, 1158193215, 'CA', 'Canada'), +('69.8.160.64', '69.8.160.95', 1158193216, 1158193247, 'US', 'United States'), +('69.8.160.96', '69.8.163.255', 1158193248, 1158194175, 'CA', 'Canada'), +('69.8.164.0', '69.8.164.63', 1158194176, 1158194239, 'US', 'United States'), +('69.8.164.64', '69.8.164.159', 1158194240, 1158194335, 'CA', 'Canada'), +('69.8.164.160', '69.8.164.255', 1158194336, 1158194431, 'US', 'United States'), +('69.8.165.0', '69.8.166.63', 1158194432, 1158194751, 'CA', 'Canada'), +('69.8.166.64', '69.8.166.127', 1158194752, 1158194815, 'US', 'United States'), +('69.8.166.128', '69.8.166.191', 1158194816, 1158194879, 'CA', 'Canada'), +('69.8.166.192', '69.8.167.127', 1158194880, 1158195071, 'US', 'United States'), +('69.8.167.128', '69.8.173.15', 1158195072, 1158196495, 'CA', 'Canada'), +('69.8.173.16', '69.8.173.47', 1158196496, 1158196527, 'US', 'United States'), +('69.8.173.48', '69.8.173.95', 1158196528, 1158196575, 'CA', 'Canada'), +('69.8.173.96', '69.8.173.111', 1158196576, 1158196591, 'US', 'United States'), +('69.8.173.112', '69.8.175.255', 1158196592, 1158197247, 'CA', 'Canada'), +('69.8.176.0', '69.9.63.255', 1158197248, 1158234111, 'US', 'United States'), +('69.9.64.0', '69.9.94.255', 1158234112, 1158242047, 'CA', 'Canada'), +('69.9.95.0', '69.9.95.255', 1158242048, 1158242303, 'US', 'United States'), +('69.9.96.0', '69.9.124.255', 1158242304, 1158249727, 'CA', 'Canada'), +('69.9.125.0', '69.10.48.255', 1158249728, 1158295807, 'US', 'United States'), +('69.10.49.0', '69.10.49.255', 1158295808, 1158296063, 'GB', 'United Kingdom'), +('69.10.50.0', '69.10.127.255', 1158296064, 1158316031, 'US', 'United States'), +('69.10.128.0', '69.10.130.127', 1158316032, 1158316671, 'CA', 'Canada'), +('69.10.130.128', '69.10.130.191', 1158316672, 1158316735, 'A1', 'Anonymous Proxy'), +('69.10.130.192', '69.10.138.255', 1158316736, 1158318847, 'CA', 'Canada'), +('69.10.139.0', '69.10.139.127', 1158318848, 1158318975, 'A1', 'Anonymous Proxy'), +('69.10.139.128', '69.10.140.191', 1158318976, 1158319295, 'CA', 'Canada'), +('69.10.140.192', '69.10.140.255', 1158319296, 1158319359, 'A1', 'Anonymous Proxy'), +('69.10.141.0', '69.10.142.255', 1158319360, 1158319871, 'CA', 'Canada'), +('69.10.143.0', '69.10.143.63', 1158319872, 1158319935, 'A1', 'Anonymous Proxy'), +('69.10.143.64', '69.10.144.255', 1158319936, 1158320383, 'CA', 'Canada'), +('69.10.145.0', '69.10.145.127', 1158320384, 1158320511, 'A1', 'Anonymous Proxy'), +('69.10.145.128', '69.10.145.191', 1158320512, 1158320575, 'CA', 'Canada'), +('69.10.145.192', '69.10.145.255', 1158320576, 1158320639, 'A1', 'Anonymous Proxy'), +('69.10.146.0', '69.10.149.255', 1158320640, 1158321663, 'CA', 'Canada'), +('69.10.150.0', '69.10.150.127', 1158321664, 1158321791, 'A1', 'Anonymous Proxy'), +('69.10.150.128', '69.10.159.159', 1158321792, 1158324127, 'CA', 'Canada'), +('69.10.159.160', '69.10.159.191', 1158324128, 1158324159, 'A1', 'Anonymous Proxy'), +('69.10.159.192', '69.10.159.255', 1158324160, 1158324223, 'CA', 'Canada'), +('69.10.160.0', '69.10.223.255', 1158324224, 1158340607, 'US', 'United States'), +('69.10.224.0', '69.10.239.255', 1158340608, 1158344703, 'CA', 'Canada'), +('69.10.240.0', '69.10.255.255', 1158344704, 1158348799, 'US', 'United States'), +('69.11.0.0', '69.11.127.255', 1158348800, 1158381567, 'CA', 'Canada'), +('69.11.128.0', '69.13.6.9', 1158381568, 1158481417, 'US', 'United States'), +('69.13.6.10', '69.13.6.18', 1158481418, 1158481426, 'CA', 'Canada'), +('69.13.6.19', '69.13.6.19', 1158481427, 1158481427, 'US', 'United States'), +('69.13.6.20', '69.13.6.28', 1158481428, 1158481436, 'CA', 'Canada'), +('69.13.6.29', '69.13.6.99', 1158481437, 1158481507, 'US', 'United States'), +('69.13.6.100', '69.13.6.108', 1158481508, 1158481516, 'CA', 'Canada'), +('69.13.6.109', '69.13.6.189', 1158481517, 1158481597, 'US', 'United States'), +('69.13.6.190', '69.13.6.198', 1158481598, 1158481606, 'CA', 'Canada'), +('69.13.6.199', '69.13.7.73', 1158481607, 1158481737, 'US', 'United States'), +('69.13.7.74', '69.13.7.81', 1158481738, 1158481745, 'CA', 'Canada'), +('69.13.7.82', '69.13.33.209', 1158481746, 1158488529, 'US', 'United States'), +('69.13.33.210', '69.13.33.222', 1158488530, 1158488542, 'IL', 'Israel'), +('69.13.33.223', '69.13.35.1', 1158488543, 1158488833, 'US', 'United States'), +('69.13.35.2', '69.13.35.14', 1158488834, 1158488846, 'IL', 'Israel'), +('69.13.35.15', '69.13.53.1', 1158488847, 1158493441, 'US', 'United States'), +('69.13.53.2', '69.13.53.126', 1158493442, 1158493566, 'CA', 'Canada'), +('69.13.53.127', '69.13.64.241', 1158493567, 1158496497, 'US', 'United States'), +('69.13.64.242', '69.13.64.250', 1158496498, 1158496506, 'TC', 'Turks and Caicos Islands'), +('69.13.64.251', '69.13.65.18', 1158496507, 1158496530, 'US', 'United States'), +('69.13.65.19', '69.13.65.27', 1158496531, 1158496539, 'WS', 'Samoa'), +('69.13.65.28', '69.13.66.11', 1158496540, 1158496779, 'US', 'United States'), +('69.13.66.12', '69.13.66.20', 1158496780, 1158496788, 'FJ', 'Fiji'), +('69.13.66.21', '69.13.66.29', 1158496789, 1158496797, 'BE', 'Belgium'), +('69.13.66.30', '69.13.66.38', 1158496798, 1158496806, 'US', 'United States'), +('69.13.66.39', '69.13.66.47', 1158496807, 1158496815, 'PE', 'Peru'), +('69.13.66.48', '69.13.69.80', 1158496816, 1158497616, 'US', 'United States'), +('69.13.69.81', '69.13.69.89', 1158497617, 1158497625, 'CH', 'Switzerland'), +('69.13.69.90', '69.13.69.116', 1158497626, 1158497652, 'US', 'United States'), +('69.13.69.117', '69.13.69.125', 1158497653, 1158497661, 'CA', 'Canada'), +('69.13.69.126', '69.13.69.134', 1158497662, 1158497670, 'GE', 'Georgia'), +('69.13.69.135', '69.13.69.234', 1158497671, 1158497770, 'US', 'United States'), +('69.13.69.235', '69.13.69.243', 1158497771, 1158497779, 'CA', 'Canada'), +('69.13.69.244', '69.13.70.33', 1158497780, 1158497825, 'US', 'United States'), +('69.13.70.34', '69.13.70.42', 1158497826, 1158497834, 'GE', 'Georgia'), +('69.13.70.43', '69.13.70.73', 1158497835, 1158497865, 'WS', 'Samoa'), +('69.13.70.74', '69.13.70.240', 1158497866, 1158498032, 'US', 'United States'), +('69.13.70.241', '69.13.70.249', 1158498033, 1158498041, 'HK', 'Hong Kong'), +('69.13.70.250', '69.13.71.234', 1158498042, 1158498282, 'US', 'United States'), +('69.13.71.235', '69.13.71.243', 1158498283, 1158498291, 'MX', 'Mexico'), +('69.13.71.244', '69.13.72.153', 1158498292, 1158498457, 'US', 'United States'), +('69.13.72.154', '69.13.72.162', 1158498458, 1158498466, 'GR', 'Greece'), +('69.13.72.163', '69.13.73.218', 1158498467, 1158498778, 'US', 'United States'), +('69.13.73.219', '69.13.73.227', 1158498779, 1158498787, 'IT', 'Italy'), +('69.13.73.228', '69.13.75.99', 1158498788, 1158499171, 'US', 'United States'), +('69.13.75.100', '69.13.75.107', 1158499172, 1158499179, 'VI', 'Virgin Islands, U.S.'), +('69.13.75.108', '69.13.75.243', 1158499180, 1158499315, 'US', 'United States'), +('69.13.75.244', '69.13.75.254', 1158499316, 1158499326, 'CA', 'Canada'), +('69.13.75.255', '69.13.76.54', 1158499327, 1158499382, 'US', 'United States'), +('69.13.76.55', '69.13.76.63', 1158499383, 1158499391, 'AS', 'American Samoa'), +('69.13.76.64', '69.13.76.72', 1158499392, 1158499400, 'NL', 'Netherlands'), +('69.13.76.73', '69.13.76.81', 1158499401, 1158499409, 'FR', 'France'), +('69.13.76.82', '69.13.77.0', 1158499410, 1158499584, 'US', 'United States'), +('69.13.77.1', '69.13.77.254', 1158499585, 1158499838, 'CA', 'Canada'), +('69.13.77.255', '69.13.83.0', 1158499839, 1158501120, 'US', 'United States'), +('69.13.83.1', '69.13.83.254', 1158501121, 1158501374, 'PR', 'Puerto Rico'), +('69.13.83.255', '69.13.97.71', 1158501375, 1158504775, 'US', 'United States'), +('69.13.97.72', '69.13.97.80', 1158504776, 1158504784, 'CA', 'Canada'), +('69.13.97.81', '69.13.97.132', 1158504785, 1158504836, 'US', 'United States'), +('69.13.97.133', '69.13.97.141', 1158504837, 1158504845, 'JM', 'Jamaica'), +('69.13.97.142', '69.13.97.159', 1158504846, 1158504863, 'US', 'United States'), +('69.13.97.160', '69.13.97.168', 1158504864, 1158504872, 'GR', 'Greece'), +('69.13.97.169', '69.13.97.237', 1158504873, 1158504941, 'US', 'United States'), +('69.13.97.238', '69.13.97.246', 1158504942, 1158504950, 'CA', 'Canada'), +('69.13.97.247', '69.13.97.247', 1158504951, 1158504951, 'US', 'United States'), +('69.13.97.248', '69.13.97.255', 1158504952, 1158504959, 'KE', 'Kenya'), +('69.13.98.0', '69.13.100.18', 1158504960, 1158505490, 'US', 'United States'), +('69.13.100.19', '69.13.100.27', 1158505491, 1158505499, 'CA', 'Canada'), +('69.13.100.28', '69.13.100.181', 1158505500, 1158505653, 'US', 'United States'), +('69.13.100.182', '69.13.100.255', 1158505654, 1158505727, 'AU', 'Australia'), +('69.13.101.0', '69.13.105.41', 1158505728, 1158506793, 'US', 'United States'), +('69.13.105.42', '69.13.105.57', 1158506794, 1158506809, 'IN', 'India'), +('69.13.105.58', '69.13.128.101', 1158506810, 1158512741, 'US', 'United States'), +('69.13.128.102', '69.13.128.110', 1158512742, 1158512750, 'PK', 'Pakistan'), +('69.13.128.111', '69.13.129.127', 1158512751, 1158513023, 'US', 'United States'), +('69.13.129.128', '69.13.129.136', 1158513024, 1158513032, 'CR', 'Costa Rica'), +('69.13.129.137', '69.13.129.154', 1158513033, 1158513050, 'US', 'United States'), +('69.13.129.155', '69.13.129.163', 1158513051, 1158513059, 'AS', 'American Samoa'), +('69.13.129.164', '69.13.129.174', 1158513060, 1158513070, 'US', 'United States'), +('69.13.129.175', '69.13.129.183', 1158513071, 1158513079, 'AS', 'American Samoa'), +('69.13.129.184', '69.13.130.210', 1158513080, 1158513362, 'US', 'United States'), +('69.13.130.211', '69.13.130.219', 1158513363, 1158513371, 'TC', 'Turks and Caicos Islands'), +('69.13.130.220', '69.13.130.246', 1158513372, 1158513398, 'US', 'United States'), +('69.13.130.247', '69.13.130.255', 1158513399, 1158513407, 'CA', 'Canada'), +('69.13.131.0', '69.13.131.192', 1158513408, 1158513600, 'US', 'United States'), +('69.13.131.193', '69.13.131.201', 1158513601, 1158513609, 'CA', 'Canada'), +('69.13.131.202', '69.13.131.210', 1158513610, 1158513618, 'US', 'United States'), +('69.13.131.211', '69.13.131.219', 1158513619, 1158513627, 'CO', 'Colombia'), +('69.13.131.220', '69.13.132.18', 1158513628, 1158513682, 'US', 'United States'), +('69.13.132.19', '69.13.132.27', 1158513683, 1158513691, 'CA', 'Canada'), +('69.13.132.28', '69.13.132.92', 1158513692, 1158513756, 'US', 'United States'), +('69.13.132.93', '69.13.132.101', 1158513757, 1158513765, 'TC', 'Turks and Caicos Islands'), +('69.13.132.102', '69.13.132.186', 1158513766, 1158513850, 'US', 'United States'), +('69.13.132.187', '69.13.132.195', 1158513851, 1158513859, 'SZ', 'Swaziland'), +('69.13.132.196', '69.13.132.213', 1158513860, 1158513877, 'US', 'United States'), +('69.13.132.214', '69.13.132.222', 1158513878, 1158513886, 'BZ', 'Belize'), +('69.13.132.223', '69.13.133.137', 1158513887, 1158514057, 'US', 'United States'), +('69.13.133.138', '69.13.133.146', 1158514058, 1158514066, 'SN', 'Senegal'), +('69.13.133.147', '69.13.133.155', 1158514067, 1158514075, 'US', 'United States'), +('69.13.133.156', '69.13.133.164', 1158514076, 1158514084, 'MX', 'Mexico'), +('69.13.133.165', '69.13.133.209', 1158514085, 1158514129, 'US', 'United States'), +('69.13.133.210', '69.13.133.218', 1158514130, 1158514138, 'TW', 'Taiwan'), +('69.13.133.219', '69.13.134.155', 1158514139, 1158514331, 'US', 'United States'), +('69.13.134.156', '69.13.134.164', 1158514332, 1158514340, 'CA', 'Canada'), +('69.13.134.165', '69.13.134.173', 1158514341, 1158514349, 'US', 'United States'), +('69.13.134.174', '69.13.134.182', 1158514350, 1158514358, 'MX', 'Mexico'), +('69.13.134.183', '69.13.134.191', 1158514359, 1158514367, 'US', 'United States'), +('69.13.134.192', '69.13.134.200', 1158514368, 1158514376, 'CA', 'Canada'), +('69.13.134.201', '69.13.135.0', 1158514377, 1158514432, 'US', 'United States'), +('69.13.135.1', '69.13.135.128', 1158514433, 1158514560, 'AS', 'American Samoa'), +('69.13.135.129', '69.13.135.232', 1158514561, 1158514664, 'US', 'United States'), +('69.13.135.233', '69.13.135.241', 1158514665, 1158514673, 'FR', 'France'), +('69.13.135.242', '69.13.136.99', 1158514674, 1158514787, 'US', 'United States'), +('69.13.136.100', '69.13.136.108', 1158514788, 1158514796, 'AS', 'American Samoa'), +('69.13.136.109', '69.13.138.73', 1158514797, 1158515273, 'US', 'United States'), +('69.13.138.74', '69.13.138.82', 1158515274, 1158515282, 'BZ', 'Belize'), +('69.13.138.83', '69.13.144.108', 1158515283, 1158516844, 'US', 'United States'), +('69.13.144.109', '69.13.144.117', 1158516845, 1158516853, 'CA', 'Canada'), +('69.13.144.118', '69.13.144.123', 1158516854, 1158516859, 'US', 'United States'), +('69.13.144.124', '69.13.144.132', 1158516860, 1158516868, 'AU', 'Australia'), +('69.13.144.133', '69.13.144.202', 1158516869, 1158516938, 'US', 'United States'), +('69.13.144.203', '69.13.144.211', 1158516939, 1158516947, 'CA', 'Canada'), +('69.13.144.212', '69.13.146.36', 1158516948, 1158517284, 'US', 'United States'), +('69.13.146.37', '69.13.146.45', 1158517285, 1158517293, 'PK', 'Pakistan'), +('69.13.146.46', '69.13.146.178', 1158517294, 1158517426, 'US', 'United States'), +('69.13.146.179', '69.13.146.187', 1158517427, 1158517435, 'BG', 'Bulgaria'), +('69.13.146.188', '69.13.146.218', 1158517436, 1158517466, 'US', 'United States'), +('69.13.146.219', '69.13.146.227', 1158517467, 1158517475, 'BE', 'Belgium'), +('69.13.146.228', '69.13.149.4', 1158517476, 1158518020, 'US', 'United States'), +('69.13.149.5', '69.13.149.13', 1158518021, 1158518029, 'CA', 'Canada'), +('69.13.149.14', '69.13.149.91', 1158518030, 1158518107, 'US', 'United States'), +('69.13.149.92', '69.13.149.100', 1158518108, 1158518116, 'TH', 'Thailand'), +('69.13.149.101', '69.13.149.230', 1158518117, 1158518246, 'US', 'United States'), +('69.13.149.231', '69.13.149.239', 1158518247, 1158518255, 'CA', 'Canada'), +('69.13.149.240', '69.13.150.75', 1158518256, 1158518347, 'US', 'United States'), +('69.13.150.76', '69.13.150.84', 1158518348, 1158518356, 'NO', 'Norway'), +('69.13.150.85', '69.13.151.199', 1158518357, 1158518727, 'US', 'United States'), +('69.13.151.200', '69.13.151.208', 1158518728, 1158518736, 'SZ', 'Swaziland'), +('69.13.151.209', '69.13.152.0', 1158518737, 1158518784, 'US', 'United States'), +('69.13.152.1', '69.13.152.254', 1158518785, 1158519038, 'NO', 'Norway'), +('69.13.152.255', '69.13.153.9', 1158519039, 1158519049, 'US', 'United States'), +('69.13.153.10', '69.13.153.18', 1158519050, 1158519058, 'CH', 'Switzerland'), +('69.13.153.19', '69.13.153.27', 1158519059, 1158519067, 'NL', 'Netherlands'), +('69.13.153.28', '69.13.154.177', 1158519068, 1158519473, 'US', 'United States'), +('69.13.154.178', '69.13.154.187', 1158519474, 1158519483, 'CA', 'Canada'), +('69.13.154.188', '69.13.155.64', 1158519484, 1158519616, 'US', 'United States'), +('69.13.155.65', '69.13.155.73', 1158519617, 1158519625, 'WS', 'Samoa'), +('69.13.155.74', '69.13.155.206', 1158519626, 1158519758, 'US', 'United States'), +('69.13.155.207', '69.13.155.224', 1158519759, 1158519776, 'CA', 'Canada'), +('69.13.155.225', '69.13.155.242', 1158519777, 1158519794, 'US', 'United States'), +('69.13.155.243', '69.13.155.251', 1158519795, 1158519803, 'NO', 'Norway'), +('69.13.155.252', '69.13.156.18', 1158519804, 1158519826, 'US', 'United States'), +('69.13.156.19', '69.13.156.145', 1158519827, 1158519953, 'WS', 'Samoa'), +('69.13.156.146', '69.13.158.221', 1158519954, 1158520541, 'US', 'United States'), +('69.13.158.222', '69.13.158.230', 1158520542, 1158520550, 'IS', 'Iceland'), +('69.13.158.231', '69.13.177.0', 1158520551, 1158525184, 'US', 'United States'), +('69.13.177.1', '69.13.177.136', 1158525185, 1158525320, 'BE', 'Belgium'), +('69.13.177.137', '69.13.179.45', 1158525321, 1158525741, 'US', 'United States'), +('69.13.179.46', '69.13.179.54', 1158525742, 1158525750, 'BZ', 'Belize'), +('69.13.179.55', '69.13.179.80', 1158525751, 1158525776, 'US', 'United States'), +('69.13.179.81', '69.13.179.89', 1158525777, 1158525785, 'FR', 'France'), +('69.13.179.90', '69.13.179.125', 1158525786, 1158525821, 'US', 'United States'), +('69.13.179.126', '69.13.179.134', 1158525822, 1158525830, 'IT', 'Italy'), +('69.13.179.135', '69.13.181.89', 1158525831, 1158526297, 'US', 'United States'), +('69.13.181.90', '69.13.181.98', 1158526298, 1158526306, 'IT', 'Italy'), +('69.13.181.99', '69.13.181.127', 1158526307, 1158526335, 'US', 'United States'), +('69.13.181.128', '69.13.181.136', 1158526336, 1158526344, 'FR', 'France'), +('69.13.181.137', '69.13.181.138', 1158526345, 1158526346, 'US', 'United States'), +('69.13.181.139', '69.13.181.147', 1158526347, 1158526355, 'PE', 'Peru'), +('69.13.181.148', '69.13.181.149', 1158526356, 1158526357, 'US', 'United States'), +('69.13.181.150', '69.13.181.158', 1158526358, 1158526366, 'CA', 'Canada'), +('69.13.181.159', '69.13.181.160', 1158526367, 1158526368, 'US', 'United States'), +('69.13.181.161', '69.13.181.169', 1158526369, 1158526377, 'CH', 'Switzerland'), +('69.13.181.170', '69.13.183.210', 1158526378, 1158526930, 'US', 'United States'), +('69.13.183.211', '69.13.183.243', 1158526931, 1158526963, 'AS', 'American Samoa'), +('69.13.183.244', '69.13.184.11', 1158526964, 1158526987, 'US', 'United States'), +('69.13.184.12', '69.13.184.20', 1158526988, 1158526996, 'MY', 'Malaysia'), +('69.13.184.21', '69.13.184.92', 1158526997, 1158527068, 'US', 'United States'), +('69.13.184.93', '69.13.184.101', 1158527069, 1158527077, 'WS', 'Samoa'), +('69.13.184.102', '69.13.184.110', 1158527078, 1158527086, 'US', 'United States'), +('69.13.184.111', '69.13.184.119', 1158527087, 1158527095, 'CA', 'Canada'), +('69.13.184.120', '69.13.184.121', 1158527096, 1158527097, 'US', 'United States'), +('69.13.184.122', '69.13.184.130', 1158527098, 1158527106, 'KE', 'Kenya'), +('69.13.184.131', '69.13.184.157', 1158527107, 1158527133, 'US', 'United States'), +('69.13.184.158', '69.13.184.166', 1158527134, 1158527142, 'FR', 'France'), +('69.13.184.167', '69.13.184.240', 1158527143, 1158527216, 'US', 'United States'), +('69.13.184.241', '69.13.184.249', 1158527217, 1158527225, 'CA', 'Canada'), +('69.13.184.250', '69.13.185.56', 1158527226, 1158527288, 'US', 'United States'), +('69.13.185.57', '69.13.185.65', 1158527289, 1158527297, 'CA', 'Canada'), +('69.13.185.66', '69.13.185.74', 1158527298, 1158527306, 'US', 'United States'), +('69.13.185.75', '69.13.185.83', 1158527307, 1158527315, 'BA', 'Bosnia and Herzegovina'), +('69.13.185.84', '69.13.185.222', 1158527316, 1158527454, 'US', 'United States'), +('69.13.185.223', '69.13.185.231', 1158527455, 1158527463, 'IR', 'Iran, Islamic Republic of'), +('69.13.185.232', '69.13.187.95', 1158527464, 1158527839, 'US', 'United States'), +('69.13.187.96', '69.13.187.104', 1158527840, 1158527848, 'AS', 'American Samoa'), +('69.13.187.105', '69.13.189.0', 1158527849, 1158528256, 'US', 'United States'), +('69.13.189.1', '69.13.189.255', 1158528257, 1158528511, 'CA', 'Canada'), +('69.13.190.0', '69.13.190.0', 1158528512, 1158528512, 'US', 'United States'), +('69.13.190.1', '69.13.190.9', 1158528513, 1158528521, 'AS', 'American Samoa'), +('69.13.190.10', '69.13.190.63', 1158528522, 1158528575, 'US', 'United States'), +('69.13.190.64', '69.13.190.72', 1158528576, 1158528584, 'MX', 'Mexico'), +('69.13.190.73', '69.13.190.117', 1158528585, 1158528629, 'US', 'United States'), +('69.13.190.118', '69.13.190.126', 1158528630, 1158528638, 'CA', 'Canada'), +('69.13.190.127', '69.13.190.135', 1158528639, 1158528647, 'VN', 'Vietnam'), +('69.13.190.136', '69.13.190.243', 1158528648, 1158528755, 'US', 'United States'), +('69.13.190.244', '69.13.190.252', 1158528756, 1158528764, 'SN', 'Senegal'), +('69.13.190.253', '69.13.191.9', 1158528765, 1158528777, 'US', 'United States'), +('69.13.191.10', '69.13.191.18', 1158528778, 1158528786, 'AS', 'American Samoa'), +('69.13.191.19', '69.13.230.112', 1158528787, 1158538864, 'US', 'United States'), +('69.13.230.113', '69.13.230.120', 1158538865, 1158538872, 'WS', 'Samoa'), +('69.13.230.121', '69.13.248.127', 1158538873, 1158543487, 'US', 'United States'), +('69.13.248.128', '69.13.248.135', 1158543488, 1158543495, 'CA', 'Canada'), +('69.13.248.136', '69.16.150.127', 1158543496, 1158715007, 'US', 'United States'), +('69.16.150.128', '69.16.150.159', 1158715008, 1158715039, 'IE', 'Ireland'), +('69.16.150.160', '69.16.155.255', 1158715040, 1158716415, 'US', 'United States'), +('69.16.156.0', '69.16.156.7', 1158716416, 1158716423, 'IN', 'India'), +('69.16.156.8', '69.16.156.127', 1158716424, 1158716543, 'US', 'United States'), +('69.16.156.128', '69.16.156.135', 1158716544, 1158716551, 'IE', 'Ireland'), +('69.16.156.136', '69.16.156.255', 1158716552, 1158716671, 'US', 'United States'), +('69.16.157.0', '69.16.157.31', 1158716672, 1158716703, 'IE', 'Ireland'), +('69.16.157.32', '69.16.162.15', 1158716704, 1158717967, 'US', 'United States'), +('69.16.162.16', '69.16.162.31', 1158717968, 1158717983, 'CA', 'Canada'), +('69.16.162.32', '69.16.162.47', 1158717984, 1158717999, 'US', 'United States'), +('69.16.162.48', '69.16.162.63', 1158718000, 1158718015, 'CY', 'Cyprus'), +('69.16.162.64', '69.16.196.75', 1158718016, 1158726731, 'US', 'United States'), +('69.16.196.76', '69.16.196.83', 1158726732, 1158726739, 'CA', 'Canada'), +('69.16.196.84', '69.16.220.76', 1158726740, 1158732876, 'US', 'United States'), +('69.16.220.77', '69.16.220.84', 1158732877, 1158732884, 'GB', 'United Kingdom'), +('69.16.220.85', '69.16.233.113', 1158732885, 1158736241, 'US', 'United States'), +('69.16.233.114', '69.16.233.121', 1158736242, 1158736249, 'IN', 'India'), +('69.16.233.122', '69.16.253.42', 1158736250, 1158741290, 'US', 'United States'), +('69.16.253.43', '69.16.253.50', 1158741291, 1158741298, 'CA', 'Canada'), +('69.16.253.51', '69.17.127.255', 1158741299, 1158774783, 'US', 'United States'), +('69.17.128.0', '69.17.191.255', 1158774784, 1158791167, 'CA', 'Canada'), +('69.17.192.0', '69.17.223.255', 1158791168, 1158799359, 'BM', 'Bermuda'), +('69.17.224.0', '69.17.255.255', 1158799360, 1158807551, 'CA', 'Canada'), +('69.18.0.0', '69.20.223.255', 1158807552, 1158995967, 'US', 'United States'), +('69.20.224.0', '69.20.255.255', 1158995968, 1159004159, 'CA', 'Canada'), +('69.21.0.0', '69.24.47.255', 1159004160, 1159213055, 'US', 'United States'), +('69.24.48.0', '69.24.63.255', 1159213056, 1159217151, 'CA', 'Canada'), +('69.24.64.0', '69.24.191.255', 1159217152, 1159249919, 'US', 'United States'), +('69.24.192.0', '69.24.207.255', 1159249920, 1159254015, 'PR', 'Puerto Rico'), +('69.24.208.0', '69.24.239.255', 1159254016, 1159262207, 'US', 'United States'), +('69.25.0.0', '69.25.2.119', 1159266304, 1159266935, 'US', 'United States'), +('69.25.2.120', '69.25.2.127', 1159266936, 1159266943, 'PR', 'Puerto Rico'), +('69.25.2.128', '69.25.8.151', 1159266944, 1159268503, 'US', 'United States'), +('69.25.8.152', '69.25.8.159', 1159268504, 1159268511, 'CA', 'Canada'), +('69.25.8.160', '69.25.10.255', 1159268512, 1159269119, 'US', 'United States'), +('69.25.11.0', '69.25.11.255', 1159269120, 1159269375, 'CA', 'Canada'), +('69.25.12.0', '69.25.40.255', 1159269376, 1159276799, 'US', 'United States'), +('69.25.41.0', '69.25.41.255', 1159276800, 1159277055, 'A2', 'Satellite Provider'), +('69.25.42.0', '69.25.48.191', 1159277056, 1159278783, 'US', 'United States'), +('69.25.48.192', '69.25.48.199', 1159278784, 1159278791, 'CA', 'Canada'), +('69.25.48.200', '69.25.48.223', 1159278792, 1159278815, 'US', 'United States'), +('69.25.48.224', '69.25.48.255', 1159278816, 1159278847, 'CA', 'Canada'), +('69.25.49.0', '69.25.57.255', 1159278848, 1159281151, 'US', 'United States'), +('69.25.58.0', '69.25.58.255', 1159281152, 1159281407, 'HK', 'Hong Kong'), +('69.25.59.0', '69.25.60.15', 1159281408, 1159281679, 'US', 'United States'), +('69.25.60.16', '69.25.60.31', 1159281680, 1159281695, 'HK', 'Hong Kong'), +('69.25.60.32', '69.25.60.63', 1159281696, 1159281727, 'US', 'United States'), +('69.25.60.64', '69.25.60.79', 1159281728, 1159281743, 'HK', 'Hong Kong'), +('69.25.60.80', '69.25.60.255', 1159281744, 1159281919, 'US', 'United States'), +('69.25.61.0', '69.25.61.255', 1159281920, 1159282175, 'HK', 'Hong Kong'), +('69.25.62.0', '69.25.103.135', 1159282176, 1159292807, 'US', 'United States'), +('69.25.103.136', '69.25.103.143', 1159292808, 1159292815, 'AU', 'Australia'), +('69.25.103.144', '69.25.105.159', 1159292816, 1159293343, 'US', 'United States'), +('69.25.105.160', '69.25.105.175', 1159293344, 1159293359, 'KR', 'Korea, Republic of'), +('69.25.105.176', '69.25.106.47', 1159293360, 1159293487, 'US', 'United States'), +('69.25.106.48', '69.25.106.63', 1159293488, 1159293503, 'BR', 'Brazil'), +('69.25.106.64', '69.25.187.191', 1159293504, 1159314367, 'US', 'United States'), +('69.25.187.192', '69.25.187.207', 1159314368, 1159314383, 'BR', 'Brazil'), +('69.25.187.208', '69.25.201.255', 1159314384, 1159318015, 'US', 'United States'), +('69.25.202.0', '69.25.202.31', 1159318016, 1159318047, 'GB', 'United Kingdom'), +('69.25.202.32', '69.25.243.143', 1159318048, 1159328655, 'US', 'United States'), +('69.25.243.144', '69.25.243.159', 1159328656, 1159328671, 'FR', 'France'), +('69.25.243.160', '69.26.63.255', 1159328672, 1159348223, 'US', 'United States'), +('69.26.64.0', '69.26.95.255', 1159348224, 1159356415, 'CA', 'Canada'), +('69.26.96.0', '69.27.95.255', 1159356416, 1159421951, 'US', 'United States'), +('69.27.96.0', '69.27.127.255', 1159421952, 1159430143, 'CA', 'Canada'), +('69.27.128.0', '69.27.171.191', 1159430144, 1159441343, 'US', 'United States'), +('69.27.171.192', '69.27.171.223', 1159441344, 1159441375, 'CA', 'Canada'), +('69.27.171.224', '69.28.71.79', 1159441376, 1159481167, 'US', 'United States'), +('69.28.71.80', '69.28.71.95', 1159481168, 1159481183, 'VG', 'Virgin Islands, British'), +('69.28.71.96', '69.28.73.255', 1159481184, 1159481855, 'US', 'United States'), +('69.28.74.0', '69.28.74.31', 1159481856, 1159481887, 'EG', 'Egypt'), +('69.28.74.32', '69.28.76.55', 1159481888, 1159482423, 'US', 'United States'), +('69.28.76.56', '69.28.76.63', 1159482424, 1159482431, 'AN', 'Netherlands Antilles'), +('69.28.76.64', '69.28.191.255', 1159482432, 1159512063, 'US', 'United States'), +('69.28.192.0', '69.28.192.95', 1159512064, 1159512159, 'CA', 'Canada'), +('69.28.192.96', '69.28.192.127', 1159512160, 1159512191, 'US', 'United States'), +('69.28.192.128', '69.28.196.255', 1159512192, 1159513343, 'CA', 'Canada'), +('69.28.197.0', '69.28.197.31', 1159513344, 1159513375, 'US', 'United States'), +('69.28.197.32', '69.28.197.95', 1159513376, 1159513439, 'CA', 'Canada'), +('69.28.197.96', '69.28.197.127', 1159513440, 1159513471, 'US', 'United States'), +('69.28.197.128', '69.28.197.175', 1159513472, 1159513519, 'CA', 'Canada'), +('69.28.197.176', '69.28.197.191', 1159513520, 1159513535, 'US', 'United States'), +('69.28.197.192', '69.28.197.223', 1159513536, 1159513567, 'CA', 'Canada'), +('69.28.197.224', '69.28.198.255', 1159513568, 1159513855, 'US', 'United States'), +('69.28.199.0', '69.28.202.255', 1159513856, 1159514879, 'CA', 'Canada'), +('69.28.203.0', '69.28.204.255', 1159514880, 1159515391, 'US', 'United States'), +('69.28.205.0', '69.28.205.255', 1159515392, 1159515647, 'CA', 'Canada'), +('69.28.206.0', '69.28.206.63', 1159515648, 1159515711, 'US', 'United States'), +('69.28.206.64', '69.28.206.223', 1159515712, 1159515871, 'CA', 'Canada'), +('69.28.206.224', '69.28.206.255', 1159515872, 1159515903, 'US', 'United States'), +('69.28.207.0', '69.28.207.255', 1159515904, 1159516159, 'CA', 'Canada'), +('69.28.208.0', '69.28.208.95', 1159516160, 1159516255, 'US', 'United States'), +('69.28.208.96', '69.28.208.127', 1159516256, 1159516287, 'CA', 'Canada'), +('69.28.208.128', '69.28.211.191', 1159516288, 1159517119, 'US', 'United States'), +('69.28.211.192', '69.28.211.223', 1159517120, 1159517151, 'CA', 'Canada'), +('69.28.211.224', '69.28.211.255', 1159517152, 1159517183, 'US', 'United States'), +('69.28.212.0', '69.28.212.143', 1159517184, 1159517327, 'CA', 'Canada'), +('69.28.212.144', '69.28.212.159', 1159517328, 1159517343, 'US', 'United States'), +('69.28.212.160', '69.28.212.175', 1159517344, 1159517359, 'CA', 'Canada'), +('69.28.212.176', '69.28.212.255', 1159517360, 1159517439, 'US', 'United States'), +('69.28.213.0', '69.28.213.159', 1159517440, 1159517599, 'CA', 'Canada'), +('69.28.213.160', '69.28.213.223', 1159517600, 1159517663, 'US', 'United States'), +('69.28.213.224', '69.28.213.239', 1159517664, 1159517679, 'CA', 'Canada'), +('69.28.213.240', '69.28.214.255', 1159517680, 1159517951, 'US', 'United States'), +('69.28.215.0', '69.28.215.23', 1159517952, 1159517975, 'CA', 'Canada'), +('69.28.215.24', '69.28.215.39', 1159517976, 1159517991, 'US', 'United States'), +('69.28.215.40', '69.28.215.55', 1159517992, 1159518007, 'CA', 'Canada'), +('69.28.215.56', '69.28.215.63', 1159518008, 1159518015, 'US', 'United States'), +('69.28.215.64', '69.28.215.223', 1159518016, 1159518175, 'CA', 'Canada'), +('69.28.215.224', '69.28.215.247', 1159518176, 1159518199, 'US', 'United States'), +('69.28.215.248', '69.28.215.255', 1159518200, 1159518207, 'CA', 'Canada'), +('69.28.216.0', '69.28.221.255', 1159518208, 1159519743, 'US', 'United States'), +('69.28.222.0', '69.28.225.255', 1159519744, 1159520767, 'CA', 'Canada'), +('69.28.226.0', '69.28.226.31', 1159520768, 1159520799, 'US', 'United States'), +('69.28.226.32', '69.28.226.255', 1159520800, 1159521023, 'CA', 'Canada'), +('69.28.227.0', '69.28.227.63', 1159521024, 1159521087, 'US', 'United States'), +('69.28.227.64', '69.28.227.175', 1159521088, 1159521199, 'CA', 'Canada'), +('69.28.227.176', '69.28.227.191', 1159521200, 1159521215, 'US', 'United States'), +('69.28.227.192', '69.28.230.31', 1159521216, 1159521823, 'CA', 'Canada'), +('69.28.230.32', '69.28.230.63', 1159521824, 1159521855, 'US', 'United States'), +('69.28.230.64', '69.28.230.239', 1159521856, 1159522031, 'CA', 'Canada'), +('69.28.230.240', '69.28.230.255', 1159522032, 1159522047, 'US', 'United States'), +('69.28.231.0', '69.28.231.23', 1159522048, 1159522071, 'CA', 'Canada'), +('69.28.231.24', '69.28.231.31', 1159522072, 1159522079, 'US', 'United States'), +('69.28.231.32', '69.28.231.47', 1159522080, 1159522095, 'CA', 'Canada'), +('69.28.231.48', '69.28.231.63', 1159522096, 1159522111, 'US', 'United States'), +('69.28.231.64', '69.28.231.95', 1159522112, 1159522143, 'CA', 'Canada'), +('69.28.231.96', '69.28.231.119', 1159522144, 1159522167, 'US', 'United States'), +('69.28.231.120', '69.28.231.127', 1159522168, 1159522175, 'CA', 'Canada'), +('69.28.231.128', '69.28.231.159', 1159522176, 1159522207, 'US', 'United States'), +('69.28.231.160', '69.28.231.175', 1159522208, 1159522223, 'CA', 'Canada'), +('69.28.231.176', '69.28.231.191', 1159522224, 1159522239, 'US', 'United States'), +('69.28.231.192', '69.28.231.223', 1159522240, 1159522271, 'BV', 'Bouvet Island'), +('69.28.231.224', '69.28.231.239', 1159522272, 1159522287, 'CA', 'Canada'), +('69.28.231.240', '69.28.231.255', 1159522288, 1159522303, 'BV', 'Bouvet Island'), +('69.28.232.0', '69.28.233.255', 1159522304, 1159522815, 'CA', 'Canada'), +('69.28.234.0', '69.28.236.255', 1159522816, 1159523583, 'US', 'United States'), +('69.28.237.0', '69.28.237.255', 1159523584, 1159523839, 'CA', 'Canada'), +('69.28.238.0', '69.28.238.255', 1159523840, 1159524095, 'US', 'United States'), +('69.28.239.0', '69.28.239.255', 1159524096, 1159524351, 'CA', 'Canada'), +('69.28.240.0', '69.28.242.207', 1159524352, 1159525071, 'US', 'United States'), +('69.28.242.208', '69.28.242.223', 1159525072, 1159525087, 'CA', 'Canada'), +('69.28.242.224', '69.28.243.255', 1159525088, 1159525375, 'US', 'United States'), +('69.28.244.0', '69.28.247.255', 1159525376, 1159526399, 'CA', 'Canada'), +('69.28.248.0', '69.28.253.255', 1159526400, 1159527935, 'US', 'United States'), +('69.28.254.0', '69.28.254.255', 1159527936, 1159528191, 'CA', 'Canada'), +('69.28.255.0', '69.29.14.71', 1159528192, 1159532103, 'US', 'United States'), +('69.29.14.72', '69.29.14.79', 1159532104, 1159532111, 'MO', 'Macau'), +('69.29.14.80', '69.30.193.47', 1159532112, 1159643439, 'US', 'United States'), +('69.30.193.48', '69.30.193.63', 1159643440, 1159643455, 'TR', 'Turkey'), +('69.30.193.64', '69.30.193.79', 1159643456, 1159643471, 'JP', 'Japan'), +('69.30.193.80', '69.30.244.39', 1159643472, 1159656487, 'US', 'United States'), +('69.30.244.40', '69.30.244.63', 1159656488, 1159656511, 'BR', 'Brazil'), +('69.30.244.64', '69.30.246.63', 1159656512, 1159657023, 'US', 'United States'), +('69.30.246.64', '69.30.246.79', 1159657024, 1159657039, 'AU', 'Australia'), +('69.30.246.80', '69.30.246.111', 1159657040, 1159657071, 'US', 'United States'), +('69.30.246.112', '69.30.246.127', 1159657072, 1159657087, 'NZ', 'New Zealand'), +('69.30.246.128', '69.30.254.55', 1159657088, 1159659063, 'US', 'United States'), +('69.30.254.56', '69.30.254.71', 1159659064, 1159659079, 'IN', 'India'), +('69.30.254.72', '69.31.31.255', 1159659080, 1159667711, 'US', 'United States'), +('69.31.32.0', '69.31.39.255', 1159667712, 1159669759, 'AU', 'Australia'), +('69.31.40.0', '69.31.159.255', 1159669760, 1159700479, 'US', 'United States'), +('69.31.160.0', '69.31.183.207', 1159700480, 1159706575, 'CA', 'Canada'), +('69.31.183.208', '69.31.183.223', 1159706576, 1159706591, 'US', 'United States'), +('69.31.183.224', '69.31.185.127', 1159706592, 1159707007, 'CA', 'Canada'), +('69.31.185.128', '69.31.185.191', 1159707008, 1159707071, 'US', 'United States'), +('69.31.185.192', '69.31.255.255', 1159707072, 1159725055, 'CA', 'Canada'), +('69.32.0.0', '69.36.13.255', 1159725056, 1159990783, 'US', 'United States'), +('69.36.14.0', '69.36.14.255', 1159990784, 1159991039, 'MX', 'Mexico'), +('69.36.15.0', '69.36.34.31', 1159991040, 1159995935, 'US', 'United States'), +('69.36.34.32', '69.36.34.47', 1159995936, 1159995951, 'CA', 'Canada'), +('69.36.34.48', '69.36.34.159', 1159995952, 1159996063, 'US', 'United States'), +('69.36.34.160', '69.36.34.175', 1159996064, 1159996079, 'GB', 'United Kingdom'), +('69.36.34.176', '69.36.35.127', 1159996080, 1159996287, 'US', 'United States'), +('69.36.35.128', '69.36.35.159', 1159996288, 1159996319, 'AU', 'Australia'), +('69.36.35.160', '69.36.40.183', 1159996320, 1159997623, 'US', 'United States'), +('69.36.40.184', '69.36.40.191', 1159997624, 1159997631, 'SC', 'Seychelles'), +('69.36.40.192', '69.36.40.199', 1159997632, 1159997639, 'GB', 'United Kingdom'), +('69.36.40.200', '69.36.44.111', 1159997640, 1159998575, 'US', 'United States'), +('69.36.44.112', '69.36.44.119', 1159998576, 1159998583, 'UG', 'Uganda'), +('69.36.44.120', '69.36.95.255', 1159998584, 1160011775, 'US', 'United States'), +('69.36.96.0', '69.36.99.239', 1160011776, 1160012783, 'CA', 'Canada'), +('69.36.99.240', '69.36.99.247', 1160012784, 1160012791, 'US', 'United States'), +('69.36.99.248', '69.36.102.87', 1160012792, 1160013399, 'CA', 'Canada'), +('69.36.102.88', '69.36.102.111', 1160013400, 1160013423, 'US', 'United States'), +('69.36.102.112', '69.36.102.151', 1160013424, 1160013463, 'CA', 'Canada'), +('69.36.102.152', '69.36.102.167', 1160013464, 1160013479, 'US', 'United States'), +('69.36.102.168', '69.36.103.79', 1160013480, 1160013647, 'CA', 'Canada'), +('69.36.103.80', '69.36.103.95', 1160013648, 1160013663, 'US', 'United States'), +('69.36.103.96', '69.36.103.111', 1160013664, 1160013679, 'CA', 'Canada'), +('69.36.103.112', '69.36.103.119', 1160013680, 1160013687, 'US', 'United States'), +('69.36.103.120', '69.36.107.183', 1160013688, 1160014775, 'CA', 'Canada'), +('69.36.107.184', '69.36.107.191', 1160014776, 1160014783, 'US', 'United States'), +('69.36.107.192', '69.36.108.111', 1160014784, 1160014959, 'CA', 'Canada'), +('69.36.108.112', '69.36.108.119', 1160014960, 1160014967, 'US', 'United States'), +('69.36.108.120', '69.36.108.159', 1160014968, 1160015007, 'CA', 'Canada'), +('69.36.108.160', '69.36.108.167', 1160015008, 1160015015, 'US', 'United States'), +('69.36.108.168', '69.36.108.183', 1160015016, 1160015031, 'CA', 'Canada'), +('69.36.108.184', '69.36.108.191', 1160015032, 1160015039, 'US', 'United States'), +('69.36.108.192', '69.36.108.215', 1160015040, 1160015063, 'CA', 'Canada'), +('69.36.108.216', '69.36.108.223', 1160015064, 1160015071, 'US', 'United States'), +('69.36.108.224', '69.36.109.39', 1160015072, 1160015143, 'CA', 'Canada'), +('69.36.109.40', '69.36.109.47', 1160015144, 1160015151, 'US', 'United States'), +('69.36.109.48', '69.36.109.63', 1160015152, 1160015167, 'CA', 'Canada'), +('69.36.109.64', '69.36.109.87', 1160015168, 1160015191, 'US', 'United States'), +('69.36.109.88', '69.36.109.127', 1160015192, 1160015231, 'CA', 'Canada'), +('69.36.109.128', '69.36.109.135', 1160015232, 1160015239, 'US', 'United States'), +('69.36.109.136', '69.36.109.175', 1160015240, 1160015279, 'CA', 'Canada'), +('69.36.109.176', '69.36.109.183', 1160015280, 1160015287, 'US', 'United States'), +('69.36.109.184', '69.36.109.207', 1160015288, 1160015311, 'CA', 'Canada'), +('69.36.109.208', '69.36.109.223', 1160015312, 1160015327, 'US', 'United States'), +('69.36.109.224', '69.36.112.127', 1160015328, 1160015999, 'CA', 'Canada'), +('69.36.112.128', '69.36.112.223', 1160016000, 1160016095, 'US', 'United States'), +('69.36.112.224', '69.36.113.55', 1160016096, 1160016183, 'CA', 'Canada'), +('69.36.113.56', '69.36.113.63', 1160016184, 1160016191, 'US', 'United States'), +('69.36.113.64', '69.36.113.95', 1160016192, 1160016223, 'CA', 'Canada'), +('69.36.113.96', '69.36.113.135', 1160016224, 1160016263, 'US', 'United States'), +('69.36.113.136', '69.36.113.143', 1160016264, 1160016271, 'CA', 'Canada'), +('69.36.113.144', '69.36.113.151', 1160016272, 1160016279, 'US', 'United States'), +('69.36.113.152', '69.36.113.167', 1160016280, 1160016295, 'CA', 'Canada'), +('69.36.113.168', '69.36.113.191', 1160016296, 1160016319, 'US', 'United States'), +('69.36.113.192', '69.36.113.215', 1160016320, 1160016343, 'CA', 'Canada'), +('69.36.113.216', '69.36.113.223', 1160016344, 1160016351, 'US', 'United States'), +('69.36.113.224', '69.36.113.231', 1160016352, 1160016359, 'CA', 'Canada'), +('69.36.113.232', '69.36.113.255', 1160016360, 1160016383, 'US', 'United States'), +('69.36.114.0', '69.36.115.255', 1160016384, 1160016895, 'CA', 'Canada'), +('69.36.116.0', '69.36.116.7', 1160016896, 1160016903, 'US', 'United States'), +('69.36.116.8', '69.36.116.47', 1160016904, 1160016943, 'CA', 'Canada'), +('69.36.116.48', '69.36.116.55', 1160016944, 1160016951, 'US', 'United States'), +('69.36.116.56', '69.36.116.127', 1160016952, 1160017023, 'CA', 'Canada'), +('69.36.116.128', '69.36.116.135', 1160017024, 1160017031, 'US', 'United States'), +('69.36.116.136', '69.36.116.255', 1160017032, 1160017151, 'CA', 'Canada'), +('69.36.117.0', '69.36.117.7', 1160017152, 1160017159, 'US', 'United States'), +('69.36.117.8', '69.36.127.255', 1160017160, 1160019967, 'CA', 'Canada'), +('69.36.128.0', '69.41.191.255', 1160019968, 1160364031, 'US', 'United States'), +('69.41.192.0', '69.41.207.255', 1160364032, 1160368127, 'CA', 'Canada'), +('69.41.208.0', '69.42.47.255', 1160368128, 1160392703, 'US', 'United States'), +('69.42.48.0', '69.42.49.71', 1160392704, 1160393031, 'CA', 'Canada'), +('69.42.49.72', '69.42.49.79', 1160393032, 1160393039, 'US', 'United States'), +('69.42.49.80', '69.42.49.95', 1160393040, 1160393055, 'CA', 'Canada'), +('69.42.49.96', '69.42.49.103', 1160393056, 1160393063, 'US', 'United States'), +('69.42.49.104', '69.42.63.255', 1160393064, 1160396799, 'CA', 'Canada'), +('69.42.64.0', '69.42.97.255', 1160396800, 1160405503, 'US', 'United States'), +('69.42.98.0', '69.42.99.255', 1160405504, 1160406015, 'DO', 'Dominican Republic'), +('69.42.100.0', '69.42.108.255', 1160406016, 1160408319, 'US', 'United States'), +('69.42.109.0', '69.42.109.255', 1160408320, 1160408575, 'CA', 'Canada'), +('69.42.110.0', '69.42.113.255', 1160408576, 1160409599, 'US', 'United States'), +('69.42.114.0', '69.42.115.255', 1160409600, 1160410111, 'CO', 'Colombia'), +('69.42.116.0', '69.42.117.79', 1160410112, 1160410447, 'US', 'United States'), +('69.42.117.80', '69.42.117.95', 1160410448, 1160410463, 'UY', 'Uruguay'), +('69.42.117.96', '69.42.117.111', 1160410464, 1160410479, 'TT', 'Trinidad and Tobago'), +('69.42.117.112', '69.42.117.127', 1160410480, 1160410495, 'US', 'United States'), +('69.42.117.128', '69.42.117.143', 1160410496, 1160410511, 'PR', 'Puerto Rico'), +('69.42.117.144', '69.42.121.15', 1160410512, 1160411407, 'US', 'United States'), +('69.42.121.16', '69.42.121.31', 1160411408, 1160411423, 'GB', 'United Kingdom'), +('69.42.121.32', '69.42.121.175', 1160411424, 1160411567, 'US', 'United States'), +('69.42.121.176', '69.42.121.191', 1160411568, 1160411583, 'BR', 'Brazil'), +('69.42.121.192', '69.42.137.149', 1160411584, 1160415637, 'US', 'United States'), +('69.42.137.150', '69.42.137.245', 1160415638, 1160415733, 'KN', 'Saint Kitts and Nevis'), +('69.42.137.246', '69.42.138.2', 1160415734, 1160415746, 'US', 'United States'), +('69.42.138.3', '69.42.138.32', 1160415747, 1160415776, 'CA', 'Canada'), +('69.42.138.33', '69.42.175.255', 1160415777, 1160425471, 'US', 'United States'), +('69.42.176.0', '69.42.191.255', 1160425472, 1160429567, 'CA', 'Canada'), +('69.42.192.0', '69.43.145.191', 1160429568, 1160483263, 'US', 'United States'), +('69.43.145.192', '69.43.145.223', 1160483264, 1160483295, 'MX', 'Mexico'), +('69.43.145.224', '69.43.223.255', 1160483296, 1160503295, 'US', 'United States'), +('69.43.224.0', '69.43.239.255', 1160503296, 1160507391, 'A2', 'Satellite Provider'), +('69.43.240.0', '69.44.119.255', 1160507392, 1160542207, 'US', 'United States'), +('69.44.120.0', '69.44.120.31', 1160542208, 1160542239, 'LB', 'Lebanon'), +('69.44.120.32', '69.44.124.95', 1160542240, 1160543327, 'US', 'United States'), +('69.44.124.96', '69.44.124.127', 1160543328, 1160543359, 'MX', 'Mexico'), +('69.44.124.128', '69.44.127.55', 1160543360, 1160544055, 'US', 'United States'), +('69.44.127.56', '69.44.127.71', 1160544056, 1160544071, 'CA', 'Canada'), +('69.44.127.72', '69.44.127.135', 1160544072, 1160544135, 'US', 'United States'), +('69.44.127.136', '69.44.127.143', 1160544136, 1160544143, 'LB', 'Lebanon'), +('69.44.127.144', '69.44.141.255', 1160544144, 1160547839, 'US', 'United States'), +('69.44.142.0', '69.44.143.255', 1160547840, 1160548351, 'MX', 'Mexico'), +('69.44.144.0', '69.44.201.255', 1160548352, 1160563199, 'US', 'United States'), +('69.44.202.0', '69.44.203.255', 1160563200, 1160563711, 'MP', 'Northern Mariana Islands'), +('69.44.204.0', '69.45.127.255', 1160563712, 1160609791, 'US', 'United States'), +('69.45.128.0', '69.45.131.255', 1160609792, 1160610815, 'MX', 'Mexico'), +('69.45.132.0', '69.46.95.255', 1160610816, 1160667135, 'US', 'United States'), +('69.46.96.0', '69.46.127.255', 1160667136, 1160675327, 'CA', 'Canada'), +('69.46.128.0', '69.46.134.151', 1160675328, 1160677015, 'US', 'United States'), +('69.46.134.152', '69.46.134.159', 1160677016, 1160677023, 'AR', 'Argentina'), +('69.46.134.160', '69.46.135.127', 1160677024, 1160677247, 'US', 'United States'), +('69.46.135.128', '69.46.135.159', 1160677248, 1160677279, 'GB', 'United Kingdom'), +('69.46.135.160', '69.46.135.255', 1160677280, 1160677375, 'US', 'United States'), +('69.46.136.0', '69.46.136.63', 1160677376, 1160677439, 'GB', 'United Kingdom'), +('69.46.136.64', '69.46.139.255', 1160677440, 1160678399, 'US', 'United States'), +('69.46.140.0', '69.46.140.255', 1160678400, 1160678655, 'MX', 'Mexico'), +('69.46.141.0', '69.46.159.255', 1160678656, 1160683519, 'US', 'United States'), +('69.46.160.0', '69.46.162.7', 1160683520, 1160684039, 'CA', 'Canada'), +('69.46.162.8', '69.46.162.15', 1160684040, 1160684047, 'US', 'United States'), +('69.46.162.16', '69.46.162.31', 1160684048, 1160684063, 'CA', 'Canada'), +('69.46.162.32', '69.46.162.39', 1160684064, 1160684071, 'US', 'United States'), +('69.46.162.40', '69.46.164.71', 1160684072, 1160684615, 'CA', 'Canada'), +('69.46.164.72', '69.46.164.79', 1160684616, 1160684623, 'US', 'United States'), +('69.46.164.80', '69.46.164.87', 1160684624, 1160684631, 'CA', 'Canada'), +('69.46.164.88', '69.46.164.95', 1160684632, 1160684639, 'US', 'United States'), +('69.46.164.96', '69.46.165.87', 1160684640, 1160684887, 'CA', 'Canada'), +('69.46.165.88', '69.46.165.95', 1160684888, 1160684895, 'US', 'United States'), +('69.46.165.96', '69.46.174.167', 1160684896, 1160687271, 'CA', 'Canada'), +('69.46.174.168', '69.46.174.175', 1160687272, 1160687279, 'US', 'United States'), +('69.46.174.176', '69.46.175.223', 1160687280, 1160687583, 'CA', 'Canada'), +('69.46.175.224', '69.46.175.231', 1160687584, 1160687591, 'US', 'United States'), +('69.46.175.232', '69.46.178.63', 1160687592, 1160688191, 'CA', 'Canada'), +('69.46.178.64', '69.46.178.71', 1160688192, 1160688199, 'US', 'United States'), +('69.46.178.72', '69.46.178.127', 1160688200, 1160688255, 'CA', 'Canada'), +('69.46.178.128', '69.46.178.135', 1160688256, 1160688263, 'US', 'United States'), +('69.46.178.136', '69.46.178.223', 1160688264, 1160688351, 'CA', 'Canada'), +('69.46.178.224', '69.46.178.231', 1160688352, 1160688359, 'US', 'United States'), +('69.46.178.232', '69.46.179.171', 1160688360, 1160688555, 'CA', 'Canada'), +('69.46.179.172', '69.46.179.194', 1160688556, 1160688578, 'US', 'United States'), +('69.46.179.195', '69.46.179.255', 1160688579, 1160688639, 'CA', 'Canada'), +('69.46.180.0', '69.46.180.7', 1160688640, 1160688647, 'US', 'United States'), +('69.46.180.8', '69.46.180.47', 1160688648, 1160688687, 'CA', 'Canada'), +('69.46.180.48', '69.46.180.55', 1160688688, 1160688695, 'US', 'United States'), +('69.46.180.56', '69.46.180.63', 1160688696, 1160688703, 'CA', 'Canada'), +('69.46.180.64', '69.46.180.71', 1160688704, 1160688711, 'US', 'United States'), +('69.46.180.72', '69.46.180.127', 1160688712, 1160688767, 'CA', 'Canada'), +('69.46.180.128', '69.46.180.143', 1160688768, 1160688783, 'US', 'United States'), +('69.46.180.144', '69.46.180.175', 1160688784, 1160688815, 'CA', 'Canada'), +('69.46.180.176', '69.46.180.183', 1160688816, 1160688823, 'US', 'United States'), +('69.46.180.184', '69.46.180.191', 1160688824, 1160688831, 'CA', 'Canada'), +('69.46.180.192', '69.46.180.199', 1160688832, 1160688839, 'US', 'United States'), +('69.46.180.200', '69.46.182.47', 1160688840, 1160689199, 'CA', 'Canada'), +('69.46.182.48', '69.46.182.55', 1160689200, 1160689207, 'US', 'United States'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('69.46.182.56', '69.46.182.79', 1160689208, 1160689231, 'CA', 'Canada'), +('69.46.182.80', '69.46.182.87', 1160689232, 1160689239, 'US', 'United States'), +('69.46.182.88', '69.46.182.135', 1160689240, 1160689287, 'CA', 'Canada'), +('69.46.182.136', '69.46.182.151', 1160689288, 1160689303, 'US', 'United States'), +('69.46.182.152', '69.46.182.159', 1160689304, 1160689311, 'CA', 'Canada'), +('69.46.182.160', '69.46.182.167', 1160689312, 1160689319, 'IN', 'India'), +('69.46.182.168', '69.46.182.215', 1160689320, 1160689367, 'CA', 'Canada'), +('69.46.182.216', '69.46.182.231', 1160689368, 1160689383, 'US', 'United States'), +('69.46.182.232', '69.46.183.11', 1160689384, 1160689419, 'CA', 'Canada'), +('69.46.183.12', '69.46.183.39', 1160689420, 1160689447, 'US', 'United States'), +('69.46.183.40', '69.46.183.123', 1160689448, 1160689531, 'CA', 'Canada'), +('69.46.183.124', '69.46.183.163', 1160689532, 1160689571, 'US', 'United States'), +('69.46.183.164', '69.46.184.29', 1160689572, 1160689693, 'CA', 'Canada'), +('69.46.184.30', '69.46.184.68', 1160689694, 1160689732, 'US', 'United States'), +('69.46.184.69', '69.46.184.69', 1160689733, 1160689733, 'CA', 'Canada'), +('69.46.184.70', '69.46.184.77', 1160689734, 1160689741, 'US', 'United States'), +('69.46.184.78', '69.46.184.102', 1160689742, 1160689766, 'CA', 'Canada'), +('69.46.184.103', '69.46.184.114', 1160689767, 1160689778, 'US', 'United States'), +('69.46.184.115', '69.46.184.125', 1160689779, 1160689789, 'CA', 'Canada'), +('69.46.184.126', '69.46.184.135', 1160689790, 1160689799, 'US', 'United States'), +('69.46.184.136', '69.46.184.136', 1160689800, 1160689800, 'CA', 'Canada'), +('69.46.184.137', '69.46.184.147', 1160689801, 1160689811, 'US', 'United States'), +('69.46.184.148', '69.46.184.170', 1160689812, 1160689834, 'CA', 'Canada'), +('69.46.184.171', '69.46.184.182', 1160689835, 1160689846, 'US', 'United States'), +('69.46.184.183', '69.46.184.197', 1160689847, 1160689861, 'CA', 'Canada'), +('69.46.184.198', '69.46.184.223', 1160689862, 1160689887, 'US', 'United States'), +('69.46.184.224', '69.46.185.23', 1160689888, 1160689943, 'CA', 'Canada'), +('69.46.185.24', '69.46.185.51', 1160689944, 1160689971, 'US', 'United States'), +('69.46.185.52', '69.46.185.183', 1160689972, 1160690103, 'CA', 'Canada'), +('69.46.185.184', '69.46.185.255', 1160690104, 1160690175, 'US', 'United States'), +('69.46.186.0', '69.46.186.173', 1160690176, 1160690349, 'CA', 'Canada'), +('69.46.186.174', '69.46.186.185', 1160690350, 1160690361, 'US', 'United States'), +('69.46.186.186', '69.46.186.186', 1160690362, 1160690362, 'CA', 'Canada'), +('69.46.186.187', '69.46.186.205', 1160690363, 1160690381, 'US', 'United States'), +('69.46.186.206', '69.46.186.210', 1160690382, 1160690386, 'CA', 'Canada'), +('69.46.186.211', '69.46.186.239', 1160690387, 1160690415, 'US', 'United States'), +('69.46.186.240', '69.46.187.15', 1160690416, 1160690447, 'CA', 'Canada'), +('69.46.187.16', '69.46.187.23', 1160690448, 1160690455, 'US', 'United States'), +('69.46.187.24', '69.46.187.127', 1160690456, 1160690559, 'CA', 'Canada'), +('69.46.187.128', '69.46.187.175', 1160690560, 1160690607, 'US', 'United States'), +('69.46.187.176', '69.46.188.7', 1160690608, 1160690695, 'CA', 'Canada'), +('69.46.188.8', '69.46.188.39', 1160690696, 1160690727, 'US', 'United States'), +('69.46.188.40', '69.46.188.47', 1160690728, 1160690735, 'CA', 'Canada'), +('69.46.188.48', '69.46.188.63', 1160690736, 1160690751, 'US', 'United States'), +('69.46.188.64', '69.46.188.95', 1160690752, 1160690783, 'CA', 'Canada'), +('69.46.188.96', '69.46.188.103', 1160690784, 1160690791, 'US', 'United States'), +('69.46.188.104', '69.46.188.119', 1160690792, 1160690807, 'CA', 'Canada'), +('69.46.188.120', '69.46.188.135', 1160690808, 1160690823, 'US', 'United States'), +('69.46.188.136', '69.46.188.223', 1160690824, 1160690911, 'CA', 'Canada'), +('69.46.188.224', '69.46.188.231', 1160690912, 1160690919, 'US', 'United States'), +('69.46.188.232', '69.46.189.7', 1160690920, 1160690951, 'CA', 'Canada'), +('69.46.189.8', '69.46.189.15', 1160690952, 1160690959, 'US', 'United States'), +('69.46.189.16', '69.46.189.67', 1160690960, 1160691011, 'CA', 'Canada'), +('69.46.189.68', '69.46.189.83', 1160691012, 1160691027, 'US', 'United States'), +('69.46.189.84', '69.46.191.47', 1160691028, 1160691503, 'CA', 'Canada'), +('69.46.191.48', '69.46.191.55', 1160691504, 1160691511, 'US', 'United States'), +('69.46.191.56', '69.46.191.95', 1160691512, 1160691551, 'CA', 'Canada'), +('69.46.191.96', '69.46.191.111', 1160691552, 1160691567, 'US', 'United States'), +('69.46.191.112', '69.46.191.119', 1160691568, 1160691575, 'CA', 'Canada'), +('69.46.191.120', '69.46.191.143', 1160691576, 1160691599, 'US', 'United States'), +('69.46.191.144', '69.46.191.159', 1160691600, 1160691615, 'CA', 'Canada'), +('69.46.191.160', '69.46.191.175', 1160691616, 1160691631, 'US', 'United States'), +('69.46.191.176', '69.46.191.183', 1160691632, 1160691639, 'CA', 'Canada'), +('69.46.191.184', '69.46.191.191', 1160691640, 1160691647, 'US', 'United States'), +('69.46.191.192', '69.46.191.215', 1160691648, 1160691671, 'CA', 'Canada'), +('69.46.191.216', '69.46.191.223', 1160691672, 1160691679, 'US', 'United States'), +('69.46.191.224', '69.46.191.247', 1160691680, 1160691703, 'CA', 'Canada'), +('69.46.191.248', '69.48.135.63', 1160691704, 1160808255, 'US', 'United States'), +('69.48.135.64', '69.48.135.95', 1160808256, 1160808287, 'CA', 'Canada'), +('69.48.135.96', '69.48.143.255', 1160808288, 1160810495, 'US', 'United States'), +('69.48.144.0', '69.48.144.255', 1160810496, 1160810751, 'CA', 'Canada'), +('69.48.145.0', '69.48.148.31', 1160810752, 1160811551, 'US', 'United States'), +('69.48.148.32', '69.48.148.39', 1160811552, 1160811559, 'BE', 'Belgium'), +('69.48.148.40', '69.49.31.255', 1160811560, 1160847359, 'US', 'United States'), +('69.49.32.0', '69.49.63.255', 1160847360, 1160855551, 'CA', 'Canada'), +('69.49.64.0', '69.49.96.255', 1160855552, 1160863999, 'US', 'United States'), +('69.49.97.0', '69.49.97.255', 1160864000, 1160864255, 'CA', 'Canada'), +('69.49.98.0', '69.50.63.255', 1160864256, 1160921087, 'US', 'United States'), +('69.50.64.0', '69.50.79.255', 1160921088, 1160925183, 'AG', 'Antigua and Barbuda'), +('69.50.80.0', '69.50.172.255', 1160925184, 1160948991, 'US', 'United States'), +('69.50.173.0', '69.50.173.31', 1160948992, 1160949023, 'CA', 'Canada'), +('69.50.173.32', '69.50.173.175', 1160949024, 1160949167, 'US', 'United States'), +('69.50.173.176', '69.50.173.191', 1160949168, 1160949183, 'JP', 'Japan'), +('69.50.173.192', '69.50.175.175', 1160949184, 1160949679, 'US', 'United States'), +('69.50.175.176', '69.50.175.223', 1160949680, 1160949727, 'CY', 'Cyprus'), +('69.50.175.224', '69.50.175.239', 1160949728, 1160949743, 'US', 'United States'), +('69.50.175.240', '69.50.175.255', 1160949744, 1160949759, 'CY', 'Cyprus'), +('69.50.176.0', '69.51.191.255', 1160949760, 1161019391, 'US', 'United States'), +('69.51.192.0', '69.51.255.255', 1161019392, 1161035775, 'CA', 'Canada'), +('69.52.0.0', '69.54.79.143', 1161035776, 1161187215, 'US', 'United States'), +('69.54.79.144', '69.54.79.151', 1161187216, 1161187223, 'UM', 'United States Minor Outlying Islands'), +('69.54.79.152', '69.55.239.255', 1161187224, 1161293823, 'US', 'United States'), +('69.55.240.0', '69.55.255.255', 1161293824, 1161297919, 'CA', 'Canada'), +('69.56.0.0', '69.56.53.255', 1161297920, 1161311743, 'US', 'United States'), +('69.56.54.0', '69.56.54.15', 1161311744, 1161311759, 'KN', 'Saint Kitts and Nevis'), +('69.56.54.16', '69.56.54.247', 1161311760, 1161311991, 'US', 'United States'), +('69.56.54.248', '69.56.54.255', 1161311992, 1161311999, 'KN', 'Saint Kitts and Nevis'), +('69.56.55.0', '69.56.58.223', 1161312000, 1161312991, 'US', 'United States'), +('69.56.58.224', '69.56.58.231', 1161312992, 1161312999, 'IL', 'Israel'), +('69.56.58.232', '69.56.59.103', 1161313000, 1161313127, 'US', 'United States'), +('69.56.59.104', '69.56.59.111', 1161313128, 1161313135, 'MP', 'Northern Mariana Islands'), +('69.56.59.112', '69.56.63.103', 1161313136, 1161314151, 'US', 'United States'), +('69.56.63.104', '69.56.63.111', 1161314152, 1161314159, 'CA', 'Canada'), +('69.56.63.112', '69.56.255.255', 1161314160, 1161363455, 'US', 'United States'), +('69.57.0.0', '69.57.15.255', 1161363456, 1161367551, 'CA', 'Canada'), +('69.57.16.0', '69.57.223.255', 1161367552, 1161420799, 'US', 'United States'), +('69.57.224.0', '69.57.225.255', 1161420800, 1161421311, 'AG', 'Antigua and Barbuda'), +('69.57.226.0', '69.57.226.255', 1161421312, 1161421567, 'AI', 'Anguilla'), +('69.57.227.0', '69.57.228.255', 1161421568, 1161422079, 'AG', 'Antigua and Barbuda'), +('69.57.229.0', '69.57.229.255', 1161422080, 1161422335, 'VG', 'Virgin Islands, British'), +('69.57.230.0', '69.57.230.255', 1161422336, 1161422591, 'LC', 'Saint Lucia'), +('69.57.231.0', '69.57.231.255', 1161422592, 1161422847, 'AG', 'Antigua and Barbuda'), +('69.57.232.0', '69.57.232.255', 1161422848, 1161423103, 'LC', 'Saint Lucia'), +('69.57.233.0', '69.57.233.255', 1161423104, 1161423359, 'VG', 'Virgin Islands, British'), +('69.57.234.0', '69.57.234.255', 1161423360, 1161423615, 'AI', 'Anguilla'), +('69.57.235.0', '69.57.235.255', 1161423616, 1161423871, 'AG', 'Antigua and Barbuda'), +('69.57.236.0', '69.57.236.255', 1161423872, 1161424127, 'LC', 'Saint Lucia'), +('69.57.237.0', '69.57.237.255', 1161424128, 1161424383, 'AI', 'Anguilla'), +('69.57.238.0', '69.57.238.255', 1161424384, 1161424639, 'KN', 'Saint Kitts and Nevis'), +('69.57.239.0', '69.57.239.255', 1161424640, 1161424895, 'LC', 'Saint Lucia'), +('69.57.240.0', '69.57.240.255', 1161424896, 1161425151, 'VG', 'Virgin Islands, British'), +('69.57.241.0', '69.57.241.255', 1161425152, 1161425407, 'DM', 'Dominica'), +('69.57.242.0', '69.57.242.255', 1161425408, 1161425663, 'AG', 'Antigua and Barbuda'), +('69.57.243.0', '69.57.243.255', 1161425664, 1161425919, 'AI', 'Anguilla'), +('69.57.244.0', '69.57.244.15', 1161425920, 1161425935, 'AG', 'Antigua and Barbuda'), +('69.57.244.16', '69.57.244.31', 1161425936, 1161425951, 'MS', 'Montserrat'), +('69.57.244.32', '69.57.244.223', 1161425952, 1161426143, 'AG', 'Antigua and Barbuda'), +('69.57.244.224', '69.57.244.255', 1161426144, 1161426175, 'MS', 'Montserrat'), +('69.57.245.0', '69.57.247.255', 1161426176, 1161426943, 'AG', 'Antigua and Barbuda'), +('69.57.248.0', '69.57.248.255', 1161426944, 1161427199, 'AI', 'Anguilla'), +('69.57.249.0', '69.57.249.255', 1161427200, 1161427455, 'VG', 'Virgin Islands, British'), +('69.57.250.0', '69.57.252.255', 1161427456, 1161428223, 'AG', 'Antigua and Barbuda'), +('69.57.253.0', '69.57.255.255', 1161428224, 1161428991, 'KN', 'Saint Kitts and Nevis'), +('69.58.0.0', '69.58.95.255', 1161428992, 1161453567, 'US', 'United States'), +('69.58.96.0', '69.58.111.255', 1161453568, 1161457663, 'CA', 'Canada'), +('69.58.112.0', '69.60.223.255', 1161457664, 1161617407, 'US', 'United States'), +('69.60.224.0', '69.60.255.255', 1161617408, 1161625599, 'CA', 'Canada'), +('69.61.0.0', '69.61.11.63', 1161625600, 1161628479, 'US', 'United States'), +('69.61.11.64', '69.61.11.71', 1161628480, 1161628487, 'GB', 'United Kingdom'), +('69.61.11.72', '69.61.20.7', 1161628488, 1161630727, 'US', 'United States'), +('69.61.20.8', '69.61.20.15', 1161630728, 1161630735, 'EG', 'Egypt'), +('69.61.20.16', '69.61.20.23', 1161630736, 1161630743, 'AU', 'Australia'), +('69.61.20.24', '69.61.20.191', 1161630744, 1161630911, 'US', 'United States'), +('69.61.20.192', '69.61.20.199', 1161630912, 1161630919, 'KW', 'Kuwait'), +('69.61.20.200', '69.61.20.207', 1161630920, 1161630927, 'US', 'United States'), +('69.61.20.208', '69.61.20.215', 1161630928, 1161630935, 'GB', 'United Kingdom'), +('69.61.20.216', '69.61.21.23', 1161630936, 1161630999, 'US', 'United States'), +('69.61.21.24', '69.61.21.31', 1161631000, 1161631007, 'AU', 'Australia'), +('69.61.21.32', '69.61.21.39', 1161631008, 1161631015, 'IL', 'Israel'), +('69.61.21.40', '69.61.21.103', 1161631016, 1161631079, 'US', 'United States'), +('69.61.21.104', '69.61.21.111', 1161631080, 1161631087, 'AR', 'Argentina'), +('69.61.21.112', '69.61.21.159', 1161631088, 1161631135, 'US', 'United States'), +('69.61.21.160', '69.61.21.191', 1161631136, 1161631167, 'PL', 'Poland'), +('69.61.21.192', '69.61.22.255', 1161631168, 1161631487, 'US', 'United States'), +('69.61.23.0', '69.61.23.7', 1161631488, 1161631495, 'AR', 'Argentina'), +('69.61.23.8', '69.61.23.23', 1161631496, 1161631511, 'US', 'United States'), +('69.61.23.24', '69.61.23.31', 1161631512, 1161631519, 'BG', 'Bulgaria'), +('69.61.23.32', '69.61.23.167', 1161631520, 1161631655, 'US', 'United States'), +('69.61.23.168', '69.61.23.175', 1161631656, 1161631663, 'AR', 'Argentina'), +('69.61.23.176', '69.61.27.7', 1161631664, 1161632519, 'US', 'United States'), +('69.61.27.8', '69.61.27.15', 1161632520, 1161632527, 'BG', 'Bulgaria'), +('69.61.27.16', '69.61.27.119', 1161632528, 1161632631, 'US', 'United States'), +('69.61.27.120', '69.61.27.127', 1161632632, 1161632639, 'GB', 'United Kingdom'), +('69.61.27.128', '69.61.29.31', 1161632640, 1161633055, 'US', 'United States'), +('69.61.29.32', '69.61.29.63', 1161633056, 1161633087, 'TR', 'Turkey'), +('69.61.29.64', '69.61.29.191', 1161633088, 1161633215, 'US', 'United States'), +('69.61.29.192', '69.61.29.207', 1161633216, 1161633231, 'EE', 'Estonia'), +('69.61.29.208', '69.61.33.23', 1161633232, 1161634071, 'US', 'United States'), +('69.61.33.24', '69.61.33.31', 1161634072, 1161634079, 'GB', 'United Kingdom'), +('69.61.33.32', '69.61.33.191', 1161634080, 1161634239, 'US', 'United States'), +('69.61.33.192', '69.61.33.199', 1161634240, 1161634247, 'GB', 'United Kingdom'), +('69.61.33.200', '69.61.33.223', 1161634248, 1161634271, 'US', 'United States'), +('69.61.33.224', '69.61.33.239', 1161634272, 1161634287, 'CH', 'Switzerland'), +('69.61.33.240', '69.61.34.31', 1161634288, 1161634335, 'US', 'United States'), +('69.61.34.32', '69.61.34.48', 1161634336, 1161634352, 'PL', 'Poland'), +('69.61.34.49', '69.61.34.191', 1161634353, 1161634495, 'US', 'United States'), +('69.61.34.192', '69.61.34.199', 1161634496, 1161634503, 'GB', 'United Kingdom'), +('69.61.34.200', '69.61.36.127', 1161634504, 1161634943, 'US', 'United States'), +('69.61.36.128', '69.61.36.143', 1161634944, 1161634959, 'PL', 'Poland'), +('69.61.36.144', '69.61.36.159', 1161634960, 1161634975, 'US', 'United States'), +('69.61.36.160', '69.61.36.191', 1161634976, 1161635007, 'PL', 'Poland'), +('69.61.36.192', '69.61.40.15', 1161635008, 1161635855, 'US', 'United States'), +('69.61.40.16', '69.61.40.31', 1161635856, 1161635871, 'BE', 'Belgium'), +('69.61.40.32', '69.61.40.127', 1161635872, 1161635967, 'US', 'United States'), +('69.61.40.128', '69.61.40.191', 1161635968, 1161636031, 'TR', 'Turkey'), +('69.61.40.192', '69.61.40.223', 1161636032, 1161636063, 'US', 'United States'), +('69.61.40.224', '69.61.40.255', 1161636064, 1161636095, 'TR', 'Turkey'), +('69.61.41.0', '69.61.42.63', 1161636096, 1161636415, 'US', 'United States'), +('69.61.42.64', '69.61.42.95', 1161636416, 1161636447, 'PL', 'Poland'), +('69.61.42.96', '69.61.42.111', 1161636448, 1161636463, 'US', 'United States'), +('69.61.42.112', '69.61.42.119', 1161636464, 1161636471, 'EG', 'Egypt'), +('69.61.42.120', '69.61.42.143', 1161636472, 1161636495, 'US', 'United States'), +('69.61.42.144', '69.61.42.151', 1161636496, 1161636503, 'CA', 'Canada'), +('69.61.42.152', '69.61.45.39', 1161636504, 1161637159, 'US', 'United States'), +('69.61.45.40', '69.61.45.47', 1161637160, 1161637167, 'NZ', 'New Zealand'), +('69.61.45.48', '69.61.45.79', 1161637168, 1161637199, 'US', 'United States'), +('69.61.45.80', '69.61.45.87', 1161637200, 1161637207, 'GB', 'United Kingdom'), +('69.61.45.88', '69.61.45.95', 1161637208, 1161637215, 'US', 'United States'), +('69.61.45.96', '69.61.45.103', 1161637216, 1161637223, 'PL', 'Poland'), +('69.61.45.104', '69.61.45.175', 1161637224, 1161637295, 'US', 'United States'), +('69.61.45.176', '69.61.45.183', 1161637296, 1161637303, 'AR', 'Argentina'), +('69.61.45.184', '69.61.45.223', 1161637304, 1161637343, 'US', 'United States'), +('69.61.45.224', '69.61.45.231', 1161637344, 1161637351, 'RU', 'Russian Federation'), +('69.61.45.232', '69.61.47.39', 1161637352, 1161637671, 'US', 'United States'), +('69.61.47.40', '69.61.47.47', 1161637672, 1161637679, 'IL', 'Israel'), +('69.61.47.48', '69.61.47.63', 1161637680, 1161637695, 'PT', 'Portugal'), +('69.61.47.64', '69.61.47.143', 1161637696, 1161637775, 'US', 'United States'), +('69.61.47.144', '69.61.47.151', 1161637776, 1161637783, 'GB', 'United Kingdom'), +('69.61.47.152', '69.61.51.255', 1161637784, 1161638911, 'US', 'United States'), +('69.61.52.0', '69.61.52.31', 1161638912, 1161638943, 'PL', 'Poland'), +('69.61.52.32', '69.61.52.55', 1161638944, 1161638967, 'US', 'United States'), +('69.61.52.56', '69.61.52.63', 1161638968, 1161638975, 'GB', 'United Kingdom'), +('69.61.52.64', '69.61.52.79', 1161638976, 1161638991, 'US', 'United States'), +('69.61.52.80', '69.61.52.87', 1161638992, 1161638999, 'PL', 'Poland'), +('69.61.52.88', '69.61.52.151', 1161639000, 1161639063, 'US', 'United States'), +('69.61.52.152', '69.61.52.159', 1161639064, 1161639071, 'PL', 'Poland'), +('69.61.52.160', '69.61.52.175', 1161639072, 1161639087, 'US', 'United States'), +('69.61.52.176', '69.61.52.183', 1161639088, 1161639095, 'CA', 'Canada'), +('69.61.52.184', '69.61.52.207', 1161639096, 1161639119, 'US', 'United States'), +('69.61.52.208', '69.61.52.215', 1161639120, 1161639127, 'DK', 'Denmark'), +('69.61.52.216', '69.61.52.239', 1161639128, 1161639151, 'US', 'United States'), +('69.61.52.240', '69.61.52.247', 1161639152, 1161639159, 'IL', 'Israel'), +('69.61.52.248', '69.61.54.23', 1161639160, 1161639447, 'US', 'United States'), +('69.61.54.24', '69.61.54.31', 1161639448, 1161639455, 'PT', 'Portugal'), +('69.61.54.32', '69.61.54.87', 1161639456, 1161639511, 'US', 'United States'), +('69.61.54.88', '69.61.54.95', 1161639512, 1161639519, 'GB', 'United Kingdom'), +('69.61.54.96', '69.61.54.103', 1161639520, 1161639527, 'PL', 'Poland'), +('69.61.54.104', '69.61.54.151', 1161639528, 1161639575, 'US', 'United States'), +('69.61.54.152', '69.61.54.159', 1161639576, 1161639583, 'BG', 'Bulgaria'), +('69.61.54.160', '69.61.55.23', 1161639584, 1161639703, 'US', 'United States'), +('69.61.55.24', '69.61.55.31', 1161639704, 1161639711, 'BZ', 'Belize'), +('69.61.55.32', '69.61.55.39', 1161639712, 1161639719, 'PL', 'Poland'), +('69.61.55.40', '69.61.55.47', 1161639720, 1161639727, 'US', 'United States'), +('69.61.55.48', '69.61.55.63', 1161639728, 1161639743, 'PL', 'Poland'), +('69.61.55.64', '69.61.55.151', 1161639744, 1161639831, 'US', 'United States'), +('69.61.55.152', '69.61.55.159', 1161639832, 1161639839, 'AR', 'Argentina'), +('69.61.55.160', '69.61.55.207', 1161639840, 1161639887, 'US', 'United States'), +('69.61.55.208', '69.61.55.215', 1161639888, 1161639895, 'AT', 'Austria'), +('69.61.55.216', '69.61.55.255', 1161639896, 1161639935, 'US', 'United States'), +('69.61.56.0', '69.61.56.7', 1161639936, 1161639943, 'CH', 'Switzerland'), +('69.61.56.8', '69.61.56.15', 1161639944, 1161639951, 'US', 'United States'), +('69.61.56.16', '69.61.56.23', 1161639952, 1161639959, 'IL', 'Israel'), +('69.61.56.24', '69.61.56.31', 1161639960, 1161639967, 'GB', 'United Kingdom'), +('69.61.56.32', '69.61.56.63', 1161639968, 1161639999, 'US', 'United States'), +('69.61.56.64', '69.61.56.79', 1161640000, 1161640015, 'PL', 'Poland'), +('69.61.56.80', '69.61.56.87', 1161640016, 1161640023, 'US', 'United States'), +('69.61.56.88', '69.61.56.95', 1161640024, 1161640031, 'PT', 'Portugal'), +('69.61.56.96', '69.61.56.159', 1161640032, 1161640095, 'US', 'United States'), +('69.61.56.160', '69.61.56.191', 1161640096, 1161640127, 'AR', 'Argentina'), +('69.61.56.192', '69.61.59.79', 1161640128, 1161640783, 'US', 'United States'), +('69.61.59.80', '69.61.59.87', 1161640784, 1161640791, 'GB', 'United Kingdom'), +('69.61.59.88', '69.61.59.143', 1161640792, 1161640847, 'US', 'United States'), +('69.61.59.144', '69.61.59.159', 1161640848, 1161640863, 'PL', 'Poland'), +('69.61.59.160', '69.61.63.159', 1161640864, 1161641887, 'US', 'United States'), +('69.61.63.160', '69.61.63.183', 1161641888, 1161641911, 'KW', 'Kuwait'), +('69.61.63.184', '69.61.63.191', 1161641912, 1161641919, 'US', 'United States'), +('69.61.63.192', '69.61.63.255', 1161641920, 1161641983, 'PL', 'Poland'), +('69.61.64.0', '69.61.64.23', 1161641984, 1161642007, 'US', 'United States'), +('69.61.64.24', '69.61.64.31', 1161642008, 1161642015, 'NL', 'Netherlands'), +('69.61.64.32', '69.61.64.47', 1161642016, 1161642031, 'US', 'United States'), +('69.61.64.48', '69.61.64.55', 1161642032, 1161642039, 'GB', 'United Kingdom'), +('69.61.64.56', '69.61.64.191', 1161642040, 1161642175, 'US', 'United States'), +('69.61.64.192', '69.61.64.207', 1161642176, 1161642191, 'GB', 'United Kingdom'), +('69.61.64.208', '69.61.64.215', 1161642192, 1161642199, 'AU', 'Australia'), +('69.61.64.216', '69.61.74.111', 1161642200, 1161644655, 'US', 'United States'), +('69.61.74.112', '69.61.74.127', 1161644656, 1161644671, 'PL', 'Poland'), +('69.61.74.128', '69.61.74.159', 1161644672, 1161644703, 'US', 'United States'), +('69.61.74.160', '69.61.74.199', 1161644704, 1161644743, 'GB', 'United Kingdom'), +('69.61.74.200', '69.61.74.207', 1161644744, 1161644751, 'AR', 'Argentina'), +('69.61.74.208', '69.61.74.223', 1161644752, 1161644767, 'PL', 'Poland'), +('69.61.74.224', '69.61.79.15', 1161644768, 1161645839, 'US', 'United States'), +('69.61.79.16', '69.61.79.31', 1161645840, 1161645855, 'PL', 'Poland'), +('69.61.79.32', '69.61.79.79', 1161645856, 1161645903, 'US', 'United States'), +('69.61.79.80', '69.61.79.87', 1161645904, 1161645911, 'PL', 'Poland'), +('69.61.79.88', '69.61.79.111', 1161645912, 1161645935, 'US', 'United States'), +('69.61.79.112', '69.61.79.127', 1161645936, 1161645951, 'PL', 'Poland'), +('69.61.79.128', '69.61.83.15', 1161645952, 1161646863, 'US', 'United States'), +('69.61.83.16', '69.61.83.31', 1161646864, 1161646879, 'PL', 'Poland'), +('69.61.83.32', '69.61.83.47', 1161646880, 1161646895, 'US', 'United States'), +('69.61.83.48', '69.61.83.95', 1161646896, 1161646943, 'PL', 'Poland'), +('69.61.83.96', '69.61.83.255', 1161646944, 1161647103, 'US', 'United States'), +('69.61.84.0', '69.61.84.15', 1161647104, 1161647119, 'PL', 'Poland'), +('69.61.84.16', '69.61.84.31', 1161647120, 1161647135, 'US', 'United States'), +('69.61.84.32', '69.61.84.63', 1161647136, 1161647167, 'PL', 'Poland'), +('69.61.84.64', '69.61.102.63', 1161647168, 1161651775, 'US', 'United States'), +('69.61.102.64', '69.61.102.95', 1161651776, 1161651807, 'TR', 'Turkey'), +('69.61.102.96', '69.61.102.255', 1161651808, 1161651967, 'US', 'United States'), +('69.61.103.0', '69.61.103.7', 1161651968, 1161651975, 'CH', 'Switzerland'), +('69.61.103.8', '69.61.103.39', 1161651976, 1161652007, 'US', 'United States'), +('69.61.103.40', '69.61.103.47', 1161652008, 1161652015, 'GB', 'United Kingdom'), +('69.61.103.48', '69.61.103.127', 1161652016, 1161652095, 'US', 'United States'), +('69.61.103.128', '69.61.103.135', 1161652096, 1161652103, 'CY', 'Cyprus'), +('69.61.103.136', '69.61.103.159', 1161652104, 1161652127, 'US', 'United States'), +('69.61.103.160', '69.61.103.167', 1161652128, 1161652135, 'AR', 'Argentina'), +('69.61.103.168', '69.61.125.79', 1161652136, 1161657679, 'US', 'United States'), +('69.61.125.80', '69.61.125.95', 1161657680, 1161657695, 'PL', 'Poland'), +('69.61.125.96', '69.61.126.255', 1161657696, 1161658111, 'US', 'United States'), +('69.61.127.0', '69.61.127.15', 1161658112, 1161658127, 'PL', 'Poland'), +('69.61.127.16', '69.63.31.255', 1161658128, 1161764863, 'US', 'United States'), +('69.63.32.0', '69.63.63.255', 1161764864, 1161773055, 'CA', 'Canada'), +('69.63.64.0', '69.63.79.255', 1161773056, 1161777151, 'SZ', 'Swaziland'), +('69.63.80.0', '69.63.131.199', 1161777152, 1161790407, 'US', 'United States'), +('69.63.131.200', '69.63.131.208', 1161790408, 1161790416, 'PA', 'Panama'), +('69.63.131.209', '69.63.133.119', 1161790417, 1161790839, 'US', 'United States'), +('69.63.133.120', '69.63.133.128', 1161790840, 1161790848, 'CA', 'Canada'), +('69.63.133.129', '69.63.239.255', 1161790849, 1161818111, 'US', 'United States'), +('69.63.240.0', '69.63.255.255', 1161818112, 1161822207, 'CA', 'Canada'), +('69.64.0.0', '69.64.51.77', 1161822208, 1161835341, 'US', 'United States'), +('69.64.51.78', '69.64.51.89', 1161835342, 1161835353, 'GR', 'Greece'), +('69.64.51.90', '69.64.53.255', 1161835354, 1161836031, 'US', 'United States'), +('69.64.54.0', '69.64.54.31', 1161836032, 1161836063, 'CA', 'Canada'), +('69.64.54.32', '69.64.54.255', 1161836064, 1161836287, 'US', 'United States'), +('69.64.55.0', '69.64.55.31', 1161836288, 1161836319, 'RS', 'Serbia'), +('69.64.55.32', '69.64.59.255', 1161836320, 1161837567, 'US', 'United States'), +('69.64.60.0', '69.64.60.255', 1161837568, 1161837823, 'JP', 'Japan'), +('69.64.61.0', '69.64.63.15', 1161837824, 1161838351, 'US', 'United States'), +('69.64.63.16', '69.64.63.31', 1161838352, 1161838367, 'GB', 'United Kingdom'), +('69.64.63.32', '69.64.63.212', 1161838368, 1161838548, 'US', 'United States'), +('69.64.63.213', '69.64.63.224', 1161838549, 1161838560, 'RU', 'Russian Federation'), +('69.64.63.225', '69.64.169.231', 1161838561, 1161865703, 'US', 'United States'), +('69.64.169.232', '69.64.169.239', 1161865704, 1161865711, 'EG', 'Egypt'), +('69.64.169.240', '69.65.54.79', 1161865712, 1161901647, 'US', 'United States'), +('69.65.54.80', '69.65.54.87', 1161901648, 1161901655, 'VN', 'Vietnam'), +('69.65.54.88', '69.65.147.255', 1161901656, 1161925631, 'US', 'United States'), +('69.65.148.0', '69.65.148.255', 1161925632, 1161925887, 'EC', 'Ecuador'), +('69.65.149.0', '69.65.150.255', 1161925888, 1161926399, 'US', 'United States'), +('69.65.151.0', '69.65.151.255', 1161926400, 1161926655, 'EC', 'Ecuador'), +('69.65.152.0', '69.66.255.255', 1161926656, 1162018815, 'US', 'United States'), +('69.67.0.0', '69.67.15.255', 1162018816, 1162022911, 'CA', 'Canada'), +('69.67.32.0', '69.67.47.255', 1162027008, 1162031103, 'ZA', 'South Africa'), +('69.67.48.0', '69.67.49.15', 1162031104, 1162031375, 'US', 'United States'), +('69.67.49.16', '69.67.49.23', 1162031376, 1162031383, 'CA', 'Canada'), +('69.67.49.24', '69.67.49.47', 1162031384, 1162031407, 'US', 'United States'), +('69.67.49.48', '69.67.49.63', 1162031408, 1162031423, 'DO', 'Dominican Republic'), +('69.67.49.64', '69.67.52.127', 1162031424, 1162032255, 'US', 'United States'), +('69.67.52.128', '69.67.52.143', 1162032256, 1162032271, 'CA', 'Canada'), +('69.67.52.144', '69.67.52.159', 1162032272, 1162032287, 'US', 'United States'), +('69.67.52.160', '69.67.52.175', 1162032288, 1162032303, 'BE', 'Belgium'), +('69.67.52.176', '69.67.52.231', 1162032304, 1162032359, 'US', 'United States'), +('69.67.52.232', '69.67.52.239', 1162032360, 1162032367, 'JO', 'Jordan'), +('69.67.52.240', '69.67.54.95', 1162032368, 1162032735, 'US', 'United States'), +('69.67.54.96', '69.67.54.127', 1162032736, 1162032767, 'CA', 'Canada'), +('69.67.54.128', '69.67.54.191', 1162032768, 1162032831, 'DO', 'Dominican Republic'), +('69.67.54.192', '69.67.56.95', 1162032832, 1162033247, 'US', 'United States'), +('69.67.56.96', '69.67.56.111', 1162033248, 1162033263, 'CA', 'Canada'), +('69.67.56.112', '69.67.59.63', 1162033264, 1162033983, 'US', 'United States'), +('69.67.59.64', '69.67.59.95', 1162033984, 1162034015, 'IN', 'India'), +('69.67.59.96', '69.67.159.255', 1162034016, 1162059775, 'US', 'United States'), +('69.67.160.0', '69.67.191.255', 1162059776, 1162067967, 'CA', 'Canada'), +('69.67.192.0', '69.69.255.255', 1162067968, 1162215423, 'US', 'United States'), +('69.70.0.0', '69.70.255.255', 1162215424, 1162280959, 'CA', 'Canada'), +('69.71.0.0', '69.71.63.255', 1162280960, 1162297343, 'US', 'United States'), +('69.71.64.0', '69.71.95.255', 1162297344, 1162305535, 'CA', 'Canada'), +('69.71.96.0', '69.71.127.255', 1162305536, 1162313727, 'US', 'United States'), +('69.71.128.0', '69.71.139.255', 1162313728, 1162316799, 'A2', 'Satellite Provider'), +('69.71.140.0', '69.71.146.255', 1162316800, 1162318591, 'BH', 'Bahrain'), +('69.71.147.0', '69.71.153.255', 1162318592, 1162320383, 'A2', 'Satellite Provider'), +('69.71.154.0', '69.71.154.255', 1162320384, 1162320639, 'US', 'United States'), +('69.71.155.0', '69.71.156.255', 1162320640, 1162321151, 'A2', 'Satellite Provider'), +('69.71.157.0', '69.72.142.215', 1162321152, 1162383063, 'US', 'United States'), +('69.72.142.216', '69.72.142.223', 1162383064, 1162383071, 'IN', 'India'), +('69.72.142.224', '69.72.187.95', 1162383072, 1162394463, 'US', 'United States'), +('69.72.187.96', '69.72.187.103', 1162394464, 1162394471, 'IE', 'Ireland'), +('69.72.187.104', '69.72.214.239', 1162394472, 1162401519, 'US', 'United States'), +('69.72.214.240', '69.72.214.247', 1162401520, 1162401527, 'IN', 'India'), +('69.72.214.248', '69.72.242.7', 1162401528, 1162408455, 'US', 'United States'), +('69.72.242.8', '69.72.242.15', 1162408456, 1162408463, 'IN', 'India'), +('69.72.242.16', '69.72.242.151', 1162408464, 1162408599, 'US', 'United States'), +('69.72.242.152', '69.72.242.159', 1162408600, 1162408607, 'IN', 'India'), +('69.72.242.160', '69.72.244.87', 1162408608, 1162409047, 'US', 'United States'), +('69.72.244.88', '69.72.244.95', 1162409048, 1162409055, 'IN', 'India'), +('69.72.244.96', '69.73.191.255', 1162409056, 1162461183, 'US', 'United States'), +('69.73.192.0', '69.73.193.255', 1162461184, 1162461695, 'BB', 'Barbados'), +('69.73.194.0', '69.73.195.255', 1162461696, 1162462207, 'GD', 'Grenada'), +('69.73.196.0', '69.73.198.255', 1162462208, 1162462975, 'BB', 'Barbados'), +('69.73.199.0', '69.73.202.255', 1162462976, 1162463999, 'VC', 'Saint Vincent and the Grenadines'), +('69.73.203.0', '69.73.207.255', 1162464000, 1162465279, 'BB', 'Barbados'), +('69.73.208.0', '69.73.208.255', 1162465280, 1162465535, 'GD', 'Grenada'), +('69.73.209.0', '69.73.229.255', 1162465536, 1162470911, 'BB', 'Barbados'), +('69.73.230.0', '69.73.231.255', 1162470912, 1162471423, 'GD', 'Grenada'), +('69.73.232.0', '69.73.236.255', 1162471424, 1162472703, 'BB', 'Barbados'), +('69.73.237.0', '69.73.239.255', 1162472704, 1162473471, 'VC', 'Saint Vincent and the Grenadines'), +('69.73.240.0', '69.73.245.255', 1162473472, 1162475007, 'GD', 'Grenada'), +('69.73.246.0', '69.73.255.255', 1162475008, 1162477567, 'BB', 'Barbados'), +('69.74.0.0', '69.77.159.255', 1162477568, 1162715135, 'US', 'United States'), +('69.77.160.0', '69.77.191.255', 1162715136, 1162723327, 'CA', 'Canada'), +('69.77.192.0', '69.78.255.255', 1162723328, 1162805247, 'US', 'United States'), +('69.79.0.0', '69.79.23.255', 1162805248, 1162811391, 'PR', 'Puerto Rico'), +('69.79.24.0', '69.79.24.255', 1162811392, 1162811647, 'AN', 'Netherlands Antilles'), +('69.79.25.0', '69.79.26.255', 1162811648, 1162812159, 'US', 'United States'), +('69.79.27.0', '69.79.27.255', 1162812160, 1162812415, 'DO', 'Dominican Republic'), +('69.79.28.0', '69.79.31.255', 1162812416, 1162813439, 'US', 'United States'), +('69.79.32.0', '69.79.63.255', 1162813440, 1162821631, 'CO', 'Colombia'), +('69.79.64.0', '69.79.71.255', 1162821632, 1162823679, 'PR', 'Puerto Rico'), +('69.79.72.0', '69.79.79.255', 1162823680, 1162825727, 'GT', 'Guatemala'), +('69.79.80.0', '69.79.87.255', 1162825728, 1162827775, 'US', 'United States'), +('69.79.88.0', '69.79.111.255', 1162827776, 1162833919, 'PR', 'Puerto Rico'), +('69.79.112.0', '69.79.119.255', 1162833920, 1162835967, 'GT', 'Guatemala'), +('69.79.120.0', '69.79.120.255', 1162835968, 1162836223, 'BS', 'Bahamas'), +('69.79.121.0', '69.79.123.255', 1162836224, 1162836991, 'US', 'United States'), +('69.79.124.0', '69.79.127.255', 1162836992, 1162838015, 'BS', 'Bahamas'), +('69.79.128.0', '69.79.255.255', 1162838016, 1162870783, 'CO', 'Colombia'), +('69.80.128.0', '69.80.207.255', 1162903552, 1162924031, 'US', 'United States'), +('69.80.208.0', '69.80.208.255', 1162924032, 1162924287, 'AU', 'Australia'), +('69.80.209.0', '69.80.215.159', 1162924288, 1162925983, 'US', 'United States'), +('69.80.215.160', '69.80.215.191', 1162925984, 1162926015, 'AU', 'Australia'), +('69.80.215.192', '69.80.215.247', 1162926016, 1162926071, 'US', 'United States'), +('69.80.215.248', '69.80.215.255', 1162926072, 1162926079, 'AU', 'Australia'), +('69.80.216.0', '69.87.255.255', 1162926080, 1163395071, 'US', 'United States'), +('69.88.0.0', '69.88.2.255', 1163395072, 1163395839, 'A2', 'Satellite Provider'), +('69.88.3.0', '69.88.3.7', 1163395840, 1163395847, 'BD', 'Bangladesh'), +('69.88.3.8', '69.88.3.15', 1163395848, 1163395855, 'ID', 'Indonesia'), +('69.88.3.16', '69.88.3.23', 1163395856, 1163395863, 'BD', 'Bangladesh'), +('69.88.3.24', '69.88.3.31', 1163395864, 1163395871, 'ID', 'Indonesia'), +('69.88.3.32', '69.88.3.39', 1163395872, 1163395879, 'PK', 'Pakistan'), +('69.88.3.40', '69.88.3.71', 1163395880, 1163395911, 'ID', 'Indonesia'), +('69.88.3.72', '69.88.3.79', 1163395912, 1163395919, 'BD', 'Bangladesh'), +('69.88.3.80', '69.88.3.87', 1163395920, 1163395927, 'ID', 'Indonesia'), +('69.88.3.88', '69.88.3.103', 1163395928, 1163395943, 'BD', 'Bangladesh'), +('69.88.3.104', '69.88.3.111', 1163395944, 1163395951, 'A2', 'Satellite Provider'), +('69.88.3.112', '69.88.3.119', 1163395952, 1163395959, 'PK', 'Pakistan'), +('69.88.3.120', '69.88.3.183', 1163395960, 1163396023, 'ID', 'Indonesia'), +('69.88.3.184', '69.88.3.191', 1163396024, 1163396031, 'PK', 'Pakistan'), +('69.88.3.192', '69.88.3.239', 1163396032, 1163396079, 'ID', 'Indonesia'), +('69.88.3.240', '69.88.3.247', 1163396080, 1163396087, 'BD', 'Bangladesh'), +('69.88.3.248', '69.88.4.47', 1163396088, 1163396143, 'ID', 'Indonesia'), +('69.88.4.48', '69.88.4.55', 1163396144, 1163396151, 'BD', 'Bangladesh'), +('69.88.4.56', '69.88.4.95', 1163396152, 1163396191, 'ID', 'Indonesia'), +('69.88.4.96', '69.88.4.103', 1163396192, 1163396199, 'A2', 'Satellite Provider'), +('69.88.4.104', '69.88.4.111', 1163396200, 1163396207, 'ID', 'Indonesia'), +('69.88.4.112', '69.88.4.119', 1163396208, 1163396215, 'A2', 'Satellite Provider'), +('69.88.4.120', '69.88.4.135', 1163396216, 1163396231, 'ID', 'Indonesia'), +('69.88.4.136', '69.88.4.143', 1163396232, 1163396239, 'A2', 'Satellite Provider'), +('69.88.4.144', '69.88.4.151', 1163396240, 1163396247, 'ID', 'Indonesia'), +('69.88.4.152', '69.88.4.159', 1163396248, 1163396255, 'BD', 'Bangladesh'), +('69.88.4.160', '69.88.4.191', 1163396256, 1163396287, 'ID', 'Indonesia'), +('69.88.4.192', '69.88.4.199', 1163396288, 1163396295, 'A2', 'Satellite Provider'), +('69.88.4.200', '69.88.4.207', 1163396296, 1163396303, 'BD', 'Bangladesh'), +('69.88.4.208', '69.88.4.223', 1163396304, 1163396319, 'A2', 'Satellite Provider'), +('69.88.4.224', '69.88.4.231', 1163396320, 1163396327, 'BD', 'Bangladesh'), +('69.88.4.232', '69.88.4.247', 1163396328, 1163396343, 'ID', 'Indonesia'), +('69.88.4.248', '69.88.4.255', 1163396344, 1163396351, 'A2', 'Satellite Provider'), +('69.88.5.0', '69.88.5.31', 1163396352, 1163396383, 'ID', 'Indonesia'), +('69.88.5.32', '69.88.5.47', 1163396384, 1163396399, 'A2', 'Satellite Provider'), +('69.88.5.48', '69.88.5.79', 1163396400, 1163396431, 'BD', 'Bangladesh'), +('69.88.5.80', '69.88.5.167', 1163396432, 1163396519, 'A2', 'Satellite Provider'), +('69.88.5.168', '69.88.5.175', 1163396520, 1163396527, 'ID', 'Indonesia'), +('69.88.5.176', '69.88.5.207', 1163396528, 1163396559, 'A2', 'Satellite Provider'), +('69.88.5.208', '69.88.5.223', 1163396560, 1163396575, 'ID', 'Indonesia'), +('69.88.5.224', '69.88.6.15', 1163396576, 1163396623, 'A2', 'Satellite Provider'), +('69.88.6.16', '69.88.6.31', 1163396624, 1163396639, 'ID', 'Indonesia'), +('69.88.6.32', '69.88.6.47', 1163396640, 1163396655, 'A2', 'Satellite Provider'), +('69.88.6.48', '69.88.6.63', 1163396656, 1163396671, 'BD', 'Bangladesh'), +('69.88.6.64', '69.88.6.79', 1163396672, 1163396687, 'A2', 'Satellite Provider'), +('69.88.6.80', '69.88.6.111', 1163396688, 1163396719, 'BD', 'Bangladesh'), +('69.88.6.112', '69.88.6.223', 1163396720, 1163396831, 'A2', 'Satellite Provider'), +('69.88.6.224', '69.88.7.31', 1163396832, 1163396895, 'BD', 'Bangladesh'), +('69.88.7.32', '69.88.7.63', 1163396896, 1163396927, 'ID', 'Indonesia'), +('69.88.7.64', '69.88.7.127', 1163396928, 1163396991, 'A2', 'Satellite Provider'), +('69.88.7.128', '69.88.7.159', 1163396992, 1163397023, 'BD', 'Bangladesh'), +('69.88.7.160', '69.88.7.191', 1163397024, 1163397055, 'A2', 'Satellite Provider'), +('69.88.7.192', '69.88.7.223', 1163397056, 1163397087, 'BD', 'Bangladesh'), +('69.88.7.224', '69.88.7.255', 1163397088, 1163397119, 'A2', 'Satellite Provider'), +('69.88.8.0', '69.88.8.127', 1163397120, 1163397247, 'NP', 'Nepal'), +('69.88.8.128', '69.88.8.255', 1163397248, 1163397375, 'BD', 'Bangladesh'), +('69.88.9.0', '69.88.9.95', 1163397376, 1163397471, 'A2', 'Satellite Provider'), +('69.88.9.96', '69.88.9.103', 1163397472, 1163397479, 'US', 'United States'), +('69.88.9.104', '69.88.9.159', 1163397480, 1163397535, 'A2', 'Satellite Provider'), +('69.88.9.160', '69.88.9.167', 1163397536, 1163397543, 'US', 'United States'), +('69.88.9.168', '69.88.9.199', 1163397544, 1163397575, 'A2', 'Satellite Provider'), +('69.88.9.200', '69.88.9.207', 1163397576, 1163397583, 'BD', 'Bangladesh'), +('69.88.9.208', '69.88.10.31', 1163397584, 1163397663, 'A2', 'Satellite Provider'), +('69.88.10.32', '69.88.10.63', 1163397664, 1163397695, 'BD', 'Bangladesh'), +('69.88.10.64', '69.88.10.223', 1163397696, 1163397855, 'A2', 'Satellite Provider'), +('69.88.10.224', '69.88.10.255', 1163397856, 1163397887, 'US', 'United States'), +('69.88.11.0', '69.88.11.255', 1163397888, 1163398143, 'NP', 'Nepal'), +('69.88.12.0', '69.88.12.95', 1163398144, 1163398239, 'A2', 'Satellite Provider'), +('69.88.12.96', '69.88.12.159', 1163398240, 1163398303, 'BD', 'Bangladesh'), +('69.88.12.160', '69.88.12.223', 1163398304, 1163398367, 'A2', 'Satellite Provider'), +('69.88.12.224', '69.88.15.127', 1163398368, 1163399039, 'BD', 'Bangladesh'), +('69.88.15.128', '69.88.15.191', 1163399040, 1163399103, 'A2', 'Satellite Provider'), +('69.88.15.192', '69.88.16.127', 1163399104, 1163399295, 'BD', 'Bangladesh'), +('69.88.16.128', '69.88.17.255', 1163399296, 1163399679, 'A2', 'Satellite Provider'), +('69.88.18.0', '69.88.18.127', 1163399680, 1163399807, 'BD', 'Bangladesh'), +('69.88.18.128', '69.88.18.255', 1163399808, 1163399935, 'A2', 'Satellite Provider'), +('69.88.19.0', '69.88.19.127', 1163399936, 1163400063, 'US', 'United States'), +('69.88.19.128', '69.88.20.255', 1163400064, 1163400447, 'A2', 'Satellite Provider'), +('69.88.21.0', '69.88.21.255', 1163400448, 1163400703, 'BD', 'Bangladesh'), +('69.88.22.0', '69.88.22.15', 1163400704, 1163400719, 'PK', 'Pakistan'), +('69.88.22.16', '69.88.22.23', 1163400720, 1163400727, 'ID', 'Indonesia'), +('69.88.22.24', '69.88.22.31', 1163400728, 1163400735, 'A2', 'Satellite Provider'), +('69.88.22.32', '69.88.22.39', 1163400736, 1163400743, 'PK', 'Pakistan'), +('69.88.22.40', '69.88.22.47', 1163400744, 1163400751, 'A2', 'Satellite Provider'), +('69.88.22.48', '69.88.22.55', 1163400752, 1163400759, 'PK', 'Pakistan'), +('69.88.22.56', '69.88.22.135', 1163400760, 1163400839, 'A2', 'Satellite Provider'), +('69.88.22.136', '69.88.22.143', 1163400840, 1163400847, 'ID', 'Indonesia'), +('69.88.22.144', '69.88.22.183', 1163400848, 1163400887, 'A2', 'Satellite Provider'), +('69.88.22.184', '69.88.22.223', 1163400888, 1163400927, 'ID', 'Indonesia'), +('69.88.22.224', '69.88.23.127', 1163400928, 1163401087, 'A2', 'Satellite Provider'), +('69.88.23.128', '69.88.23.191', 1163401088, 1163401151, 'BD', 'Bangladesh'), +('69.88.23.192', '69.88.23.255', 1163401152, 1163401215, 'A2', 'Satellite Provider'), +('69.88.24.0', '69.88.24.23', 1163401216, 1163401239, 'ID', 'Indonesia'), +('69.88.24.24', '69.88.24.39', 1163401240, 1163401255, 'A2', 'Satellite Provider'), +('69.88.24.40', '69.88.24.47', 1163401256, 1163401263, 'ID', 'Indonesia'), +('69.88.24.48', '69.88.24.103', 1163401264, 1163401319, 'A2', 'Satellite Provider'), +('69.88.24.104', '69.88.24.111', 1163401320, 1163401327, 'PK', 'Pakistan'), +('69.88.24.112', '69.88.24.135', 1163401328, 1163401351, 'A2', 'Satellite Provider'), +('69.88.24.136', '69.88.24.143', 1163401352, 1163401359, 'PK', 'Pakistan'), +('69.88.24.144', '69.88.24.215', 1163401360, 1163401431, 'A2', 'Satellite Provider'), +('69.88.24.216', '69.88.24.223', 1163401432, 1163401439, 'PK', 'Pakistan'), +('69.88.24.224', '69.88.25.63', 1163401440, 1163401535, 'A2', 'Satellite Provider'), +('69.88.25.64', '69.88.25.71', 1163401536, 1163401543, 'ID', 'Indonesia'), +('69.88.25.72', '69.88.25.255', 1163401544, 1163401727, 'A2', 'Satellite Provider'), +('69.88.26.0', '69.88.26.63', 1163401728, 1163401791, 'BD', 'Bangladesh'), +('69.88.26.64', '69.88.26.255', 1163401792, 1163401983, 'A2', 'Satellite Provider'), +('69.88.27.0', '69.88.28.127', 1163401984, 1163402367, 'BD', 'Bangladesh'), +('69.88.28.128', '69.88.28.255', 1163402368, 1163402495, 'A2', 'Satellite Provider'), +('69.88.29.0', '69.88.30.127', 1163402496, 1163402879, 'BD', 'Bangladesh'), +('69.88.30.128', '69.88.30.255', 1163402880, 1163403007, 'A2', 'Satellite Provider'), +('69.88.31.0', '69.88.31.63', 1163403008, 1163403071, 'BD', 'Bangladesh'), +('69.88.31.64', '69.88.31.127', 1163403072, 1163403135, 'US', 'United States'), +('69.88.31.128', '69.88.31.255', 1163403136, 1163403263, 'A2', 'Satellite Provider'), +('69.88.32.0', '69.88.47.255', 1163403264, 1163407359, 'US', 'United States'), +('69.88.48.0', '69.88.63.255', 1163407360, 1163411455, 'CA', 'Canada'), +('69.88.64.0', '69.89.31.255', 1163411456, 1163468799, 'US', 'United States'), +('69.89.32.0', '69.89.47.255', 1163468800, 1163472895, 'PR', 'Puerto Rico'), +('69.89.48.0', '69.89.255.255', 1163472896, 1163526143, 'US', 'United States'), +('69.90.0.0', '69.90.1.63', 1163526144, 1163526463, 'CA', 'Canada'), +('69.90.1.64', '69.90.2.255', 1163526464, 1163526911, 'US', 'United States'), +('69.90.3.0', '69.90.3.63', 1163526912, 1163526975, 'CA', 'Canada'), +('69.90.3.64', '69.90.3.111', 1163526976, 1163527023, 'US', 'United States'), +('69.90.3.112', '69.90.3.127', 1163527024, 1163527039, 'BV', 'Bouvet Island'), +('69.90.3.128', '69.90.3.143', 1163527040, 1163527055, 'CA', 'Canada'), +('69.90.3.144', '69.90.3.159', 1163527056, 1163527071, 'US', 'United States'), +('69.90.3.160', '69.90.3.175', 1163527072, 1163527087, 'CA', 'Canada'), +('69.90.3.176', '69.90.3.223', 1163527088, 1163527135, 'US', 'United States'), +('69.90.3.224', '69.90.3.231', 1163527136, 1163527143, 'CA', 'Canada'), +('69.90.3.232', '69.90.3.239', 1163527144, 1163527151, 'US', 'United States'), +('69.90.3.240', '69.90.3.255', 1163527152, 1163527167, 'CA', 'Canada'), +('69.90.4.0', '69.90.6.63', 1163527168, 1163527743, 'US', 'United States'), +('69.90.6.64', '69.90.6.95', 1163527744, 1163527775, 'CA', 'Canada'), +('69.90.6.96', '69.90.6.111', 1163527776, 1163527791, 'US', 'United States'), +('69.90.6.112', '69.90.7.255', 1163527792, 1163528191, 'CA', 'Canada'), +('69.90.8.0', '69.90.15.255', 1163528192, 1163530239, 'US', 'United States'), +('69.90.16.0', '69.90.17.31', 1163530240, 1163530527, 'CA', 'Canada'), +('69.90.17.32', '69.90.17.47', 1163530528, 1163530543, 'US', 'United States'), +('69.90.17.48', '69.90.17.127', 1163530544, 1163530623, 'CA', 'Canada'), +('69.90.17.128', '69.90.17.191', 1163530624, 1163530687, 'US', 'United States'), +('69.90.17.192', '69.90.18.31', 1163530688, 1163530783, 'CA', 'Canada'), +('69.90.18.32', '69.90.18.79', 1163530784, 1163530831, 'US', 'United States'), +('69.90.18.80', '69.90.18.207', 1163530832, 1163530959, 'CA', 'Canada'), +('69.90.18.208', '69.90.18.215', 1163530960, 1163530967, 'US', 'United States'), +('69.90.18.216', '69.90.26.223', 1163530968, 1163533023, 'CA', 'Canada'), +('69.90.26.224', '69.90.26.255', 1163533024, 1163533055, 'US', 'United States'), +('69.90.27.0', '69.90.28.239', 1163533056, 1163533551, 'CA', 'Canada'), +('69.90.28.240', '69.90.28.255', 1163533552, 1163533567, 'PA', 'Panama'), +('69.90.29.0', '69.90.29.127', 1163533568, 1163533695, 'CA', 'Canada'), +('69.90.29.128', '69.90.29.159', 1163533696, 1163533727, 'US', 'United States'), +('69.90.29.160', '69.90.29.223', 1163533728, 1163533791, 'CA', 'Canada'), +('69.90.29.224', '69.90.29.239', 1163533792, 1163533807, 'US', 'United States'), +('69.90.29.240', '69.90.29.255', 1163533808, 1163533823, 'CA', 'Canada'), +('69.90.30.0', '69.90.30.191', 1163533824, 1163534015, 'US', 'United States'), +('69.90.30.192', '69.90.30.207', 1163534016, 1163534031, 'CA', 'Canada'), +('69.90.30.208', '69.90.31.63', 1163534032, 1163534143, 'US', 'United States'), +('69.90.31.64', '69.90.31.95', 1163534144, 1163534175, 'CA', 'Canada'), +('69.90.31.96', '69.90.31.191', 1163534176, 1163534271, 'US', 'United States'), +('69.90.31.192', '69.90.31.231', 1163534272, 1163534311, 'CA', 'Canada'), +('69.90.31.232', '69.90.31.239', 1163534312, 1163534319, 'US', 'United States'), +('69.90.31.240', '69.90.31.247', 1163534320, 1163534327, 'CA', 'Canada'), +('69.90.31.248', '69.90.35.255', 1163534328, 1163535359, 'US', 'United States'), +('69.90.36.0', '69.90.37.63', 1163535360, 1163535679, 'CA', 'Canada'), +('69.90.37.64', '69.90.37.127', 1163535680, 1163535743, 'US', 'United States'), +('69.90.37.128', '69.90.37.223', 1163535744, 1163535839, 'CA', 'Canada'), +('69.90.37.224', '69.90.37.255', 1163535840, 1163535871, 'US', 'United States'), +('69.90.38.0', '69.90.39.255', 1163535872, 1163536383, 'CA', 'Canada'), +('69.90.40.0', '69.90.42.175', 1163536384, 1163537071, 'US', 'United States'), +('69.90.42.176', '69.90.42.183', 1163537072, 1163537079, 'CA', 'Canada'), +('69.90.42.184', '69.90.44.255', 1163537080, 1163537663, 'US', 'United States'), +('69.90.45.0', '69.90.56.127', 1163537664, 1163540607, 'CA', 'Canada'), +('69.90.56.128', '69.90.56.255', 1163540608, 1163540735, 'US', 'United States'), +('69.90.57.0', '69.90.59.255', 1163540736, 1163541503, 'CA', 'Canada'), +('69.90.60.0', '69.90.63.255', 1163541504, 1163542527, 'US', 'United States'), +('69.90.64.0', '69.90.65.63', 1163542528, 1163542847, 'CA', 'Canada'), +('69.90.65.64', '69.90.65.71', 1163542848, 1163542855, 'US', 'United States'), +('69.90.65.72', '69.90.65.135', 1163542856, 1163542919, 'CA', 'Canada'), +('69.90.65.136', '69.90.65.143', 1163542920, 1163542927, 'US', 'United States'), +('69.90.65.144', '69.90.65.151', 1163542928, 1163542935, 'CA', 'Canada'), +('69.90.65.152', '69.90.65.159', 1163542936, 1163542943, 'US', 'United States'), +('69.90.65.160', '69.90.65.191', 1163542944, 1163542975, 'CA', 'Canada'), +('69.90.65.192', '69.90.65.255', 1163542976, 1163543039, 'US', 'United States'), +('69.90.66.0', '69.90.68.135', 1163543040, 1163543687, 'CA', 'Canada'), +('69.90.68.136', '69.90.68.143', 1163543688, 1163543695, 'FI', 'Finland'), +('69.90.68.144', '69.90.69.31', 1163543696, 1163543839, 'CA', 'Canada'), +('69.90.69.32', '69.90.69.39', 1163543840, 1163543847, 'US', 'United States'), +('69.90.69.40', '69.90.69.175', 1163543848, 1163543983, 'CA', 'Canada'), +('69.90.69.176', '69.90.69.183', 1163543984, 1163543991, 'US', 'United States'), +('69.90.69.184', '69.90.70.255', 1163543992, 1163544319, 'CA', 'Canada'), +('69.90.71.0', '69.90.71.15', 1163544320, 1163544335, 'US', 'United States'), +('69.90.71.16', '69.90.71.63', 1163544336, 1163544383, 'CA', 'Canada'), +('69.90.71.64', '69.90.71.103', 1163544384, 1163544423, 'US', 'United States'), +('69.90.71.104', '69.90.71.255', 1163544424, 1163544575, 'CA', 'Canada'), +('69.90.72.0', '69.90.72.31', 1163544576, 1163544607, 'US', 'United States'), +('69.90.72.32', '69.90.72.95', 1163544608, 1163544671, 'CA', 'Canada'), +('69.90.72.96', '69.90.72.111', 1163544672, 1163544687, 'US', 'United States'), +('69.90.72.112', '69.90.72.207', 1163544688, 1163544783, 'CA', 'Canada'), +('69.90.72.208', '69.90.72.223', 1163544784, 1163544799, 'US', 'United States'), +('69.90.72.224', '69.90.74.127', 1163544800, 1163545215, 'CA', 'Canada'), +('69.90.74.128', '69.90.74.159', 1163545216, 1163545247, 'FI', 'Finland'), +('69.90.74.160', '69.90.74.215', 1163545248, 1163545303, 'US', 'United States'), +('69.90.74.216', '69.90.74.223', 1163545304, 1163545311, 'CA', 'Canada'), +('69.90.74.224', '69.90.75.7', 1163545312, 1163545351, 'US', 'United States'), +('69.90.75.8', '69.90.75.15', 1163545352, 1163545359, 'CA', 'Canada'), +('69.90.75.16', '69.90.75.31', 1163545360, 1163545375, 'US', 'United States'), +('69.90.75.32', '69.90.75.127', 1163545376, 1163545471, 'CA', 'Canada'), +('69.90.75.128', '69.90.75.255', 1163545472, 1163545599, 'US', 'United States'), +('69.90.76.0', '69.90.76.31', 1163545600, 1163545631, 'CA', 'Canada'), +('69.90.76.32', '69.90.76.63', 1163545632, 1163545663, 'GB', 'United Kingdom'), +('69.90.76.64', '69.90.77.47', 1163545664, 1163545903, 'CA', 'Canada'), +('69.90.77.48', '69.90.77.55', 1163545904, 1163545911, 'US', 'United States'), +('69.90.77.56', '69.90.77.127', 1163545912, 1163545983, 'CA', 'Canada'), +('69.90.77.128', '69.90.77.159', 1163545984, 1163546015, 'US', 'United States'), +('69.90.77.160', '69.90.77.183', 1163546016, 1163546039, 'CA', 'Canada'), +('69.90.77.184', '69.90.77.191', 1163546040, 1163546047, 'US', 'United States'), +('69.90.77.192', '69.90.77.223', 1163546048, 1163546079, 'CA', 'Canada'), +('69.90.77.224', '69.90.77.255', 1163546080, 1163546111, 'US', 'United States'), +('69.90.78.0', '69.90.78.7', 1163546112, 1163546119, 'CA', 'Canada'), +('69.90.78.8', '69.90.78.15', 1163546120, 1163546127, 'US', 'United States'), +('69.90.78.16', '69.90.78.23', 1163546128, 1163546135, 'CA', 'Canada'), +('69.90.78.24', '69.90.78.63', 1163546136, 1163546175, 'US', 'United States'), +('69.90.78.64', '69.90.78.79', 1163546176, 1163546191, 'CA', 'Canada'), +('69.90.78.80', '69.90.79.15', 1163546192, 1163546383, 'US', 'United States'), +('69.90.79.16', '69.90.79.23', 1163546384, 1163546391, 'CA', 'Canada'), +('69.90.79.24', '69.90.79.55', 1163546392, 1163546423, 'US', 'United States'), +('69.90.79.56', '69.90.79.63', 1163546424, 1163546431, 'CA', 'Canada'), +('69.90.79.64', '69.90.79.255', 1163546432, 1163546623, 'US', 'United States'), +('69.90.80.0', '69.90.83.63', 1163546624, 1163547455, 'CA', 'Canada'), +('69.90.83.64', '69.90.83.71', 1163547456, 1163547463, 'US', 'United States'), +('69.90.83.72', '69.90.83.95', 1163547464, 1163547487, 'CA', 'Canada'), +('69.90.83.96', '69.90.83.127', 1163547488, 1163547519, 'US', 'United States'), +('69.90.83.128', '69.90.83.135', 1163547520, 1163547527, 'CA', 'Canada'), +('69.90.83.136', '69.90.83.151', 1163547528, 1163547543, 'US', 'United States'), +('69.90.83.152', '69.90.83.159', 1163547544, 1163547551, 'CA', 'Canada'), +('69.90.83.160', '69.90.83.175', 1163547552, 1163547567, 'US', 'United States'), +('69.90.83.176', '69.90.83.191', 1163547568, 1163547583, 'VG', 'Virgin Islands, British'), +('69.90.83.192', '69.90.83.239', 1163547584, 1163547631, 'CA', 'Canada'), +('69.90.83.240', '69.90.84.255', 1163547632, 1163547903, 'US', 'United States'), +('69.90.85.0', '69.90.85.47', 1163547904, 1163547951, 'CA', 'Canada'), +('69.90.85.48', '69.90.85.95', 1163547952, 1163547999, 'US', 'United States'), +('69.90.85.96', '69.90.87.255', 1163548000, 1163548671, 'CA', 'Canada'), +('69.90.88.0', '69.90.88.255', 1163548672, 1163548927, 'US', 'United States'), +('69.90.89.0', '69.90.89.255', 1163548928, 1163549183, 'CA', 'Canada'), +('69.90.90.0', '69.90.91.255', 1163549184, 1163549695, 'US', 'United States'), +('69.90.92.0', '69.90.94.31', 1163549696, 1163550239, 'CA', 'Canada'), +('69.90.94.32', '69.90.94.47', 1163550240, 1163550255, 'US', 'United States'), +('69.90.94.48', '69.90.94.63', 1163550256, 1163550271, 'CA', 'Canada'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('69.90.94.64', '69.90.94.95', 1163550272, 1163550303, 'US', 'United States'), +('69.90.94.96', '69.90.94.159', 1163550304, 1163550367, 'CA', 'Canada'), +('69.90.94.160', '69.90.94.167', 1163550368, 1163550375, 'US', 'United States'), +('69.90.94.168', '69.90.94.175', 1163550376, 1163550383, 'CA', 'Canada'), +('69.90.94.176', '69.90.94.191', 1163550384, 1163550399, 'US', 'United States'), +('69.90.94.192', '69.90.95.127', 1163550400, 1163550591, 'CA', 'Canada'), +('69.90.95.128', '69.90.95.255', 1163550592, 1163550719, 'US', 'United States'), +('69.90.96.0', '69.90.96.63', 1163550720, 1163550783, 'CA', 'Canada'), +('69.90.96.64', '69.90.96.111', 1163550784, 1163550831, 'US', 'United States'), +('69.90.96.112', '69.90.96.127', 1163550832, 1163550847, 'CA', 'Canada'), +('69.90.96.128', '69.90.96.255', 1163550848, 1163550975, 'US', 'United States'), +('69.90.97.0', '69.90.97.95', 1163550976, 1163551071, 'CA', 'Canada'), +('69.90.97.96', '69.90.97.111', 1163551072, 1163551087, 'US', 'United States'), +('69.90.97.112', '69.90.98.191', 1163551088, 1163551423, 'CA', 'Canada'), +('69.90.98.192', '69.90.98.207', 1163551424, 1163551439, 'US', 'United States'), +('69.90.98.208', '69.90.98.223', 1163551440, 1163551455, 'CA', 'Canada'), +('69.90.98.224', '69.90.98.255', 1163551456, 1163551487, 'US', 'United States'), +('69.90.99.0', '69.90.99.175', 1163551488, 1163551663, 'CA', 'Canada'), +('69.90.99.176', '69.90.99.191', 1163551664, 1163551679, 'US', 'United States'), +('69.90.99.192', '69.90.99.207', 1163551680, 1163551695, 'CA', 'Canada'), +('69.90.99.208', '69.90.99.223', 1163551696, 1163551711, 'US', 'United States'), +('69.90.99.224', '69.90.99.239', 1163551712, 1163551727, 'CA', 'Canada'), +('69.90.99.240', '69.90.99.255', 1163551728, 1163551743, 'US', 'United States'), +('69.90.100.0', '69.90.101.255', 1163551744, 1163552255, 'CA', 'Canada'), +('69.90.102.0', '69.90.103.7', 1163552256, 1163552519, 'US', 'United States'), +('69.90.103.8', '69.90.103.15', 1163552520, 1163552527, 'CA', 'Canada'), +('69.90.103.16', '69.90.103.23', 1163552528, 1163552535, 'US', 'United States'), +('69.90.103.24', '69.90.103.31', 1163552536, 1163552543, 'CA', 'Canada'), +('69.90.103.32', '69.90.103.47', 1163552544, 1163552559, 'US', 'United States'), +('69.90.103.48', '69.90.103.63', 1163552560, 1163552575, 'CA', 'Canada'), +('69.90.103.64', '69.90.103.95', 1163552576, 1163552607, 'PA', 'Panama'), +('69.90.103.96', '69.90.103.111', 1163552608, 1163552623, 'US', 'United States'), +('69.90.103.112', '69.90.103.127', 1163552624, 1163552639, 'CA', 'Canada'), +('69.90.103.128', '69.90.103.159', 1163552640, 1163552671, 'US', 'United States'), +('69.90.103.160', '69.90.103.167', 1163552672, 1163552679, 'CA', 'Canada'), +('69.90.103.168', '69.90.103.175', 1163552680, 1163552687, 'US', 'United States'), +('69.90.103.176', '69.90.103.255', 1163552688, 1163552767, 'CA', 'Canada'), +('69.90.104.0', '69.90.106.255', 1163552768, 1163553535, 'US', 'United States'), +('69.90.107.0', '69.90.107.255', 1163553536, 1163553791, 'CA', 'Canada'), +('69.90.108.0', '69.90.108.15', 1163553792, 1163553807, 'US', 'United States'), +('69.90.108.16', '69.90.108.63', 1163553808, 1163553855, 'CA', 'Canada'), +('69.90.108.64', '69.90.108.79', 1163553856, 1163553871, 'US', 'United States'), +('69.90.108.80', '69.90.108.127', 1163553872, 1163553919, 'CA', 'Canada'), +('69.90.108.128', '69.90.108.143', 1163553920, 1163553935, 'BV', 'Bouvet Island'), +('69.90.108.144', '69.90.108.159', 1163553936, 1163553951, 'US', 'United States'), +('69.90.108.160', '69.90.110.255', 1163553952, 1163554559, 'CA', 'Canada'), +('69.90.111.0', '69.90.111.31', 1163554560, 1163554591, 'US', 'United States'), +('69.90.111.32', '69.90.111.71', 1163554592, 1163554631, 'CA', 'Canada'), +('69.90.111.72', '69.90.111.87', 1163554632, 1163554647, 'US', 'United States'), +('69.90.111.88', '69.90.111.95', 1163554648, 1163554655, 'MX', 'Mexico'), +('69.90.111.96', '69.90.111.143', 1163554656, 1163554703, 'CA', 'Canada'), +('69.90.111.144', '69.90.111.191', 1163554704, 1163554751, 'US', 'United States'), +('69.90.111.192', '69.90.111.223', 1163554752, 1163554783, 'CA', 'Canada'), +('69.90.111.224', '69.90.116.255', 1163554784, 1163556095, 'US', 'United States'), +('69.90.117.0', '69.90.118.255', 1163556096, 1163556607, 'CA', 'Canada'), +('69.90.119.0', '69.90.123.95', 1163556608, 1163557727, 'US', 'United States'), +('69.90.123.96', '69.90.123.127', 1163557728, 1163557759, 'CA', 'Canada'), +('69.90.123.128', '69.90.124.127', 1163557760, 1163558015, 'US', 'United States'), +('69.90.124.128', '69.90.124.140', 1163558016, 1163558028, 'KW', 'Kuwait'), +('69.90.124.141', '69.90.132.255', 1163558029, 1163560191, 'US', 'United States'), +('69.90.133.0', '69.90.133.255', 1163560192, 1163560447, 'CA', 'Canada'), +('69.90.134.0', '69.90.135.255', 1163560448, 1163560959, 'US', 'United States'), +('69.90.136.0', '69.90.138.255', 1163560960, 1163561727, 'CA', 'Canada'), +('69.90.139.0', '69.90.139.255', 1163561728, 1163561983, 'FI', 'Finland'), +('69.90.140.0', '69.90.140.15', 1163561984, 1163561999, 'CA', 'Canada'), +('69.90.140.16', '69.90.140.31', 1163562000, 1163562015, 'US', 'United States'), +('69.90.140.32', '69.90.140.79', 1163562016, 1163562063, 'CA', 'Canada'), +('69.90.140.80', '69.90.140.95', 1163562064, 1163562079, 'US', 'United States'), +('69.90.140.96', '69.90.140.215', 1163562080, 1163562199, 'CA', 'Canada'), +('69.90.140.216', '69.90.140.231', 1163562200, 1163562215, 'US', 'United States'), +('69.90.140.232', '69.90.140.247', 1163562216, 1163562231, 'CA', 'Canada'), +('69.90.140.248', '69.90.140.255', 1163562232, 1163562239, 'US', 'United States'), +('69.90.141.0', '69.90.143.255', 1163562240, 1163563007, 'CA', 'Canada'), +('69.90.144.0', '69.90.155.223', 1163563008, 1163566047, 'US', 'United States'), +('69.90.155.224', '69.90.155.255', 1163566048, 1163566079, 'CA', 'Canada'), +('69.90.156.0', '69.90.172.255', 1163566080, 1163570431, 'US', 'United States'), +('69.90.173.0', '69.90.173.63', 1163570432, 1163570495, 'CA', 'Canada'), +('69.90.173.64', '69.90.175.255', 1163570496, 1163571199, 'US', 'United States'), +('69.90.176.0', '69.90.177.255', 1163571200, 1163571711, 'CA', 'Canada'), +('69.90.178.0', '69.90.178.255', 1163571712, 1163571967, 'US', 'United States'), +('69.90.179.0', '69.90.179.15', 1163571968, 1163571983, 'CA', 'Canada'), +('69.90.179.16', '69.90.179.31', 1163571984, 1163571999, 'US', 'United States'), +('69.90.179.32', '69.90.179.63', 1163572000, 1163572031, 'CA', 'Canada'), +('69.90.179.64', '69.90.179.95', 1163572032, 1163572063, 'BE', 'Belgium'), +('69.90.179.96', '69.90.179.111', 1163572064, 1163572079, 'CA', 'Canada'), +('69.90.179.112', '69.90.179.119', 1163572080, 1163572087, 'US', 'United States'), +('69.90.179.120', '69.90.179.207', 1163572088, 1163572175, 'CA', 'Canada'), +('69.90.179.208', '69.90.179.215', 1163572176, 1163572183, 'US', 'United States'), +('69.90.179.216', '69.90.179.255', 1163572184, 1163572223, 'CA', 'Canada'), +('69.90.180.0', '69.90.180.255', 1163572224, 1163572479, 'US', 'United States'), +('69.90.181.0', '69.90.181.191', 1163572480, 1163572671, 'CA', 'Canada'), +('69.90.181.192', '69.90.181.199', 1163572672, 1163572679, 'US', 'United States'), +('69.90.181.200', '69.90.181.207', 1163572680, 1163572687, 'CA', 'Canada'), +('69.90.181.208', '69.90.182.255', 1163572688, 1163572991, 'US', 'United States'), +('69.90.183.0', '69.90.183.63', 1163572992, 1163573055, 'CA', 'Canada'), +('69.90.183.64', '69.90.183.95', 1163573056, 1163573087, 'US', 'United States'), +('69.90.183.96', '69.90.183.207', 1163573088, 1163573199, 'CA', 'Canada'), +('69.90.183.208', '69.90.183.223', 1163573200, 1163573215, 'US', 'United States'), +('69.90.183.224', '69.90.184.15', 1163573216, 1163573263, 'CA', 'Canada'), +('69.90.184.16', '69.90.184.191', 1163573264, 1163573439, 'US', 'United States'), +('69.90.184.192', '69.90.184.255', 1163573440, 1163573503, 'EG', 'Egypt'), +('69.90.185.0', '69.90.191.255', 1163573504, 1163575295, 'US', 'United States'), +('69.90.192.0', '69.90.197.127', 1163575296, 1163576703, 'CA', 'Canada'), +('69.90.197.128', '69.90.197.255', 1163576704, 1163576831, 'US', 'United States'), +('69.90.198.0', '69.90.198.127', 1163576832, 1163576959, 'CA', 'Canada'), +('69.90.198.128', '69.90.198.159', 1163576960, 1163576991, 'US', 'United States'), +('69.90.198.160', '69.90.198.239', 1163576992, 1163577071, 'CA', 'Canada'), +('69.90.198.240', '69.90.199.63', 1163577072, 1163577151, 'US', 'United States'), +('69.90.199.64', '69.90.199.239', 1163577152, 1163577327, 'CA', 'Canada'), +('69.90.199.240', '69.90.200.255', 1163577328, 1163577599, 'US', 'United States'), +('69.90.201.0', '69.90.201.255', 1163577600, 1163577855, 'CA', 'Canada'), +('69.90.202.0', '69.90.202.15', 1163577856, 1163577871, 'US', 'United States'), +('69.90.202.16', '69.90.202.63', 1163577872, 1163577919, 'CA', 'Canada'), +('69.90.202.64', '69.90.202.95', 1163577920, 1163577951, 'US', 'United States'), +('69.90.202.96', '69.90.202.255', 1163577952, 1163578111, 'CA', 'Canada'), +('69.90.203.0', '69.90.203.79', 1163578112, 1163578191, 'US', 'United States'), +('69.90.203.80', '69.90.203.127', 1163578192, 1163578239, 'CA', 'Canada'), +('69.90.203.128', '69.90.203.143', 1163578240, 1163578255, 'US', 'United States'), +('69.90.203.144', '69.90.203.159', 1163578256, 1163578271, 'CA', 'Canada'), +('69.90.203.160', '69.90.203.175', 1163578272, 1163578287, 'US', 'United States'), +('69.90.203.176', '69.90.203.223', 1163578288, 1163578335, 'CA', 'Canada'), +('69.90.203.224', '69.90.203.239', 1163578336, 1163578351, 'US', 'United States'), +('69.90.203.240', '69.90.205.87', 1163578352, 1163578711, 'CA', 'Canada'), +('69.90.205.88', '69.90.205.95', 1163578712, 1163578719, 'US', 'United States'), +('69.90.205.96', '69.90.206.239', 1163578720, 1163579119, 'CA', 'Canada'), +('69.90.206.240', '69.90.206.247', 1163579120, 1163579127, 'US', 'United States'), +('69.90.206.248', '69.90.207.255', 1163579128, 1163579391, 'CA', 'Canada'), +('69.90.208.0', '69.90.208.127', 1163579392, 1163579519, 'US', 'United States'), +('69.90.208.128', '69.90.208.255', 1163579520, 1163579647, 'CA', 'Canada'), +('69.90.209.0', '69.90.209.223', 1163579648, 1163579871, 'US', 'United States'), +('69.90.209.224', '69.90.209.255', 1163579872, 1163579903, 'CA', 'Canada'), +('69.90.210.0', '69.90.213.255', 1163579904, 1163580927, 'US', 'United States'), +('69.90.214.0', '69.90.214.255', 1163580928, 1163581183, 'CA', 'Canada'), +('69.90.215.0', '69.90.215.255', 1163581184, 1163581439, 'US', 'United States'), +('69.90.216.0', '69.90.216.63', 1163581440, 1163581503, 'CA', 'Canada'), +('69.90.216.64', '69.90.216.143', 1163581504, 1163581583, 'US', 'United States'), +('69.90.216.144', '69.90.216.151', 1163581584, 1163581591, 'CA', 'Canada'), +('69.90.216.152', '69.90.216.175', 1163581592, 1163581615, 'US', 'United States'), +('69.90.216.176', '69.90.216.191', 1163581616, 1163581631, 'CA', 'Canada'), +('69.90.216.192', '69.90.216.255', 1163581632, 1163581695, 'US', 'United States'), +('69.90.217.0', '69.90.218.159', 1163581696, 1163582111, 'CA', 'Canada'), +('69.90.218.160', '69.90.218.175', 1163582112, 1163582127, 'US', 'United States'), +('69.90.218.176', '69.90.218.207', 1163582128, 1163582159, 'CA', 'Canada'), +('69.90.218.208', '69.90.218.215', 1163582160, 1163582167, 'FI', 'Finland'), +('69.90.218.216', '69.90.218.231', 1163582168, 1163582183, 'CA', 'Canada'), +('69.90.218.232', '69.90.218.239', 1163582184, 1163582191, 'US', 'United States'), +('69.90.218.240', '69.90.223.255', 1163582192, 1163583487, 'CA', 'Canada'), +('69.90.224.0', '69.90.233.63', 1163583488, 1163585855, 'US', 'United States'), +('69.90.233.64', '69.90.233.95', 1163585856, 1163585887, 'CA', 'Canada'), +('69.90.233.96', '69.90.233.97', 1163585888, 1163585889, 'US', 'United States'), +('69.90.233.98', '69.90.233.113', 1163585890, 1163585905, 'GB', 'United Kingdom'), +('69.90.233.114', '69.90.240.255', 1163585906, 1163587839, 'US', 'United States'), +('69.90.241.0', '69.90.241.255', 1163587840, 1163588095, 'CA', 'Canada'), +('69.90.242.0', '69.90.242.15', 1163588096, 1163588111, 'US', 'United States'), +('69.90.242.16', '69.90.242.63', 1163588112, 1163588159, 'CA', 'Canada'), +('69.90.242.64', '69.90.242.103', 1163588160, 1163588199, 'US', 'United States'), +('69.90.242.104', '69.90.242.111', 1163588200, 1163588207, 'DM', 'Dominica'), +('69.90.242.112', '69.90.242.119', 1163588208, 1163588215, 'CA', 'Canada'), +('69.90.242.120', '69.90.242.127', 1163588216, 1163588223, 'US', 'United States'), +('69.90.242.128', '69.90.243.255', 1163588224, 1163588607, 'CA', 'Canada'), +('69.90.244.0', '69.90.244.0', 1163588608, 1163588608, 'US', 'United States'), +('69.90.244.1', '69.90.244.47', 1163588609, 1163588655, 'CA', 'Canada'), +('69.90.244.48', '69.90.244.63', 1163588656, 1163588671, 'US', 'United States'), +('69.90.244.64', '69.90.244.95', 1163588672, 1163588703, 'CA', 'Canada'), +('69.90.244.96', '69.90.244.103', 1163588704, 1163588711, 'US', 'United States'), +('69.90.244.104', '69.90.244.119', 1163588712, 1163588727, 'CA', 'Canada'), +('69.90.244.120', '69.90.244.255', 1163588728, 1163588863, 'US', 'United States'), +('69.90.245.0', '69.90.247.255', 1163588864, 1163589631, 'CA', 'Canada'), +('69.90.248.0', '69.95.65.111', 1163589632, 1163870575, 'US', 'United States'), +('69.95.65.112', '69.95.65.119', 1163870576, 1163870583, 'CN', 'China'), +('69.95.65.120', '69.95.88.119', 1163870584, 1163876471, 'US', 'United States'), +('69.95.88.120', '69.95.88.127', 1163876472, 1163876479, 'PA', 'Panama'), +('69.95.88.128', '69.95.95.255', 1163876480, 1163878399, 'US', 'United States'), +('69.95.96.0', '69.95.96.7', 1163878400, 1163878407, 'CN', 'China'), +('69.95.96.8', '69.147.191.255', 1163878408, 1167310847, 'US', 'United States'), +('69.147.224.0', '69.147.235.103', 1167319040, 1167321959, 'US', 'United States'), +('69.147.235.104', '69.147.235.111', 1167321960, 1167321967, 'GB', 'United Kingdom'), +('69.147.235.112', '69.153.149.143', 1167321968, 1167693199, 'US', 'United States'), +('69.153.149.144', '69.153.149.159', 1167693200, 1167693215, 'UA', 'Ukraine'), +('69.153.149.160', '69.155.255.255', 1167693216, 1167851519, 'US', 'United States'), +('69.156.0.0', '69.159.255.255', 1167851520, 1168113663, 'CA', 'Canada'), +('69.160.0.0', '69.161.127.255', 1168113664, 1168211967, 'US', 'United States'), +('69.161.128.0', '69.161.159.255', 1168211968, 1168220159, 'CA', 'Canada'), +('69.161.192.0', '69.161.223.255', 1168228352, 1168236543, 'US', 'United States'), +('69.162.0.0', '69.164.255.255', 1168244736, 1168441343, 'US', 'United States'), +('69.165.64.0', '69.165.127.255', 1168457728, 1168474111, 'US', 'United States'), +('69.165.128.0', '69.165.191.255', 1168474112, 1168490495, 'CA', 'Canada'), +('69.166.0.0', '69.168.127.255', 1168506880, 1168670719, 'US', 'United States'), +('69.168.128.0', '69.168.191.255', 1168670720, 1168687103, 'CA', 'Canada'), +('69.168.192.0', '69.171.95.255', 1168687104, 1168859135, 'US', 'United States'), +('69.171.96.0', '69.171.111.255', 1168859136, 1168863231, 'CA', 'Canada'), +('69.171.112.0', '69.171.127.255', 1168863232, 1168867327, 'US', 'United States'), +('69.171.128.0', '69.171.159.255', 1168867328, 1168875519, 'CA', 'Canada'), +('69.171.160.0', '69.171.207.255', 1168875520, 1168887807, 'US', 'United States'), +('69.172.0.0', '69.172.31.255', 1168900096, 1168908287, 'US', 'United States'), +('69.172.64.0', '69.172.127.255', 1168916480, 1168932863, 'CA', 'Canada'), +('69.172.128.0', '69.176.159.255', 1168932864, 1169203199, 'US', 'United States'), +('69.176.160.0', '69.176.191.255', 1169203200, 1169211391, 'CA', 'Canada'), +('69.176.192.0', '69.195.255.255', 1169211392, 1170472959, 'US', 'United States'), +('69.196.0.0', '69.196.31.255', 1170472960, 1170481151, 'CA', 'Canada'), +('69.196.32.0', '69.196.63.255', 1170481152, 1170489343, 'US', 'United States'), +('69.196.64.0', '69.196.95.255', 1170489344, 1170497535, 'CA', 'Canada'), +('69.196.96.0', '69.196.127.255', 1170497536, 1170505727, 'US', 'United States'), +('69.196.128.0', '69.196.191.255', 1170505728, 1170522111, 'CA', 'Canada'), +('69.196.192.0', '70.23.255.255', 1170522112, 1175977983, 'US', 'United States'), +('70.24.0.0', '70.25.96.71', 1175977984, 1176068167, 'CA', 'Canada'), +('70.25.96.72', '70.25.96.79', 1176068168, 1176068175, 'US', 'United States'), +('70.25.96.80', '70.25.96.95', 1176068176, 1176068191, 'CA', 'Canada'), +('70.25.96.96', '70.25.96.111', 1176068192, 1176068207, 'US', 'United States'), +('70.25.96.112', '70.25.224.199', 1176068208, 1176101063, 'CA', 'Canada'), +('70.25.224.200', '70.25.224.207', 1176101064, 1176101071, 'US', 'United States'), +('70.25.224.208', '70.31.255.255', 1176101072, 1176502271, 'CA', 'Canada'), +('70.32.0.0', '70.33.207.255', 1176502272, 1176621055, 'US', 'United States'), +('70.33.208.0', '70.33.208.255', 1176621056, 1176621311, 'CA', 'Canada'), +('70.33.209.0', '70.33.216.127', 1176621312, 1176623231, 'US', 'United States'), +('70.33.216.128', '70.33.216.255', 1176623232, 1176623359, 'CA', 'Canada'), +('70.33.217.0', '70.33.217.127', 1176623360, 1176623487, 'US', 'United States'), +('70.33.217.128', '70.33.217.191', 1176623488, 1176623551, 'CA', 'Canada'), +('70.33.217.192', '70.33.218.255', 1176623552, 1176623871, 'US', 'United States'), +('70.33.219.0', '70.33.240.47', 1176623872, 1176629295, 'CA', 'Canada'), +('70.33.240.48', '70.33.241.63', 1176629296, 1176629567, 'US', 'United States'), +('70.33.241.64', '70.33.241.191', 1176629568, 1176629695, 'CA', 'Canada'), +('70.33.241.192', '70.33.241.223', 1176629696, 1176629727, 'US', 'United States'), +('70.33.241.224', '70.33.246.255', 1176629728, 1176631039, 'CA', 'Canada'), +('70.33.247.0', '70.33.255.255', 1176631040, 1176633343, 'US', 'United States'), +('70.34.128.0', '70.35.15.255', 1176666112, 1176702975, 'US', 'United States'), +('70.35.16.0', '70.35.31.255', 1176702976, 1176707071, 'CA', 'Canada'), +('70.35.32.0', '70.35.127.255', 1176707072, 1176731647, 'US', 'United States'), +('70.35.128.0', '70.35.143.255', 1176731648, 1176735743, 'PR', 'Puerto Rico'), +('70.35.192.0', '70.35.255.255', 1176748032, 1176764415, 'US', 'United States'), +('70.36.0.0', '70.36.15.255', 1176764416, 1176768511, 'PM', 'Saint Pierre and Miquelon'), +('70.36.32.0', '70.36.47.255', 1176772608, 1176776703, 'US', 'United States'), +('70.36.64.0', '70.37.255.255', 1176780800, 1176895487, 'US', 'United States'), +('70.38.0.0', '70.38.4.7', 1176895488, 1176896519, 'CA', 'Canada'), +('70.38.4.8', '70.38.4.15', 1176896520, 1176896527, 'MX', 'Mexico'), +('70.38.4.16', '70.38.4.31', 1176896528, 1176896543, 'CA', 'Canada'), +('70.38.4.32', '70.38.4.39', 1176896544, 1176896551, 'MX', 'Mexico'), +('70.38.4.40', '70.38.6.23', 1176896552, 1176897047, 'CA', 'Canada'), +('70.38.6.24', '70.38.6.31', 1176897048, 1176897055, 'US', 'United States'), +('70.38.6.32', '70.38.14.79', 1176897056, 1176899151, 'CA', 'Canada'), +('70.38.14.80', '70.38.14.87', 1176899152, 1176899159, 'KZ', 'Kazakstan'), +('70.38.14.88', '70.38.49.191', 1176899160, 1176908223, 'CA', 'Canada'), +('70.38.49.192', '70.38.49.199', 1176908224, 1176908231, 'MX', 'Mexico'), +('70.38.49.200', '70.38.55.103', 1176908232, 1176909671, 'CA', 'Canada'), +('70.38.55.104', '70.38.55.111', 1176909672, 1176909679, 'US', 'United States'), +('70.38.55.112', '70.38.115.79', 1176909680, 1176925007, 'CA', 'Canada'), +('70.38.115.80', '70.38.115.87', 1176925008, 1176925015, 'NG', 'Nigeria'), +('70.38.115.88', '70.38.127.255', 1176925016, 1176928255, 'CA', 'Canada'), +('70.38.128.0', '70.39.31.255', 1176928256, 1176969215, 'US', 'United States'), +('70.40.0.0', '70.40.127.255', 1177026560, 1177059327, 'US', 'United States'), +('70.40.128.0', '70.40.136.255', 1177059328, 1177061631, 'CA', 'Canada'), +('70.40.137.0', '70.40.143.255', 1177061632, 1177063423, 'US', 'United States'), +('70.40.144.0', '70.40.159.255', 1177063424, 1177067519, 'CA', 'Canada'), +('70.40.160.0', '70.42.26.127', 1177067520, 1177164415, 'US', 'United States'), +('70.42.26.128', '70.42.26.191', 1177164416, 1177164479, 'CA', 'Canada'), +('70.42.26.192', '70.42.26.223', 1177164480, 1177164511, 'US', 'United States'), +('70.42.26.224', '70.42.26.255', 1177164512, 1177164543, 'CA', 'Canada'), +('70.42.27.0', '70.42.28.127', 1177164544, 1177164927, 'US', 'United States'), +('70.42.28.128', '70.42.28.143', 1177164928, 1177164943, 'CA', 'Canada'), +('70.42.28.144', '70.42.29.255', 1177164944, 1177165311, 'US', 'United States'), +('70.42.30.0', '70.42.31.255', 1177165312, 1177165823, 'CA', 'Canada'), +('70.42.32.0', '70.42.40.255', 1177165824, 1177168127, 'US', 'United States'), +('70.42.41.0', '70.42.41.15', 1177168128, 1177168143, 'FR', 'France'), +('70.42.41.16', '70.42.47.23', 1177168144, 1177169687, 'US', 'United States'), +('70.42.47.24', '70.42.47.31', 1177169688, 1177169695, 'GB', 'United Kingdom'), +('70.42.47.32', '70.42.68.159', 1177169696, 1177175199, 'US', 'United States'), +('70.42.68.160', '70.42.68.191', 1177175200, 1177175231, 'CZ', 'Czech Republic'), +('70.42.68.192', '70.42.97.63', 1177175232, 1177182527, 'US', 'United States'), +('70.42.97.64', '70.42.97.127', 1177182528, 1177182591, 'CA', 'Canada'), +('70.42.97.128', '70.42.117.79', 1177182592, 1177187663, 'US', 'United States'), +('70.42.117.80', '70.42.117.87', 1177187664, 1177187671, 'GB', 'United Kingdom'), +('70.42.117.88', '70.42.208.103', 1177187672, 1177210983, 'US', 'United States'), +('70.42.208.104', '70.42.208.127', 1177210984, 1177211007, 'FR', 'France'), +('70.42.208.128', '70.42.221.127', 1177211008, 1177214335, 'US', 'United States'), +('70.42.221.128', '70.42.221.191', 1177214336, 1177214399, 'IL', 'Israel'), +('70.42.221.192', '70.44.255.255', 1177214400, 1177354239, 'US', 'United States'), +('70.45.0.0', '70.45.255.255', 1177354240, 1177419775, 'PR', 'Puerto Rico'), +('70.46.0.0', '70.47.255.255', 1177419776, 1177550847, 'US', 'United States'), +('70.48.0.0', '70.55.255.255', 1177550848, 1178075135, 'CA', 'Canada'), +('70.56.0.0', '70.63.255.255', 1178075136, 1178599423, 'US', 'United States'), +('70.64.0.0', '70.83.255.255', 1178599424, 1179910143, 'CA', 'Canada'), +('70.84.0.0', '70.158.179.255', 1179910144, 1184805887, 'US', 'United States'), +('70.158.180.0', '70.158.180.127', 1184805888, 1184806015, 'A2', 'Satellite Provider'), +('70.158.180.128', '70.158.199.255', 1184806016, 1184811007, 'US', 'United States'), +('70.158.200.0', '70.158.200.255', 1184811008, 1184811263, 'A2', 'Satellite Provider'), +('70.158.201.0', '70.159.15.255', 1184811264, 1184829439, 'US', 'United States'), +('70.159.16.0', '70.159.16.255', 1184829440, 1184829695, 'A2', 'Satellite Provider'), +('70.159.17.0', '70.224.176.207', 1184829696, 1189130447, 'US', 'United States'), +('70.224.176.208', '70.224.176.223', 1189130448, 1189130463, 'IN', 'India'), +('70.224.176.224', '70.240.141.255', 1189130464, 1190170111, 'US', 'United States'), +('70.240.142.0', '70.240.142.15', 1190170112, 1190170127, 'UY', 'Uruguay'), +('70.240.142.16', '70.252.247.31', 1190170128, 1190983455, 'US', 'United States'), +('70.252.247.32', '70.252.247.63', 1190983456, 1190983487, 'UA', 'Ukraine'), +('70.252.247.64', '71.7.127.255', 1190983488, 1191673855, 'US', 'United States'), +('71.7.128.0', '71.7.255.255', 1191673856, 1191706623, 'CA', 'Canada'), +('71.8.0.0', '71.16.255.255', 1191706624, 1192296447, 'US', 'United States'), +('71.17.0.0', '71.17.255.255', 1192296448, 1192361983, 'CA', 'Canada'), +('71.18.0.0', '71.18.255.255', 1192361984, 1192427519, 'US', 'United States'), +('71.19.0.0', '71.19.127.255', 1192427520, 1192460287, 'CA', 'Canada'), +('71.19.128.0', '72.0.63.255', 1192460288, 1207975935, 'US', 'United States'), +('72.0.64.0', '72.0.79.255', 1207975936, 1207980031, 'CA', 'Canada'), +('72.0.80.0', '72.0.191.255', 1207980032, 1208008703, 'US', 'United States'), +('72.0.192.0', '72.0.223.255', 1208008704, 1208016895, 'CA', 'Canada'), +('72.0.224.0', '72.0.239.255', 1208016896, 1208020991, 'US', 'United States'), +('72.0.240.0', '72.0.255.255', 1208020992, 1208025087, 'CA', 'Canada'), +('72.1.0.0', '72.1.100.255', 1208025088, 1208050943, 'US', 'United States'), +('72.1.101.0', '72.1.101.255', 1208050944, 1208051199, 'CA', 'Canada'), +('72.1.102.0', '72.1.113.255', 1208051200, 1208054271, 'US', 'United States'), +('72.1.114.0', '72.1.114.255', 1208054272, 1208054527, 'CA', 'Canada'), +('72.1.115.0', '72.1.191.255', 1208054528, 1208074239, 'US', 'United States'), +('72.1.192.0', '72.1.208.191', 1208074240, 1208078527, 'CA', 'Canada'), +('72.1.208.192', '72.1.208.255', 1208078528, 1208078591, 'US', 'United States'), +('72.1.209.0', '72.1.210.255', 1208078592, 1208079103, 'CA', 'Canada'), +('72.1.211.0', '72.1.211.63', 1208079104, 1208079167, 'US', 'United States'), +('72.1.211.64', '72.1.223.255', 1208079168, 1208082431, 'CA', 'Canada'), +('72.1.224.0', '72.1.255.255', 1208082432, 1208090623, 'US', 'United States'), +('72.2.0.0', '72.2.63.255', 1208090624, 1208107007, 'CA', 'Canada'), +('72.2.64.0', '72.5.180.255', 1208107008, 1208333567, 'US', 'United States'), +('72.5.181.0', '72.5.181.255', 1208333568, 1208333823, 'GB', 'United Kingdom'), +('72.5.182.0', '72.5.197.255', 1208333824, 1208337919, 'US', 'United States'), +('72.5.198.0', '72.5.198.255', 1208337920, 1208338175, 'A2', 'Satellite Provider'), +('72.5.199.0', '72.9.146.167', 1208338176, 1208586919, 'US', 'United States'), +('72.9.146.168', '72.9.146.175', 1208586920, 1208586927, 'AF', 'Afghanistan'), +('72.9.146.176', '72.9.152.139', 1208586928, 1208588427, 'US', 'United States'), +('72.9.152.140', '72.9.152.147', 1208588428, 1208588435, 'MO', 'Macau'), +('72.9.152.148', '72.9.152.149', 1208588436, 1208588437, 'US', 'United States'), +('72.9.152.150', '72.9.152.157', 1208588438, 1208588445, 'PK', 'Pakistan'), +('72.9.152.158', '72.9.152.163', 1208588446, 1208588451, 'US', 'United States'), +('72.9.152.164', '72.9.152.171', 1208588452, 1208588459, 'EG', 'Egypt'), +('72.9.152.172', '72.9.154.141', 1208588460, 1208588941, 'US', 'United States'), +('72.9.154.142', '72.9.154.149', 1208588942, 1208588949, 'MO', 'Macau'), +('72.9.154.150', '72.9.154.211', 1208588950, 1208589011, 'US', 'United States'), +('72.9.154.212', '72.9.154.221', 1208589012, 1208589021, 'MO', 'Macau'), +('72.9.154.222', '72.9.158.221', 1208589022, 1208590045, 'US', 'United States'), +('72.9.158.222', '72.9.158.229', 1208590046, 1208590053, 'SA', 'Saudi Arabia'), +('72.9.158.230', '72.9.159.255', 1208590054, 1208590335, 'US', 'United States'), +('72.9.160.0', '72.9.191.255', 1208590336, 1208598527, 'CA', 'Canada'), +('72.9.192.0', '72.10.127.255', 1208598528, 1208647679, 'US', 'United States'), +('72.10.128.0', '72.10.161.31', 1208647680, 1208656159, 'CA', 'Canada'), +('72.10.161.32', '72.10.161.63', 1208656160, 1208656191, 'US', 'United States'), +('72.10.161.64', '72.10.161.95', 1208656192, 1208656223, 'CA', 'Canada'), +('72.10.161.96', '72.10.161.127', 1208656224, 1208656255, 'US', 'United States'), +('72.10.161.128', '72.10.161.191', 1208656256, 1208656319, 'CA', 'Canada'), +('72.10.161.192', '72.10.161.223', 1208656320, 1208656351, 'US', 'United States'), +('72.10.161.224', '72.10.161.255', 1208656352, 1208656383, 'CA', 'Canada'), +('72.10.162.0', '72.10.162.127', 1208656384, 1208656511, 'ID', 'Indonesia'), +('72.10.162.128', '72.10.162.159', 1208656512, 1208656543, 'US', 'United States'), +('72.10.162.160', '72.10.162.191', 1208656544, 1208656575, 'CA', 'Canada'), +('72.10.162.192', '72.10.162.199', 1208656576, 1208656583, 'DO', 'Dominican Republic'), +('72.10.162.200', '72.10.162.207', 1208656584, 1208656591, 'PA', 'Panama'), +('72.10.162.208', '72.10.162.215', 1208656592, 1208656599, 'RS', 'Serbia'), +('72.10.162.216', '72.10.162.223', 1208656600, 1208656607, 'UA', 'Ukraine'), +('72.10.162.224', '72.10.162.255', 1208656608, 1208656639, 'US', 'United States'), +('72.10.163.0', '72.10.163.63', 1208656640, 1208656703, 'ID', 'Indonesia'), +('72.10.163.64', '72.10.163.71', 1208656704, 1208656711, 'UA', 'Ukraine'), +('72.10.163.72', '72.10.163.95', 1208656712, 1208656735, 'CA', 'Canada'), +('72.10.163.96', '72.10.163.127', 1208656736, 1208656767, 'US', 'United States'), +('72.10.163.128', '72.10.163.255', 1208656768, 1208656895, 'ID', 'Indonesia'), +('72.10.164.0', '72.10.164.191', 1208656896, 1208657087, 'CA', 'Canada'), +('72.10.164.192', '72.10.164.207', 1208657088, 1208657103, 'MA', 'Morocco'), +('72.10.164.208', '72.10.164.215', 1208657104, 1208657111, 'CA', 'Canada'), +('72.10.164.216', '72.10.164.223', 1208657112, 1208657119, 'MA', 'Morocco'), +('72.10.164.224', '72.10.164.243', 1208657120, 1208657139, 'CA', 'Canada'), +('72.10.164.244', '72.10.164.247', 1208657140, 1208657143, 'SE', 'Sweden'), +('72.10.164.248', '72.10.166.7', 1208657144, 1208657415, 'CA', 'Canada'), +('72.10.166.8', '72.10.166.15', 1208657416, 1208657423, 'CH', 'Switzerland'), +('72.10.166.16', '72.10.166.111', 1208657424, 1208657519, 'CA', 'Canada'), +('72.10.166.112', '72.10.166.119', 1208657520, 1208657527, 'MA', 'Morocco'), +('72.10.166.120', '72.10.166.123', 1208657528, 1208657531, 'PA', 'Panama'), +('72.10.166.124', '72.10.166.127', 1208657532, 1208657535, 'CA', 'Canada'), +('72.10.166.128', '72.10.166.135', 1208657536, 1208657543, 'SE', 'Sweden'), +('72.10.166.136', '72.10.167.55', 1208657544, 1208657719, 'CA', 'Canada'), +('72.10.167.56', '72.10.167.63', 1208657720, 1208657727, 'CH', 'Switzerland'), +('72.10.167.64', '72.10.167.111', 1208657728, 1208657775, 'CA', 'Canada'), +('72.10.167.112', '72.10.167.119', 1208657776, 1208657783, 'PA', 'Panama'), +('72.10.167.120', '72.10.167.159', 1208657784, 1208657823, 'CA', 'Canada'), +('72.10.167.160', '72.10.167.167', 1208657824, 1208657831, 'DO', 'Dominican Republic'), +('72.10.167.168', '72.10.167.191', 1208657832, 1208657855, 'CA', 'Canada'), +('72.10.167.192', '72.10.167.207', 1208657856, 1208657871, 'PA', 'Panama'), +('72.10.167.208', '72.10.167.255', 1208657872, 1208657919, 'CA', 'Canada'), +('72.10.168.0', '72.10.168.55', 1208657920, 1208657975, 'MA', 'Morocco'), +('72.10.168.56', '72.10.168.63', 1208657976, 1208657983, 'CA', 'Canada'), +('72.10.168.64', '72.10.168.95', 1208657984, 1208658015, 'MA', 'Morocco'), +('72.10.168.96', '72.10.168.103', 1208658016, 1208658023, 'CA', 'Canada'), +('72.10.168.104', '72.10.168.111', 1208658024, 1208658031, 'DO', 'Dominican Republic'), +('72.10.168.112', '72.10.168.119', 1208658032, 1208658039, 'MA', 'Morocco'), +('72.10.168.120', '72.10.168.127', 1208658040, 1208658047, 'CA', 'Canada'), +('72.10.168.128', '72.10.168.159', 1208658048, 1208658079, 'US', 'United States'), +('72.10.168.160', '72.10.168.183', 1208658080, 1208658103, 'CA', 'Canada'), +('72.10.168.184', '72.10.168.191', 1208658104, 1208658111, 'FR', 'France'), +('72.10.168.192', '72.10.168.199', 1208658112, 1208658119, 'DO', 'Dominican Republic'), +('72.10.168.200', '72.10.168.207', 1208658120, 1208658127, 'CA', 'Canada'), +('72.10.168.208', '72.10.168.223', 1208658128, 1208658143, 'MA', 'Morocco'), +('72.10.168.224', '72.10.168.239', 1208658144, 1208658159, 'CA', 'Canada'), +('72.10.168.240', '72.10.168.247', 1208658160, 1208658167, 'MA', 'Morocco'), +('72.10.168.248', '72.10.168.255', 1208658168, 1208658175, 'CA', 'Canada'), +('72.10.169.0', '72.10.169.23', 1208658176, 1208658199, 'MA', 'Morocco'), +('72.10.169.24', '72.10.169.47', 1208658200, 1208658223, 'CA', 'Canada'), +('72.10.169.48', '72.10.169.63', 1208658224, 1208658239, 'MA', 'Morocco'), +('72.10.169.64', '72.10.169.71', 1208658240, 1208658247, 'CY', 'Cyprus'), +('72.10.169.72', '72.10.169.87', 1208658248, 1208658263, 'CA', 'Canada'), +('72.10.169.88', '72.10.169.95', 1208658264, 1208658271, 'KE', 'Kenya'), +('72.10.169.96', '72.10.169.103', 1208658272, 1208658279, 'IL', 'Israel'), +('72.10.169.104', '72.10.169.127', 1208658280, 1208658303, 'CA', 'Canada'), +('72.10.169.128', '72.10.169.159', 1208658304, 1208658335, 'US', 'United States'), +('72.10.169.160', '72.10.169.167', 1208658336, 1208658343, 'KE', 'Kenya'), +('72.10.169.168', '72.10.169.175', 1208658344, 1208658351, 'CA', 'Canada'), +('72.10.169.176', '72.10.169.191', 1208658352, 1208658367, 'US', 'United States'), +('72.10.169.192', '72.10.169.255', 1208658368, 1208658431, 'CA', 'Canada'), +('72.10.170.0', '72.10.171.79', 1208658432, 1208658767, 'US', 'United States'), +('72.10.171.80', '72.10.171.87', 1208658768, 1208658775, 'MA', 'Morocco'), +('72.10.171.88', '72.10.171.95', 1208658776, 1208658783, 'UA', 'Ukraine'), +('72.10.171.96', '72.10.171.111', 1208658784, 1208658799, 'CA', 'Canada'), +('72.10.171.112', '72.10.171.119', 1208658800, 1208658807, 'KE', 'Kenya'), +('72.10.171.120', '72.10.171.127', 1208658808, 1208658815, 'RS', 'Serbia'), +('72.10.171.128', '72.10.171.159', 1208658816, 1208658847, 'CA', 'Canada'), +('72.10.171.160', '72.10.171.167', 1208658848, 1208658855, 'MA', 'Morocco'), +('72.10.171.168', '72.10.171.191', 1208658856, 1208658879, 'CA', 'Canada'), +('72.10.171.192', '72.10.171.199', 1208658880, 1208658887, 'DO', 'Dominican Republic'), +('72.10.171.200', '72.10.171.207', 1208658888, 1208658895, 'GB', 'United Kingdom'), +('72.10.171.208', '72.10.172.159', 1208658896, 1208659103, 'CA', 'Canada'), +('72.10.172.160', '72.10.172.191', 1208659104, 1208659135, 'US', 'United States'), +('72.10.172.192', '72.10.172.223', 1208659136, 1208659167, 'CA', 'Canada'), +('72.10.172.224', '72.10.172.255', 1208659168, 1208659199, 'AE', 'United Arab Emirates'), +('72.10.173.0', '72.10.173.127', 1208659200, 1208659327, 'CA', 'Canada'), +('72.10.173.128', '72.10.173.159', 1208659328, 1208659359, 'US', 'United States'), +('72.10.173.160', '72.10.173.191', 1208659360, 1208659391, 'CA', 'Canada'), +('72.10.173.192', '72.10.173.199', 1208659392, 1208659399, 'CN', 'China'), +('72.10.173.200', '72.10.173.223', 1208659400, 1208659423, 'CA', 'Canada'), +('72.10.173.224', '72.10.173.255', 1208659424, 1208659455, 'US', 'United States'), +('72.10.174.0', '72.10.174.63', 1208659456, 1208659519, 'PK', 'Pakistan'), +('72.10.174.64', '72.10.174.95', 1208659520, 1208659551, 'US', 'United States'), +('72.10.174.96', '72.10.174.127', 1208659552, 1208659583, 'CA', 'Canada'), +('72.10.174.128', '72.10.174.191', 1208659584, 1208659647, 'AE', 'United Arab Emirates'), +('72.10.174.192', '72.10.174.255', 1208659648, 1208659711, 'ID', 'Indonesia'), +('72.10.175.0', '72.10.175.31', 1208659712, 1208659743, 'CA', 'Canada'), +('72.10.175.32', '72.10.175.63', 1208659744, 1208659775, 'ID', 'Indonesia'), +('72.10.175.64', '72.10.175.79', 1208659776, 1208659791, 'CA', 'Canada'), +('72.10.175.80', '72.10.175.87', 1208659792, 1208659799, 'US', 'United States'), +('72.10.175.88', '72.10.175.103', 1208659800, 1208659815, 'CA', 'Canada'), +('72.10.175.104', '72.10.175.111', 1208659816, 1208659823, 'UA', 'Ukraine'), +('72.10.175.112', '72.10.175.119', 1208659824, 1208659831, 'CA', 'Canada'), +('72.10.175.120', '72.10.175.127', 1208659832, 1208659839, 'ID', 'Indonesia'), +('72.10.175.128', '72.10.175.191', 1208659840, 1208659903, 'PK', 'Pakistan'), +('72.10.175.192', '72.11.159.255', 1208659904, 1208721407, 'US', 'United States'), +('72.11.160.0', '72.11.191.255', 1208721408, 1208729599, 'CA', 'Canada'), +('72.11.192.0', '72.12.95.255', 1208729600, 1208770559, 'US', 'United States'), +('72.12.96.0', '72.12.111.255', 1208770560, 1208774655, 'CA', 'Canada'), +('72.12.112.0', '72.12.127.255', 1208774656, 1208778751, 'US', 'United States'), +('72.12.128.0', '72.12.191.255', 1208778752, 1208795135, 'CA', 'Canada'), +('72.12.192.0', '72.13.5.95', 1208795136, 1208812895, 'US', 'United States'), +('72.13.5.96', '72.13.5.127', 1208812896, 1208812927, 'CA', 'Canada'), +('72.13.5.128', '72.13.159.255', 1208812928, 1208852479, 'US', 'United States'), +('72.13.160.0', '72.13.191.255', 1208852480, 1208860671, 'CA', 'Canada'), +('72.13.192.0', '72.14.159.255', 1208860672, 1208918015, 'US', 'United States'), +('72.14.160.0', '72.14.175.255', 1208918016, 1208922111, 'CA', 'Canada'), +('72.14.176.0', '72.15.47.255', 1208922112, 1208954879, 'US', 'United States'), +('72.15.48.0', '72.15.63.255', 1208954880, 1208958975, 'CA', 'Canada'), +('72.15.64.0', '72.15.127.255', 1208958976, 1208975359, 'US', 'United States'), +('72.15.128.0', '72.15.145.95', 1208975360, 1208979807, 'CA', 'Canada'), +('72.15.145.96', '72.15.145.127', 1208979808, 1208979839, 'AG', 'Antigua and Barbuda'), +('72.15.145.128', '72.15.146.223', 1208979840, 1208980191, 'CA', 'Canada'), +('72.15.146.224', '72.15.146.255', 1208980192, 1208980223, 'US', 'United States'), +('72.15.147.0', '72.15.159.255', 1208980224, 1208983551, 'CA', 'Canada'), +('72.15.160.0', '72.15.192.31', 1208983552, 1208991775, 'US', 'United States'), +('72.15.192.32', '72.15.192.47', 1208991776, 1208991791, 'GB', 'United Kingdom'), +('72.15.192.48', '72.15.206.127', 1208991792, 1208995455, 'US', 'United States'), +('72.15.206.128', '72.15.206.143', 1208995456, 1208995471, 'CA', 'Canada'), +('72.15.206.144', '72.15.243.63', 1208995472, 1209004863, 'US', 'United States'), +('72.15.243.64', '72.15.243.127', 1209004864, 1209004927, 'GB', 'United Kingdom'), +('72.15.243.128', '72.18.195.188', 1209004928, 1209189308, 'US', 'United States'), +('72.18.195.189', '72.18.195.254', 1209189309, 1209189374, 'ES', 'Spain'), +('72.18.195.255', '72.18.196.255', 1209189375, 1209189631, 'US', 'United States'), +('72.18.197.0', '72.18.197.255', 1209189632, 1209189887, 'MX', 'Mexico'), +('72.18.198.0', '72.18.199.23', 1209189888, 1209190167, 'US', 'United States'), +('72.18.199.24', '72.18.199.51', 1209190168, 1209190195, 'GR', 'Greece'), +('72.18.199.52', '72.18.201.255', 1209190196, 1209190911, 'US', 'United States'), +('72.18.202.0', '72.18.202.255', 1209190912, 1209191167, 'MX', 'Mexico'), +('72.18.203.0', '72.21.46.255', 1209191168, 1209347839, 'US', 'United States'), +('72.21.47.0', '72.21.47.255', 1209347840, 1209348095, 'GB', 'United Kingdom'), +('72.21.48.0', '72.21.83.159', 1209348096, 1209357215, 'US', 'United States'), +('72.21.83.160', '72.21.83.175', 1209357216, 1209357231, 'SI', 'Slovenia'), +('72.21.83.176', '72.21.89.159', 1209357232, 1209358751, 'US', 'United States'), +('72.21.89.160', '72.21.89.175', 1209358752, 1209358767, 'SI', 'Slovenia'), +('72.21.89.176', '72.21.89.231', 1209358768, 1209358823, 'US', 'United States'), +('72.21.89.232', '72.21.89.239', 1209358824, 1209358831, 'CN', 'China'), +('72.21.89.240', '72.22.127.255', 1209358832, 1209434111, 'US', 'United States'), +('72.22.128.0', '72.22.137.255', 1209434112, 1209436671, 'BB', 'Barbados'), +('72.22.138.0', '72.22.139.255', 1209436672, 1209437183, 'VC', 'Saint Vincent and the Grenadines'), +('72.22.140.0', '72.22.153.255', 1209437184, 1209440767, 'BB', 'Barbados'), +('72.22.154.0', '72.22.155.255', 1209440768, 1209441279, 'GD', 'Grenada'), +('72.22.156.0', '72.22.159.255', 1209441280, 1209442303, 'BB', 'Barbados'), +('72.22.160.0', '72.25.191.255', 1209442304, 1209647103, 'US', 'United States'), +('72.25.192.0', '72.25.255.255', 1209647104, 1209663487, 'CA', 'Canada'), +('72.26.0.0', '72.26.255.255', 1209663488, 1209729023, 'US', 'United States'), +('72.27.0.0', '72.27.223.255', 1209729024, 1209786367, 'JM', 'Jamaica'), +('72.27.224.0', '72.28.63.255', 1209786368, 1209810943, 'US', 'United States'), +('72.28.64.0', '72.28.95.255', 1209810944, 1209819135, 'CA', 'Canada'), +('72.28.96.0', '72.28.255.255', 1209819136, 1209860095, 'US', 'United States'), +('72.29.0.0', '72.29.0.31', 1209860096, 1209860127, 'IN', 'India'), +('72.29.0.32', '72.29.0.63', 1209860128, 1209860159, 'BE', 'Belgium'), +('72.29.0.64', '72.29.1.95', 1209860160, 1209860447, 'US', 'United States'), +('72.29.1.96', '72.29.1.127', 1209860448, 1209860479, 'BE', 'Belgium'), +('72.29.1.128', '72.29.1.223', 1209860480, 1209860575, 'US', 'United States'), +('72.29.1.224', '72.29.1.255', 1209860576, 1209860607, 'IN', 'India'), +('72.29.2.0', '72.29.2.255', 1209860608, 1209860863, 'US', 'United States'), +('72.29.3.0', '72.29.3.31', 1209860864, 1209860895, 'CY', 'Cyprus'), +('72.29.3.32', '72.29.3.255', 1209860896, 1209861119, 'US', 'United States'), +('72.29.4.0', '72.29.4.255', 1209861120, 1209861375, 'CA', 'Canada'), +('72.29.5.0', '72.29.6.127', 1209861376, 1209861759, 'US', 'United States'), +('72.29.6.128', '72.29.6.255', 1209861760, 1209861887, 'FR', 'France'), +('72.29.7.0', '72.29.7.255', 1209861888, 1209862143, 'US', 'United States'), +('72.29.8.0', '72.29.8.255', 1209862144, 1209862399, 'CA', 'Canada'), +('72.29.9.0', '72.29.11.255', 1209862400, 1209863167, 'US', 'United States'), +('72.29.12.0', '72.29.12.255', 1209863168, 1209863423, 'CA', 'Canada'), +('72.29.13.0', '72.29.13.255', 1209863424, 1209863679, 'IN', 'India'), +('72.29.14.0', '72.29.14.255', 1209863680, 1209863935, 'US', 'United States'), +('72.29.15.0', '72.29.16.255', 1209863936, 1209864447, 'CA', 'Canada'), +('72.29.17.0', '72.29.17.95', 1209864448, 1209864543, 'US', 'United States'), +('72.29.17.96', '72.29.17.127', 1209864544, 1209864575, 'BE', 'Belgium'), +('72.29.17.128', '72.29.17.159', 1209864576, 1209864607, 'US', 'United States'), +('72.29.17.160', '72.29.17.191', 1209864608, 1209864639, 'BE', 'Belgium'), +('72.29.17.192', '72.29.17.223', 1209864640, 1209864671, 'IN', 'India'), +('72.29.17.224', '72.29.21.127', 1209864672, 1209865599, 'US', 'United States'), +('72.29.21.128', '72.29.21.255', 1209865600, 1209865727, 'IN', 'India'), +('72.29.22.0', '72.29.23.127', 1209865728, 1209866111, 'US', 'United States'), +('72.29.23.128', '72.29.23.159', 1209866112, 1209866143, 'IN', 'India'), +('72.29.23.160', '72.29.23.191', 1209866144, 1209866175, 'US', 'United States'), +('72.29.23.192', '72.29.23.223', 1209866176, 1209866207, 'BE', 'Belgium'), +('72.29.23.224', '72.29.23.255', 1209866208, 1209866239, 'IN', 'India'), +('72.29.24.0', '72.29.25.255', 1209866240, 1209866751, 'US', 'United States'), +('72.29.26.0', '72.29.26.255', 1209866752, 1209867007, 'IN', 'India'), +('72.29.27.0', '72.29.27.31', 1209867008, 1209867039, 'NZ', 'New Zealand'), +('72.29.27.32', '72.29.27.63', 1209867040, 1209867071, 'BE', 'Belgium'), +('72.29.27.64', '72.29.27.127', 1209867072, 1209867135, 'US', 'United States'), +('72.29.27.128', '72.29.27.159', 1209867136, 1209867167, 'BE', 'Belgium'), +('72.29.27.160', '72.29.27.223', 1209867168, 1209867231, 'US', 'United States'), +('72.29.27.224', '72.29.27.255', 1209867232, 1209867263, 'GB', 'United Kingdom'), +('72.29.28.0', '72.29.28.255', 1209867264, 1209867519, 'CA', 'Canada'), +('72.29.29.0', '72.29.95.255', 1209867520, 1209884671, 'US', 'United States'), +('72.29.96.0', '72.29.96.7', 1209884672, 1209884679, 'IT', 'Italy'), +('72.29.96.8', '72.29.96.151', 1209884680, 1209884823, 'US', 'United States'), +('72.29.96.152', '72.29.96.159', 1209884824, 1209884831, 'IT', 'Italy'), +('72.29.96.160', '72.29.118.191', 1209884832, 1209890495, 'US', 'United States'), +('72.29.118.192', '72.29.118.255', 1209890496, 1209890559, 'AU', 'Australia'), +('72.29.119.0', '72.29.130.135', 1209890560, 1209893511, 'US', 'United States'), +('72.29.130.136', '72.29.130.143', 1209893512, 1209893519, 'MX', 'Mexico'), +('72.29.130.144', '72.29.223.255', 1209893520, 1209917439, 'US', 'United States'), +('72.29.224.0', '72.29.255.255', 1209917440, 1209925631, 'CA', 'Canada'), +('72.30.0.0', '72.34.255.255', 1209925632, 1210253311, 'US', 'United States'), +('72.35.0.0', '72.35.5.111', 1210253312, 1210254703, 'CA', 'Canada'), +('72.35.5.112', '72.35.5.127', 1210254704, 1210254719, 'NZ', 'New Zealand'), +('72.35.5.128', '72.35.31.255', 1210254720, 1210261503, 'CA', 'Canada'), +('72.35.32.0', '72.36.156.255', 1210261504, 1210359039, 'US', 'United States'), +('72.36.157.0', '72.36.157.255', 1210359040, 1210359295, 'ES', 'Spain'), +('72.36.158.0', '72.36.186.191', 1210359296, 1210366655, 'US', 'United States'), +('72.36.186.192', '72.36.186.255', 1210366656, 1210366719, 'GB', 'United Kingdom'), +('72.36.187.0', '72.37.131.255', 1210366720, 1210418175, 'US', 'United States'), +('72.37.132.0', '72.37.132.31', 1210418176, 1210418207, 'SG', 'Singapore'), +('72.37.132.32', '72.37.132.111', 1210418208, 1210418287, 'US', 'United States'), +('72.37.132.112', '72.37.132.127', 1210418288, 1210418303, 'SG', 'Singapore'), +('72.37.132.128', '72.37.255.255', 1210418304, 1210449919, 'US', 'United States'), +('72.38.0.0', '72.39.255.255', 1210449920, 1210580991, 'CA', 'Canada'), +('72.40.0.0', '72.45.63.255', 1210580992, 1210925055, 'US', 'United States'), +('72.45.64.0', '72.45.127.255', 1210925056, 1210941439, 'CA', 'Canada'), +('72.45.128.0', '72.46.247.63', 1210941440, 1211037503, 'US', 'United States'), +('72.46.247.64', '72.46.247.79', 1211037504, 1211037519, 'DO', 'Dominican Republic'), +('72.46.247.80', '72.49.255.255', 1211037520, 1211236351, 'US', 'United States'), +('72.50.0.0', '72.50.127.255', 1211236352, 1211269119, 'PR', 'Puerto Rico'), +('72.50.128.0', '72.51.7.255', 1211269120, 1211303935, 'US', 'United States'), +('72.51.8.0', '72.51.8.223', 1211303936, 1211304159, 'CA', 'Canada'), +('72.51.8.224', '72.51.8.255', 1211304160, 1211304191, 'US', 'United States'), +('72.51.9.0', '72.51.9.127', 1211304192, 1211304319, 'CA', 'Canada'), +('72.51.9.128', '72.51.9.159', 1211304320, 1211304351, 'NL', 'Netherlands'), +('72.51.9.160', '72.51.10.255', 1211304352, 1211304703, 'CA', 'Canada'), +('72.51.11.0', '72.51.11.63', 1211304704, 1211304767, 'GB', 'United Kingdom'), +('72.51.11.64', '72.51.11.95', 1211304768, 1211304799, 'US', 'United States'), +('72.51.11.96', '72.51.11.255', 1211304800, 1211304959, 'CA', 'Canada'), +('72.51.12.0', '72.51.15.255', 1211304960, 1211305983, 'US', 'United States'), +('72.51.16.0', '72.51.16.255', 1211305984, 1211306239, 'NL', 'Netherlands'), +('72.51.17.0', '72.51.18.255', 1211306240, 1211306751, 'US', 'United States'), +('72.51.19.0', '72.51.19.127', 1211306752, 1211306879, 'CA', 'Canada'), +('72.51.19.128', '72.51.23.255', 1211306880, 1211308031, 'US', 'United States'), +('72.51.24.0', '72.51.24.127', 1211308032, 1211308159, 'CR', 'Costa Rica'), +('72.51.24.128', '72.51.24.143', 1211308160, 1211308175, 'CA', 'Canada'), +('72.51.24.144', '72.51.24.159', 1211308176, 1211308191, 'BV', 'Bouvet Island'), +('72.51.24.160', '72.51.25.255', 1211308192, 1211308543, 'CA', 'Canada'), +('72.51.26.0', '72.51.26.15', 1211308544, 1211308559, 'KN', 'Saint Kitts and Nevis'), +('72.51.26.16', '72.51.26.63', 1211308560, 1211308607, 'CA', 'Canada'), +('72.51.26.64', '72.51.26.71', 1211308608, 1211308615, 'US', 'United States'), +('72.51.26.72', '72.51.26.79', 1211308616, 1211308623, 'CA', 'Canada'), +('72.51.26.80', '72.51.26.95', 1211308624, 1211308639, 'US', 'United States'), +('72.51.26.96', '72.51.26.111', 1211308640, 1211308655, 'MX', 'Mexico'), +('72.51.26.112', '72.51.26.127', 1211308656, 1211308671, 'GB', 'United Kingdom'), +('72.51.26.128', '72.51.26.159', 1211308672, 1211308703, 'CA', 'Canada'), +('72.51.26.160', '72.51.26.175', 1211308704, 1211308719, 'VG', 'Virgin Islands, British'), +('72.51.26.176', '72.51.26.191', 1211308720, 1211308735, 'CA', 'Canada'), +('72.51.26.192', '72.51.26.207', 1211308736, 1211308751, 'BV', 'Bouvet Island'), +('72.51.26.208', '72.51.27.255', 1211308752, 1211309055, 'CA', 'Canada'), +('72.51.28.0', '72.51.28.255', 1211309056, 1211309311, 'US', 'United States'), +('72.51.29.0', '72.51.31.255', 1211309312, 1211310079, 'CA', 'Canada'), +('72.51.32.0', '72.51.48.207', 1211310080, 1211314383, 'US', 'United States'), +('72.51.48.208', '72.51.48.223', 1211314384, 1211314399, 'CA', 'Canada'), +('72.51.48.224', '72.51.48.239', 1211314400, 1211314415, 'US', 'United States'), +('72.51.48.240', '72.51.48.247', 1211314416, 1211314423, 'CA', 'Canada'), +('72.51.48.248', '72.51.49.207', 1211314424, 1211314639, 'US', 'United States'), +('72.51.49.208', '72.51.49.239', 1211314640, 1211314671, 'CA', 'Canada'), +('72.51.49.240', '72.51.52.255', 1211314672, 1211315455, 'US', 'United States'), +('72.51.53.0', '72.51.53.63', 1211315456, 1211315519, 'CA', 'Canada'), +('72.51.53.64', '72.51.53.255', 1211315520, 1211315711, 'US', 'United States'), +('72.51.54.0', '72.51.55.255', 1211315712, 1211316223, 'CA', 'Canada'), +('72.51.56.0', '72.51.56.255', 1211316224, 1211316479, 'US', 'United States'), +('72.51.57.0', '72.51.58.255', 1211316480, 1211316991, 'CA', 'Canada'), +('72.51.59.0', '72.51.60.255', 1211316992, 1211317503, 'US', 'United States'), +('72.51.61.0', '72.51.61.255', 1211317504, 1211317759, 'CA', 'Canada'), +('72.51.62.0', '72.51.63.255', 1211317760, 1211318271, 'US', 'United States'), +('72.51.64.0', '72.51.80.255', 1211318272, 1211322623, 'BB', 'Barbados'), +('72.51.81.0', '72.51.86.255', 1211322624, 1211324159, 'GD', 'Grenada'), +('72.51.87.0', '72.51.89.255', 1211324160, 1211324927, 'VC', 'Saint Vincent and the Grenadines'), +('72.51.90.0', '72.51.121.255', 1211324928, 1211333119, 'BB', 'Barbados'), +('72.51.122.0', '72.51.123.255', 1211333120, 1211333631, 'VC', 'Saint Vincent and the Grenadines'), +('72.51.124.0', '72.51.124.255', 1211333632, 1211333887, 'GD', 'Grenada'), +('72.51.125.0', '72.51.127.255', 1211333888, 1211334655, 'VG', 'Virgin Islands, British'), +('72.51.128.0', '72.51.255.255', 1211334656, 1211367423, 'US', 'United States'), +('72.52.0.0', '72.52.0.63', 1211367424, 1211367487, 'EE', 'Estonia'), +('72.52.0.64', '72.52.0.255', 1211367488, 1211367679, 'US', 'United States'), +('72.52.1.0', '72.52.1.255', 1211367680, 1211367935, 'GI', 'Gibraltar'), +('72.52.2.0', '72.52.65.215', 1211367936, 1211384279, 'US', 'United States'), +('72.52.65.216', '72.52.65.223', 1211384280, 1211384287, 'GB', 'United Kingdom'), +('72.52.65.224', '72.52.80.79', 1211384288, 1211387983, 'US', 'United States'), +('72.52.80.80', '72.52.80.95', 1211387984, 1211387999, 'AE', 'United Arab Emirates'), +('72.52.80.96', '72.52.82.255', 1211388000, 1211388671, 'US', 'United States'), +('72.52.83.0', '72.52.83.15', 1211388672, 1211388687, 'IT', 'Italy'), +('72.52.83.16', '72.52.94.255', 1211388688, 1211391743, 'US', 'United States'), +('72.52.95.0', '72.52.95.255', 1211391744, 1211391999, 'IT', 'Italy'), +('72.52.96.0', '72.52.98.79', 1211392000, 1211392591, 'US', 'United States'), +('72.52.98.80', '72.52.98.95', 1211392592, 1211392607, 'IT', 'Italy'), +('72.52.98.96', '72.52.98.127', 1211392608, 1211392639, 'GB', 'United Kingdom'), +('72.52.98.128', '72.52.99.15', 1211392640, 1211392783, 'US', 'United States'), +('72.52.99.16', '72.52.99.31', 1211392784, 1211392799, 'IT', 'Italy'), +('72.52.99.32', '72.52.100.255', 1211392800, 1211393279, 'US', 'United States'), +('72.52.101.0', '72.52.101.31', 1211393280, 1211393311, 'AU', 'Australia'), +('72.52.101.32', '72.52.101.47', 1211393312, 1211393327, 'IT', 'Italy'), +('72.52.101.48', '72.52.106.191', 1211393328, 1211394751, 'US', 'United States'), +('72.52.106.192', '72.52.107.255', 1211394752, 1211395071, 'IT', 'Italy'), +('72.52.108.0', '72.52.155.189', 1211395072, 1211407293, 'US', 'United States'), +('72.52.155.190', '72.52.155.229', 1211407294, 1211407333, 'MX', 'Mexico'), +('72.52.155.230', '72.52.255.255', 1211407334, 1211432959, 'US', 'United States'), +('72.53.0.0', '72.53.159.255', 1211432960, 1211473919, 'CA', 'Canada'), +('72.53.160.0', '72.55.127.255', 1211473920, 1211596799, 'US', 'United States'), +('72.55.128.0', '72.55.191.255', 1211596800, 1211613183, 'CA', 'Canada'), +('72.55.192.0', '72.135.255.255', 1211613184, 1216872447, 'US', 'United States'), +('72.136.0.0', '72.143.255.255', 1216872448, 1217396735, 'CA', 'Canada'), +('72.144.0.0', '72.164.95.31', 1217396736, 1218731807, 'US', 'United States'), +('72.164.95.32', '72.164.95.39', 1218731808, 1218731815, 'A2', 'Satellite Provider'), +('72.164.95.40', '72.165.43.255', 1218731816, 1218784255, 'US', 'United States'), +('72.165.44.0', '72.165.44.255', 1218784256, 1218784511, 'A2', 'Satellite Provider'), +('72.165.45.0', '72.166.57.127', 1218784512, 1218853247, 'US', 'United States'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('72.166.57.128', '72.166.57.159', 1218853248, 1218853279, 'PR', 'Puerto Rico'), +('72.166.57.160', '72.172.95.255', 1218853280, 1219256319, 'US', 'United States'), +('72.172.96.0', '72.172.127.255', 1219256320, 1219264511, 'CA', 'Canada'), +('72.172.128.0', '72.172.159.255', 1219264512, 1219272703, 'US', 'United States'), +('72.172.160.0', '72.172.175.255', 1219272704, 1219276799, 'CA', 'Canada'), +('72.172.176.0', '72.172.229.255', 1219276800, 1219290623, 'US', 'United States'), +('72.172.230.0', '72.172.230.127', 1219290624, 1219290751, 'AU', 'Australia'), +('72.172.230.128', '72.172.248.63', 1219290752, 1219295295, 'US', 'United States'), +('72.172.248.64', '72.172.248.127', 1219295296, 1219295359, 'GR', 'Greece'), +('72.172.248.128', '72.232.72.151', 1219295360, 1223182487, 'US', 'United States'), +('72.232.72.152', '72.232.73.62', 1223182488, 1223182654, 'ES', 'Spain'), +('72.232.73.63', '72.232.129.255', 1223182655, 1223197183, 'US', 'United States'), +('72.232.130.0', '72.232.130.255', 1223197184, 1223197439, 'ES', 'Spain'), +('72.232.131.0', '72.232.139.255', 1223197440, 1223199743, 'US', 'United States'), +('72.232.140.0', '72.232.140.255', 1223199744, 1223199999, 'GB', 'United Kingdom'), +('72.232.141.0', '72.232.153.255', 1223200000, 1223203327, 'US', 'United States'), +('72.232.154.0', '72.232.154.255', 1223203328, 1223203583, 'ES', 'Spain'), +('72.232.155.0', '72.232.173.255', 1223203584, 1223208447, 'US', 'United States'), +('72.232.174.0', '72.232.174.255', 1223208448, 1223208703, 'ES', 'Spain'), +('72.232.175.0', '72.232.175.63', 1223208704, 1223208767, 'US', 'United States'), +('72.232.175.64', '72.232.175.127', 1223208768, 1223208831, 'ES', 'Spain'), +('72.232.175.128', '72.232.230.127', 1223208832, 1223222911, 'US', 'United States'), +('72.232.230.128', '72.232.230.255', 1223222912, 1223223039, 'BR', 'Brazil'), +('72.232.231.0', '72.233.17.255', 1223223040, 1223234047, 'US', 'United States'), +('72.233.18.0', '72.233.18.255', 1223234048, 1223234303, 'ES', 'Spain'), +('72.233.19.0', '72.233.37.255', 1223234304, 1223239167, 'US', 'United States'), +('72.233.38.0', '72.233.38.127', 1223239168, 1223239295, 'ES', 'Spain'), +('72.233.38.128', '72.233.109.255', 1223239296, 1223257599, 'US', 'United States'), +('72.233.110.0', '72.233.110.127', 1223257600, 1223257727, 'MX', 'Mexico'), +('72.233.110.128', '72.248.255.255', 1223257728, 1224278015, 'US', 'United States'), +('72.249.0.0', '72.249.0.7', 1224278016, 1224278023, 'GB', 'United Kingdom'), +('72.249.0.8', '72.249.0.95', 1224278024, 1224278111, 'US', 'United States'), +('72.249.0.96', '72.249.0.127', 1224278112, 1224278143, 'MY', 'Malaysia'), +('72.249.0.128', '72.249.0.167', 1224278144, 1224278183, 'US', 'United States'), +('72.249.0.168', '72.249.0.175', 1224278184, 1224278191, 'CA', 'Canada'), +('72.249.0.176', '72.249.1.87', 1224278192, 1224278359, 'US', 'United States'), +('72.249.1.88', '72.249.1.95', 1224278360, 1224278367, 'GB', 'United Kingdom'), +('72.249.1.96', '72.249.2.71', 1224278368, 1224278599, 'US', 'United States'), +('72.249.2.72', '72.249.2.79', 1224278600, 1224278607, 'AU', 'Australia'), +('72.249.2.80', '72.249.3.31', 1224278608, 1224278815, 'US', 'United States'), +('72.249.3.32', '72.249.3.39', 1224278816, 1224278823, 'CH', 'Switzerland'), +('72.249.3.40', '72.249.29.255', 1224278824, 1224285695, 'US', 'United States'), +('72.249.30.0', '72.249.31.255', 1224285696, 1224286207, 'GB', 'United Kingdom'), +('72.249.32.0', '72.249.33.255', 1224286208, 1224286719, 'US', 'United States'), +('72.249.34.0', '72.249.34.255', 1224286720, 1224286975, 'CA', 'Canada'), +('72.249.35.0', '72.249.47.255', 1224286976, 1224290303, 'US', 'United States'), +('72.249.48.0', '72.249.49.255', 1224290304, 1224290815, 'GB', 'United Kingdom'), +('72.249.50.0', '72.249.50.255', 1224290816, 1224291071, 'CA', 'Canada'), +('72.249.51.0', '72.249.54.255', 1224291072, 1224292095, 'US', 'United States'), +('72.249.55.0', '72.249.55.255', 1224292096, 1224292351, 'CA', 'Canada'), +('72.249.56.0', '72.249.67.255', 1224292352, 1224295423, 'US', 'United States'), +('72.249.68.0', '72.249.68.255', 1224295424, 1224295679, 'VN', 'Vietnam'), +('72.249.69.0', '72.249.71.255', 1224295680, 1224296447, 'US', 'United States'), +('72.249.72.0', '72.249.73.255', 1224296448, 1224296959, 'CA', 'Canada'), +('72.249.74.0', '72.249.83.255', 1224296960, 1224299519, 'US', 'United States'), +('72.249.84.0', '72.249.84.255', 1224299520, 1224299775, 'CA', 'Canada'), +('72.249.85.0', '72.249.98.255', 1224299776, 1224303359, 'US', 'United States'), +('72.249.99.0', '72.249.99.7', 1224303360, 1224303367, 'CA', 'Canada'), +('72.249.99.8', '72.249.105.255', 1224303368, 1224305151, 'US', 'United States'), +('72.249.106.0', '72.249.107.255', 1224305152, 1224305663, 'GB', 'United Kingdom'), +('72.249.108.0', '72.249.129.23', 1224305664, 1224311063, 'US', 'United States'), +('72.249.129.24', '72.249.129.31', 1224311064, 1224311071, 'MX', 'Mexico'), +('72.249.129.32', '72.249.131.255', 1224311072, 1224311807, 'US', 'United States'), +('72.249.132.0', '72.249.133.255', 1224311808, 1224312319, 'CA', 'Canada'), +('72.249.134.0', '72.249.134.7', 1224312320, 1224312327, 'GB', 'United Kingdom'), +('72.249.134.8', '72.249.153.255', 1224312328, 1224317439, 'US', 'United States'), +('72.249.154.0', '72.249.154.255', 1224317440, 1224317695, 'CA', 'Canada'), +('72.249.155.0', '72.249.156.255', 1224317696, 1224318207, 'US', 'United States'), +('72.249.157.0', '72.249.157.255', 1224318208, 1224318463, 'CA', 'Canada'), +('72.249.158.0', '72.249.165.255', 1224318464, 1224320511, 'US', 'United States'), +('72.249.166.0', '72.249.167.255', 1224320512, 1224321023, 'GB', 'United Kingdom'), +('72.249.168.0', '72.249.169.255', 1224321024, 1224321535, 'CA', 'Canada'), +('72.249.170.0', '72.249.173.255', 1224321536, 1224322559, 'US', 'United States'), +('72.249.174.0', '72.249.175.255', 1224322560, 1224323071, 'GB', 'United Kingdom'), +('72.249.176.0', '72.252.7.255', 1224323072, 1224476671, 'US', 'United States'), +('72.252.8.0', '72.252.15.255', 1224476672, 1224478719, 'AN', 'Netherlands Antilles'), +('72.252.16.0', '72.252.23.255', 1224478720, 1224480767, 'US', 'United States'), +('72.252.24.0', '72.252.39.255', 1224480768, 1224484863, 'JM', 'Jamaica'), +('72.252.40.0', '72.252.71.255', 1224484864, 1224493055, 'GT', 'Guatemala'), +('72.252.72.0', '72.252.87.255', 1224493056, 1224497151, 'US', 'United States'), +('72.252.88.0', '72.252.103.255', 1224497152, 1224501247, 'GT', 'Guatemala'), +('72.252.104.0', '72.252.112.255', 1224501248, 1224503551, 'JM', 'Jamaica'), +('72.252.113.0', '72.252.113.255', 1224503552, 1224503807, 'BS', 'Bahamas'), +('72.252.114.0', '72.252.135.255', 1224503808, 1224509439, 'JM', 'Jamaica'), +('72.252.136.0', '72.252.207.255', 1224509440, 1224527871, 'US', 'United States'), +('72.252.208.0', '72.252.215.0', 1224527872, 1224529664, 'JM', 'Jamaica'), +('72.252.215.1', '72.252.215.255', 1224529665, 1224529919, 'US', 'United States'), +('72.252.216.0', '72.252.247.255', 1224529920, 1224538111, 'JM', 'Jamaica'), +('72.252.248.0', '74.3.127.255', 1224538112, 1241743359, 'US', 'United States'), +('74.3.128.0', '74.3.191.255', 1241743360, 1241759743, 'CA', 'Canada'), +('74.3.192.0', '74.3.207.255', 1241759744, 1241763839, 'US', 'United States'), +('74.4.0.0', '74.11.255.255', 1241776128, 1242300415, 'US', 'United States'), +('74.12.0.0', '74.15.255.255', 1242300416, 1242562559, 'CA', 'Canada'), +('74.16.0.0', '74.47.255.255', 1242562560, 1244659711, 'US', 'United States'), +('74.48.0.0', '74.49.255.255', 1244659712, 1244790783, 'CA', 'Canada'), +('74.50.0.0', '74.50.159.255', 1244790784, 1244831743, 'US', 'United States'), +('74.50.160.0', '74.50.191.255', 1244831744, 1244839935, 'CA', 'Canada'), +('74.50.192.0', '74.50.223.255', 1244839936, 1244848127, 'US', 'United States'), +('74.50.224.0', '74.50.239.255', 1244848128, 1244852223, 'CA', 'Canada'), +('74.50.240.0', '74.51.31.255', 1244852224, 1244864511, 'US', 'United States'), +('74.51.32.0', '74.51.63.255', 1244864512, 1244872703, 'CA', 'Canada'), +('74.51.64.0', '74.55.255.255', 1244872704, 1245183999, 'US', 'United States'), +('74.56.0.0', '74.59.255.255', 1245184000, 1245446143, 'CA', 'Canada'), +('74.60.0.0', '74.84.31.255', 1245446144, 1247027199, 'US', 'United States'), +('74.84.32.0', '74.84.63.255', 1247027200, 1247035391, 'A2', 'Satellite Provider'), +('74.84.64.0', '74.112.39.255', 1247035392, 1248864255, 'US', 'United States'), +('74.112.40.0', '74.112.47.255', 1248864256, 1248866303, 'CA', 'Canada'), +('74.112.48.0', '74.112.123.255', 1248866304, 1248885759, 'US', 'United States'), +('74.112.124.0', '74.112.127.255', 1248885760, 1248886783, 'CA', 'Canada'), +('74.112.128.0', '74.112.175.255', 1248886784, 1248899071, 'US', 'United States'), +('74.112.176.0', '74.112.179.255', 1248899072, 1248900095, 'CA', 'Canada'), +('74.112.180.0', '74.112.231.255', 1248900096, 1248913407, 'US', 'United States'), +('74.112.232.0', '74.112.239.255', 1248913408, 1248915455, 'GP', 'Guadeloupe'), +('74.112.240.0', '74.112.255.255', 1248915456, 1248919551, 'US', 'United States'), +('74.113.0.0', '74.113.3.255', 1248919552, 1248920575, 'CA', 'Canada'), +('74.113.4.0', '74.113.7.255', 1248920576, 1248921599, 'US', 'United States'), +('74.113.8.0', '74.113.15.255', 1248921600, 1248923647, 'CA', 'Canada'), +('74.113.16.0', '74.113.67.255', 1248923648, 1248936959, 'US', 'United States'), +('74.113.68.0', '74.113.75.255', 1248936960, 1248939007, 'CA', 'Canada'), +('74.113.76.0', '74.113.103.255', 1248939008, 1248946175, 'US', 'United States'), +('74.113.104.0', '74.113.107.255', 1248946176, 1248947199, 'VG', 'Virgin Islands, British'), +('74.113.108.0', '74.113.151.255', 1248947200, 1248958463, 'US', 'United States'), +('74.113.152.0', '74.113.155.255', 1248958464, 1248959487, 'CA', 'Canada'), +('74.113.156.0', '74.113.175.255', 1248959488, 1248964607, 'US', 'United States'), +('74.113.176.0', '74.113.183.255', 1248964608, 1248966655, 'CA', 'Canada'), +('74.113.184.0', '74.114.71.255', 1248966656, 1249003519, 'US', 'United States'), +('74.114.72.0', '74.114.79.255', 1249003520, 1249005567, 'CA', 'Canada'), +('74.114.80.0', '74.114.99.255', 1249005568, 1249010687, 'US', 'United States'), +('74.114.100.0', '74.114.103.255', 1249010688, 1249011711, 'CA', 'Canada'), +('74.114.104.0', '74.114.135.255', 1249011712, 1249019903, 'US', 'United States'), +('74.114.136.0', '74.114.139.255', 1249019904, 1249020927, 'CA', 'Canada'), +('74.114.140.0', '74.114.171.255', 1249020928, 1249029119, 'US', 'United States'), +('74.114.172.0', '74.114.175.255', 1249029120, 1249030143, 'CA', 'Canada'), +('74.114.176.0', '74.114.199.255', 1249030144, 1249036287, 'US', 'United States'), +('74.114.200.0', '74.114.203.255', 1249036288, 1249037311, 'TC', 'Turks and Caicos Islands'), +('74.114.204.0', '74.114.215.255', 1249037312, 1249040383, 'CA', 'Canada'), +('74.114.216.0', '74.114.239.255', 1249040384, 1249046527, 'US', 'United States'), +('74.114.240.0', '74.114.243.255', 1249046528, 1249047551, 'BM', 'Bermuda'), +('74.114.244.0', '74.115.127.255', 1249047552, 1249083391, 'US', 'United States'), +('74.124.0.0', '74.124.31.255', 1249640448, 1249648639, 'US', 'United States'), +('74.124.128.0', '74.124.196.159', 1249673216, 1249690783, 'US', 'United States'), +('74.124.196.160', '74.124.196.191', 1249690784, 1249690815, 'AU', 'Australia'), +('74.124.196.192', '74.124.201.95', 1249690816, 1249691999, 'US', 'United States'), +('74.124.201.96', '74.124.201.127', 1249692000, 1249692031, 'CA', 'Canada'), +('74.124.201.128', '74.124.204.63', 1249692032, 1249692735, 'US', 'United States'), +('74.124.204.64', '74.124.204.95', 1249692736, 1249692767, 'HK', 'Hong Kong'), +('74.124.204.96', '74.124.206.79', 1249692768, 1249693263, 'US', 'United States'), +('74.124.206.80', '74.124.206.87', 1249693264, 1249693271, 'CA', 'Canada'), +('74.124.206.88', '74.126.5.239', 1249693272, 1249773039, 'US', 'United States'), +('74.126.5.240', '74.126.5.255', 1249773040, 1249773055, 'CA', 'Canada'), +('74.126.6.0', '74.126.95.255', 1249773056, 1249796095, 'US', 'United States'), +('74.126.96.0', '74.126.127.255', 1249796096, 1249804287, 'CA', 'Canada'), +('74.126.128.0', '74.127.9.63', 1249804288, 1249839423, 'US', 'United States'), +('74.127.9.64', '74.127.9.127', 1249839424, 1249839487, 'VE', 'Venezuela'), +('74.127.9.128', '74.127.38.63', 1249839488, 1249846847, 'US', 'United States'), +('74.127.38.64', '74.127.38.95', 1249846848, 1249846879, 'GB', 'United Kingdom'), +('74.127.38.96', '74.127.38.127', 1249846880, 1249846911, 'CN', 'China'), +('74.127.38.128', '74.127.38.255', 1249846912, 1249847039, 'US', 'United States'), +('74.127.39.0', '74.127.39.127', 1249847040, 1249847167, 'IN', 'India'), +('74.127.39.128', '74.127.42.31', 1249847168, 1249847839, 'US', 'United States'), +('74.127.42.32', '74.127.42.63', 1249847840, 1249847871, 'IN', 'India'), +('74.127.42.64', '74.127.46.95', 1249847872, 1249848927, 'US', 'United States'), +('74.127.46.96', '74.127.46.127', 1249848928, 1249848959, 'AU', 'Australia'), +('74.127.46.128', '74.127.60.31', 1249848960, 1249852447, 'US', 'United States'), +('74.127.60.32', '74.127.60.63', 1249852448, 1249852479, 'IN', 'India'), +('74.127.60.64', '74.127.191.255', 1249852480, 1249886207, 'US', 'United States'), +('74.127.192.0', '74.127.255.255', 1249886208, 1249902591, 'CA', 'Canada'), +('74.128.0.0', '74.197.255.255', 1249902592, 1254490111, 'US', 'United States'), +('74.198.0.0', '74.198.255.255', 1254490112, 1254555647, 'CA', 'Canada'), +('74.199.0.0', '74.199.189.127', 1254555648, 1254604159, 'US', 'United States'), +('74.199.189.128', '74.199.189.143', 1254604160, 1254604175, 'GB', 'United Kingdom'), +('74.199.189.144', '74.199.255.255', 1254604176, 1254621183, 'US', 'United States'), +('74.200.0.0', '74.200.31.255', 1254621184, 1254629375, 'CA', 'Canada'), +('74.200.32.0', '74.201.68.255', 1254629376, 1254704383, 'US', 'United States'), +('74.201.69.0', '74.201.69.255', 1254704384, 1254704639, 'PH', 'Philippines'), +('74.201.70.0', '74.201.71.7', 1254704640, 1254704903, 'US', 'United States'), +('74.201.71.8', '74.201.71.15', 1254704904, 1254704911, 'PH', 'Philippines'), +('74.201.71.16', '74.201.104.15', 1254704912, 1254713359, 'US', 'United States'), +('74.201.104.16', '74.201.104.63', 1254713360, 1254713407, 'CA', 'Canada'), +('74.201.104.64', '74.201.149.255', 1254713408, 1254725119, 'US', 'United States'), +('74.201.150.0', '74.201.150.31', 1254725120, 1254725151, 'GB', 'United Kingdom'), +('74.201.150.32', '74.205.159.255', 1254725152, 1254989823, 'US', 'United States'), +('74.205.160.0', '74.205.191.255', 1254989824, 1254998015, 'CA', 'Canada'), +('74.205.192.0', '74.205.207.255', 1254998016, 1255002111, 'US', 'United States'), +('74.205.208.0', '74.205.223.255', 1255002112, 1255006207, 'CA', 'Canada'), +('74.205.224.0', '74.205.244.15', 1255006208, 1255011343, 'US', 'United States'), +('74.205.244.16', '74.205.244.31', 1255011344, 1255011359, 'CA', 'Canada'), +('74.205.244.32', '74.205.244.39', 1255011360, 1255011367, 'US', 'United States'), +('74.205.244.40', '74.205.244.223', 1255011368, 1255011551, 'CA', 'Canada'), +('74.205.244.224', '74.205.244.231', 1255011552, 1255011559, 'US', 'United States'), +('74.205.244.232', '74.205.244.239', 1255011560, 1255011567, 'CA', 'Canada'), +('74.205.244.240', '74.205.244.255', 1255011568, 1255011583, 'US', 'United States'), +('74.205.245.0', '74.205.245.255', 1255011584, 1255011839, 'CA', 'Canada'), +('74.205.246.0', '74.206.110.191', 1255011840, 1255042751, 'US', 'United States'), +('74.206.110.192', '74.206.110.223', 1255042752, 1255042783, 'CA', 'Canada'), +('74.206.110.224', '74.206.127.255', 1255042784, 1255047167, 'US', 'United States'), +('74.206.128.0', '74.206.159.255', 1255047168, 1255055359, 'CA', 'Canada'), +('74.206.160.0', '74.206.160.127', 1255055360, 1255055487, 'US', 'United States'), +('74.206.160.128', '74.206.160.143', 1255055488, 1255055503, 'CA', 'Canada'), +('74.206.160.144', '74.206.174.127', 1255055504, 1255059071, 'US', 'United States'), +('74.206.174.128', '74.206.174.143', 1255059072, 1255059087, 'BS', 'Bahamas'), +('74.206.174.144', '74.206.174.223', 1255059088, 1255059167, 'US', 'United States'), +('74.206.174.224', '74.206.174.255', 1255059168, 1255059199, 'BS', 'Bahamas'), +('74.206.175.0', '74.206.188.63', 1255059200, 1255062591, 'US', 'United States'), +('74.206.188.64', '74.206.188.79', 1255062592, 1255062607, 'CA', 'Canada'), +('74.206.188.80', '74.206.189.63', 1255062608, 1255062847, 'US', 'United States'), +('74.206.189.64', '74.206.189.79', 1255062848, 1255062863, 'CA', 'Canada'), +('74.206.189.80', '74.206.191.255', 1255062864, 1255063551, 'US', 'United States'), +('74.206.192.0', '74.206.223.255', 1255063552, 1255071743, 'PR', 'Puerto Rico'), +('74.206.224.0', '74.208.187.255', 1255071744, 1255193599, 'US', 'United States'), +('74.208.188.0', '74.208.191.255', 1255193600, 1255194623, 'GB', 'United Kingdom'), +('74.209.0.0', '74.209.255.255', 1255211008, 1255276543, 'US', 'United States'), +('74.210.0.0', '74.210.255.255', 1255276544, 1255342079, 'CA', 'Canada'), +('74.211.0.0', '74.213.63.255', 1255342080, 1255489535, 'US', 'United States'), +('74.213.64.0', '74.213.127.255', 1255489536, 1255505919, 'PR', 'Puerto Rico'), +('74.213.128.0', '74.213.159.255', 1255505920, 1255514111, 'US', 'United States'), +('74.213.160.0', '74.213.191.255', 1255514112, 1255522303, 'CA', 'Canada'), +('74.213.192.0', '74.214.127.255', 1255522304, 1255571455, 'US', 'United States'), +('74.214.128.0', '74.214.159.255', 1255571456, 1255579647, 'CA', 'Canada'), +('74.214.160.0', '74.215.255.255', 1255579648, 1255669759, 'US', 'United States'), +('74.216.0.0', '74.216.255.255', 1255669760, 1255735295, 'CA', 'Canada'), +('74.217.0.0', '74.217.69.255', 1255735296, 1255753215, 'US', 'United States'), +('74.217.70.0', '74.217.70.255', 1255753216, 1255753471, 'GB', 'United Kingdom'), +('74.217.71.0', '74.217.175.255', 1255753472, 1255780351, 'US', 'United States'), +('74.217.176.0', '74.217.183.255', 1255780352, 1255782399, 'CA', 'Canada'), +('74.217.184.0', '74.217.240.7', 1255782400, 1255796743, 'US', 'United States'), +('74.217.240.8', '74.217.240.15', 1255796744, 1255796751, 'GB', 'United Kingdom'), +('74.217.240.16', '74.220.159.255', 1255796752, 1255972863, 'US', 'United States'), +('74.220.160.0', '74.220.191.255', 1255972864, 1255981055, 'CA', 'Canada'), +('74.220.192.0', '74.221.15.255', 1255981056, 1256001535, 'US', 'United States'), +('74.221.16.0', '74.221.31.255', 1256001536, 1256005631, 'CA', 'Canada'), +('74.221.32.0', '74.222.63.255', 1256005632, 1256079359, 'US', 'United States'), +('74.222.64.0', '74.222.95.255', 1256079360, 1256087551, 'KY', 'Cayman Islands'), +('74.222.96.0', '74.222.137.255', 1256087552, 1256098303, 'US', 'United States'), +('74.222.138.0', '74.222.139.255', 1256098304, 1256098815, 'CA', 'Canada'), +('74.222.140.0', '75.102.16.255', 1256098816, 1264980223, 'US', 'United States'), +('75.102.17.0', '75.102.17.255', 1264980224, 1264980479, 'HK', 'Hong Kong'), +('75.102.18.0', '75.102.18.255', 1264980480, 1264980735, 'US', 'United States'), +('75.102.19.0', '75.102.19.7', 1264980736, 1264980743, 'CA', 'Canada'), +('75.102.19.8', '75.119.223.255', 1264980744, 1266147327, 'US', 'United States'), +('75.119.224.0', '75.119.255.255', 1266147328, 1266155519, 'CA', 'Canada'), +('75.120.0.0', '75.125.25.63', 1266155520, 1266489663, 'US', 'United States'), +('75.125.25.64', '75.125.25.95', 1266489664, 1266489695, 'CA', 'Canada'), +('75.125.25.96', '75.125.58.127', 1266489696, 1266498175, 'US', 'United States'), +('75.125.58.128', '75.125.58.255', 1266498176, 1266498303, 'MA', 'Morocco'), +('75.125.59.0', '75.151.255.255', 1266498304, 1268252671, 'US', 'United States'), +('75.152.0.0', '75.159.255.255', 1268252672, 1268776959, 'CA', 'Canada'), +('75.160.0.0', '76.8.31.255', 1268776960, 1275600895, 'US', 'United States'), +('76.8.32.0', '76.8.47.255', 1275600896, 1275604991, 'BM', 'Bermuda'), +('76.8.48.0', '76.8.111.255', 1275604992, 1275621375, 'US', 'United States'), +('76.8.112.0', '76.8.127.255', 1275621376, 1275625471, 'CA', 'Canada'), +('76.8.128.0', '76.8.255.255', 1275625472, 1275658239, 'US', 'United States'), +('76.9.0.0', '76.9.0.255', 1275658240, 1275658495, 'GB', 'United Kingdom'), +('76.9.1.0', '76.9.2.255', 1275658496, 1275659007, 'US', 'United States'), +('76.9.3.0', '76.9.3.255', 1275659008, 1275659263, 'GB', 'United Kingdom'), +('76.9.4.0', '76.9.26.255', 1275659264, 1275665151, 'US', 'United States'), +('76.9.27.0', '76.9.27.255', 1275665152, 1275665407, 'UA', 'Ukraine'), +('76.9.28.0', '76.9.31.255', 1275665408, 1275666431, 'US', 'United States'), +('76.9.32.0', '76.9.63.255', 1275666432, 1275674623, 'CA', 'Canada'), +('76.9.64.0', '76.9.191.255', 1275674624, 1275707391, 'US', 'United States'), +('76.9.192.0', '76.9.207.255', 1275707392, 1275711487, 'CA', 'Canada'), +('76.9.208.0', '76.9.211.255', 1275711488, 1275712511, 'US', 'United States'), +('76.9.212.0', '76.9.217.255', 1275712512, 1275714047, 'CA', 'Canada'), +('76.9.218.0', '76.9.219.255', 1275714048, 1275714559, 'US', 'United States'), +('76.9.220.0', '76.9.223.255', 1275714560, 1275715583, 'CA', 'Canada'), +('76.9.224.0', '76.10.127.255', 1275715584, 1275756543, 'US', 'United States'), +('76.10.128.0', '76.10.191.255', 1275756544, 1275772927, 'CA', 'Canada'), +('76.10.192.0', '76.10.255.255', 1275772928, 1275789311, 'US', 'United States'), +('76.11.0.0', '76.11.127.255', 1275789312, 1275822079, 'CA', 'Canada'), +('76.11.128.0', '76.12.19.95', 1275822080, 1275859807, 'US', 'United States'), +('76.12.19.96', '76.12.19.103', 1275859808, 1275859815, 'AE', 'United Arab Emirates'), +('76.12.19.104', '76.12.98.255', 1275859816, 1275880191, 'US', 'United States'), +('76.12.99.0', '76.12.99.15', 1275880192, 1275880207, 'MX', 'Mexico'), +('76.12.99.16', '76.12.119.239', 1275880208, 1275885551, 'US', 'United States'), +('76.12.119.240', '76.12.119.247', 1275885552, 1275885559, 'IT', 'Italy'), +('76.12.119.248', '76.12.119.255', 1275885560, 1275885567, 'US', 'United States'), +('76.12.120.0', '76.12.120.15', 1275885568, 1275885583, 'IT', 'Italy'), +('76.12.120.16', '76.12.124.111', 1275885584, 1275886703, 'US', 'United States'), +('76.12.124.112', '76.12.124.127', 1275886704, 1275886719, 'CA', 'Canada'), +('76.12.124.128', '76.12.124.143', 1275886720, 1275886735, 'US', 'United States'), +('76.12.124.144', '76.12.124.151', 1275886736, 1275886743, 'AU', 'Australia'), +('76.12.124.152', '76.12.125.7', 1275886744, 1275886855, 'US', 'United States'), +('76.12.125.8', '76.12.125.15', 1275886856, 1275886863, 'IT', 'Italy'), +('76.12.125.16', '76.12.125.31', 1275886864, 1275886879, 'US', 'United States'), +('76.12.125.32', '76.12.125.47', 1275886880, 1275886895, 'IT', 'Italy'), +('76.12.125.48', '76.12.125.135', 1275886896, 1275886983, 'US', 'United States'), +('76.12.125.136', '76.12.125.143', 1275886984, 1275886991, 'PA', 'Panama'), +('76.12.125.144', '76.12.125.215', 1275886992, 1275887063, 'US', 'United States'), +('76.12.125.216', '76.12.125.223', 1275887064, 1275887071, 'AE', 'United Arab Emirates'), +('76.12.125.224', '76.12.125.231', 1275887072, 1275887079, 'US', 'United States'), +('76.12.125.232', '76.12.125.239', 1275887080, 1275887087, 'AE', 'United Arab Emirates'), +('76.12.125.240', '76.12.129.143', 1275887088, 1275888015, 'US', 'United States'), +('76.12.129.144', '76.12.129.151', 1275888016, 1275888023, 'IN', 'India'), +('76.12.129.152', '76.12.129.167', 1275888024, 1275888039, 'US', 'United States'), +('76.12.129.168', '76.12.129.175', 1275888040, 1275888047, 'GB', 'United Kingdom'), +('76.12.129.176', '76.12.129.223', 1275888048, 1275888095, 'US', 'United States'), +('76.12.129.224', '76.12.129.255', 1275888096, 1275888127, 'ZA', 'South Africa'), +('76.12.130.0', '76.12.130.183', 1275888128, 1275888311, 'US', 'United States'), +('76.12.130.184', '76.12.130.191', 1275888312, 1275888319, 'DE', 'Germany'), +('76.12.130.192', '76.12.136.31', 1275888320, 1275889695, 'US', 'United States'), +('76.12.136.32', '76.12.136.47', 1275889696, 1275889711, 'CA', 'Canada'), +('76.12.136.48', '76.12.137.47', 1275889712, 1275889967, 'US', 'United States'), +('76.12.137.48', '76.12.137.63', 1275889968, 1275889983, 'DE', 'Germany'), +('76.12.137.64', '76.12.137.119', 1275889984, 1275890039, 'US', 'United States'), +('76.12.137.120', '76.12.137.127', 1275890040, 1275890047, 'CA', 'Canada'), +('76.12.137.128', '76.12.137.167', 1275890048, 1275890087, 'US', 'United States'), +('76.12.137.168', '76.12.137.175', 1275890088, 1275890095, 'GB', 'United Kingdom'), +('76.12.137.176', '76.12.138.15', 1275890096, 1275890191, 'US', 'United States'), +('76.12.138.16', '76.12.138.31', 1275890192, 1275890207, 'SA', 'Saudi Arabia'), +('76.12.138.32', '76.12.138.183', 1275890208, 1275890359, 'US', 'United States'), +('76.12.138.184', '76.12.138.191', 1275890360, 1275890367, 'CA', 'Canada'), +('76.12.138.192', '76.12.138.247', 1275890368, 1275890423, 'US', 'United States'), +('76.12.138.248', '76.12.138.255', 1275890424, 1275890431, 'NL', 'Netherlands'), +('76.12.139.0', '76.12.139.255', 1275890432, 1275890687, 'US', 'United States'), +('76.12.140.0', '76.12.140.15', 1275890688, 1275890703, 'DE', 'Germany'), +('76.12.140.16', '76.12.140.47', 1275890704, 1275890735, 'US', 'United States'), +('76.12.140.48', '76.12.140.63', 1275890736, 1275890751, 'NL', 'Netherlands'), +('76.12.140.64', '76.12.141.63', 1275890752, 1275891007, 'US', 'United States'), +('76.12.141.64', '76.12.141.71', 1275891008, 1275891015, 'CA', 'Canada'), +('76.12.141.72', '76.12.141.119', 1275891016, 1275891063, 'US', 'United States'), +('76.12.141.120', '76.12.141.127', 1275891064, 1275891071, 'LB', 'Lebanon'), +('76.12.141.128', '76.12.141.247', 1275891072, 1275891191, 'US', 'United States'), +('76.12.141.248', '76.12.141.255', 1275891192, 1275891199, 'DE', 'Germany'), +('76.12.142.0', '76.12.143.7', 1275891200, 1275891463, 'US', 'United States'), +('76.12.143.8', '76.12.143.15', 1275891464, 1275891471, 'IE', 'Ireland'), +('76.12.143.16', '76.12.143.55', 1275891472, 1275891511, 'US', 'United States'), +('76.12.143.56', '76.12.143.63', 1275891512, 1275891519, 'AU', 'Australia'), +('76.12.143.64', '76.12.146.31', 1275891520, 1275892255, 'US', 'United States'), +('76.12.146.32', '76.12.146.55', 1275892256, 1275892279, 'DK', 'Denmark'), +('76.12.146.56', '76.12.146.199', 1275892280, 1275892423, 'US', 'United States'), +('76.12.146.200', '76.12.146.207', 1275892424, 1275892431, 'GB', 'United Kingdom'), +('76.12.146.208', '76.12.147.255', 1275892432, 1275892735, 'US', 'United States'), +('76.12.148.0', '76.12.148.31', 1275892736, 1275892767, 'GB', 'United Kingdom'), +('76.12.148.32', '76.12.148.215', 1275892768, 1275892951, 'US', 'United States'), +('76.12.148.216', '76.12.148.231', 1275892952, 1275892967, 'GB', 'United Kingdom'), +('76.12.148.232', '76.12.150.55', 1275892968, 1275893303, 'US', 'United States'), +('76.12.150.56', '76.12.150.63', 1275893304, 1275893311, 'CA', 'Canada'), +('76.12.150.64', '76.12.150.207', 1275893312, 1275893455, 'US', 'United States'), +('76.12.150.208', '76.12.150.215', 1275893456, 1275893463, 'MX', 'Mexico'), +('76.12.150.216', '76.12.151.159', 1275893464, 1275893663, 'US', 'United States'), +('76.12.151.160', '76.12.151.175', 1275893664, 1275893679, 'CA', 'Canada'), +('76.12.151.176', '76.12.152.15', 1275893680, 1275893775, 'US', 'United States'), +('76.12.152.16', '76.12.152.31', 1275893776, 1275893791, 'MX', 'Mexico'), +('76.12.152.32', '76.12.154.55', 1275893792, 1275894327, 'US', 'United States'), +('76.12.154.56', '76.12.154.63', 1275894328, 1275894335, 'GB', 'United Kingdom'), +('76.12.154.64', '76.12.154.111', 1275894336, 1275894383, 'US', 'United States'), +('76.12.154.112', '76.12.154.127', 1275894384, 1275894399, 'GB', 'United Kingdom'), +('76.12.154.128', '76.12.154.247', 1275894400, 1275894519, 'US', 'United States'), +('76.12.154.248', '76.12.154.255', 1275894520, 1275894527, 'AU', 'Australia'), +('76.12.155.0', '76.12.156.47', 1275894528, 1275894831, 'US', 'United States'), +('76.12.156.48', '76.12.156.79', 1275894832, 1275894863, 'AU', 'Australia'), +('76.12.156.80', '76.12.156.239', 1275894864, 1275895023, 'US', 'United States'), +('76.12.156.240', '76.12.156.255', 1275895024, 1275895039, 'CA', 'Canada'), +('76.12.157.0', '76.12.157.55', 1275895040, 1275895095, 'US', 'United States'), +('76.12.157.56', '76.12.157.63', 1275895096, 1275895103, 'CG', 'Congo'), +('76.12.157.64', '76.12.157.95', 1275895104, 1275895135, 'US', 'United States'), +('76.12.157.96', '76.12.157.103', 1275895136, 1275895143, 'SA', 'Saudi Arabia'), +('76.12.157.104', '76.12.157.119', 1275895144, 1275895159, 'US', 'United States'), +('76.12.157.120', '76.12.157.127', 1275895160, 1275895167, 'CA', 'Canada'), +('76.12.157.128', '76.12.157.151', 1275895168, 1275895191, 'US', 'United States'), +('76.12.157.152', '76.12.157.159', 1275895192, 1275895199, 'GB', 'United Kingdom'), +('76.12.157.160', '76.12.157.223', 1275895200, 1275895263, 'US', 'United States'), +('76.12.157.224', '76.12.157.231', 1275895264, 1275895271, 'NG', 'Nigeria'), +('76.12.157.232', '76.12.164.119', 1275895272, 1275896951, 'US', 'United States'), +('76.12.164.120', '76.12.164.127', 1275896952, 1275896959, 'PK', 'Pakistan'), +('76.12.164.128', '76.12.169.135', 1275896960, 1275898247, 'US', 'United States'), +('76.12.169.136', '76.12.169.143', 1275898248, 1275898255, 'IT', 'Italy'), +('76.12.169.144', '76.12.169.207', 1275898256, 1275898319, 'US', 'United States'), +('76.12.169.208', '76.12.169.223', 1275898320, 1275898335, 'IT', 'Italy'), +('76.12.169.224', '76.12.171.159', 1275898336, 1275898783, 'US', 'United States'), +('76.12.171.160', '76.12.171.167', 1275898784, 1275898791, 'AU', 'Australia'), +('76.12.171.168', '76.12.171.175', 1275898792, 1275898799, 'US', 'United States'), +('76.12.171.176', '76.12.171.183', 1275898800, 1275898807, 'AU', 'Australia'), +('76.12.171.184', '76.12.173.87', 1275898808, 1275899223, 'US', 'United States'), +('76.12.173.88', '76.12.173.95', 1275899224, 1275899231, 'PT', 'Portugal'), +('76.12.173.96', '76.12.175.239', 1275899232, 1275899887, 'US', 'United States'), +('76.12.175.240', '76.12.175.255', 1275899888, 1275899903, 'NO', 'Norway'), +('76.12.176.0', '76.12.176.47', 1275899904, 1275899951, 'US', 'United States'), +('76.12.176.48', '76.12.176.63', 1275899952, 1275899967, 'NG', 'Nigeria'), +('76.12.176.64', '76.12.176.103', 1275899968, 1275900007, 'US', 'United States'), +('76.12.176.104', '76.12.176.111', 1275900008, 1275900015, 'ZA', 'South Africa'), +('76.12.176.112', '76.12.177.111', 1275900016, 1275900271, 'US', 'United States'), +('76.12.177.112', '76.12.177.127', 1275900272, 1275900287, 'GB', 'United Kingdom'), +('76.12.177.128', '76.12.178.39', 1275900288, 1275900455, 'US', 'United States'), +('76.12.178.40', '76.12.178.63', 1275900456, 1275900479, 'AU', 'Australia'), +('76.12.178.64', '76.12.180.79', 1275900480, 1275901007, 'US', 'United States'), +('76.12.180.80', '76.12.180.95', 1275901008, 1275901023, 'PT', 'Portugal'), +('76.12.180.96', '76.12.180.207', 1275901024, 1275901135, 'US', 'United States'), +('76.12.180.208', '76.12.180.215', 1275901136, 1275901143, 'IL', 'Israel'), +('76.12.180.216', '76.12.181.255', 1275901144, 1275901439, 'US', 'United States'), +('76.12.182.0', '76.12.182.15', 1275901440, 1275901455, 'GB', 'United Kingdom'), +('76.12.182.16', '76.12.182.71', 1275901456, 1275901511, 'US', 'United States'), +('76.12.182.72', '76.12.182.79', 1275901512, 1275901519, 'MX', 'Mexico'), +('76.12.182.80', '76.12.183.87', 1275901520, 1275901783, 'US', 'United States'), +('76.12.183.88', '76.12.183.95', 1275901784, 1275901791, 'NG', 'Nigeria'), +('76.12.183.96', '76.12.184.39', 1275901792, 1275901991, 'US', 'United States'), +('76.12.184.40', '76.12.184.63', 1275901992, 1275902015, 'NG', 'Nigeria'), +('76.12.184.64', '76.12.184.79', 1275902016, 1275902031, 'US', 'United States'), +('76.12.184.80', '76.12.184.87', 1275902032, 1275902039, 'GB', 'United Kingdom'), +('76.12.184.88', '76.12.184.95', 1275902040, 1275902047, 'US', 'United States'), +('76.12.184.96', '76.12.184.127', 1275902048, 1275902079, 'GB', 'United Kingdom'), +('76.12.184.128', '76.12.184.143', 1275902080, 1275902095, 'CR', 'Costa Rica'), +('76.12.184.144', '76.12.184.167', 1275902096, 1275902119, 'US', 'United States'), +('76.12.184.168', '76.12.184.175', 1275902120, 1275902127, 'NG', 'Nigeria'), +('76.12.184.176', '76.12.185.95', 1275902128, 1275902303, 'US', 'United States'), +('76.12.185.96', '76.12.185.103', 1275902304, 1275902311, 'CA', 'Canada'), +('76.12.185.104', '76.12.185.127', 1275902312, 1275902335, 'US', 'United States'), +('76.12.185.128', '76.12.185.135', 1275902336, 1275902343, 'PK', 'Pakistan'), +('76.12.185.136', '76.12.185.175', 1275902344, 1275902383, 'US', 'United States'), +('76.12.185.176', '76.12.185.183', 1275902384, 1275902391, 'CA', 'Canada'), +('76.12.185.184', '76.12.191.31', 1275902392, 1275903775, 'US', 'United States'), +('76.12.191.32', '76.12.191.95', 1275903776, 1275903839, 'NO', 'Norway'), +('76.12.191.96', '76.12.191.119', 1275903840, 1275903863, 'US', 'United States'), +('76.12.191.120', '76.12.191.127', 1275903864, 1275903871, 'CA', 'Canada'), +('76.12.191.128', '76.12.195.55', 1275903872, 1275904823, 'US', 'United States'), +('76.12.195.56', '76.12.195.63', 1275904824, 1275904831, 'NG', 'Nigeria'), +('76.12.195.64', '76.12.195.223', 1275904832, 1275904991, 'US', 'United States'), +('76.12.195.224', '76.12.195.255', 1275904992, 1275905023, 'CA', 'Canada'), +('76.12.196.0', '76.12.198.231', 1275905024, 1275905767, 'US', 'United States'), +('76.12.198.232', '76.12.198.247', 1275905768, 1275905783, 'GB', 'United Kingdom'), +('76.12.198.248', '76.12.198.255', 1275905784, 1275905791, 'ZA', 'South Africa'), +('76.12.199.0', '76.12.201.39', 1275905792, 1275906343, 'US', 'United States'), +('76.12.201.40', '76.12.201.47', 1275906344, 1275906351, 'CA', 'Canada'), +('76.12.201.48', '76.12.203.255', 1275906352, 1275907071, 'US', 'United States'), +('76.12.204.0', '76.12.204.7', 1275907072, 1275907079, 'CA', 'Canada'), +('76.12.204.8', '76.12.207.71', 1275907080, 1275907911, 'US', 'United States'), +('76.12.207.72', '76.12.207.79', 1275907912, 1275907919, 'HK', 'Hong Kong'), +('76.12.207.80', '76.12.209.79', 1275907920, 1275908431, 'US', 'United States'), +('76.12.209.80', '76.12.209.95', 1275908432, 1275908447, 'GB', 'United Kingdom'), +('76.12.209.96', '76.12.213.63', 1275908448, 1275909439, 'US', 'United States'), +('76.12.213.64', '76.12.213.79', 1275909440, 1275909455, 'GB', 'United Kingdom'), +('76.12.213.80', '76.12.216.63', 1275909456, 1275910207, 'US', 'United States'), +('76.12.216.64', '76.12.216.79', 1275910208, 1275910223, 'PA', 'Panama'), +('76.12.216.80', '76.12.217.103', 1275910224, 1275910503, 'US', 'United States'), +('76.12.217.104', '76.12.217.111', 1275910504, 1275910511, 'IN', 'India'), +('76.12.217.112', '76.12.217.231', 1275910512, 1275910631, 'US', 'United States'), +('76.12.217.232', '76.12.217.239', 1275910632, 1275910639, 'ZA', 'South Africa'), +('76.12.217.240', '76.12.221.231', 1275910640, 1275911655, 'US', 'United States'), +('76.12.221.232', '76.12.221.239', 1275911656, 1275911663, 'CA', 'Canada'), +('76.12.221.240', '76.12.222.255', 1275911664, 1275911935, 'US', 'United States'), +('76.12.223.0', '76.12.223.31', 1275911936, 1275911967, 'CA', 'Canada'), +('76.12.223.32', '76.12.226.55', 1275911968, 1275912759, 'US', 'United States'), +('76.12.226.56', '76.12.226.79', 1275912760, 1275912783, 'CA', 'Canada'), +('76.12.226.80', '76.12.226.95', 1275912784, 1275912799, 'AU', 'Australia'), +('76.12.226.96', '76.12.226.175', 1275912800, 1275912879, 'US', 'United States'), +('76.12.226.176', '76.12.226.183', 1275912880, 1275912887, 'PT', 'Portugal'), +('76.12.226.184', '76.12.231.151', 1275912888, 1275914135, 'US', 'United States'), +('76.12.231.152', '76.12.231.159', 1275914136, 1275914143, 'AU', 'Australia'), +('76.12.231.160', '76.12.237.135', 1275914144, 1275915655, 'US', 'United States'), +('76.12.237.136', '76.12.237.143', 1275915656, 1275915663, 'MX', 'Mexico'), +('76.12.237.144', '76.12.239.135', 1275915664, 1275916167, 'US', 'United States'), +('76.12.239.136', '76.12.239.167', 1275916168, 1275916199, 'CA', 'Canada'), +('76.12.239.168', '76.12.240.63', 1275916200, 1275916351, 'US', 'United States'), +('76.12.240.64', '76.12.240.95', 1275916352, 1275916383, 'NL', 'Netherlands'), +('76.12.240.96', '76.12.242.87', 1275916384, 1275916887, 'US', 'United States'), +('76.12.242.88', '76.12.242.95', 1275916888, 1275916895, 'CA', 'Canada'), +('76.12.242.96', '76.12.248.95', 1275916896, 1275918431, 'US', 'United States'), +('76.12.248.96', '76.12.248.127', 1275918432, 1275918463, 'PK', 'Pakistan'), +('76.12.248.128', '76.12.248.143', 1275918464, 1275918479, 'IN', 'India'), +('76.12.248.144', '76.12.249.127', 1275918480, 1275918719, 'US', 'United States'), +('76.12.249.128', '76.12.249.143', 1275918720, 1275918735, 'CA', 'Canada'), +('76.12.249.144', '76.12.249.215', 1275918736, 1275918807, 'US', 'United States'), +('76.12.249.216', '76.12.249.223', 1275918808, 1275918815, 'NG', 'Nigeria'), +('76.12.249.224', '76.12.251.159', 1275918816, 1275919263, 'US', 'United States'), +('76.12.251.160', '76.12.251.183', 1275919264, 1275919287, 'IE', 'Ireland'), +('76.12.251.184', '76.12.254.39', 1275919288, 1275919911, 'US', 'United States'), +('76.12.254.40', '76.12.254.47', 1275919912, 1275919919, 'BR', 'Brazil'), +('76.12.254.48', '76.12.254.63', 1275919920, 1275919935, 'US', 'United States'), +('76.12.254.64', '76.12.254.95', 1275919936, 1275919967, 'BR', 'Brazil'), +('76.12.254.96', '76.12.254.127', 1275919968, 1275919999, 'IE', 'Ireland'), +('76.12.254.128', '76.12.254.143', 1275920000, 1275920015, 'GB', 'United Kingdom'), +('76.12.254.144', '76.12.254.159', 1275920016, 1275920031, 'CH', 'Switzerland'), +('76.12.254.160', '76.12.254.183', 1275920032, 1275920055, 'US', 'United States'), +('76.12.254.184', '76.12.254.191', 1275920056, 1275920063, 'GB', 'United Kingdom'), +('76.12.254.192', '76.12.254.207', 1275920064, 1275920079, 'US', 'United States'), +('76.12.254.208', '76.12.254.223', 1275920080, 1275920095, 'CA', 'Canada'), +('76.12.254.224', '76.63.255.255', 1275920096, 1279262719, 'US', 'United States'), +('76.64.0.0', '76.71.255.255', 1279262720, 1279787007, 'CA', 'Canada'), +('76.72.0.0', '76.74.89.15', 1279787008, 1279940879, 'US', 'United States'), +('76.74.89.16', '76.74.89.23', 1279940880, 1279940887, 'DE', 'Germany'), +('76.74.89.24', '76.74.89.79', 1279940888, 1279940943, 'US', 'United States'), +('76.74.89.80', '76.74.89.95', 1279940944, 1279940959, 'DE', 'Germany'), +('76.74.89.96', '76.74.89.127', 1279940960, 1279940991, 'US', 'United States'), +('76.74.89.128', '76.74.89.135', 1279940992, 1279940999, 'DE', 'Germany'), +('76.74.89.136', '76.74.99.255', 1279941000, 1279943679, 'US', 'United States'), +('76.74.100.0', '76.74.100.63', 1279943680, 1279943743, 'PR', 'Puerto Rico'), +('76.74.100.64', '76.74.129.31', 1279943744, 1279951135, 'US', 'United States'), +('76.74.129.32', '76.74.129.47', 1279951136, 1279951151, 'CA', 'Canada'), +('76.74.129.48', '76.74.130.255', 1279951152, 1279951615, 'US', 'United States'), +('76.74.131.0', '76.74.136.15', 1279951616, 1279952911, 'CA', 'Canada'), +('76.74.136.16', '76.74.136.47', 1279952912, 1279952943, 'US', 'United States'), +('76.74.136.48', '76.74.136.63', 1279952944, 1279952959, 'CA', 'Canada'), +('76.74.136.64', '76.74.136.191', 1279952960, 1279953087, 'US', 'United States'), +('76.74.136.192', '76.74.136.223', 1279953088, 1279953119, 'CA', 'Canada'), +('76.74.136.224', '76.74.136.255', 1279953120, 1279953151, 'US', 'United States'), +('76.74.137.0', '76.74.139.7', 1279953152, 1279953671, 'CA', 'Canada'), +('76.74.139.8', '76.74.139.15', 1279953672, 1279953679, 'US', 'United States'), +('76.74.139.16', '76.74.139.63', 1279953680, 1279953727, 'CA', 'Canada'), +('76.74.139.64', '76.74.139.255', 1279953728, 1279953919, 'US', 'United States'), +('76.74.140.0', '76.74.140.31', 1279953920, 1279953951, 'CA', 'Canada'), +('76.74.140.32', '76.74.140.47', 1279953952, 1279953967, 'US', 'United States'), +('76.74.140.48', '76.74.140.55', 1279953968, 1279953975, 'CA', 'Canada'), +('76.74.140.56', '76.74.140.63', 1279953976, 1279953983, 'US', 'United States'), +('76.74.140.64', '76.74.140.175', 1279953984, 1279954095, 'CA', 'Canada'), +('76.74.140.176', '76.74.140.199', 1279954096, 1279954119, 'US', 'United States'), +('76.74.140.200', '76.74.141.127', 1279954120, 1279954303, 'CA', 'Canada'), +('76.74.141.128', '76.74.141.255', 1279954304, 1279954431, 'US', 'United States'), +('76.74.142.0', '76.74.142.95', 1279954432, 1279954527, 'CA', 'Canada'), +('76.74.142.96', '76.74.142.127', 1279954528, 1279954559, 'US', 'United States'), +('76.74.142.128', '76.74.142.191', 1279954560, 1279954623, 'CA', 'Canada'), +('76.74.142.192', '76.74.142.255', 1279954624, 1279954687, 'FI', 'Finland'), +('76.74.143.0', '76.74.143.31', 1279954688, 1279954719, 'CA', 'Canada'), +('76.74.143.32', '76.74.143.47', 1279954720, 1279954735, 'US', 'United States'), +('76.74.143.48', '76.74.143.95', 1279954736, 1279954783, 'CA', 'Canada'), +('76.74.143.96', '76.74.143.151', 1279954784, 1279954839, 'US', 'United States'), +('76.74.143.152', '76.74.143.255', 1279954840, 1279954943, 'CA', 'Canada'), +('76.74.144.0', '76.74.147.127', 1279954944, 1279955839, 'US', 'United States'), +('76.74.147.128', '76.74.147.159', 1279955840, 1279955871, 'GB', 'United Kingdom'), +('76.74.147.160', '76.74.148.63', 1279955872, 1279956031, 'US', 'United States'), +('76.74.148.64', '76.74.148.79', 1279956032, 1279956047, 'CR', 'Costa Rica'), +('76.74.148.80', '76.74.148.111', 1279956048, 1279956079, 'US', 'United States'), +('76.74.148.112', '76.74.148.127', 1279956080, 1279956095, 'CR', 'Costa Rica'), +('76.74.148.128', '76.74.149.15', 1279956096, 1279956239, 'US', 'United States'), +('76.74.149.16', '76.74.149.31', 1279956240, 1279956255, 'CA', 'Canada'), +('76.74.149.32', '76.74.149.87', 1279956256, 1279956311, 'US', 'United States'), +('76.74.149.88', '76.74.149.127', 1279956312, 1279956351, 'CA', 'Canada'), +('76.74.149.128', '76.74.163.255', 1279956352, 1279960063, 'US', 'United States'), +('76.74.164.0', '76.74.164.63', 1279960064, 1279960127, 'CA', 'Canada'), +('76.74.164.64', '76.74.164.79', 1279960128, 1279960143, 'US', 'United States'), +('76.74.164.80', '76.74.164.87', 1279960144, 1279960151, 'CA', 'Canada'), +('76.74.164.88', '76.74.164.151', 1279960152, 1279960215, 'US', 'United States'), +('76.74.164.152', '76.74.164.255', 1279960216, 1279960319, 'CA', 'Canada'), +('76.74.165.0', '76.74.165.95', 1279960320, 1279960415, 'US', 'United States'), +('76.74.165.96', '76.74.165.159', 1279960416, 1279960479, 'CA', 'Canada'), +('76.74.165.160', '76.74.165.191', 1279960480, 1279960511, 'US', 'United States'), +('76.74.165.192', '76.74.165.207', 1279960512, 1279960527, 'CA', 'Canada'), +('76.74.165.208', '76.74.165.223', 1279960528, 1279960543, 'US', 'United States'), +('76.74.165.224', '76.74.165.239', 1279960544, 1279960559, 'CA', 'Canada'), +('76.74.165.240', '76.74.170.255', 1279960560, 1279961855, 'US', 'United States'), +('76.74.171.0', '76.74.171.63', 1279961856, 1279961919, 'CA', 'Canada'), +('76.74.171.64', '76.74.172.63', 1279961920, 1279962175, 'US', 'United States'), +('76.74.172.64', '76.74.172.95', 1279962176, 1279962207, 'CA', 'Canada'), +('76.74.172.96', '76.74.172.111', 1279962208, 1279962223, 'US', 'United States'), +('76.74.172.112', '76.74.172.127', 1279962224, 1279962239, 'CA', 'Canada'), +('76.74.172.128', '76.74.175.15', 1279962240, 1279962895, 'US', 'United States'), +('76.74.175.16', '76.74.175.31', 1279962896, 1279962911, 'CA', 'Canada'), +('76.74.175.32', '76.74.175.47', 1279962912, 1279962927, 'CN', 'China'), +('76.74.175.48', '76.74.175.63', 1279962928, 1279962943, 'US', 'United States'), +('76.74.175.64', '76.74.175.95', 1279962944, 1279962975, 'CN', 'China'), +('76.74.175.96', '76.74.183.255', 1279962976, 1279965183, 'US', 'United States'), +('76.74.184.0', '76.74.187.255', 1279965184, 1279966207, 'CA', 'Canada'), +('76.74.188.0', '76.74.208.255', 1279966208, 1279971583, 'US', 'United States'), +('76.74.209.0', '76.74.209.255', 1279971584, 1279971839, 'CA', 'Canada'), +('76.74.210.0', '76.74.221.127', 1279971840, 1279974783, 'US', 'United States'), +('76.74.221.128', '76.74.221.143', 1279974784, 1279974799, 'EG', 'Egypt'), +('76.74.221.144', '76.74.221.151', 1279974800, 1279974807, 'CA', 'Canada'), +('76.74.221.152', '76.74.223.95', 1279974808, 1279975263, 'US', 'United States'), +('76.74.223.96', '76.74.223.127', 1279975264, 1279975295, 'EG', 'Egypt'), +('76.74.223.128', '76.74.223.239', 1279975296, 1279975407, 'US', 'United States'), +('76.74.223.240', '76.74.223.255', 1279975408, 1279975423, 'NZ', 'New Zealand'), +('76.74.224.0', '76.74.224.255', 1279975424, 1279975679, 'CA', 'Canada'), +('76.74.225.0', '76.74.226.191', 1279975680, 1279976127, 'US', 'United States'), +('76.74.226.192', '76.74.226.207', 1279976128, 1279976143, 'CA', 'Canada'), +('76.74.226.208', '76.74.226.223', 1279976144, 1279976159, 'US', 'United States'), +('76.74.226.224', '76.74.229.255', 1279976160, 1279976959, 'CA', 'Canada'), +('76.74.230.0', '76.74.230.255', 1279976960, 1279977215, 'US', 'United States'), +('76.74.231.0', '76.74.234.127', 1279977216, 1279978111, 'CA', 'Canada'), +('76.74.234.128', '76.74.235.95', 1279978112, 1279978335, 'US', 'United States'), +('76.74.235.96', '76.74.235.127', 1279978336, 1279978367, 'CA', 'Canada'), +('76.74.235.128', '76.74.240.47', 1279978368, 1279979567, 'US', 'United States'), +('76.74.240.48', '76.74.240.55', 1279979568, 1279979575, 'CA', 'Canada'), +('76.74.240.56', '76.74.240.63', 1279979576, 1279979583, 'US', 'United States'), +('76.74.240.64', '76.74.242.31', 1279979584, 1279980063, 'CA', 'Canada'), +('76.74.242.32', '76.74.242.39', 1279980064, 1279980071, 'US', 'United States'), +('76.74.242.40', '76.74.242.47', 1279980072, 1279980079, 'BV', 'Bouvet Island'), +('76.74.242.48', '76.74.242.95', 1279980080, 1279980127, 'CA', 'Canada'), +('76.74.242.96', '76.74.242.103', 1279980128, 1279980135, 'US', 'United States'), +('76.74.242.104', '76.74.242.255', 1279980136, 1279980287, 'CA', 'Canada'), +('76.74.243.0', '76.74.243.255', 1279980288, 1279980543, 'US', 'United States'), +('76.74.244.0', '76.74.247.255', 1279980544, 1279981567, 'CA', 'Canada'), +('76.74.248.0', '76.75.63.255', 1279981568, 1279999999, 'US', 'United States'), +('76.75.64.0', '76.75.191.255', 1280000000, 1280032767, 'CA', 'Canada'), +('76.75.192.0', '76.75.223.255', 1280032768, 1280040959, 'US', 'United States'), +('76.75.224.0', '76.75.255.255', 1280040960, 1280049151, 'CA', 'Canada'), +('76.76.0.0', '76.76.95.255', 1280049152, 1280073727, 'US', 'United States'), +('76.76.96.0', '76.76.99.183', 1280073728, 1280074679, 'CA', 'Canada'), +('76.76.99.184', '76.76.99.191', 1280074680, 1280074687, 'US', 'United States'), +('76.76.99.192', '76.76.127.255', 1280074688, 1280081919, 'CA', 'Canada'), +('76.76.128.0', '76.76.159.255', 1280081920, 1280090111, 'US', 'United States'), +('76.76.160.0', '76.76.163.255', 1280090112, 1280091135, 'AI', 'Anguilla'), +('76.76.164.0', '76.76.167.255', 1280091136, 1280092159, 'AG', 'Antigua and Barbuda'), +('76.76.168.0', '76.76.171.255', 1280092160, 1280093183, 'KN', 'Saint Kitts and Nevis'), +('76.76.172.0', '76.76.187.255', 1280093184, 1280097279, 'AG', 'Antigua and Barbuda'), +('76.76.188.0', '76.76.189.255', 1280097280, 1280097791, 'LC', 'Saint Lucia'), +('76.76.190.0', '76.76.191.255', 1280097792, 1280098303, 'AG', 'Antigua and Barbuda'), +('76.76.192.0', '76.76.207.255', 1280098304, 1280102399, 'PR', 'Puerto Rico'), +('76.76.208.0', '76.77.63.255', 1280102400, 1280131071, 'US', 'United States'), +('76.77.64.0', '76.77.95.255', 1280131072, 1280139263, 'CA', 'Canada'), +('76.77.96.0', '76.195.115.127', 1280139264, 1287877503, 'US', 'United States'), +('76.195.115.128', '76.195.115.191', 1287877504, 1287877567, 'UM', 'United States Minor Outlying Islands'), +('76.195.115.192', '76.255.255.255', 1287877568, 1291845631, 'US', 'United States'), +('77.0.0.0', '77.15.255.255', 1291845632, 1292894207, 'DE', 'Germany'), +('77.16.0.0', '77.19.255.255', 1292894208, 1293156351, 'NO', 'Norway'), +('77.20.0.0', '77.25.255.255', 1293156352, 1293549567, 'DE', 'Germany'), +('77.26.0.0', '77.27.255.255', 1293549568, 1293680639, 'ES', 'Spain'), +('77.28.0.0', '77.29.255.255', 1293680640, 1293811711, 'MK', 'Macedonia'), +('77.30.0.0', '77.31.255.255', 1293811712, 1293942783, 'SA', 'Saudi Arabia'), +('77.32.0.0', '77.33.255.255', 1293942784, 1294073855, 'PL', 'Poland'), +('77.34.0.0', '77.35.255.255', 1294073856, 1294204927, 'RU', 'Russian Federation'), +('77.36.0.0', '77.36.127.255', 1294204928, 1294237695, 'RO', 'Romania'), +('77.36.128.0', '77.36.255.255', 1294237696, 1294270463, 'IR', 'Iran, Islamic Republic of'), +('77.37.0.0', '77.37.127.255', 1294270464, 1294303231, 'DE', 'Germany'), +('77.37.128.0', '77.37.255.255', 1294303232, 1294335999, 'RU', 'Russian Federation'), +('77.38.0.0', '77.38.127.255', 1294336000, 1294368767, 'SI', 'Slovenia'), +('77.38.128.0', '77.38.255.255', 1294368768, 1294401535, 'LV', 'Latvia'), +('77.39.0.0', '77.39.127.255', 1294401536, 1294434303, 'RU', 'Russian Federation'), +('77.39.128.0', '77.39.255.255', 1294434304, 1294467071, 'IT', 'Italy'), +('77.40.0.0', '77.40.127.255', 1294467072, 1294499839, 'RU', 'Russian Federation'), +('77.40.128.0', '77.40.255.255', 1294499840, 1294532607, 'NO', 'Norway'), +('77.41.0.0', '77.41.255.255', 1294532608, 1294598143, 'RU', 'Russian Federation'), +('77.42.0.0', '77.42.127.255', 1294598144, 1294630911, 'IT', 'Italy'), +('77.42.128.0', '77.42.255.255', 1294630912, 1294663679, 'LB', 'Lebanon'), +('77.43.0.0', '77.43.127.255', 1294663680, 1294696447, 'IT', 'Italy'), +('77.43.128.0', '77.43.255.255', 1294696448, 1294729215, 'RU', 'Russian Federation'), +('77.44.0.0', '77.44.127.255', 1294729216, 1294761983, 'GB', 'United Kingdom'), +('77.44.128.0', '77.44.255.255', 1294761984, 1294794751, 'SY', 'Syrian Arab Republic'), +('77.45.0.0', '77.45.127.255', 1294794752, 1294827519, 'PL', 'Poland'), +('77.45.128.0', '77.45.255.255', 1294827520, 1294860287, 'RU', 'Russian Federation'), +('77.46.0.0', '77.46.127.255', 1294860288, 1294893055, 'PL', 'Poland'), +('77.46.128.0', '77.46.255.255', 1294893056, 1294925823, 'RS', 'Serbia'), +('77.47.0.0', '77.47.127.255', 1294925824, 1294958591, 'DE', 'Germany'), +('77.47.128.0', '77.47.255.255', 1294958592, 1294991359, 'UA', 'Ukraine'), +('77.48.0.0', '77.48.27.255', 1294991360, 1294998527, 'CZ', 'Czech Republic'), +('77.48.28.0', '77.48.28.63', 1294998528, 1294998591, 'SK', 'Slovakia'), +('77.48.28.64', '77.48.68.255', 1294998592, 1295009023, 'CZ', 'Czech Republic'), +('77.48.69.0', '77.48.70.127', 1295009024, 1295009407, 'SK', 'Slovakia'), +('77.48.70.128', '77.48.219.255', 1295009408, 1295047679, 'CZ', 'Czech Republic'), +('77.48.220.0', '77.48.221.255', 1295047680, 1295048191, 'SK', 'Slovakia'), +('77.48.222.0', '77.48.255.255', 1295048192, 1295056895, 'CZ', 'Czech Republic'), +('77.49.0.0', '77.49.255.255', 1295056896, 1295122431, 'GR', 'Greece'), +('77.50.0.0', '77.51.255.255', 1295122432, 1295253503, 'RU', 'Russian Federation'), +('77.52.0.0', '77.52.255.255', 1295253504, 1295319039, 'UA', 'Ukraine'), +('77.53.0.0', '77.53.255.255', 1295319040, 1295384575, 'SE', 'Sweden'), +('77.54.0.0', '77.54.255.255', 1295384576, 1295450111, 'PT', 'Portugal'), +('77.55.0.0', '77.55.255.255', 1295450112, 1295515647, 'PL', 'Poland'), +('77.56.0.0', '77.59.255.255', 1295515648, 1295777791, 'CH', 'Switzerland'), +('77.60.0.0', '77.63.255.255', 1295777792, 1296039935, 'NL', 'Netherlands'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('77.64.0.0', '77.64.127.255', 1296039936, 1296072703, 'SA', 'Saudi Arabia'), +('77.64.128.0', '77.64.255.255', 1296072704, 1296105471, 'DE', 'Germany'), +('77.65.0.0', '77.65.255.255', 1296105472, 1296171007, 'PL', 'Poland'), +('77.66.0.0', '77.66.2.79', 1296171008, 1296171599, 'DK', 'Denmark'), +('77.66.2.80', '77.66.2.80', 1296171600, 1296171600, 'DE', 'Germany'), +('77.66.2.81', '77.66.2.81', 1296171601, 1296171601, 'GB', 'United Kingdom'), +('77.66.2.82', '77.66.41.239', 1296171602, 1296181743, 'DK', 'Denmark'), +('77.66.41.240', '77.66.41.247', 1296181744, 1296181751, 'GB', 'United Kingdom'), +('77.66.41.248', '77.66.127.255', 1296181752, 1296203775, 'DK', 'Denmark'), +('77.66.128.0', '77.66.255.255', 1296203776, 1296236543, 'RU', 'Russian Federation'), +('77.67.0.0', '77.67.0.127', 1296236544, 1296236671, 'FR', 'France'), +('77.67.0.128', '77.67.0.255', 1296236672, 1296236799, 'US', 'United States'), +('77.67.1.0', '77.67.1.255', 1296236800, 1296237055, 'GB', 'United Kingdom'), +('77.67.2.0', '77.67.2.255', 1296237056, 1296237311, 'FR', 'France'), +('77.67.3.0', '77.67.3.255', 1296237312, 1296237567, 'US', 'United States'), +('77.67.4.0', '77.67.4.255', 1296237568, 1296237823, 'NL', 'Netherlands'), +('77.67.5.0', '77.67.5.255', 1296237824, 1296238079, 'ES', 'Spain'), +('77.67.6.0', '77.67.9.255', 1296238080, 1296239103, 'NL', 'Netherlands'), +('77.67.10.0', '77.67.10.127', 1296239104, 1296239231, 'FR', 'France'), +('77.67.10.128', '77.67.10.255', 1296239232, 1296239359, 'NL', 'Netherlands'), +('77.67.11.0', '77.67.11.255', 1296239360, 1296239615, 'ES', 'Spain'), +('77.67.12.0', '77.67.17.255', 1296239616, 1296241151, 'BE', 'Belgium'), +('77.67.18.0', '77.67.18.255', 1296241152, 1296241407, 'IT', 'Italy'), +('77.67.19.0', '77.67.21.255', 1296241408, 1296242175, 'NL', 'Netherlands'), +('77.67.22.0', '77.67.22.127', 1296242176, 1296242303, 'DE', 'Germany'), +('77.67.22.128', '77.67.22.255', 1296242304, 1296242431, 'NL', 'Netherlands'), +('77.67.23.0', '77.67.23.255', 1296242432, 1296242687, 'BE', 'Belgium'), +('77.67.24.0', '77.67.25.255', 1296242688, 1296243199, 'US', 'United States'), +('77.67.26.0', '77.67.26.255', 1296243200, 1296243455, 'GB', 'United Kingdom'), +('77.67.27.0', '77.67.27.255', 1296243456, 1296243711, 'US', 'United States'), +('77.67.28.0', '77.67.29.255', 1296243712, 1296244223, 'IT', 'Italy'), +('77.67.30.0', '77.67.30.255', 1296244224, 1296244479, 'NL', 'Netherlands'), +('77.67.31.0', '77.67.31.255', 1296244480, 1296244735, 'GB', 'United Kingdom'), +('77.67.32.0', '77.67.32.255', 1296244736, 1296244991, 'IR', 'Iran, Islamic Republic of'), +('77.67.33.0', '77.67.33.255', 1296244992, 1296245247, 'CH', 'Switzerland'), +('77.67.34.0', '77.67.34.255', 1296245248, 1296245503, 'FR', 'France'), +('77.67.35.0', '77.67.35.255', 1296245504, 1296245759, 'NL', 'Netherlands'), +('77.67.36.0', '77.67.39.255', 1296245760, 1296246783, 'ES', 'Spain'), +('77.67.40.0', '77.67.41.255', 1296246784, 1296247295, 'NL', 'Netherlands'), +('77.67.42.0', '77.67.43.255', 1296247296, 1296247807, 'FR', 'France'), +('77.67.44.0', '77.67.44.63', 1296247808, 1296247871, 'US', 'United States'), +('77.67.44.64', '77.67.44.127', 1296247872, 1296247935, 'FR', 'France'), +('77.67.44.128', '77.67.44.191', 1296247936, 1296247999, 'BE', 'Belgium'), +('77.67.44.192', '77.67.44.255', 1296248000, 1296248063, 'IE', 'Ireland'), +('77.67.45.0', '77.67.45.63', 1296248064, 1296248127, 'NL', 'Netherlands'), +('77.67.45.64', '77.67.45.191', 1296248128, 1296248255, 'IE', 'Ireland'), +('77.67.45.192', '77.67.45.254', 1296248256, 1296248318, 'BE', 'Belgium'), +('77.67.45.255', '77.67.45.255', 1296248319, 1296248319, 'NL', 'Netherlands'), +('77.67.46.0', '77.67.46.63', 1296248320, 1296248383, 'BE', 'Belgium'), +('77.67.46.64', '77.67.46.127', 1296248384, 1296248447, 'NL', 'Netherlands'), +('77.67.46.128', '77.67.46.255', 1296248448, 1296248575, 'US', 'United States'), +('77.67.47.0', '77.67.51.255', 1296248576, 1296249855, 'NL', 'Netherlands'), +('77.67.52.0', '77.67.52.31', 1296249856, 1296249887, 'US', 'United States'), +('77.67.52.32', '77.67.52.63', 1296249888, 1296249919, 'FR', 'France'), +('77.67.52.64', '77.67.52.95', 1296249920, 1296249951, 'BE', 'Belgium'), +('77.67.52.96', '77.67.52.159', 1296249952, 1296250015, 'DE', 'Germany'), +('77.67.52.160', '77.67.52.191', 1296250016, 1296250047, 'IL', 'Israel'), +('77.67.52.192', '77.67.52.223', 1296250048, 1296250079, 'IE', 'Ireland'), +('77.67.52.224', '77.67.52.255', 1296250080, 1296250111, 'IL', 'Israel'), +('77.67.53.0', '77.67.53.31', 1296250112, 1296250143, 'IE', 'Ireland'), +('77.67.53.32', '77.67.53.63', 1296250144, 1296250175, 'GB', 'United Kingdom'), +('77.67.53.64', '77.67.53.95', 1296250176, 1296250207, 'BE', 'Belgium'), +('77.67.53.96', '77.67.53.127', 1296250208, 1296250239, 'ES', 'Spain'), +('77.67.53.128', '77.67.53.159', 1296250240, 1296250271, 'BE', 'Belgium'), +('77.67.53.160', '77.67.57.31', 1296250272, 1296251167, 'NL', 'Netherlands'), +('77.67.57.32', '77.67.57.63', 1296251168, 1296251199, 'HR', 'Croatia'), +('77.67.57.64', '77.67.57.159', 1296251200, 1296251295, 'DE', 'Germany'), +('77.67.57.160', '77.67.57.191', 1296251296, 1296251327, 'BE', 'Belgium'), +('77.67.57.192', '77.67.57.223', 1296251328, 1296251359, 'IE', 'Ireland'), +('77.67.57.224', '77.67.57.255', 1296251360, 1296251391, 'DE', 'Germany'), +('77.67.58.0', '77.67.61.47', 1296251392, 1296252207, 'NL', 'Netherlands'), +('77.67.61.48', '77.67.61.63', 1296252208, 1296252223, 'BG', 'Bulgaria'), +('77.67.61.64', '77.67.61.79', 1296252224, 1296252239, 'GB', 'United Kingdom'), +('77.67.61.80', '77.67.61.95', 1296252240, 1296252255, 'IT', 'Italy'), +('77.67.61.96', '77.67.61.111', 1296252256, 1296252271, 'GB', 'United Kingdom'), +('77.67.61.112', '77.67.61.143', 1296252272, 1296252303, 'FR', 'France'), +('77.67.61.144', '77.67.61.159', 1296252304, 1296252319, 'IL', 'Israel'), +('77.67.61.160', '77.67.61.175', 1296252320, 1296252335, 'NL', 'Netherlands'), +('77.67.61.176', '77.67.61.191', 1296252336, 1296252351, 'FR', 'France'), +('77.67.61.192', '77.67.61.207', 1296252352, 1296252367, 'NL', 'Netherlands'), +('77.67.61.208', '77.67.61.223', 1296252368, 1296252383, 'DE', 'Germany'), +('77.67.61.224', '77.67.61.255', 1296252384, 1296252415, 'IE', 'Ireland'), +('77.67.62.0', '77.67.63.143', 1296252416, 1296252815, 'NL', 'Netherlands'), +('77.67.63.144', '77.67.63.167', 1296252816, 1296252839, 'GB', 'United Kingdom'), +('77.67.63.168', '77.67.63.175', 1296252840, 1296252847, 'DE', 'Germany'), +('77.67.63.176', '77.67.63.183', 1296252848, 1296252855, 'NL', 'Netherlands'), +('77.67.63.184', '77.67.63.199', 1296252856, 1296252871, 'IE', 'Ireland'), +('77.67.63.200', '77.67.63.207', 1296252872, 1296252879, 'BE', 'Belgium'), +('77.67.63.208', '77.67.63.215', 1296252880, 1296252887, 'DE', 'Germany'), +('77.67.63.216', '77.67.63.223', 1296252888, 1296252895, 'IE', 'Ireland'), +('77.67.63.224', '77.67.63.239', 1296252896, 1296252911, 'BE', 'Belgium'), +('77.67.63.240', '77.67.63.247', 1296252912, 1296252919, 'NL', 'Netherlands'), +('77.67.63.248', '77.67.63.255', 1296252920, 1296252927, 'PL', 'Poland'), +('77.67.64.0', '77.67.74.255', 1296252928, 1296255743, 'DE', 'Germany'), +('77.67.75.0', '77.67.83.255', 1296255744, 1296258047, 'NL', 'Netherlands'), +('77.67.84.0', '77.67.84.255', 1296258048, 1296258303, 'TW', 'Taiwan'), +('77.67.85.0', '77.67.87.255', 1296258304, 1296259071, 'NL', 'Netherlands'), +('77.67.88.0', '77.67.90.255', 1296259072, 1296259839, 'US', 'United States'), +('77.67.91.0', '77.67.92.255', 1296259840, 1296260351, 'NL', 'Netherlands'), +('77.67.93.0', '77.67.101.255', 1296260352, 1296262655, 'US', 'United States'), +('77.67.102.0', '77.67.102.255', 1296262656, 1296262911, 'CA', 'Canada'), +('77.67.103.0', '77.67.106.255', 1296262912, 1296263935, 'US', 'United States'), +('77.67.107.0', '77.67.107.7', 1296263936, 1296263943, 'NL', 'Netherlands'), +('77.67.107.8', '77.67.107.55', 1296263944, 1296263991, 'US', 'United States'), +('77.67.107.56', '77.67.107.127', 1296263992, 1296264063, 'NL', 'Netherlands'), +('77.67.107.128', '77.67.107.191', 1296264064, 1296264127, 'GB', 'United Kingdom'), +('77.67.107.192', '77.67.107.255', 1296264128, 1296264191, 'NL', 'Netherlands'), +('77.67.108.0', '77.67.108.31', 1296264192, 1296264223, 'US', 'United States'), +('77.67.108.32', '77.67.108.47', 1296264224, 1296264239, 'IE', 'Ireland'), +('77.67.108.48', '77.67.108.63', 1296264240, 1296264255, 'NL', 'Netherlands'), +('77.67.108.64', '77.67.108.111', 1296264256, 1296264303, 'US', 'United States'), +('77.67.108.112', '77.67.108.127', 1296264304, 1296264319, 'CA', 'Canada'), +('77.67.108.128', '77.67.108.143', 1296264320, 1296264335, 'US', 'United States'), +('77.67.108.144', '77.67.108.255', 1296264336, 1296264447, 'NL', 'Netherlands'), +('77.67.109.0', '77.67.109.95', 1296264448, 1296264543, 'US', 'United States'), +('77.67.109.96', '77.67.109.159', 1296264544, 1296264607, 'CA', 'Canada'), +('77.67.109.160', '77.67.109.255', 1296264608, 1296264703, 'NL', 'Netherlands'), +('77.67.110.0', '77.67.110.255', 1296264704, 1296264959, 'US', 'United States'), +('77.67.111.0', '77.67.111.127', 1296264960, 1296265087, 'NL', 'Netherlands'), +('77.67.111.128', '77.67.111.191', 1296265088, 1296265151, 'CA', 'Canada'), +('77.67.111.192', '77.67.111.255', 1296265152, 1296265215, 'FR', 'France'), +('77.67.112.0', '77.67.120.255', 1296265216, 1296267519, 'US', 'United States'), +('77.67.121.0', '77.67.121.255', 1296267520, 1296267775, 'CA', 'Canada'), +('77.67.122.0', '77.67.125.255', 1296267776, 1296268799, 'US', 'United States'), +('77.67.126.0', '77.67.127.255', 1296268800, 1296269311, 'FR', 'France'), +('77.67.128.0', '77.67.255.255', 1296269312, 1296302079, 'TR', 'Turkey'), +('77.68.0.0', '77.68.127.255', 1296302080, 1296334847, 'GB', 'United Kingdom'), +('77.68.128.0', '77.68.255.255', 1296334848, 1296367615, 'DK', 'Denmark'), +('77.69.0.0', '77.69.127.255', 1296367616, 1296400383, 'GR', 'Greece'), +('77.69.128.0', '77.69.255.255', 1296400384, 1296433151, 'BH', 'Bahrain'), +('77.70.0.0', '77.70.127.255', 1296433152, 1296465919, 'BG', 'Bulgaria'), +('77.70.128.0', '77.70.129.63', 1296465920, 1296466239, 'NG', 'Nigeria'), +('77.70.129.64', '77.70.129.127', 1296466240, 1296466303, 'NO', 'Norway'), +('77.70.129.128', '77.70.129.159', 1296466304, 1296466335, 'BF', 'Burkina Faso'), +('77.70.129.160', '77.70.129.255', 1296466336, 1296466431, 'NO', 'Norway'), +('77.70.130.0', '77.70.130.127', 1296466432, 1296466559, 'CG', 'Congo'), +('77.70.130.128', '77.70.130.159', 1296466560, 1296466591, 'NG', 'Nigeria'), +('77.70.130.160', '77.70.130.191', 1296466592, 1296466623, 'NO', 'Norway'), +('77.70.130.192', '77.70.130.207', 1296466624, 1296466639, 'NG', 'Nigeria'), +('77.70.130.208', '77.70.130.223', 1296466640, 1296466655, 'NO', 'Norway'), +('77.70.130.224', '77.70.130.239', 1296466656, 1296466671, 'BJ', 'Benin'), +('77.70.130.240', '77.70.130.255', 1296466672, 1296466687, 'NO', 'Norway'), +('77.70.131.0', '77.70.131.127', 1296466688, 1296466815, 'NG', 'Nigeria'), +('77.70.131.128', '77.70.135.255', 1296466816, 1296467967, 'NO', 'Norway'), +('77.70.136.0', '77.70.136.255', 1296467968, 1296468223, 'NE', 'Niger'), +('77.70.137.0', '77.70.137.127', 1296468224, 1296468351, 'NG', 'Nigeria'), +('77.70.137.128', '77.70.137.255', 1296468352, 1296468479, 'NO', 'Norway'), +('77.70.138.0', '77.70.140.255', 1296468480, 1296469247, 'NG', 'Nigeria'), +('77.70.141.0', '77.70.141.255', 1296469248, 1296469503, 'NO', 'Norway'), +('77.70.142.0', '77.70.142.255', 1296469504, 1296469759, 'ZM', 'Zambia'), +('77.70.143.0', '77.70.143.255', 1296469760, 1296470015, 'NO', 'Norway'), +('77.70.144.0', '77.70.145.167', 1296470016, 1296470439, 'TZ', 'Tanzania, United Republic of'), +('77.70.145.168', '77.70.145.191', 1296470440, 1296470463, 'NO', 'Norway'), +('77.70.145.192', '77.70.145.255', 1296470464, 1296470527, 'TZ', 'Tanzania, United Republic of'), +('77.70.146.0', '77.70.152.255', 1296470528, 1296472319, 'NO', 'Norway'), +('77.70.153.0', '77.70.153.7', 1296472320, 1296472327, 'CD', 'Congo, The Democratic Republic of the'), +('77.70.153.8', '77.70.153.31', 1296472328, 1296472351, 'NO', 'Norway'), +('77.70.153.32', '77.70.153.63', 1296472352, 1296472383, 'NG', 'Nigeria'), +('77.70.153.64', '77.70.153.95', 1296472384, 1296472415, 'BI', 'Burundi'), +('77.70.153.96', '77.70.155.255', 1296472416, 1296473087, 'NO', 'Norway'), +('77.70.156.0', '77.70.159.255', 1296473088, 1296474111, 'A2', 'Satellite Provider'), +('77.70.160.0', '77.70.160.255', 1296474112, 1296474367, 'ZM', 'Zambia'), +('77.70.161.0', '77.70.163.255', 1296474368, 1296475135, 'A2', 'Satellite Provider'), +('77.70.164.0', '77.70.167.255', 1296475136, 1296476159, 'US', 'United States'), +('77.70.168.0', '77.70.171.255', 1296476160, 1296477183, 'GA', 'Gabon'), +('77.70.172.0', '77.70.175.255', 1296477184, 1296478207, 'A2', 'Satellite Provider'), +('77.70.176.0', '77.70.179.255', 1296478208, 1296479231, 'NG', 'Nigeria'), +('77.70.180.0', '77.70.255.255', 1296479232, 1296498687, 'A2', 'Satellite Provider'), +('77.71.0.0', '77.71.127.255', 1296498688, 1296531455, 'BG', 'Bulgaria'), +('77.71.128.0', '77.71.255.255', 1296531456, 1296564223, 'MT', 'Malta'), +('77.72.0.0', '77.72.7.255', 1296564224, 1296566271, 'GB', 'United Kingdom'), +('77.72.8.0', '77.72.15.255', 1296566272, 1296568319, 'DE', 'Germany'), +('77.72.16.0', '77.72.23.255', 1296568320, 1296570367, 'RU', 'Russian Federation'), +('77.72.24.0', '77.72.39.255', 1296570368, 1296574463, 'IT', 'Italy'), +('77.72.40.0', '77.72.47.255', 1296574464, 1296576511, 'FR', 'France'), +('77.72.48.0', '77.72.55.255', 1296576512, 1296578559, 'DK', 'Denmark'), +('77.72.56.0', '77.72.63.255', 1296578560, 1296580607, 'FI', 'Finland'), +('77.72.64.0', '77.72.71.255', 1296580608, 1296582655, 'CH', 'Switzerland'), +('77.72.72.0', '77.72.79.255', 1296582656, 1296584703, 'IE', 'Ireland'), +('77.72.80.0', '77.72.87.255', 1296584704, 1296586751, 'RU', 'Russian Federation'), +('77.72.88.0', '77.72.95.255', 1296586752, 1296588799, 'FR', 'France'), +('77.72.96.0', '77.72.103.255', 1296588800, 1296590847, 'SE', 'Sweden'), +('77.72.104.0', '77.72.111.255', 1296590848, 1296592895, 'ES', 'Spain'), +('77.72.112.0', '77.72.119.255', 1296592896, 1296594943, 'NL', 'Netherlands'), +('77.72.120.0', '77.72.127.255', 1296594944, 1296596991, 'RU', 'Russian Federation'), +('77.72.128.0', '77.72.135.255', 1296596992, 1296599039, 'CH', 'Switzerland'), +('77.72.136.0', '77.72.143.255', 1296599040, 1296601087, 'RU', 'Russian Federation'), +('77.72.144.0', '77.72.151.255', 1296601088, 1296603135, 'DE', 'Germany'), +('77.72.152.0', '77.72.159.255', 1296603136, 1296605183, 'NL', 'Netherlands'), +('77.72.160.0', '77.72.167.255', 1296605184, 1296607231, 'AT', 'Austria'), +('77.72.168.0', '77.72.170.15', 1296607232, 1296607759, 'DE', 'Germany'), +('77.72.170.16', '77.72.170.255', 1296607760, 1296607999, 'NL', 'Netherlands'), +('77.72.171.0', '77.72.174.255', 1296608000, 1296609023, 'CH', 'Switzerland'), +('77.72.175.0', '77.72.175.255', 1296609024, 1296609279, 'NL', 'Netherlands'), +('77.72.176.0', '77.72.183.255', 1296609280, 1296611327, 'CH', 'Switzerland'), +('77.72.184.0', '77.72.191.255', 1296611328, 1296613375, 'TR', 'Turkey'), +('77.72.192.0', '77.72.199.255', 1296613376, 1296615423, 'IT', 'Italy'), +('77.72.200.0', '77.72.207.255', 1296615424, 1296617471, 'GB', 'United Kingdom'), +('77.72.208.0', '77.72.215.255', 1296617472, 1296619519, 'ES', 'Spain'), +('77.72.216.0', '77.72.223.255', 1296619520, 1296621567, 'IT', 'Italy'), +('77.72.224.0', '77.72.231.255', 1296621568, 1296623615, 'SE', 'Sweden'), +('77.72.232.0', '77.72.239.255', 1296623616, 1296625663, 'BE', 'Belgium'), +('77.72.240.0', '77.72.255.255', 1296625664, 1296629759, 'RU', 'Russian Federation'), +('77.73.0.0', '77.73.7.255', 1296629760, 1296631807, 'NO', 'Norway'), +('77.73.8.0', '77.73.15.255', 1296631808, 1296633855, 'GB', 'United Kingdom'), +('77.73.16.0', '77.73.23.255', 1296633856, 1296635903, 'NL', 'Netherlands'), +('77.73.24.0', '77.73.31.255', 1296635904, 1296637951, 'RU', 'Russian Federation'), +('77.73.32.0', '77.73.39.255', 1296637952, 1296639999, 'GB', 'United Kingdom'), +('77.73.40.0', '77.73.47.255', 1296640000, 1296642047, 'ES', 'Spain'), +('77.73.48.0', '77.73.55.255', 1296642048, 1296644095, 'RU', 'Russian Federation'), +('77.73.56.0', '77.73.63.255', 1296644096, 1296646143, 'IT', 'Italy'), +('77.73.64.0', '77.73.71.255', 1296646144, 1296648191, 'RU', 'Russian Federation'), +('77.73.72.0', '77.73.79.255', 1296648192, 1296650239, 'GB', 'United Kingdom'), +('77.73.80.0', '77.73.87.255', 1296650240, 1296652287, 'ES', 'Spain'), +('77.73.88.0', '77.73.95.255', 1296652288, 1296654335, 'RU', 'Russian Federation'), +('77.73.96.0', '77.73.103.255', 1296654336, 1296656383, 'BE', 'Belgium'), +('77.73.104.0', '77.73.111.255', 1296656384, 1296658431, 'RU', 'Russian Federation'), +('77.73.112.0', '77.73.127.255', 1296658432, 1296662527, 'GB', 'United Kingdom'), +('77.73.128.0', '77.73.143.255', 1296662528, 1296666623, 'RU', 'Russian Federation'), +('77.73.144.0', '77.73.159.255', 1296666624, 1296670719, 'GB', 'United Kingdom'), +('77.73.160.0', '77.73.167.255', 1296670720, 1296672767, 'ES', 'Spain'), +('77.73.168.0', '77.73.175.255', 1296672768, 1296674815, 'IT', 'Italy'), +('77.73.176.0', '77.73.183.255', 1296674816, 1296676863, 'BE', 'Belgium'), +('77.73.184.0', '77.73.185.151', 1296676864, 1296677271, 'NG', 'Nigeria'), +('77.73.185.152', '77.73.185.167', 1296677272, 1296677287, 'A2', 'Satellite Provider'), +('77.73.185.168', '77.73.185.191', 1296677288, 1296677311, 'NG', 'Nigeria'), +('77.73.185.192', '77.73.185.199', 1296677312, 1296677319, 'A2', 'Satellite Provider'), +('77.73.185.200', '77.73.185.223', 1296677320, 1296677343, 'NG', 'Nigeria'), +('77.73.185.224', '77.73.185.231', 1296677344, 1296677351, 'A2', 'Satellite Provider'), +('77.73.185.232', '77.73.185.247', 1296677352, 1296677367, 'NG', 'Nigeria'), +('77.73.185.248', '77.73.185.255', 1296677368, 1296677375, 'US', 'United States'), +('77.73.186.0', '77.73.186.135', 1296677376, 1296677511, 'NG', 'Nigeria'), +('77.73.186.136', '77.73.186.143', 1296677512, 1296677519, 'A2', 'Satellite Provider'), +('77.73.186.144', '77.73.186.215', 1296677520, 1296677591, 'NG', 'Nigeria'), +('77.73.186.216', '77.73.186.223', 1296677592, 1296677599, 'A2', 'Satellite Provider'), +('77.73.186.224', '77.73.187.71', 1296677600, 1296677703, 'NG', 'Nigeria'), +('77.73.187.72', '77.73.187.87', 1296677704, 1296677719, 'A2', 'Satellite Provider'), +('77.73.187.88', '77.73.187.103', 1296677720, 1296677735, 'NG', 'Nigeria'), +('77.73.187.104', '77.73.187.119', 1296677736, 1296677751, 'A2', 'Satellite Provider'), +('77.73.187.120', '77.73.187.135', 1296677752, 1296677767, 'NG', 'Nigeria'), +('77.73.187.136', '77.73.187.143', 1296677768, 1296677775, 'A2', 'Satellite Provider'), +('77.73.187.144', '77.73.188.71', 1296677776, 1296677959, 'NG', 'Nigeria'), +('77.73.188.72', '77.73.188.79', 1296677960, 1296677967, 'A2', 'Satellite Provider'), +('77.73.188.80', '77.73.188.103', 1296677968, 1296677991, 'NG', 'Nigeria'), +('77.73.188.104', '77.73.188.127', 1296677992, 1296678015, 'A2', 'Satellite Provider'), +('77.73.188.128', '77.73.188.159', 1296678016, 1296678047, 'NG', 'Nigeria'), +('77.73.188.160', '77.73.188.191', 1296678048, 1296678079, 'A2', 'Satellite Provider'), +('77.73.188.192', '77.73.188.231', 1296678080, 1296678119, 'NG', 'Nigeria'), +('77.73.188.232', '77.73.188.255', 1296678120, 1296678143, 'A2', 'Satellite Provider'), +('77.73.189.0', '77.73.189.7', 1296678144, 1296678151, 'NG', 'Nigeria'), +('77.73.189.8', '77.73.189.15', 1296678152, 1296678159, 'A2', 'Satellite Provider'), +('77.73.189.16', '77.73.189.71', 1296678160, 1296678215, 'NG', 'Nigeria'), +('77.73.189.72', '77.73.189.79', 1296678216, 1296678223, 'A2', 'Satellite Provider'), +('77.73.189.80', '77.73.189.175', 1296678224, 1296678319, 'NG', 'Nigeria'), +('77.73.189.176', '77.73.189.183', 1296678320, 1296678327, 'A2', 'Satellite Provider'), +('77.73.189.184', '77.73.189.207', 1296678328, 1296678351, 'NG', 'Nigeria'), +('77.73.189.208', '77.73.189.223', 1296678352, 1296678367, 'A2', 'Satellite Provider'), +('77.73.189.224', '77.73.190.15', 1296678368, 1296678415, 'NG', 'Nigeria'), +('77.73.190.16', '77.73.190.31', 1296678416, 1296678431, 'A2', 'Satellite Provider'), +('77.73.190.32', '77.73.190.47', 1296678432, 1296678447, 'NG', 'Nigeria'), +('77.73.190.48', '77.73.190.63', 1296678448, 1296678463, 'A2', 'Satellite Provider'), +('77.73.190.64', '77.73.190.71', 1296678464, 1296678471, 'NG', 'Nigeria'), +('77.73.190.72', '77.73.190.79', 1296678472, 1296678479, 'A2', 'Satellite Provider'), +('77.73.190.80', '77.73.191.119', 1296678480, 1296678775, 'NG', 'Nigeria'), +('77.73.191.120', '77.73.191.135', 1296678776, 1296678791, 'A2', 'Satellite Provider'), +('77.73.191.136', '77.73.191.175', 1296678792, 1296678831, 'NG', 'Nigeria'), +('77.73.191.176', '77.73.191.183', 1296678832, 1296678839, 'A2', 'Satellite Provider'), +('77.73.191.184', '77.73.191.255', 1296678840, 1296678911, 'NG', 'Nigeria'), +('77.73.192.0', '77.73.199.255', 1296678912, 1296680959, 'SA', 'Saudi Arabia'), +('77.73.200.0', '77.73.207.255', 1296680960, 1296683007, 'ES', 'Spain'), +('77.73.208.0', '77.73.215.255', 1296683008, 1296685055, 'IE', 'Ireland'), +('77.73.216.0', '77.73.223.255', 1296685056, 1296687103, 'TR', 'Turkey'), +('77.73.224.0', '77.73.231.255', 1296687104, 1296689151, 'NL', 'Netherlands'), +('77.73.232.0', '77.73.239.255', 1296689152, 1296691199, 'RU', 'Russian Federation'), +('77.73.240.0', '77.73.247.255', 1296691200, 1296693247, 'CH', 'Switzerland'), +('77.73.248.0', '77.73.255.255', 1296693248, 1296695295, 'DE', 'Germany'), +('77.74.0.0', '77.74.7.255', 1296695296, 1296697343, 'CH', 'Switzerland'), +('77.74.8.0', '77.74.15.255', 1296697344, 1296699391, 'RU', 'Russian Federation'), +('77.74.16.0', '77.74.23.255', 1296699392, 1296701439, 'IT', 'Italy'), +('77.74.24.0', '77.74.31.255', 1296701440, 1296703487, 'RU', 'Russian Federation'), +('77.74.32.0', '77.74.39.255', 1296703488, 1296705535, 'BY', 'Belarus'), +('77.74.40.0', '77.74.47.255', 1296705536, 1296707583, 'GE', 'Georgia'), +('77.74.48.0', '77.74.49.159', 1296707584, 1296707999, 'NL', 'Netherlands'), +('77.74.49.160', '77.74.49.191', 1296708000, 1296708031, 'AE', 'United Arab Emirates'), +('77.74.49.192', '77.74.49.199', 1296708032, 1296708039, 'AT', 'Austria'), +('77.74.49.200', '77.74.49.207', 1296708040, 1296708047, 'AE', 'United Arab Emirates'), +('77.74.49.208', '77.74.55.255', 1296708048, 1296709631, 'NL', 'Netherlands'), +('77.74.56.0', '77.74.63.255', 1296709632, 1296711679, 'CY', 'Cyprus'), +('77.74.64.0', '77.74.71.255', 1296711680, 1296713727, 'KZ', 'Kazakstan'), +('77.74.72.0', '77.74.79.255', 1296713728, 1296715775, 'RU', 'Russian Federation'), +('77.74.88.0', '77.74.95.255', 1296717824, 1296719871, 'BE', 'Belgium'), +('77.74.96.0', '77.74.103.255', 1296719872, 1296721919, 'CH', 'Switzerland'), +('77.74.104.0', '77.74.111.255', 1296721920, 1296723967, 'GB', 'United Kingdom'), +('77.74.112.0', '77.74.119.255', 1296723968, 1296726015, 'AT', 'Austria'), +('77.74.120.0', '77.74.127.255', 1296726016, 1296728063, 'GB', 'United Kingdom'), +('77.74.128.0', '77.74.135.255', 1296728064, 1296730111, 'SE', 'Sweden'), +('77.74.136.0', '77.74.143.255', 1296730112, 1296732159, 'DE', 'Germany'), +('77.74.144.0', '77.74.151.255', 1296732160, 1296734207, 'IT', 'Italy'), +('77.74.152.0', '77.74.159.255', 1296734208, 1296736255, 'FR', 'France'), +('77.74.160.0', '77.74.167.255', 1296736256, 1296738303, 'NO', 'Norway'), +('77.74.168.0', '77.74.169.255', 1296738304, 1296738815, 'CH', 'Switzerland'), +('77.74.170.0', '77.74.171.255', 1296738816, 1296739327, 'FI', 'Finland'), +('77.74.172.0', '77.74.175.255', 1296739328, 1296740351, 'CH', 'Switzerland'), +('77.74.176.0', '77.74.191.255', 1296740352, 1296744447, 'RU', 'Russian Federation'), +('77.74.192.0', '77.74.199.255', 1296744448, 1296746495, 'GB', 'United Kingdom'), +('77.74.200.0', '77.74.207.255', 1296746496, 1296748543, 'SI', 'Slovenia'), +('77.74.208.0', '77.74.215.255', 1296748544, 1296750591, 'FR', 'France'), +('77.74.216.0', '77.74.223.255', 1296750592, 1296752639, 'NO', 'Norway'), +('77.74.224.0', '77.74.231.255', 1296752640, 1296754687, 'BA', 'Bosnia and Herzegovina'), +('77.74.232.0', '77.74.232.223', 1296754688, 1296754911, 'DE', 'Germany'), +('77.74.232.224', '77.74.232.239', 1296754912, 1296754927, 'AT', 'Austria'), +('77.74.232.240', '77.74.239.255', 1296754928, 1296756735, 'DE', 'Germany'), +('77.74.240.0', '77.74.247.255', 1296756736, 1296758783, 'FR', 'France'), +('77.74.248.0', '77.74.255.255', 1296758784, 1296760831, 'RS', 'Serbia'), +('77.75.0.0', '77.75.7.255', 1296760832, 1296762879, 'GB', 'United Kingdom'), +('77.75.8.0', '77.75.15.255', 1296762880, 1296764927, 'RU', 'Russian Federation'), +('77.75.16.0', '77.75.23.255', 1296764928, 1296766975, 'AT', 'Austria'), +('77.75.24.0', '77.75.24.255', 1296766976, 1296767231, 'GB', 'United Kingdom'), +('77.75.25.0', '77.75.25.143', 1296767232, 1296767375, 'NL', 'Netherlands'), +('77.75.25.144', '77.75.31.255', 1296767376, 1296769023, 'GB', 'United Kingdom'), +('77.75.32.0', '77.75.39.255', 1296769024, 1296771071, 'TR', 'Turkey'), +('77.75.40.0', '77.75.47.255', 1296771072, 1296773119, 'LT', 'Lithuania'), +('77.75.48.0', '77.75.52.223', 1296773120, 1296774367, 'FR', 'France'), +('77.75.52.224', '77.75.55.255', 1296774368, 1296775167, 'EU', 'Europe'), +('77.75.56.0', '77.75.71.255', 1296775168, 1296779263, 'FR', 'France'), +('77.75.72.0', '77.75.79.255', 1296779264, 1296781311, 'CZ', 'Czech Republic'), +('77.75.80.0', '77.75.87.255', 1296781312, 1296783359, 'DK', 'Denmark'), +('77.75.88.0', '77.75.95.255', 1296783360, 1296785407, 'LB', 'Lebanon'), +('77.75.96.0', '77.75.103.255', 1296785408, 1296787455, 'IE', 'Ireland'), +('77.75.104.0', '77.75.111.255', 1296787456, 1296789503, 'GB', 'United Kingdom'), +('77.75.112.0', '77.75.119.255', 1296789504, 1296791551, 'CH', 'Switzerland'), +('77.75.120.0', '77.75.127.255', 1296791552, 1296793599, 'NL', 'Netherlands'), +('77.75.128.0', '77.75.135.255', 1296793600, 1296795647, 'RU', 'Russian Federation'), +('77.75.136.0', '77.75.136.255', 1296795648, 1296795903, 'NL', 'Netherlands'), +('77.75.137.0', '77.75.143.255', 1296795904, 1296797695, 'GB', 'United Kingdom'), +('77.75.144.0', '77.75.151.255', 1296797696, 1296799743, 'UA', 'Ukraine'), +('77.75.152.0', '77.75.159.255', 1296799744, 1296801791, 'RU', 'Russian Federation'), +('77.75.160.0', '77.75.167.255', 1296801792, 1296803839, 'DK', 'Denmark'), +('77.75.168.0', '77.75.175.255', 1296803840, 1296805887, 'RU', 'Russian Federation'), +('77.75.176.0', '77.75.183.255', 1296805888, 1296807935, 'ES', 'Spain'), +('77.75.184.0', '77.75.199.255', 1296807936, 1296812031, 'GB', 'United Kingdom'), +('77.75.200.0', '77.75.207.255', 1296812032, 1296814079, 'DE', 'Germany'), +('77.75.208.0', '77.75.215.255', 1296814080, 1296816127, 'NO', 'Norway'), +('77.75.216.0', '77.75.223.255', 1296816128, 1296818175, 'TR', 'Turkey'), +('77.75.224.0', '77.75.231.255', 1296818176, 1296820223, 'ES', 'Spain'), +('77.75.232.0', '77.75.239.255', 1296820224, 1296822271, 'GB', 'United Kingdom'), +('77.75.240.0', '77.75.247.255', 1296822272, 1296824319, 'IE', 'Ireland'), +('77.75.248.0', '77.75.255.255', 1296824320, 1296826367, 'DE', 'Germany'), +('77.76.0.0', '77.76.63.255', 1296826368, 1296842751, 'BG', 'Bulgaria'), +('77.76.64.0', '77.76.127.255', 1296842752, 1296859135, 'GB', 'United Kingdom'), +('77.76.128.0', '77.76.191.255', 1296859136, 1296875519, 'BG', 'Bulgaria'), +('77.76.192.0', '77.76.255.255', 1296875520, 1296891903, 'DE', 'Germany'), +('77.77.0.0', '77.77.63.255', 1296891904, 1296908287, 'BG', 'Bulgaria'), +('77.77.64.0', '77.77.127.255', 1296908288, 1296924671, 'IR', 'Iran, Islamic Republic of'), +('77.77.128.0', '77.77.191.255', 1296924672, 1296941055, 'BG', 'Bulgaria'), +('77.77.192.0', '77.77.255.255', 1296941056, 1296957439, 'BA', 'Bosnia and Herzegovina'), +('77.78.0.0', '77.78.63.255', 1296957440, 1296973823, 'BG', 'Bulgaria'), +('77.78.64.0', '77.78.127.255', 1296973824, 1296990207, 'CZ', 'Czech Republic'), +('77.78.128.0', '77.78.191.255', 1296990208, 1297006591, 'BG', 'Bulgaria'), +('77.78.192.0', '77.78.255.255', 1297006592, 1297022975, 'BA', 'Bosnia and Herzegovina'), +('77.79.0.0', '77.79.63.255', 1297022976, 1297039359, 'LT', 'Lithuania'), +('77.79.64.0', '77.79.127.255', 1297039360, 1297055743, 'TR', 'Turkey'), +('77.79.128.0', '77.79.191.255', 1297055744, 1297072127, 'RU', 'Russian Federation'), +('77.79.192.0', '77.79.235.239', 1297072128, 1297083375, 'PL', 'Poland'), +('77.79.235.240', '77.79.235.255', 1297083376, 1297083391, 'SE', 'Sweden'), +('77.79.236.0', '77.79.255.255', 1297083392, 1297088511, 'PL', 'Poland'), +('77.81.0.0', '77.81.255.255', 1297154048, 1297219583, 'RO', 'Romania'), +('77.82.0.0', '77.82.255.255', 1297219584, 1297285119, 'RU', 'Russian Federation'), +('77.83.0.0', '77.83.255.255', 1297285120, 1297350655, 'GR', 'Greece'), +('77.84.0.0', '77.84.255.255', 1297350656, 1297416191, 'FR', 'France'), +('77.85.0.0', '77.85.255.255', 1297416192, 1297481727, 'BG', 'Bulgaria'), +('77.86.0.0', '77.86.127.255', 1297481728, 1297514495, 'GB', 'United Kingdom'), +('77.86.128.0', '77.86.255.255', 1297514496, 1297547263, 'FI', 'Finland'), +('77.87.0.0', '77.87.7.255', 1297547264, 1297549311, 'PL', 'Poland'), +('77.87.8.0', '77.87.15.255', 1297549312, 1297551359, 'LT', 'Lithuania'), +('77.87.16.0', '77.87.23.255', 1297551360, 1297553407, 'SA', 'Saudi Arabia'), +('77.87.24.0', '77.87.31.255', 1297553408, 1297555455, 'IE', 'Ireland'), +('77.87.32.0', '77.87.39.255', 1297555456, 1297557503, 'UA', 'Ukraine'), +('77.87.40.0', '77.87.47.255', 1297557504, 1297559551, 'BE', 'Belgium'), +('77.87.48.0', '77.87.55.255', 1297559552, 1297561599, 'DE', 'Germany'), +('77.87.56.0', '77.87.63.255', 1297561600, 1297563647, 'NL', 'Netherlands'), +('77.87.64.0', '77.87.71.255', 1297563648, 1297565695, 'RU', 'Russian Federation'), +('77.87.72.0', '77.87.79.255', 1297565696, 1297567743, 'PL', 'Poland'), +('77.87.80.0', '77.87.87.255', 1297567744, 1297569791, 'RU', 'Russian Federation'), +('77.87.88.0', '77.87.95.255', 1297569792, 1297571839, 'RO', 'Romania'), +('77.87.96.0', '77.87.103.255', 1297571840, 1297573887, 'RU', 'Russian Federation'), +('77.87.104.0', '77.87.111.255', 1297573888, 1297575935, 'FR', 'France'), +('77.87.112.0', '77.87.119.255', 1297575936, 1297577983, 'RU', 'Russian Federation'), +('77.87.120.0', '77.87.127.255', 1297577984, 1297580031, 'PL', 'Poland'), +('77.87.128.0', '77.87.135.255', 1297580032, 1297582079, 'GB', 'United Kingdom'), +('77.87.136.0', '77.87.143.255', 1297582080, 1297584127, 'PL', 'Poland'), +('77.87.144.0', '77.87.159.255', 1297584128, 1297588223, 'UA', 'Ukraine'), +('77.87.160.0', '77.87.167.255', 1297588224, 1297590271, 'NL', 'Netherlands'), +('77.87.168.0', '77.87.175.255', 1297590272, 1297592319, 'RU', 'Russian Federation'), +('77.87.176.0', '77.87.183.255', 1297592320, 1297594367, 'GB', 'United Kingdom'), +('77.87.184.0', '77.87.191.255', 1297594368, 1297596415, 'DE', 'Germany'), +('77.87.192.0', '77.87.199.255', 1297596416, 1297598463, 'UA', 'Ukraine'), +('77.87.200.0', '77.87.215.255', 1297598464, 1297602559, 'RU', 'Russian Federation'), +('77.87.216.0', '77.87.223.255', 1297602560, 1297604607, 'PL', 'Poland'), +('77.87.224.0', '77.87.231.255', 1297604608, 1297606655, 'DE', 'Germany'), +('77.87.232.0', '77.87.239.255', 1297606656, 1297608703, 'CZ', 'Czech Republic'), +('77.87.240.0', '77.87.247.255', 1297608704, 1297610751, 'AT', 'Austria'), +('77.87.248.0', '77.87.255.255', 1297610752, 1297612799, 'DE', 'Germany'), +('77.88.0.0', '77.88.63.255', 1297612800, 1297629183, 'RU', 'Russian Federation'), +('77.88.64.0', '77.88.127.255', 1297629184, 1297645567, 'NO', 'Norway'), +('77.88.128.0', '77.88.191.255', 1297645568, 1297661951, 'PL', 'Poland'), +('77.88.192.0', '77.88.255.255', 1297661952, 1297678335, 'UA', 'Ukraine'), +('77.89.0.0', '77.89.63.255', 1297678336, 1297694719, 'IT', 'Italy'), +('77.89.64.0', '77.89.127.255', 1297694720, 1297711103, 'PL', 'Poland'), +('77.89.128.0', '77.89.191.255', 1297711104, 1297727487, 'GB', 'United Kingdom'), +('77.89.192.0', '77.89.255.255', 1297727488, 1297743871, 'MD', 'Moldova, Republic of'), +('77.90.0.0', '77.90.63.255', 1297743872, 1297760255, 'DE', 'Germany'), +('77.90.64.0', '77.90.127.255', 1297760256, 1297776639, 'LT', 'Lithuania'), +('77.90.128.0', '77.90.191.255', 1297776640, 1297793023, 'DE', 'Germany'), +('77.90.192.0', '77.90.255.255', 1297793024, 1297809407, 'UA', 'Ukraine'), +('77.91.0.0', '77.91.63.255', 1297809408, 1297825791, 'PL', 'Poland'), +('77.91.64.0', '77.91.127.255', 1297825792, 1297842175, 'RU', 'Russian Federation'), +('77.91.128.0', '77.91.191.255', 1297842176, 1297858559, 'UA', 'Ukraine'), +('77.91.192.0', '77.91.199.255', 1297858560, 1297860607, 'RU', 'Russian Federation'), +('77.91.200.0', '77.91.207.255', 1297860608, 1297862655, 'PT', 'Portugal'), +('77.91.208.0', '77.91.215.255', 1297862656, 1297864703, 'FI', 'Finland'), +('77.91.216.0', '77.91.223.255', 1297864704, 1297866751, 'SE', 'Sweden'), +('77.91.224.0', '77.91.227.167', 1297866752, 1297867687, 'RU', 'Russian Federation'), +('77.91.227.168', '77.91.227.175', 1297867688, 1297867695, 'CY', 'Cyprus'), +('77.91.227.176', '77.91.231.63', 1297867696, 1297868607, 'RU', 'Russian Federation'), +('77.91.231.64', '77.91.231.127', 1297868608, 1297868671, 'CY', 'Cyprus'), +('77.91.231.128', '77.91.231.255', 1297868672, 1297868799, 'RU', 'Russian Federation'), +('77.91.232.0', '77.91.239.255', 1297868800, 1297870847, 'DE', 'Germany'), +('77.91.240.0', '77.91.247.255', 1297870848, 1297872895, 'FR', 'France'), +('77.91.248.0', '77.91.255.255', 1297872896, 1297874943, 'GB', 'United Kingdom'), +('77.92.0.0', '77.92.2.31', 1297874944, 1297875487, 'CY', 'Cyprus'), +('77.92.2.32', '77.92.2.47', 1297875488, 1297875503, 'TR', 'Turkey'), +('77.92.2.48', '77.92.2.80', 1297875504, 1297875536, 'CY', 'Cyprus'), +('77.92.2.81', '77.92.2.95', 1297875537, 1297875551, 'TR', 'Turkey'), +('77.92.2.96', '77.92.31.255', 1297875552, 1297883135, 'CY', 'Cyprus'), +('77.92.32.0', '77.92.63.255', 1297883136, 1297891327, 'IT', 'Italy'), +('77.92.64.0', '77.92.95.255', 1297891328, 1297899519, 'GB', 'United Kingdom'), +('77.92.96.0', '77.92.159.255', 1297899520, 1297915903, 'TR', 'Turkey'), +('77.92.160.0', '77.92.191.255', 1297915904, 1297924095, 'BH', 'Bahrain'), +('77.92.192.0', '77.92.223.255', 1297924096, 1297932287, 'CZ', 'Czech Republic'), +('77.92.224.0', '77.92.255.255', 1297932288, 1297940479, 'GE', 'Georgia'), +('77.93.0.0', '77.93.31.255', 1297940480, 1297948671, 'LV', 'Latvia'), +('77.93.32.0', '77.93.63.255', 1297948672, 1297956863, 'UA', 'Ukraine'), +('77.93.64.0', '77.93.95.255', 1297956864, 1297965055, 'NL', 'Netherlands'), +('77.93.96.0', '77.93.127.255', 1297965056, 1297973247, 'RU', 'Russian Federation'), +('77.93.128.0', '77.93.159.255', 1297973248, 1297981439, 'GB', 'United Kingdom'), +('77.93.160.0', '77.93.191.255', 1297981440, 1297989631, 'RO', 'Romania'), +('77.93.192.0', '77.93.206.79', 1297989632, 1297993295, 'CZ', 'Czech Republic'), +('77.93.206.80', '77.93.206.95', 1297993296, 1297993311, 'SK', 'Slovakia'), +('77.93.206.96', '77.93.223.255', 1297993312, 1297997823, 'CZ', 'Czech Republic'), +('77.93.224.0', '77.93.255.255', 1297997824, 1298006015, 'IT', 'Italy'), +('77.94.0.0', '77.94.31.255', 1298006016, 1298014207, 'RU', 'Russian Federation'), +('77.94.32.0', '77.94.33.255', 1298014208, 1298014719, 'LB', 'Lebanon'), +('77.94.34.0', '77.94.34.255', 1298014720, 1298014975, 'RU', 'Russian Federation'), +('77.94.35.0', '77.94.35.255', 1298014976, 1298015231, 'LT', 'Lithuania'), +('77.94.36.0', '77.94.36.255', 1298015232, 1298015487, 'RU', 'Russian Federation'), +('77.94.37.0', '77.94.37.255', 1298015488, 1298015743, 'LB', 'Lebanon'), +('77.94.38.0', '77.94.38.255', 1298015744, 1298015999, 'IQ', 'Iraq'), +('77.94.39.0', '77.94.39.255', 1298016000, 1298016255, 'LB', 'Lebanon'), +('77.94.40.0', '77.94.43.255', 1298016256, 1298017279, 'RU', 'Russian Federation'), +('77.94.44.0', '77.94.47.255', 1298017280, 1298018303, 'KG', 'Kyrgyzstan'), +('77.94.48.0', '77.94.48.255', 1298018304, 1298018559, 'TM', 'Turkmenistan'), +('77.94.49.0', '77.94.51.255', 1298018560, 1298019327, 'RU', 'Russian Federation'), +('77.94.52.0', '77.94.53.255', 1298019328, 1298019839, 'LT', 'Lithuania'), +('77.94.54.0', '77.94.63.255', 1298019840, 1298022399, 'RU', 'Russian Federation'), +('77.94.64.0', '77.94.95.255', 1298022400, 1298030591, 'IT', 'Italy'), +('77.94.96.0', '77.94.127.255', 1298030592, 1298038783, 'RU', 'Russian Federation'), +('77.94.128.0', '77.94.159.255', 1298038784, 1298046975, 'SI', 'Slovenia'), +('77.94.160.0', '77.94.223.255', 1298046976, 1298063359, 'RU', 'Russian Federation'), +('77.94.224.0', '77.94.231.255', 1298063360, 1298065407, 'FR', 'France'), +('77.94.232.0', '77.94.239.255', 1298065408, 1298067455, 'NO', 'Norway'), +('77.94.240.0', '77.94.255.255', 1298067456, 1298071551, 'NL', 'Netherlands'), +('77.95.0.0', '77.95.7.255', 1298071552, 1298073599, 'TJ', 'Tajikistan'), +('77.95.8.0', '77.95.15.255', 1298073600, 1298075647, 'RU', 'Russian Federation'), +('77.95.16.0', '77.95.23.255', 1298075648, 1298077695, 'CY', 'Cyprus'), +('77.95.24.0', '77.95.31.255', 1298077696, 1298079743, 'DE', 'Germany'), +('77.95.32.0', '77.95.39.255', 1298079744, 1298081791, 'GB', 'United Kingdom'), +('77.95.40.0', '77.95.47.255', 1298081792, 1298083839, 'CZ', 'Czech Republic'), +('77.95.48.0', '77.95.55.255', 1298083840, 1298085887, 'PL', 'Poland'), +('77.95.56.0', '77.95.63.255', 1298085888, 1298087935, 'KG', 'Kyrgyzstan'), +('77.95.64.0', '77.95.71.255', 1298087936, 1298089983, 'FR', 'France'), +('77.95.72.0', '77.95.79.255', 1298089984, 1298092031, 'NO', 'Norway'), +('77.95.80.0', '77.95.87.255', 1298092032, 1298094079, 'GB', 'United Kingdom'), +('77.95.88.0', '77.95.95.255', 1298094080, 1298096127, 'RU', 'Russian Federation'), +('77.95.96.0', '77.95.103.255', 1298096128, 1298098175, 'NL', 'Netherlands'), +('77.95.104.0', '77.95.111.255', 1298098176, 1298100223, 'SE', 'Sweden'), +('77.95.112.0', '77.95.119.255', 1298100224, 1298102271, 'GB', 'United Kingdom'), +('77.95.120.0', '77.95.127.255', 1298102272, 1298104319, 'CH', 'Switzerland'), +('77.95.128.0', '77.95.135.255', 1298104320, 1298106367, 'RU', 'Russian Federation'), +('77.95.136.0', '77.95.143.255', 1298106368, 1298108415, 'IT', 'Italy'), +('77.95.144.0', '77.95.151.255', 1298108416, 1298110463, 'FI', 'Finland'), +('77.95.152.0', '77.95.159.255', 1298110464, 1298112511, 'ES', 'Spain'), +('77.95.160.0', '77.95.167.255', 1298112512, 1298114559, 'IE', 'Ireland'), +('77.95.168.0', '77.95.175.255', 1298114560, 1298116607, 'IT', 'Italy'), +('77.95.176.0', '77.95.183.255', 1298116608, 1298118655, 'RU', 'Russian Federation'), +('77.95.184.0', '77.95.191.255', 1298118656, 1298120703, 'AM', 'Armenia'), +('77.95.192.0', '77.95.199.255', 1298120704, 1298122751, 'CZ', 'Czech Republic'), +('77.95.200.0', '77.95.207.255', 1298122752, 1298124799, 'RU', 'Russian Federation'), +('77.95.208.0', '77.95.215.255', 1298124800, 1298126847, 'IT', 'Italy'), +('77.95.216.0', '77.95.218.255', 1298126848, 1298127615, 'SA', 'Saudi Arabia'), +('77.95.219.0', '77.95.220.255', 1298127616, 1298128127, 'IR', 'Iran, Islamic Republic of'), +('77.95.221.0', '77.95.223.255', 1298128128, 1298128895, 'SA', 'Saudi Arabia'), +('77.95.224.0', '77.95.231.255', 1298128896, 1298130943, 'FR', 'France'), +('77.95.232.0', '77.95.239.255', 1298130944, 1298132991, 'BG', 'Bulgaria'), +('77.95.240.0', '77.95.247.255', 1298132992, 1298135039, 'FI', 'Finland'), +('77.95.248.0', '77.95.255.255', 1298135040, 1298137087, 'NL', 'Netherlands'), +('77.96.0.0', '77.103.255.255', 1298137088, 1298661375, 'GB', 'United Kingdom'), +('77.104.0.0', '77.104.63.255', 1298661376, 1298677759, 'FR', 'France'), +('77.104.64.0', '77.104.127.255', 1298677760, 1298694143, 'IR', 'Iran, Islamic Republic of'), +('77.104.128.0', '77.104.191.255', 1298694144, 1298710527, 'HR', 'Croatia'), +('77.104.192.0', '77.104.255.255', 1298710528, 1298726911, 'CZ', 'Czech Republic'), +('77.105.0.0', '77.105.63.255', 1298726912, 1298743295, 'RS', 'Serbia'), +('77.105.64.0', '77.105.127.255', 1298743296, 1298759679, 'FI', 'Finland'), +('77.105.128.0', '77.105.191.255', 1298759680, 1298776063, 'RU', 'Russian Federation'), +('77.105.192.0', '77.105.255.255', 1298776064, 1298792447, 'SE', 'Sweden'), +('77.106.0.0', '77.106.127.255', 1298792448, 1298825215, 'RU', 'Russian Federation'), +('77.106.128.0', '77.106.191.255', 1298825216, 1298841599, 'NO', 'Norway'), +('77.106.192.0', '77.106.255.255', 1298841600, 1298857983, 'RU', 'Russian Federation'), +('77.107.0.0', '77.107.63.255', 1298857984, 1298874367, 'SE', 'Sweden'), +('77.107.64.0', '77.107.191.255', 1298874368, 1298907135, 'GB', 'United Kingdom'), +('77.107.192.0', '77.107.255.255', 1298907136, 1298923519, 'IE', 'Ireland'), +('77.108.0.0', '77.108.63.255', 1298923520, 1298939903, 'IT', 'Italy'), +('77.108.64.0', '77.108.127.255', 1298939904, 1298956287, 'RU', 'Russian Federation'), +('77.108.128.0', '77.108.191.255', 1298956288, 1298972671, 'GB', 'United Kingdom'), +('77.108.192.0', '77.108.255.255', 1298972672, 1298989055, 'RU', 'Russian Federation'), +('77.109.0.0', '77.109.63.255', 1298989056, 1299005439, 'UA', 'Ukraine'), +('77.109.64.0', '77.109.79.255', 1299005440, 1299009535, 'NL', 'Netherlands'), +('77.109.80.0', '77.109.87.255', 1299009536, 1299011583, 'RU', 'Russian Federation'), +('77.109.88.0', '77.109.88.255', 1299011584, 1299011839, 'FR', 'France'), +('77.109.89.0', '77.109.89.255', 1299011840, 1299012095, 'DE', 'Germany'), +('77.109.90.0', '77.109.91.255', 1299012096, 1299012607, 'BE', 'Belgium'), +('77.109.92.0', '77.109.93.255', 1299012608, 1299013119, 'GB', 'United Kingdom'), +('77.109.94.0', '77.109.94.255', 1299013120, 1299013375, 'FR', 'France'), +('77.109.95.0', '77.109.95.255', 1299013376, 1299013631, 'DE', 'Germany'), +('77.109.96.0', '77.109.127.255', 1299013632, 1299021823, 'BE', 'Belgium'), +('77.109.128.0', '77.109.139.39', 1299021824, 1299024679, 'CH', 'Switzerland'), +('77.109.139.40', '77.109.139.47', 1299024680, 1299024687, 'DE', 'Germany'), +('77.109.139.48', '77.109.189.255', 1299024688, 1299037695, 'CH', 'Switzerland'), +('77.109.190.0', '77.109.190.255', 1299037696, 1299037951, 'US', 'United States'), +('77.109.191.0', '77.109.191.255', 1299037952, 1299038207, 'CH', 'Switzerland'), +('77.109.192.0', '77.109.255.255', 1299038208, 1299054591, 'FI', 'Finland'), +('77.110.0.0', '77.110.63.255', 1299054592, 1299070975, 'SE', 'Sweden'), +('77.110.64.0', '77.110.79.255', 1299070976, 1299075071, 'SA', 'Saudi Arabia'), +('77.110.80.0', '77.110.127.255', 1299075072, 1299087359, 'LB', 'Lebanon'), +('77.110.128.0', '77.110.191.255', 1299087360, 1299103743, 'HU', 'Hungary'), +('77.110.192.0', '77.110.255.255', 1299103744, 1299120127, 'NO', 'Norway'), +('77.111.0.0', '77.111.63.255', 1299120128, 1299136511, 'SI', 'Slovenia'), +('77.111.64.0', '77.111.191.255', 1299136512, 1299169279, 'HU', 'Hungary'), +('77.111.192.0', '77.111.211.255', 1299169280, 1299174399, 'FR', 'France'), +('77.111.212.0', '77.111.221.255', 1299174400, 1299176959, 'GB', 'United Kingdom'), +('77.111.222.0', '77.111.223.255', 1299176960, 1299177471, 'FR', 'France'), +('77.111.224.0', '77.111.233.255', 1299177472, 1299180031, 'DE', 'Germany'), +('77.111.234.0', '77.111.255.255', 1299180032, 1299185663, 'FR', 'France'), +('77.112.0.0', '77.115.255.255', 1299185664, 1299447807, 'PL', 'Poland'), +('77.116.0.0', '77.119.255.255', 1299447808, 1299709951, 'AT', 'Austria'), +('77.120.0.0', '77.123.255.255', 1299709952, 1299972095, 'UA', 'Ukraine'), +('77.124.0.0', '77.127.255.255', 1299972096, 1300234239, 'IL', 'Israel'), +('77.128.0.0', '77.159.255.255', 1300234240, 1302331391, 'DE', 'Germany'), +('77.160.0.0', '77.175.255.255', 1302331392, 1303379967, 'NL', 'Netherlands'), +('77.176.0.0', '77.191.255.255', 1303379968, 1304428543, 'DE', 'Germany'), +('77.192.0.0', '77.207.255.255', 1304428544, 1305477119, 'FR', 'France'), +('77.208.0.0', '77.211.255.255', 1305477120, 1305739263, 'ES', 'Spain'), +('77.212.0.0', '77.215.255.255', 1305739264, 1306001407, 'DK', 'Denmark'), +('77.216.0.0', '77.217.255.255', 1306001408, 1306132479, 'FR', 'France'), +('77.218.0.0', '77.218.23.255', 1306132480, 1306138623, 'RU', 'Russian Federation'), +('77.218.24.0', '77.219.255.255', 1306138624, 1306263551, 'FR', 'France'), +('77.220.0.0', '77.220.31.255', 1306263552, 1306271743, 'KE', 'Kenya'), +('77.220.32.0', '77.220.63.255', 1306271744, 1306279935, 'RU', 'Russian Federation'), +('77.220.64.0', '77.220.95.255', 1306279936, 1306288127, 'IT', 'Italy'), +('77.220.96.0', '77.220.127.255', 1306288128, 1306296319, 'AT', 'Austria'), +('77.220.128.0', '77.220.185.231', 1306296320, 1306311143, 'RU', 'Russian Federation'), +('77.220.185.232', '77.220.185.239', 1306311144, 1306311151, 'CH', 'Switzerland'), +('77.220.185.240', '77.220.191.255', 1306311152, 1306312703, 'RU', 'Russian Federation'), +('77.220.192.0', '77.220.223.255', 1306312704, 1306320895, 'UZ', 'Uzbekistan'), +('77.220.224.0', '77.220.255.255', 1306320896, 1306329087, 'DE', 'Germany'), +('77.221.0.0', '77.221.31.255', 1306329088, 1306337279, 'BA', 'Bosnia and Herzegovina'), +('77.221.32.0', '77.221.63.255', 1306337280, 1306345471, 'HU', 'Hungary'), +('77.221.64.0', '77.221.95.255', 1306345472, 1306353663, 'LT', 'Lithuania'), +('77.221.96.0', '77.221.127.255', 1306353664, 1306361855, 'SA', 'Saudi Arabia'), +('77.221.128.0', '77.221.159.255', 1306361856, 1306370047, 'RU', 'Russian Federation'), +('77.221.160.0', '77.221.191.255', 1306370048, 1306378239, 'GB', 'United Kingdom'), +('77.221.192.0', '77.221.223.255', 1306378240, 1306386431, 'RU', 'Russian Federation'), +('77.221.224.0', '77.221.255.255', 1306386432, 1306394623, 'DK', 'Denmark'), +('77.222.0.0', '77.222.31.255', 1306394624, 1306402815, 'ME', 'Montenegro'), +('77.222.32.0', '77.222.63.255', 1306402816, 1306411007, 'RU', 'Russian Federation'), +('77.222.64.0', '77.222.72.143', 1306411008, 1306413199, 'NL', 'Netherlands'), +('77.222.72.144', '77.222.72.159', 1306413200, 1306413215, 'BE', 'Belgium'), +('77.222.72.160', '77.222.95.255', 1306413216, 1306419199, 'NL', 'Netherlands'), +('77.222.96.0', '77.222.127.255', 1306419200, 1306427391, 'RU', 'Russian Federation'), +('77.222.128.0', '77.222.159.255', 1306427392, 1306435583, 'UA', 'Ukraine'), +('77.222.160.0', '77.222.223.255', 1306435584, 1306451967, 'NO', 'Norway'), +('77.222.224.0', '77.222.255.255', 1306451968, 1306460159, 'PL', 'Poland'), +('77.223.0.0', '77.223.31.255', 1306460160, 1306468351, 'IT', 'Italy'), +('77.223.32.0', '77.223.63.255', 1306468352, 1306476543, 'FI', 'Finland'), +('77.223.64.0', '77.223.127.255', 1306476544, 1306492927, 'RU', 'Russian Federation'), +('77.223.128.0', '77.223.159.255', 1306492928, 1306501119, 'TR', 'Turkey'), +('77.223.160.0', '77.223.191.255', 1306501120, 1306509311, 'NO', 'Norway'), +('77.223.192.0', '77.223.255.255', 1306509312, 1306525695, 'PL', 'Poland'), +('77.224.0.0', '77.231.255.255', 1306525696, 1307049983, 'ES', 'Spain'), +('77.232.0.0', '77.232.63.255', 1307049984, 1307066367, 'RU', 'Russian Federation'), +('77.232.64.0', '77.232.76.255', 1307066368, 1307069695, 'EU', 'Europe'), +('77.232.77.0', '77.232.77.127', 1307069696, 1307069823, 'DE', 'Germany'), +('77.232.77.128', '77.232.77.159', 1307069824, 1307069855, 'EU', 'Europe'), +('77.232.77.160', '77.232.77.191', 1307069856, 1307069887, 'DE', 'Germany'), +('77.232.77.192', '77.232.95.255', 1307069888, 1307074559, 'EU', 'Europe'), +('77.232.96.0', '77.232.127.255', 1307074560, 1307082751, 'SA', 'Saudi Arabia'), +('77.232.128.0', '77.232.159.255', 1307082752, 1307090943, 'RU', 'Russian Federation'), +('77.232.160.0', '77.232.191.255', 1307090944, 1307099135, 'GB', 'United Kingdom'), +('77.232.192.0', '77.232.223.255', 1307099136, 1307107327, 'RO', 'Romania'), +('77.232.224.0', '77.232.255.255', 1307107328, 1307115519, 'DE', 'Germany'), +('77.233.0.0', '77.233.31.255', 1307115520, 1307123711, 'RU', 'Russian Federation'), +('77.233.32.0', '77.233.63.255', 1307123712, 1307131903, 'NL', 'Netherlands'), +('77.233.64.0', '77.233.95.255', 1307131904, 1307140095, 'EE', 'Estonia'), +('77.233.96.0', '77.233.127.255', 1307140096, 1307148287, 'FR', 'France'), +('77.233.128.0', '77.233.159.255', 1307148288, 1307156479, 'GB', 'United Kingdom'), +('77.233.160.0', '77.233.223.255', 1307156480, 1307172863, 'RU', 'Russian Federation'), +('77.233.224.0', '77.233.255.255', 1307172864, 1307181055, 'DK', 'Denmark'), +('77.234.0.0', '77.234.31.255', 1307181056, 1307189247, 'RU', 'Russian Federation'), +('77.234.32.0', '77.234.63.255', 1307189248, 1307197439, 'DE', 'Germany'), +('77.234.64.0', '77.234.95.255', 1307197440, 1307205631, 'HU', 'Hungary'), +('77.234.96.0', '77.234.127.255', 1307205632, 1307213823, 'FI', 'Finland'), +('77.234.128.0', '77.234.159.255', 1307213824, 1307222015, 'SI', 'Slovenia'), +('77.234.160.0', '77.234.191.255', 1307222016, 1307230207, 'DK', 'Denmark'), +('77.234.192.0', '77.234.223.255', 1307230208, 1307238399, 'RU', 'Russian Federation'), +('77.234.224.0', '77.234.255.255', 1307238400, 1307246591, 'SK', 'Slovakia'), +('77.235.0.0', '77.235.31.255', 1307246592, 1307254783, 'KG', 'Kyrgyzstan'), +('77.235.32.0', '77.235.34.255', 1307254784, 1307255551, 'NL', 'Netherlands'), +('77.235.35.0', '77.235.35.255', 1307255552, 1307255807, 'GR', 'Greece'), +('77.235.36.0', '77.235.63.255', 1307255808, 1307262975, 'NL', 'Netherlands'), +('77.235.64.0', '77.235.95.255', 1307262976, 1307271167, 'AT', 'Austria'), +('77.235.96.0', '77.235.127.255', 1307271168, 1307279359, 'MD', 'Moldova, Republic of'), +('77.235.128.0', '77.235.159.255', 1307279360, 1307287551, 'LB', 'Lebanon'), +('77.235.160.0', '77.235.191.255', 1307287552, 1307295743, 'DE', 'Germany'), +('77.235.192.0', '77.235.223.255', 1307295744, 1307303935, 'RU', 'Russian Federation'), +('77.235.224.0', '77.235.255.255', 1307303936, 1307312127, 'SE', 'Sweden'), +('77.236.0.0', '77.236.31.255', 1307312128, 1307320319, 'PL', 'Poland'), +('77.236.32.0', '77.236.95.255', 1307320320, 1307336703, 'RU', 'Russian Federation'), +('77.236.96.0', '77.236.127.255', 1307336704, 1307344895, 'DE', 'Germany'), +('77.236.128.0', '77.236.159.255', 1307344896, 1307353087, 'RU', 'Russian Federation'), +('77.236.160.0', '77.236.191.255', 1307353088, 1307361279, 'BG', 'Bulgaria'), +('77.236.192.0', '77.236.223.255', 1307361280, 1307369471, 'CZ', 'Czech Republic'), +('77.236.224.0', '77.236.255.255', 1307369472, 1307377663, 'RU', 'Russian Federation'), +('77.237.0.0', '77.237.31.255', 1307377664, 1307385855, 'PL', 'Poland'), +('77.237.32.0', '77.237.63.255', 1307385856, 1307394047, 'AT', 'Austria'), +('77.237.64.0', '77.237.95.255', 1307394048, 1307402239, 'IR', 'Iran, Islamic Republic of'), +('77.237.96.0', '77.237.127.255', 1307402240, 1307410431, 'HR', 'Croatia'), +('77.237.128.0', '77.237.159.255', 1307410432, 1307418623, 'CZ', 'Czech Republic'), +('77.237.160.0', '77.237.191.255', 1307418624, 1307426815, 'IR', 'Iran, Islamic Republic of'), +('77.237.192.0', '77.237.223.255', 1307426816, 1307435007, 'CH', 'Switzerland'), +('77.237.224.0', '77.237.255.255', 1307435008, 1307443199, 'DE', 'Germany'), +('77.238.0.0', '77.238.31.255', 1307443200, 1307451391, 'IT', 'Italy'), +('77.238.32.0', '77.238.63.255', 1307451392, 1307459583, 'SE', 'Sweden'), +('77.238.64.0', '77.238.95.255', 1307459584, 1307467775, 'UZ', 'Uzbekistan'), +('77.238.96.0', '77.238.159.255', 1307467776, 1307484159, 'RU', 'Russian Federation'), +('77.238.160.0', '77.238.177.255', 1307484160, 1307488767, 'GB', 'United Kingdom'), +('77.238.178.0', '77.238.178.255', 1307488768, 1307489023, 'IE', 'Ireland'), +('77.238.179.0', '77.238.187.255', 1307489024, 1307491327, 'GB', 'United Kingdom'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('77.238.188.0', '77.238.189.255', 1307491328, 1307491839, 'IE', 'Ireland'), +('77.238.190.0', '77.238.191.255', 1307491840, 1307492351, 'GB', 'United Kingdom'), +('77.238.192.0', '77.238.223.255', 1307492352, 1307500543, 'BA', 'Bosnia and Herzegovina'), +('77.238.224.0', '77.238.255.255', 1307500544, 1307508735, 'RU', 'Russian Federation'), +('77.239.0.0', '77.239.31.255', 1307508736, 1307516927, 'BA', 'Bosnia and Herzegovina'), +('77.239.32.0', '77.239.63.255', 1307516928, 1307525119, 'CH', 'Switzerland'), +('77.239.64.0', '77.239.95.255', 1307525120, 1307533311, 'BA', 'Bosnia and Herzegovina'), +('77.239.96.0', '77.239.127.255', 1307533312, 1307541503, 'GB', 'United Kingdom'), +('77.239.128.0', '77.239.159.255', 1307541504, 1307549695, 'IT', 'Italy'), +('77.239.160.0', '77.239.191.255', 1307549696, 1307557887, 'UA', 'Ukraine'), +('77.239.192.0', '77.239.255.255', 1307557888, 1307574271, 'RU', 'Russian Federation'), +('77.240.0.0', '77.240.15.255', 1307574272, 1307578367, 'GB', 'United Kingdom'), +('77.240.16.0', '77.240.31.255', 1307578368, 1307582463, 'FI', 'Finland'), +('77.240.32.0', '77.240.47.255', 1307582464, 1307586559, 'KZ', 'Kazakstan'), +('77.240.48.0', '77.240.63.255', 1307586560, 1307590655, 'GB', 'United Kingdom'), +('77.240.64.0', '77.240.79.255', 1307590656, 1307594751, 'SE', 'Sweden'), +('77.240.80.0', '77.240.95.255', 1307594752, 1307598847, 'SA', 'Saudi Arabia'), +('77.240.96.0', '77.240.111.255', 1307598848, 1307602943, 'CZ', 'Czech Republic'), +('77.240.112.0', '77.240.127.255', 1307602944, 1307607039, 'ES', 'Spain'), +('77.240.128.0', '77.240.143.255', 1307607040, 1307611135, 'SA', 'Saudi Arabia'), +('77.240.144.0', '77.240.175.255', 1307611136, 1307619327, 'RU', 'Russian Federation'), +('77.240.176.0', '77.240.191.255', 1307619328, 1307623423, 'CZ', 'Czech Republic'), +('77.240.192.0', '77.240.207.255', 1307623424, 1307627519, 'FR', 'France'), +('77.240.208.0', '77.240.223.255', 1307627520, 1307631615, 'SE', 'Sweden'), +('77.240.224.0', '77.240.239.255', 1307631616, 1307635711, 'IT', 'Italy'), +('77.240.240.0', '77.240.244.255', 1307635712, 1307636991, 'EE', 'Estonia'), +('77.240.245.0', '77.240.245.39', 1307636992, 1307637031, 'LV', 'Latvia'), +('77.240.245.40', '77.240.248.255', 1307637032, 1307638015, 'EE', 'Estonia'), +('77.240.249.0', '77.240.249.79', 1307638016, 1307638095, 'LT', 'Lithuania'), +('77.240.249.80', '77.240.250.103', 1307638096, 1307638375, 'EE', 'Estonia'), +('77.240.250.104', '77.240.250.111', 1307638376, 1307638383, 'LT', 'Lithuania'), +('77.240.250.112', '77.240.250.175', 1307638384, 1307638447, 'EE', 'Estonia'), +('77.240.250.176', '77.240.250.191', 1307638448, 1307638463, 'LT', 'Lithuania'), +('77.240.250.192', '77.240.251.47', 1307638464, 1307638575, 'EE', 'Estonia'), +('77.240.251.48', '77.240.251.79', 1307638576, 1307638607, 'LT', 'Lithuania'), +('77.240.251.80', '77.240.251.255', 1307638608, 1307638783, 'EE', 'Estonia'), +('77.240.252.0', '77.240.253.255', 1307638784, 1307639295, 'LT', 'Lithuania'), +('77.240.254.0', '77.240.255.255', 1307639296, 1307639807, 'EE', 'Estonia'), +('77.241.0.0', '77.241.15.255', 1307639808, 1307643903, 'IT', 'Italy'), +('77.241.16.0', '77.241.47.255', 1307643904, 1307652095, 'RU', 'Russian Federation'), +('77.241.48.0', '77.241.63.255', 1307652096, 1307656191, 'ES', 'Spain'), +('77.241.64.0', '77.241.79.255', 1307656192, 1307660287, 'JO', 'Jordan'), +('77.241.80.0', '77.241.87.255', 1307660288, 1307662335, 'BE', 'Belgium'), +('77.241.88.0', '77.241.88.15', 1307662336, 1307662351, 'NL', 'Netherlands'), +('77.241.88.16', '77.241.88.23', 1307662352, 1307662359, 'GB', 'United Kingdom'), +('77.241.88.24', '77.241.88.31', 1307662360, 1307662367, 'FR', 'France'), +('77.241.88.32', '77.241.95.255', 1307662368, 1307664383, 'BE', 'Belgium'), +('77.241.96.0', '77.241.111.255', 1307664384, 1307668479, 'NO', 'Norway'), +('77.241.112.0', '77.241.127.255', 1307668480, 1307672575, 'ES', 'Spain'), +('77.241.128.0', '77.241.135.255', 1307672576, 1307674623, 'SE', 'Sweden'), +('77.241.136.0', '77.241.143.255', 1307674624, 1307676671, 'DK', 'Denmark'), +('77.241.144.0', '77.241.159.255', 1307676672, 1307680767, 'RU', 'Russian Federation'), +('77.241.160.0', '77.241.175.255', 1307680768, 1307684863, 'LV', 'Latvia'), +('77.241.176.0', '77.241.191.255', 1307684864, 1307688959, 'GB', 'United Kingdom'), +('77.241.192.0', '77.241.207.255', 1307688960, 1307693055, 'LT', 'Lithuania'), +('77.241.208.0', '77.241.223.255', 1307693056, 1307697151, 'IT', 'Italy'), +('77.241.224.0', '77.241.239.255', 1307697152, 1307701247, 'NL', 'Netherlands'), +('77.241.240.0', '77.242.15.255', 1307701248, 1307709439, 'RU', 'Russian Federation'), +('77.242.16.0', '77.242.31.255', 1307709440, 1307713535, 'AL', 'Albania'), +('77.242.32.0', '77.242.47.255', 1307713536, 1307717631, 'IT', 'Italy'), +('77.242.48.0', '77.242.63.255', 1307717632, 1307721727, 'DK', 'Denmark'), +('77.242.64.0', '77.242.79.255', 1307721728, 1307725823, 'AT', 'Austria'), +('77.242.80.0', '77.242.95.255', 1307725824, 1307729919, 'CZ', 'Czech Republic'), +('77.242.96.0', '77.242.111.255', 1307729920, 1307734015, 'RU', 'Russian Federation'), +('77.242.112.0', '77.242.127.255', 1307734016, 1307738111, 'NL', 'Netherlands'), +('77.242.128.0', '77.242.143.255', 1307738112, 1307742207, 'IT', 'Italy'), +('77.242.144.0', '77.242.159.255', 1307742208, 1307746303, 'HU', 'Hungary'), +('77.242.160.0', '77.242.175.255', 1307746304, 1307750399, 'UA', 'Ukraine'), +('77.242.176.0', '77.242.191.255', 1307750400, 1307754495, 'IT', 'Italy'), +('77.242.192.0', '77.242.195.255', 1307754496, 1307755519, 'US', 'United States'), +('77.242.196.0', '77.242.197.255', 1307755520, 1307756031, 'GB', 'United Kingdom'), +('77.242.198.0', '77.242.198.255', 1307756032, 1307756287, 'US', 'United States'), +('77.242.199.0', '77.242.199.255', 1307756288, 1307756543, 'GB', 'United Kingdom'), +('77.242.200.0', '77.242.203.255', 1307756544, 1307757567, 'FR', 'France'), +('77.242.204.0', '77.242.207.255', 1307757568, 1307758591, 'GB', 'United Kingdom'), +('77.242.208.0', '77.242.223.255', 1307758592, 1307762687, 'SM', 'San Marino'), +('77.242.224.0', '77.242.239.255', 1307762688, 1307766783, 'PL', 'Poland'), +('77.242.240.0', '77.242.255.255', 1307766784, 1307770879, 'GB', 'United Kingdom'), +('77.243.0.0', '77.243.15.255', 1307770880, 1307774975, 'RU', 'Russian Federation'), +('77.243.16.0', '77.243.31.255', 1307774976, 1307779071, 'RS', 'Serbia'), +('77.243.32.0', '77.243.63.255', 1307779072, 1307787263, 'DK', 'Denmark'), +('77.243.64.0', '77.243.79.255', 1307787264, 1307791359, 'MT', 'Malta'), +('77.243.80.0', '77.243.95.255', 1307791360, 1307795455, 'KZ', 'Kazakstan'), +('77.243.96.0', '77.243.127.255', 1307795456, 1307803647, 'RU', 'Russian Federation'), +('77.243.128.0', '77.243.143.255', 1307803648, 1307807743, 'DK', 'Denmark'), +('77.243.144.0', '77.243.159.255', 1307807744, 1307811839, 'SE', 'Sweden'), +('77.243.160.0', '77.243.175.255', 1307811840, 1307815935, 'NL', 'Netherlands'), +('77.243.176.0', '77.243.191.15', 1307815936, 1307819791, 'BE', 'Belgium'), +('77.243.191.16', '77.243.191.255', 1307819792, 1307820031, 'EU', 'Europe'), +('77.243.192.0', '77.243.207.255', 1307820032, 1307824127, 'ES', 'Spain'), +('77.243.208.0', '77.243.223.255', 1307824128, 1307828223, 'HU', 'Hungary'), +('77.243.224.0', '77.243.239.255', 1307828224, 1307832319, 'NL', 'Netherlands'), +('77.243.240.0', '77.243.255.255', 1307832320, 1307836415, 'RU', 'Russian Federation'), +('77.244.0.0', '77.244.15.255', 1307836416, 1307840511, 'SE', 'Sweden'), +('77.244.16.0', '77.244.31.255', 1307840512, 1307844607, 'RU', 'Russian Federation'), +('77.244.32.0', '77.244.47.255', 1307844608, 1307848703, 'UA', 'Ukraine'), +('77.244.48.0', '77.244.63.255', 1307848704, 1307852799, 'CH', 'Switzerland'), +('77.244.64.0', '77.244.79.255', 1307852800, 1307856895, 'RU', 'Russian Federation'), +('77.244.80.0', '77.244.95.255', 1307856896, 1307860991, 'IT', 'Italy'), +('77.244.96.0', '77.244.111.255', 1307860992, 1307865087, 'DE', 'Germany'), +('77.244.112.0', '77.244.127.255', 1307865088, 1307869183, 'AZ', 'Azerbaijan'), +('77.244.128.0', '77.244.143.255', 1307869184, 1307873279, 'GB', 'United Kingdom'), +('77.244.144.0', '77.244.159.255', 1307873280, 1307877375, 'TJ', 'Tajikistan'), +('77.244.160.0', '77.244.175.255', 1307877376, 1307881471, 'RU', 'Russian Federation'), +('77.244.176.0', '77.244.191.255', 1307881472, 1307885567, 'IT', 'Italy'), +('77.244.192.0', '77.244.194.15', 1307885568, 1307886095, 'DK', 'Denmark'), +('77.244.194.16', '77.244.194.23', 1307886096, 1307886103, 'SE', 'Sweden'), +('77.244.194.24', '77.244.197.127', 1307886104, 1307886975, 'DK', 'Denmark'), +('77.244.197.128', '77.244.197.255', 1307886976, 1307887103, 'SE', 'Sweden'), +('77.244.198.0', '77.244.207.255', 1307887104, 1307889663, 'DK', 'Denmark'), +('77.244.208.0', '77.244.223.255', 1307889664, 1307893759, 'RU', 'Russian Federation'), +('77.244.224.0', '77.244.239.255', 1307893760, 1307897855, 'SE', 'Sweden'), +('77.244.240.0', '77.244.255.255', 1307897856, 1307901951, 'AT', 'Austria'), +('77.245.0.0', '77.245.15.255', 1307901952, 1307906047, 'JO', 'Jordan'), +('77.245.16.0', '77.245.18.39', 1307906048, 1307906599, 'CH', 'Switzerland'), +('77.245.18.40', '77.245.18.47', 1307906600, 1307906607, 'DK', 'Denmark'), +('77.245.18.48', '77.245.19.127', 1307906608, 1307906943, 'CH', 'Switzerland'), +('77.245.19.128', '77.245.19.255', 1307906944, 1307907071, 'IM', 'Isle of Man'), +('77.245.20.0', '77.245.20.127', 1307907072, 1307907199, 'CH', 'Switzerland'), +('77.245.20.128', '77.245.20.255', 1307907200, 1307907327, 'IM', 'Isle of Man'), +('77.245.21.0', '77.245.31.255', 1307907328, 1307910143, 'CH', 'Switzerland'), +('77.245.32.0', '77.245.47.255', 1307910144, 1307914239, 'DE', 'Germany'), +('77.245.48.0', '77.245.63.255', 1307914240, 1307918335, 'NL', 'Netherlands'), +('77.245.64.0', '77.245.68.79', 1307918336, 1307919439, 'GB', 'United Kingdom'), +('77.245.68.80', '77.245.68.87', 1307919440, 1307919447, 'ES', 'Spain'), +('77.245.68.88', '77.245.68.143', 1307919448, 1307919503, 'GB', 'United Kingdom'), +('77.245.68.144', '77.245.68.151', 1307919504, 1307919511, 'ES', 'Spain'), +('77.245.68.152', '77.245.72.191', 1307919512, 1307920575, 'GB', 'United Kingdom'), +('77.245.72.192', '77.245.72.199', 1307920576, 1307920583, 'AU', 'Australia'), +('77.245.72.200', '77.245.79.255', 1307920584, 1307922431, 'GB', 'United Kingdom'), +('77.245.80.0', '77.245.95.255', 1307922432, 1307926527, 'NL', 'Netherlands'), +('77.245.96.0', '77.245.111.255', 1307926528, 1307930623, 'KZ', 'Kazakstan'), +('77.245.112.0', '77.245.127.255', 1307930624, 1307934719, 'RU', 'Russian Federation'), +('77.245.128.0', '77.245.143.255', 1307934720, 1307938815, 'FR', 'France'), +('77.245.144.0', '77.245.159.255', 1307938816, 1307942911, 'TR', 'Turkey'), +('77.245.160.0', '77.245.175.255', 1307942912, 1307947007, 'RU', 'Russian Federation'), +('77.245.176.0', '77.245.191.255', 1307947008, 1307951103, 'CH', 'Switzerland'), +('77.245.192.0', '77.245.223.255', 1307951104, 1307959295, 'RU', 'Russian Federation'), +('77.245.224.0', '77.245.239.255', 1307959296, 1307963391, 'IR', 'Iran, Islamic Republic of'), +('77.245.240.0', '77.245.255.255', 1307963392, 1307967487, 'PL', 'Poland'), +('77.246.0.0', '77.246.15.255', 1307967488, 1307971583, 'IT', 'Italy'), +('77.246.16.0', '77.246.51.255', 1307971584, 1307980799, 'GB', 'United Kingdom'), +('77.246.52.0', '77.246.55.255', 1307980800, 1307981823, 'ZW', 'Zimbabwe'), +('77.246.56.0', '77.246.63.255', 1307981824, 1307983871, 'GB', 'United Kingdom'), +('77.246.64.0', '77.246.79.255', 1307983872, 1307987967, 'LB', 'Lebanon'), +('77.246.80.0', '77.246.95.255', 1307987968, 1307992063, 'FR', 'France'), +('77.246.96.0', '77.246.111.255', 1307992064, 1307996159, 'RU', 'Russian Federation'), +('77.246.112.0', '77.246.127.255', 1307996160, 1308000255, 'DE', 'Germany'), +('77.246.128.0', '77.246.143.255', 1308000256, 1308004351, 'CH', 'Switzerland'), +('77.246.144.0', '77.246.159.255', 1308004352, 1308008447, 'RU', 'Russian Federation'), +('77.246.160.0', '77.246.175.255', 1308008448, 1308012543, 'GB', 'United Kingdom'), +('77.246.176.0', '77.246.191.255', 1308012544, 1308016639, 'ES', 'Spain'), +('77.246.192.0', '77.246.207.255', 1308016640, 1308020735, 'FI', 'Finland'), +('77.246.208.0', '77.246.223.255', 1308020736, 1308024831, 'BG', 'Bulgaria'), +('77.246.224.0', '77.246.255.255', 1308024832, 1308033023, 'RU', 'Russian Federation'), +('77.247.0.0', '77.247.0.255', 1308033024, 1308033279, 'NL', 'Netherlands'), +('77.247.1.0', '77.247.1.255', 1308033280, 1308033535, 'FR', 'France'), +('77.247.2.0', '77.247.2.255', 1308033536, 1308033791, 'DE', 'Germany'), +('77.247.3.0', '77.247.3.255', 1308033792, 1308034047, 'IT', 'Italy'), +('77.247.4.0', '77.247.5.255', 1308034048, 1308034559, 'DE', 'Germany'), +('77.247.6.0', '77.247.6.255', 1308034560, 1308034815, 'CZ', 'Czech Republic'), +('77.247.7.0', '77.247.8.255', 1308034816, 1308035327, 'DE', 'Germany'), +('77.247.9.0', '77.247.9.255', 1308035328, 1308035583, 'GB', 'United Kingdom'), +('77.247.10.0', '77.247.15.255', 1308035584, 1308037119, 'DE', 'Germany'), +('77.247.16.0', '77.247.31.255', 1308037120, 1308041215, 'UA', 'Ukraine'), +('77.247.32.0', '77.247.63.255', 1308041216, 1308049407, 'RU', 'Russian Federation'), +('77.247.64.0', '77.247.79.255', 1308049408, 1308053503, 'DK', 'Denmark'), +('77.247.80.0', '77.247.95.255', 1308053504, 1308057599, 'RU', 'Russian Federation'), +('77.247.96.0', '77.247.111.255', 1308057600, 1308061695, 'GR', 'Greece'), +('77.247.112.0', '77.247.143.255', 1308061696, 1308069887, 'RU', 'Russian Federation'), +('77.247.144.0', '77.247.159.255', 1308069888, 1308073983, 'NO', 'Norway'), +('77.247.160.0', '77.247.175.255', 1308073984, 1308078079, 'RU', 'Russian Federation'), +('77.247.176.0', '77.247.176.31', 1308078080, 1308078111, 'IL', 'Israel'), +('77.247.176.32', '77.247.176.127', 1308078112, 1308078207, 'NL', 'Netherlands'), +('77.247.176.128', '77.247.176.191', 1308078208, 1308078271, 'SE', 'Sweden'), +('77.247.176.192', '77.247.177.255', 1308078272, 1308078591, 'IL', 'Israel'), +('77.247.178.0', '77.247.178.255', 1308078592, 1308078847, 'NL', 'Netherlands'), +('77.247.179.0', '77.247.179.31', 1308078848, 1308078879, 'IL', 'Israel'), +('77.247.179.32', '77.247.179.63', 1308078880, 1308078911, 'FR', 'France'), +('77.247.179.64', '77.247.179.191', 1308078912, 1308079039, 'NL', 'Netherlands'), +('77.247.179.192', '77.247.179.255', 1308079040, 1308079103, 'IL', 'Israel'), +('77.247.180.0', '77.247.180.95', 1308079104, 1308079199, 'NL', 'Netherlands'), +('77.247.180.96', '77.247.180.255', 1308079200, 1308079359, 'IL', 'Israel'), +('77.247.181.0', '77.247.181.95', 1308079360, 1308079455, 'NL', 'Netherlands'), +('77.247.181.96', '77.247.181.255', 1308079456, 1308079615, 'IL', 'Israel'), +('77.247.182.0', '77.247.182.31', 1308079616, 1308079647, 'NL', 'Netherlands'), +('77.247.182.32', '77.247.182.63', 1308079648, 1308079679, 'IL', 'Israel'), +('77.247.182.64', '77.247.182.95', 1308079680, 1308079711, 'NL', 'Netherlands'), +('77.247.182.96', '77.247.182.255', 1308079712, 1308079871, 'IL', 'Israel'), +('77.247.183.0', '77.247.183.31', 1308079872, 1308079903, 'NL', 'Netherlands'), +('77.247.183.32', '77.247.183.63', 1308079904, 1308079935, 'IL', 'Israel'), +('77.247.183.64', '77.247.183.95', 1308079936, 1308079967, 'NL', 'Netherlands'), +('77.247.183.96', '77.247.183.255', 1308079968, 1308080127, 'IL', 'Israel'), +('77.247.184.0', '77.247.191.255', 1308080128, 1308082175, 'RU', 'Russian Federation'), +('77.247.192.0', '77.247.199.255', 1308082176, 1308084223, 'GB', 'United Kingdom'), +('77.247.200.0', '77.247.207.255', 1308084224, 1308086271, 'RS', 'Serbia'), +('77.247.208.0', '77.247.215.255', 1308086272, 1308088319, 'RU', 'Russian Federation'), +('77.247.216.0', '77.247.223.255', 1308088320, 1308090367, 'UA', 'Ukraine'), +('77.247.224.0', '77.247.231.255', 1308090368, 1308092415, 'SK', 'Slovakia'), +('77.247.232.0', '77.247.239.255', 1308092416, 1308094463, 'RU', 'Russian Federation'), +('77.247.240.0', '77.247.247.255', 1308094464, 1308096511, 'KW', 'Kuwait'), +('77.247.248.0', '77.247.255.255', 1308096512, 1308098559, 'RS', 'Serbia'), +('77.248.0.0', '77.251.255.255', 1308098560, 1308360703, 'NL', 'Netherlands'), +('77.252.0.0', '77.255.255.255', 1308360704, 1308622847, 'PL', 'Poland'), +('78.0.0.0', '78.3.255.255', 1308622848, 1308884991, 'HR', 'Croatia'), +('78.4.0.0', '78.7.255.255', 1308884992, 1309147135, 'IT', 'Italy'), +('78.8.0.0', '78.11.255.255', 1309147136, 1309409279, 'PL', 'Poland'), +('78.12.0.0', '78.15.255.255', 1309409280, 1309671423, 'IT', 'Italy'), +('78.16.0.0', '78.19.255.255', 1309671424, 1309933567, 'IE', 'Ireland'), +('78.20.0.0', '78.23.255.255', 1309933568, 1310195711, 'BE', 'Belgium'), +('78.24.0.0', '78.24.7.255', 1310195712, 1310197759, 'RU', 'Russian Federation'), +('78.24.8.0', '78.24.15.255', 1310197760, 1310199807, 'CZ', 'Czech Republic'), +('78.24.16.0', '78.24.23.255', 1310199808, 1310201855, 'IE', 'Ireland'), +('78.24.24.0', '78.24.31.255', 1310201856, 1310203903, 'RU', 'Russian Federation'), +('78.24.32.0', '78.24.32.255', 1310203904, 1310204159, 'BE', 'Belgium'), +('78.24.33.0', '78.24.33.31', 1310204160, 1310204191, 'FR', 'France'), +('78.24.33.32', '78.24.33.95', 1310204192, 1310204255, 'BE', 'Belgium'), +('78.24.33.96', '78.24.33.111', 1310204256, 1310204271, 'FR', 'France'), +('78.24.33.112', '78.24.35.23', 1310204272, 1310204695, 'BE', 'Belgium'), +('78.24.35.24', '78.24.35.35', 1310204696, 1310204707, 'FR', 'France'), +('78.24.35.36', '78.24.39.255', 1310204708, 1310205951, 'BE', 'Belgium'), +('78.24.40.0', '78.24.47.255', 1310205952, 1310207999, 'RU', 'Russian Federation'), +('78.24.48.0', '78.24.55.255', 1310208000, 1310210047, 'MD', 'Moldova, Republic of'), +('78.24.56.0', '78.24.63.255', 1310210048, 1310212095, 'RU', 'Russian Federation'), +('78.24.64.0', '78.24.71.255', 1310212096, 1310214143, 'HU', 'Hungary'), +('78.24.72.0', '78.24.79.255', 1310214144, 1310216191, 'UA', 'Ukraine'), +('78.24.80.0', '78.24.87.255', 1310216192, 1310218239, 'IT', 'Italy'), +('78.24.88.0', '78.24.95.255', 1310218240, 1310220287, 'NO', 'Norway'), +('78.24.96.0', '78.24.103.255', 1310220288, 1310222335, 'NL', 'Netherlands'), +('78.24.104.0', '78.24.111.255', 1310222336, 1310224383, 'RS', 'Serbia'), +('78.24.112.0', '78.24.119.255', 1310224384, 1310226431, 'GB', 'United Kingdom'), +('78.24.120.0', '78.24.127.255', 1310226432, 1310228479, 'BE', 'Belgium'), +('78.24.128.0', '78.24.135.255', 1310228480, 1310230527, 'FR', 'France'), +('78.24.136.0', '78.24.143.255', 1310230528, 1310232575, 'ES', 'Spain'), +('78.24.144.0', '78.24.151.255', 1310232576, 1310234623, 'NO', 'Norway'), +('78.24.152.0', '78.24.159.255', 1310234624, 1310236671, 'RU', 'Russian Federation'), +('78.24.160.0', '78.24.167.255', 1310236672, 1310238719, 'KZ', 'Kazakstan'), +('78.24.168.0', '78.24.175.255', 1310238720, 1310240767, 'BE', 'Belgium'), +('78.24.176.0', '78.24.183.255', 1310240768, 1310242815, 'RU', 'Russian Federation'), +('78.24.184.0', '78.24.191.255', 1310242816, 1310244863, 'HU', 'Hungary'), +('78.24.192.0', '78.24.199.255', 1310244864, 1310246911, 'EE', 'Estonia'), +('78.24.200.0', '78.24.200.15', 1310246912, 1310246927, 'FR', 'France'), +('78.24.200.16', '78.24.200.31', 1310246928, 1310246943, 'ES', 'Spain'), +('78.24.200.32', '78.24.200.47', 1310246944, 1310246959, 'IT', 'Italy'), +('78.24.200.48', '78.24.200.63', 1310246960, 1310246975, 'AT', 'Austria'), +('78.24.200.64', '78.24.200.79', 1310246976, 1310246991, 'PT', 'Portugal'), +('78.24.200.80', '78.24.200.95', 1310246992, 1310247007, 'NL', 'Netherlands'), +('78.24.200.96', '78.24.200.111', 1310247008, 1310247023, 'GB', 'United Kingdom'), +('78.24.200.112', '78.24.200.127', 1310247024, 1310247039, 'GR', 'Greece'), +('78.24.200.128', '78.24.200.143', 1310247040, 1310247055, 'TR', 'Turkey'), +('78.24.200.144', '78.24.200.159', 1310247056, 1310247071, 'SE', 'Sweden'), +('78.24.200.160', '78.24.200.175', 1310247072, 1310247087, 'NO', 'Norway'), +('78.24.200.176', '78.24.200.191', 1310247088, 1310247103, 'AR', 'Argentina'), +('78.24.200.192', '78.24.200.207', 1310247104, 1310247119, 'PL', 'Poland'), +('78.24.200.208', '78.24.200.223', 1310247120, 1310247135, 'IE', 'Ireland'), +('78.24.200.224', '78.24.200.239', 1310247136, 1310247151, 'DK', 'Denmark'), +('78.24.200.240', '78.24.200.255', 1310247152, 1310247167, 'RU', 'Russian Federation'), +('78.24.201.0', '78.24.201.15', 1310247168, 1310247183, 'IL', 'Israel'), +('78.24.201.16', '78.24.201.31', 1310247184, 1310247199, 'BR', 'Brazil'), +('78.24.201.32', '78.24.201.47', 1310247200, 1310247215, 'CZ', 'Czech Republic'), +('78.24.201.48', '78.24.201.63', 1310247216, 1310247231, 'BG', 'Bulgaria'), +('78.24.201.64', '78.24.201.79', 1310247232, 1310247247, 'RO', 'Romania'), +('78.24.201.80', '78.24.201.95', 1310247248, 1310247263, 'CN', 'China'), +('78.24.201.96', '78.24.201.111', 1310247264, 1310247279, 'LT', 'Lithuania'), +('78.24.201.112', '78.24.201.127', 1310247280, 1310247295, 'CY', 'Cyprus'), +('78.24.201.128', '78.24.201.143', 1310247296, 1310247311, 'JP', 'Japan'), +('78.24.201.144', '78.24.201.159', 1310247312, 1310247327, 'HU', 'Hungary'), +('78.24.201.160', '78.24.201.175', 1310247328, 1310247343, 'DE', 'Germany'), +('78.24.201.176', '78.24.201.191', 1310247344, 1310247359, 'FI', 'Finland'), +('78.24.201.192', '78.24.201.207', 1310247360, 1310247375, 'LV', 'Latvia'), +('78.24.201.208', '78.24.201.223', 1310247376, 1310247391, 'IN', 'India'), +('78.24.201.224', '78.24.201.239', 1310247392, 1310247407, 'US', 'United States'), +('78.24.201.240', '78.24.201.255', 1310247408, 1310247423, 'CA', 'Canada'), +('78.24.202.0', '78.24.202.7', 1310247424, 1310247431, 'IL', 'Israel'), +('78.24.202.8', '78.24.202.15', 1310247432, 1310247439, 'BR', 'Brazil'), +('78.24.202.16', '78.24.202.23', 1310247440, 1310247447, 'CZ', 'Czech Republic'), +('78.24.202.24', '78.24.202.39', 1310247448, 1310247463, 'BG', 'Bulgaria'), +('78.24.202.40', '78.24.202.47', 1310247464, 1310247471, 'CN', 'China'), +('78.24.202.48', '78.24.202.55', 1310247472, 1310247479, 'LT', 'Lithuania'), +('78.24.202.56', '78.24.202.63', 1310247480, 1310247487, 'CY', 'Cyprus'), +('78.24.202.64', '78.24.202.71', 1310247488, 1310247495, 'JP', 'Japan'), +('78.24.202.72', '78.24.202.79', 1310247496, 1310247503, 'HU', 'Hungary'), +('78.24.202.80', '78.24.202.87', 1310247504, 1310247511, 'DE', 'Germany'), +('78.24.202.88', '78.24.202.95', 1310247512, 1310247519, 'FI', 'Finland'), +('78.24.202.96', '78.24.202.103', 1310247520, 1310247527, 'LV', 'Latvia'), +('78.24.202.104', '78.24.202.111', 1310247528, 1310247535, 'IN', 'India'), +('78.24.202.112', '78.24.202.119', 1310247536, 1310247543, 'US', 'United States'), +('78.24.202.120', '78.24.202.127', 1310247544, 1310247551, 'CA', 'Canada'), +('78.24.202.128', '78.24.202.135', 1310247552, 1310247559, 'FR', 'France'), +('78.24.202.136', '78.24.202.143', 1310247560, 1310247567, 'ES', 'Spain'), +('78.24.202.144', '78.24.202.151', 1310247568, 1310247575, 'IT', 'Italy'), +('78.24.202.152', '78.24.202.159', 1310247576, 1310247583, 'AT', 'Austria'), +('78.24.202.160', '78.24.202.167', 1310247584, 1310247591, 'PT', 'Portugal'), +('78.24.202.168', '78.24.202.175', 1310247592, 1310247599, 'NL', 'Netherlands'), +('78.24.202.176', '78.24.202.183', 1310247600, 1310247607, 'GB', 'United Kingdom'), +('78.24.202.184', '78.24.202.191', 1310247608, 1310247615, 'GR', 'Greece'), +('78.24.202.192', '78.24.202.199', 1310247616, 1310247623, 'TR', 'Turkey'), +('78.24.202.200', '78.24.202.207', 1310247624, 1310247631, 'SE', 'Sweden'), +('78.24.202.208', '78.24.202.215', 1310247632, 1310247639, 'NO', 'Norway'), +('78.24.202.216', '78.24.202.223', 1310247640, 1310247647, 'AR', 'Argentina'), +('78.24.202.224', '78.24.202.231', 1310247648, 1310247655, 'PL', 'Poland'), +('78.24.202.232', '78.24.202.239', 1310247656, 1310247663, 'IE', 'Ireland'), +('78.24.202.240', '78.24.202.247', 1310247664, 1310247671, 'DK', 'Denmark'), +('78.24.202.248', '78.24.202.255', 1310247672, 1310247679, 'RU', 'Russian Federation'), +('78.24.203.0', '78.24.203.7', 1310247680, 1310247687, 'IL', 'Israel'), +('78.24.203.8', '78.24.203.15', 1310247688, 1310247695, 'BR', 'Brazil'), +('78.24.203.16', '78.24.203.23', 1310247696, 1310247703, 'CZ', 'Czech Republic'), +('78.24.203.24', '78.24.203.31', 1310247704, 1310247711, 'BG', 'Bulgaria'), +('78.24.203.32', '78.24.203.39', 1310247712, 1310247719, 'RO', 'Romania'), +('78.24.203.40', '78.24.203.47', 1310247720, 1310247727, 'CN', 'China'), +('78.24.203.48', '78.24.203.55', 1310247728, 1310247735, 'LT', 'Lithuania'), +('78.24.203.56', '78.24.203.63', 1310247736, 1310247743, 'CY', 'Cyprus'), +('78.24.203.64', '78.24.203.71', 1310247744, 1310247751, 'JP', 'Japan'), +('78.24.203.72', '78.24.203.79', 1310247752, 1310247759, 'HU', 'Hungary'), +('78.24.203.80', '78.24.203.87', 1310247760, 1310247767, 'DE', 'Germany'), +('78.24.203.88', '78.24.203.95', 1310247768, 1310247775, 'FI', 'Finland'), +('78.24.203.96', '78.24.203.103', 1310247776, 1310247783, 'LV', 'Latvia'), +('78.24.203.104', '78.24.203.111', 1310247784, 1310247791, 'IN', 'India'), +('78.24.203.112', '78.24.203.119', 1310247792, 1310247799, 'US', 'United States'), +('78.24.203.120', '78.24.203.127', 1310247800, 1310247807, 'CA', 'Canada'), +('78.24.203.128', '78.24.203.135', 1310247808, 1310247815, 'FR', 'France'), +('78.24.203.136', '78.24.203.143', 1310247816, 1310247823, 'ES', 'Spain'), +('78.24.203.144', '78.24.203.151', 1310247824, 1310247831, 'IT', 'Italy'), +('78.24.203.152', '78.24.203.159', 1310247832, 1310247839, 'AT', 'Austria'), +('78.24.203.160', '78.24.203.167', 1310247840, 1310247847, 'PT', 'Portugal'), +('78.24.203.168', '78.24.203.175', 1310247848, 1310247855, 'NL', 'Netherlands'), +('78.24.203.176', '78.24.203.183', 1310247856, 1310247863, 'GB', 'United Kingdom'), +('78.24.203.184', '78.24.203.191', 1310247864, 1310247871, 'GR', 'Greece'), +('78.24.203.192', '78.24.203.199', 1310247872, 1310247879, 'TR', 'Turkey'), +('78.24.203.200', '78.24.203.207', 1310247880, 1310247887, 'SE', 'Sweden'), +('78.24.203.208', '78.24.203.215', 1310247888, 1310247895, 'NO', 'Norway'), +('78.24.203.216', '78.24.203.223', 1310247896, 1310247903, 'AR', 'Argentina'), +('78.24.203.224', '78.24.203.231', 1310247904, 1310247911, 'PL', 'Poland'), +('78.24.203.232', '78.24.203.239', 1310247912, 1310247919, 'IE', 'Ireland'), +('78.24.203.240', '78.24.203.247', 1310247920, 1310247927, 'DK', 'Denmark'), +('78.24.203.248', '78.24.203.255', 1310247928, 1310247935, 'RU', 'Russian Federation'), +('78.24.204.0', '78.24.205.255', 1310247936, 1310248447, 'CH', 'Switzerland'), +('78.24.206.0', '78.24.206.7', 1310248448, 1310248455, 'IL', 'Israel'), +('78.24.206.8', '78.24.206.15', 1310248456, 1310248463, 'BR', 'Brazil'), +('78.24.206.16', '78.24.206.39', 1310248464, 1310248487, 'FR', 'France'), +('78.24.206.40', '78.24.206.47', 1310248488, 1310248495, 'CN', 'China'), +('78.24.206.48', '78.24.206.55', 1310248496, 1310248503, 'FR', 'France'), +('78.24.206.56', '78.24.206.63', 1310248504, 1310248511, 'CY', 'Cyprus'), +('78.24.206.64', '78.24.206.71', 1310248512, 1310248519, 'JP', 'Japan'), +('78.24.206.72', '78.24.206.79', 1310248520, 1310248527, 'HU', 'Hungary'), +('78.24.206.80', '78.24.206.87', 1310248528, 1310248535, 'DE', 'Germany'), +('78.24.206.88', '78.24.206.95', 1310248536, 1310248543, 'FI', 'Finland'), +('78.24.206.96', '78.24.206.103', 1310248544, 1310248551, 'LV', 'Latvia'), +('78.24.206.104', '78.24.206.111', 1310248552, 1310248559, 'IN', 'India'), +('78.24.206.112', '78.24.206.119', 1310248560, 1310248567, 'US', 'United States'), +('78.24.206.120', '78.24.206.127', 1310248568, 1310248575, 'CA', 'Canada'), +('78.24.206.128', '78.24.206.135', 1310248576, 1310248583, 'FR', 'France'), +('78.24.206.136', '78.24.206.143', 1310248584, 1310248591, 'ES', 'Spain'), +('78.24.206.144', '78.24.206.151', 1310248592, 1310248599, 'IT', 'Italy'), +('78.24.206.152', '78.24.206.159', 1310248600, 1310248607, 'AT', 'Austria'), +('78.24.206.160', '78.24.206.167', 1310248608, 1310248615, 'PT', 'Portugal'), +('78.24.206.168', '78.24.206.175', 1310248616, 1310248623, 'NL', 'Netherlands'), +('78.24.206.176', '78.24.206.183', 1310248624, 1310248631, 'GB', 'United Kingdom'), +('78.24.206.184', '78.24.206.191', 1310248632, 1310248639, 'GR', 'Greece'), +('78.24.206.192', '78.24.206.199', 1310248640, 1310248647, 'TR', 'Turkey'), +('78.24.206.200', '78.24.206.207', 1310248648, 1310248655, 'SE', 'Sweden'), +('78.24.206.208', '78.24.206.215', 1310248656, 1310248663, 'NO', 'Norway'), +('78.24.206.216', '78.24.206.223', 1310248664, 1310248671, 'AR', 'Argentina'), +('78.24.206.224', '78.24.206.231', 1310248672, 1310248679, 'PL', 'Poland'), +('78.24.206.232', '78.24.206.239', 1310248680, 1310248687, 'IE', 'Ireland'), +('78.24.206.240', '78.24.206.247', 1310248688, 1310248695, 'DK', 'Denmark'), +('78.24.206.248', '78.24.206.255', 1310248696, 1310248703, 'RU', 'Russian Federation'), +('78.24.207.0', '78.24.207.255', 1310248704, 1310248959, 'CH', 'Switzerland'), +('78.24.208.0', '78.24.208.255', 1310248960, 1310249215, 'IM', 'Isle of Man'), +('78.24.209.0', '78.24.209.63', 1310249216, 1310249279, 'GB', 'United Kingdom'), +('78.24.209.64', '78.24.213.255', 1310249280, 1310250495, 'IM', 'Isle of Man'), +('78.24.214.0', '78.24.215.255', 1310250496, 1310251007, 'MT', 'Malta'), +('78.24.216.0', '78.24.231.255', 1310251008, 1310255103, 'RU', 'Russian Federation'), +('78.24.232.0', '78.24.239.255', 1310255104, 1310257151, 'CZ', 'Czech Republic'), +('78.24.240.0', '78.24.247.255', 1310257152, 1310259199, 'FR', 'France'), +('78.24.248.0', '78.24.255.255', 1310259200, 1310261247, 'DE', 'Germany'), +('78.25.0.0', '78.25.63.255', 1310261248, 1310277631, 'UA', 'Ukraine'), +('78.25.64.0', '78.25.191.255', 1310277632, 1310310399, 'RU', 'Russian Federation'), +('78.25.192.0', '78.25.255.255', 1310310400, 1310326783, 'GB', 'United Kingdom'), +('78.26.0.0', '78.26.63.255', 1310326784, 1310343167, 'NO', 'Norway'), +('78.26.64.0', '78.26.127.255', 1310343168, 1310359551, 'IT', 'Italy'), +('78.26.128.0', '78.26.255.255', 1310359552, 1310392319, 'UA', 'Ukraine'), +('78.27.0.0', '78.27.63.255', 1310392320, 1310408703, 'NL', 'Netherlands'), +('78.27.64.0', '78.27.127.255', 1310408704, 1310425087, 'FI', 'Finland'), +('78.27.128.0', '78.27.255.255', 1310425088, 1310457855, 'UA', 'Ukraine'), +('78.28.0.0', '78.28.63.255', 1310457856, 1310474239, 'PL', 'Poland'), +('78.28.64.0', '78.28.127.255', 1310474240, 1310490623, 'EE', 'Estonia'), +('78.28.128.0', '78.28.191.255', 1310490624, 1310507007, 'BA', 'Bosnia and Herzegovina'), +('78.28.192.0', '78.28.255.255', 1310507008, 1310523391, 'LV', 'Latvia'), +('78.29.0.0', '78.29.127.255', 1310523392, 1310556159, 'RU', 'Russian Federation'), +('78.29.128.0', '78.29.191.255', 1310556160, 1310572543, 'PT', 'Portugal'), +('78.29.192.0', '78.29.255.255', 1310572544, 1310588927, 'BE', 'Belgium'), +('78.30.0.0', '78.30.63.255', 1310588928, 1310605311, 'RU', 'Russian Federation'), +('78.30.64.0', '78.30.127.255', 1310605312, 1310621695, 'PL', 'Poland'), +('78.30.128.0', '78.30.191.255', 1310621696, 1310638079, 'RS', 'Serbia'), +('78.30.192.0', '78.30.255.255', 1310638080, 1310654463, 'UA', 'Ukraine'), +('78.31.0.0', '78.31.7.255', 1310654464, 1310656511, 'RU', 'Russian Federation'), +('78.31.8.0', '78.31.15.255', 1310656512, 1310658559, 'LU', 'Luxembourg'), +('78.31.16.0', '78.31.23.255', 1310658560, 1310660607, 'RU', 'Russian Federation'), +('78.31.24.0', '78.31.31.255', 1310660608, 1310662655, 'CZ', 'Czech Republic'), +('78.31.32.0', '78.31.39.255', 1310662656, 1310664703, 'DK', 'Denmark'), +('78.31.40.0', '78.31.47.255', 1310664704, 1310666751, 'FR', 'France'), +('78.31.48.0', '78.31.55.255', 1310666752, 1310668799, 'NL', 'Netherlands'), +('78.31.56.0', '78.31.63.255', 1310668800, 1310670847, 'RO', 'Romania'), +('78.31.64.0', '78.31.71.255', 1310670848, 1310672895, 'DE', 'Germany'), +('78.31.72.0', '78.31.79.255', 1310672896, 1310674943, 'RU', 'Russian Federation'), +('78.31.80.0', '78.31.87.255', 1310674944, 1310676991, 'NO', 'Norway'), +('78.31.88.0', '78.31.95.255', 1310676992, 1310679039, 'PL', 'Poland'), +('78.31.96.0', '78.31.103.255', 1310679040, 1310681087, 'RU', 'Russian Federation'), +('78.31.104.0', '78.31.111.255', 1310681088, 1310683135, 'GB', 'United Kingdom'), +('78.31.112.0', '78.31.119.255', 1310683136, 1310685183, 'NL', 'Netherlands'), +('78.31.120.0', '78.31.127.255', 1310685184, 1310687231, 'PL', 'Poland'), +('78.31.128.0', '78.31.135.255', 1310687232, 1310689279, 'RO', 'Romania'), +('78.31.136.0', '78.31.159.255', 1310689280, 1310695423, 'PL', 'Poland'), +('78.31.160.0', '78.31.167.255', 1310695424, 1310697471, 'RO', 'Romania'), +('78.31.168.0', '78.31.175.255', 1310697472, 1310699519, 'DE', 'Germany'), +('78.31.176.0', '78.31.199.255', 1310699520, 1310705663, 'UA', 'Ukraine'), +('78.31.200.0', '78.31.223.255', 1310705664, 1310711807, 'RU', 'Russian Federation'), +('78.31.224.0', '78.31.231.255', 1310711808, 1310713855, 'LT', 'Lithuania'), +('78.31.232.0', '78.31.239.255', 1310713856, 1310715903, 'UA', 'Ukraine'), +('78.31.240.0', '78.31.247.255', 1310715904, 1310717951, 'RU', 'Russian Federation'), +('78.31.248.0', '78.31.255.255', 1310717952, 1310719999, 'UA', 'Ukraine'), +('78.32.0.0', '78.33.255.255', 1310720000, 1310851071, 'GB', 'United Kingdom'), +('78.34.0.0', '78.35.255.255', 1310851072, 1310982143, 'DE', 'Germany'), +('78.36.0.0', '78.37.255.255', 1310982144, 1311113215, 'RU', 'Russian Federation'), +('78.38.0.0', '78.39.255.255', 1311113216, 1311244287, 'IR', 'Iran, Islamic Republic of'), +('78.40.0.0', '78.40.7.255', 1311244288, 1311246335, 'MK', 'Macedonia'), +('78.40.8.0', '78.40.15.255', 1311246336, 1311248383, 'IT', 'Italy'), +('78.40.16.0', '78.40.23.255', 1311248384, 1311250431, 'GB', 'United Kingdom'), +('78.40.24.0', '78.40.31.255', 1311250432, 1311252479, 'RU', 'Russian Federation'), +('78.40.32.0', '78.40.39.255', 1311252480, 1311254527, 'GB', 'United Kingdom'), +('78.40.40.0', '78.40.47.255', 1311254528, 1311256575, 'SE', 'Sweden'), +('78.40.48.0', '78.40.55.255', 1311256576, 1311258623, 'FR', 'France'), +('78.40.56.0', '78.40.71.255', 1311258624, 1311262719, 'GB', 'United Kingdom'), +('78.40.72.0', '78.40.72.255', 1311262720, 1311262975, 'FR', 'France'), +('78.40.73.0', '78.40.74.47', 1311262976, 1311263279, 'CH', 'Switzerland'), +('78.40.74.48', '78.40.74.63', 1311263280, 1311263295, 'FR', 'France'), +('78.40.74.64', '78.40.74.127', 1311263296, 1311263359, 'CH', 'Switzerland'), +('78.40.74.128', '78.40.79.255', 1311263360, 1311264767, 'FR', 'France'), +('78.40.80.0', '78.40.87.255', 1311264768, 1311266815, 'RU', 'Russian Federation'), +('78.40.88.0', '78.40.95.255', 1311266816, 1311268863, 'FR', 'France'), +('78.40.96.0', '78.40.103.255', 1311268864, 1311270911, 'BE', 'Belgium'), +('78.40.104.0', '78.40.111.255', 1311270912, 1311272959, 'RU', 'Russian Federation'), +('78.40.112.0', '78.40.119.255', 1311272960, 1311275007, 'GB', 'United Kingdom'), +('78.40.120.0', '78.40.127.255', 1311275008, 1311277055, 'FR', 'France'), +('78.40.128.0', '78.40.135.255', 1311277056, 1311279103, 'IT', 'Italy'), +('78.40.136.0', '78.40.143.255', 1311279104, 1311281151, 'BG', 'Bulgaria'), +('78.40.144.0', '78.40.159.255', 1311281152, 1311285247, 'GB', 'United Kingdom'), +('78.40.160.0', '78.40.175.255', 1311285248, 1311289343, 'IT', 'Italy'), +('78.40.176.0', '78.40.183.255', 1311289344, 1311291391, 'LB', 'Lebanon'), +('78.40.184.0', '78.40.191.255', 1311291392, 1311293439, 'RU', 'Russian Federation'), +('78.40.192.0', '78.40.199.255', 1311293440, 1311295487, 'NL', 'Netherlands'), +('78.40.200.0', '78.40.207.255', 1311295488, 1311297535, 'IT', 'Italy'), +('78.40.208.0', '78.40.212.255', 1311297536, 1311298815, 'EU', 'Europe'), +('78.40.213.0', '78.40.215.255', 1311298816, 1311299583, 'AT', 'Austria'), +('78.40.216.0', '78.40.223.255', 1311299584, 1311301631, 'RU', 'Russian Federation'), +('78.40.224.0', '78.40.231.255', 1311301632, 1311303679, 'TR', 'Turkey'), +('78.40.232.0', '78.40.247.255', 1311303680, 1311307775, 'GB', 'United Kingdom'), +('78.40.248.0', '78.40.255.255', 1311307776, 1311309823, 'IS', 'Iceland'), +('78.41.0.0', '78.41.7.255', 1311309824, 1311311871, 'GB', 'United Kingdom'), +('78.41.8.0', '78.41.23.255', 1311311872, 1311315967, 'CZ', 'Czech Republic'), +('78.41.24.0', '78.41.25.199', 1311315968, 1311316423, 'PL', 'Poland'), +('78.41.25.200', '78.41.25.215', 1311316424, 1311316439, 'GB', 'United Kingdom'), +('78.41.25.216', '78.41.25.223', 1311316440, 1311316447, 'PL', 'Poland'), +('78.41.25.224', '78.41.25.231', 1311316448, 1311316455, 'HR', 'Croatia'), +('78.41.25.232', '78.41.31.255', 1311316456, 1311318015, 'PL', 'Poland'), +('78.41.32.0', '78.41.39.255', 1311318016, 1311320063, 'RU', 'Russian Federation'), +('78.41.40.0', '78.41.47.255', 1311320064, 1311322111, 'FR', 'France'), +('78.41.48.0', '78.41.55.255', 1311322112, 1311324159, 'IT', 'Italy'), +('78.41.56.0', '78.41.63.255', 1311324160, 1311326207, 'LB', 'Lebanon'), +('78.41.64.0', '78.41.71.255', 1311326208, 1311328255, 'BE', 'Belgium'), +('78.41.72.0', '78.41.80.255', 1311328256, 1311330559, 'NL', 'Netherlands'), +('78.41.81.0', '78.41.82.31', 1311330560, 1311330847, 'DE', 'Germany'), +('78.41.82.32', '78.41.82.63', 1311330848, 1311330879, 'NL', 'Netherlands'), +('78.41.82.64', '78.41.82.127', 1311330880, 1311330943, 'DE', 'Germany'), +('78.41.82.128', '78.41.83.255', 1311330944, 1311331327, 'NL', 'Netherlands'), +('78.41.84.0', '78.41.87.255', 1311331328, 1311332351, 'DE', 'Germany'), +('78.41.88.0', '78.41.111.255', 1311332352, 1311338495, 'RU', 'Russian Federation'), +('78.41.112.0', '78.41.119.255', 1311338496, 1311340543, 'AT', 'Austria'), +('78.41.120.0', '78.41.127.255', 1311340544, 1311342591, 'NO', 'Norway'), +('78.41.128.0', '78.41.135.255', 1311342592, 1311344639, 'FR', 'France'), +('78.41.136.0', '78.41.143.255', 1311344640, 1311346687, 'NO', 'Norway'), +('78.41.144.0', '78.41.151.255', 1311346688, 1311348735, 'AT', 'Austria'), +('78.41.152.0', '78.41.159.255', 1311348736, 1311350783, 'GB', 'United Kingdom'), +('78.41.160.0', '78.41.167.255', 1311350784, 1311352831, 'RU', 'Russian Federation'), +('78.41.168.0', '78.41.175.255', 1311352832, 1311354879, 'SK', 'Slovakia'), +('78.41.176.0', '78.41.183.255', 1311354880, 1311356927, 'RU', 'Russian Federation'), +('78.41.184.0', '78.41.189.55', 1311356928, 1311358263, 'FR', 'France'), +('78.41.189.56', '78.41.189.63', 1311358264, 1311358271, 'ES', 'Spain'), +('78.41.189.64', '78.41.191.255', 1311358272, 1311358975, 'FR', 'France'), +('78.41.192.0', '78.41.199.255', 1311358976, 1311361023, 'RU', 'Russian Federation'), +('78.41.200.0', '78.41.207.255', 1311361024, 1311363071, 'NL', 'Netherlands'), +('78.41.208.0', '78.41.215.255', 1311363072, 1311365119, 'GB', 'United Kingdom'), +('78.41.216.0', '78.41.223.255', 1311365120, 1311367167, 'DE', 'Germany'), +('78.41.224.0', '78.41.224.127', 1311367168, 1311367295, 'GN', 'Guinea'), +('78.41.224.128', '78.41.224.255', 1311367296, 1311367423, 'GA', 'Gabon'), +('78.41.225.0', '78.41.225.255', 1311367424, 1311367679, 'MM', 'Myanmar'), +('78.41.226.0', '78.41.226.31', 1311367680, 1311367711, 'UG', 'Uganda'), +('78.41.226.32', '78.41.226.63', 1311367712, 1311367743, 'CD', 'Congo, The Democratic Republic of the'), +('78.41.226.64', '78.41.226.95', 1311367744, 1311367775, 'SL', 'Sierra Leone'), +('78.41.226.96', '78.41.226.127', 1311367776, 1311367807, 'LR', 'Liberia'), +('78.41.226.128', '78.41.226.159', 1311367808, 1311367839, 'US', 'United States'), +('78.41.226.160', '78.41.226.191', 1311367840, 1311367871, 'DK', 'Denmark'), +('78.41.226.192', '78.41.226.207', 1311367872, 1311367887, 'LR', 'Liberia'), +('78.41.226.208', '78.41.226.215', 1311367888, 1311367895, 'DE', 'Germany'), +('78.41.226.216', '78.41.226.255', 1311367896, 1311367935, 'DK', 'Denmark'), +('78.41.227.0', '78.41.227.31', 1311367936, 1311367967, 'BJ', 'Benin'), +('78.41.227.32', '78.41.227.255', 1311367968, 1311368191, 'DE', 'Germany'), +('78.41.228.0', '78.41.228.127', 1311368192, 1311368319, 'BD', 'Bangladesh'), +('78.41.228.128', '78.41.228.255', 1311368320, 1311368447, 'CF', 'Central African Republic'), +('78.41.229.0', '78.41.229.127', 1311368448, 1311368575, 'TZ', 'Tanzania, United Republic of'), +('78.41.229.128', '78.41.229.255', 1311368576, 1311368703, 'PG', 'Papua New Guinea'), +('78.41.230.0', '78.41.230.127', 1311368704, 1311368831, 'NP', 'Nepal'), +('78.41.230.128', '78.41.230.255', 1311368832, 1311368959, 'GM', 'Gambia'), +('78.41.231.0', '78.41.231.127', 1311368960, 1311369087, 'PT', 'Portugal'), +('78.41.231.128', '78.41.231.255', 1311369088, 1311369215, 'BT', 'Bhutan'), +('78.41.232.0', '78.41.239.255', 1311369216, 1311371263, 'FR', 'France'), +('78.41.240.0', '78.41.247.255', 1311371264, 1311373311, 'SE', 'Sweden'), +('78.41.248.0', '78.41.255.255', 1311373312, 1311375359, 'FR', 'France'), +('78.42.0.0', '78.43.255.255', 1311375360, 1311506431, 'DE', 'Germany'), +('78.44.0.0', '78.45.255.255', 1311506432, 1311637503, 'CZ', 'Czech Republic'), +('78.46.0.0', '78.55.255.255', 1311637504, 1312292863, 'DE', 'Germany'), +('78.56.0.0', '78.63.255.255', 1312292864, 1312817151, 'LT', 'Lithuania'), +('78.64.0.0', '78.79.255.255', 1312817152, 1313865727, 'SE', 'Sweden'), +('78.80.0.0', '78.80.255.255', 1313865728, 1313931263, 'CZ', 'Czech Republic'), +('78.81.0.0', '78.81.255.255', 1313931264, 1313996799, 'RU', 'Russian Federation'), +('78.82.0.0', '78.82.255.255', 1313996800, 1314062335, 'SE', 'Sweden'), +('78.83.0.0', '78.83.255.255', 1314062336, 1314127871, 'BG', 'Bulgaria'), +('78.84.0.0', '78.84.255.255', 1314127872, 1314193407, 'LV', 'Latvia'), +('78.85.0.0', '78.85.255.255', 1314193408, 1314258943, 'RU', 'Russian Federation'), +('78.86.0.0', '78.86.255.255', 1314258944, 1314324479, 'GB', 'United Kingdom'), +('78.87.0.0', '78.87.127.255', 1314324480, 1314357247, 'GR', 'Greece'), +('78.87.128.0', '78.87.187.0', 1314357248, 1314372352, 'CY', 'Cyprus'), +('78.87.187.1', '78.87.255.255', 1314372353, 1314390015, 'GR', 'Greece'), +('78.88.0.0', '78.88.255.255', 1314390016, 1314455551, 'PL', 'Poland'), +('78.89.0.0', '78.89.255.255', 1314455552, 1314521087, 'KW', 'Kuwait'), +('78.90.0.0', '78.90.255.255', 1314521088, 1314586623, 'BG', 'Bulgaria'), +('78.91.0.0', '78.91.255.255', 1314586624, 1314652159, 'NO', 'Norway'), +('78.92.0.0', '78.92.255.255', 1314652160, 1314717695, 'HU', 'Hungary'), +('78.93.0.0', '78.93.255.255', 1314717696, 1314783231, 'SA', 'Saudi Arabia'), +('78.94.0.0', '78.94.255.255', 1314783232, 1314848767, 'DE', 'Germany'), +('78.95.0.0', '78.97.255.255', 1314848768, 1315045375, 'RO', 'Romania'), +('78.98.0.0', '78.99.255.255', 1315045376, 1315176447, 'SK', 'Slovakia'), +('78.100.0.0', '78.101.255.255', 1315176448, 1315307519, 'QA', 'Qatar'), +('78.102.0.0', '78.103.255.255', 1315307520, 1315438591, 'CZ', 'Czech Republic'), +('78.104.0.0', '78.104.255.255', 1315438592, 1315504127, 'AT', 'Austria'), +('78.105.0.0', '78.105.255.255', 1315504128, 1315569663, 'GB', 'United Kingdom'), +('78.106.0.0', '78.107.255.255', 1315569664, 1315700735, 'RU', 'Russian Federation'), +('78.108.0.0', '78.108.15.255', 1315700736, 1315704831, 'SE', 'Sweden'), +('78.108.16.0', '78.108.31.255', 1315704832, 1315708927, 'HU', 'Hungary'), +('78.108.32.0', '78.108.47.255', 1315708928, 1315713023, 'GR', 'Greece'), +('78.108.48.0', '78.108.63.255', 1315713024, 1315717119, 'SE', 'Sweden'), +('78.108.64.0', '78.108.95.255', 1315717120, 1315725311, 'RU', 'Russian Federation'), +('78.108.96.0', '78.108.111.255', 1315725312, 1315729407, 'CZ', 'Czech Republic'), +('78.108.112.0', '78.108.127.255', 1315729408, 1315733503, 'EU', 'Europe'), +('78.108.128.0', '78.108.143.255', 1315733504, 1315737599, 'NL', 'Netherlands'), +('78.108.144.0', '78.108.159.255', 1315737600, 1315741695, 'CZ', 'Czech Republic'), +('78.108.160.0', '78.108.175.255', 1315741696, 1315745791, 'LB', 'Lebanon'), +('78.108.176.0', '78.108.191.255', 1315745792, 1315749887, 'CZ', 'Czech Republic'), +('78.108.192.0', '78.108.207.255', 1315749888, 1315753983, 'RU', 'Russian Federation'), +('78.108.208.0', '78.108.223.255', 1315753984, 1315758079, 'KZ', 'Kazakstan'), +('78.108.224.0', '78.108.239.255', 1315758080, 1315762175, 'FR', 'France'), +('78.108.240.0', '78.108.255.255', 1315762176, 1315766271, 'BG', 'Bulgaria'), +('78.109.0.0', '78.109.15.255', 1315766272, 1315770367, 'NL', 'Netherlands'), +('78.109.16.0', '78.109.16.15', 1315770368, 1315770383, 'UA', 'Ukraine'), +('78.109.16.16', '78.109.16.31', 1315770384, 1315770399, 'NA', 'Namibia'), +('78.109.16.32', '78.109.16.135', 1315770400, 1315770503, 'UA', 'Ukraine'), +('78.109.16.136', '78.109.16.143', 1315770504, 1315770511, 'NA', 'Namibia'), +('78.109.16.144', '78.109.16.207', 1315770512, 1315770575, 'UA', 'Ukraine'), +('78.109.16.208', '78.109.16.215', 1315770576, 1315770583, 'NA', 'Namibia'), +('78.109.16.216', '78.109.16.223', 1315770584, 1315770591, 'UA', 'Ukraine'), +('78.109.16.224', '78.109.16.231', 1315770592, 1315770599, 'NA', 'Namibia'), +('78.109.16.232', '78.109.17.0', 1315770600, 1315770624, 'UA', 'Ukraine'), +('78.109.17.1', '78.109.17.7', 1315770625, 1315770631, 'NA', 'Namibia'), +('78.109.17.8', '78.109.17.15', 1315770632, 1315770639, 'UA', 'Ukraine'), +('78.109.17.16', '78.109.17.23', 1315770640, 1315770647, 'NA', 'Namibia'), +('78.109.17.24', '78.109.17.95', 1315770648, 1315770719, 'UA', 'Ukraine'), +('78.109.17.96', '78.109.17.103', 1315770720, 1315770727, 'NA', 'Namibia'), +('78.109.17.104', '78.109.18.95', 1315770728, 1315770975, 'UA', 'Ukraine'), +('78.109.18.96', '78.109.18.119', 1315770976, 1315770999, 'NA', 'Namibia'), +('78.109.18.120', '78.109.18.127', 1315771000, 1315771007, 'UA', 'Ukraine'), +('78.109.18.128', '78.109.18.135', 1315771008, 1315771015, 'NA', 'Namibia'), +('78.109.18.136', '78.109.18.254', 1315771016, 1315771134, 'UA', 'Ukraine'), +('78.109.18.255', '78.109.18.255', 1315771135, 1315771135, 'NA', 'Namibia'), +('78.109.19.0', '78.109.19.63', 1315771136, 1315771199, 'UA', 'Ukraine'), +('78.109.19.64', '78.109.19.71', 1315771200, 1315771207, 'NA', 'Namibia'), +('78.109.19.72', '78.109.19.87', 1315771208, 1315771223, 'UA', 'Ukraine'), +('78.109.19.88', '78.109.19.95', 1315771224, 1315771231, 'NA', 'Namibia'), +('78.109.19.96', '78.109.19.111', 1315771232, 1315771247, 'UA', 'Ukraine'), +('78.109.19.112', '78.109.19.127', 1315771248, 1315771263, 'NA', 'Namibia'), +('78.109.19.128', '78.109.20.23', 1315771264, 1315771415, 'UA', 'Ukraine'), +('78.109.20.24', '78.109.20.31', 1315771416, 1315771423, 'NA', 'Namibia'), +('78.109.20.32', '78.109.20.247', 1315771424, 1315771639, 'UA', 'Ukraine'), +('78.109.20.248', '78.109.20.248', 1315771640, 1315771640, 'NA', 'Namibia'), +('78.109.20.249', '78.109.20.254', 1315771641, 1315771646, 'UA', 'Ukraine'), +('78.109.20.255', '78.109.20.255', 1315771647, 1315771647, 'NA', 'Namibia'), +('78.109.21.0', '78.109.21.111', 1315771648, 1315771759, 'UA', 'Ukraine'), +('78.109.21.112', '78.109.21.119', 1315771760, 1315771767, 'NA', 'Namibia'), +('78.109.21.120', '78.109.21.167', 1315771768, 1315771815, 'UA', 'Ukraine'), +('78.109.21.168', '78.109.21.175', 1315771816, 1315771823, 'NA', 'Namibia'), +('78.109.21.176', '78.109.21.223', 1315771824, 1315771871, 'UA', 'Ukraine'), +('78.109.21.224', '78.109.21.231', 1315771872, 1315771879, 'NA', 'Namibia'), +('78.109.21.232', '78.109.22.31', 1315771880, 1315771935, 'UA', 'Ukraine'), +('78.109.22.32', '78.109.22.47', 1315771936, 1315771951, 'NA', 'Namibia'), +('78.109.22.48', '78.109.22.55', 1315771952, 1315771959, 'UA', 'Ukraine'), +('78.109.22.56', '78.109.22.63', 1315771960, 1315771967, 'NA', 'Namibia'), +('78.109.22.64', '78.109.22.71', 1315771968, 1315771975, 'UA', 'Ukraine'), +('78.109.22.72', '78.109.22.79', 1315771976, 1315771983, 'NA', 'Namibia'), +('78.109.22.80', '78.109.23.143', 1315771984, 1315772303, 'UA', 'Ukraine'), +('78.109.23.144', '78.109.23.151', 1315772304, 1315772311, 'NA', 'Namibia'), +('78.109.23.152', '78.109.23.159', 1315772312, 1315772319, 'UA', 'Ukraine'), +('78.109.23.160', '78.109.23.167', 1315772320, 1315772327, 'NA', 'Namibia'), +('78.109.23.168', '78.109.23.239', 1315772328, 1315772399, 'UA', 'Ukraine'), +('78.109.23.240', '78.109.23.247', 1315772400, 1315772407, 'NA', 'Namibia'), +('78.109.23.248', '78.109.24.47', 1315772408, 1315772463, 'UA', 'Ukraine'), +('78.109.24.48', '78.109.24.63', 1315772464, 1315772479, 'NA', 'Namibia'), +('78.109.24.64', '78.109.24.87', 1315772480, 1315772503, 'UA', 'Ukraine'), +('78.109.24.88', '78.109.24.95', 1315772504, 1315772511, 'NA', 'Namibia'), +('78.109.24.96', '78.109.24.167', 1315772512, 1315772583, 'UA', 'Ukraine'), +('78.109.24.168', '78.109.24.183', 1315772584, 1315772599, 'NA', 'Namibia'), +('78.109.24.184', '78.109.25.31', 1315772600, 1315772703, 'UA', 'Ukraine'), +('78.109.25.32', '78.109.25.39', 1315772704, 1315772711, 'NA', 'Namibia'), +('78.109.25.40', '78.109.25.119', 1315772712, 1315772791, 'UA', 'Ukraine'), +('78.109.25.120', '78.109.25.127', 1315772792, 1315772799, 'NA', 'Namibia'), +('78.109.25.128', '78.109.25.215', 1315772800, 1315772887, 'UA', 'Ukraine'), +('78.109.25.216', '78.109.25.223', 1315772888, 1315772895, 'NA', 'Namibia'), +('78.109.25.224', '78.109.25.253', 1315772896, 1315772925, 'UA', 'Ukraine'), +('78.109.25.254', '78.109.25.255', 1315772926, 1315772927, 'NA', 'Namibia'), +('78.109.26.0', '78.109.28.23', 1315772928, 1315773463, 'UA', 'Ukraine'), +('78.109.28.24', '78.109.28.31', 1315773464, 1315773471, 'NA', 'Namibia'), +('78.109.28.32', '78.109.28.47', 1315773472, 1315773487, 'UA', 'Ukraine'), +('78.109.28.48', '78.109.28.55', 1315773488, 1315773495, 'NA', 'Namibia'), +('78.109.28.56', '78.109.28.71', 1315773496, 1315773511, 'UA', 'Ukraine'), +('78.109.28.72', '78.109.28.79', 1315773512, 1315773519, 'NA', 'Namibia'), +('78.109.28.80', '78.109.28.95', 1315773520, 1315773535, 'UA', 'Ukraine'), +('78.109.28.96', '78.109.28.103', 1315773536, 1315773543, 'NA', 'Namibia'), +('78.109.28.104', '78.109.28.111', 1315773544, 1315773551, 'UA', 'Ukraine'), +('78.109.28.112', '78.109.28.127', 1315773552, 1315773567, 'NA', 'Namibia'), +('78.109.28.128', '78.109.28.135', 1315773568, 1315773575, 'UA', 'Ukraine'), +('78.109.28.136', '78.109.28.143', 1315773576, 1315773583, 'NA', 'Namibia'), +('78.109.28.144', '78.109.28.239', 1315773584, 1315773679, 'UA', 'Ukraine'), +('78.109.28.240', '78.109.28.247', 1315773680, 1315773687, 'NA', 'Namibia'), +('78.109.28.248', '78.109.29.7', 1315773688, 1315773703, 'UA', 'Ukraine'), +('78.109.29.8', '78.109.29.15', 1315773704, 1315773711, 'NA', 'Namibia'), +('78.109.29.16', '78.109.29.23', 1315773712, 1315773719, 'UA', 'Ukraine'), +('78.109.29.24', '78.109.29.55', 1315773720, 1315773751, 'NA', 'Namibia'), +('78.109.29.56', '78.109.29.199', 1315773752, 1315773895, 'UA', 'Ukraine'), +('78.109.29.200', '78.109.29.207', 1315773896, 1315773903, 'NA', 'Namibia'), +('78.109.29.208', '78.109.30.31', 1315773904, 1315773983, 'UA', 'Ukraine'), +('78.109.30.32', '78.109.30.39', 1315773984, 1315773991, 'BY', 'Belarus'), +('78.109.30.40', '78.109.30.63', 1315773992, 1315774015, 'UA', 'Ukraine'), +('78.109.30.64', '78.109.30.79', 1315774016, 1315774031, 'NA', 'Namibia'), +('78.109.30.80', '78.109.30.87', 1315774032, 1315774039, 'UA', 'Ukraine'), +('78.109.30.88', '78.109.30.119', 1315774040, 1315774071, 'NA', 'Namibia'), +('78.109.30.120', '78.109.30.183', 1315774072, 1315774135, 'UA', 'Ukraine'), +('78.109.30.184', '78.109.30.191', 1315774136, 1315774143, 'US', 'United States'), +('78.109.30.192', '78.109.30.239', 1315774144, 1315774191, 'UA', 'Ukraine'), +('78.109.30.240', '78.109.30.247', 1315774192, 1315774199, 'NA', 'Namibia'), +('78.109.30.248', '78.109.30.251', 1315774200, 1315774203, 'UA', 'Ukraine'), +('78.109.30.252', '78.109.30.255', 1315774204, 1315774207, 'NA', 'Namibia'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('78.109.31.0', '78.109.31.15', 1315774208, 1315774223, 'UA', 'Ukraine'), +('78.109.31.16', '78.109.31.23', 1315774224, 1315774231, 'NA', 'Namibia'), +('78.109.31.24', '78.109.31.39', 1315774232, 1315774247, 'UA', 'Ukraine'), +('78.109.31.40', '78.109.31.47', 1315774248, 1315774255, 'RU', 'Russian Federation'), +('78.109.31.48', '78.109.31.55', 1315774256, 1315774263, 'NA', 'Namibia'), +('78.109.31.56', '78.109.31.215', 1315774264, 1315774423, 'UA', 'Ukraine'), +('78.109.31.216', '78.109.31.223', 1315774424, 1315774431, 'NA', 'Namibia'), +('78.109.31.224', '78.109.31.255', 1315774432, 1315774463, 'UA', 'Ukraine'), +('78.109.32.0', '78.109.63.255', 1315774464, 1315782655, 'RU', 'Russian Federation'), +('78.109.64.0', '78.109.79.255', 1315782656, 1315786751, 'AM', 'Armenia'), +('78.109.80.0', '78.109.95.255', 1315786752, 1315790847, 'FR', 'France'), +('78.109.96.0', '78.109.111.255', 1315790848, 1315794943, 'RS', 'Serbia'), +('78.109.112.0', '78.109.143.255', 1315794944, 1315803135, 'RU', 'Russian Federation'), +('78.109.144.0', '78.109.159.255', 1315803136, 1315807231, 'KZ', 'Kazakstan'), +('78.109.160.0', '78.109.191.255', 1315807232, 1315815423, 'GB', 'United Kingdom'), +('78.109.192.0', '78.109.207.255', 1315815424, 1315819519, 'IR', 'Iran, Islamic Republic of'), +('78.109.208.0', '78.109.223.255', 1315819520, 1315823615, 'DK', 'Denmark'), +('78.109.224.0', '78.109.239.255', 1315823616, 1315827711, 'IQ', 'Iraq'), +('78.109.240.0', '78.109.255.255', 1315827712, 1315831807, 'RU', 'Russian Federation'), +('78.110.0.0', '78.110.15.255', 1315831808, 1315835903, 'SA', 'Saudi Arabia'), +('78.110.16.0', '78.110.16.255', 1315835904, 1315836159, 'CY', 'Cyprus'), +('78.110.17.0', '78.110.29.255', 1315836160, 1315839487, 'MT', 'Malta'), +('78.110.30.0', '78.110.30.255', 1315839488, 1315839743, 'CY', 'Cyprus'), +('78.110.31.0', '78.110.31.255', 1315839744, 1315839999, 'MT', 'Malta'), +('78.110.32.0', '78.110.47.255', 1315840000, 1315844095, 'EE', 'Estonia'), +('78.110.48.0', '78.110.63.255', 1315844096, 1315848191, 'RU', 'Russian Federation'), +('78.110.80.0', '78.110.95.255', 1315852288, 1315856383, 'SE', 'Sweden'), +('78.110.96.0', '78.110.111.255', 1315856384, 1315860479, 'SY', 'Syrian Arab Republic'), +('78.110.112.0', '78.110.127.255', 1315860480, 1315864575, 'IR', 'Iran, Islamic Republic of'), +('78.110.128.0', '78.110.143.255', 1315864576, 1315868671, 'CH', 'Switzerland'), +('78.110.144.0', '78.110.159.255', 1315868672, 1315872767, 'RU', 'Russian Federation'), +('78.110.160.0', '78.110.161.31', 1315872768, 1315873055, 'GB', 'United Kingdom'), +('78.110.161.32', '78.110.161.39', 1315873056, 1315873063, 'RU', 'Russian Federation'), +('78.110.161.40', '78.110.169.111', 1315873064, 1315875183, 'GB', 'United Kingdom'), +('78.110.169.112', '78.110.169.127', 1315875184, 1315875199, 'ES', 'Spain'), +('78.110.169.128', '78.110.174.255', 1315875200, 1315876607, 'GB', 'United Kingdom'), +('78.110.175.0', '78.110.175.255', 1315876608, 1315876863, 'RU', 'Russian Federation'), +('78.110.176.0', '78.110.191.255', 1315876864, 1315880959, 'IT', 'Italy'), +('78.110.192.0', '78.110.207.255', 1315880960, 1315885055, 'BE', 'Belgium'), +('78.110.208.0', '78.110.223.255', 1315885056, 1315889151, 'CZ', 'Czech Republic'), +('78.110.224.0', '78.110.239.255', 1315889152, 1315893247, 'DE', 'Germany'), +('78.110.240.0', '78.110.255.255', 1315893248, 1315897343, 'RU', 'Russian Federation'), +('78.111.0.0', '78.111.1.255', 1315897344, 1315897855, 'IR', 'Iran, Islamic Republic of'), +('78.111.2.0', '78.111.2.63', 1315897856, 1315897919, 'AE', 'United Arab Emirates'), +('78.111.2.64', '78.111.2.95', 1315897920, 1315897951, 'IR', 'Iran, Islamic Republic of'), +('78.111.2.96', '78.111.2.135', 1315897952, 1315897991, 'AE', 'United Arab Emirates'), +('78.111.2.136', '78.111.2.143', 1315897992, 1315897999, 'IR', 'Iran, Islamic Republic of'), +('78.111.2.144', '78.111.2.255', 1315898000, 1315898111, 'AE', 'United Arab Emirates'), +('78.111.3.0', '78.111.3.255', 1315898112, 1315898367, 'IR', 'Iran, Islamic Republic of'), +('78.111.4.0', '78.111.4.63', 1315898368, 1315898431, 'AE', 'United Arab Emirates'), +('78.111.4.64', '78.111.4.79', 1315898432, 1315898447, 'IR', 'Iran, Islamic Republic of'), +('78.111.4.80', '78.111.4.255', 1315898448, 1315898623, 'AE', 'United Arab Emirates'), +('78.111.5.0', '78.111.15.255', 1315898624, 1315901439, 'IR', 'Iran, Islamic Republic of'), +('78.111.16.0', '78.111.31.255', 1315901440, 1315905535, 'UA', 'Ukraine'), +('78.111.32.0', '78.111.39.255', 1315905536, 1315907583, 'BA', 'Bosnia and Herzegovina'), +('78.111.40.0', '78.111.47.255', 1315907584, 1315909631, 'SI', 'Slovenia'), +('78.111.48.0', '78.111.63.255', 1315909632, 1315913727, 'AZ', 'Azerbaijan'), +('78.111.64.0', '78.111.79.255', 1315913728, 1315917823, 'DE', 'Germany'), +('78.111.80.0', '78.111.95.255', 1315917824, 1315921919, 'RU', 'Russian Federation'), +('78.111.96.0', '78.111.111.255', 1315921920, 1315926015, 'TR', 'Turkey'), +('78.111.112.0', '78.111.127.255', 1315926016, 1315930111, 'CZ', 'Czech Republic'), +('78.111.128.0', '78.111.143.255', 1315930112, 1315934207, 'DE', 'Germany'), +('78.111.144.0', '78.111.159.255', 1315934208, 1315938303, 'RU', 'Russian Federation'), +('78.111.160.0', '78.111.175.255', 1315938304, 1315942399, 'DK', 'Denmark'), +('78.111.176.0', '78.111.191.255', 1315942400, 1315946495, 'UA', 'Ukraine'), +('78.111.192.0', '78.111.207.255', 1315946496, 1315950591, 'GG', 'Guernsey'), +('78.111.208.0', '78.111.223.255', 1315950592, 1315954687, 'UA', 'Ukraine'), +('78.111.224.0', '78.111.239.255', 1315954688, 1315958783, 'DE', 'Germany'), +('78.111.240.0', '78.111.255.255', 1315958784, 1315962879, 'RU', 'Russian Federation'), +('78.112.0.0', '78.127.255.255', 1315962880, 1317011455, 'FR', 'France'), +('78.128.0.0', '78.128.127.255', 1317011456, 1317044223, 'BG', 'Bulgaria'), +('78.128.128.0', '78.128.255.255', 1317044224, 1317076991, 'CZ', 'Czech Republic'), +('78.129.0.0', '78.129.127.255', 1317076992, 1317109759, 'BE', 'Belgium'), +('78.129.128.0', '78.129.141.191', 1317109760, 1317113279, 'GB', 'United Kingdom'), +('78.129.141.192', '78.129.141.255', 1317113280, 1317113343, 'RU', 'Russian Federation'), +('78.129.142.0', '78.129.143.255', 1317113344, 1317113855, 'GB', 'United Kingdom'), +('78.129.144.0', '78.129.144.255', 1317113856, 1317114111, 'AE', 'United Arab Emirates'), +('78.129.145.0', '78.129.148.255', 1317114112, 1317115135, 'GB', 'United Kingdom'), +('78.129.149.0', '78.129.149.255', 1317115136, 1317115391, 'IE', 'Ireland'), +('78.129.150.0', '78.129.150.255', 1317115392, 1317115647, 'CN', 'China'), +('78.129.151.0', '78.129.160.255', 1317115648, 1317118207, 'GB', 'United Kingdom'), +('78.129.161.0', '78.129.161.255', 1317118208, 1317118463, 'IN', 'India'), +('78.129.162.0', '78.129.164.127', 1317118464, 1317119103, 'GB', 'United Kingdom'), +('78.129.164.128', '78.129.164.191', 1317119104, 1317119167, 'IT', 'Italy'), +('78.129.164.192', '78.129.165.255', 1317119168, 1317119487, 'GB', 'United Kingdom'), +('78.129.166.0', '78.129.166.255', 1317119488, 1317119743, 'KY', 'Cayman Islands'), +('78.129.167.0', '78.129.192.255', 1317119744, 1317126399, 'GB', 'United Kingdom'), +('78.129.193.0', '78.129.193.255', 1317126400, 1317126655, 'US', 'United States'), +('78.129.194.0', '78.129.203.127', 1317126656, 1317129087, 'GB', 'United Kingdom'), +('78.129.203.128', '78.129.203.191', 1317129088, 1317129151, 'TR', 'Turkey'), +('78.129.203.192', '78.129.204.63', 1317129152, 1317129279, 'GB', 'United Kingdom'), +('78.129.204.64', '78.129.204.127', 1317129280, 1317129343, 'CA', 'Canada'), +('78.129.204.128', '78.129.215.255', 1317129344, 1317132287, 'GB', 'United Kingdom'), +('78.129.216.0', '78.129.216.255', 1317132288, 1317132543, 'IL', 'Israel'), +('78.129.217.0', '78.129.217.191', 1317132544, 1317132735, 'GB', 'United Kingdom'), +('78.129.217.192', '78.129.217.255', 1317132736, 1317132799, 'CA', 'Canada'), +('78.129.218.0', '78.129.221.255', 1317132800, 1317133823, 'GB', 'United Kingdom'), +('78.129.222.0', '78.129.222.255', 1317133824, 1317134079, 'FI', 'Finland'), +('78.129.223.0', '78.129.225.63', 1317134080, 1317134655, 'GB', 'United Kingdom'), +('78.129.225.64', '78.129.225.127', 1317134656, 1317134719, 'CN', 'China'), +('78.129.225.128', '78.129.235.127', 1317134720, 1317137279, 'GB', 'United Kingdom'), +('78.129.235.128', '78.129.235.191', 1317137280, 1317137343, 'CN', 'China'), +('78.129.235.192', '78.129.236.255', 1317137344, 1317137663, 'GB', 'United Kingdom'), +('78.129.237.0', '78.129.237.255', 1317137664, 1317137919, 'SE', 'Sweden'), +('78.129.238.0', '78.129.245.255', 1317137920, 1317139967, 'GB', 'United Kingdom'), +('78.129.246.0', '78.129.246.127', 1317139968, 1317140095, 'BY', 'Belarus'), +('78.129.246.128', '78.129.250.255', 1317140096, 1317141247, 'GB', 'United Kingdom'), +('78.129.251.0', '78.129.251.255', 1317141248, 1317141503, 'CA', 'Canada'), +('78.129.252.0', '78.129.254.127', 1317141504, 1317142143, 'GB', 'United Kingdom'), +('78.129.254.128', '78.129.254.255', 1317142144, 1317142271, 'CA', 'Canada'), +('78.129.255.0', '78.129.255.255', 1317142272, 1317142527, 'GB', 'United Kingdom'), +('78.130.0.0', '78.130.127.255', 1317142528, 1317175295, 'PT', 'Portugal'), +('78.130.128.0', '78.130.255.255', 1317175296, 1317208063, 'BG', 'Bulgaria'), +('78.131.0.0', '78.131.127.255', 1317208064, 1317240831, 'HU', 'Hungary'), +('78.131.128.0', '78.131.255.255', 1317240832, 1317273599, 'PL', 'Poland'), +('78.132.0.0', '78.132.127.255', 1317273600, 1317306367, 'AT', 'Austria'), +('78.132.128.0', '78.132.255.255', 1317306368, 1317339135, 'RU', 'Russian Federation'), +('78.133.0.0', '78.133.127.255', 1317339136, 1317371903, 'MT', 'Malta'), +('78.133.128.0', '78.133.255.255', 1317371904, 1317404671, 'PL', 'Poland'), +('78.134.0.0', '78.134.127.255', 1317404672, 1317437439, 'IT', 'Italy'), +('78.134.128.0', '78.134.255.255', 1317437440, 1317470207, 'HR', 'Croatia'), +('78.135.0.0', '78.135.127.255', 1317470208, 1317502975, 'TR', 'Turkey'), +('78.135.128.0', '78.135.255.255', 1317502976, 1317535743, 'IE', 'Ireland'), +('78.136.0.0', '78.136.15.23', 1317535744, 1317539607, 'GB', 'United Kingdom'), +('78.136.15.24', '78.136.15.31', 1317539608, 1317539615, 'A2', 'Satellite Provider'), +('78.136.15.32', '78.136.63.255', 1317539616, 1317552127, 'GB', 'United Kingdom'), +('78.136.64.0', '78.136.127.255', 1317552128, 1317568511, 'ES', 'Spain'), +('78.136.128.0', '78.136.191.255', 1317568512, 1317584895, 'CZ', 'Czech Republic'), +('78.136.192.0', '78.136.255.255', 1317584896, 1317601279, 'RU', 'Russian Federation'), +('78.137.0.0', '78.137.63.255', 1317601280, 1317617663, 'UA', 'Ukraine'), +('78.137.64.0', '78.137.127.255', 1317617664, 1317634047, 'RU', 'Russian Federation'), +('78.137.128.0', '78.137.156.255', 1317634048, 1317641471, 'IE', 'Ireland'), +('78.137.157.0', '78.137.157.255', 1317641472, 1317641727, 'GB', 'United Kingdom'), +('78.137.158.0', '78.137.158.223', 1317641728, 1317641951, 'IE', 'Ireland'), +('78.137.158.224', '78.137.158.255', 1317641952, 1317641983, 'GB', 'United Kingdom'), +('78.137.159.0', '78.137.162.223', 1317641984, 1317642975, 'IE', 'Ireland'), +('78.137.162.224', '78.137.162.239', 1317642976, 1317642991, 'GB', 'United Kingdom'), +('78.137.162.240', '78.137.172.79', 1317642992, 1317645391, 'IE', 'Ireland'), +('78.137.172.80', '78.137.173.255', 1317645392, 1317645823, 'GB', 'United Kingdom'), +('78.137.174.0', '78.137.178.47', 1317645824, 1317646895, 'IE', 'Ireland'), +('78.137.178.48', '78.137.178.63', 1317646896, 1317646911, 'GB', 'United Kingdom'), +('78.137.178.64', '78.137.178.143', 1317646912, 1317646991, 'IE', 'Ireland'), +('78.137.178.144', '78.137.178.151', 1317646992, 1317646999, 'GB', 'United Kingdom'), +('78.137.178.152', '78.137.178.167', 1317647000, 1317647015, 'IE', 'Ireland'), +('78.137.178.168', '78.137.179.255', 1317647016, 1317647359, 'GB', 'United Kingdom'), +('78.137.180.0', '78.137.187.255', 1317647360, 1317649407, 'IE', 'Ireland'), +('78.137.188.0', '78.137.189.255', 1317649408, 1317649919, 'GB', 'United Kingdom'), +('78.137.190.0', '78.137.190.95', 1317649920, 1317650015, 'IE', 'Ireland'), +('78.137.190.96', '78.137.191.255', 1317650016, 1317650431, 'GB', 'United Kingdom'), +('78.137.192.0', '78.137.255.255', 1317650432, 1317666815, 'RU', 'Russian Federation'), +('78.138.0.0', '78.138.0.7', 1317666816, 1317666823, 'NG', 'Nigeria'), +('78.138.0.8', '78.138.0.15', 1317666824, 1317666831, 'CD', 'Congo, The Democratic Republic of the'), +('78.138.0.16', '78.138.0.23', 1317666832, 1317666839, 'NG', 'Nigeria'), +('78.138.0.24', '78.138.0.55', 1317666840, 1317666871, 'GH', 'Ghana'), +('78.138.0.56', '78.138.0.63', 1317666872, 1317666879, 'NG', 'Nigeria'), +('78.138.0.64', '78.138.0.71', 1317666880, 1317666887, 'LR', 'Liberia'), +('78.138.0.72', '78.138.0.87', 1317666888, 1317666903, 'NG', 'Nigeria'), +('78.138.0.88', '78.138.0.95', 1317666904, 1317666911, 'A2', 'Satellite Provider'), +('78.138.0.96', '78.138.0.111', 1317666912, 1317666927, 'NG', 'Nigeria'), +('78.138.0.112', '78.138.0.119', 1317666928, 1317666935, 'A2', 'Satellite Provider'), +('78.138.0.120', '78.138.0.127', 1317666936, 1317666943, 'NG', 'Nigeria'), +('78.138.0.128', '78.138.0.135', 1317666944, 1317666951, 'A2', 'Satellite Provider'), +('78.138.0.136', '78.138.0.151', 1317666952, 1317666967, 'NG', 'Nigeria'), +('78.138.0.152', '78.138.0.167', 1317666968, 1317666983, 'A2', 'Satellite Provider'), +('78.138.0.168', '78.138.0.175', 1317666984, 1317666991, 'CM', 'Cameroon'), +('78.138.0.176', '78.138.0.183', 1317666992, 1317666999, 'A2', 'Satellite Provider'), +('78.138.0.184', '78.138.0.191', 1317667000, 1317667007, 'AO', 'Angola'), +('78.138.0.192', '78.138.0.199', 1317667008, 1317667015, 'GH', 'Ghana'), +('78.138.0.200', '78.138.0.207', 1317667016, 1317667023, 'NG', 'Nigeria'), +('78.138.0.208', '78.138.0.215', 1317667024, 1317667031, 'LR', 'Liberia'), +('78.138.0.216', '78.138.0.223', 1317667032, 1317667039, 'NG', 'Nigeria'), +('78.138.0.224', '78.138.0.231', 1317667040, 1317667047, 'GH', 'Ghana'), +('78.138.0.232', '78.138.0.239', 1317667048, 1317667055, 'NG', 'Nigeria'), +('78.138.0.240', '78.138.0.247', 1317667056, 1317667063, 'LR', 'Liberia'), +('78.138.0.248', '78.138.1.15', 1317667064, 1317667087, 'AO', 'Angola'), +('78.138.1.16', '78.138.1.23', 1317667088, 1317667095, 'NG', 'Nigeria'), +('78.138.1.24', '78.138.1.31', 1317667096, 1317667103, 'GH', 'Ghana'), +('78.138.1.32', '78.138.1.39', 1317667104, 1317667111, 'NG', 'Nigeria'), +('78.138.1.40', '78.138.1.47', 1317667112, 1317667119, 'GH', 'Ghana'), +('78.138.1.48', '78.138.1.55', 1317667120, 1317667127, 'A2', 'Satellite Provider'), +('78.138.1.56', '78.138.1.63', 1317667128, 1317667135, 'NG', 'Nigeria'), +('78.138.1.64', '78.138.1.71', 1317667136, 1317667143, 'AO', 'Angola'), +('78.138.1.72', '78.138.1.87', 1317667144, 1317667159, 'NG', 'Nigeria'), +('78.138.1.88', '78.138.1.95', 1317667160, 1317667167, 'AO', 'Angola'), +('78.138.1.96', '78.138.1.103', 1317667168, 1317667175, 'NG', 'Nigeria'), +('78.138.1.104', '78.138.1.119', 1317667176, 1317667191, 'GH', 'Ghana'), +('78.138.1.120', '78.138.1.159', 1317667192, 1317667231, 'NG', 'Nigeria'), +('78.138.1.160', '78.138.1.167', 1317667232, 1317667239, 'GH', 'Ghana'), +('78.138.1.168', '78.138.1.191', 1317667240, 1317667263, 'NG', 'Nigeria'), +('78.138.1.192', '78.138.1.199', 1317667264, 1317667271, 'GB', 'United Kingdom'), +('78.138.1.200', '78.138.1.223', 1317667272, 1317667295, 'NG', 'Nigeria'), +('78.138.1.224', '78.138.1.231', 1317667296, 1317667303, 'A2', 'Satellite Provider'), +('78.138.1.232', '78.138.2.23', 1317667304, 1317667351, 'NG', 'Nigeria'), +('78.138.2.24', '78.138.2.39', 1317667352, 1317667367, 'AO', 'Angola'), +('78.138.2.40', '78.138.2.47', 1317667368, 1317667375, 'NG', 'Nigeria'), +('78.138.2.48', '78.138.2.63', 1317667376, 1317667391, 'AO', 'Angola'), +('78.138.2.64', '78.138.2.71', 1317667392, 1317667399, 'NG', 'Nigeria'), +('78.138.2.72', '78.138.2.95', 1317667400, 1317667423, 'A2', 'Satellite Provider'), +('78.138.2.96', '78.138.2.103', 1317667424, 1317667431, 'TD', 'Chad'), +('78.138.2.104', '78.138.2.111', 1317667432, 1317667439, 'GH', 'Ghana'), +('78.138.2.112', '78.138.2.119', 1317667440, 1317667447, 'A2', 'Satellite Provider'), +('78.138.2.120', '78.138.2.159', 1317667448, 1317667487, 'NG', 'Nigeria'), +('78.138.2.160', '78.138.2.167', 1317667488, 1317667495, 'GH', 'Ghana'), +('78.138.2.168', '78.138.2.175', 1317667496, 1317667503, 'NG', 'Nigeria'), +('78.138.2.176', '78.138.2.199', 1317667504, 1317667527, 'A2', 'Satellite Provider'), +('78.138.2.200', '78.138.2.207', 1317667528, 1317667535, 'AO', 'Angola'), +('78.138.2.208', '78.138.2.215', 1317667536, 1317667543, 'A2', 'Satellite Provider'), +('78.138.2.216', '78.138.2.223', 1317667544, 1317667551, 'AO', 'Angola'), +('78.138.2.224', '78.138.2.239', 1317667552, 1317667567, 'NG', 'Nigeria'), +('78.138.2.240', '78.138.2.255', 1317667568, 1317667583, 'A2', 'Satellite Provider'), +('78.138.3.0', '78.138.3.175', 1317667584, 1317667759, 'NG', 'Nigeria'), +('78.138.3.176', '78.138.3.183', 1317667760, 1317667767, 'FR', 'France'), +('78.138.3.184', '78.138.3.191', 1317667768, 1317667775, 'ZA', 'South Africa'), +('78.138.3.192', '78.138.3.199', 1317667776, 1317667783, 'CD', 'Congo, The Democratic Republic of the'), +('78.138.3.200', '78.138.3.223', 1317667784, 1317667807, 'NG', 'Nigeria'), +('78.138.3.224', '78.138.3.231', 1317667808, 1317667815, 'A2', 'Satellite Provider'), +('78.138.3.232', '78.138.3.239', 1317667816, 1317667823, 'NG', 'Nigeria'), +('78.138.3.240', '78.138.4.255', 1317667824, 1317668095, 'A2', 'Satellite Provider'), +('78.138.5.0', '78.138.5.7', 1317668096, 1317668103, 'GH', 'Ghana'), +('78.138.5.8', '78.138.5.15', 1317668104, 1317668111, 'ZM', 'Zambia'), +('78.138.5.16', '78.138.5.23', 1317668112, 1317668119, 'NG', 'Nigeria'), +('78.138.5.24', '78.138.5.31', 1317668120, 1317668127, 'AO', 'Angola'), +('78.138.5.32', '78.138.5.39', 1317668128, 1317668135, 'A2', 'Satellite Provider'), +('78.138.5.40', '78.138.5.47', 1317668136, 1317668143, 'NG', 'Nigeria'), +('78.138.5.48', '78.138.5.55', 1317668144, 1317668151, 'AO', 'Angola'), +('78.138.5.56', '78.138.5.87', 1317668152, 1317668183, 'NG', 'Nigeria'), +('78.138.5.88', '78.138.5.95', 1317668184, 1317668191, 'CI', 'Cote D''Ivoire'), +('78.138.5.96', '78.138.5.103', 1317668192, 1317668199, 'NG', 'Nigeria'), +('78.138.5.104', '78.138.5.111', 1317668200, 1317668207, 'BW', 'Botswana'), +('78.138.5.112', '78.138.5.119', 1317668208, 1317668215, 'LR', 'Liberia'), +('78.138.5.120', '78.138.5.127', 1317668216, 1317668223, 'CM', 'Cameroon'), +('78.138.5.128', '78.138.5.143', 1317668224, 1317668239, 'NG', 'Nigeria'), +('78.138.5.144', '78.138.5.151', 1317668240, 1317668247, 'LR', 'Liberia'), +('78.138.5.152', '78.138.5.167', 1317668248, 1317668263, 'NG', 'Nigeria'), +('78.138.5.168', '78.138.5.175', 1317668264, 1317668271, 'AO', 'Angola'), +('78.138.5.176', '78.138.5.183', 1317668272, 1317668279, 'SL', 'Sierra Leone'), +('78.138.5.184', '78.138.5.199', 1317668280, 1317668295, 'NG', 'Nigeria'), +('78.138.5.200', '78.138.5.207', 1317668296, 1317668303, 'A2', 'Satellite Provider'), +('78.138.5.208', '78.138.5.215', 1317668304, 1317668311, 'NG', 'Nigeria'), +('78.138.5.216', '78.138.5.223', 1317668312, 1317668319, 'IQ', 'Iraq'), +('78.138.5.224', '78.138.5.247', 1317668320, 1317668343, 'NG', 'Nigeria'), +('78.138.5.248', '78.138.5.255', 1317668344, 1317668351, 'AO', 'Angola'), +('78.138.6.0', '78.138.6.15', 1317668352, 1317668367, 'SL', 'Sierra Leone'), +('78.138.6.16', '78.138.6.47', 1317668368, 1317668399, 'NG', 'Nigeria'), +('78.138.6.48', '78.138.6.55', 1317668400, 1317668407, 'A2', 'Satellite Provider'), +('78.138.6.56', '78.138.6.63', 1317668408, 1317668415, 'GH', 'Ghana'), +('78.138.6.64', '78.138.6.95', 1317668416, 1317668447, 'NG', 'Nigeria'), +('78.138.6.96', '78.138.6.103', 1317668448, 1317668455, 'A2', 'Satellite Provider'), +('78.138.6.104', '78.138.6.111', 1317668456, 1317668463, 'NG', 'Nigeria'), +('78.138.6.112', '78.138.6.119', 1317668464, 1317668471, 'AO', 'Angola'), +('78.138.6.120', '78.138.6.127', 1317668472, 1317668479, 'NG', 'Nigeria'), +('78.138.6.128', '78.138.6.143', 1317668480, 1317668495, 'A2', 'Satellite Provider'), +('78.138.6.144', '78.138.6.151', 1317668496, 1317668503, 'GH', 'Ghana'), +('78.138.6.152', '78.138.6.159', 1317668504, 1317668511, 'CD', 'Congo, The Democratic Republic of the'), +('78.138.6.160', '78.138.6.167', 1317668512, 1317668519, 'IQ', 'Iraq'), +('78.138.6.168', '78.138.6.175', 1317668520, 1317668527, 'MZ', 'Mozambique'), +('78.138.6.176', '78.138.6.183', 1317668528, 1317668535, 'AO', 'Angola'), +('78.138.6.184', '78.138.6.191', 1317668536, 1317668543, 'BJ', 'Benin'), +('78.138.6.192', '78.138.6.199', 1317668544, 1317668551, 'UG', 'Uganda'), +('78.138.6.200', '78.138.6.207', 1317668552, 1317668559, 'AO', 'Angola'), +('78.138.6.208', '78.138.6.231', 1317668560, 1317668583, 'NG', 'Nigeria'), +('78.138.6.232', '78.138.6.239', 1317668584, 1317668591, 'LR', 'Liberia'), +('78.138.6.240', '78.138.6.255', 1317668592, 1317668607, 'NG', 'Nigeria'), +('78.138.7.0', '78.138.7.7', 1317668608, 1317668615, 'GH', 'Ghana'), +('78.138.7.8', '78.138.7.15', 1317668616, 1317668623, 'NG', 'Nigeria'), +('78.138.7.16', '78.138.7.23', 1317668624, 1317668631, 'SL', 'Sierra Leone'), +('78.138.7.24', '78.138.7.31', 1317668632, 1317668639, 'A2', 'Satellite Provider'), +('78.138.7.32', '78.138.7.127', 1317668640, 1317668735, 'NG', 'Nigeria'), +('78.138.7.128', '78.138.7.143', 1317668736, 1317668751, 'AO', 'Angola'), +('78.138.7.144', '78.138.7.151', 1317668752, 1317668759, 'A2', 'Satellite Provider'), +('78.138.7.152', '78.138.7.159', 1317668760, 1317668767, 'IQ', 'Iraq'), +('78.138.7.160', '78.138.7.167', 1317668768, 1317668775, 'LR', 'Liberia'), +('78.138.7.168', '78.138.7.183', 1317668776, 1317668791, 'NG', 'Nigeria'), +('78.138.7.184', '78.138.7.199', 1317668792, 1317668807, 'AO', 'Angola'), +('78.138.7.200', '78.138.7.215', 1317668808, 1317668823, 'NG', 'Nigeria'), +('78.138.7.216', '78.138.7.223', 1317668824, 1317668831, 'AO', 'Angola'), +('78.138.7.224', '78.138.7.247', 1317668832, 1317668855, 'NG', 'Nigeria'), +('78.138.7.248', '78.138.7.255', 1317668856, 1317668863, 'GH', 'Ghana'), +('78.138.8.0', '78.138.8.7', 1317668864, 1317668871, 'LR', 'Liberia'), +('78.138.8.8', '78.138.8.23', 1317668872, 1317668887, 'NG', 'Nigeria'), +('78.138.8.24', '78.138.8.31', 1317668888, 1317668895, 'SL', 'Sierra Leone'), +('78.138.8.32', '78.138.8.119', 1317668896, 1317668983, 'NG', 'Nigeria'), +('78.138.8.120', '78.138.8.127', 1317668984, 1317668991, 'A2', 'Satellite Provider'), +('78.138.8.128', '78.138.8.135', 1317668992, 1317668999, 'NG', 'Nigeria'), +('78.138.8.136', '78.138.8.143', 1317669000, 1317669007, 'CD', 'Congo, The Democratic Republic of the'), +('78.138.8.144', '78.138.8.167', 1317669008, 1317669031, 'NG', 'Nigeria'), +('78.138.8.168', '78.138.8.175', 1317669032, 1317669039, 'TD', 'Chad'), +('78.138.8.176', '78.138.8.183', 1317669040, 1317669047, 'CD', 'Congo, The Democratic Republic of the'), +('78.138.8.184', '78.138.8.191', 1317669048, 1317669055, 'A2', 'Satellite Provider'), +('78.138.8.192', '78.138.8.255', 1317669056, 1317669119, 'NG', 'Nigeria'), +('78.138.9.0', '78.138.9.255', 1317669120, 1317669375, 'GE', 'Georgia'), +('78.138.10.0', '78.138.10.255', 1317669376, 1317669631, 'CG', 'Congo'), +('78.138.11.0', '78.138.11.255', 1317669632, 1317669887, 'A2', 'Satellite Provider'), +('78.138.12.0', '78.138.12.7', 1317669888, 1317669895, 'AO', 'Angola'), +('78.138.12.8', '78.138.12.23', 1317669896, 1317669911, 'NG', 'Nigeria'), +('78.138.12.24', '78.138.12.31', 1317669912, 1317669919, 'GH', 'Ghana'), +('78.138.12.32', '78.138.12.95', 1317669920, 1317669983, 'NG', 'Nigeria'), +('78.138.12.96', '78.138.12.103', 1317669984, 1317669991, 'LR', 'Liberia'), +('78.138.12.104', '78.138.12.127', 1317669992, 1317670015, 'NG', 'Nigeria'), +('78.138.12.128', '78.138.12.135', 1317670016, 1317670023, 'A2', 'Satellite Provider'), +('78.138.12.136', '78.138.12.215', 1317670024, 1317670103, 'NG', 'Nigeria'), +('78.138.12.216', '78.138.12.223', 1317670104, 1317670111, 'CD', 'Congo, The Democratic Republic of the'), +('78.138.12.224', '78.138.12.255', 1317670112, 1317670143, 'NG', 'Nigeria'), +('78.138.13.0', '78.138.13.31', 1317670144, 1317670175, 'SL', 'Sierra Leone'), +('78.138.13.32', '78.138.13.79', 1317670176, 1317670223, 'NG', 'Nigeria'), +('78.138.13.80', '78.138.13.87', 1317670224, 1317670231, 'AO', 'Angola'), +('78.138.13.88', '78.138.13.95', 1317670232, 1317670239, 'A2', 'Satellite Provider'), +('78.138.13.96', '78.138.13.255', 1317670240, 1317670399, 'NG', 'Nigeria'), +('78.138.14.0', '78.138.14.15', 1317670400, 1317670415, 'CD', 'Congo, The Democratic Republic of the'), +('78.138.14.16', '78.138.14.47', 1317670416, 1317670447, 'NG', 'Nigeria'), +('78.138.14.48', '78.138.14.55', 1317670448, 1317670455, 'IQ', 'Iraq'), +('78.138.14.56', '78.138.14.71', 1317670456, 1317670471, 'NG', 'Nigeria'), +('78.138.14.72', '78.138.14.79', 1317670472, 1317670479, 'CO', 'Colombia'), +('78.138.14.80', '78.138.14.87', 1317670480, 1317670487, 'BJ', 'Benin'), +('78.138.14.88', '78.138.14.111', 1317670488, 1317670511, 'NG', 'Nigeria'), +('78.138.14.112', '78.138.14.119', 1317670512, 1317670519, 'CI', 'Cote D''Ivoire'), +('78.138.14.120', '78.138.14.143', 1317670520, 1317670543, 'NG', 'Nigeria'), +('78.138.14.144', '78.138.14.151', 1317670544, 1317670551, 'IQ', 'Iraq'), +('78.138.14.152', '78.138.14.167', 1317670552, 1317670567, 'NG', 'Nigeria'), +('78.138.14.168', '78.138.14.175', 1317670568, 1317670575, 'A2', 'Satellite Provider'), +('78.138.14.176', '78.138.14.183', 1317670576, 1317670583, 'NG', 'Nigeria'), +('78.138.14.184', '78.138.14.199', 1317670584, 1317670599, 'GH', 'Ghana'), +('78.138.14.200', '78.138.14.207', 1317670600, 1317670607, 'AO', 'Angola'), +('78.138.14.208', '78.138.14.239', 1317670608, 1317670639, 'NG', 'Nigeria'), +('78.138.14.240', '78.138.14.247', 1317670640, 1317670647, 'A2', 'Satellite Provider'), +('78.138.14.248', '78.138.15.15', 1317670648, 1317670671, 'NG', 'Nigeria'), +('78.138.15.16', '78.138.15.23', 1317670672, 1317670679, 'CM', 'Cameroon'), +('78.138.15.24', '78.138.15.55', 1317670680, 1317670711, 'NG', 'Nigeria'), +('78.138.15.56', '78.138.15.63', 1317670712, 1317670719, 'GH', 'Ghana'), +('78.138.15.64', '78.138.15.71', 1317670720, 1317670727, 'NG', 'Nigeria'), +('78.138.15.72', '78.138.15.79', 1317670728, 1317670735, 'GH', 'Ghana'), +('78.138.15.80', '78.138.15.87', 1317670736, 1317670743, 'AO', 'Angola'), +('78.138.15.88', '78.138.15.111', 1317670744, 1317670767, 'NG', 'Nigeria'), +('78.138.15.112', '78.138.15.119', 1317670768, 1317670775, 'GH', 'Ghana'), +('78.138.15.120', '78.138.15.127', 1317670776, 1317670783, 'A2', 'Satellite Provider'), +('78.138.15.128', '78.138.15.135', 1317670784, 1317670791, 'GH', 'Ghana'), +('78.138.15.136', '78.138.15.151', 1317670792, 1317670807, 'NG', 'Nigeria'), +('78.138.15.152', '78.138.15.159', 1317670808, 1317670815, 'AO', 'Angola'), +('78.138.15.160', '78.138.15.167', 1317670816, 1317670823, 'NG', 'Nigeria'), +('78.138.15.168', '78.138.15.175', 1317670824, 1317670831, 'CD', 'Congo, The Democratic Republic of the'), +('78.138.15.176', '78.138.15.199', 1317670832, 1317670855, 'NG', 'Nigeria'), +('78.138.15.200', '78.138.15.207', 1317670856, 1317670863, 'CD', 'Congo, The Democratic Republic of the'), +('78.138.15.208', '78.138.15.215', 1317670864, 1317670871, 'A2', 'Satellite Provider'), +('78.138.15.216', '78.138.15.231', 1317670872, 1317670887, 'NG', 'Nigeria'), +('78.138.15.232', '78.138.15.239', 1317670888, 1317670895, 'AO', 'Angola'), +('78.138.15.240', '78.138.15.240', 1317670896, 1317670896, 'A2', 'Satellite Provider'), +('78.138.15.241', '78.138.15.255', 1317670897, 1317670911, 'NG', 'Nigeria'), +('78.138.16.0', '78.138.16.255', 1317670912, 1317671167, 'A2', 'Satellite Provider'), +('78.138.17.0', '78.138.17.7', 1317671168, 1317671175, 'AO', 'Angola'), +('78.138.17.8', '78.138.17.23', 1317671176, 1317671191, 'NG', 'Nigeria'), +('78.138.17.24', '78.138.17.31', 1317671192, 1317671199, 'SL', 'Sierra Leone'), +('78.138.17.32', '78.138.17.39', 1317671200, 1317671207, 'CI', 'Cote D''Ivoire'), +('78.138.17.40', '78.138.17.71', 1317671208, 1317671239, 'NG', 'Nigeria'), +('78.138.17.72', '78.138.17.79', 1317671240, 1317671247, 'CI', 'Cote D''Ivoire'), +('78.138.17.80', '78.138.17.87', 1317671248, 1317671255, 'NG', 'Nigeria'), +('78.138.17.88', '78.138.17.95', 1317671256, 1317671263, 'CI', 'Cote D''Ivoire'), +('78.138.17.96', '78.138.17.167', 1317671264, 1317671335, 'NG', 'Nigeria'), +('78.138.17.168', '78.138.17.175', 1317671336, 1317671343, 'BW', 'Botswana'), +('78.138.17.176', '78.138.17.183', 1317671344, 1317671351, 'CD', 'Congo, The Democratic Republic of the'), +('78.138.17.184', '78.138.17.215', 1317671352, 1317671383, 'NG', 'Nigeria'), +('78.138.17.216', '78.138.17.223', 1317671384, 1317671391, 'CI', 'Cote D''Ivoire'), +('78.138.17.224', '78.138.17.231', 1317671392, 1317671399, 'NG', 'Nigeria'), +('78.138.17.232', '78.138.17.239', 1317671400, 1317671407, 'IQ', 'Iraq'), +('78.138.17.240', '78.138.18.47', 1317671408, 1317671471, 'NG', 'Nigeria'), +('78.138.18.48', '78.138.18.55', 1317671472, 1317671479, 'A2', 'Satellite Provider'), +('78.138.18.56', '78.138.18.63', 1317671480, 1317671487, 'NG', 'Nigeria'), +('78.138.18.64', '78.138.18.87', 1317671488, 1317671511, 'AO', 'Angola'), +('78.138.18.88', '78.138.18.95', 1317671512, 1317671519, 'CD', 'Congo, The Democratic Republic of the'), +('78.138.18.96', '78.138.18.103', 1317671520, 1317671527, 'AO', 'Angola'), +('78.138.18.104', '78.138.18.119', 1317671528, 1317671543, 'NG', 'Nigeria'), +('78.138.18.120', '78.138.18.127', 1317671544, 1317671551, 'GH', 'Ghana'), +('78.138.18.128', '78.138.18.143', 1317671552, 1317671567, 'A2', 'Satellite Provider'), +('78.138.18.144', '78.138.18.151', 1317671568, 1317671575, 'GB', 'United Kingdom'), +('78.138.18.152', '78.138.18.152', 1317671576, 1317671576, 'NG', 'Nigeria'), +('78.138.18.153', '78.138.18.159', 1317671577, 1317671583, 'A2', 'Satellite Provider'), +('78.138.18.160', '78.138.18.183', 1317671584, 1317671607, 'NG', 'Nigeria'), +('78.138.18.184', '78.138.18.191', 1317671608, 1317671615, 'GH', 'Ghana'), +('78.138.18.192', '78.138.18.199', 1317671616, 1317671623, 'NG', 'Nigeria'), +('78.138.18.200', '78.138.18.207', 1317671624, 1317671631, 'SL', 'Sierra Leone'), +('78.138.18.208', '78.138.18.215', 1317671632, 1317671639, 'NG', 'Nigeria'), +('78.138.18.216', '78.138.18.223', 1317671640, 1317671647, 'SL', 'Sierra Leone'), +('78.138.18.224', '78.138.18.239', 1317671648, 1317671663, 'NG', 'Nigeria'), +('78.138.18.240', '78.138.18.247', 1317671664, 1317671671, 'SL', 'Sierra Leone'), +('78.138.18.248', '78.138.18.255', 1317671672, 1317671679, 'NG', 'Nigeria'), +('78.138.19.0', '78.138.19.7', 1317671680, 1317671687, 'LR', 'Liberia'), +('78.138.19.8', '78.138.19.15', 1317671688, 1317671695, 'BJ', 'Benin'), +('78.138.19.16', '78.138.19.79', 1317671696, 1317671759, 'NG', 'Nigeria'), +('78.138.19.80', '78.138.19.95', 1317671760, 1317671775, 'A2', 'Satellite Provider'), +('78.138.19.96', '78.138.19.127', 1317671776, 1317671807, 'NG', 'Nigeria'), +('78.138.19.128', '78.138.19.143', 1317671808, 1317671823, 'CI', 'Cote D''Ivoire'), +('78.138.19.144', '78.138.19.151', 1317671824, 1317671831, 'NG', 'Nigeria'), +('78.138.19.152', '78.138.19.159', 1317671832, 1317671839, 'GH', 'Ghana'), +('78.138.19.160', '78.138.19.167', 1317671840, 1317671847, 'AO', 'Angola'), +('78.138.19.168', '78.138.19.215', 1317671848, 1317671895, 'NG', 'Nigeria'), +('78.138.19.216', '78.138.19.223', 1317671896, 1317671903, 'CM', 'Cameroon'), +('78.138.19.224', '78.138.19.231', 1317671904, 1317671911, 'NG', 'Nigeria'), +('78.138.19.232', '78.138.19.239', 1317671912, 1317671919, 'AO', 'Angola'), +('78.138.19.240', '78.138.19.247', 1317671920, 1317671927, 'NG', 'Nigeria'), +('78.138.19.248', '78.138.19.255', 1317671928, 1317671935, 'GH', 'Ghana'), +('78.138.20.0', '78.138.21.255', 1317671936, 1317672447, 'GA', 'Gabon'), +('78.138.22.0', '78.138.22.31', 1317672448, 1317672479, 'NG', 'Nigeria'), +('78.138.22.32', '78.138.22.39', 1317672480, 1317672487, 'ZM', 'Zambia'), +('78.138.22.40', '78.138.22.135', 1317672488, 1317672583, 'NG', 'Nigeria'), +('78.138.22.136', '78.138.22.143', 1317672584, 1317672591, 'CD', 'Congo, The Democratic Republic of the'), +('78.138.22.144', '78.138.22.159', 1317672592, 1317672607, 'NG', 'Nigeria'), +('78.138.22.160', '78.138.22.167', 1317672608, 1317672615, 'CM', 'Cameroon'), +('78.138.22.168', '78.138.22.183', 1317672616, 1317672631, 'NG', 'Nigeria'), +('78.138.22.184', '78.138.22.191', 1317672632, 1317672639, 'A2', 'Satellite Provider'), +('78.138.22.192', '78.138.22.207', 1317672640, 1317672655, 'NG', 'Nigeria'), +('78.138.22.208', '78.138.22.215', 1317672656, 1317672663, 'CD', 'Congo, The Democratic Republic of the'), +('78.138.22.216', '78.138.23.15', 1317672664, 1317672719, 'NG', 'Nigeria'), +('78.138.23.16', '78.138.23.23', 1317672720, 1317672727, 'LR', 'Liberia'), +('78.138.23.24', '78.138.23.31', 1317672728, 1317672735, 'NG', 'Nigeria'), +('78.138.23.32', '78.138.23.39', 1317672736, 1317672743, 'LR', 'Liberia'), +('78.138.23.40', '78.138.23.55', 1317672744, 1317672759, 'A2', 'Satellite Provider'), +('78.138.23.56', '78.138.23.63', 1317672760, 1317672767, 'NG', 'Nigeria'), +('78.138.23.64', '78.138.23.71', 1317672768, 1317672775, 'A2', 'Satellite Provider'), +('78.138.23.72', '78.138.23.79', 1317672776, 1317672783, 'NG', 'Nigeria'), +('78.138.23.80', '78.138.23.87', 1317672784, 1317672791, 'AO', 'Angola'), +('78.138.23.88', '78.138.23.103', 1317672792, 1317672807, 'A2', 'Satellite Provider'), +('78.138.23.104', '78.138.23.111', 1317672808, 1317672815, 'TD', 'Chad'), +('78.138.23.112', '78.138.23.119', 1317672816, 1317672823, 'BW', 'Botswana'), +('78.138.23.120', '78.138.23.127', 1317672824, 1317672831, 'NG', 'Nigeria'), +('78.138.23.128', '78.138.23.135', 1317672832, 1317672839, 'A2', 'Satellite Provider'), +('78.138.23.136', '78.138.23.199', 1317672840, 1317672903, 'NG', 'Nigeria'), +('78.138.23.200', '78.138.23.215', 1317672904, 1317672919, 'CI', 'Cote D''Ivoire'), +('78.138.23.216', '78.138.23.223', 1317672920, 1317672927, 'GH', 'Ghana'), +('78.138.23.224', '78.138.23.231', 1317672928, 1317672935, 'NG', 'Nigeria'), +('78.138.23.232', '78.138.23.239', 1317672936, 1317672943, 'LR', 'Liberia'), +('78.138.23.240', '78.138.23.247', 1317672944, 1317672951, 'NG', 'Nigeria'), +('78.138.23.248', '78.138.23.255', 1317672952, 1317672959, 'AO', 'Angola'), +('78.138.24.0', '78.138.25.23', 1317672960, 1317673239, 'NG', 'Nigeria'), +('78.138.25.24', '78.138.25.31', 1317673240, 1317673247, 'ZW', 'Zimbabwe'), +('78.138.25.32', '78.138.25.71', 1317673248, 1317673287, 'NG', 'Nigeria'), +('78.138.25.72', '78.138.25.79', 1317673288, 1317673295, 'LR', 'Liberia'), +('78.138.25.80', '78.138.25.103', 1317673296, 1317673319, 'NG', 'Nigeria'), +('78.138.25.104', '78.138.25.111', 1317673320, 1317673327, 'LR', 'Liberia'), +('78.138.25.112', '78.138.25.119', 1317673328, 1317673335, 'NG', 'Nigeria'), +('78.138.25.120', '78.138.25.135', 1317673336, 1317673351, 'A2', 'Satellite Provider'), +('78.138.25.136', '78.138.25.191', 1317673352, 1317673407, 'NG', 'Nigeria'), +('78.138.25.192', '78.138.25.199', 1317673408, 1317673415, 'A2', 'Satellite Provider'), +('78.138.25.200', '78.138.25.207', 1317673416, 1317673423, 'CI', 'Cote D''Ivoire'), +('78.138.25.208', '78.138.25.215', 1317673424, 1317673431, 'NG', 'Nigeria'), +('78.138.25.216', '78.138.25.247', 1317673432, 1317673463, 'AO', 'Angola'), +('78.138.25.248', '78.138.26.15', 1317673464, 1317673487, 'NG', 'Nigeria'), +('78.138.26.16', '78.138.26.23', 1317673488, 1317673495, 'HK', 'Hong Kong'), +('78.138.26.24', '78.138.26.103', 1317673496, 1317673575, 'NG', 'Nigeria'), +('78.138.26.104', '78.138.26.111', 1317673576, 1317673583, 'CD', 'Congo, The Democratic Republic of the'), +('78.138.26.112', '78.138.26.119', 1317673584, 1317673591, 'A2', 'Satellite Provider'), +('78.138.26.120', '78.138.26.159', 1317673592, 1317673631, 'NG', 'Nigeria'), +('78.138.26.160', '78.138.26.167', 1317673632, 1317673639, 'CD', 'Congo, The Democratic Republic of the'), +('78.138.26.168', '78.138.26.175', 1317673640, 1317673647, 'AO', 'Angola'), +('78.138.26.176', '78.138.26.199', 1317673648, 1317673671, 'NG', 'Nigeria'), +('78.138.26.200', '78.138.26.207', 1317673672, 1317673679, 'CM', 'Cameroon'), +('78.138.26.208', '78.138.26.215', 1317673680, 1317673687, 'CD', 'Congo, The Democratic Republic of the'), +('78.138.26.216', '78.138.26.239', 1317673688, 1317673711, 'NG', 'Nigeria'), +('78.138.26.240', '78.138.26.247', 1317673712, 1317673719, 'CO', 'Colombia'), +('78.138.26.248', '78.138.26.255', 1317673720, 1317673727, 'NG', 'Nigeria'), +('78.138.27.0', '78.138.27.15', 1317673728, 1317673743, 'AO', 'Angola'), +('78.138.27.16', '78.138.27.23', 1317673744, 1317673751, 'A2', 'Satellite Provider'), +('78.138.27.24', '78.138.27.31', 1317673752, 1317673759, 'NG', 'Nigeria'), +('78.138.27.32', '78.138.27.39', 1317673760, 1317673767, 'A2', 'Satellite Provider'), +('78.138.27.40', '78.138.27.47', 1317673768, 1317673775, 'AO', 'Angola'), +('78.138.27.48', '78.138.27.55', 1317673776, 1317673783, 'NG', 'Nigeria'), +('78.138.27.56', '78.138.27.63', 1317673784, 1317673791, 'AO', 'Angola'), +('78.138.27.64', '78.138.27.87', 1317673792, 1317673815, 'NG', 'Nigeria'), +('78.138.27.88', '78.138.27.95', 1317673816, 1317673823, 'A2', 'Satellite Provider'), +('78.138.27.96', '78.138.27.103', 1317673824, 1317673831, 'NG', 'Nigeria'), +('78.138.27.104', '78.138.27.111', 1317673832, 1317673839, 'AO', 'Angola'), +('78.138.27.112', '78.138.27.159', 1317673840, 1317673887, 'NG', 'Nigeria'), +('78.138.27.160', '78.138.27.167', 1317673888, 1317673895, 'A2', 'Satellite Provider'), +('78.138.27.168', '78.138.27.183', 1317673896, 1317673911, 'NG', 'Nigeria'), +('78.138.27.184', '78.138.27.191', 1317673912, 1317673919, 'AO', 'Angola'), +('78.138.27.192', '78.138.27.199', 1317673920, 1317673927, 'CI', 'Cote D''Ivoire'), +('78.138.27.200', '78.138.27.215', 1317673928, 1317673943, 'NG', 'Nigeria'), +('78.138.27.216', '78.138.27.223', 1317673944, 1317673951, 'AO', 'Angola'), +('78.138.27.224', '78.138.29.15', 1317673952, 1317674255, 'NG', 'Nigeria'), +('78.138.29.16', '78.138.29.23', 1317674256, 1317674263, 'CM', 'Cameroon'), +('78.138.29.24', '78.138.29.31', 1317674264, 1317674271, 'AO', 'Angola'), +('78.138.29.32', '78.138.29.39', 1317674272, 1317674279, 'NG', 'Nigeria'), +('78.138.29.40', '78.138.29.47', 1317674280, 1317674287, 'CD', 'Congo, The Democratic Republic of the'), +('78.138.29.48', '78.138.29.55', 1317674288, 1317674295, 'GH', 'Ghana'), +('78.138.29.56', '78.138.29.63', 1317674296, 1317674303, 'AO', 'Angola'), +('78.138.29.64', '78.138.29.119', 1317674304, 1317674359, 'NG', 'Nigeria'), +('78.138.29.120', '78.138.29.127', 1317674360, 1317674367, 'AO', 'Angola'), +('78.138.29.128', '78.138.29.175', 1317674368, 1317674415, 'NG', 'Nigeria'), +('78.138.29.176', '78.138.29.183', 1317674416, 1317674423, 'AO', 'Angola'), +('78.138.29.184', '78.138.29.191', 1317674424, 1317674431, 'NG', 'Nigeria'), +('78.138.29.192', '78.138.29.200', 1317674432, 1317674440, 'AO', 'Angola'), +('78.138.29.201', '78.138.29.207', 1317674441, 1317674447, 'A2', 'Satellite Provider'), +('78.138.29.208', '78.138.29.215', 1317674448, 1317674455, 'AO', 'Angola'), +('78.138.29.216', '78.138.29.231', 1317674456, 1317674471, 'NG', 'Nigeria'), +('78.138.29.232', '78.138.29.239', 1317674472, 1317674479, 'A2', 'Satellite Provider'), +('78.138.29.240', '78.138.29.247', 1317674480, 1317674487, 'AO', 'Angola'), +('78.138.29.248', '78.138.29.255', 1317674488, 1317674495, 'NG', 'Nigeria'), +('78.138.30.0', '78.138.30.7', 1317674496, 1317674503, 'A2', 'Satellite Provider'), +('78.138.30.8', '78.138.30.15', 1317674504, 1317674511, 'AO', 'Angola'), +('78.138.30.16', '78.138.30.39', 1317674512, 1317674535, 'NG', 'Nigeria'), +('78.138.30.40', '78.138.30.47', 1317674536, 1317674543, 'IQ', 'Iraq'), +('78.138.30.48', '78.138.30.79', 1317674544, 1317674575, 'NG', 'Nigeria'), +('78.138.30.80', '78.138.30.87', 1317674576, 1317674583, 'A2', 'Satellite Provider'), +('78.138.30.88', '78.138.30.119', 1317674584, 1317674615, 'NG', 'Nigeria'), +('78.138.30.120', '78.138.30.127', 1317674616, 1317674623, 'IQ', 'Iraq'), +('78.138.30.128', '78.138.30.175', 1317674624, 1317674671, 'NG', 'Nigeria'), +('78.138.30.176', '78.138.30.183', 1317674672, 1317674679, 'A2', 'Satellite Provider'), +('78.138.30.184', '78.138.30.191', 1317674680, 1317674687, 'AO', 'Angola'), +('78.138.30.192', '78.138.30.239', 1317674688, 1317674735, 'NG', 'Nigeria'), +('78.138.30.240', '78.138.30.247', 1317674736, 1317674743, 'AO', 'Angola'), +('78.138.30.248', '78.138.31.39', 1317674744, 1317674791, 'NG', 'Nigeria'), +('78.138.31.40', '78.138.31.47', 1317674792, 1317674799, 'GH', 'Ghana'), +('78.138.31.48', '78.138.31.135', 1317674800, 1317674887, 'NG', 'Nigeria'), +('78.138.31.136', '78.138.31.159', 1317674888, 1317674911, 'AO', 'Angola'), +('78.138.31.160', '78.138.31.175', 1317674912, 1317674927, 'NG', 'Nigeria'), +('78.138.31.176', '78.138.31.183', 1317674928, 1317674935, 'AO', 'Angola'), +('78.138.31.184', '78.138.31.191', 1317674936, 1317674943, 'NG', 'Nigeria'), +('78.138.31.192', '78.138.31.199', 1317674944, 1317674951, 'GA', 'Gabon'), +('78.138.31.200', '78.138.31.207', 1317674952, 1317674959, 'NG', 'Nigeria'), +('78.138.31.208', '78.138.31.215', 1317674960, 1317674967, 'A2', 'Satellite Provider'), +('78.138.31.216', '78.138.31.223', 1317674968, 1317674975, 'NG', 'Nigeria'), +('78.138.31.224', '78.138.31.231', 1317674976, 1317674983, 'A2', 'Satellite Provider'), +('78.138.31.232', '78.138.31.255', 1317674984, 1317675007, 'NG', 'Nigeria'), +('78.138.32.0', '78.138.32.15', 1317675008, 1317675023, 'A2', 'Satellite Provider'), +('78.138.32.16', '78.138.32.55', 1317675024, 1317675063, 'NG', 'Nigeria'), +('78.138.32.56', '78.138.32.63', 1317675064, 1317675071, 'AO', 'Angola'), +('78.138.32.64', '78.138.32.119', 1317675072, 1317675127, 'NG', 'Nigeria'), +('78.138.32.120', '78.138.32.127', 1317675128, 1317675135, 'HK', 'Hong Kong'), +('78.138.32.128', '78.138.32.151', 1317675136, 1317675159, 'A2', 'Satellite Provider'), +('78.138.32.152', '78.138.32.159', 1317675160, 1317675167, 'AO', 'Angola'), +('78.138.32.160', '78.138.32.167', 1317675168, 1317675175, 'NG', 'Nigeria'), +('78.138.32.168', '78.138.32.175', 1317675176, 1317675183, 'A2', 'Satellite Provider'), +('78.138.32.176', '78.138.32.191', 1317675184, 1317675199, 'CM', 'Cameroon'), +('78.138.32.192', '78.138.32.223', 1317675200, 1317675231, 'NG', 'Nigeria'), +('78.138.32.224', '78.138.32.231', 1317675232, 1317675239, 'LR', 'Liberia'), +('78.138.32.232', '78.138.32.247', 1317675240, 1317675255, 'AO', 'Angola'), +('78.138.32.248', '78.138.33.7', 1317675256, 1317675271, 'A2', 'Satellite Provider'), +('78.138.33.8', '78.138.33.15', 1317675272, 1317675279, 'NG', 'Nigeria'), +('78.138.33.16', '78.138.33.23', 1317675280, 1317675287, 'CM', 'Cameroon'), +('78.138.33.24', '78.138.33.31', 1317675288, 1317675295, 'A2', 'Satellite Provider'), +('78.138.33.32', '78.138.33.55', 1317675296, 1317675319, 'NG', 'Nigeria'), +('78.138.33.56', '78.138.33.79', 1317675320, 1317675343, 'CM', 'Cameroon'), +('78.138.33.80', '78.138.33.87', 1317675344, 1317675351, 'AO', 'Angola'), +('78.138.33.88', '78.138.33.95', 1317675352, 1317675359, 'A2', 'Satellite Provider'), +('78.138.33.96', '78.138.33.111', 1317675360, 1317675375, 'NG', 'Nigeria'), +('78.138.33.112', '78.138.33.119', 1317675376, 1317675383, 'CM', 'Cameroon'), +('78.138.33.120', '78.138.33.127', 1317675384, 1317675391, 'NG', 'Nigeria'), +('78.138.33.128', '78.138.33.135', 1317675392, 1317675399, 'BJ', 'Benin'), +('78.138.33.136', '78.138.33.143', 1317675400, 1317675407, 'A2', 'Satellite Provider'), +('78.138.33.144', '78.138.33.151', 1317675408, 1317675415, 'NG', 'Nigeria'), +('78.138.33.152', '78.138.33.159', 1317675416, 1317675423, 'BJ', 'Benin'), +('78.138.33.160', '78.138.33.175', 1317675424, 1317675439, 'NG', 'Nigeria'), +('78.138.33.176', '78.138.33.191', 1317675440, 1317675455, 'A2', 'Satellite Provider'), +('78.138.33.192', '78.138.33.199', 1317675456, 1317675463, 'CD', 'Congo, The Democratic Republic of the'), +('78.138.33.200', '78.138.33.207', 1317675464, 1317675471, 'CI', 'Cote D''Ivoire'), +('78.138.33.208', '78.138.33.215', 1317675472, 1317675479, 'NG', 'Nigeria'), +('78.138.33.216', '78.138.33.223', 1317675480, 1317675487, 'A2', 'Satellite Provider'), +('78.138.33.224', '78.138.34.7', 1317675488, 1317675527, 'NG', 'Nigeria'), +('78.138.34.8', '78.138.34.15', 1317675528, 1317675535, 'A2', 'Satellite Provider'), +('78.138.34.16', '78.138.34.23', 1317675536, 1317675543, 'NG', 'Nigeria'), +('78.138.34.24', '78.138.34.31', 1317675544, 1317675551, 'A2', 'Satellite Provider'), +('78.138.34.32', '78.138.34.39', 1317675552, 1317675559, 'NG', 'Nigeria'), +('78.138.34.40', '78.138.34.47', 1317675560, 1317675567, 'NA', 'Namibia'), +('78.138.34.48', '78.138.34.55', 1317675568, 1317675575, 'AO', 'Angola'), +('78.138.34.56', '78.138.34.63', 1317675576, 1317675583, 'A2', 'Satellite Provider'), +('78.138.34.64', '78.138.34.71', 1317675584, 1317675591, 'LR', 'Liberia'), +('78.138.34.72', '78.138.34.95', 1317675592, 1317675615, 'NG', 'Nigeria'), +('78.138.34.96', '78.138.34.111', 1317675616, 1317675631, 'A2', 'Satellite Provider'), +('78.138.34.112', '78.138.34.119', 1317675632, 1317675639, 'NG', 'Nigeria'), +('78.138.34.120', '78.138.34.127', 1317675640, 1317675647, 'FR', 'France'), +('78.138.34.128', '78.138.34.135', 1317675648, 1317675655, 'LR', 'Liberia'), +('78.138.34.136', '78.138.34.167', 1317675656, 1317675687, 'NG', 'Nigeria'), +('78.138.34.168', '78.138.34.175', 1317675688, 1317675695, 'CM', 'Cameroon'), +('78.138.34.176', '78.138.34.183', 1317675696, 1317675703, 'NG', 'Nigeria'), +('78.138.34.184', '78.138.34.191', 1317675704, 1317675711, 'A2', 'Satellite Provider'), +('78.138.34.192', '78.138.34.199', 1317675712, 1317675719, 'CM', 'Cameroon'), +('78.138.34.200', '78.138.34.215', 1317675720, 1317675735, 'NG', 'Nigeria'), +('78.138.34.216', '78.138.34.223', 1317675736, 1317675743, 'CD', 'Congo, The Democratic Republic of the'), +('78.138.34.224', '78.138.34.231', 1317675744, 1317675751, 'GH', 'Ghana'), +('78.138.34.232', '78.138.34.239', 1317675752, 1317675759, 'A2', 'Satellite Provider'), +('78.138.34.240', '78.138.34.255', 1317675760, 1317675775, 'GH', 'Ghana'), +('78.138.35.0', '78.138.63.255', 1317675776, 1317683199, 'A2', 'Satellite Provider'), +('78.138.64.0', '78.138.66.127', 1317683200, 1317683839, 'DE', 'Germany'), +('78.138.66.128', '78.138.66.143', 1317683840, 1317683855, 'CH', 'Switzerland'), +('78.138.66.144', '78.138.66.147', 1317683856, 1317683859, 'US', 'United States'), +('78.138.66.148', '78.138.66.151', 1317683860, 1317683863, 'DE', 'Germany'), +('78.138.66.152', '78.138.66.159', 1317683864, 1317683871, 'FR', 'France'), +('78.138.66.160', '78.138.75.255', 1317683872, 1317686271, 'DE', 'Germany'), +('78.138.76.0', '78.138.76.15', 1317686272, 1317686287, 'NL', 'Netherlands'), +('78.138.76.16', '78.138.76.31', 1317686288, 1317686303, 'DE', 'Germany'), +('78.138.76.32', '78.138.76.47', 1317686304, 1317686319, 'NL', 'Netherlands'), +('78.138.76.48', '78.138.112.255', 1317686320, 1317695743, 'DE', 'Germany'), +('78.138.113.0', '78.138.113.255', 1317695744, 1317695999, 'CH', 'Switzerland'), +('78.138.114.0', '78.138.127.255', 1317696000, 1317699583, 'DE', 'Germany'), +('78.138.128.0', '78.138.191.255', 1317699584, 1317715967, 'RU', 'Russian Federation'), +('78.138.192.0', '78.138.255.255', 1317715968, 1317732351, 'SA', 'Saudi Arabia'), +('78.139.0.0', '78.139.63.255', 1317732352, 1317748735, 'HU', 'Hungary'), +('78.139.64.0', '78.139.127.255', 1317748736, 1317765119, 'RU', 'Russian Federation'), +('78.139.128.0', '78.139.191.255', 1317765120, 1317781503, 'GE', 'Georgia'), +('78.139.192.0', '78.140.63.255', 1317781504, 1317814271, 'RU', 'Russian Federation'), +('78.140.64.0', '78.140.127.255', 1317814272, 1317830655, 'DE', 'Germany'), +('78.140.128.0', '78.140.133.255', 1317830656, 1317832191, 'NL', 'Netherlands'), +('78.140.134.0', '78.140.134.255', 1317832192, 1317832447, 'GB', 'United Kingdom'), +('78.140.135.0', '78.140.135.63', 1317832448, 1317832511, 'CY', 'Cyprus'), +('78.140.135.64', '78.140.136.255', 1317832512, 1317832959, 'NL', 'Netherlands'), +('78.140.137.0', '78.140.137.255', 1317832960, 1317833215, 'IT', 'Italy'), +('78.140.138.0', '78.140.147.95', 1317833216, 1317835615, 'NL', 'Netherlands'), +('78.140.147.96', '78.140.147.127', 1317835616, 1317835647, 'RU', 'Russian Federation'), +('78.140.147.128', '78.140.191.255', 1317835648, 1317847039, 'NL', 'Netherlands'), +('78.140.192.0', '78.140.255.255', 1317847040, 1317863423, 'RU', 'Russian Federation'), +('78.141.0.0', '78.141.63.255', 1317863424, 1317879807, 'GB', 'United Kingdom'), +('78.141.64.0', '78.141.127.255', 1317879808, 1317896191, 'SK', 'Slovakia'), +('78.141.128.0', '78.141.191.255', 1317896192, 1317912575, 'LU', 'Luxembourg'), +('78.141.192.0', '78.141.255.255', 1317912576, 1317928959, 'GB', 'United Kingdom'), +('78.142.0.0', '78.142.63.255', 1317928960, 1317945343, 'BG', 'Bulgaria'), +('78.142.64.0', '78.142.140.247', 1317945344, 1317965047, 'AT', 'Austria'), +('78.142.140.248', '78.142.140.255', 1317965048, 1317965055, 'DE', 'Germany'), +('78.142.141.0', '78.142.191.255', 1317965056, 1317978111, 'AT', 'Austria'), +('78.142.192.0', '78.142.255.255', 1317978112, 1317994495, 'RU', 'Russian Federation'), +('78.143.0.0', '78.143.7.255', 1317994496, 1317996543, 'NL', 'Netherlands'), +('78.143.8.0', '78.143.22.255', 1317996544, 1318000383, 'DE', 'Germany'), +('78.143.23.0', '78.143.23.63', 1318000384, 1318000447, 'NL', 'Netherlands'), +('78.143.23.64', '78.143.29.255', 1318000448, 1318002175, 'DE', 'Germany'), +('78.143.30.0', '78.143.30.255', 1318002176, 1318002431, 'NL', 'Netherlands'), +('78.143.31.0', '78.143.43.127', 1318002432, 1318005631, 'DE', 'Germany'), +('78.143.43.128', '78.143.43.255', 1318005632, 1318005759, 'NL', 'Netherlands'), +('78.143.44.0', '78.143.45.255', 1318005760, 1318006271, 'DE', 'Germany'), +('78.143.46.0', '78.143.47.255', 1318006272, 1318006783, 'NL', 'Netherlands'), +('78.143.48.0', '78.143.54.143', 1318006784, 1318008463, 'DE', 'Germany'), +('78.143.54.144', '78.143.54.159', 1318008464, 1318008479, 'NL', 'Netherlands'), +('78.143.54.160', '78.143.58.63', 1318008480, 1318009407, 'DE', 'Germany'), +('78.143.58.64', '78.143.58.127', 1318009408, 1318009471, 'NL', 'Netherlands'), +('78.143.58.128', '78.143.59.255', 1318009472, 1318009855, 'DE', 'Germany'), +('78.143.60.0', '78.143.63.255', 1318009856, 1318010879, 'NL', 'Netherlands'), +('78.143.64.0', '78.143.127.255', 1318010880, 1318027263, 'DK', 'Denmark'), +('78.143.128.0', '78.143.191.255', 1318027264, 1318043647, 'IE', 'Ireland'), +('78.143.192.0', '78.151.255.255', 1318043648, 1318584319, 'GB', 'United Kingdom'), +('78.152.0.0', '78.152.31.255', 1318584320, 1318592511, 'PL', 'Poland'), +('78.152.32.0', '78.152.63.255', 1318592512, 1318600703, 'FI', 'Finland'), +('78.152.64.0', '78.152.95.255', 1318600704, 1318608895, 'AT', 'Austria'), +('78.152.96.0', '78.152.127.255', 1318608896, 1318617087, 'IT', 'Italy'), +('78.152.128.0', '78.152.159.255', 1318617088, 1318625279, 'FR', 'France'), +('78.152.160.0', '78.152.191.255', 1318625280, 1318633471, 'UA', 'Ukraine'), +('78.152.192.0', '78.152.255.255', 1318633472, 1318649855, 'IE', 'Ireland'), +('78.153.0.0', '78.153.31.255', 1318649856, 1318658047, 'RU', 'Russian Federation'), +('78.153.32.0', '78.153.63.255', 1318658048, 1318666239, 'SI', 'Slovenia'), +('78.153.64.0', '78.153.95.255', 1318666240, 1318674431, 'DE', 'Germany'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('78.153.96.0', '78.153.127.255', 1318674432, 1318682623, 'GR', 'Greece'), +('78.153.128.0', '78.153.159.255', 1318682624, 1318690815, 'RU', 'Russian Federation'), +('78.153.160.0', '78.153.191.255', 1318690816, 1318699007, 'DK', 'Denmark'), +('78.153.192.0', '78.153.223.255', 1318699008, 1318707199, 'IE', 'Ireland'), +('78.153.224.0', '78.153.241.95', 1318707200, 1318711647, 'FR', 'France'), +('78.153.241.96', '78.153.241.111', 1318711648, 1318711663, 'IT', 'Italy'), +('78.153.241.112', '78.153.249.255', 1318711664, 1318713855, 'FR', 'France'), +('78.153.250.0', '78.153.250.255', 1318713856, 1318714111, 'CH', 'Switzerland'), +('78.153.251.0', '78.153.255.255', 1318714112, 1318715391, 'FR', 'France'), +('78.154.0.0', '78.154.31.255', 1318715392, 1318723583, 'BG', 'Bulgaria'), +('78.154.32.0', '78.154.63.255', 1318723584, 1318731775, 'IR', 'Iran, Islamic Republic of'), +('78.154.64.0', '78.154.95.255', 1318731776, 1318739967, 'PL', 'Poland'), +('78.154.96.0', '78.154.127.255', 1318739968, 1318748159, 'GB', 'United Kingdom'), +('78.154.128.0', '78.154.159.255', 1318748160, 1318756351, 'LV', 'Latvia'), +('78.154.160.0', '78.154.191.255', 1318756352, 1318764543, 'UA', 'Ukraine'), +('78.154.192.0', '78.154.255.255', 1318764544, 1318780927, 'KW', 'Kuwait'), +('78.155.0.0', '78.155.31.255', 1318780928, 1318789119, 'CH', 'Switzerland'), +('78.155.32.0', '78.155.63.255', 1318789120, 1318797311, 'ME', 'Montenegro'), +('78.155.64.0', '78.155.95.255', 1318797312, 1318805503, 'SY', 'Syrian Arab Republic'), +('78.155.96.0', '78.155.127.255', 1318805504, 1318813695, 'PL', 'Poland'), +('78.155.128.0', '78.155.159.255', 1318813696, 1318821887, 'FR', 'France'), +('78.155.160.0', '78.155.223.255', 1318821888, 1318838271, 'RU', 'Russian Federation'), +('78.155.224.0', '78.155.255.255', 1318838272, 1318846463, 'IE', 'Ireland'), +('78.156.0.0', '78.156.31.255', 1318846464, 1318854655, 'NO', 'Norway'), +('78.156.32.0', '78.156.63.255', 1318854656, 1318862847, 'CZ', 'Czech Republic'), +('78.156.64.0', '78.156.95.255', 1318862848, 1318871039, 'GB', 'United Kingdom'), +('78.156.96.0', '78.156.127.255', 1318871040, 1318879231, 'DK', 'Denmark'), +('78.156.128.0', '78.156.159.255', 1318879232, 1318887423, 'CZ', 'Czech Republic'), +('78.156.160.0', '78.156.191.255', 1318887424, 1318895615, 'PL', 'Poland'), +('78.156.192.0', '78.156.207.255', 1318895616, 1318899711, 'SE', 'Sweden'), +('78.156.208.0', '78.156.223.255', 1318899712, 1318903807, 'DK', 'Denmark'), +('78.156.224.0', '78.156.255.255', 1318903808, 1318911999, 'RU', 'Russian Federation'), +('78.157.0.0', '78.157.31.255', 1318912000, 1318920191, 'MK', 'Macedonia'), +('78.157.32.0', '78.157.63.255', 1318920192, 1318928383, 'IR', 'Iran, Islamic Republic of'), +('78.157.64.0', '78.157.95.255', 1318928384, 1318936575, 'LT', 'Lithuania'), +('78.157.96.0', '78.157.127.255', 1318936576, 1318944767, 'DK', 'Denmark'), +('78.157.128.0', '78.157.159.255', 1318944768, 1318952959, 'LV', 'Latvia'), +('78.157.160.0', '78.157.166.255', 1318952960, 1318954751, 'CZ', 'Czech Republic'), +('78.157.167.0', '78.157.167.255', 1318954752, 1318955007, 'PL', 'Poland'), +('78.157.168.0', '78.157.173.255', 1318955008, 1318956543, 'CZ', 'Czech Republic'), +('78.157.174.0', '78.157.175.255', 1318956544, 1318957055, 'PL', 'Poland'), +('78.157.176.0', '78.157.182.255', 1318957056, 1318958847, 'CZ', 'Czech Republic'), +('78.157.183.0', '78.157.190.255', 1318958848, 1318960895, 'PL', 'Poland'), +('78.157.191.0', '78.157.191.255', 1318960896, 1318961151, 'CZ', 'Czech Republic'), +('78.157.192.0', '78.157.223.255', 1318961152, 1318969343, 'NL', 'Netherlands'), +('78.157.224.0', '78.157.255.255', 1318969344, 1318977535, 'RU', 'Russian Federation'), +('78.158.0.0', '78.158.31.255', 1318977536, 1318985727, 'LT', 'Lithuania'), +('78.158.32.0', '78.158.91.255', 1318985728, 1319001087, 'GB', 'United Kingdom'), +('78.158.92.0', '78.158.95.255', 1319001088, 1319002111, 'US', 'United States'), +('78.158.96.0', '78.158.127.255', 1319002112, 1319010303, 'IE', 'Ireland'), +('78.158.128.0', '78.158.154.255', 1319010304, 1319017215, 'CY', 'Cyprus'), +('78.158.155.0', '78.158.155.63', 1319017216, 1319017279, 'DE', 'Germany'), +('78.158.155.64', '78.158.155.79', 1319017280, 1319017295, 'CY', 'Cyprus'), +('78.158.155.80', '78.158.155.87', 1319017296, 1319017303, 'DE', 'Germany'), +('78.158.155.88', '78.158.159.255', 1319017304, 1319018495, 'CY', 'Cyprus'), +('78.158.160.0', '78.158.191.255', 1319018496, 1319026687, 'IR', 'Iran, Islamic Republic of'), +('78.158.192.0', '78.158.223.255', 1319026688, 1319034879, 'RU', 'Russian Federation'), +('78.158.224.0', '78.158.227.255', 1319034880, 1319035903, 'NO', 'Norway'), +('78.158.228.0', '78.158.231.255', 1319035904, 1319036927, 'DK', 'Denmark'), +('78.158.232.0', '78.158.239.255', 1319036928, 1319038975, 'SE', 'Sweden'), +('78.158.240.0', '78.158.255.255', 1319038976, 1319043071, 'NO', 'Norway'), +('78.159.0.0', '78.159.31.255', 1319043072, 1319051263, 'FR', 'France'), +('78.159.32.0', '78.159.63.255', 1319051264, 1319059455, 'UA', 'Ukraine'), +('78.159.64.0', '78.159.95.255', 1319059456, 1319067647, 'PL', 'Poland'), +('78.159.96.0', '78.159.104.80', 1319067648, 1319069776, 'DE', 'Germany'), +('78.159.104.81', '78.159.104.127', 1319069777, 1319069823, 'CN', 'China'), +('78.159.104.128', '78.159.106.9', 1319069824, 1319070217, 'DE', 'Germany'), +('78.159.106.10', '78.159.106.46', 1319070218, 1319070254, 'CN', 'China'), +('78.159.106.47', '78.159.106.63', 1319070255, 1319070271, 'GB', 'United Kingdom'), +('78.159.106.64', '78.159.106.127', 1319070272, 1319070335, 'PT', 'Portugal'), +('78.159.106.128', '78.159.106.255', 1319070336, 1319070463, 'RU', 'Russian Federation'), +('78.159.107.0', '78.159.108.255', 1319070464, 1319070975, 'DE', 'Germany'), +('78.159.109.0', '78.159.109.127', 1319070976, 1319071103, 'PL', 'Poland'), +('78.159.109.128', '78.159.109.255', 1319071104, 1319071231, 'RU', 'Russian Federation'), +('78.159.110.0', '78.159.110.255', 1319071232, 1319071487, 'PL', 'Poland'), +('78.159.111.0', '78.159.115.255', 1319071488, 1319072767, 'DE', 'Germany'), +('78.159.116.0', '78.159.116.255', 1319072768, 1319073023, 'IT', 'Italy'), +('78.159.117.0', '78.159.117.255', 1319073024, 1319073279, 'TR', 'Turkey'), +('78.159.118.0', '78.159.121.255', 1319073280, 1319074303, 'DE', 'Germany'), +('78.159.122.0', '78.159.122.255', 1319074304, 1319074559, 'CN', 'China'), +('78.159.123.0', '78.159.123.255', 1319074560, 1319074815, 'DE', 'Germany'), +('78.159.124.0', '78.159.124.127', 1319074816, 1319074943, 'PL', 'Poland'), +('78.159.124.128', '78.159.124.255', 1319074944, 1319075071, 'RU', 'Russian Federation'), +('78.159.125.0', '78.159.125.127', 1319075072, 1319075199, 'PL', 'Poland'), +('78.159.125.128', '78.159.125.255', 1319075200, 1319075327, 'RU', 'Russian Federation'), +('78.159.126.0', '78.159.126.127', 1319075328, 1319075455, 'DE', 'Germany'), +('78.159.126.128', '78.159.126.255', 1319075456, 1319075583, 'RU', 'Russian Federation'), +('78.159.127.0', '78.159.127.80', 1319075584, 1319075664, 'DE', 'Germany'), +('78.159.127.81', '78.159.127.127', 1319075665, 1319075711, 'CN', 'China'), +('78.159.127.128', '78.159.127.255', 1319075712, 1319075839, 'RU', 'Russian Federation'), +('78.159.128.0', '78.159.159.255', 1319075840, 1319084031, 'BG', 'Bulgaria'), +('78.159.160.0', '78.159.191.255', 1319084032, 1319092223, 'KW', 'Kuwait'), +('78.159.192.0', '78.159.223.255', 1319092224, 1319100415, 'IT', 'Italy'), +('78.159.224.0', '78.159.255.255', 1319100416, 1319108607, 'RU', 'Russian Federation'), +('78.160.0.0', '78.191.255.255', 1319108608, 1321205759, 'TR', 'Turkey'), +('78.192.0.0', '78.255.255.255', 1321205760, 1325400063, 'FR', 'France'), +('79.0.0.0', '79.63.255.255', 1325400064, 1329594367, 'IT', 'Italy'), +('79.64.0.0', '79.79.255.255', 1329594368, 1330642943, 'GB', 'United Kingdom'), +('79.80.0.0', '79.95.255.255', 1330642944, 1331691519, 'FR', 'France'), +('79.96.0.0', '79.96.255.255', 1331691520, 1331757055, 'PL', 'Poland'), +('79.97.0.0', '79.97.255.255', 1331757056, 1331822591, 'IE', 'Ireland'), +('79.98.0.0', '79.98.7.255', 1331822592, 1331824639, 'IT', 'Italy'), +('79.98.8.0', '79.98.15.255', 1331824640, 1331826687, 'RU', 'Russian Federation'), +('79.98.16.0', '79.98.23.255', 1331826688, 1331828735, 'FR', 'France'), +('79.98.24.0', '79.98.31.255', 1331828736, 1331830783, 'LT', 'Lithuania'), +('79.98.32.0', '79.98.34.47', 1331830784, 1331831343, 'GB', 'United Kingdom'), +('79.98.34.48', '79.98.34.55', 1331831344, 1331831351, 'AE', 'United Arab Emirates'), +('79.98.34.56', '79.98.39.255', 1331831352, 1331832831, 'GB', 'United Kingdom'), +('79.98.40.0', '79.98.47.255', 1331832832, 1331834879, 'IT', 'Italy'), +('79.98.48.0', '79.98.55.255', 1331834880, 1331836927, 'BY', 'Belarus'), +('79.98.56.0', '79.98.63.255', 1331836928, 1331838975, 'FR', 'France'), +('79.98.64.0', '79.98.71.255', 1331838976, 1331841023, 'GR', 'Greece'), +('79.98.72.0', '79.98.79.255', 1331841024, 1331843071, 'CZ', 'Czech Republic'), +('79.98.80.0', '79.98.87.255', 1331843072, 1331845119, 'GB', 'United Kingdom'), +('79.98.88.0', '79.98.95.255', 1331845120, 1331847167, 'RU', 'Russian Federation'), +('79.98.96.0', '79.98.103.255', 1331847168, 1331849215, 'SE', 'Sweden'), +('79.98.104.0', '79.98.111.255', 1331849216, 1331851263, 'RU', 'Russian Federation'), +('79.98.112.0', '79.98.119.255', 1331851264, 1331853311, 'AL', 'Albania'), +('79.98.120.0', '79.98.127.255', 1331853312, 1331855359, 'AE', 'United Arab Emirates'), +('79.98.128.0', '79.98.135.255', 1331855360, 1331857407, 'TR', 'Turkey'), +('79.98.136.0', '79.98.143.255', 1331857408, 1331859455, 'RU', 'Russian Federation'), +('79.98.144.0', '79.98.151.255', 1331859456, 1331861503, 'PL', 'Poland'), +('79.98.152.0', '79.98.159.255', 1331861504, 1331863551, 'CZ', 'Czech Republic'), +('79.98.160.0', '79.98.167.255', 1331863552, 1331865599, 'GB', 'United Kingdom'), +('79.98.176.0', '79.98.183.255', 1331867648, 1331869695, 'NL', 'Netherlands'), +('79.98.184.0', '79.98.191.255', 1331869696, 1331871743, 'SA', 'Saudi Arabia'), +('79.98.192.0', '79.98.199.255', 1331871744, 1331873791, 'DK', 'Denmark'), +('79.98.200.0', '79.98.223.255', 1331873792, 1331879935, 'RU', 'Russian Federation'), +('79.98.224.0', '79.98.231.255', 1331879936, 1331881983, 'DE', 'Germany'), +('79.98.232.0', '79.98.235.255', 1331881984, 1331883007, 'GB', 'United Kingdom'), +('79.98.236.0', '79.98.236.255', 1331883008, 1331883263, 'SE', 'Sweden'), +('79.98.237.0', '79.98.247.255', 1331883264, 1331886079, 'GB', 'United Kingdom'), +('79.98.248.0', '79.98.255.255', 1331886080, 1331888127, 'ES', 'Spain'), +('79.99.0.0', '79.99.7.255', 1331888128, 1331890175, 'SE', 'Sweden'), +('79.99.8.0', '79.99.15.255', 1331890176, 1331892223, 'IT', 'Italy'), +('79.99.16.0', '79.99.23.255', 1331892224, 1331894271, 'RU', 'Russian Federation'), +('79.99.24.0', '79.99.31.255', 1331894272, 1331896319, 'NL', 'Netherlands'), +('79.99.32.0', '79.99.39.255', 1331896320, 1331898367, 'FR', 'France'), +('79.99.40.0', '79.99.47.255', 1331898368, 1331900415, 'GB', 'United Kingdom'), +('79.99.48.0', '79.99.55.255', 1331900416, 1331902463, 'RU', 'Russian Federation'), +('79.99.56.0', '79.99.63.255', 1331902464, 1331904511, 'MK', 'Macedonia'), +('79.99.64.0', '79.99.79.255', 1331904512, 1331908607, 'GB', 'United Kingdom'), +('79.99.80.0', '79.99.87.255', 1331908608, 1331910655, 'DE', 'Germany'), +('79.99.88.0', '79.99.95.255', 1331910656, 1331912703, 'BH', 'Bahrain'), +('79.99.96.0', '79.99.103.255', 1331912704, 1331914751, 'DE', 'Germany'), +('79.99.104.0', '79.99.111.255', 1331914752, 1331916799, 'RU', 'Russian Federation'), +('79.99.112.0', '79.99.119.255', 1331916800, 1331918847, 'IT', 'Italy'), +('79.99.120.0', '79.99.127.255', 1331918848, 1331920895, 'BE', 'Belgium'), +('79.99.128.0', '79.99.135.255', 1331920896, 1331922943, 'NL', 'Netherlands'), +('79.99.136.0', '79.99.143.255', 1331922944, 1331924991, 'DE', 'Germany'), +('79.99.144.0', '79.99.151.255', 1331924992, 1331927039, 'GB', 'United Kingdom'), +('79.99.152.0', '79.99.159.255', 1331927040, 1331929087, 'FI', 'Finland'), +('79.99.160.0', '79.99.167.255', 1331929088, 1331931135, 'FR', 'France'), +('79.99.168.0', '79.99.175.255', 1331931136, 1331933183, 'SE', 'Sweden'), +('79.99.176.0', '79.99.183.255', 1331933184, 1331935231, 'TR', 'Turkey'), +('79.99.184.0', '79.99.191.255', 1331935232, 1331937279, 'GB', 'United Kingdom'), +('79.99.192.0', '79.99.192.255', 1331937280, 1331937535, 'US', 'United States'), +('79.99.193.0', '79.99.193.31', 1331937536, 1331937567, 'SM', 'San Marino'), +('79.99.193.32', '79.99.193.47', 1331937568, 1331937583, 'US', 'United States'), +('79.99.193.48', '79.99.193.63', 1331937584, 1331937599, 'ZA', 'South Africa'), +('79.99.193.64', '79.99.195.255', 1331937600, 1331938303, 'GB', 'United Kingdom'), +('79.99.196.0', '79.99.196.255', 1331938304, 1331938559, 'US', 'United States'), +('79.99.197.0', '79.99.199.255', 1331938560, 1331939327, 'GB', 'United Kingdom'), +('79.99.200.0', '79.99.207.255', 1331939328, 1331941375, 'BE', 'Belgium'), +('79.99.208.0', '79.99.215.255', 1331941376, 1331943423, 'GR', 'Greece'), +('79.99.216.0', '79.99.223.255', 1331943424, 1331945471, 'RU', 'Russian Federation'), +('79.99.224.0', '79.99.231.255', 1331945472, 1331947519, 'SE', 'Sweden'), +('79.99.232.0', '79.99.234.255', 1331947520, 1331948287, 'CH', 'Switzerland'), +('79.99.235.0', '79.99.235.255', 1331948288, 1331948543, 'US', 'United States'), +('79.99.236.0', '79.99.236.3', 1331948544, 1331948547, 'NL', 'Netherlands'), +('79.99.236.4', '79.99.236.7', 1331948548, 1331948551, 'CH', 'Switzerland'), +('79.99.236.8', '79.99.236.15', 1331948552, 1331948559, 'FR', 'France'), +('79.99.236.16', '79.99.236.23', 1331948560, 1331948567, 'CZ', 'Czech Republic'), +('79.99.236.24', '79.99.236.31', 1331948568, 1331948575, 'DE', 'Germany'), +('79.99.236.32', '79.99.236.39', 1331948576, 1331948583, 'CZ', 'Czech Republic'), +('79.99.236.40', '79.99.236.63', 1331948584, 1331948607, 'CY', 'Cyprus'), +('79.99.236.64', '79.99.236.71', 1331948608, 1331948615, 'US', 'United States'), +('79.99.236.72', '79.99.239.255', 1331948616, 1331949567, 'CH', 'Switzerland'), +('79.99.240.0', '79.99.247.255', 1331949568, 1331951615, 'RU', 'Russian Federation'), +('79.99.248.0', '79.99.255.255', 1331951616, 1331953663, 'GE', 'Georgia'), +('79.100.0.0', '79.100.255.255', 1331953664, 1332019199, 'BG', 'Bulgaria'), +('79.101.0.0', '79.101.255.255', 1332019200, 1332084735, 'RS', 'Serbia'), +('79.102.0.0', '79.102.255.255', 1332084736, 1332150271, 'SE', 'Sweden'), +('79.103.0.0', '79.103.255.255', 1332150272, 1332215807, 'GR', 'Greece'), +('79.104.0.0', '79.105.255.255', 1332215808, 1332346879, 'RU', 'Russian Federation'), +('79.106.0.0', '79.106.255.255', 1332346880, 1332412415, 'AL', 'Albania'), +('79.107.0.0', '79.107.255.255', 1332412416, 1332477951, 'GR', 'Greece'), +('79.108.0.0', '79.109.255.255', 1332477952, 1332609023, 'ES', 'Spain'), +('79.110.0.0', '79.110.15.255', 1332609024, 1332613119, 'PL', 'Poland'), +('79.110.16.0', '79.110.79.255', 1332613120, 1332629503, 'UA', 'Ukraine'), +('79.110.80.0', '79.110.95.255', 1332629504, 1332633599, 'DE', 'Germany'), +('79.110.96.0', '79.110.111.255', 1332633600, 1332637695, 'UA', 'Ukraine'), +('79.110.112.0', '79.110.127.255', 1332637696, 1332641791, 'BG', 'Bulgaria'), +('79.110.128.0', '79.110.191.255', 1332641792, 1332658175, 'UA', 'Ukraine'), +('79.110.192.0', '79.110.207.255', 1332658176, 1332662271, 'PL', 'Poland'), +('79.110.208.0', '79.110.239.255', 1332662272, 1332670463, 'UA', 'Ukraine'), +('79.110.240.0', '79.111.255.255', 1332670464, 1332740095, 'RU', 'Russian Federation'), +('79.112.0.0', '79.119.255.255', 1332740096, 1333264383, 'RO', 'Romania'), +('79.120.0.0', '79.120.127.255', 1333264384, 1333297151, 'RU', 'Russian Federation'), +('79.120.128.0', '79.120.208.255', 1333297152, 1333317887, 'HU', 'Hungary'), +('79.120.209.0', '79.120.209.255', 1333317888, 1333318143, 'MK', 'Macedonia'), +('79.120.210.0', '79.121.127.255', 1333318144, 1333362687, 'HU', 'Hungary'), +('79.121.128.0', '79.121.255.255', 1333362688, 1333395455, 'GB', 'United Kingdom'), +('79.122.0.0', '79.122.127.255', 1333395456, 1333428223, 'HU', 'Hungary'), +('79.122.128.0', '79.122.255.255', 1333428224, 1333460991, 'RU', 'Russian Federation'), +('79.123.0.0', '79.123.127.255', 1333460992, 1333493759, 'GB', 'United Kingdom'), +('79.123.128.0', '79.123.255.255', 1333493760, 1333526527, 'TR', 'Turkey'), +('79.124.0.0', '79.124.95.255', 1333526528, 1333551103, 'BG', 'Bulgaria'), +('79.124.96.0', '79.124.111.255', 1333551104, 1333555199, 'UA', 'Ukraine'), +('79.124.112.0', '79.124.127.255', 1333555200, 1333559295, 'RO', 'Romania'), +('79.124.128.0', '79.124.255.255', 1333559296, 1333592063, 'UA', 'Ukraine'), +('79.125.0.0', '79.125.127.255', 1333592064, 1333624831, 'IE', 'Ireland'), +('79.125.128.0', '79.125.255.255', 1333624832, 1333657599, 'MK', 'Macedonia'), +('79.126.0.0', '79.126.127.255', 1333657600, 1333690367, 'RU', 'Russian Federation'), +('79.126.128.0', '79.126.255.255', 1333690368, 1333723135, 'MK', 'Macedonia'), +('79.127.0.0', '79.127.127.255', 1333723136, 1333755903, 'IR', 'Iran, Islamic Republic of'), +('79.127.128.0', '79.127.255.255', 1333755904, 1333788671, 'CZ', 'Czech Republic'), +('79.128.0.0', '79.131.255.255', 1333788672, 1334050815, 'GR', 'Greece'), +('79.132.0.0', '79.132.31.255', 1334050816, 1334059007, 'BG', 'Bulgaria'), +('79.132.32.0', '79.132.63.255', 1334059008, 1334067199, 'FR', 'France'), +('79.132.64.0', '79.132.95.255', 1334067200, 1334075391, 'LV', 'Latvia'), +('79.132.96.0', '79.132.127.255', 1334075392, 1334083583, 'RU', 'Russian Federation'), +('79.132.128.0', '79.132.159.255', 1334083584, 1334091775, 'DE', 'Germany'), +('79.132.160.0', '79.132.191.255', 1334091776, 1334099967, 'LT', 'Lithuania'), +('79.132.192.0', '79.132.223.255', 1334099968, 1334108159, 'IR', 'Iran, Islamic Republic of'), +('79.132.224.0', '79.132.255.255', 1334108160, 1334116351, 'BE', 'Belgium'), +('79.133.0.0', '79.133.31.255', 1334116352, 1334124543, 'AX', 'Aland Islands'), +('79.133.32.0', '79.133.63.255', 1334124544, 1334132735, 'DE', 'Germany'), +('79.133.64.0', '79.133.191.255', 1334132736, 1334165503, 'RU', 'Russian Federation'), +('79.133.192.0', '79.133.223.255', 1334165504, 1334173695, 'PL', 'Poland'), +('79.133.224.0', '79.133.255.255', 1334173696, 1334181887, 'LT', 'Lithuania'), +('79.134.0.0', '79.134.31.255', 1334181888, 1334190079, 'RU', 'Russian Federation'), +('79.134.32.0', '79.134.63.255', 1334190080, 1334198271, 'RO', 'Romania'), +('79.134.64.0', '79.134.95.255', 1334198272, 1334206463, 'RU', 'Russian Federation'), +('79.134.96.0', '79.134.127.255', 1334206464, 1334214655, 'FI', 'Finland'), +('79.134.128.0', '79.134.159.255', 1334214656, 1334222847, 'JO', 'Jordan'), +('79.134.160.0', '79.134.191.255', 1334222848, 1334231039, 'BG', 'Bulgaria'), +('79.134.192.0', '79.134.223.255', 1334231040, 1334239231, 'EE', 'Estonia'), +('79.134.224.0', '79.134.255.255', 1334239232, 1334247423, 'IS', 'Iceland'), +('79.135.0.0', '79.135.31.255', 1334247424, 1334255615, 'NO', 'Norway'), +('79.135.32.0', '79.135.63.255', 1334255616, 1334263807, 'IT', 'Italy'), +('79.135.64.0', '79.135.95.255', 1334263808, 1334271999, 'RU', 'Russian Federation'), +('79.135.96.0', '79.135.127.255', 1334272000, 1334280191, 'GB', 'United Kingdom'), +('79.135.128.0', '79.135.159.255', 1334280192, 1334288383, 'LV', 'Latvia'), +('79.135.160.0', '79.135.191.255', 1334288384, 1334296575, 'TR', 'Turkey'), +('79.135.192.0', '79.135.223.255', 1334296576, 1334304767, 'UA', 'Ukraine'), +('79.135.224.0', '79.135.255.255', 1334304768, 1334312959, 'RU', 'Russian Federation'), +('79.136.0.0', '79.136.11.255', 1334312960, 1334316031, 'SE', 'Sweden'), +('79.136.12.0', '79.136.13.255', 1334316032, 1334316543, 'NO', 'Norway'), +('79.136.14.0', '79.136.115.15', 1334316544, 1334342415, 'SE', 'Sweden'), +('79.136.115.16', '79.136.115.31', 1334342416, 1334342431, 'GB', 'United Kingdom'), +('79.136.115.32', '79.136.127.255', 1334342432, 1334345727, 'SE', 'Sweden'), +('79.136.128.0', '79.136.255.255', 1334345728, 1334378495, 'RU', 'Russian Federation'), +('79.137.0.0', '79.137.127.255', 1334378496, 1334411263, 'IT', 'Italy'), +('79.137.128.0', '79.137.255.255', 1334411264, 1334444031, 'RU', 'Russian Federation'), +('79.138.0.0', '79.138.135.255', 1334444032, 1334478847, 'SE', 'Sweden'), +('79.138.136.0', '79.138.143.255', 1334478848, 1334480895, 'DK', 'Denmark'), +('79.138.144.0', '79.138.159.255', 1334480896, 1334484991, 'SE', 'Sweden'), +('79.138.160.0', '79.138.175.255', 1334484992, 1334489087, 'DK', 'Denmark'), +('79.138.176.0', '79.138.223.255', 1334489088, 1334501375, 'SE', 'Sweden'), +('79.138.224.0', '79.138.255.255', 1334501376, 1334509567, 'DK', 'Denmark'), +('79.139.0.0', '79.139.127.255', 1334509568, 1334542335, 'PL', 'Poland'), +('79.139.128.0', '79.139.255.255', 1334542336, 1334575103, 'RU', 'Russian Federation'), +('79.140.0.0', '79.140.15.255', 1334575104, 1334579199, 'UA', 'Ukraine'), +('79.140.16.0', '79.140.31.255', 1334579200, 1334583295, 'RU', 'Russian Federation'), +('79.140.32.0', '79.140.32.15', 1334583296, 1334583311, 'DE', 'Germany'), +('79.140.32.16', '79.140.32.23', 1334583312, 1334583319, 'US', 'United States'), +('79.140.32.24', '79.140.32.31', 1334583320, 1334583327, 'DE', 'Germany'), +('79.140.32.32', '79.140.32.63', 1334583328, 1334583359, 'US', 'United States'), +('79.140.32.64', '79.140.32.239', 1334583360, 1334583535, 'DE', 'Germany'), +('79.140.32.240', '79.140.32.247', 1334583536, 1334583543, 'US', 'United States'), +('79.140.32.248', '79.140.33.255', 1334583544, 1334583807, 'DE', 'Germany'), +('79.140.34.0', '79.140.34.255', 1334583808, 1334584063, 'CH', 'Switzerland'), +('79.140.35.0', '79.140.35.191', 1334584064, 1334584255, 'DE', 'Germany'), +('79.140.35.192', '79.140.35.223', 1334584256, 1334584287, 'AT', 'Austria'), +('79.140.35.224', '79.140.36.31', 1334584288, 1334584351, 'DE', 'Germany'), +('79.140.36.32', '79.140.36.63', 1334584352, 1334584383, 'LU', 'Luxembourg'), +('79.140.36.64', '79.140.38.71', 1334584384, 1334584903, 'DE', 'Germany'), +('79.140.38.72', '79.140.38.79', 1334584904, 1334584911, 'AT', 'Austria'), +('79.140.38.80', '79.140.38.167', 1334584912, 1334584999, 'DE', 'Germany'), +('79.140.38.168', '79.140.38.175', 1334585000, 1334585007, 'US', 'United States'), +('79.140.38.176', '79.140.38.223', 1334585008, 1334585055, 'DE', 'Germany'), +('79.140.38.224', '79.140.38.255', 1334585056, 1334585087, 'US', 'United States'), +('79.140.39.0', '79.140.39.23', 1334585088, 1334585111, 'DE', 'Germany'), +('79.140.39.24', '79.140.39.31', 1334585112, 1334585119, 'US', 'United States'), +('79.140.39.32', '79.140.63.255', 1334585120, 1334591487, 'DE', 'Germany'), +('79.140.64.0', '79.140.79.255', 1334591488, 1334595583, 'RU', 'Russian Federation'), +('79.140.80.0', '79.140.82.255', 1334595584, 1334596351, 'IT', 'Italy'), +('79.140.83.0', '79.140.83.255', 1334596352, 1334596607, 'GR', 'Greece'), +('79.140.84.0', '79.140.88.255', 1334596608, 1334597887, 'IT', 'Italy'), +('79.140.89.0', '79.140.89.255', 1334597888, 1334598143, 'GR', 'Greece'), +('79.140.90.0', '79.140.90.127', 1334598144, 1334598271, 'SK', 'Slovakia'), +('79.140.90.128', '79.140.90.255', 1334598272, 1334598399, 'CZ', 'Czech Republic'), +('79.140.91.0', '79.140.91.63', 1334598400, 1334598463, 'GR', 'Greece'), +('79.140.91.64', '79.140.91.127', 1334598464, 1334598527, 'IT', 'Italy'), +('79.140.91.128', '79.140.91.255', 1334598528, 1334598655, 'GR', 'Greece'), +('79.140.92.0', '79.140.95.255', 1334598656, 1334599679, 'IT', 'Italy'), +('79.140.96.0', '79.140.111.255', 1334599680, 1334603775, 'RU', 'Russian Federation'), +('79.140.112.0', '79.140.127.255', 1334603776, 1334607871, 'DE', 'Germany'), +('79.140.128.0', '79.140.136.74', 1334607872, 1334609994, 'IE', 'Ireland'), +('79.140.136.75', '79.140.136.75', 1334609995, 1334609995, 'GB', 'United Kingdom'), +('79.140.136.76', '79.140.143.255', 1334609996, 1334611967, 'IE', 'Ireland'), +('79.140.144.0', '79.140.159.255', 1334611968, 1334616063, 'ME', 'Montenegro'), +('79.140.160.0', '79.140.175.255', 1334616064, 1334620159, 'MD', 'Moldova, Republic of'), +('79.140.176.0', '79.140.191.255', 1334620160, 1334624255, 'DE', 'Germany'), +('79.140.192.0', '79.140.207.255', 1334624256, 1334628351, 'GB', 'United Kingdom'), +('79.140.208.0', '79.140.223.255', 1334628352, 1334632447, 'IE', 'Ireland'), +('79.140.224.0', '79.140.239.255', 1334632448, 1334636543, 'KZ', 'Kazakstan'), +('79.140.240.0', '79.140.255.255', 1334636544, 1334640639, 'RU', 'Russian Federation'), +('79.141.0.0', '79.141.15.255', 1334640640, 1334644735, 'FR', 'France'), +('79.141.16.0', '79.141.16.255', 1334644736, 1334644991, 'IQ', 'Iraq'), +('79.141.17.0', '79.141.17.183', 1334644992, 1334645175, 'A2', 'Satellite Provider'), +('79.141.17.184', '79.141.17.191', 1334645176, 1334645183, 'IQ', 'Iraq'), +('79.141.17.192', '79.141.17.255', 1334645184, 1334645247, 'A2', 'Satellite Provider'), +('79.141.18.0', '79.141.27.255', 1334645248, 1334647807, 'IQ', 'Iraq'), +('79.141.28.0', '79.141.31.255', 1334647808, 1334648831, 'A2', 'Satellite Provider'), +('79.141.32.0', '79.141.41.255', 1334648832, 1334651391, 'GB', 'United Kingdom'), +('79.141.42.0', '79.141.42.255', 1334651392, 1334651647, 'NL', 'Netherlands'), +('79.141.43.0', '79.141.43.255', 1334651648, 1334651903, 'FR', 'France'), +('79.141.44.0', '79.141.44.255', 1334651904, 1334652159, 'DE', 'Germany'), +('79.141.45.0', '79.141.47.255', 1334652160, 1334652927, 'GB', 'United Kingdom'), +('79.141.48.0', '79.141.79.255', 1334652928, 1334661119, 'RU', 'Russian Federation'), +('79.141.80.0', '79.141.95.255', 1334661120, 1334665215, 'CH', 'Switzerland'), +('79.141.96.0', '79.141.111.255', 1334665216, 1334669311, 'NO', 'Norway'), +('79.141.112.0', '79.141.127.255', 1334669312, 1334673407, 'MK', 'Macedonia'), +('79.141.128.0', '79.141.143.255', 1334673408, 1334677503, 'GB', 'United Kingdom'), +('79.141.144.0', '79.141.159.255', 1334677504, 1334681599, 'FI', 'Finland'), +('79.141.160.0', '79.141.160.255', 1334681600, 1334681855, 'PL', 'Poland'), +('79.141.161.0', '79.141.161.255', 1334681856, 1334682111, 'GB', 'United Kingdom'), +('79.141.162.0', '79.141.162.255', 1334682112, 1334682367, 'IR', 'Iran, Islamic Republic of'), +('79.141.163.0', '79.141.163.255', 1334682368, 1334682623, 'FR', 'France'), +('79.141.164.0', '79.141.164.255', 1334682624, 1334682879, 'NO', 'Norway'), +('79.141.165.0', '79.141.165.255', 1334682880, 1334683135, 'DK', 'Denmark'), +('79.141.166.0', '79.141.166.255', 1334683136, 1334683391, 'CZ', 'Czech Republic'), +('79.141.167.0', '79.141.167.255', 1334683392, 1334683647, 'CH', 'Switzerland'), +('79.141.168.0', '79.141.169.255', 1334683648, 1334684159, 'DE', 'Germany'), +('79.141.170.0', '79.141.170.255', 1334684160, 1334684415, 'SE', 'Sweden'), +('79.141.171.0', '79.141.171.255', 1334684416, 1334684671, 'DE', 'Germany'), +('79.141.172.0', '79.141.172.255', 1334684672, 1334684927, 'FI', 'Finland'), +('79.141.173.0', '79.141.173.255', 1334684928, 1334685183, 'NL', 'Netherlands'), +('79.141.174.0', '79.141.175.255', 1334685184, 1334685695, 'DE', 'Germany'), +('79.141.176.0', '79.141.191.255', 1334685696, 1334689791, 'IT', 'Italy'), +('79.141.192.0', '79.141.207.255', 1334689792, 1334693887, 'FR', 'France'), +('79.141.208.0', '79.141.239.255', 1334693888, 1334702079, 'RU', 'Russian Federation'), +('79.141.240.0', '79.141.255.255', 1334702080, 1334706175, 'CZ', 'Czech Republic'), +('79.142.0.0', '79.142.15.255', 1334706176, 1334710271, 'BA', 'Bosnia and Herzegovina'), +('79.142.16.0', '79.142.31.255', 1334710272, 1334714367, 'RU', 'Russian Federation'), +('79.142.32.0', '79.142.47.255', 1334714368, 1334718463, 'DE', 'Germany'), +('79.142.48.0', '79.142.63.255', 1334718464, 1334722559, 'KZ', 'Kazakstan'), +('79.142.64.0', '79.142.79.255', 1334722560, 1334726655, 'IT', 'Italy'), +('79.142.80.0', '79.142.93.255', 1334726656, 1334730239, 'RU', 'Russian Federation'), +('79.142.94.0', '79.142.94.159', 1334730240, 1334730399, 'KZ', 'Kazakstan'), +('79.142.94.160', '79.142.94.255', 1334730400, 1334730495, 'RU', 'Russian Federation'), +('79.142.95.0', '79.142.95.3', 1334730496, 1334730499, 'KZ', 'Kazakstan'), +('79.142.95.4', '79.142.95.7', 1334730500, 1334730503, 'RU', 'Russian Federation'), +('79.142.95.8', '79.142.95.43', 1334730504, 1334730539, 'KZ', 'Kazakstan'), +('79.142.95.44', '79.142.95.47', 1334730540, 1334730543, 'RU', 'Russian Federation'), +('79.142.95.48', '79.142.95.55', 1334730544, 1334730551, 'KZ', 'Kazakstan'), +('79.142.95.56', '79.142.95.63', 1334730552, 1334730559, 'RU', 'Russian Federation'), +('79.142.95.64', '79.142.95.75', 1334730560, 1334730571, 'KZ', 'Kazakstan'), +('79.142.95.76', '79.142.95.79', 1334730572, 1334730575, 'RU', 'Russian Federation'), +('79.142.95.80', '79.142.95.95', 1334730576, 1334730591, 'KZ', 'Kazakstan'), +('79.142.95.96', '79.142.95.107', 1334730592, 1334730603, 'RU', 'Russian Federation'), +('79.142.95.108', '79.142.95.123', 1334730604, 1334730619, 'KZ', 'Kazakstan'), +('79.142.95.124', '79.142.111.255', 1334730620, 1334734847, 'RU', 'Russian Federation'), +('79.142.112.0', '79.142.127.255', 1334734848, 1334738943, 'LT', 'Lithuania'), +('79.142.128.0', '79.142.143.255', 1334738944, 1334743039, 'CH', 'Switzerland'), +('79.142.144.0', '79.142.159.255', 1334743040, 1334747135, 'UA', 'Ukraine'), +('79.142.160.0', '79.142.175.255', 1334747136, 1334751231, 'RU', 'Russian Federation'), +('79.142.176.0', '79.142.191.255', 1334751232, 1334755327, 'BH', 'Bahrain'), +('79.142.192.0', '79.142.207.255', 1334755328, 1334759423, 'UA', 'Ukraine'), +('79.142.208.0', '79.142.223.255', 1334759424, 1334763519, 'SE', 'Sweden'), +('79.142.224.0', '79.142.239.255', 1334763520, 1334767615, 'DK', 'Denmark'), +('79.142.240.0', '79.142.255.255', 1334767616, 1334771711, 'SE', 'Sweden'), +('79.143.0.0', '79.143.31.255', 1334771712, 1334779903, 'RU', 'Russian Federation'), +('79.143.32.0', '79.143.47.255', 1334779904, 1334783999, 'UA', 'Ukraine'), +('79.143.48.0', '79.143.63.255', 1334784000, 1334788095, 'AT', 'Austria'), +('79.143.64.0', '79.143.95.255', 1334788096, 1334796287, 'RU', 'Russian Federation'), +('79.143.96.0', '79.143.111.255', 1334796288, 1334800383, 'ME', 'Montenegro'), +('79.143.112.0', '79.143.127.255', 1334800384, 1334804479, 'IT', 'Italy'), +('79.143.128.0', '79.143.143.255', 1334804480, 1334808575, 'FR', 'France'), +('79.143.144.0', '79.143.159.255', 1334808576, 1334812671, 'GB', 'United Kingdom'), +('79.143.160.0', '79.143.175.255', 1334812672, 1334816767, 'BA', 'Bosnia and Herzegovina'), +('79.143.176.0', '79.143.179.255', 1334816768, 1334817791, 'LV', 'Latvia'), +('79.143.180.0', '79.143.180.255', 1334817792, 1334818047, 'NL', 'Netherlands'), +('79.143.181.0', '79.143.191.255', 1334818048, 1334820863, 'LV', 'Latvia'), +('79.143.192.0', '79.143.207.255', 1334820864, 1334824959, 'IE', 'Ireland'), +('79.143.208.0', '79.143.223.255', 1334824960, 1334829055, 'NL', 'Netherlands'), +('79.143.224.0', '79.143.239.255', 1334829056, 1334833151, 'RU', 'Russian Federation'), +('79.143.240.0', '79.143.255.255', 1334833152, 1334837247, 'FR', 'France'), +('79.144.0.0', '79.159.255.255', 1334837248, 1335885823, 'ES', 'Spain'), +('79.160.0.0', '79.161.255.255', 1335885824, 1336016895, 'NO', 'Norway'), +('79.162.0.0', '79.163.255.255', 1336016896, 1336147967, 'PL', 'Poland'), +('79.164.0.0', '79.165.255.255', 1336147968, 1336279039, 'RU', 'Russian Federation'), +('79.166.0.0', '79.167.255.255', 1336279040, 1336410111, 'GR', 'Greece'), +('79.168.0.0', '79.169.255.255', 1336410112, 1336541183, 'PT', 'Portugal'), +('79.170.0.0', '79.170.7.255', 1336541184, 1336543231, 'SA', 'Saudi Arabia'), +('79.170.8.0', '79.170.15.255', 1336543232, 1336545279, 'ES', 'Spain'), +('79.170.16.0', '79.170.23.255', 1336545280, 1336547327, 'SE', 'Sweden'), +('79.170.24.0', '79.170.31.255', 1336547328, 1336549375, 'RU', 'Russian Federation'), +('79.170.32.0', '79.170.39.255', 1336549376, 1336551423, 'IM', 'Isle of Man'), +('79.170.40.0', '79.170.47.255', 1336551424, 1336553471, 'GB', 'United Kingdom'), +('79.170.48.0', '79.170.55.255', 1336553472, 1336555519, 'SA', 'Saudi Arabia'), +('79.170.56.0', '79.170.63.255', 1336555520, 1336557567, 'BE', 'Belgium'), +('79.170.64.0', '79.170.67.255', 1336557568, 1336558591, 'ES', 'Spain'), +('79.170.68.0', '79.170.70.224', 1336558592, 1336559328, 'US', 'United States'), +('79.170.70.225', '79.170.71.255', 1336559329, 1336559615, 'ES', 'Spain'), +('79.170.72.0', '79.170.79.255', 1336559616, 1336561663, 'GB', 'United Kingdom'), +('79.170.80.0', '79.170.87.255', 1336561664, 1336563711, 'NO', 'Norway'), +('79.170.88.0', '79.170.103.255', 1336563712, 1336567807, 'NL', 'Netherlands'), +('79.170.104.0', '79.170.111.255', 1336567808, 1336569855, 'BY', 'Belarus'), +('79.170.112.0', '79.170.119.255', 1336569856, 1336571903, 'FR', 'France'), +('79.170.120.0', '79.170.127.255', 1336571904, 1336573951, 'PL', 'Poland'), +('79.170.128.0', '79.170.135.255', 1336573952, 1336575999, 'DK', 'Denmark'), +('79.170.136.0', '79.170.143.255', 1336576000, 1336578047, 'RU', 'Russian Federation'), +('79.170.144.0', '79.170.151.255', 1336578048, 1336580095, 'IR', 'Iran, Islamic Republic of'), +('79.170.152.0', '79.170.167.255', 1336580096, 1336584191, 'RU', 'Russian Federation'), +('79.170.168.0', '79.170.175.255', 1336584192, 1336586239, 'TR', 'Turkey'), +('79.170.176.0', '79.170.183.255', 1336586240, 1336588287, 'GB', 'United Kingdom'), +('79.170.184.0', '79.170.191.255', 1336588288, 1336590335, 'TJ', 'Tajikistan'), +('79.170.192.0', '79.170.199.255', 1336590336, 1336592383, 'GB', 'United Kingdom'), +('79.170.200.0', '79.170.207.255', 1336592384, 1336594431, 'AM', 'Armenia'), +('79.170.208.0', '79.170.215.255', 1336594432, 1336596479, 'AT', 'Austria'), +('79.170.216.0', '79.170.223.255', 1336596480, 1336598527, 'FR', 'France'), +('79.170.224.0', '79.170.231.255', 1336598528, 1336600575, 'MD', 'Moldova, Republic of'), +('79.170.232.0', '79.170.239.255', 1336600576, 1336602623, 'FR', 'France'), +('79.170.240.0', '79.170.247.255', 1336602624, 1336604671, 'IE', 'Ireland'), +('79.170.248.0', '79.170.255.255', 1336604672, 1336606719, 'CZ', 'Czech Republic'), +('79.171.0.0', '79.171.7.255', 1336606720, 1336608767, 'PL', 'Poland'), +('79.171.8.0', '79.171.15.255', 1336608768, 1336610815, 'RU', 'Russian Federation'), +('79.171.16.0', '79.171.23.255', 1336610816, 1336612863, 'TR', 'Turkey'), +('79.171.24.0', '79.171.31.255', 1336612864, 1336614911, 'ES', 'Spain'), +('79.171.32.0', '79.171.39.255', 1336614912, 1336616959, 'GB', 'United Kingdom'), +('79.171.40.0', '79.171.47.255', 1336616960, 1336619007, 'ES', 'Spain'), +('79.171.48.0', '79.171.55.255', 1336619008, 1336621055, 'AL', 'Albania'), +('79.171.56.0', '79.171.63.255', 1336621056, 1336623103, 'IT', 'Italy'), +('79.171.64.0', '79.171.71.255', 1336623104, 1336625151, 'BE', 'Belgium'), +('79.171.72.0', '79.171.74.159', 1336625152, 1336625823, 'IE', 'Ireland'), +('79.171.74.160', '79.171.74.175', 1336625824, 1336625839, 'GB', 'United Kingdom'), +('79.171.74.176', '79.171.76.31', 1336625840, 1336626207, 'IE', 'Ireland'), +('79.171.76.32', '79.171.76.95', 1336626208, 1336626271, 'GB', 'United Kingdom'), +('79.171.76.96', '79.171.79.255', 1336626272, 1336627199, 'IE', 'Ireland'), +('79.171.80.0', '79.171.87.255', 1336627200, 1336629247, 'NO', 'Norway'), +('79.171.88.0', '79.171.95.255', 1336629248, 1336631295, 'DE', 'Germany'), +('79.171.96.0', '79.171.103.255', 1336631296, 1336633343, 'IS', 'Iceland'), +('79.171.104.0', '79.171.109.255', 1336633344, 1336634879, 'ES', 'Spain'), +('79.171.110.0', '79.171.111.255', 1336634880, 1336635391, 'PT', 'Portugal'), +('79.171.112.0', '79.171.119.255', 1336635392, 1336637439, 'RU', 'Russian Federation'), +('79.171.120.0', '79.171.127.255', 1336637440, 1336639487, 'UA', 'Ukraine'), +('79.171.128.0', '79.171.143.255', 1336639488, 1336643583, 'HU', 'Hungary'), +('79.171.144.0', '79.171.151.255', 1336643584, 1336645631, 'DK', 'Denmark'), +('79.171.152.0', '79.171.159.255', 1336645632, 1336647679, 'GB', 'United Kingdom'), +('79.171.160.0', '79.171.167.255', 1336647680, 1336649727, 'IT', 'Italy'), +('79.171.168.0', '79.171.175.255', 1336649728, 1336651775, 'RU', 'Russian Federation'), +('79.171.176.0', '79.171.183.255', 1336651776, 1336653823, 'DE', 'Germany'), +('79.171.184.0', '79.171.191.255', 1336653824, 1336655871, 'CZ', 'Czech Republic'), +('79.171.192.0', '79.171.199.255', 1336655872, 1336657919, 'NL', 'Netherlands'), +('79.171.200.0', '79.171.207.255', 1336657920, 1336659967, 'DE', 'Germany'), +('79.171.208.0', '79.171.215.255', 1336659968, 1336662015, 'RU', 'Russian Federation'), +('79.171.216.0', '79.171.219.255', 1336662016, 1336663039, 'ES', 'Spain'), +('79.171.220.0', '79.171.220.31', 1336663040, 1336663071, 'FR', 'France'), +('79.171.220.32', '79.171.223.255', 1336663072, 1336664063, 'ES', 'Spain'), +('79.171.224.0', '79.171.239.255', 1336664064, 1336668159, 'FI', 'Finland'), +('79.171.240.0', '79.171.247.255', 1336668160, 1336670207, 'BH', 'Bahrain'), +('79.171.248.0', '79.171.255.255', 1336670208, 1336672255, 'SE', 'Sweden'), +('79.172.0.0', '79.172.127.255', 1336672256, 1336705023, 'RU', 'Russian Federation'), +('79.172.128.0', '79.172.191.255', 1336705024, 1336721407, 'SA', 'Saudi Arabia'), +('79.172.192.0', '79.172.255.255', 1336721408, 1336737791, 'HU', 'Hungary'), +('79.173.0.0', '79.173.63.255', 1336737792, 1336754175, 'PL', 'Poland'), +('79.173.64.0', '79.173.127.255', 1336754176, 1336770559, 'RU', 'Russian Federation'), +('79.173.128.0', '79.173.191.255', 1336770560, 1336786943, 'GB', 'United Kingdom'), +('79.173.192.0', '79.173.255.255', 1336786944, 1336803327, 'JO', 'Jordan'), +('79.174.0.0', '79.174.31.255', 1336803328, 1336811519, 'UA', 'Ukraine'), +('79.174.32.0', '79.174.95.255', 1336811520, 1336827903, 'RU', 'Russian Federation'), +('79.174.96.0', '79.174.127.255', 1336827904, 1336836095, 'AT', 'Austria'), +('79.174.128.0', '79.174.191.255', 1336836096, 1336852479, 'RU', 'Russian Federation'), +('79.174.192.0', '79.174.255.255', 1336852480, 1336868863, 'FR', 'France'), +('79.175.0.0', '79.175.63.255', 1336868864, 1336885247, 'RU', 'Russian Federation'), +('79.175.64.0', '79.175.127.255', 1336885248, 1336901631, 'RS', 'Serbia'), +('79.175.128.0', '79.175.191.255', 1336901632, 1336918015, 'IR', 'Iran, Islamic Republic of'), +('79.175.192.0', '79.175.255.255', 1336918016, 1336934399, 'PL', 'Poland'), +('79.176.0.0', '79.183.255.255', 1336934400, 1337458687, 'IL', 'Israel'), +('79.184.0.0', '79.191.255.255', 1337458688, 1337982975, 'PL', 'Poland'), +('79.192.0.0', '79.255.255.255', 1337982976, 1342177279, 'DE', 'Germany'), +('80.0.0.0', '80.6.224.191', 1342177280, 1342628031, 'GB', 'United Kingdom'), +('80.6.224.192', '80.6.224.255', 1342628032, 1342628095, 'IE', 'Ireland'), +('80.6.225.0', '80.6.225.63', 1342628096, 1342628159, 'GB', 'United Kingdom'), +('80.6.225.64', '80.6.225.79', 1342628160, 1342628175, 'IE', 'Ireland'), +('80.6.225.80', '80.6.225.111', 1342628176, 1342628207, 'GB', 'United Kingdom'), +('80.6.225.112', '80.6.225.127', 1342628208, 1342628223, 'IE', 'Ireland'), +('80.6.225.128', '80.6.225.223', 1342628224, 1342628319, 'GB', 'United Kingdom'), +('80.6.225.224', '80.6.225.239', 1342628320, 1342628335, 'IE', 'Ireland'), +('80.6.225.240', '80.6.225.255', 1342628336, 1342628351, 'GB', 'United Kingdom'), +('80.6.226.0', '80.6.226.15', 1342628352, 1342628367, 'IE', 'Ireland'), +('80.6.226.16', '80.6.226.79', 1342628368, 1342628431, 'GB', 'United Kingdom'), +('80.6.226.80', '80.6.226.111', 1342628432, 1342628463, 'IE', 'Ireland'), +('80.6.226.112', '80.6.227.55', 1342628464, 1342628663, 'GB', 'United Kingdom'), +('80.6.227.56', '80.6.227.63', 1342628664, 1342628671, 'IE', 'Ireland'), +('80.6.227.64', '80.7.255.255', 1342628672, 1342701567, 'GB', 'United Kingdom'), +('80.8.0.0', '80.12.70.255', 1342701568, 1342981887, 'FR', 'France'), +('80.12.71.0', '80.12.71.47', 1342981888, 1342981935, 'GB', 'United Kingdom'), +('80.12.71.48', '80.12.71.255', 1342981936, 1342982143, 'FR', 'France'), +('80.12.72.0', '80.12.72.255', 1342982144, 1342982399, 'MG', 'Madagascar'), +('80.12.73.0', '80.12.95.255', 1342982400, 1342988287, 'FR', 'France'), +('80.12.96.0', '80.12.98.255', 1342988288, 1342989055, 'US', 'United States'), +('80.12.99.0', '80.12.192.255', 1342989056, 1343013119, 'FR', 'France'), +('80.12.193.0', '80.12.193.255', 1343013120, 1343013375, 'US', 'United States'), +('80.12.194.0', '80.12.211.255', 1343013376, 1343017983, 'FR', 'France'), +('80.12.212.0', '80.12.213.127', 1343017984, 1343018367, 'RE', 'Reunion'), +('80.12.213.128', '80.12.239.255', 1343018368, 1343025151, 'FR', 'France'), +('80.12.240.0', '80.12.241.255', 1343025152, 1343025663, 'RE', 'Reunion'), +('80.12.242.0', '80.15.223.255', 1343025664, 1343217663, 'FR', 'France'), +('80.15.224.0', '80.15.227.255', 1343217664, 1343218687, 'MU', 'Mauritius'), +('80.15.228.0', '80.15.231.255', 1343218688, 1343219711, 'FR', 'France'), +('80.15.232.0', '80.15.232.255', 1343219712, 1343219967, 'KR', 'Korea, Republic of'), +('80.15.233.0', '80.15.234.255', 1343219968, 1343220479, 'FR', 'France'), +('80.15.235.0', '80.15.235.127', 1343220480, 1343220607, 'DE', 'Germany'), +('80.15.235.128', '80.15.235.255', 1343220608, 1343220735, 'FR', 'France'), +('80.15.236.0', '80.15.236.127', 1343220736, 1343220863, 'GB', 'United Kingdom'), +('80.15.236.128', '80.15.237.31', 1343220864, 1343221023, 'FR', 'France'), +('80.15.237.32', '80.15.237.35', 1343221024, 1343221027, 'DE', 'Germany'), +('80.15.237.36', '80.15.238.255', 1343221028, 1343221503, 'FR', 'France'), +('80.15.239.0', '80.15.239.255', 1343221504, 1343221759, 'GB', 'United Kingdom'), +('80.15.240.0', '80.15.240.63', 1343221760, 1343221823, 'LB', 'Lebanon'), +('80.15.240.64', '80.15.240.95', 1343221824, 1343221855, 'FR', 'France'), +('80.15.240.96', '80.15.241.255', 1343221856, 1343222271, 'LB', 'Lebanon'), +('80.15.242.0', '80.15.242.15', 1343222272, 1343222287, 'CI', 'Cote D''Ivoire'), +('80.15.242.16', '80.15.242.255', 1343222288, 1343222527, 'FR', 'France'), +('80.15.243.0', '80.15.243.47', 1343222528, 1343222575, 'TD', 'Chad'), +('80.15.243.48', '80.15.243.255', 1343222576, 1343222783, 'FR', 'France'), +('80.15.244.0', '80.15.244.127', 1343222784, 1343222911, 'TD', 'Chad'), +('80.15.244.128', '80.15.244.255', 1343222912, 1343223039, 'FR', 'France'), +('80.15.245.0', '80.15.246.138', 1343223040, 1343223434, 'MG', 'Madagascar'), +('80.15.246.139', '80.15.246.143', 1343223435, 1343223439, 'FR', 'France'), +('80.15.246.144', '80.15.246.151', 1343223440, 1343223447, 'MG', 'Madagascar'), +('80.15.246.152', '80.15.246.235', 1343223448, 1343223531, 'FR', 'France'), +('80.15.246.236', '80.15.246.251', 1343223532, 1343223547, 'MG', 'Madagascar'), +('80.15.246.252', '80.15.246.255', 1343223548, 1343223551, 'FR', 'France'), +('80.15.247.0', '80.15.247.255', 1343223552, 1343223807, 'LB', 'Lebanon'), +('80.15.248.0', '80.15.248.175', 1343223808, 1343223983, 'MG', 'Madagascar'), +('80.15.248.176', '80.15.248.255', 1343223984, 1343224063, 'FR', 'France'), +('80.15.249.0', '80.15.249.239', 1343224064, 1343224303, 'US', 'United States'), +('80.15.249.240', '80.15.249.255', 1343224304, 1343224319, 'FR', 'France'), +('80.15.250.0', '80.15.250.215', 1343224320, 1343224535, 'LB', 'Lebanon'), +('80.15.250.216', '80.15.250.223', 1343224536, 1343224543, 'FR', 'France'), +('80.15.250.224', '80.15.250.255', 1343224544, 1343224575, 'LB', 'Lebanon'), +('80.15.251.0', '80.15.251.255', 1343224576, 1343224831, 'FR', 'France'), +('80.15.252.0', '80.15.252.255', 1343224832, 1343225087, 'A2', 'Satellite Provider'), +('80.15.253.0', '80.15.255.255', 1343225088, 1343225855, 'FR', 'France'), +('80.16.0.0', '80.23.255.255', 1343225856, 1343750143, 'IT', 'Italy'), +('80.24.0.0', '80.39.255.255', 1343750144, 1344798719, 'ES', 'Spain'), +('80.40.0.0', '80.47.255.255', 1344798720, 1345323007, 'GB', 'United Kingdom'), +('80.48.0.0', '80.55.255.255', 1345323008, 1345847295, 'PL', 'Poland'), +('80.56.0.0', '80.57.255.255', 1345847296, 1345978367, 'NL', 'Netherlands'), +('80.58.0.0', '80.59.255.255', 1345978368, 1346109439, 'ES', 'Spain'), +('80.60.0.0', '80.61.255.255', 1346109440, 1346240511, 'NL', 'Netherlands'), +('80.62.0.0', '80.63.255.255', 1346240512, 1346371583, 'DK', 'Denmark'), +('80.64.0.0', '80.64.15.255', 1346371584, 1346375679, 'FI', 'Finland'), +('80.64.16.0', '80.64.31.255', 1346375680, 1346379775, 'RU', 'Russian Federation'), +('80.64.32.0', '80.64.47.255', 1346379776, 1346383871, 'ES', 'Spain'), +('80.64.48.0', '80.64.63.255', 1346383872, 1346387967, 'GB', 'United Kingdom'), +('80.64.64.0', '80.64.79.255', 1346387968, 1346392063, 'HU', 'Hungary'), +('80.64.80.0', '80.64.111.255', 1346392064, 1346400255, 'RU', 'Russian Federation'), +('80.64.112.0', '80.64.127.255', 1346400256, 1346404351, 'IT', 'Italy'), +('80.64.128.0', '80.64.129.251', 1346404352, 1346404859, 'AT', 'Austria'), +('80.64.129.252', '80.64.129.255', 1346404860, 1346404863, 'NL', 'Netherlands'), +('80.64.130.0', '80.64.130.55', 1346404864, 1346404919, 'AT', 'Austria'), +('80.64.130.56', '80.64.130.79', 1346404920, 1346404943, 'NL', 'Netherlands'), +('80.64.130.80', '80.64.130.223', 1346404944, 1346405087, 'AT', 'Austria'), +('80.64.130.224', '80.64.130.239', 1346405088, 1346405103, 'NL', 'Netherlands'), +('80.64.130.240', '80.64.131.15', 1346405104, 1346405135, 'AT', 'Austria'), +('80.64.131.16', '80.64.131.79', 1346405136, 1346405199, 'NL', 'Netherlands'), +('80.64.131.80', '80.64.131.135', 1346405200, 1346405255, 'AT', 'Austria'), +('80.64.131.136', '80.64.131.143', 1346405256, 1346405263, 'NL', 'Netherlands'), +('80.64.131.144', '80.64.131.199', 1346405264, 1346405319, 'AT', 'Austria'), +('80.64.131.200', '80.64.131.231', 1346405320, 1346405351, 'NL', 'Netherlands'), +('80.64.131.232', '80.64.133.31', 1346405352, 1346405663, 'AT', 'Austria'), +('80.64.133.32', '80.64.133.63', 1346405664, 1346405695, 'NL', 'Netherlands'), +('80.64.133.64', '80.64.133.127', 1346405696, 1346405759, 'AT', 'Austria'), +('80.64.133.128', '80.64.133.255', 1346405760, 1346405887, 'NL', 'Netherlands'), +('80.64.134.0', '80.64.135.15', 1346405888, 1346406159, 'AT', 'Austria'), +('80.64.135.16', '80.64.135.87', 1346406160, 1346406231, 'NL', 'Netherlands'), +('80.64.135.88', '80.64.135.111', 1346406232, 1346406255, 'AT', 'Austria'), +('80.64.135.112', '80.64.135.114', 1346406256, 1346406258, 'NL', 'Netherlands'), +('80.64.135.115', '80.64.135.115', 1346406259, 1346406259, 'AT', 'Austria'), +('80.64.135.116', '80.64.135.119', 1346406260, 1346406263, 'NL', 'Netherlands'), +('80.64.135.120', '80.64.135.127', 1346406264, 1346406271, 'AT', 'Austria'), +('80.64.135.128', '80.64.135.151', 1346406272, 1346406295, 'NL', 'Netherlands'), +('80.64.135.152', '80.64.135.207', 1346406296, 1346406351, 'AT', 'Austria'), +('80.64.135.208', '80.64.135.215', 1346406352, 1346406359, 'NL', 'Netherlands'), +('80.64.135.216', '80.64.136.95', 1346406360, 1346406495, 'AT', 'Austria'), +('80.64.136.96', '80.64.136.103', 1346406496, 1346406503, 'NL', 'Netherlands'), +('80.64.136.104', '80.64.136.255', 1346406504, 1346406655, 'AT', 'Austria'), +('80.64.137.0', '80.64.137.15', 1346406656, 1346406671, 'NL', 'Netherlands'), +('80.64.137.16', '80.64.138.7', 1346406672, 1346406919, 'AT', 'Austria'), +('80.64.138.8', '80.64.138.15', 1346406920, 1346406927, 'NL', 'Netherlands'), +('80.64.138.16', '80.64.138.39', 1346406928, 1346406951, 'AT', 'Austria'), +('80.64.138.40', '80.64.138.63', 1346406952, 1346406975, 'NL', 'Netherlands'), +('80.64.138.64', '80.64.138.255', 1346406976, 1346407167, 'AT', 'Austria'), +('80.64.139.0', '80.64.139.15', 1346407168, 1346407183, 'NL', 'Netherlands'), +('80.64.139.16', '80.64.139.39', 1346407184, 1346407207, 'AT', 'Austria'), +('80.64.139.40', '80.64.139.127', 1346407208, 1346407295, 'NL', 'Netherlands'), +('80.64.139.128', '80.64.143.255', 1346407296, 1346408447, 'AT', 'Austria'), +('80.64.144.0', '80.64.159.255', 1346408448, 1346412543, 'LU', 'Luxembourg'), +('80.64.160.0', '80.64.175.255', 1346412544, 1346416639, 'RU', 'Russian Federation'), +('80.64.176.0', '80.64.191.255', 1346416640, 1346420735, 'DE', 'Germany'), +('80.64.192.0', '80.64.207.255', 1346420736, 1346424831, 'NO', 'Norway'), +('80.64.208.0', '80.64.223.255', 1346424832, 1346428927, 'JO', 'Jordan'), +('80.64.224.0', '80.64.234.255', 1346428928, 1346431743, 'FR', 'France'), +('80.64.235.0', '80.64.235.255', 1346431744, 1346431999, 'KZ', 'Kazakstan'), +('80.64.236.0', '80.64.239.255', 1346432000, 1346433023, 'FR', 'France'), +('80.64.240.0', '80.65.7.255', 1346433024, 1346439167, 'NL', 'Netherlands'), +('80.65.8.0', '80.65.12.255', 1346439168, 1346440447, 'ES', 'Spain'), +('80.65.13.0', '80.65.13.15', 1346440448, 1346440463, 'NL', 'Netherlands'), +('80.65.13.16', '80.65.13.31', 1346440464, 1346440479, 'ES', 'Spain'), +('80.65.13.32', '80.65.15.255', 1346440480, 1346441215, 'NL', 'Netherlands'), +('80.65.16.0', '80.65.31.255', 1346441216, 1346445311, 'RU', 'Russian Federation'), +('80.65.32.0', '80.65.47.255', 1346445312, 1346449407, 'DE', 'Germany'), +('80.65.48.0', '80.65.63.255', 1346449408, 1346453503, 'NO', 'Norway'), +('80.65.64.0', '80.65.95.255', 1346453504, 1346461695, 'BA', 'Bosnia and Herzegovina'), +('80.65.96.0', '80.65.127.255', 1346461696, 1346469887, 'NL', 'Netherlands'), +('80.65.128.0', '80.65.143.255', 1346469888, 1346473983, 'BE', 'Belgium'), +('80.65.144.0', '80.65.158.255', 1346473984, 1346477823, 'IT', 'Italy'), +('80.65.159.0', '80.65.159.31', 1346477824, 1346477855, 'HU', 'Hungary'), +('80.65.159.32', '80.65.159.255', 1346477856, 1346478079, 'IT', 'Italy'), +('80.65.160.0', '80.65.175.255', 1346478080, 1346482175, 'BA', 'Bosnia and Herzegovina'), +('80.65.176.0', '80.65.191.255', 1346482176, 1346486271, 'CZ', 'Czech Republic'), +('80.65.192.0', '80.65.207.255', 1346486272, 1346490367, 'SE', 'Sweden'), +('80.65.208.0', '80.65.223.255', 1346490368, 1346494463, 'GB', 'United Kingdom'), +('80.65.224.0', '80.65.239.255', 1346494464, 1346498559, 'FR', 'France'), +('80.65.240.0', '80.65.249.255', 1346498560, 1346501119, 'IM', 'Isle of Man'), +('80.65.250.0', '80.65.250.31', 1346501120, 1346501151, 'GB', 'United Kingdom'), +('80.65.250.32', '80.65.250.255', 1346501152, 1346501375, 'IM', 'Isle of Man'), +('80.65.251.0', '80.65.252.95', 1346501376, 1346501727, 'GB', 'United Kingdom'), +('80.65.252.96', '80.65.252.127', 1346501728, 1346501759, 'IM', 'Isle of Man'), +('80.65.252.128', '80.65.252.191', 1346501760, 1346501823, 'GB', 'United Kingdom'), +('80.65.252.192', '80.65.253.31', 1346501824, 1346501919, 'IM', 'Isle of Man'), +('80.65.253.32', '80.65.253.63', 1346501920, 1346501951, 'GB', 'United Kingdom'), +('80.65.253.64', '80.65.253.255', 1346501952, 1346502143, 'IM', 'Isle of Man'), +('80.65.254.0', '80.65.254.115', 1346502144, 1346502259, 'GB', 'United Kingdom'), +('80.65.254.116', '80.65.254.143', 1346502260, 1346502287, 'IM', 'Isle of Man'), +('80.65.254.144', '80.65.254.159', 1346502288, 1346502303, 'GB', 'United Kingdom'), +('80.65.254.160', '80.65.254.255', 1346502304, 1346502399, 'IM', 'Isle of Man'), +('80.65.255.0', '80.65.255.255', 1346502400, 1346502655, 'GB', 'United Kingdom'), +('80.66.0.0', '80.66.31.255', 1346502656, 1346510847, 'DE', 'Germany'), +('80.66.32.0', '80.66.63.255', 1346510848, 1346519039, 'AT', 'Austria'), +('80.66.64.0', '80.66.95.255', 1346519040, 1346527231, 'RU', 'Russian Federation'), +('80.66.96.0', '80.66.111.255', 1346527232, 1346531327, 'DE', 'Germany'), +('80.66.112.0', '80.66.127.255', 1346531328, 1346535423, 'ES', 'Spain'), +('80.66.128.0', '80.66.137.255', 1346535424, 1346537983, 'BE', 'Belgium'), +('80.66.138.0', '80.66.138.4', 1346537984, 1346537988, 'AT', 'Austria'), +('80.66.138.5', '80.66.138.7', 1346537989, 1346537991, 'BE', 'Belgium'), +('80.66.138.8', '80.66.138.15', 1346537992, 1346537999, 'AT', 'Austria'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('80.66.138.16', '80.66.138.23', 1346538000, 1346538007, 'CZ', 'Czech Republic'), +('80.66.138.24', '80.66.138.31', 1346538008, 1346538015, 'BE', 'Belgium'), +('80.66.138.32', '80.66.138.47', 1346538016, 1346538031, 'CH', 'Switzerland'), +('80.66.138.48', '80.66.143.255', 1346538032, 1346539519, 'BE', 'Belgium'), +('80.66.144.0', '80.66.159.255', 1346539520, 1346543615, 'RU', 'Russian Federation'), +('80.66.160.0', '80.66.175.255', 1346543616, 1346547711, 'FI', 'Finland'), +('80.66.176.0', '80.66.191.255', 1346547712, 1346551807, 'IR', 'Iran, Islamic Republic of'), +('80.66.192.0', '80.66.207.255', 1346551808, 1346555903, 'DE', 'Germany'), +('80.66.208.0', '80.66.223.255', 1346555904, 1346559999, 'IT', 'Italy'), +('80.66.224.0', '80.66.235.255', 1346560000, 1346563071, 'LI', 'Liechtenstein'), +('80.66.236.0', '80.66.236.255', 1346563072, 1346563327, 'CH', 'Switzerland'), +('80.66.237.0', '80.66.239.255', 1346563328, 1346564095, 'LI', 'Liechtenstein'), +('80.66.240.0', '80.66.255.255', 1346564096, 1346568191, 'EE', 'Estonia'), +('80.67.0.0', '80.67.15.255', 1346568192, 1346572287, 'SE', 'Sweden'), +('80.67.16.0', '80.67.31.255', 1346572288, 1346576383, 'DE', 'Germany'), +('80.67.32.0', '80.67.47.255', 1346576384, 1346580479, 'DK', 'Denmark'), +('80.67.48.0', '80.67.63.255', 1346580480, 1346584575, 'RU', 'Russian Federation'), +('80.67.64.0', '80.67.77.255', 1346584576, 1346588159, 'US', 'United States'), +('80.67.78.0', '80.67.79.255', 1346588160, 1346588671, 'KR', 'Korea, Republic of'), +('80.67.80.0', '80.67.82.255', 1346588672, 1346589439, 'US', 'United States'), +('80.67.83.0', '80.67.83.255', 1346589440, 1346589695, 'DE', 'Germany'), +('80.67.84.0', '80.67.95.255', 1346589696, 1346592767, 'US', 'United States'), +('80.67.96.0', '80.67.111.255', 1346592768, 1346596863, 'ES', 'Spain'), +('80.67.112.0', '80.67.127.255', 1346596864, 1346600959, 'IT', 'Italy'), +('80.67.128.0', '80.67.143.255', 1346600960, 1346605055, 'DZ', 'Algeria'), +('80.67.144.0', '80.67.159.255', 1346605056, 1346609151, 'CH', 'Switzerland'), +('80.67.160.0', '80.67.191.255', 1346609152, 1346617343, 'FR', 'France'), +('80.67.192.0', '80.67.203.255', 1346617344, 1346620415, 'SE', 'Sweden'), +('80.67.204.0', '80.67.205.255', 1346620416, 1346620927, 'DK', 'Denmark'), +('80.67.206.0', '80.67.207.255', 1346620928, 1346621439, 'SE', 'Sweden'), +('80.67.208.0', '80.67.223.255', 1346621440, 1346625535, 'RU', 'Russian Federation'), +('80.67.224.0', '80.67.239.255', 1346625536, 1346629631, 'DE', 'Germany'), +('80.67.240.0', '80.68.15.255', 1346629632, 1346637823, 'RU', 'Russian Federation'), +('80.68.16.0', '80.68.63.255', 1346637824, 1346650111, 'GB', 'United Kingdom'), +('80.68.64.0', '80.68.79.255', 1346650112, 1346654207, 'IT', 'Italy'), +('80.68.80.0', '80.68.95.255', 1346654208, 1346658303, 'GB', 'United Kingdom'), +('80.68.96.0', '80.68.127.255', 1346658304, 1346666495, 'SE', 'Sweden'), +('80.68.128.0', '80.68.143.255', 1346666496, 1346670591, 'ES', 'Spain'), +('80.68.144.0', '80.68.159.255', 1346670592, 1346674687, 'IT', 'Italy'), +('80.68.160.0', '80.68.175.255', 1346674688, 1346678783, 'DE', 'Germany'), +('80.68.176.0', '80.68.207.255', 1346678784, 1346686975, 'IT', 'Italy'), +('80.68.208.0', '80.68.223.255', 1346686976, 1346691071, 'GB', 'United Kingdom'), +('80.68.224.0', '80.68.239.255', 1346691072, 1346695167, 'PL', 'Poland'), +('80.68.240.0', '80.68.255.255', 1346695168, 1346699263, 'RU', 'Russian Federation'), +('80.69.0.0', '80.69.5.31', 1346699264, 1346700575, 'GB', 'United Kingdom'), +('80.69.5.32', '80.69.5.47', 1346700576, 1346700591, 'VG', 'Virgin Islands, British'), +('80.69.5.48', '80.69.5.64', 1346700592, 1346700608, 'GB', 'United Kingdom'), +('80.69.5.65', '80.69.5.79', 1346700609, 1346700623, 'US', 'United States'), +('80.69.5.80', '80.69.5.127', 1346700624, 1346700671, 'GB', 'United Kingdom'), +('80.69.5.128', '80.69.5.191', 1346700672, 1346700735, 'US', 'United States'), +('80.69.5.192', '80.69.6.47', 1346700736, 1346700847, 'GB', 'United Kingdom'), +('80.69.6.48', '80.69.6.55', 1346700848, 1346700855, 'US', 'United States'), +('80.69.6.56', '80.69.7.128', 1346700856, 1346701184, 'GB', 'United Kingdom'), +('80.69.7.129', '80.69.7.159', 1346701185, 1346701215, 'GR', 'Greece'), +('80.69.7.160', '80.69.17.255', 1346701216, 1346703871, 'GB', 'United Kingdom'), +('80.69.18.0', '80.69.18.255', 1346703872, 1346704127, 'LI', 'Liechtenstein'), +('80.69.19.0', '80.69.19.255', 1346704128, 1346704383, 'GB', 'United Kingdom'), +('80.69.20.0', '80.69.20.63', 1346704384, 1346704447, 'US', 'United States'), +('80.69.20.64', '80.69.20.95', 1346704448, 1346704479, 'GB', 'United Kingdom'), +('80.69.20.96', '80.69.20.127', 1346704480, 1346704511, 'US', 'United States'), +('80.69.20.128', '80.69.20.255', 1346704512, 1346704639, 'GB', 'United Kingdom'), +('80.69.21.0', '80.69.21.127', 1346704640, 1346704767, 'LI', 'Liechtenstein'), +('80.69.21.128', '80.69.31.255', 1346704768, 1346707455, 'GB', 'United Kingdom'), +('80.69.32.0', '80.69.47.255', 1346707456, 1346711551, 'DE', 'Germany'), +('80.69.48.0', '80.69.63.255', 1346711552, 1346715647, 'AZ', 'Azerbaijan'), +('80.69.64.0', '80.69.95.255', 1346715648, 1346723839, 'NL', 'Netherlands'), +('80.69.96.0', '80.69.127.255', 1346723840, 1346732031, 'DE', 'Germany'), +('80.69.128.0', '80.69.143.255', 1346732032, 1346736127, 'GB', 'United Kingdom'), +('80.69.144.0', '80.69.159.255', 1346736128, 1346740223, 'RU', 'Russian Federation'), +('80.69.176.0', '80.69.191.255', 1346744320, 1346748415, 'RU', 'Russian Federation'), +('80.69.192.0', '80.69.207.255', 1346748416, 1346752511, 'DE', 'Germany'), +('80.69.208.0', '80.69.223.255', 1346752512, 1346756607, 'FR', 'France'), +('80.69.224.0', '80.69.239.255', 1346756608, 1346760703, 'SE', 'Sweden'), +('80.69.240.0', '80.69.255.255', 1346760704, 1346764799, 'IR', 'Iran, Islamic Republic of'), +('80.70.0.0', '80.70.15.255', 1346764800, 1346768895, 'RU', 'Russian Federation'), +('80.70.16.0', '80.70.31.255', 1346768896, 1346772991, 'LV', 'Latvia'), +('80.70.32.0', '80.70.40.31', 1346772992, 1346775071, 'FR', 'France'), +('80.70.40.32', '80.70.40.63', 1346775072, 1346775103, 'DE', 'Germany'), +('80.70.40.64', '80.70.47.255', 1346775104, 1346777087, 'FR', 'France'), +('80.70.48.0', '80.70.63.255', 1346777088, 1346781183, 'GB', 'United Kingdom'), +('80.70.64.0', '80.70.95.255', 1346781184, 1346789375, 'UA', 'Ukraine'), +('80.70.96.0', '80.70.111.255', 1346789376, 1346793471, 'RU', 'Russian Federation'), +('80.70.112.0', '80.70.127.255', 1346793472, 1346797567, 'IT', 'Italy'), +('80.70.128.0', '80.70.143.255', 1346797568, 1346801663, 'IL', 'Israel'), +('80.70.144.0', '80.70.159.255', 1346801664, 1346805759, 'SE', 'Sweden'), +('80.70.160.0', '80.70.161.63', 1346805760, 1346806079, 'DE', 'Germany'), +('80.70.161.64', '80.70.161.95', 1346806080, 1346806111, 'GB', 'United Kingdom'), +('80.70.161.96', '80.70.161.151', 1346806112, 1346806167, 'DE', 'Germany'), +('80.70.161.152', '80.70.161.191', 1346806168, 1346806207, 'SE', 'Sweden'), +('80.70.161.192', '80.70.191.255', 1346806208, 1346813951, 'DE', 'Germany'), +('80.70.208.0', '80.70.223.255', 1346818048, 1346822143, 'FR', 'France'), +('80.70.224.0', '80.70.239.255', 1346822144, 1346826239, 'RU', 'Russian Federation'), +('80.70.240.0', '80.70.255.255', 1346826240, 1346830335, 'RS', 'Serbia'), +('80.71.0.0', '80.71.31.255', 1346830336, 1346838527, 'GB', 'United Kingdom'), +('80.71.32.0', '80.71.47.255', 1346838528, 1346842623, 'RU', 'Russian Federation'), +('80.71.48.0', '80.71.63.255', 1346842624, 1346846719, 'MT', 'Malta'), +('80.71.64.0', '80.71.95.255', 1346846720, 1346854911, 'DK', 'Denmark'), +('80.71.96.0', '80.71.111.255', 1346854912, 1346859007, 'MT', 'Malta'), +('80.71.112.0', '80.71.127.255', 1346859008, 1346863103, 'IR', 'Iran, Islamic Republic of'), +('80.71.128.0', '80.71.143.255', 1346863104, 1346867199, 'TR', 'Turkey'), +('80.71.144.0', '80.71.159.255', 1346867200, 1346871295, 'BA', 'Bosnia and Herzegovina'), +('80.71.160.0', '80.71.191.255', 1346871296, 1346879487, 'RU', 'Russian Federation'), +('80.71.192.0', '80.71.207.255', 1346879488, 1346883583, 'FI', 'Finland'), +('80.71.208.0', '80.71.223.255', 1346883584, 1346887679, 'RU', 'Russian Federation'), +('80.71.224.0', '80.71.239.255', 1346887680, 1346891775, 'IT', 'Italy'), +('80.71.240.0', '80.71.255.255', 1346891776, 1346895871, 'RU', 'Russian Federation'), +('80.72.0.0', '80.72.15.255', 1346895872, 1346899967, 'SE', 'Sweden'), +('80.72.16.0', '80.72.31.255', 1346899968, 1346904063, 'RU', 'Russian Federation'), +('80.72.32.0', '80.72.47.255', 1346904064, 1346908159, 'PL', 'Poland'), +('80.72.48.0', '80.72.63.255', 1346908160, 1346912255, 'LI', 'Liechtenstein'), +('80.72.64.0', '80.72.95.255', 1346912256, 1346920447, 'BG', 'Bulgaria'), +('80.72.96.0', '80.72.111.255', 1346920448, 1346924543, 'EU', 'Europe'), +('80.72.112.0', '80.72.127.255', 1346924544, 1346928639, 'RU', 'Russian Federation'), +('80.72.128.0', '80.72.143.255', 1346928640, 1346932735, 'DE', 'Germany'), +('80.72.144.0', '80.72.159.255', 1346932736, 1346936831, 'DK', 'Denmark'), +('80.72.160.0', '80.72.175.255', 1346936832, 1346940927, 'IT', 'Italy'), +('80.72.176.0', '80.72.191.255', 1346940928, 1346945023, 'DE', 'Germany'), +('80.72.192.0', '80.72.207.255', 1346945024, 1346949119, 'PL', 'Poland'), +('80.72.208.0', '80.72.239.255', 1346949120, 1346957311, 'RU', 'Russian Federation'), +('80.72.240.0', '80.72.255.255', 1346957312, 1346961407, 'DE', 'Germany'), +('80.73.0.0', '80.73.15.255', 1346961408, 1346965503, 'UA', 'Ukraine'), +('80.73.16.0', '80.73.31.255', 1346965504, 1346969599, 'RU', 'Russian Federation'), +('80.73.32.0', '80.73.47.255', 1346969600, 1346973695, 'DE', 'Germany'), +('80.73.48.0', '80.73.63.255', 1346973696, 1346977791, 'SE', 'Sweden'), +('80.73.64.0', '80.73.95.255', 1346977792, 1346985983, 'RU', 'Russian Federation'), +('80.73.96.0', '80.73.99.223', 1346985984, 1346986975, 'DE', 'Germany'), +('80.73.99.224', '80.73.99.255', 1346986976, 1346987007, 'ES', 'Spain'), +('80.73.100.0', '80.73.116.127', 1346987008, 1346991231, 'DE', 'Germany'), +('80.73.116.128', '80.73.116.143', 1346991232, 1346991247, 'CH', 'Switzerland'), +('80.73.116.144', '80.73.127.255', 1346991248, 1346994175, 'DE', 'Germany'), +('80.73.128.0', '80.73.143.255', 1346994176, 1346998271, 'NL', 'Netherlands'), +('80.73.144.0', '80.73.159.255', 1346998272, 1347002367, 'ES', 'Spain'), +('80.73.160.0', '80.73.175.255', 1347002368, 1347006463, 'RU', 'Russian Federation'), +('80.73.176.0', '80.73.191.255', 1347006464, 1347010559, 'SE', 'Sweden'), +('80.73.192.0', '80.73.207.255', 1347010560, 1347014655, 'RU', 'Russian Federation'), +('80.73.208.0', '80.73.223.255', 1347014656, 1347018751, 'GG', 'Guernsey'), +('80.73.224.0', '80.73.239.255', 1347018752, 1347022847, 'IT', 'Italy'), +('80.73.240.0', '80.73.248.15', 1347022848, 1347024911, 'AT', 'Austria'), +('80.73.248.16', '80.73.248.31', 1347024912, 1347024927, 'GB', 'United Kingdom'), +('80.73.248.32', '80.73.248.63', 1347024928, 1347024959, 'AT', 'Austria'), +('80.73.248.64', '80.73.248.175', 1347024960, 1347025071, 'GB', 'United Kingdom'), +('80.73.248.176', '80.73.248.183', 1347025072, 1347025079, 'FR', 'France'), +('80.73.248.184', '80.73.248.191', 1347025080, 1347025087, 'GB', 'United Kingdom'), +('80.73.248.192', '80.73.248.207', 1347025088, 1347025103, 'AT', 'Austria'), +('80.73.248.208', '80.73.248.215', 1347025104, 1347025111, 'FR', 'France'), +('80.73.248.216', '80.73.248.223', 1347025112, 1347025119, 'GB', 'United Kingdom'), +('80.73.248.224', '80.73.248.255', 1347025120, 1347025151, 'AT', 'Austria'), +('80.73.249.0', '80.73.249.63', 1347025152, 1347025215, 'US', 'United States'), +('80.73.249.64', '80.73.249.127', 1347025216, 1347025279, 'GB', 'United Kingdom'), +('80.73.249.128', '80.73.249.191', 1347025280, 1347025343, 'ES', 'Spain'), +('80.73.249.192', '80.73.249.255', 1347025344, 1347025407, 'DE', 'Germany'), +('80.73.250.0', '80.73.255.255', 1347025408, 1347026943, 'AT', 'Austria'), +('80.74.0.0', '80.74.31.255', 1347026944, 1347035135, 'GB', 'United Kingdom'), +('80.74.32.0', '80.74.47.255', 1347035136, 1347039231, 'CZ', 'Czech Republic'), +('80.74.48.0', '80.74.63.255', 1347039232, 1347043327, 'RO', 'Romania'), +('80.74.64.0', '80.74.79.255', 1347043328, 1347047423, 'FR', 'France'), +('80.74.80.0', '80.74.95.255', 1347047424, 1347051519, 'SA', 'Saudi Arabia'), +('80.74.96.0', '80.74.127.255', 1347051520, 1347059711, 'IL', 'Israel'), +('80.74.128.0', '80.74.159.255', 1347059712, 1347067903, 'CH', 'Switzerland'), +('80.74.160.0', '80.74.175.255', 1347067904, 1347071999, 'RS', 'Serbia'), +('80.74.176.0', '80.74.191.255', 1347072000, 1347076095, 'IT', 'Italy'), +('80.74.192.0', '80.74.223.255', 1347076096, 1347084287, 'FI', 'Finland'), +('80.74.224.0', '80.74.255.255', 1347084288, 1347092479, 'GB', 'United Kingdom'), +('80.75.0.0', '80.75.15.255', 1347092480, 1347096575, 'IR', 'Iran, Islamic Republic of'), +('80.75.16.0', '80.75.31.255', 1347096576, 1347100671, 'SE', 'Sweden'), +('80.75.32.0', '80.75.63.255', 1347100672, 1347108863, 'AT', 'Austria'), +('80.75.64.0', '80.75.79.255', 1347108864, 1347112959, 'GB', 'United Kingdom'), +('80.75.80.0', '80.75.95.255', 1347112960, 1347117055, 'RU', 'Russian Federation'), +('80.75.96.0', '80.75.111.255', 1347117056, 1347121151, 'FI', 'Finland'), +('80.75.112.0', '80.75.127.255', 1347121152, 1347125247, 'CH', 'Switzerland'), +('80.75.128.0', '80.75.143.255', 1347125248, 1347129343, 'RU', 'Russian Federation'), +('80.75.144.0', '80.75.159.255', 1347129344, 1347133439, 'GB', 'United Kingdom'), +('80.75.160.0', '80.75.191.255', 1347133440, 1347141631, 'EG', 'Egypt'), +('80.75.192.0', '80.75.207.255', 1347141632, 1347145727, 'CH', 'Switzerland'), +('80.75.208.0', '80.75.209.255', 1347145728, 1347146239, 'GB', 'United Kingdom'), +('80.75.210.0', '80.75.211.255', 1347146240, 1347146751, 'FR', 'France'), +('80.75.212.0', '80.75.223.255', 1347146752, 1347149823, 'GB', 'United Kingdom'), +('80.75.224.0', '80.75.239.255', 1347149824, 1347153919, 'HU', 'Hungary'), +('80.75.240.0', '80.75.255.255', 1347153920, 1347158015, 'AT', 'Austria'), +('80.76.0.0', '80.76.15.255', 1347158016, 1347162111, 'CH', 'Switzerland'), +('80.76.16.0', '80.76.31.255', 1347162112, 1347166207, 'IT', 'Italy'), +('80.76.32.0', '80.76.63.255', 1347166208, 1347174399, 'GR', 'Greece'), +('80.76.64.0', '80.76.111.255', 1347174400, 1347186687, 'IT', 'Italy'), +('80.76.112.0', '80.76.127.255', 1347186688, 1347190783, 'GB', 'United Kingdom'), +('80.76.128.0', '80.76.143.255', 1347190784, 1347194879, 'RU', 'Russian Federation'), +('80.76.144.0', '80.76.159.255', 1347194880, 1347198975, 'SE', 'Sweden'), +('80.76.160.0', '80.76.175.255', 1347198976, 1347203071, 'QA', 'Qatar'), +('80.76.176.0', '80.76.191.255', 1347203072, 1347207167, 'RU', 'Russian Federation'), +('80.76.192.0', '80.76.205.239', 1347207168, 1347210735, 'GB', 'United Kingdom'), +('80.76.205.240', '80.76.205.247', 1347210736, 1347210743, 'IE', 'Ireland'), +('80.76.205.248', '80.76.206.159', 1347210744, 1347210911, 'GB', 'United Kingdom'), +('80.76.206.160', '80.76.206.167', 1347210912, 1347210919, 'IE', 'Ireland'), +('80.76.206.168', '80.76.206.175', 1347210920, 1347210927, 'GB', 'United Kingdom'), +('80.76.206.176', '80.76.206.183', 1347210928, 1347210935, 'IE', 'Ireland'), +('80.76.206.184', '80.76.207.103', 1347210936, 1347211111, 'GB', 'United Kingdom'), +('80.76.207.104', '80.76.207.111', 1347211112, 1347211119, 'IE', 'Ireland'), +('80.76.207.112', '80.76.223.255', 1347211120, 1347215359, 'GB', 'United Kingdom'), +('80.76.224.0', '80.76.239.255', 1347215360, 1347219455, 'RU', 'Russian Federation'), +('80.76.240.0', '80.76.255.255', 1347219456, 1347223551, 'KW', 'Kuwait'), +('80.77.0.0', '80.77.0.255', 1347223552, 1347223807, 'EG', 'Egypt'), +('80.77.1.0', '80.77.1.255', 1347223808, 1347224063, 'HK', 'Hong Kong'), +('80.77.2.0', '80.77.2.119', 1347224064, 1347224183, 'US', 'United States'), +('80.77.2.120', '80.77.3.255', 1347224184, 1347224575, 'EG', 'Egypt'), +('80.77.4.0', '80.77.4.255', 1347224576, 1347224831, 'US', 'United States'), +('80.77.5.0', '80.77.7.255', 1347224832, 1347225599, 'EG', 'Egypt'), +('80.77.8.0', '80.77.11.255', 1347225600, 1347226623, 'PK', 'Pakistan'), +('80.77.12.0', '80.77.13.255', 1347226624, 1347227135, 'EG', 'Egypt'), +('80.77.14.0', '80.77.14.255', 1347227136, 1347227391, 'HK', 'Hong Kong'), +('80.77.15.0', '80.77.15.255', 1347227392, 1347227647, 'EG', 'Egypt'), +('80.77.16.0', '80.77.22.127', 1347227648, 1347229311, 'DE', 'Germany'), +('80.77.22.128', '80.77.22.159', 1347229312, 1347229343, 'AT', 'Austria'), +('80.77.22.160', '80.77.24.31', 1347229344, 1347229727, 'DE', 'Germany'), +('80.77.24.32', '80.77.24.47', 1347229728, 1347229743, 'AT', 'Austria'), +('80.77.24.48', '80.77.29.95', 1347229744, 1347231071, 'DE', 'Germany'), +('80.77.29.96', '80.77.29.111', 1347231072, 1347231087, 'AT', 'Austria'), +('80.77.29.112', '80.77.29.119', 1347231088, 1347231095, 'GR', 'Greece'), +('80.77.29.120', '80.77.31.255', 1347231096, 1347231743, 'DE', 'Germany'), +('80.77.32.0', '80.77.47.255', 1347231744, 1347235839, 'UA', 'Ukraine'), +('80.77.48.0', '80.77.63.255', 1347235840, 1347239935, 'GE', 'Georgia'), +('80.77.64.0', '80.77.79.255', 1347239936, 1347244031, 'DK', 'Denmark'), +('80.77.80.0', '80.77.92.255', 1347244032, 1347247359, 'GB', 'United Kingdom'), +('80.77.93.0', '80.77.94.255', 1347247360, 1347247871, 'RU', 'Russian Federation'), +('80.77.95.0', '80.77.95.0', 1347247872, 1347247872, 'GB', 'United Kingdom'), +('80.77.95.1', '80.77.95.255', 1347247873, 1347248127, 'US', 'United States'), +('80.77.96.0', '80.77.98.223', 1347248128, 1347248863, 'SE', 'Sweden'), +('80.77.98.224', '80.77.98.224', 1347248864, 1347248864, 'FI', 'Finland'), +('80.77.98.225', '80.77.100.191', 1347248865, 1347249343, 'SE', 'Sweden'), +('80.77.100.192', '80.77.100.223', 1347249344, 1347249375, 'FI', 'Finland'), +('80.77.100.224', '80.77.101.223', 1347249376, 1347249631, 'SE', 'Sweden'), +('80.77.101.224', '80.77.101.231', 1347249632, 1347249639, 'RU', 'Russian Federation'), +('80.77.101.232', '80.77.105.255', 1347249640, 1347250687, 'SE', 'Sweden'), +('80.77.106.0', '80.77.106.3', 1347250688, 1347250691, 'NO', 'Norway'), +('80.77.106.4', '80.77.106.7', 1347250692, 1347250695, 'SE', 'Sweden'), +('80.77.106.8', '80.77.106.47', 1347250696, 1347250735, 'NO', 'Norway'), +('80.77.106.48', '80.77.106.79', 1347250736, 1347250767, 'SE', 'Sweden'), +('80.77.106.80', '80.77.106.95', 1347250768, 1347250783, 'FI', 'Finland'), +('80.77.106.96', '80.77.111.255', 1347250784, 1347252223, 'SE', 'Sweden'), +('80.77.112.0', '80.77.127.255', 1347252224, 1347256319, 'HU', 'Hungary'), +('80.77.128.0', '80.77.143.255', 1347256320, 1347260415, 'FO', 'Faroe Islands'), +('80.77.144.0', '80.77.159.255', 1347260416, 1347264511, 'MK', 'Macedonia'), +('80.77.160.0', '80.77.175.255', 1347264512, 1347268607, 'RU', 'Russian Federation'), +('80.77.176.0', '80.77.188.255', 1347268608, 1347271935, 'LB', 'Lebanon'), +('80.77.189.0', '80.77.190.255', 1347271936, 1347272447, 'IQ', 'Iraq'), +('80.77.191.0', '80.77.191.255', 1347272448, 1347272703, 'LB', 'Lebanon'), +('80.77.192.0', '80.77.207.255', 1347272704, 1347276799, 'MT', 'Malta'), +('80.77.208.0', '80.77.215.239', 1347276800, 1347278831, 'DE', 'Germany'), +('80.77.215.240', '80.77.215.255', 1347278832, 1347278847, 'BR', 'Brazil'), +('80.77.216.0', '80.77.223.255', 1347278848, 1347280895, 'DE', 'Germany'), +('80.77.224.0', '80.77.239.255', 1347280896, 1347284991, 'FR', 'France'), +('80.77.240.0', '80.77.244.255', 1347284992, 1347286271, 'GB', 'United Kingdom'), +('80.77.245.0', '80.77.245.63', 1347286272, 1347286335, 'BN', 'Brunei Darussalam'), +('80.77.245.64', '80.77.245.255', 1347286336, 1347286527, 'GB', 'United Kingdom'), +('80.77.246.0', '80.77.246.7', 1347286528, 1347286535, 'BG', 'Bulgaria'), +('80.77.246.8', '80.77.255.255', 1347286536, 1347289087, 'GB', 'United Kingdom'), +('80.78.0.0', '80.78.15.255', 1347289088, 1347293183, 'FR', 'France'), +('80.78.16.0', '80.78.16.127', 1347293184, 1347293311, 'SE', 'Sweden'), +('80.78.16.128', '80.78.16.135', 1347293312, 1347293319, 'LR', 'Liberia'), +('80.78.16.136', '80.78.16.143', 1347293320, 1347293327, 'GA', 'Gabon'), +('80.78.16.144', '80.78.16.151', 1347293328, 1347293335, 'NG', 'Nigeria'), +('80.78.16.152', '80.78.16.155', 1347293336, 1347293339, 'A2', 'Satellite Provider'), +('80.78.16.156', '80.78.16.159', 1347293340, 1347293343, 'SO', 'Somalia'), +('80.78.16.160', '80.78.16.167', 1347293344, 1347293351, 'A2', 'Satellite Provider'), +('80.78.16.168', '80.78.16.207', 1347293352, 1347293391, 'NG', 'Nigeria'), +('80.78.16.208', '80.78.16.215', 1347293392, 1347293399, 'CY', 'Cyprus'), +('80.78.16.216', '80.78.16.223', 1347293400, 1347293407, 'IQ', 'Iraq'), +('80.78.16.224', '80.78.16.231', 1347293408, 1347293415, 'NG', 'Nigeria'), +('80.78.16.232', '80.78.16.239', 1347293416, 1347293423, 'A2', 'Satellite Provider'), +('80.78.16.240', '80.78.16.247', 1347293424, 1347293431, 'GN', 'Guinea'), +('80.78.16.248', '80.78.16.255', 1347293432, 1347293439, 'NG', 'Nigeria'), +('80.78.17.0', '80.78.17.7', 1347293440, 1347293447, 'A2', 'Satellite Provider'), +('80.78.17.8', '80.78.17.15', 1347293448, 1347293455, 'GB', 'United Kingdom'), +('80.78.17.16', '80.78.17.23', 1347293456, 1347293463, 'NG', 'Nigeria'), +('80.78.17.24', '80.78.17.31', 1347293464, 1347293471, 'A2', 'Satellite Provider'), +('80.78.17.32', '80.78.17.39', 1347293472, 1347293479, 'IQ', 'Iraq'), +('80.78.17.40', '80.78.17.47', 1347293480, 1347293487, 'LR', 'Liberia'), +('80.78.17.48', '80.78.17.55', 1347293488, 1347293495, 'TD', 'Chad'), +('80.78.17.56', '80.78.17.63', 1347293496, 1347293503, 'GH', 'Ghana'), +('80.78.17.64', '80.78.17.71', 1347293504, 1347293511, 'US', 'United States'), +('80.78.17.72', '80.78.17.79', 1347293512, 1347293519, 'GN', 'Guinea'), +('80.78.17.80', '80.78.17.87', 1347293520, 1347293527, 'PS', 'Palestinian Territory, Occupied'), +('80.78.17.88', '80.78.17.95', 1347293528, 1347293535, 'NG', 'Nigeria'), +('80.78.17.96', '80.78.17.103', 1347293536, 1347293543, 'GH', 'Ghana'), +('80.78.17.104', '80.78.17.111', 1347293544, 1347293551, 'US', 'United States'), +('80.78.17.112', '80.78.17.119', 1347293552, 1347293559, 'A2', 'Satellite Provider'), +('80.78.17.120', '80.78.17.127', 1347293560, 1347293567, 'GN', 'Guinea'), +('80.78.17.128', '80.78.17.135', 1347293568, 1347293575, 'GH', 'Ghana'), +('80.78.17.136', '80.78.17.143', 1347293576, 1347293583, 'IQ', 'Iraq'), +('80.78.17.144', '80.78.17.151', 1347293584, 1347293591, 'AF', 'Afghanistan'), +('80.78.17.152', '80.78.17.159', 1347293592, 1347293599, 'A2', 'Satellite Provider'), +('80.78.17.160', '80.78.17.167', 1347293600, 1347293607, 'NG', 'Nigeria'), +('80.78.17.168', '80.78.17.175', 1347293608, 1347293615, 'A2', 'Satellite Provider'), +('80.78.17.176', '80.78.17.183', 1347293616, 1347293623, 'US', 'United States'), +('80.78.17.184', '80.78.17.191', 1347293624, 1347293631, 'PK', 'Pakistan'), +('80.78.17.192', '80.78.17.199', 1347293632, 1347293639, 'US', 'United States'), +('80.78.17.200', '80.78.17.207', 1347293640, 1347293647, 'IQ', 'Iraq'), +('80.78.17.208', '80.78.17.215', 1347293648, 1347293655, 'US', 'United States'), +('80.78.17.216', '80.78.17.235', 1347293656, 1347293675, 'GN', 'Guinea'), +('80.78.17.236', '80.78.17.239', 1347293676, 1347293679, 'BH', 'Bahrain'), +('80.78.17.240', '80.78.17.247', 1347293680, 1347293687, 'GN', 'Guinea'), +('80.78.17.248', '80.78.18.27', 1347293688, 1347293723, 'NG', 'Nigeria'), +('80.78.18.28', '80.78.18.31', 1347293724, 1347293727, 'IQ', 'Iraq'), +('80.78.18.32', '80.78.18.39', 1347293728, 1347293735, 'A2', 'Satellite Provider'), +('80.78.18.40', '80.78.18.63', 1347293736, 1347293759, 'GN', 'Guinea'), +('80.78.18.64', '80.78.18.71', 1347293760, 1347293767, 'NG', 'Nigeria'), +('80.78.18.72', '80.78.18.79', 1347293768, 1347293775, 'CM', 'Cameroon'), +('80.78.18.80', '80.78.18.103', 1347293776, 1347293799, 'NG', 'Nigeria'), +('80.78.18.104', '80.78.18.111', 1347293800, 1347293807, 'IQ', 'Iraq'), +('80.78.18.112', '80.78.18.119', 1347293808, 1347293815, 'NG', 'Nigeria'), +('80.78.18.120', '80.78.18.127', 1347293816, 1347293823, 'SO', 'Somalia'), +('80.78.18.128', '80.78.18.135', 1347293824, 1347293831, 'CM', 'Cameroon'), +('80.78.18.136', '80.78.18.143', 1347293832, 1347293839, 'NG', 'Nigeria'), +('80.78.18.144', '80.78.18.151', 1347293840, 1347293847, 'CA', 'Canada'), +('80.78.18.152', '80.78.18.159', 1347293848, 1347293855, 'BH', 'Bahrain'), +('80.78.18.160', '80.78.18.167', 1347293856, 1347293863, 'GN', 'Guinea'), +('80.78.18.168', '80.78.18.175', 1347293864, 1347293871, 'GB', 'United Kingdom'), +('80.78.18.176', '80.78.18.183', 1347293872, 1347293879, 'A2', 'Satellite Provider'), +('80.78.18.184', '80.78.18.191', 1347293880, 1347293887, 'NG', 'Nigeria'), +('80.78.18.192', '80.78.18.207', 1347293888, 1347293903, 'GQ', 'Equatorial Guinea'), +('80.78.18.208', '80.78.18.215', 1347293904, 1347293911, 'NG', 'Nigeria'), +('80.78.18.216', '80.78.18.223', 1347293912, 1347293919, 'GA', 'Gabon'), +('80.78.18.224', '80.78.18.231', 1347293920, 1347293927, 'GB', 'United Kingdom'), +('80.78.18.232', '80.78.18.239', 1347293928, 1347293935, 'US', 'United States'), +('80.78.18.240', '80.78.18.247', 1347293936, 1347293943, 'NG', 'Nigeria'), +('80.78.18.248', '80.78.18.255', 1347293944, 1347293951, 'A2', 'Satellite Provider'), +('80.78.19.0', '80.78.19.7', 1347293952, 1347293959, 'NG', 'Nigeria'), +('80.78.19.8', '80.78.19.15', 1347293960, 1347293967, 'GN', 'Guinea'), +('80.78.19.16', '80.78.19.23', 1347293968, 1347293975, 'NG', 'Nigeria'), +('80.78.19.24', '80.78.19.31', 1347293976, 1347293983, 'GN', 'Guinea'), +('80.78.19.32', '80.78.19.39', 1347293984, 1347293991, 'US', 'United States'), +('80.78.19.40', '80.78.19.47', 1347293992, 1347293999, 'NG', 'Nigeria'), +('80.78.19.48', '80.78.19.55', 1347294000, 1347294007, 'US', 'United States'), +('80.78.19.56', '80.78.19.63', 1347294008, 1347294015, 'A2', 'Satellite Provider'), +('80.78.19.64', '80.78.19.71', 1347294016, 1347294023, 'US', 'United States'), +('80.78.19.72', '80.78.19.87', 1347294024, 1347294039, 'GN', 'Guinea'), +('80.78.19.88', '80.78.19.95', 1347294040, 1347294047, 'GB', 'United Kingdom'), +('80.78.19.96', '80.78.19.103', 1347294048, 1347294055, 'TH', 'Thailand'), +('80.78.19.104', '80.78.19.111', 1347294056, 1347294063, 'NG', 'Nigeria'), +('80.78.19.112', '80.78.19.119', 1347294064, 1347294071, 'GH', 'Ghana'), +('80.78.19.120', '80.78.19.127', 1347294072, 1347294079, 'NG', 'Nigeria'), +('80.78.19.128', '80.78.19.135', 1347294080, 1347294087, 'A2', 'Satellite Provider'), +('80.78.19.136', '80.78.19.143', 1347294088, 1347294095, 'US', 'United States'), +('80.78.19.144', '80.78.19.159', 1347294096, 1347294111, 'CM', 'Cameroon'), +('80.78.19.160', '80.78.19.167', 1347294112, 1347294119, 'GN', 'Guinea'), +('80.78.19.168', '80.78.19.175', 1347294120, 1347294127, 'A2', 'Satellite Provider'), +('80.78.19.176', '80.78.19.183', 1347294128, 1347294135, 'NG', 'Nigeria'), +('80.78.19.184', '80.78.19.191', 1347294136, 1347294143, 'LR', 'Liberia'), +('80.78.19.192', '80.78.19.199', 1347294144, 1347294151, 'NG', 'Nigeria'), +('80.78.19.200', '80.78.19.207', 1347294152, 1347294159, 'GB', 'United Kingdom'), +('80.78.19.208', '80.78.19.215', 1347294160, 1347294167, 'CM', 'Cameroon'), +('80.78.19.216', '80.78.19.223', 1347294168, 1347294175, 'GB', 'United Kingdom'), +('80.78.19.224', '80.78.19.231', 1347294176, 1347294183, 'NG', 'Nigeria'), +('80.78.19.232', '80.78.19.239', 1347294184, 1347294191, 'A2', 'Satellite Provider'), +('80.78.19.240', '80.78.19.247', 1347294192, 1347294199, 'GB', 'United Kingdom'), +('80.78.19.248', '80.78.19.255', 1347294200, 1347294207, 'NG', 'Nigeria'), +('80.78.20.0', '80.78.20.7', 1347294208, 1347294215, 'A2', 'Satellite Provider'), +('80.78.20.8', '80.78.20.15', 1347294216, 1347294223, 'IQ', 'Iraq'), +('80.78.20.16', '80.78.20.23', 1347294224, 1347294231, 'A2', 'Satellite Provider'), +('80.78.20.24', '80.78.20.31', 1347294232, 1347294239, 'US', 'United States'), +('80.78.20.32', '80.78.20.63', 1347294240, 1347294271, 'A2', 'Satellite Provider'), +('80.78.20.64', '80.78.20.71', 1347294272, 1347294279, 'BH', 'Bahrain'), +('80.78.20.72', '80.78.20.79', 1347294280, 1347294287, 'BD', 'Bangladesh'), +('80.78.20.80', '80.78.20.95', 1347294288, 1347294303, 'UG', 'Uganda'), +('80.78.20.96', '80.78.20.103', 1347294304, 1347294311, 'US', 'United States'), +('80.78.20.104', '80.78.20.111', 1347294312, 1347294319, 'A2', 'Satellite Provider'), +('80.78.20.112', '80.78.20.119', 1347294320, 1347294327, 'NG', 'Nigeria'), +('80.78.20.120', '80.78.20.135', 1347294328, 1347294343, 'A2', 'Satellite Provider'), +('80.78.20.136', '80.78.20.143', 1347294344, 1347294351, 'CM', 'Cameroon'), +('80.78.20.144', '80.78.20.159', 1347294352, 1347294367, 'LR', 'Liberia'), +('80.78.20.160', '80.78.20.167', 1347294368, 1347294375, 'NG', 'Nigeria'), +('80.78.20.168', '80.78.20.175', 1347294376, 1347294383, 'A2', 'Satellite Provider'), +('80.78.20.176', '80.78.20.191', 1347294384, 1347294399, 'NG', 'Nigeria'), +('80.78.20.192', '80.78.20.199', 1347294400, 1347294407, 'A2', 'Satellite Provider'), +('80.78.20.200', '80.78.20.207', 1347294408, 1347294415, 'GN', 'Guinea'), +('80.78.20.208', '80.78.20.215', 1347294416, 1347294423, 'A2', 'Satellite Provider'), +('80.78.20.216', '80.78.20.223', 1347294424, 1347294431, 'KW', 'Kuwait'), +('80.78.20.224', '80.78.20.227', 1347294432, 1347294435, 'US', 'United States'), +('80.78.20.228', '80.78.20.231', 1347294436, 1347294439, 'A2', 'Satellite Provider'), +('80.78.20.232', '80.78.20.239', 1347294440, 1347294447, 'SO', 'Somalia'), +('80.78.20.240', '80.78.22.255', 1347294448, 1347294975, 'US', 'United States'), +('80.78.23.0', '80.78.23.15', 1347294976, 1347294991, 'A2', 'Satellite Provider'), +('80.78.23.16', '80.78.23.31', 1347294992, 1347295007, 'NG', 'Nigeria'), +('80.78.23.32', '80.78.23.63', 1347295008, 1347295039, 'A2', 'Satellite Provider'), +('80.78.23.64', '80.78.23.71', 1347295040, 1347295047, 'GB', 'United Kingdom'), +('80.78.23.72', '80.78.23.79', 1347295048, 1347295055, 'IQ', 'Iraq'), +('80.78.23.80', '80.78.23.87', 1347295056, 1347295063, 'AF', 'Afghanistan'), +('80.78.23.88', '80.78.23.95', 1347295064, 1347295071, 'A2', 'Satellite Provider'), +('80.78.23.96', '80.78.23.103', 1347295072, 1347295079, 'US', 'United States'), +('80.78.23.104', '80.78.23.111', 1347295080, 1347295087, 'NG', 'Nigeria'), +('80.78.23.112', '80.78.23.119', 1347295088, 1347295095, 'A2', 'Satellite Provider'), +('80.78.23.120', '80.78.23.127', 1347295096, 1347295103, 'NG', 'Nigeria'), +('80.78.23.128', '80.78.23.167', 1347295104, 1347295143, 'A2', 'Satellite Provider'), +('80.78.23.168', '80.78.23.175', 1347295144, 1347295151, 'IQ', 'Iraq'), +('80.78.23.176', '80.78.23.183', 1347295152, 1347295159, 'US', 'United States'), +('80.78.23.184', '80.78.23.223', 1347295160, 1347295199, 'A2', 'Satellite Provider'), +('80.78.23.224', '80.78.23.239', 1347295200, 1347295215, 'GB', 'United Kingdom'), +('80.78.23.240', '80.78.23.247', 1347295216, 1347295223, 'A2', 'Satellite Provider'), +('80.78.23.248', '80.78.23.255', 1347295224, 1347295231, 'CH', 'Switzerland'), +('80.78.24.0', '80.78.25.255', 1347295232, 1347295743, 'A2', 'Satellite Provider'), +('80.78.26.0', '80.78.26.7', 1347295744, 1347295751, 'PR', 'Puerto Rico'), +('80.78.26.8', '80.78.26.11', 1347295752, 1347295755, 'US', 'United States'), +('80.78.26.12', '80.78.26.15', 1347295756, 1347295759, 'A2', 'Satellite Provider'), +('80.78.26.16', '80.78.26.31', 1347295760, 1347295775, 'US', 'United States'), +('80.78.26.32', '80.78.26.39', 1347295776, 1347295783, 'IQ', 'Iraq'), +('80.78.26.40', '80.78.26.255', 1347295784, 1347295999, 'A2', 'Satellite Provider'), +('80.78.27.0', '80.78.27.7', 1347296000, 1347296007, 'US', 'United States'), +('80.78.27.8', '80.78.27.15', 1347296008, 1347296015, 'PR', 'Puerto Rico'), +('80.78.27.16', '80.78.31.255', 1347296016, 1347297279, 'A2', 'Satellite Provider'), +('80.78.32.0', '80.78.63.255', 1347297280, 1347305471, 'UA', 'Ukraine'), +('80.78.64.0', '80.78.79.255', 1347305472, 1347309567, 'AL', 'Albania'), +('80.78.80.0', '80.78.81.15', 1347309568, 1347309839, 'DE', 'Germany'), +('80.78.81.16', '80.78.81.31', 1347309840, 1347309855, 'CH', 'Switzerland'), +('80.78.81.32', '80.78.95.255', 1347309856, 1347313663, 'DE', 'Germany'), +('80.78.96.0', '80.78.127.255', 1347313664, 1347321855, 'RU', 'Russian Federation'), +('80.78.128.0', '80.78.135.127', 1347321856, 1347323775, 'KW', 'Kuwait'), +('80.78.135.128', '80.78.135.255', 1347323776, 1347323903, 'IR', 'Iran, Islamic Republic of'), +('80.78.136.0', '80.78.140.255', 1347323904, 1347325183, 'KW', 'Kuwait'), +('80.78.141.0', '80.78.141.255', 1347325184, 1347325439, 'SA', 'Saudi Arabia'), +('80.78.142.0', '80.78.143.255', 1347325440, 1347325951, 'KW', 'Kuwait'), +('80.78.144.0', '80.78.148.255', 1347325952, 1347327231, 'CZ', 'Czech Republic'), +('80.78.149.0', '80.78.149.255', 1347327232, 1347327487, 'SK', 'Slovakia'), +('80.78.150.0', '80.78.157.255', 1347327488, 1347329535, 'CZ', 'Czech Republic'), +('80.78.158.0', '80.78.158.63', 1347329536, 1347329599, 'SK', 'Slovakia'), +('80.78.158.64', '80.78.159.255', 1347329600, 1347330047, 'CZ', 'Czech Republic'), +('80.78.160.0', '80.78.191.255', 1347330048, 1347338239, 'DE', 'Germany'), +('80.78.192.0', '80.78.207.255', 1347338240, 1347342335, 'RU', 'Russian Federation'), +('80.78.208.0', '80.78.223.255', 1347342336, 1347346431, 'SE', 'Sweden'), +('80.78.224.0', '80.78.255.255', 1347346432, 1347354623, 'AT', 'Austria'), +('80.79.0.0', '80.79.15.255', 1347354624, 1347358719, 'PT', 'Portugal'), +('80.79.16.0', '80.79.31.255', 1347358720, 1347362815, 'CZ', 'Czech Republic'), +('80.79.32.0', '80.79.47.255', 1347362816, 1347366911, 'NL', 'Netherlands'), +('80.79.48.0', '80.79.63.255', 1347366912, 1347371007, 'IT', 'Italy'), +('80.79.64.0', '80.79.79.255', 1347371008, 1347375103, 'RU', 'Russian Federation'), +('80.79.80.0', '80.79.95.255', 1347375104, 1347379199, 'GB', 'United Kingdom'), +('80.79.96.0', '80.79.111.255', 1347379200, 1347383295, 'NL', 'Netherlands'), +('80.79.112.0', '80.79.127.255', 1347383296, 1347387391, 'EE', 'Estonia'), +('80.79.128.0', '80.79.143.255', 1347387392, 1347391487, 'GB', 'United Kingdom'), +('80.79.144.0', '80.79.159.255', 1347391488, 1347395583, 'LB', 'Lebanon'), +('80.79.160.0', '80.79.175.255', 1347395584, 1347399679, 'SE', 'Sweden'), +('80.79.176.0', '80.79.191.255', 1347399680, 1347403775, 'RU', 'Russian Federation'), +('80.79.192.0', '80.79.207.255', 1347403776, 1347407871, 'NL', 'Netherlands'), +('80.79.208.0', '80.79.223.255', 1347407872, 1347411967, 'GB', 'United Kingdom'), +('80.79.224.0', '80.79.239.255', 1347411968, 1347416063, 'DE', 'Germany'), +('80.79.240.0', '80.79.255.255', 1347416064, 1347420159, 'RU', 'Russian Federation'), +('80.80.0.0', '80.80.1.255', 1347420160, 1347420671, 'DK', 'Denmark'), +('80.80.2.0', '80.80.2.7', 1347420672, 1347420679, 'SE', 'Sweden'), +('80.80.2.8', '80.80.2.119', 1347420680, 1347420791, 'DK', 'Denmark'), +('80.80.2.120', '80.80.2.127', 1347420792, 1347420799, 'US', 'United States'), +('80.80.2.128', '80.80.2.159', 1347420800, 1347420831, 'DK', 'Denmark'), +('80.80.2.160', '80.80.2.175', 1347420832, 1347420847, 'US', 'United States'), +('80.80.2.176', '80.80.3.63', 1347420848, 1347420991, 'DK', 'Denmark'), +('80.80.3.64', '80.80.3.79', 1347420992, 1347421007, 'CH', 'Switzerland'), +('80.80.3.80', '80.80.14.31', 1347421008, 1347423775, 'DK', 'Denmark'), +('80.80.14.32', '80.80.14.63', 1347423776, 1347423807, 'NO', 'Norway'), +('80.80.14.64', '80.80.16.83', 1347423808, 1347424339, 'DK', 'Denmark'), +('80.80.16.84', '80.80.16.95', 1347424340, 1347424351, 'NO', 'Norway'), +('80.80.16.96', '80.80.27.63', 1347424352, 1347427135, 'DK', 'Denmark'), +('80.80.27.64', '80.80.27.255', 1347427136, 1347427327, 'NO', 'Norway'), +('80.80.28.0', '80.80.31.255', 1347427328, 1347428351, 'DK', 'Denmark'), +('80.80.32.0', '80.80.47.255', 1347428352, 1347432447, 'IT', 'Italy'), +('80.80.48.0', '80.80.63.255', 1347432448, 1347436543, 'HR', 'Croatia'), +('80.80.64.0', '80.80.79.255', 1347436544, 1347440639, 'SE', 'Sweden'), +('80.80.80.0', '80.80.95.255', 1347440640, 1347444735, 'ES', 'Spain'), +('80.80.96.0', '80.80.127.255', 1347444736, 1347452927, 'RU', 'Russian Federation'), +('80.80.128.0', '80.80.159.255', 1347452928, 1347461119, 'BG', 'Bulgaria'), +('80.80.160.0', '80.80.175.255', 1347461120, 1347465215, 'RS', 'Serbia'), +('80.80.176.0', '80.80.191.255', 1347465216, 1347469311, 'GB', 'United Kingdom'), +('80.80.192.0', '80.80.207.255', 1347469312, 1347473407, 'RU', 'Russian Federation'), +('80.80.208.0', '80.80.223.255', 1347473408, 1347477503, 'UZ', 'Uzbekistan'), +('80.80.224.0', '80.80.239.255', 1347477504, 1347481599, 'CH', 'Switzerland'), +('80.80.240.0', '80.80.255.255', 1347481600, 1347485695, 'AT', 'Austria'), +('80.81.0.0', '80.81.31.255', 1347485696, 1347493887, 'DE', 'Germany'), +('80.81.32.0', '80.81.63.255', 1347493888, 1347502079, 'LV', 'Latvia'), +('80.81.64.0', '80.81.67.255', 1347502080, 1347503103, 'ES', 'Spain'), +('80.81.68.0', '80.81.68.255', 1347503104, 1347503359, 'GB', 'United Kingdom'), +('80.81.69.0', '80.81.72.255', 1347503360, 1347504383, 'ES', 'Spain'), +('80.81.73.0', '80.81.73.255', 1347504384, 1347504639, 'US', 'United States'), +('80.81.74.0', '80.81.79.255', 1347504640, 1347506175, 'ES', 'Spain'), +('80.81.80.0', '80.81.95.255', 1347506176, 1347510271, 'FR', 'France'), +('80.81.96.0', '80.81.127.255', 1347510272, 1347518463, 'ES', 'Spain'), +('80.81.128.0', '80.81.143.255', 1347518464, 1347522559, 'AT', 'Austria'), +('80.81.144.0', '80.81.159.255', 1347522560, 1347526655, 'LB', 'Lebanon'), +('80.81.160.0', '80.81.165.15', 1347526656, 1347527951, 'FI', 'Finland'), +('80.81.165.16', '80.81.165.79', 1347527952, 1347528015, 'SE', 'Sweden'), +('80.81.165.80', '80.81.166.127', 1347528016, 1347528319, 'FI', 'Finland'), +('80.81.166.128', '80.81.166.159', 1347528320, 1347528351, 'SE', 'Sweden'), +('80.81.166.160', '80.81.167.191', 1347528352, 1347528639, 'FI', 'Finland'), +('80.81.167.192', '80.81.167.255', 1347528640, 1347528703, 'SE', 'Sweden'), +('80.81.168.0', '80.81.168.255', 1347528704, 1347528959, 'FI', 'Finland'), +('80.81.169.0', '80.81.169.127', 1347528960, 1347529087, 'SE', 'Sweden'), +('80.81.169.128', '80.81.170.255', 1347529088, 1347529471, 'FI', 'Finland'), +('80.81.171.0', '80.81.172.255', 1347529472, 1347529983, 'SE', 'Sweden'), +('80.81.173.0', '80.81.191.255', 1347529984, 1347534847, 'FI', 'Finland'), +('80.81.192.0', '80.81.207.255', 1347534848, 1347538943, 'DE', 'Germany'), +('80.81.208.0', '80.81.223.255', 1347538944, 1347543039, 'RU', 'Russian Federation'), +('80.81.224.0', '80.81.227.255', 1347543040, 1347544063, 'SK', 'Slovakia'), +('80.81.228.0', '80.81.228.255', 1347544064, 1347544319, 'SL', 'Sierra Leone'), +('80.81.229.0', '80.81.239.255', 1347544320, 1347547135, 'SK', 'Slovakia'), +('80.81.240.0', '80.81.252.95', 1347547136, 1347550303, 'DE', 'Germany'), +('80.81.252.96', '80.81.252.127', 1347550304, 1347550335, 'AT', 'Austria'), +('80.81.252.128', '80.81.255.191', 1347550336, 1347551167, 'DE', 'Germany'), +('80.81.255.192', '80.81.255.255', 1347551168, 1347551231, 'PL', 'Poland'), +('80.82.0.0', '80.82.15.255', 1347551232, 1347555327, 'IT', 'Italy'), +('80.82.16.0', '80.82.31.255', 1347555328, 1347559423, 'PL', 'Poland'), +('80.82.32.0', '80.82.63.255', 1347559424, 1347567615, 'RU', 'Russian Federation'), +('80.82.64.0', '80.82.79.255', 1347567616, 1347571711, 'CH', 'Switzerland'), +('80.82.80.0', '80.82.95.255', 1347571712, 1347575807, 'RU', 'Russian Federation'), +('80.82.96.0', '80.82.111.255', 1347575808, 1347579903, 'DK', 'Denmark'), +('80.82.112.0', '80.82.143.255', 1347579904, 1347588095, 'GB', 'United Kingdom'), +('80.82.144.0', '80.82.154.255', 1347588096, 1347590911, 'CZ', 'Czech Republic'), +('80.82.155.0', '80.82.155.255', 1347590912, 1347591167, 'PL', 'Poland'), +('80.82.156.0', '80.82.159.255', 1347591168, 1347592191, 'CZ', 'Czech Republic'), +('80.82.160.0', '80.82.191.255', 1347592192, 1347600383, 'RU', 'Russian Federation'), +('80.82.192.0', '80.82.207.255', 1347600384, 1347604479, 'IT', 'Italy'), +('80.82.208.0', '80.82.223.255', 1347604480, 1347608575, 'DE', 'Germany'), +('80.82.224.0', '80.82.239.255', 1347608576, 1347612671, 'FR', 'France'), +('80.82.240.0', '80.82.255.255', 1347612672, 1347616767, 'GB', 'United Kingdom'), +('80.83.0.0', '80.83.15.255', 1347616768, 1347620863, 'FI', 'Finland'), +('80.83.16.0', '80.83.31.255', 1347620864, 1347624959, 'LB', 'Lebanon'), +('80.83.32.0', '80.83.63.255', 1347624960, 1347633151, 'CH', 'Switzerland'), +('80.83.64.0', '80.83.79.255', 1347633152, 1347637247, 'CZ', 'Czech Republic'), +('80.83.80.0', '80.83.95.255', 1347637248, 1347641343, 'SE', 'Sweden'), +('80.83.96.0', '80.83.114.242', 1347641344, 1347646194, 'DE', 'Germany'), +('80.83.114.243', '80.83.114.255', 1347646195, 1347646207, 'TR', 'Turkey'), +('80.83.115.0', '80.83.127.255', 1347646208, 1347649535, 'DE', 'Germany'), +('80.83.128.0', '80.83.143.255', 1347649536, 1347653631, 'GE', 'Georgia'), +('80.83.144.0', '80.83.147.215', 1347653632, 1347654615, 'GB', 'United Kingdom'), +('80.83.147.216', '80.83.147.223', 1347654616, 1347654623, 'EG', 'Egypt'), +('80.83.147.224', '80.83.150.7', 1347654624, 1347655175, 'GB', 'United Kingdom'), +('80.83.150.8', '80.83.150.15', 1347655176, 1347655183, 'EG', 'Egypt'), +('80.83.150.16', '80.83.159.255', 1347655184, 1347657727, 'GB', 'United Kingdom'), +('80.83.160.0', '80.83.175.255', 1347657728, 1347661823, 'IT', 'Italy'), +('80.83.176.0', '80.83.181.15', 1347661824, 1347663119, 'DE', 'Germany'), +('80.83.181.16', '80.83.181.23', 1347663120, 1347663127, 'GB', 'United Kingdom'), +('80.83.181.24', '80.83.191.255', 1347663128, 1347665919, 'DE', 'Germany'), +('80.83.192.0', '80.83.207.255', 1347665920, 1347670015, 'RU', 'Russian Federation'), +('80.83.208.0', '80.83.223.255', 1347670016, 1347674111, 'SE', 'Sweden'), +('80.83.224.0', '80.83.255.255', 1347674112, 1347682303, 'RU', 'Russian Federation'), +('80.84.0.0', '80.84.15.255', 1347682304, 1347686399, 'DE', 'Germany'), +('80.84.16.0', '80.84.25.39', 1347686400, 1347688743, 'EU', 'Europe'), +('80.84.25.40', '80.84.25.47', 1347688744, 1347688751, 'ET', 'Ethiopia'), +('80.84.25.48', '80.84.25.63', 1347688752, 1347688767, 'SN', 'Senegal'), +('80.84.25.64', '80.84.25.255', 1347688768, 1347688959, 'EU', 'Europe'), +('80.84.26.0', '80.84.27.127', 1347688960, 1347689343, 'BE', 'Belgium'), +('80.84.27.128', '80.84.31.255', 1347689344, 1347690495, 'EU', 'Europe'), +('80.84.32.0', '80.84.47.255', 1347690496, 1347694591, 'SE', 'Sweden'), +('80.84.48.0', '80.84.95.255', 1347694592, 1347706879, 'GB', 'United Kingdom'), +('80.84.96.0', '80.84.111.255', 1347706880, 1347710975, 'IT', 'Italy'), +('80.84.112.0', '80.84.127.255', 1347710976, 1347715071, 'RU', 'Russian Federation'), +('80.84.128.0', '80.84.129.191', 1347715072, 1347715519, 'ES', 'Spain'), +('80.84.129.192', '80.84.129.199', 1347715520, 1347715527, 'SA', 'Saudi Arabia'), +('80.84.129.200', '80.84.132.55', 1347715528, 1347716151, 'ES', 'Spain'), +('80.84.132.56', '80.84.132.63', 1347716152, 1347716159, 'LB', 'Lebanon'), +('80.84.132.64', '80.84.132.111', 1347716160, 1347716207, 'ES', 'Spain'), +('80.84.132.112', '80.84.132.127', 1347716208, 1347716223, 'CY', 'Cyprus'), +('80.84.132.128', '80.84.140.223', 1347716224, 1347718367, 'ES', 'Spain'), +('80.84.140.224', '80.84.140.255', 1347718368, 1347718399, 'IR', 'Iran, Islamic Republic of'), +('80.84.141.0', '80.84.146.31', 1347718400, 1347719711, 'ES', 'Spain'), +('80.84.146.32', '80.84.146.39', 1347719712, 1347719719, 'SO', 'Somalia'), +('80.84.146.40', '80.84.156.255', 1347719720, 1347722495, 'ES', 'Spain'), +('80.84.157.0', '80.84.157.255', 1347722496, 1347722751, 'LB', 'Lebanon'), +('80.84.158.0', '80.84.159.255', 1347722752, 1347723263, 'ES', 'Spain'), +('80.84.160.0', '80.84.175.255', 1347723264, 1347727359, 'GB', 'United Kingdom'), +('80.84.176.0', '80.84.191.255', 1347727360, 1347731455, 'UA', 'Ukraine'), +('80.84.192.0', '80.84.223.255', 1347731456, 1347739647, 'DE', 'Germany'), +('80.84.224.0', '80.84.255.255', 1347739648, 1347747839, 'NL', 'Netherlands'), +('80.85.0.0', '80.85.15.255', 1347747840, 1347751935, 'DE', 'Germany'), +('80.85.16.0', '80.85.26.255', 1347751936, 1347754751, 'CY', 'Cyprus'), +('80.85.27.0', '80.85.27.23', 1347754752, 1347754775, 'GR', 'Greece'), +('80.85.27.24', '80.85.27.39', 1347754776, 1347754791, 'CY', 'Cyprus'), +('80.85.27.40', '80.85.27.135', 1347754792, 1347754887, 'GR', 'Greece'), +('80.85.27.136', '80.85.27.136', 1347754888, 1347754888, 'CY', 'Cyprus'), +('80.85.27.137', '80.85.27.142', 1347754889, 1347754894, 'GR', 'Greece'), +('80.85.27.143', '80.85.27.143', 1347754895, 1347754895, 'CY', 'Cyprus'), +('80.85.27.144', '80.85.27.167', 1347754896, 1347754919, 'GR', 'Greece'), +('80.85.27.168', '80.85.27.175', 1347754920, 1347754927, 'CY', 'Cyprus'), +('80.85.27.176', '80.85.27.183', 1347754928, 1347754935, 'GR', 'Greece'), +('80.85.27.184', '80.85.27.191', 1347754936, 1347754943, 'RS', 'Serbia'), +('80.85.27.192', '80.85.27.199', 1347754944, 1347754951, 'CY', 'Cyprus'), +('80.85.27.200', '80.85.27.207', 1347754952, 1347754959, 'TN', 'Tunisia'), +('80.85.27.208', '80.85.27.215', 1347754960, 1347754967, 'MA', 'Morocco'), +('80.85.27.216', '80.85.27.231', 1347754968, 1347754983, 'GR', 'Greece'), +('80.85.27.232', '80.85.27.239', 1347754984, 1347754991, 'CY', 'Cyprus'), +('80.85.27.240', '80.85.28.55', 1347754992, 1347755063, 'GR', 'Greece'), +('80.85.28.56', '80.85.28.71', 1347755064, 1347755079, 'CY', 'Cyprus'), +('80.85.28.72', '80.85.28.104', 1347755080, 1347755112, 'GR', 'Greece'), +('80.85.28.105', '80.85.28.111', 1347755113, 1347755119, 'CY', 'Cyprus'), +('80.85.28.112', '80.85.28.183', 1347755120, 1347755191, 'GR', 'Greece'), +('80.85.28.184', '80.85.28.215', 1347755192, 1347755223, 'CY', 'Cyprus'), +('80.85.28.216', '80.85.28.223', 1347755224, 1347755231, 'GR', 'Greece'), +('80.85.28.224', '80.85.28.255', 1347755232, 1347755263, 'CY', 'Cyprus'), +('80.85.29.0', '80.85.29.255', 1347755264, 1347755519, 'GR', 'Greece'), +('80.85.30.0', '80.85.30.255', 1347755520, 1347755775, 'CY', 'Cyprus'), +('80.85.31.0', '80.85.31.255', 1347755776, 1347756031, 'GR', 'Greece'), +('80.85.32.0', '80.85.47.255', 1347756032, 1347760127, 'NL', 'Netherlands'), +('80.85.48.0', '80.85.63.255', 1347760128, 1347764223, 'HU', 'Hungary'), +('80.85.64.0', '80.85.95.255', 1347764224, 1347772415, 'GB', 'United Kingdom'), +('80.85.96.0', '80.85.111.255', 1347772416, 1347776511, 'MT', 'Malta'), +('80.85.112.0', '80.85.127.255', 1347776512, 1347780607, 'SE', 'Sweden'), +('80.85.128.0', '80.85.143.255', 1347780608, 1347784703, 'NL', 'Netherlands'), +('80.85.144.0', '80.85.159.255', 1347784704, 1347788799, 'RU', 'Russian Federation'), +('80.85.160.0', '80.85.175.255', 1347788800, 1347792895, 'NL', 'Netherlands'), +('80.85.176.0', '80.85.191.255', 1347792896, 1347796991, 'RU', 'Russian Federation'), +('80.85.192.0', '80.85.207.255', 1347796992, 1347801087, 'DE', 'Germany'), +('80.85.208.0', '80.85.223.255', 1347801088, 1347805183, 'GB', 'United Kingdom'), +('80.85.224.0', '80.85.239.255', 1347805184, 1347809279, 'PL', 'Poland'), +('80.85.240.0', '80.85.255.255', 1347809280, 1347813375, 'IT', 'Italy'), +('80.86.0.0', '80.86.15.255', 1347813376, 1347817471, 'DE', 'Germany'), +('80.86.16.0', '80.86.31.255', 1347817472, 1347821567, 'A2', 'Satellite Provider'), +('80.86.32.0', '80.86.35.7', 1347821568, 1347822343, 'GB', 'United Kingdom'), +('80.86.35.8', '80.86.35.15', 1347822344, 1347822351, 'NL', 'Netherlands'), +('80.86.35.16', '80.86.47.255', 1347822352, 1347825663, 'GB', 'United Kingdom'), +('80.86.48.0', '80.86.63.255', 1347825664, 1347829759, 'IT', 'Italy'), +('80.86.64.0', '80.86.79.255', 1347829760, 1347833855, 'SE', 'Sweden'), +('80.86.80.0', '80.86.89.63', 1347833856, 1347836223, 'DE', 'Germany'), +('80.86.89.64', '80.86.89.95', 1347836224, 1347836255, 'SE', 'Sweden'), +('80.86.89.96', '80.86.95.255', 1347836256, 1347837951, 'DE', 'Germany'), +('80.86.96.0', '80.86.127.255', 1347837952, 1347846143, 'RO', 'Romania'), +('80.86.128.0', '80.86.143.255', 1347846144, 1347850239, 'NO', 'Norway'), +('80.86.144.0', '80.86.159.255', 1347850240, 1347854335, 'IT', 'Italy'), +('80.86.160.0', '80.86.162.23', 1347854336, 1347854871, 'DE', 'Germany'), +('80.86.162.24', '80.86.162.31', 1347854872, 1347854879, 'EU', 'Europe'), +('80.86.162.32', '80.86.162.39', 1347854880, 1347854887, 'DE', 'Germany'), +('80.86.162.40', '80.86.162.63', 1347854888, 1347854911, 'EU', 'Europe'), +('80.86.162.64', '80.86.162.223', 1347854912, 1347855071, 'DE', 'Germany'), +('80.86.162.224', '80.86.162.231', 1347855072, 1347855079, 'EU', 'Europe'), +('80.86.162.232', '80.86.162.255', 1347855080, 1347855103, 'DE', 'Germany'), +('80.86.163.0', '80.86.163.255', 1347855104, 1347855359, 'CH', 'Switzerland'), +('80.86.164.0', '80.86.166.63', 1347855360, 1347855935, 'DE', 'Germany'), +('80.86.166.64', '80.86.166.71', 1347855936, 1347855943, 'EU', 'Europe'), +('80.86.166.72', '80.86.166.79', 1347855944, 1347855951, 'DE', 'Germany'), +('80.86.166.80', '80.86.166.87', 1347855952, 1347855959, 'EU', 'Europe'), +('80.86.166.88', '80.86.166.95', 1347855960, 1347855967, 'DE', 'Germany'), +('80.86.166.96', '80.86.166.127', 1347855968, 1347855999, 'EU', 'Europe'), +('80.86.166.128', '80.86.166.191', 1347856000, 1347856063, 'DE', 'Germany'), +('80.86.166.192', '80.86.166.207', 1347856064, 1347856079, 'EU', 'Europe'), +('80.86.166.208', '80.86.167.115', 1347856080, 1347856243, 'DE', 'Germany'), +('80.86.167.116', '80.86.167.127', 1347856244, 1347856255, 'EU', 'Europe'), +('80.86.167.128', '80.86.168.47', 1347856256, 1347856431, 'DE', 'Germany'), +('80.86.168.48', '80.86.168.63', 1347856432, 1347856447, 'EU', 'Europe'), +('80.86.168.64', '80.86.168.87', 1347856448, 1347856471, 'DE', 'Germany'), +('80.86.168.88', '80.86.168.95', 1347856472, 1347856479, 'EU', 'Europe'), +('80.86.168.96', '80.86.168.255', 1347856480, 1347856639, 'DE', 'Germany'), +('80.86.169.0', '80.86.169.255', 1347856640, 1347856895, 'AT', 'Austria'), +('80.86.170.0', '80.86.176.63', 1347856896, 1347858495, 'DE', 'Germany'), +('80.86.176.64', '80.86.176.71', 1347858496, 1347858503, 'EU', 'Europe'), +('80.86.176.72', '80.86.176.95', 1347858504, 1347858527, 'DE', 'Germany'), +('80.86.176.96', '80.86.176.127', 1347858528, 1347858559, 'EU', 'Europe'), +('80.86.176.128', '80.86.176.143', 1347858560, 1347858575, 'DE', 'Germany'), +('80.86.176.144', '80.86.176.159', 1347858576, 1347858591, 'EU', 'Europe'), +('80.86.176.160', '80.86.176.199', 1347858592, 1347858631, 'DE', 'Germany'), +('80.86.176.200', '80.86.176.207', 1347858632, 1347858639, 'EU', 'Europe'), +('80.86.176.208', '80.86.179.151', 1347858640, 1347859351, 'DE', 'Germany'), +('80.86.179.152', '80.86.179.159', 1347859352, 1347859359, 'EU', 'Europe'), +('80.86.179.160', '80.86.179.183', 1347859360, 1347859383, 'DE', 'Germany'), +('80.86.179.184', '80.86.179.207', 1347859384, 1347859407, 'EU', 'Europe'), +('80.86.179.208', '80.86.179.239', 1347859408, 1347859439, 'DE', 'Germany'), +('80.86.179.240', '80.86.179.255', 1347859440, 1347859455, 'EU', 'Europe'), +('80.86.180.0', '80.86.185.127', 1347859456, 1347860863, 'DE', 'Germany'), +('80.86.185.128', '80.86.185.143', 1347860864, 1347860879, 'EU', 'Europe'), +('80.86.185.144', '80.86.185.159', 1347860880, 1347860895, 'DE', 'Germany'), +('80.86.185.160', '80.86.185.175', 1347860896, 1347860911, 'EU', 'Europe'), +('80.86.185.176', '80.86.187.147', 1347860912, 1347861395, 'DE', 'Germany'), +('80.86.187.148', '80.86.187.159', 1347861396, 1347861407, 'EU', 'Europe'), +('80.86.187.160', '80.86.187.223', 1347861408, 1347861471, 'DE', 'Germany'), +('80.86.187.224', '80.86.187.255', 1347861472, 1347861503, 'EU', 'Europe'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('80.86.188.0', '80.86.188.255', 1347861504, 1347861759, 'DE', 'Germany'), +('80.86.189.0', '80.86.189.39', 1347861760, 1347861799, 'EU', 'Europe'), +('80.86.189.40', '80.86.189.63', 1347861800, 1347861823, 'DE', 'Germany'), +('80.86.189.64', '80.86.189.183', 1347861824, 1347861943, 'EU', 'Europe'), +('80.86.189.184', '80.86.189.191', 1347861944, 1347861951, 'DE', 'Germany'), +('80.86.189.192', '80.86.190.95', 1347861952, 1347862111, 'EU', 'Europe'), +('80.86.190.96', '80.86.190.127', 1347862112, 1347862143, 'DE', 'Germany'), +('80.86.190.128', '80.86.191.7', 1347862144, 1347862279, 'EU', 'Europe'), +('80.86.191.8', '80.86.191.159', 1347862280, 1347862431, 'DE', 'Germany'), +('80.86.191.160', '80.86.191.175', 1347862432, 1347862447, 'EU', 'Europe'), +('80.86.191.176', '80.86.191.199', 1347862448, 1347862471, 'DE', 'Germany'), +('80.86.191.200', '80.86.191.207', 1347862472, 1347862479, 'EU', 'Europe'), +('80.86.191.208', '80.86.191.215', 1347862480, 1347862487, 'DE', 'Germany'), +('80.86.191.216', '80.86.191.223', 1347862488, 1347862495, 'EU', 'Europe'), +('80.86.191.224', '80.86.191.255', 1347862496, 1347862527, 'DE', 'Germany'), +('80.86.192.0', '80.86.207.255', 1347862528, 1347866623, 'CH', 'Switzerland'), +('80.86.208.0', '80.86.223.255', 1347866624, 1347870719, 'NO', 'Norway'), +('80.86.224.0', '80.86.239.255', 1347870720, 1347874815, 'AM', 'Armenia'), +('80.86.240.0', '80.86.255.255', 1347874816, 1347878911, 'RU', 'Russian Federation'), +('80.87.0.0', '80.87.15.255', 1347878912, 1347883007, 'GB', 'United Kingdom'), +('80.87.16.0', '80.87.31.255', 1347883008, 1347887103, 'IT', 'Italy'), +('80.87.32.0', '80.87.47.255', 1347887104, 1347891199, 'PL', 'Poland'), +('80.87.48.0', '80.87.63.255', 1347891200, 1347895295, 'SE', 'Sweden'), +('80.87.64.0', '80.87.95.255', 1347895296, 1347903487, 'GH', 'Ghana'), +('80.87.96.0', '80.87.111.255', 1347903488, 1347907583, 'RU', 'Russian Federation'), +('80.87.112.0', '80.87.127.255', 1347907584, 1347911679, 'DE', 'Germany'), +('80.87.128.0', '80.87.143.255', 1347911680, 1347915775, 'GB', 'United Kingdom'), +('80.87.144.0', '80.87.159.255', 1347915776, 1347919871, 'RU', 'Russian Federation'), +('80.87.160.0', '80.87.175.255', 1347919872, 1347923967, 'DE', 'Germany'), +('80.87.176.0', '80.87.191.255', 1347923968, 1347928063, 'CZ', 'Czech Republic'), +('80.87.192.0', '80.87.207.255', 1347928064, 1347932159, 'RU', 'Russian Federation'), +('80.87.208.0', '80.87.223.255', 1347932160, 1347936255, 'SK', 'Slovakia'), +('80.87.224.0', '80.87.239.255', 1347936256, 1347940351, 'FR', 'France'), +('80.87.240.0', '80.87.255.255', 1347940352, 1347944447, 'BA', 'Bosnia and Herzegovina'), +('80.88.0.0', '80.88.15.255', 1347944448, 1347948543, 'DZ', 'Algeria'), +('80.88.16.0', '80.88.31.255', 1347948544, 1347952639, 'DE', 'Germany'), +('80.88.32.0', '80.88.47.255', 1347952640, 1347956735, 'BE', 'Belgium'), +('80.88.48.0', '80.88.63.255', 1347956736, 1347960831, 'RU', 'Russian Federation'), +('80.88.64.0', '80.88.79.255', 1347960832, 1347964927, 'DE', 'Germany'), +('80.88.80.0', '80.88.95.255', 1347964928, 1347969023, 'IT', 'Italy'), +('80.88.96.0', '80.88.127.255', 1347969024, 1347977215, 'SE', 'Sweden'), +('80.88.128.0', '80.88.128.255', 1347977216, 1347977471, 'A2', 'Satellite Provider'), +('80.88.129.0', '80.88.129.15', 1347977472, 1347977487, 'NG', 'Nigeria'), +('80.88.129.16', '80.88.129.31', 1347977488, 1347977503, 'A2', 'Satellite Provider'), +('80.88.129.32', '80.88.129.47', 1347977504, 1347977519, 'NG', 'Nigeria'), +('80.88.129.48', '80.88.129.135', 1347977520, 1347977607, 'A2', 'Satellite Provider'), +('80.88.129.136', '80.88.129.151', 1347977608, 1347977623, 'NG', 'Nigeria'), +('80.88.129.152', '80.88.130.63', 1347977624, 1347977791, 'A2', 'Satellite Provider'), +('80.88.130.64', '80.88.130.191', 1347977792, 1347977919, 'NG', 'Nigeria'), +('80.88.130.192', '80.88.130.223', 1347977920, 1347977951, 'A2', 'Satellite Provider'), +('80.88.130.224', '80.88.130.239', 1347977952, 1347977967, 'NG', 'Nigeria'), +('80.88.130.240', '80.88.130.247', 1347977968, 1347977975, 'A2', 'Satellite Provider'), +('80.88.130.248', '80.88.131.7', 1347977976, 1347977991, 'NG', 'Nigeria'), +('80.88.131.8', '80.88.131.23', 1347977992, 1347978007, 'A2', 'Satellite Provider'), +('80.88.131.24', '80.88.131.63', 1347978008, 1347978047, 'NG', 'Nigeria'), +('80.88.131.64', '80.88.131.159', 1347978048, 1347978143, 'A2', 'Satellite Provider'), +('80.88.131.160', '80.88.131.223', 1347978144, 1347978207, 'NG', 'Nigeria'), +('80.88.131.224', '80.88.131.231', 1347978208, 1347978215, 'A2', 'Satellite Provider'), +('80.88.131.232', '80.88.131.239', 1347978216, 1347978223, 'NG', 'Nigeria'), +('80.88.131.240', '80.88.131.255', 1347978224, 1347978239, 'A2', 'Satellite Provider'), +('80.88.132.0', '80.88.132.23', 1347978240, 1347978263, 'NG', 'Nigeria'), +('80.88.132.24', '80.88.132.31', 1347978264, 1347978271, 'A2', 'Satellite Provider'), +('80.88.132.32', '80.88.132.79', 1347978272, 1347978319, 'NG', 'Nigeria'), +('80.88.132.80', '80.88.132.87', 1347978320, 1347978327, 'A2', 'Satellite Provider'), +('80.88.132.88', '80.88.132.111', 1347978328, 1347978351, 'NG', 'Nigeria'), +('80.88.132.112', '80.88.132.127', 1347978352, 1347978367, 'A2', 'Satellite Provider'), +('80.88.132.128', '80.88.132.167', 1347978368, 1347978407, 'NG', 'Nigeria'), +('80.88.132.168', '80.88.132.199', 1347978408, 1347978439, 'A2', 'Satellite Provider'), +('80.88.132.200', '80.88.132.223', 1347978440, 1347978463, 'NG', 'Nigeria'), +('80.88.132.224', '80.88.132.255', 1347978464, 1347978495, 'A2', 'Satellite Provider'), +('80.88.133.0', '80.88.133.63', 1347978496, 1347978559, 'NG', 'Nigeria'), +('80.88.133.64', '80.88.133.79', 1347978560, 1347978575, 'A2', 'Satellite Provider'), +('80.88.133.80', '80.88.133.167', 1347978576, 1347978663, 'NG', 'Nigeria'), +('80.88.133.168', '80.88.133.175', 1347978664, 1347978671, 'A2', 'Satellite Provider'), +('80.88.133.176', '80.88.133.183', 1347978672, 1347978679, 'NG', 'Nigeria'), +('80.88.133.184', '80.88.133.191', 1347978680, 1347978687, 'A2', 'Satellite Provider'), +('80.88.133.192', '80.88.133.199', 1347978688, 1347978695, 'NG', 'Nigeria'), +('80.88.133.200', '80.88.133.223', 1347978696, 1347978719, 'A2', 'Satellite Provider'), +('80.88.133.224', '80.88.133.231', 1347978720, 1347978727, 'NG', 'Nigeria'), +('80.88.133.232', '80.88.133.239', 1347978728, 1347978735, 'A2', 'Satellite Provider'), +('80.88.133.240', '80.88.133.247', 1347978736, 1347978743, 'NG', 'Nigeria'), +('80.88.133.248', '80.88.134.7', 1347978744, 1347978759, 'A2', 'Satellite Provider'), +('80.88.134.8', '80.88.134.55', 1347978760, 1347978807, 'NG', 'Nigeria'), +('80.88.134.56', '80.88.134.71', 1347978808, 1347978823, 'A2', 'Satellite Provider'), +('80.88.134.72', '80.88.134.79', 1347978824, 1347978831, 'NG', 'Nigeria'), +('80.88.134.80', '80.88.134.95', 1347978832, 1347978847, 'A2', 'Satellite Provider'), +('80.88.134.96', '80.88.134.103', 1347978848, 1347978855, 'NG', 'Nigeria'), +('80.88.134.104', '80.88.134.111', 1347978856, 1347978863, 'A2', 'Satellite Provider'), +('80.88.134.112', '80.88.134.119', 1347978864, 1347978871, 'NG', 'Nigeria'), +('80.88.134.120', '80.88.134.143', 1347978872, 1347978895, 'A2', 'Satellite Provider'), +('80.88.134.144', '80.88.134.167', 1347978896, 1347978919, 'NG', 'Nigeria'), +('80.88.134.168', '80.88.134.255', 1347978920, 1347979007, 'A2', 'Satellite Provider'), +('80.88.135.0', '80.88.135.31', 1347979008, 1347979039, 'NG', 'Nigeria'), +('80.88.135.32', '80.88.135.47', 1347979040, 1347979055, 'A2', 'Satellite Provider'), +('80.88.135.48', '80.88.135.135', 1347979056, 1347979143, 'NG', 'Nigeria'), +('80.88.135.136', '80.88.135.151', 1347979144, 1347979159, 'A2', 'Satellite Provider'), +('80.88.135.152', '80.88.135.159', 1347979160, 1347979167, 'NG', 'Nigeria'), +('80.88.135.160', '80.88.135.175', 1347979168, 1347979183, 'IQ', 'Iraq'), +('80.88.135.176', '80.88.135.191', 1347979184, 1347979199, 'NG', 'Nigeria'), +('80.88.135.192', '80.88.135.207', 1347979200, 1347979215, 'A2', 'Satellite Provider'), +('80.88.135.208', '80.88.135.255', 1347979216, 1347979263, 'NG', 'Nigeria'), +('80.88.136.0', '80.88.136.23', 1347979264, 1347979287, 'A2', 'Satellite Provider'), +('80.88.136.24', '80.88.136.47', 1347979288, 1347979311, 'NG', 'Nigeria'), +('80.88.136.48', '80.88.136.71', 1347979312, 1347979335, 'A2', 'Satellite Provider'), +('80.88.136.72', '80.88.136.79', 1347979336, 1347979343, 'NG', 'Nigeria'), +('80.88.136.80', '80.88.136.95', 1347979344, 1347979359, 'A2', 'Satellite Provider'), +('80.88.136.96', '80.88.136.103', 1347979360, 1347979367, 'NG', 'Nigeria'), +('80.88.136.104', '80.88.136.111', 1347979368, 1347979375, 'A2', 'Satellite Provider'), +('80.88.136.112', '80.88.136.135', 1347979376, 1347979399, 'NG', 'Nigeria'), +('80.88.136.136', '80.88.136.159', 1347979400, 1347979423, 'A2', 'Satellite Provider'), +('80.88.136.160', '80.88.136.207', 1347979424, 1347979471, 'NG', 'Nigeria'), +('80.88.136.208', '80.88.136.215', 1347979472, 1347979479, 'A2', 'Satellite Provider'), +('80.88.136.216', '80.88.136.223', 1347979480, 1347979487, 'NG', 'Nigeria'), +('80.88.136.224', '80.88.137.23', 1347979488, 1347979543, 'A2', 'Satellite Provider'), +('80.88.137.24', '80.88.137.31', 1347979544, 1347979551, 'NG', 'Nigeria'), +('80.88.137.32', '80.88.137.47', 1347979552, 1347979567, 'A2', 'Satellite Provider'), +('80.88.137.48', '80.88.137.71', 1347979568, 1347979591, 'NG', 'Nigeria'), +('80.88.137.72', '80.88.137.87', 1347979592, 1347979607, 'A2', 'Satellite Provider'), +('80.88.137.88', '80.88.137.103', 1347979608, 1347979623, 'NG', 'Nigeria'), +('80.88.137.104', '80.88.137.135', 1347979624, 1347979655, 'A2', 'Satellite Provider'), +('80.88.137.136', '80.88.137.143', 1347979656, 1347979663, 'NG', 'Nigeria'), +('80.88.137.144', '80.88.137.159', 1347979664, 1347979679, 'A2', 'Satellite Provider'), +('80.88.137.160', '80.88.137.231', 1347979680, 1347979751, 'NG', 'Nigeria'), +('80.88.137.232', '80.88.137.239', 1347979752, 1347979759, 'A2', 'Satellite Provider'), +('80.88.137.240', '80.88.137.247', 1347979760, 1347979767, 'NG', 'Nigeria'), +('80.88.137.248', '80.88.138.15', 1347979768, 1347979791, 'A2', 'Satellite Provider'), +('80.88.138.16', '80.88.138.31', 1347979792, 1347979807, 'NG', 'Nigeria'), +('80.88.138.32', '80.88.138.47', 1347979808, 1347979823, 'A2', 'Satellite Provider'), +('80.88.138.48', '80.88.138.55', 1347979824, 1347979831, 'NG', 'Nigeria'), +('80.88.138.56', '80.88.138.71', 1347979832, 1347979847, 'A2', 'Satellite Provider'), +('80.88.138.72', '80.88.138.87', 1347979848, 1347979863, 'NG', 'Nigeria'), +('80.88.138.88', '80.88.138.159', 1347979864, 1347979935, 'A2', 'Satellite Provider'), +('80.88.138.160', '80.88.138.191', 1347979936, 1347979967, 'NG', 'Nigeria'), +('80.88.138.192', '80.88.139.47', 1347979968, 1347980079, 'A2', 'Satellite Provider'), +('80.88.139.48', '80.88.139.63', 1347980080, 1347980095, 'GH', 'Ghana'), +('80.88.139.64', '80.88.139.79', 1347980096, 1347980111, 'NG', 'Nigeria'), +('80.88.139.80', '80.88.139.95', 1347980112, 1347980127, 'GN', 'Guinea'), +('80.88.139.96', '80.88.139.119', 1347980128, 1347980151, 'NG', 'Nigeria'), +('80.88.139.120', '80.88.139.135', 1347980152, 1347980167, 'A2', 'Satellite Provider'), +('80.88.139.136', '80.88.139.143', 1347980168, 1347980175, 'NG', 'Nigeria'), +('80.88.139.144', '80.88.139.151', 1347980176, 1347980183, 'A2', 'Satellite Provider'), +('80.88.139.152', '80.88.139.159', 1347980184, 1347980191, 'CG', 'Congo'), +('80.88.139.160', '80.88.139.239', 1347980192, 1347980271, 'NG', 'Nigeria'), +('80.88.139.240', '80.88.139.255', 1347980272, 1347980287, 'DK', 'Denmark'), +('80.88.140.0', '80.88.140.127', 1347980288, 1347980415, 'A2', 'Satellite Provider'), +('80.88.140.128', '80.88.140.255', 1347980416, 1347980543, 'NG', 'Nigeria'), +('80.88.141.0', '80.88.141.15', 1347980544, 1347980559, 'DK', 'Denmark'), +('80.88.141.16', '80.88.141.63', 1347980560, 1347980607, 'NG', 'Nigeria'), +('80.88.141.64', '80.88.141.79', 1347980608, 1347980623, 'A2', 'Satellite Provider'), +('80.88.141.80', '80.88.141.87', 1347980624, 1347980631, 'NG', 'Nigeria'), +('80.88.141.88', '80.88.141.95', 1347980632, 1347980639, 'A2', 'Satellite Provider'), +('80.88.141.96', '80.88.141.103', 1347980640, 1347980647, 'NG', 'Nigeria'), +('80.88.141.104', '80.88.141.127', 1347980648, 1347980671, 'A2', 'Satellite Provider'), +('80.88.141.128', '80.88.141.159', 1347980672, 1347980703, 'NG', 'Nigeria'), +('80.88.141.160', '80.88.141.191', 1347980704, 1347980735, 'A2', 'Satellite Provider'), +('80.88.141.192', '80.88.141.255', 1347980736, 1347980799, 'NG', 'Nigeria'), +('80.88.142.0', '80.88.142.191', 1347980800, 1347980991, 'IQ', 'Iraq'), +('80.88.142.192', '80.88.142.199', 1347980992, 1347980999, 'A2', 'Satellite Provider'), +('80.88.142.200', '80.88.142.231', 1347981000, 1347981031, 'NG', 'Nigeria'), +('80.88.142.232', '80.88.142.239', 1347981032, 1347981039, 'A2', 'Satellite Provider'), +('80.88.142.240', '80.88.142.255', 1347981040, 1347981055, 'NG', 'Nigeria'), +('80.88.143.0', '80.88.143.127', 1347981056, 1347981183, 'IQ', 'Iraq'), +('80.88.143.128', '80.88.143.135', 1347981184, 1347981191, 'NG', 'Nigeria'), +('80.88.143.136', '80.88.143.143', 1347981192, 1347981199, 'A2', 'Satellite Provider'), +('80.88.143.144', '80.88.143.151', 1347981200, 1347981207, 'NG', 'Nigeria'), +('80.88.143.152', '80.88.143.159', 1347981208, 1347981215, 'A2', 'Satellite Provider'), +('80.88.143.160', '80.88.143.191', 1347981216, 1347981247, 'NG', 'Nigeria'), +('80.88.143.192', '80.88.143.199', 1347981248, 1347981255, 'A2', 'Satellite Provider'), +('80.88.143.200', '80.88.143.207', 1347981256, 1347981263, 'DK', 'Denmark'), +('80.88.143.208', '80.88.143.255', 1347981264, 1347981311, 'A2', 'Satellite Provider'), +('80.88.144.0', '80.88.146.63', 1347981312, 1347981887, 'NG', 'Nigeria'), +('80.88.146.64', '80.88.146.95', 1347981888, 1347981919, 'A2', 'Satellite Provider'), +('80.88.146.96', '80.88.146.111', 1347981920, 1347981935, 'NG', 'Nigeria'), +('80.88.146.112', '80.88.146.175', 1347981936, 1347981999, 'A2', 'Satellite Provider'), +('80.88.146.176', '80.88.146.231', 1347982000, 1347982055, 'NG', 'Nigeria'), +('80.88.146.232', '80.88.146.255', 1347982056, 1347982079, 'A2', 'Satellite Provider'), +('80.88.147.0', '80.88.147.7', 1347982080, 1347982087, 'NG', 'Nigeria'), +('80.88.147.8', '80.88.147.63', 1347982088, 1347982143, 'A2', 'Satellite Provider'), +('80.88.147.64', '80.88.147.127', 1347982144, 1347982207, 'NG', 'Nigeria'), +('80.88.147.128', '80.88.147.143', 1347982208, 1347982223, 'A2', 'Satellite Provider'), +('80.88.147.144', '80.88.147.159', 1347982224, 1347982239, 'NG', 'Nigeria'), +('80.88.147.160', '80.88.147.207', 1347982240, 1347982287, 'A2', 'Satellite Provider'), +('80.88.147.208', '80.88.147.223', 1347982288, 1347982303, 'NG', 'Nigeria'), +('80.88.147.224', '80.88.147.255', 1347982304, 1347982335, 'A2', 'Satellite Provider'), +('80.88.148.0', '80.88.149.255', 1347982336, 1347982847, 'NG', 'Nigeria'), +('80.88.150.0', '80.88.150.15', 1347982848, 1347982863, 'A2', 'Satellite Provider'), +('80.88.150.16', '80.88.150.31', 1347982864, 1347982879, 'NG', 'Nigeria'), +('80.88.150.32', '80.88.150.39', 1347982880, 1347982887, 'A2', 'Satellite Provider'), +('80.88.150.40', '80.88.150.143', 1347982888, 1347982991, 'NG', 'Nigeria'), +('80.88.150.144', '80.88.150.159', 1347982992, 1347983007, 'A2', 'Satellite Provider'), +('80.88.150.160', '80.88.150.207', 1347983008, 1347983055, 'NG', 'Nigeria'), +('80.88.150.208', '80.88.150.215', 1347983056, 1347983063, 'A2', 'Satellite Provider'), +('80.88.150.216', '80.88.150.223', 1347983064, 1347983071, 'NG', 'Nigeria'), +('80.88.150.224', '80.88.150.255', 1347983072, 1347983103, 'A2', 'Satellite Provider'), +('80.88.151.0', '80.88.151.15', 1347983104, 1347983119, 'NG', 'Nigeria'), +('80.88.151.16', '80.88.151.127', 1347983120, 1347983231, 'IQ', 'Iraq'), +('80.88.151.128', '80.88.151.143', 1347983232, 1347983247, 'A2', 'Satellite Provider'), +('80.88.151.144', '80.88.151.159', 1347983248, 1347983263, 'DK', 'Denmark'), +('80.88.151.160', '80.88.151.199', 1347983264, 1347983303, 'A2', 'Satellite Provider'), +('80.88.151.200', '80.88.151.207', 1347983304, 1347983311, 'NG', 'Nigeria'), +('80.88.151.208', '80.88.151.215', 1347983312, 1347983319, 'A2', 'Satellite Provider'), +('80.88.151.216', '80.88.151.223', 1347983320, 1347983327, 'NG', 'Nigeria'), +('80.88.151.224', '80.88.151.255', 1347983328, 1347983359, 'A2', 'Satellite Provider'), +('80.88.152.0', '80.88.152.159', 1347983360, 1347983519, 'NG', 'Nigeria'), +('80.88.152.160', '80.88.152.167', 1347983520, 1347983527, 'A2', 'Satellite Provider'), +('80.88.152.168', '80.88.152.175', 1347983528, 1347983535, 'NG', 'Nigeria'), +('80.88.152.176', '80.88.152.183', 1347983536, 1347983543, 'A2', 'Satellite Provider'), +('80.88.152.184', '80.88.152.191', 1347983544, 1347983551, 'NG', 'Nigeria'), +('80.88.152.192', '80.88.152.199', 1347983552, 1347983559, 'A2', 'Satellite Provider'), +('80.88.152.200', '80.88.152.215', 1347983560, 1347983575, 'NG', 'Nigeria'), +('80.88.152.216', '80.88.152.231', 1347983576, 1347983591, 'A2', 'Satellite Provider'), +('80.88.152.232', '80.88.152.239', 1347983592, 1347983599, 'NG', 'Nigeria'), +('80.88.152.240', '80.88.154.15', 1347983600, 1347983887, 'A2', 'Satellite Provider'), +('80.88.154.16', '80.88.154.39', 1347983888, 1347983911, 'NG', 'Nigeria'), +('80.88.154.40', '80.88.154.47', 1347983912, 1347983919, 'A2', 'Satellite Provider'), +('80.88.154.48', '80.88.154.63', 1347983920, 1347983935, 'NG', 'Nigeria'), +('80.88.154.64', '80.88.154.71', 1347983936, 1347983943, 'A2', 'Satellite Provider'), +('80.88.154.72', '80.88.154.79', 1347983944, 1347983951, 'NG', 'Nigeria'), +('80.88.154.80', '80.88.154.95', 1347983952, 1347983967, 'A2', 'Satellite Provider'), +('80.88.154.96', '80.88.154.103', 1347983968, 1347983975, 'NG', 'Nigeria'), +('80.88.154.104', '80.88.154.111', 1347983976, 1347983983, 'A2', 'Satellite Provider'), +('80.88.154.112', '80.88.155.175', 1347983984, 1347984303, 'NG', 'Nigeria'), +('80.88.155.176', '80.88.155.183', 1347984304, 1347984311, 'A2', 'Satellite Provider'), +('80.88.155.184', '80.88.155.207', 1347984312, 1347984335, 'NG', 'Nigeria'), +('80.88.155.208', '80.88.155.215', 1347984336, 1347984343, 'A2', 'Satellite Provider'), +('80.88.155.216', '80.88.155.223', 1347984344, 1347984351, 'NG', 'Nigeria'), +('80.88.155.224', '80.88.155.255', 1347984352, 1347984383, 'A2', 'Satellite Provider'), +('80.88.156.0', '80.88.156.15', 1347984384, 1347984399, 'NG', 'Nigeria'), +('80.88.156.16', '80.88.156.31', 1347984400, 1347984415, 'A2', 'Satellite Provider'), +('80.88.156.32', '80.88.156.39', 1347984416, 1347984423, 'NG', 'Nigeria'), +('80.88.156.40', '80.88.156.191', 1347984424, 1347984575, 'A2', 'Satellite Provider'), +('80.88.156.192', '80.88.156.223', 1347984576, 1347984607, 'NG', 'Nigeria'), +('80.88.156.224', '80.88.157.7', 1347984608, 1347984647, 'A2', 'Satellite Provider'), +('80.88.157.8', '80.88.157.31', 1347984648, 1347984671, 'NG', 'Nigeria'), +('80.88.157.32', '80.88.157.79', 1347984672, 1347984719, 'A2', 'Satellite Provider'), +('80.88.157.80', '80.88.157.111', 1347984720, 1347984751, 'NG', 'Nigeria'), +('80.88.157.112', '80.88.157.231', 1347984752, 1347984871, 'A2', 'Satellite Provider'), +('80.88.157.232', '80.88.158.7', 1347984872, 1347984903, 'NG', 'Nigeria'), +('80.88.158.8', '80.88.158.31', 1347984904, 1347984927, 'A2', 'Satellite Provider'), +('80.88.158.32', '80.88.158.47', 1347984928, 1347984943, 'NG', 'Nigeria'), +('80.88.158.48', '80.88.158.63', 1347984944, 1347984959, 'A2', 'Satellite Provider'), +('80.88.158.64', '80.88.158.103', 1347984960, 1347984999, 'NG', 'Nigeria'), +('80.88.158.104', '80.88.158.111', 1347985000, 1347985007, 'A2', 'Satellite Provider'), +('80.88.158.112', '80.88.158.119', 1347985008, 1347985015, 'NG', 'Nigeria'), +('80.88.158.120', '80.88.158.127', 1347985016, 1347985023, 'A2', 'Satellite Provider'), +('80.88.158.128', '80.88.158.143', 1347985024, 1347985039, 'NG', 'Nigeria'), +('80.88.158.144', '80.88.158.199', 1347985040, 1347985095, 'A2', 'Satellite Provider'), +('80.88.158.200', '80.88.158.223', 1347985096, 1347985119, 'NG', 'Nigeria'), +('80.88.158.224', '80.88.158.255', 1347985120, 1347985151, 'A2', 'Satellite Provider'), +('80.88.159.0', '80.88.159.255', 1347985152, 1347985407, 'DK', 'Denmark'), +('80.88.160.0', '80.88.175.255', 1347985408, 1347989503, 'IT', 'Italy'), +('80.88.176.0', '80.88.191.255', 1347989504, 1347993599, 'FI', 'Finland'), +('80.88.192.0', '80.88.223.255', 1347993600, 1348001791, 'GB', 'United Kingdom'), +('80.88.224.0', '80.88.239.255', 1348001792, 1348005887, 'ES', 'Spain'), +('80.88.240.0', '80.88.255.255', 1348005888, 1348009983, 'BH', 'Bahrain'), +('80.89.0.0', '80.89.15.255', 1348009984, 1348014079, 'RU', 'Russian Federation'), +('80.89.16.0', '80.89.31.255', 1348014080, 1348018175, 'DK', 'Denmark'), +('80.89.32.0', '80.89.63.255', 1348018176, 1348026367, 'NO', 'Norway'), +('80.89.64.0', '80.89.79.255', 1348026368, 1348030463, 'DE', 'Germany'), +('80.89.80.0', '80.89.95.255', 1348030464, 1348034559, 'GB', 'United Kingdom'), +('80.89.96.0', '80.89.111.255', 1348034560, 1348038655, 'AT', 'Austria'), +('80.89.112.0', '80.89.127.255', 1348038656, 1348042751, 'FR', 'France'), +('80.89.128.0', '80.89.159.255', 1348042752, 1348050943, 'RU', 'Russian Federation'), +('80.89.160.0', '80.89.175.255', 1348050944, 1348055039, 'SE', 'Sweden'), +('80.89.176.0', '80.89.187.255', 1348055040, 1348058111, 'NG', 'Nigeria'), +('80.89.188.0', '80.89.191.255', 1348058112, 1348059135, 'LB', 'Lebanon'), +('80.89.192.0', '80.89.207.255', 1348059136, 1348063231, 'RU', 'Russian Federation'), +('80.89.208.0', '80.89.223.255', 1348063232, 1348067327, 'CH', 'Switzerland'), +('80.89.224.0', '80.89.239.255', 1348067328, 1348071423, 'NL', 'Netherlands'), +('80.89.240.0', '80.89.255.255', 1348071424, 1348075519, 'DE', 'Germany'), +('80.90.0.0', '80.90.1.191', 1348075520, 1348075967, 'LV', 'Latvia'), +('80.90.1.192', '80.90.1.255', 1348075968, 1348076031, 'PA', 'Panama'), +('80.90.2.0', '80.90.2.255', 1348076032, 1348076287, 'LV', 'Latvia'), +('80.90.3.0', '80.90.3.255', 1348076288, 1348076543, 'RU', 'Russian Federation'), +('80.90.4.0', '80.90.31.255', 1348076544, 1348083711, 'LV', 'Latvia'), +('80.90.32.0', '80.90.63.255', 1348083712, 1348091903, 'LU', 'Luxembourg'), +('80.90.64.0', '80.90.79.255', 1348091904, 1348095999, 'RU', 'Russian Federation'), +('80.90.80.0', '80.90.95.255', 1348096000, 1348100095, 'AL', 'Albania'), +('80.90.96.0', '80.90.111.255', 1348100096, 1348104191, 'DE', 'Germany'), +('80.90.112.0', '80.90.127.255', 1348104192, 1348108287, 'RU', 'Russian Federation'), +('80.90.128.0', '80.90.143.255', 1348108288, 1348112383, 'CZ', 'Czech Republic'), +('80.90.144.0', '80.90.159.255', 1348112384, 1348116479, 'DE', 'Germany'), +('80.90.160.0', '80.90.175.255', 1348116480, 1348120575, 'JO', 'Jordan'), +('80.90.176.0', '80.90.191.255', 1348120576, 1348124671, 'RU', 'Russian Federation'), +('80.90.192.0', '80.90.207.255', 1348124672, 1348128767, 'GB', 'United Kingdom'), +('80.90.208.0', '80.90.223.255', 1348128768, 1348132863, 'SI', 'Slovenia'), +('80.90.224.0', '80.90.239.255', 1348132864, 1348136959, 'UA', 'Ukraine'), +('80.90.240.0', '80.90.255.255', 1348136960, 1348141055, 'RU', 'Russian Federation'), +('80.91.0.0', '80.91.15.255', 1348141056, 1348145151, 'DK', 'Denmark'), +('80.91.16.0', '80.91.31.255', 1348145152, 1348149247, 'RU', 'Russian Federation'), +('80.91.32.0', '80.91.47.255', 1348149248, 1348153343, 'NO', 'Norway'), +('80.91.48.0', '80.91.63.255', 1348153344, 1348157439, 'IT', 'Italy'), +('80.91.64.0', '80.91.79.255', 1348157440, 1348161535, 'ES', 'Spain'), +('80.91.80.0', '80.91.83.255', 1348161536, 1348162559, 'PT', 'Portugal'), +('80.91.84.0', '80.91.95.255', 1348162560, 1348165631, 'ES', 'Spain'), +('80.91.96.0', '80.91.111.255', 1348165632, 1348169727, 'DE', 'Germany'), +('80.91.112.0', '80.91.127.255', 1348169728, 1348173823, 'AL', 'Albania'), +('80.91.128.0', '80.91.130.255', 1348173824, 1348174591, 'FI', 'Finland'), +('80.91.131.0', '80.91.143.255', 1348174592, 1348177919, 'DK', 'Denmark'), +('80.91.144.0', '80.91.159.255', 1348177920, 1348182015, 'BE', 'Belgium'), +('80.91.160.0', '80.91.191.255', 1348182016, 1348190207, 'UA', 'Ukraine'), +('80.91.192.0', '80.91.207.255', 1348190208, 1348194303, 'RU', 'Russian Federation'), +('80.91.208.0', '80.91.223.255', 1348194304, 1348198399, 'GR', 'Greece'), +('80.91.224.0', '80.91.239.255', 1348198400, 1348202495, 'NO', 'Norway'), +('80.91.240.0', '80.91.255.255', 1348202496, 1348206591, 'EU', 'Europe'), +('80.92.0.0', '80.92.47.255', 1348206592, 1348218879, 'RU', 'Russian Federation'), +('80.92.48.0', '80.92.49.31', 1348218880, 1348219167, 'DE', 'Germany'), +('80.92.49.32', '80.92.49.47', 1348219168, 1348219183, 'IQ', 'Iraq'), +('80.92.49.48', '80.92.49.111', 1348219184, 1348219247, 'DE', 'Germany'), +('80.92.49.112', '80.92.49.127', 1348219248, 1348219263, 'IQ', 'Iraq'), +('80.92.49.128', '80.92.49.159', 1348219264, 1348219295, 'BH', 'Bahrain'), +('80.92.49.160', '80.92.49.191', 1348219296, 1348219327, 'A2', 'Satellite Provider'), +('80.92.49.192', '80.92.49.255', 1348219328, 1348219391, 'SA', 'Saudi Arabia'), +('80.92.50.0', '80.92.50.255', 1348219392, 1348219647, 'DE', 'Germany'), +('80.92.51.0', '80.92.53.255', 1348219648, 1348220415, 'PK', 'Pakistan'), +('80.92.54.0', '80.92.54.63', 1348220416, 1348220479, 'SA', 'Saudi Arabia'), +('80.92.54.64', '80.92.54.95', 1348220480, 1348220511, 'DE', 'Germany'), +('80.92.54.96', '80.92.54.127', 1348220512, 1348220543, 'SA', 'Saudi Arabia'), +('80.92.54.128', '80.92.55.15', 1348220544, 1348220687, 'DE', 'Germany'), +('80.92.55.16', '80.92.55.31', 1348220688, 1348220703, 'SA', 'Saudi Arabia'), +('80.92.55.32', '80.92.55.39', 1348220704, 1348220711, 'DE', 'Germany'), +('80.92.55.40', '80.92.55.63', 1348220712, 1348220735, 'SA', 'Saudi Arabia'), +('80.92.55.64', '80.92.55.127', 1348220736, 1348220799, 'BH', 'Bahrain'), +('80.92.55.128', '80.92.55.191', 1348220800, 1348220863, 'DE', 'Germany'), +('80.92.55.192', '80.92.55.223', 1348220864, 1348220895, 'BH', 'Bahrain'), +('80.92.55.224', '80.92.59.255', 1348220896, 1348221951, 'DE', 'Germany'), +('80.92.60.0', '80.92.61.255', 1348221952, 1348222463, 'PK', 'Pakistan'), +('80.92.62.0', '80.92.63.255', 1348222464, 1348222975, 'DE', 'Germany'), +('80.92.64.0', '80.92.95.255', 1348222976, 1348231167, 'LU', 'Luxembourg'), +('80.92.96.0', '80.92.111.255', 1348231168, 1348235263, 'RU', 'Russian Federation'), +('80.92.112.0', '80.92.127.255', 1348235264, 1348239359, 'AT', 'Austria'), +('80.92.128.0', '80.92.135.255', 1348239360, 1348241407, 'SE', 'Sweden'), +('80.92.136.0', '80.92.140.255', 1348241408, 1348242687, 'GB', 'United Kingdom'), +('80.92.141.0', '80.92.143.255', 1348242688, 1348243455, 'SE', 'Sweden'), +('80.92.144.0', '80.92.159.255', 1348243456, 1348247551, 'GB', 'United Kingdom'), +('80.92.160.0', '80.92.175.255', 1348247552, 1348251647, 'RU', 'Russian Federation'), +('80.92.176.0', '80.92.191.255', 1348251648, 1348255743, 'GE', 'Georgia'), +('80.92.192.0', '80.92.223.255', 1348255744, 1348263935, 'RU', 'Russian Federation'), +('80.92.224.0', '80.92.239.255', 1348263936, 1348268031, 'UA', 'Ukraine'), +('80.92.240.0', '80.92.255.255', 1348268032, 1348272127, 'RU', 'Russian Federation'), +('80.93.0.0', '80.93.10.7', 1348272128, 1348274695, 'IE', 'Ireland'), +('80.93.10.8', '80.93.10.83', 1348274696, 1348274771, 'CH', 'Switzerland'), +('80.93.10.84', '80.93.10.87', 1348274772, 1348274775, 'IE', 'Ireland'), +('80.93.10.88', '80.93.10.103', 1348274776, 1348274791, 'CH', 'Switzerland'), +('80.93.10.104', '80.93.10.111', 1348274792, 1348274799, 'IE', 'Ireland'), +('80.93.10.112', '80.93.10.127', 1348274800, 1348274815, 'IL', 'Israel'), +('80.93.10.128', '80.93.10.239', 1348274816, 1348274927, 'IE', 'Ireland'), +('80.93.10.240', '80.93.10.247', 1348274928, 1348274935, 'IL', 'Israel'), +('80.93.10.248', '80.93.10.255', 1348274936, 1348274943, 'IE', 'Ireland'), +('80.93.11.0', '80.93.11.255', 1348274944, 1348275199, 'CH', 'Switzerland'), +('80.93.12.0', '80.93.13.255', 1348275200, 1348275711, 'GB', 'United Kingdom'), +('80.93.14.0', '80.93.14.255', 1348275712, 1348275967, 'CH', 'Switzerland'), +('80.93.15.0', '80.93.31.255', 1348275968, 1348280319, 'IE', 'Ireland'), +('80.93.32.0', '80.93.47.255', 1348280320, 1348284415, 'AT', 'Austria'), +('80.93.48.0', '80.93.63.255', 1348284416, 1348288511, 'RU', 'Russian Federation'), +('80.93.64.0', '80.93.79.255', 1348288512, 1348292607, 'IT', 'Italy'), +('80.93.80.0', '80.93.95.255', 1348292608, 1348296703, 'FR', 'France'), +('80.93.96.0', '80.93.111.255', 1348296704, 1348300799, 'RU', 'Russian Federation'), +('80.93.112.0', '80.93.127.255', 1348300800, 1348304895, 'UA', 'Ukraine'), +('80.93.128.0', '80.93.143.255', 1348304896, 1348308991, 'IT', 'Italy'), +('80.93.144.0', '80.93.159.255', 1348308992, 1348313087, 'MT', 'Malta'), +('80.93.160.0', '80.93.175.255', 1348313088, 1348317183, 'GB', 'United Kingdom'), +('80.93.176.0', '80.93.191.255', 1348317184, 1348321279, 'RU', 'Russian Federation'), +('80.93.192.0', '80.93.207.255', 1348321280, 1348325375, 'GB', 'United Kingdom'), +('80.93.208.0', '80.93.223.255', 1348325376, 1348329471, 'TR', 'Turkey'), +('80.93.224.0', '80.93.255.255', 1348329472, 1348337663, 'RS', 'Serbia'), +('80.94.0.0', '80.94.15.255', 1348337664, 1348341759, 'ES', 'Spain'), +('80.94.16.0', '80.94.31.255', 1348341760, 1348345855, 'PL', 'Poland'), +('80.94.32.0', '80.94.47.255', 1348345856, 1348349951, 'GB', 'United Kingdom'), +('80.94.48.0', '80.94.63.255', 1348349952, 1348354047, 'SK', 'Slovakia'), +('80.94.64.0', '80.94.79.255', 1348354048, 1348358143, 'NL', 'Netherlands'), +('80.94.80.0', '80.94.95.255', 1348358144, 1348362239, 'DE', 'Germany'), +('80.94.96.0', '80.94.111.255', 1348362240, 1348366335, 'MC', 'Monaco'), +('80.94.112.0', '80.94.118.255', 1348366336, 1348368127, 'IT', 'Italy'), +('80.94.119.0', '80.94.119.255', 1348368128, 1348368383, 'A2', 'Satellite Provider'), +('80.94.120.0', '80.94.127.255', 1348368384, 1348370431, 'IT', 'Italy'), +('80.94.128.0', '80.94.143.255', 1348370432, 1348374527, 'DE', 'Germany'), +('80.94.144.0', '80.94.159.255', 1348374528, 1348378623, 'CH', 'Switzerland'), +('80.94.160.0', '80.94.175.255', 1348378624, 1348382719, 'BY', 'Belarus'), +('80.94.176.0', '80.94.191.255', 1348382720, 1348386815, 'FR', 'France'), +('80.94.192.0', '80.94.207.255', 1348386816, 1348390911, 'GB', 'United Kingdom'), +('80.94.208.0', '80.94.223.255', 1348390912, 1348395007, 'SE', 'Sweden'), +('80.94.224.0', '80.94.239.255', 1348395008, 1348399103, 'BY', 'Belarus'), +('80.94.240.0', '80.94.255.255', 1348399104, 1348403199, 'MD', 'Moldova, Republic of'), +('80.95.0.0', '80.95.15.255', 1348403200, 1348407295, 'EG', 'Egypt'), +('80.95.16.0', '80.95.31.255', 1348407296, 1348411391, 'BG', 'Bulgaria'), +('80.95.32.0', '80.95.47.255', 1348411392, 1348415487, 'RU', 'Russian Federation'), +('80.95.48.0', '80.95.63.255', 1348415488, 1348419583, 'GB', 'United Kingdom'), +('80.95.64.0', '80.95.95.255', 1348419584, 1348427775, 'HU', 'Hungary'), +('80.95.96.0', '80.95.127.255', 1348427776, 1348435967, 'CZ', 'Czech Republic'), +('80.95.128.0', '80.95.143.255', 1348435968, 1348440063, 'FI', 'Finland'), +('80.95.144.0', '80.95.148.127', 1348440064, 1348441215, 'DE', 'Germany'), +('80.95.148.128', '80.95.148.255', 1348441216, 1348441343, 'NL', 'Netherlands'), +('80.95.149.0', '80.95.150.255', 1348441344, 1348441855, 'DE', 'Germany'), +('80.95.151.0', '80.95.151.255', 1348441856, 1348442111, 'NL', 'Netherlands'), +('80.95.152.0', '80.95.157.255', 1348442112, 1348443647, 'DE', 'Germany'), +('80.95.158.0', '80.95.175.255', 1348443648, 1348448255, 'NL', 'Netherlands'), +('80.95.176.0', '80.95.207.255', 1348448256, 1348456447, 'GB', 'United Kingdom'), +('80.95.208.0', '80.95.223.255', 1348456448, 1348460543, 'BH', 'Bahrain'), +('80.95.224.0', '80.95.239.255', 1348460544, 1348464639, 'SI', 'Slovenia'), +('80.95.240.0', '80.95.255.255', 1348464640, 1348468735, 'CZ', 'Czech Republic'), +('80.96.0.0', '80.97.55.255', 1348468736, 1348548607, 'RO', 'Romania'), +('80.97.56.0', '80.97.59.255', 1348548608, 1348549631, 'MD', 'Moldova, Republic of'), +('80.97.60.0', '80.97.255.255', 1348549632, 1348599807, 'RO', 'Romania'), +('80.98.0.0', '80.99.255.255', 1348599808, 1348730879, 'HU', 'Hungary'), +('80.100.0.0', '80.101.255.255', 1348730880, 1348861951, 'NL', 'Netherlands'), +('80.102.0.0', '80.103.255.255', 1348861952, 1348993023, 'ES', 'Spain'), +('80.104.0.0', '80.105.255.255', 1348993024, 1349124095, 'IT', 'Italy'), +('80.106.0.0', '80.107.255.255', 1349124096, 1349255167, 'GR', 'Greece'), +('80.108.0.0', '80.111.255.255', 1349255168, 1349517311, 'AT', 'Austria'), +('80.112.0.0', '80.115.191.255', 1349517312, 1349763071, 'NL', 'Netherlands'), +('80.115.192.0', '80.115.223.255', 1349763072, 1349771263, 'RU', 'Russian Federation'), +('80.115.224.0', '80.115.255.255', 1349771264, 1349779455, 'NL', 'Netherlands'), +('80.116.0.0', '80.117.255.255', 1349779456, 1349910527, 'IT', 'Italy'), +('80.118.0.0', '80.119.255.255', 1349910528, 1350041599, 'FR', 'France'), +('80.120.0.0', '80.120.193.127', 1350041600, 1350091135, 'AT', 'Austria'), +('80.120.193.128', '80.120.193.191', 1350091136, 1350091199, 'SA', 'Saudi Arabia'), +('80.120.193.192', '80.120.196.215', 1350091200, 1350091991, 'AT', 'Austria'), +('80.120.196.216', '80.120.196.223', 1350091992, 1350091999, 'SA', 'Saudi Arabia'), +('80.120.196.224', '80.120.197.255', 1350092000, 1350092287, 'AT', 'Austria'), +('80.120.198.0', '80.120.198.255', 1350092288, 1350092543, 'A2', 'Satellite Provider'), +('80.120.199.0', '80.122.165.255', 1350092544, 1350215167, 'AT', 'Austria'), +('80.122.166.0', '80.122.166.23', 1350215168, 1350215191, 'IQ', 'Iraq'), +('80.122.166.24', '80.122.167.255', 1350215192, 1350215679, 'AT', 'Austria'), +('80.122.168.0', '80.122.175.255', 1350215680, 1350217727, 'A2', 'Satellite Provider'), +('80.122.176.0', '80.122.185.255', 1350217728, 1350220287, 'AT', 'Austria'), +('80.122.186.0', '80.122.186.255', 1350220288, 1350220543, 'DE', 'Germany'), +('80.122.187.0', '80.123.225.15', 1350220544, 1350295823, 'AT', 'Austria'), +('80.123.225.16', '80.123.225.23', 1350295824, 1350295831, 'SA', 'Saudi Arabia'), +('80.123.225.24', '80.123.225.39', 1350295832, 1350295847, 'AT', 'Austria'), +('80.123.225.40', '80.123.225.47', 1350295848, 1350295855, 'SA', 'Saudi Arabia'), +('80.123.225.48', '80.123.225.255', 1350295856, 1350296063, 'AT', 'Austria'), +('80.123.226.0', '80.123.226.255', 1350296064, 1350296319, 'A2', 'Satellite Provider'), +('80.123.227.0', '80.123.227.7', 1350296320, 1350296327, 'AT', 'Austria'), +('80.123.227.8', '80.123.227.23', 1350296328, 1350296343, 'A2', 'Satellite Provider'), +('80.123.227.24', '80.123.227.31', 1350296344, 1350296351, 'AT', 'Austria'), +('80.123.227.32', '80.123.227.39', 1350296352, 1350296359, 'A2', 'Satellite Provider'), +('80.123.227.40', '80.123.227.47', 1350296360, 1350296367, 'AT', 'Austria'), +('80.123.227.48', '80.123.227.67', 1350296368, 1350296387, 'A2', 'Satellite Provider'), +('80.123.227.68', '80.123.227.71', 1350296388, 1350296391, 'AT', 'Austria'), +('80.123.227.72', '80.123.227.75', 1350296392, 1350296395, 'A2', 'Satellite Provider'), +('80.123.227.76', '80.123.227.79', 1350296396, 1350296399, 'AT', 'Austria'), +('80.123.227.80', '80.123.227.119', 1350296400, 1350296439, 'A2', 'Satellite Provider'), +('80.123.227.120', '80.123.227.191', 1350296440, 1350296511, 'AT', 'Austria'), +('80.123.227.192', '80.123.227.199', 1350296512, 1350296519, 'A2', 'Satellite Provider'), +('80.123.227.200', '80.123.227.219', 1350296520, 1350296539, 'AT', 'Austria'), +('80.123.227.220', '80.123.227.223', 1350296540, 1350296543, 'A2', 'Satellite Provider'), +('80.123.227.224', '80.123.255.255', 1350296544, 1350303743, 'AT', 'Austria'), +('80.124.0.0', '80.125.255.255', 1350303744, 1350434815, 'FR', 'France'), +('80.126.0.0', '80.127.255.255', 1350434816, 1350565887, 'NL', 'Netherlands'), +('80.128.0.0', '80.146.188.127', 1350565888, 1351793791, 'DE', 'Germany'), +('80.146.188.128', '80.146.188.191', 1351793792, 1351793855, 'GB', 'United Kingdom'), +('80.146.188.192', '80.146.201.239', 1351793856, 1351797231, 'DE', 'Germany'), +('80.146.201.240', '80.146.201.247', 1351797232, 1351797239, 'PL', 'Poland'), +('80.146.201.248', '80.146.214.31', 1351797240, 1351800351, 'DE', 'Germany'), +('80.146.214.32', '80.146.214.39', 1351800352, 1351800359, 'CN', 'China'), +('80.146.214.40', '80.146.217.239', 1351800360, 1351801327, 'DE', 'Germany'), +('80.146.217.240', '80.146.217.247', 1351801328, 1351801335, 'HU', 'Hungary'), +('80.146.217.248', '80.146.239.255', 1351801336, 1351806975, 'DE', 'Germany'), +('80.146.240.0', '80.146.240.255', 1351806976, 1351807231, 'IT', 'Italy'), +('80.146.241.0', '80.148.11.207', 1351807232, 1351879631, 'DE', 'Germany'), +('80.148.11.208', '80.148.11.215', 1351879632, 1351879639, 'IT', 'Italy'), +('80.148.11.216', '80.148.13.63', 1351879640, 1351879999, 'DE', 'Germany'), +('80.148.13.64', '80.148.13.95', 1351880000, 1351880031, 'IT', 'Italy'), +('80.148.13.96', '80.150.9.255', 1351880032, 1352010239, 'DE', 'Germany'), +('80.150.10.0', '80.150.10.255', 1352010240, 1352010495, 'US', 'United States'), +('80.150.11.0', '80.150.14.183', 1352010496, 1352011447, 'DE', 'Germany'), +('80.150.14.184', '80.150.14.191', 1352011448, 1352011455, 'IT', 'Italy'), +('80.150.14.192', '80.152.3.151', 1352011456, 1352139671, 'DE', 'Germany'), +('80.152.3.152', '80.152.3.159', 1352139672, 1352139679, 'IT', 'Italy'), +('80.152.3.160', '80.152.22.135', 1352139680, 1352144519, 'DE', 'Germany'), +('80.152.22.136', '80.152.22.143', 1352144520, 1352144527, 'IT', 'Italy'), +('80.152.22.144', '80.152.22.151', 1352144528, 1352144535, 'US', 'United States'), +('80.152.22.152', '80.152.22.175', 1352144536, 1352144559, 'DE', 'Germany'), +('80.152.22.176', '80.152.22.191', 1352144560, 1352144575, 'HK', 'Hong Kong'), +('80.152.22.192', '80.152.32.63', 1352144576, 1352147007, 'DE', 'Germany'), +('80.152.32.64', '80.152.32.71', 1352147008, 1352147015, 'SE', 'Sweden'), +('80.152.32.72', '80.152.32.163', 1352147016, 1352147107, 'DE', 'Germany'), +('80.152.32.164', '80.152.32.167', 1352147108, 1352147111, 'SE', 'Sweden'), +('80.152.32.168', '80.152.33.63', 1352147112, 1352147263, 'DE', 'Germany'), +('80.152.33.64', '80.152.33.71', 1352147264, 1352147271, 'ES', 'Spain'), +('80.152.33.72', '80.152.33.191', 1352147272, 1352147391, 'DE', 'Germany'), +('80.152.33.192', '80.152.33.199', 1352147392, 1352147399, 'CZ', 'Czech Republic'), +('80.152.33.200', '80.152.33.223', 1352147400, 1352147423, 'DE', 'Germany'), +('80.152.33.224', '80.152.33.231', 1352147424, 1352147431, 'ES', 'Spain'), +('80.152.33.232', '80.152.33.239', 1352147432, 1352147439, 'DE', 'Germany'), +('80.152.33.240', '80.152.33.247', 1352147440, 1352147447, 'SZ', 'Swaziland'), +('80.152.33.248', '80.152.36.183', 1352147448, 1352148151, 'DE', 'Germany'), +('80.152.36.184', '80.152.36.191', 1352148152, 1352148159, 'IT', 'Italy'), +('80.152.36.192', '80.152.39.15', 1352148160, 1352148751, 'DE', 'Germany'), +('80.152.39.16', '80.152.39.23', 1352148752, 1352148759, 'US', 'United States'), +('80.152.39.24', '80.154.4.239', 1352148760, 1352271087, 'DE', 'Germany'), +('80.154.4.240', '80.154.4.247', 1352271088, 1352271095, 'AT', 'Austria'), +('80.154.4.248', '80.154.30.31', 1352271096, 1352277535, 'DE', 'Germany'), +('80.154.30.32', '80.154.30.63', 1352277536, 1352277567, 'IT', 'Italy'), +('80.154.30.64', '80.156.7.103', 1352277568, 1352402791, 'DE', 'Germany'), +('80.156.7.104', '80.156.7.111', 1352402792, 1352402799, 'BE', 'Belgium'), +('80.156.7.112', '80.156.14.119', 1352402800, 1352404599, 'DE', 'Germany'), +('80.156.14.120', '80.156.14.127', 1352404600, 1352404607, 'NL', 'Netherlands'), +('80.156.14.128', '80.159.255.255', 1352404608, 1352663039, 'DE', 'Germany'), +('80.160.0.0', '80.167.255.255', 1352663040, 1353187327, 'DK', 'Denmark'), +('80.168.0.0', '80.169.8.159', 1353187328, 1353255071, 'GB', 'United Kingdom'), +('80.169.8.160', '80.169.8.175', 1353255072, 1353255087, 'CA', 'Canada'), +('80.169.8.176', '80.169.11.159', 1353255088, 1353255839, 'GB', 'United Kingdom'), +('80.169.11.160', '80.169.11.175', 1353255840, 1353255855, 'FR', 'France'), +('80.169.11.176', '80.169.20.255', 1353255856, 1353258239, 'GB', 'United Kingdom'), +('80.169.21.0', '80.169.21.23', 1353258240, 1353258263, 'SE', 'Sweden'), +('80.169.21.24', '80.169.21.31', 1353258264, 1353258271, 'GB', 'United Kingdom'), +('80.169.21.32', '80.169.21.63', 1353258272, 1353258303, 'SE', 'Sweden'), +('80.169.21.64', '80.169.21.127', 1353258304, 1353258367, 'FI', 'Finland'), +('80.169.21.128', '80.169.21.175', 1353258368, 1353258415, 'SE', 'Sweden'), +('80.169.21.176', '80.169.21.183', 1353258416, 1353258423, 'GB', 'United Kingdom'), +('80.169.21.184', '80.169.22.7', 1353258424, 1353258503, 'SE', 'Sweden'), +('80.169.22.8', '80.169.22.31', 1353258504, 1353258527, 'GB', 'United Kingdom'), +('80.169.22.32', '80.169.22.47', 1353258528, 1353258543, 'SE', 'Sweden'), +('80.169.22.48', '80.169.22.135', 1353258544, 1353258631, 'GB', 'United Kingdom'), +('80.169.22.136', '80.169.22.151', 1353258632, 1353258647, 'SE', 'Sweden'), +('80.169.22.152', '80.169.23.31', 1353258648, 1353258783, 'GB', 'United Kingdom'), +('80.169.23.32', '80.169.23.55', 1353258784, 1353258807, 'SE', 'Sweden'), +('80.169.23.56', '80.169.55.15', 1353258808, 1353266959, 'GB', 'United Kingdom'), +('80.169.55.16', '80.169.55.31', 1353266960, 1353266975, 'IE', 'Ireland'), +('80.169.55.32', '80.169.56.255', 1353266976, 1353267455, 'GB', 'United Kingdom'), +('80.169.57.0', '80.169.58.31', 1353267456, 1353267743, 'IE', 'Ireland'), +('80.169.58.32', '80.169.58.39', 1353267744, 1353267751, 'GB', 'United Kingdom'), +('80.169.58.40', '80.169.58.55', 1353267752, 1353267767, 'IE', 'Ireland'), +('80.169.58.56', '80.169.58.63', 1353267768, 1353267775, 'GB', 'United Kingdom'), +('80.169.58.64', '80.169.58.127', 1353267776, 1353267839, 'IE', 'Ireland'), +('80.169.58.128', '80.169.58.255', 1353267840, 1353267967, 'GB', 'United Kingdom'), +('80.169.59.0', '80.169.59.255', 1353267968, 1353268223, 'IE', 'Ireland'), +('80.169.60.0', '80.169.61.7', 1353268224, 1353268487, 'GB', 'United Kingdom'), +('80.169.61.8', '80.169.61.31', 1353268488, 1353268511, 'BE', 'Belgium'), +('80.169.61.32', '80.169.61.79', 1353268512, 1353268559, 'GB', 'United Kingdom'), +('80.169.61.80', '80.169.61.87', 1353268560, 1353268567, 'BE', 'Belgium'), +('80.169.61.88', '80.169.61.95', 1353268568, 1353268575, 'GB', 'United Kingdom'), +('80.169.61.96', '80.169.61.103', 1353268576, 1353268583, 'BE', 'Belgium'), +('80.169.61.104', '80.169.61.119', 1353268584, 1353268599, 'GB', 'United Kingdom'), +('80.169.61.120', '80.169.61.167', 1353268600, 1353268647, 'BE', 'Belgium'), +('80.169.61.168', '80.169.61.175', 1353268648, 1353268655, 'GB', 'United Kingdom'), +('80.169.61.176', '80.169.61.199', 1353268656, 1353268679, 'BE', 'Belgium'), +('80.169.61.200', '80.169.61.207', 1353268680, 1353268687, 'GB', 'United Kingdom'), +('80.169.61.208', '80.169.61.255', 1353268688, 1353268735, 'BE', 'Belgium'), +('80.169.62.0', '80.169.62.147', 1353268736, 1353268883, 'GB', 'United Kingdom'), +('80.169.62.148', '80.169.62.151', 1353268884, 1353268887, 'BE', 'Belgium'), +('80.169.62.152', '80.169.63.23', 1353268888, 1353269015, 'GB', 'United Kingdom'), +('80.169.63.24', '80.169.63.47', 1353269016, 1353269039, 'BE', 'Belgium'), +('80.169.63.48', '80.169.63.63', 1353269040, 1353269055, 'GB', 'United Kingdom'), +('80.169.63.64', '80.169.63.95', 1353269056, 1353269087, 'BE', 'Belgium'), +('80.169.63.96', '80.169.73.255', 1353269088, 1353271807, 'GB', 'United Kingdom'), +('80.169.74.0', '80.169.74.23', 1353271808, 1353271831, 'ES', 'Spain'), +('80.169.74.24', '80.169.74.87', 1353271832, 1353271895, 'GB', 'United Kingdom'), +('80.169.74.88', '80.169.74.111', 1353271896, 1353271919, 'ES', 'Spain'), +('80.169.74.112', '80.169.74.119', 1353271920, 1353271927, 'GB', 'United Kingdom'), +('80.169.74.120', '80.169.74.223', 1353271928, 1353272031, 'ES', 'Spain'), +('80.169.74.224', '80.169.74.231', 1353272032, 1353272039, 'FR', 'France'), +('80.169.74.232', '80.169.74.247', 1353272040, 1353272055, 'ES', 'Spain'), +('80.169.74.248', '80.169.74.255', 1353272056, 1353272063, 'GB', 'United Kingdom'), +('80.169.75.0', '80.169.75.127', 1353272064, 1353272191, 'ES', 'Spain'), +('80.169.75.128', '80.169.75.143', 1353272192, 1353272207, 'GB', 'United Kingdom'), +('80.169.75.144', '80.169.75.183', 1353272208, 1353272247, 'ES', 'Spain'), +('80.169.75.184', '80.169.75.191', 1353272248, 1353272255, 'GB', 'United Kingdom'), +('80.169.75.192', '80.169.75.239', 1353272256, 1353272303, 'ES', 'Spain'), +('80.169.75.240', '80.169.77.7', 1353272304, 1353272583, 'GB', 'United Kingdom'), +('80.169.77.8', '80.169.77.15', 1353272584, 1353272591, 'ES', 'Spain'), +('80.169.77.16', '80.169.77.23', 1353272592, 1353272599, 'GB', 'United Kingdom'), +('80.169.77.24', '80.169.77.55', 1353272600, 1353272631, 'ES', 'Spain'), +('80.169.77.56', '80.169.77.63', 1353272632, 1353272639, 'GB', 'United Kingdom'), +('80.169.77.64', '80.169.77.71', 1353272640, 1353272647, 'ES', 'Spain'), +('80.169.77.72', '80.169.77.79', 1353272648, 1353272655, 'GB', 'United Kingdom'), +('80.169.77.80', '80.169.77.87', 1353272656, 1353272663, 'ES', 'Spain'), +('80.169.77.88', '80.169.77.111', 1353272664, 1353272687, 'GB', 'United Kingdom'), +('80.169.77.112', '80.169.77.115', 1353272688, 1353272691, 'ES', 'Spain'), +('80.169.77.116', '80.169.77.127', 1353272692, 1353272703, 'GB', 'United Kingdom'), +('80.169.77.128', '80.169.77.135', 1353272704, 1353272711, 'ES', 'Spain'), +('80.169.77.136', '80.169.77.143', 1353272712, 1353272719, 'GB', 'United Kingdom'), +('80.169.77.144', '80.169.77.151', 1353272720, 1353272727, 'ES', 'Spain'), +('80.169.77.152', '80.169.77.191', 1353272728, 1353272767, 'GB', 'United Kingdom'), +('80.169.77.192', '80.169.77.199', 1353272768, 1353272775, 'ES', 'Spain'), +('80.169.77.200', '80.169.77.239', 1353272776, 1353272815, 'GB', 'United Kingdom'), +('80.169.77.240', '80.169.77.247', 1353272816, 1353272823, 'ES', 'Spain'), +('80.169.77.248', '80.169.77.255', 1353272824, 1353272831, 'GB', 'United Kingdom'), +('80.169.78.0', '80.169.78.7', 1353272832, 1353272839, 'ES', 'Spain'), +('80.169.78.8', '80.169.78.135', 1353272840, 1353272967, 'GB', 'United Kingdom'), +('80.169.78.136', '80.169.78.143', 1353272968, 1353272975, 'ES', 'Spain'), +('80.169.78.144', '80.169.78.159', 1353272976, 1353272991, 'GB', 'United Kingdom'), +('80.169.78.160', '80.169.78.167', 1353272992, 1353272999, 'ES', 'Spain'), +('80.169.78.168', '80.169.78.207', 1353273000, 1353273039, 'GB', 'United Kingdom'), +('80.169.78.208', '80.169.78.215', 1353273040, 1353273047, 'ES', 'Spain'), +('80.169.78.216', '80.169.79.255', 1353273048, 1353273343, 'GB', 'United Kingdom'), +('80.169.80.0', '80.169.81.7', 1353273344, 1353273607, 'BE', 'Belgium'), +('80.169.81.8', '80.169.81.23', 1353273608, 1353273623, 'GB', 'United Kingdom'), +('80.169.81.24', '80.169.81.31', 1353273624, 1353273631, 'BE', 'Belgium'), +('80.169.81.32', '80.169.81.39', 1353273632, 1353273639, 'GB', 'United Kingdom'), +('80.169.81.40', '80.169.81.47', 1353273640, 1353273647, 'BE', 'Belgium'), +('80.169.81.48', '80.169.81.63', 1353273648, 1353273663, 'GB', 'United Kingdom'), +('80.169.81.64', '80.169.81.111', 1353273664, 1353273711, 'BE', 'Belgium'), +('80.169.81.112', '80.169.81.119', 1353273712, 1353273719, 'GB', 'United Kingdom'), +('80.169.81.120', '80.169.81.127', 1353273720, 1353273727, 'BE', 'Belgium'), +('80.169.81.128', '80.169.84.255', 1353273728, 1353274623, 'GB', 'United Kingdom'), +('80.169.85.0', '80.169.85.31', 1353274624, 1353274655, 'ES', 'Spain'), +('80.169.85.32', '80.169.85.39', 1353274656, 1353274663, 'GB', 'United Kingdom'), +('80.169.85.40', '80.169.85.47', 1353274664, 1353274671, 'ES', 'Spain'), +('80.169.85.48', '80.169.85.95', 1353274672, 1353274719, 'GB', 'United Kingdom'), +('80.169.85.96', '80.169.85.127', 1353274720, 1353274751, 'ES', 'Spain'), +('80.169.85.128', '80.169.85.159', 1353274752, 1353274783, 'GB', 'United Kingdom'), +('80.169.85.160', '80.169.85.175', 1353274784, 1353274799, 'ES', 'Spain'), +('80.169.85.176', '80.169.85.207', 1353274800, 1353274831, 'GB', 'United Kingdom'), +('80.169.85.208', '80.169.85.215', 1353274832, 1353274839, 'ES', 'Spain'), +('80.169.85.216', '80.169.85.231', 1353274840, 1353274855, 'GB', 'United Kingdom'), +('80.169.85.232', '80.169.85.239', 1353274856, 1353274863, 'ES', 'Spain'), +('80.169.85.240', '80.169.85.255', 1353274864, 1353274879, 'GB', 'United Kingdom'), +('80.169.86.0', '80.169.86.7', 1353274880, 1353274887, 'ES', 'Spain'), +('80.169.86.8', '80.169.86.31', 1353274888, 1353274911, 'GB', 'United Kingdom'), +('80.169.86.32', '80.169.86.39', 1353274912, 1353274919, 'ES', 'Spain'), +('80.169.86.40', '80.169.86.47', 1353274920, 1353274927, 'GB', 'United Kingdom'), +('80.169.86.48', '80.169.86.63', 1353274928, 1353274943, 'ES', 'Spain'), +('80.169.86.64', '80.169.86.159', 1353274944, 1353275039, 'GB', 'United Kingdom'), +('80.169.86.160', '80.169.86.183', 1353275040, 1353275063, 'ES', 'Spain'), +('80.169.86.184', '80.169.86.223', 1353275064, 1353275103, 'GB', 'United Kingdom'), +('80.169.86.224', '80.169.86.231', 1353275104, 1353275111, 'ES', 'Spain'), +('80.169.86.232', '80.169.86.239', 1353275112, 1353275119, 'GB', 'United Kingdom'), +('80.169.86.240', '80.169.87.23', 1353275120, 1353275159, 'ES', 'Spain'), +('80.169.87.24', '80.169.87.31', 1353275160, 1353275167, 'GB', 'United Kingdom'), +('80.169.87.32', '80.169.87.95', 1353275168, 1353275231, 'ES', 'Spain'), +('80.169.87.96', '80.169.87.143', 1353275232, 1353275279, 'GB', 'United Kingdom'), +('80.169.87.144', '80.169.87.151', 1353275280, 1353275287, 'ES', 'Spain'), +('80.169.87.152', '80.169.87.159', 1353275288, 1353275295, 'GB', 'United Kingdom'), +('80.169.87.160', '80.169.87.199', 1353275296, 1353275335, 'ES', 'Spain'), +('80.169.87.200', '80.169.87.207', 1353275336, 1353275343, 'GB', 'United Kingdom'), +('80.169.87.208', '80.169.87.255', 1353275344, 1353275391, 'ES', 'Spain'), +('80.169.88.0', '80.169.95.255', 1353275392, 1353277439, 'GB', 'United Kingdom'), +('80.169.96.0', '80.169.103.255', 1353277440, 1353279487, 'CH', 'Switzerland'), +('80.169.104.0', '80.169.104.7', 1353279488, 1353279495, 'GB', 'United Kingdom'), +('80.169.104.8', '80.169.104.247', 1353279496, 1353279735, 'IT', 'Italy'), +('80.169.104.248', '80.169.105.7', 1353279736, 1353279751, 'GB', 'United Kingdom'), +('80.169.105.8', '80.169.105.15', 1353279752, 1353279759, 'IT', 'Italy'), +('80.169.105.16', '80.169.105.47', 1353279760, 1353279791, 'GB', 'United Kingdom'), +('80.169.105.48', '80.169.105.255', 1353279792, 1353279999, 'IT', 'Italy'), +('80.169.106.0', '80.169.106.7', 1353280000, 1353280007, 'GB', 'United Kingdom'), +('80.169.106.8', '80.169.106.31', 1353280008, 1353280031, 'IT', 'Italy'), +('80.169.106.32', '80.169.106.39', 1353280032, 1353280039, 'GB', 'United Kingdom'), +('80.169.106.40', '80.169.106.103', 1353280040, 1353280103, 'IT', 'Italy'), +('80.169.106.104', '80.169.106.111', 1353280104, 1353280111, 'GB', 'United Kingdom'), +('80.169.106.112', '80.169.107.47', 1353280112, 1353280303, 'IT', 'Italy'), +('80.169.107.48', '80.169.107.79', 1353280304, 1353280335, 'GB', 'United Kingdom'), +('80.169.107.80', '80.169.107.127', 1353280336, 1353280383, 'IT', 'Italy'), +('80.169.107.128', '80.169.107.135', 1353280384, 1353280391, 'GB', 'United Kingdom'), +('80.169.107.136', '80.169.107.215', 1353280392, 1353280471, 'IT', 'Italy'), +('80.169.107.216', '80.169.107.223', 1353280472, 1353280479, 'GB', 'United Kingdom'), +('80.169.107.224', '80.169.107.231', 1353280480, 1353280487, 'IT', 'Italy'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('80.169.107.232', '80.169.107.239', 1353280488, 1353280495, 'GB', 'United Kingdom'), +('80.169.107.240', '80.169.108.111', 1353280496, 1353280623, 'IT', 'Italy'), +('80.169.108.112', '80.169.108.119', 1353280624, 1353280631, 'GB', 'United Kingdom'), +('80.169.108.120', '80.169.108.127', 1353280632, 1353280639, 'IT', 'Italy'), +('80.169.108.128', '80.169.108.135', 1353280640, 1353280647, 'GB', 'United Kingdom'), +('80.169.108.136', '80.169.108.143', 1353280648, 1353280655, 'IT', 'Italy'), +('80.169.108.144', '80.169.108.151', 1353280656, 1353280663, 'GB', 'United Kingdom'), +('80.169.108.152', '80.169.108.175', 1353280664, 1353280687, 'IT', 'Italy'), +('80.169.108.176', '80.169.108.191', 1353280688, 1353280703, 'GB', 'United Kingdom'), +('80.169.108.192', '80.169.109.255', 1353280704, 1353281023, 'IT', 'Italy'), +('80.169.110.0', '80.169.110.255', 1353281024, 1353281279, 'GB', 'United Kingdom'), +('80.169.111.0', '80.169.111.255', 1353281280, 1353281535, 'BE', 'Belgium'), +('80.169.112.0', '80.169.113.255', 1353281536, 1353282047, 'GB', 'United Kingdom'), +('80.169.114.0', '80.169.114.63', 1353282048, 1353282111, 'IT', 'Italy'), +('80.169.114.64', '80.169.114.71', 1353282112, 1353282119, 'GB', 'United Kingdom'), +('80.169.114.72', '80.169.114.191', 1353282120, 1353282239, 'IT', 'Italy'), +('80.169.114.192', '80.169.114.199', 1353282240, 1353282247, 'GB', 'United Kingdom'), +('80.169.114.200', '80.169.114.207', 1353282248, 1353282255, 'IT', 'Italy'), +('80.169.114.208', '80.169.114.215', 1353282256, 1353282263, 'GB', 'United Kingdom'), +('80.169.114.216', '80.169.114.239', 1353282264, 1353282287, 'IT', 'Italy'), +('80.169.114.240', '80.169.114.247', 1353282288, 1353282295, 'GB', 'United Kingdom'), +('80.169.114.248', '80.169.114.255', 1353282296, 1353282303, 'IT', 'Italy'), +('80.169.115.0', '80.169.134.159', 1353282304, 1353287327, 'GB', 'United Kingdom'), +('80.169.134.160', '80.169.134.191', 1353287328, 1353287359, 'IE', 'Ireland'), +('80.169.134.192', '80.169.136.255', 1353287360, 1353287935, 'GB', 'United Kingdom'), +('80.169.137.0', '80.169.137.15', 1353287936, 1353287951, 'IE', 'Ireland'), +('80.169.137.16', '80.169.137.23', 1353287952, 1353287959, 'GB', 'United Kingdom'), +('80.169.137.24', '80.169.137.95', 1353287960, 1353288031, 'IE', 'Ireland'), +('80.169.137.96', '80.169.137.127', 1353288032, 1353288063, 'GB', 'United Kingdom'), +('80.169.137.128', '80.169.137.135', 1353288064, 1353288071, 'IE', 'Ireland'), +('80.169.137.136', '80.169.137.143', 1353288072, 1353288079, 'GB', 'United Kingdom'), +('80.169.137.144', '80.169.137.215', 1353288080, 1353288151, 'IE', 'Ireland'), +('80.169.137.216', '80.169.137.223', 1353288152, 1353288159, 'GB', 'United Kingdom'), +('80.169.137.224', '80.169.137.231', 1353288160, 1353288167, 'IE', 'Ireland'), +('80.169.137.232', '80.169.137.255', 1353288168, 1353288191, 'GB', 'United Kingdom'), +('80.169.138.0', '80.169.138.39', 1353288192, 1353288231, 'IE', 'Ireland'), +('80.169.138.40', '80.169.138.47', 1353288232, 1353288239, 'GB', 'United Kingdom'), +('80.169.138.48', '80.169.138.127', 1353288240, 1353288319, 'IE', 'Ireland'), +('80.169.138.128', '80.169.138.215', 1353288320, 1353288407, 'GB', 'United Kingdom'), +('80.169.138.216', '80.169.138.239', 1353288408, 1353288431, 'IE', 'Ireland'), +('80.169.138.240', '80.169.138.255', 1353288432, 1353288447, 'GB', 'United Kingdom'), +('80.169.139.0', '80.169.139.63', 1353288448, 1353288511, 'IE', 'Ireland'), +('80.169.139.64', '80.169.139.79', 1353288512, 1353288527, 'GB', 'United Kingdom'), +('80.169.139.80', '80.169.139.207', 1353288528, 1353288655, 'IE', 'Ireland'), +('80.169.139.208', '80.169.139.215', 1353288656, 1353288663, 'GB', 'United Kingdom'), +('80.169.139.216', '80.169.139.239', 1353288664, 1353288687, 'IE', 'Ireland'), +('80.169.139.240', '80.169.139.255', 1353288688, 1353288703, 'GB', 'United Kingdom'), +('80.169.140.0', '80.169.140.127', 1353288704, 1353288831, 'IE', 'Ireland'), +('80.169.140.128', '80.169.140.255', 1353288832, 1353288959, 'GB', 'United Kingdom'), +('80.169.141.0', '80.169.142.31', 1353288960, 1353289247, 'IE', 'Ireland'), +('80.169.142.32', '80.169.142.39', 1353289248, 1353289255, 'GB', 'United Kingdom'), +('80.169.142.40', '80.169.142.127', 1353289256, 1353289343, 'IE', 'Ireland'), +('80.169.142.128', '80.169.142.135', 1353289344, 1353289351, 'GB', 'United Kingdom'), +('80.169.142.136', '80.169.142.143', 1353289352, 1353289359, 'IE', 'Ireland'), +('80.169.142.144', '80.169.142.151', 1353289360, 1353289367, 'GB', 'United Kingdom'), +('80.169.142.152', '80.169.142.159', 1353289368, 1353289375, 'IE', 'Ireland'), +('80.169.142.160', '80.169.142.167', 1353289376, 1353289383, 'GB', 'United Kingdom'), +('80.169.142.168', '80.169.142.175', 1353289384, 1353289391, 'IE', 'Ireland'), +('80.169.142.176', '80.169.142.199', 1353289392, 1353289415, 'GB', 'United Kingdom'), +('80.169.142.200', '80.169.142.207', 1353289416, 1353289423, 'IE', 'Ireland'), +('80.169.142.208', '80.169.142.215', 1353289424, 1353289431, 'GB', 'United Kingdom'), +('80.169.142.216', '80.169.142.255', 1353289432, 1353289471, 'IE', 'Ireland'), +('80.169.143.0', '80.169.143.127', 1353289472, 1353289599, 'GB', 'United Kingdom'), +('80.169.143.128', '80.169.143.151', 1353289600, 1353289623, 'IE', 'Ireland'), +('80.169.143.152', '80.169.143.159', 1353289624, 1353289631, 'GB', 'United Kingdom'), +('80.169.143.160', '80.169.143.175', 1353289632, 1353289647, 'IE', 'Ireland'), +('80.169.143.176', '80.169.147.255', 1353289648, 1353290751, 'GB', 'United Kingdom'), +('80.169.148.0', '80.169.148.63', 1353290752, 1353290815, 'DE', 'Germany'), +('80.169.148.64', '80.169.148.175', 1353290816, 1353290927, 'GB', 'United Kingdom'), +('80.169.148.176', '80.169.148.183', 1353290928, 1353290935, 'IE', 'Ireland'), +('80.169.148.184', '80.169.172.255', 1353290936, 1353297151, 'GB', 'United Kingdom'), +('80.169.173.0', '80.169.173.31', 1353297152, 1353297183, 'IE', 'Ireland'), +('80.169.173.32', '80.169.178.255', 1353297184, 1353298687, 'GB', 'United Kingdom'), +('80.169.179.0', '80.169.179.7', 1353298688, 1353298695, 'SE', 'Sweden'), +('80.169.179.8', '80.169.179.15', 1353298696, 1353298703, 'DE', 'Germany'), +('80.169.179.16', '80.169.179.31', 1353298704, 1353298719, 'GB', 'United Kingdom'), +('80.169.179.32', '80.169.179.63', 1353298720, 1353298751, 'DE', 'Germany'), +('80.169.179.64', '80.169.179.191', 1353298752, 1353298879, 'SE', 'Sweden'), +('80.169.179.192', '80.169.179.199', 1353298880, 1353298887, 'GB', 'United Kingdom'), +('80.169.179.200', '80.169.179.207', 1353298888, 1353298895, 'SE', 'Sweden'), +('80.169.179.208', '80.169.179.223', 1353298896, 1353298911, 'GB', 'United Kingdom'), +('80.169.179.224', '80.169.182.151', 1353298912, 1353299607, 'SE', 'Sweden'), +('80.169.182.152', '80.169.182.159', 1353299608, 1353299615, 'GB', 'United Kingdom'), +('80.169.182.160', '80.169.182.175', 1353299616, 1353299631, 'SE', 'Sweden'), +('80.169.182.176', '80.169.182.191', 1353299632, 1353299647, 'GB', 'United Kingdom'), +('80.169.182.192', '80.169.182.255', 1353299648, 1353299711, 'SE', 'Sweden'), +('80.169.183.0', '80.169.183.127', 1353299712, 1353299839, 'GB', 'United Kingdom'), +('80.169.183.128', '80.169.183.135', 1353299840, 1353299847, 'SE', 'Sweden'), +('80.169.183.136', '80.169.183.151', 1353299848, 1353299863, 'GB', 'United Kingdom'), +('80.169.183.152', '80.169.183.167', 1353299864, 1353299879, 'SE', 'Sweden'), +('80.169.183.168', '80.169.183.175', 1353299880, 1353299887, 'GB', 'United Kingdom'), +('80.169.183.176', '80.169.183.199', 1353299888, 1353299911, 'SE', 'Sweden'), +('80.169.183.200', '80.169.183.255', 1353299912, 1353299967, 'GB', 'United Kingdom'), +('80.169.184.0', '80.169.184.63', 1353299968, 1353300031, 'SE', 'Sweden'), +('80.169.184.64', '80.169.184.71', 1353300032, 1353300039, 'GB', 'United Kingdom'), +('80.169.184.72', '80.169.184.79', 1353300040, 1353300047, 'SE', 'Sweden'), +('80.169.184.80', '80.169.184.95', 1353300048, 1353300063, 'GB', 'United Kingdom'), +('80.169.184.96', '80.169.185.47', 1353300064, 1353300271, 'SE', 'Sweden'), +('80.169.185.48', '80.169.185.55', 1353300272, 1353300279, 'FI', 'Finland'), +('80.169.185.56', '80.169.185.127', 1353300280, 1353300351, 'SE', 'Sweden'), +('80.169.185.128', '80.169.185.143', 1353300352, 1353300367, 'GB', 'United Kingdom'), +('80.169.185.144', '80.169.185.159', 1353300368, 1353300383, 'SE', 'Sweden'), +('80.169.185.160', '80.169.188.103', 1353300384, 1353301095, 'GB', 'United Kingdom'), +('80.169.188.104', '80.169.188.111', 1353301096, 1353301103, 'US', 'United States'), +('80.169.188.112', '80.169.203.47', 1353301104, 1353304879, 'GB', 'United Kingdom'), +('80.169.203.48', '80.169.203.63', 1353304880, 1353304895, 'ES', 'Spain'), +('80.169.203.64', '80.169.205.255', 1353304896, 1353305599, 'GB', 'United Kingdom'), +('80.169.206.0', '80.169.206.7', 1353305600, 1353305607, 'IE', 'Ireland'), +('80.169.206.8', '80.169.207.255', 1353305608, 1353306111, 'GB', 'United Kingdom'), +('80.169.208.0', '80.169.209.255', 1353306112, 1353306623, 'ES', 'Spain'), +('80.169.210.0', '80.169.211.0', 1353306624, 1353306880, 'BE', 'Belgium'), +('80.169.211.1', '80.169.211.255', 1353306881, 1353307135, 'GB', 'United Kingdom'), +('80.169.212.0', '80.169.212.7', 1353307136, 1353307143, 'IT', 'Italy'), +('80.169.212.8', '80.169.215.255', 1353307144, 1353308159, 'GB', 'United Kingdom'), +('80.169.216.0', '80.169.219.255', 1353308160, 1353309183, 'FR', 'France'), +('80.169.220.0', '80.169.225.7', 1353309184, 1353310471, 'GB', 'United Kingdom'), +('80.169.225.8', '80.169.225.15', 1353310472, 1353310479, 'ES', 'Spain'), +('80.169.225.16', '80.169.225.31', 1353310480, 1353310495, 'GB', 'United Kingdom'), +('80.169.225.32', '80.169.225.63', 1353310496, 1353310527, 'ES', 'Spain'), +('80.169.225.64', '80.169.225.79', 1353310528, 1353310543, 'GB', 'United Kingdom'), +('80.169.225.80', '80.169.225.95', 1353310544, 1353310559, 'ES', 'Spain'), +('80.169.225.96', '80.169.225.119', 1353310560, 1353310583, 'GB', 'United Kingdom'), +('80.169.225.120', '80.169.225.127', 1353310584, 1353310591, 'ES', 'Spain'), +('80.169.225.128', '80.169.225.159', 1353310592, 1353310623, 'GB', 'United Kingdom'), +('80.169.225.160', '80.169.225.207', 1353310624, 1353310671, 'ES', 'Spain'), +('80.169.225.208', '80.169.226.255', 1353310672, 1353310975, 'GB', 'United Kingdom'), +('80.169.227.0', '80.169.227.47', 1353310976, 1353311023, 'IT', 'Italy'), +('80.169.227.48', '80.169.227.79', 1353311024, 1353311055, 'GB', 'United Kingdom'), +('80.169.227.80', '80.169.227.119', 1353311056, 1353311095, 'IT', 'Italy'), +('80.169.227.120', '80.169.227.127', 1353311096, 1353311103, 'GB', 'United Kingdom'), +('80.169.227.128', '80.169.227.143', 1353311104, 1353311119, 'IT', 'Italy'), +('80.169.227.144', '80.169.227.159', 1353311120, 1353311135, 'GB', 'United Kingdom'), +('80.169.227.160', '80.169.227.199', 1353311136, 1353311175, 'IT', 'Italy'), +('80.169.227.200', '80.169.227.239', 1353311176, 1353311215, 'GB', 'United Kingdom'), +('80.169.227.240', '80.169.227.255', 1353311216, 1353311231, 'IT', 'Italy'), +('80.169.228.0', '80.169.231.255', 1353311232, 1353312255, 'GB', 'United Kingdom'), +('80.169.232.0', '80.169.233.255', 1353312256, 1353312767, 'CH', 'Switzerland'), +('80.169.234.0', '80.169.234.7', 1353312768, 1353312775, 'GB', 'United Kingdom'), +('80.169.234.8', '80.169.234.39', 1353312776, 1353312807, 'IT', 'Italy'), +('80.169.234.40', '80.169.234.47', 1353312808, 1353312815, 'GB', 'United Kingdom'), +('80.169.234.48', '80.169.234.63', 1353312816, 1353312831, 'IT', 'Italy'), +('80.169.234.64', '80.169.234.65', 1353312832, 1353312833, 'GB', 'United Kingdom'), +('80.169.234.66', '80.169.234.81', 1353312834, 1353312849, 'IT', 'Italy'), +('80.169.234.82', '80.169.234.95', 1353312850, 1353312863, 'GB', 'United Kingdom'), +('80.169.234.96', '80.169.234.103', 1353312864, 1353312871, 'IT', 'Italy'), +('80.169.234.104', '80.169.234.111', 1353312872, 1353312879, 'GB', 'United Kingdom'), +('80.169.234.112', '80.169.234.119', 1353312880, 1353312887, 'IT', 'Italy'), +('80.169.234.120', '80.169.239.255', 1353312888, 1353314303, 'GB', 'United Kingdom'), +('80.169.240.0', '80.169.241.255', 1353314304, 1353314815, 'CH', 'Switzerland'), +('80.169.242.0', '80.169.251.255', 1353314816, 1353317375, 'GB', 'United Kingdom'), +('80.169.252.0', '80.169.252.255', 1353317376, 1353317631, 'FR', 'France'), +('80.169.253.0', '80.169.255.255', 1353317632, 1353318399, 'GB', 'United Kingdom'), +('80.170.0.0', '80.170.255.255', 1353318400, 1353383935, 'FR', 'France'), +('80.171.0.0', '80.171.255.255', 1353383936, 1353449471, 'DE', 'Germany'), +('80.172.0.0', '80.172.255.255', 1353449472, 1353515007, 'PT', 'Portugal'), +('80.173.0.0', '80.174.255.255', 1353515008, 1353646079, 'ES', 'Spain'), +('80.175.0.0', '80.177.255.255', 1353646080, 1353842687, 'GB', 'United Kingdom'), +('80.178.0.0', '80.179.95.15', 1353842688, 1353932559, 'IL', 'Israel'), +('80.179.95.16', '80.179.95.23', 1353932560, 1353932567, 'A2', 'Satellite Provider'), +('80.179.95.24', '80.179.95.31', 1353932568, 1353932575, 'IL', 'Israel'), +('80.179.95.32', '80.179.95.47', 1353932576, 1353932591, 'A2', 'Satellite Provider'), +('80.179.95.48', '80.179.164.31', 1353932592, 1353950239, 'IL', 'Israel'), +('80.179.164.32', '80.179.164.55', 1353950240, 1353950263, 'A2', 'Satellite Provider'), +('80.179.164.56', '80.179.164.143', 1353950264, 1353950351, 'IL', 'Israel'), +('80.179.164.144', '80.179.164.159', 1353950352, 1353950367, 'A2', 'Satellite Provider'), +('80.179.164.160', '80.179.164.191', 1353950368, 1353950399, 'IL', 'Israel'), +('80.179.164.192', '80.179.164.207', 1353950400, 1353950415, 'A2', 'Satellite Provider'), +('80.179.164.208', '80.179.168.255', 1353950416, 1353951487, 'IL', 'Israel'), +('80.179.169.0', '80.179.169.15', 1353951488, 1353951503, 'A2', 'Satellite Provider'), +('80.179.169.16', '80.179.169.23', 1353951504, 1353951511, 'IL', 'Israel'), +('80.179.169.24', '80.179.169.31', 1353951512, 1353951519, 'A2', 'Satellite Provider'), +('80.179.169.32', '80.179.169.63', 1353951520, 1353951551, 'IL', 'Israel'), +('80.179.169.64', '80.179.169.103', 1353951552, 1353951591, 'A2', 'Satellite Provider'), +('80.179.169.104', '80.179.169.127', 1353951592, 1353951615, 'IL', 'Israel'), +('80.179.169.128', '80.179.169.191', 1353951616, 1353951679, 'A2', 'Satellite Provider'), +('80.179.169.192', '80.179.169.223', 1353951680, 1353951711, 'IL', 'Israel'), +('80.179.169.224', '80.179.169.239', 1353951712, 1353951727, 'A2', 'Satellite Provider'), +('80.179.169.240', '80.179.175.255', 1353951728, 1353953279, 'IL', 'Israel'), +('80.179.176.0', '80.179.176.31', 1353953280, 1353953311, 'A2', 'Satellite Provider'), +('80.179.176.32', '80.179.176.87', 1353953312, 1353953367, 'IL', 'Israel'), +('80.179.176.88', '80.179.176.95', 1353953368, 1353953375, 'A2', 'Satellite Provider'), +('80.179.176.96', '80.179.176.111', 1353953376, 1353953391, 'IL', 'Israel'), +('80.179.176.112', '80.179.176.127', 1353953392, 1353953407, 'A2', 'Satellite Provider'), +('80.179.176.128', '80.179.176.239', 1353953408, 1353953519, 'IL', 'Israel'), +('80.179.176.240', '80.179.176.255', 1353953520, 1353953535, 'A2', 'Satellite Provider'), +('80.179.177.0', '80.179.188.255', 1353953536, 1353956607, 'IL', 'Israel'), +('80.179.189.0', '80.179.189.255', 1353956608, 1353956863, 'GB', 'United Kingdom'), +('80.179.190.0', '80.179.221.255', 1353956864, 1353965055, 'IL', 'Israel'), +('80.179.222.0', '80.179.222.255', 1353965056, 1353965311, 'A2', 'Satellite Provider'), +('80.179.223.0', '80.179.255.255', 1353965312, 1353973759, 'IL', 'Israel'), +('80.180.0.0', '80.183.255.255', 1353973760, 1354235903, 'IT', 'Italy'), +('80.184.0.0', '80.184.255.255', 1354235904, 1354301439, 'KW', 'Kuwait'), +('80.185.0.0', '80.185.255.255', 1354301440, 1354366975, 'FR', 'France'), +('80.186.0.0', '80.186.255.255', 1354366976, 1354432511, 'FI', 'Finland'), +('80.187.0.0', '80.187.255.255', 1354432512, 1354498047, 'DE', 'Germany'), +('80.188.0.0', '80.188.255.255', 1354498048, 1354563583, 'CZ', 'Czech Republic'), +('80.189.0.0', '80.189.255.255', 1354563584, 1354629119, 'GB', 'United Kingdom'), +('80.190.0.0', '80.190.135.127', 1354629120, 1354663807, 'DE', 'Germany'), +('80.190.135.128', '80.190.135.128', 1354663808, 1354663808, 'AT', 'Austria'), +('80.190.135.129', '80.190.139.39', 1354663809, 1354664743, 'DE', 'Germany'), +('80.190.139.40', '80.190.139.47', 1354664744, 1354664751, 'IT', 'Italy'), +('80.190.139.48', '80.190.139.55', 1354664752, 1354664759, 'DE', 'Germany'), +('80.190.139.56', '80.190.139.63', 1354664760, 1354664767, 'IT', 'Italy'), +('80.190.139.64', '80.190.140.255', 1354664768, 1354665215, 'DE', 'Germany'), +('80.190.141.0', '80.190.141.31', 1354665216, 1354665247, 'ES', 'Spain'), +('80.190.141.32', '80.190.143.215', 1354665248, 1354665943, 'DE', 'Germany'), +('80.190.143.216', '80.190.143.223', 1354665944, 1354665951, 'IT', 'Italy'), +('80.190.143.224', '80.190.146.143', 1354665952, 1354666639, 'DE', 'Germany'), +('80.190.146.144', '80.190.146.154', 1354666640, 1354666650, 'FI', 'Finland'), +('80.190.146.155', '80.190.146.191', 1354666651, 1354666687, 'DE', 'Germany'), +('80.190.146.192', '80.190.146.192', 1354666688, 1354666688, 'FI', 'Finland'), +('80.190.146.193', '80.190.151.255', 1354666689, 1354668031, 'DE', 'Germany'), +('80.190.152.0', '80.190.152.127', 1354668032, 1354668159, 'AT', 'Austria'), +('80.190.152.128', '80.190.174.255', 1354668160, 1354673919, 'DE', 'Germany'), +('80.190.175.0', '80.190.175.255', 1354673920, 1354674175, 'PL', 'Poland'), +('80.190.176.0', '80.190.178.31', 1354674176, 1354674719, 'DE', 'Germany'), +('80.190.178.32', '80.190.178.63', 1354674720, 1354674751, 'CH', 'Switzerland'), +('80.190.178.64', '80.190.178.95', 1354674752, 1354674783, 'DK', 'Denmark'), +('80.190.178.96', '80.190.178.127', 1354674784, 1354674815, 'DE', 'Germany'), +('80.190.178.128', '80.190.178.255', 1354674816, 1354674943, 'IT', 'Italy'), +('80.190.179.0', '80.190.179.255', 1354674944, 1354675199, 'AE', 'United Arab Emirates'), +('80.190.180.0', '80.190.180.127', 1354675200, 1354675327, 'DE', 'Germany'), +('80.190.180.128', '80.190.180.159', 1354675328, 1354675359, 'DK', 'Denmark'), +('80.190.180.160', '80.190.180.231', 1354675360, 1354675431, 'DE', 'Germany'), +('80.190.180.232', '80.190.180.239', 1354675432, 1354675439, 'IT', 'Italy'), +('80.190.180.240', '80.190.184.255', 1354675440, 1354676479, 'DE', 'Germany'), +('80.190.185.0', '80.190.186.31', 1354676480, 1354676767, 'AE', 'United Arab Emirates'), +('80.190.186.32', '80.190.186.47', 1354676768, 1354676783, 'DE', 'Germany'), +('80.190.186.48', '80.190.186.55', 1354676784, 1354676791, 'PL', 'Poland'), +('80.190.186.56', '80.190.186.255', 1354676792, 1354676991, 'DE', 'Germany'), +('80.190.187.0', '80.190.187.31', 1354676992, 1354677023, 'AE', 'United Arab Emirates'), +('80.190.187.32', '80.190.187.159', 1354677024, 1354677151, 'DE', 'Germany'), +('80.190.187.160', '80.190.187.167', 1354677152, 1354677159, 'AT', 'Austria'), +('80.190.187.168', '80.190.187.255', 1354677160, 1354677247, 'DE', 'Germany'), +('80.190.188.0', '80.190.188.31', 1354677248, 1354677279, 'AE', 'United Arab Emirates'), +('80.190.188.32', '80.190.190.255', 1354677280, 1354678015, 'DE', 'Germany'), +('80.190.191.0', '80.190.191.15', 1354678016, 1354678031, 'AE', 'United Arab Emirates'), +('80.190.191.16', '80.190.191.143', 1354678032, 1354678159, 'DE', 'Germany'), +('80.190.191.144', '80.190.191.147', 1354678160, 1354678163, 'PL', 'Poland'), +('80.190.191.148', '80.190.192.63', 1354678164, 1354678335, 'DE', 'Germany'), +('80.190.192.64', '80.190.192.71', 1354678336, 1354678343, 'RO', 'Romania'), +('80.190.192.72', '80.190.193.31', 1354678344, 1354678559, 'DE', 'Germany'), +('80.190.193.32', '80.190.193.47', 1354678560, 1354678575, 'AE', 'United Arab Emirates'), +('80.190.193.48', '80.190.193.215', 1354678576, 1354678743, 'DE', 'Germany'), +('80.190.193.216', '80.190.193.223', 1354678744, 1354678751, 'CH', 'Switzerland'), +('80.190.193.224', '80.190.193.231', 1354678752, 1354678759, 'IT', 'Italy'), +('80.190.193.232', '80.190.195.255', 1354678760, 1354679295, 'DE', 'Germany'), +('80.190.196.0', '80.190.197.255', 1354679296, 1354679807, 'AE', 'United Arab Emirates'), +('80.190.198.0', '80.190.198.31', 1354679808, 1354679839, 'DE', 'Germany'), +('80.190.198.32', '80.190.198.63', 1354679840, 1354679871, 'DK', 'Denmark'), +('80.190.198.64', '80.190.198.255', 1354679872, 1354680063, 'DE', 'Germany'), +('80.190.199.0', '80.190.199.15', 1354680064, 1354680079, 'AE', 'United Arab Emirates'), +('80.190.199.16', '80.190.199.111', 1354680080, 1354680175, 'DE', 'Germany'), +('80.190.199.112', '80.190.199.115', 1354680176, 1354680179, 'PL', 'Poland'), +('80.190.199.116', '80.190.203.159', 1354680180, 1354681247, 'DE', 'Germany'), +('80.190.203.160', '80.190.203.191', 1354681248, 1354681279, 'DK', 'Denmark'), +('80.190.203.192', '80.190.204.127', 1354681280, 1354681471, 'DE', 'Germany'), +('80.190.204.128', '80.190.204.143', 1354681472, 1354681487, 'AE', 'United Arab Emirates'), +('80.190.204.144', '80.190.206.255', 1354681488, 1354682111, 'DE', 'Germany'), +('80.190.207.0', '80.190.207.31', 1354682112, 1354682143, 'DK', 'Denmark'), +('80.190.207.32', '80.190.207.63', 1354682144, 1354682175, 'CH', 'Switzerland'), +('80.190.207.64', '80.190.207.175', 1354682176, 1354682287, 'DE', 'Germany'), +('80.190.207.176', '80.190.207.191', 1354682288, 1354682303, 'AE', 'United Arab Emirates'), +('80.190.207.192', '80.190.209.147', 1354682304, 1354682771, 'DE', 'Germany'), +('80.190.209.148', '80.190.209.151', 1354682772, 1354682775, 'RS', 'Serbia'), +('80.190.209.152', '80.190.210.15', 1354682776, 1354682895, 'DE', 'Germany'), +('80.190.210.16', '80.190.210.31', 1354682896, 1354682911, 'AE', 'United Arab Emirates'), +('80.190.210.32', '80.190.210.59', 1354682912, 1354682939, 'DE', 'Germany'), +('80.190.210.60', '80.190.210.63', 1354682940, 1354682943, 'MC', 'Monaco'), +('80.190.210.64', '80.190.210.215', 1354682944, 1354683095, 'DE', 'Germany'), +('80.190.210.216', '80.190.210.223', 1354683096, 1354683103, 'IT', 'Italy'), +('80.190.210.224', '80.190.211.255', 1354683104, 1354683391, 'DE', 'Germany'), +('80.190.212.0', '80.190.213.255', 1354683392, 1354683903, 'PL', 'Poland'), +('80.190.214.0', '80.190.215.255', 1354683904, 1354684415, 'DE', 'Germany'), +('80.190.216.0', '80.190.216.15', 1354684416, 1354684431, 'AE', 'United Arab Emirates'), +('80.190.216.16', '80.190.216.255', 1354684432, 1354684671, 'DE', 'Germany'), +('80.190.217.0', '80.190.217.255', 1354684672, 1354684927, 'AE', 'United Arab Emirates'), +('80.190.218.0', '80.190.226.47', 1354684928, 1354687023, 'DE', 'Germany'), +('80.190.226.48', '80.190.226.55', 1354687024, 1354687031, 'LU', 'Luxembourg'), +('80.190.226.56', '80.190.227.127', 1354687032, 1354687359, 'DE', 'Germany'), +('80.190.227.128', '80.190.227.143', 1354687360, 1354687375, 'NZ', 'New Zealand'), +('80.190.227.144', '80.190.227.151', 1354687376, 1354687383, 'DE', 'Germany'), +('80.190.227.152', '80.190.227.159', 1354687384, 1354687391, 'NZ', 'New Zealand'), +('80.190.227.160', '80.190.227.167', 1354687392, 1354687399, 'DE', 'Germany'), +('80.190.227.168', '80.190.227.175', 1354687400, 1354687407, 'IT', 'Italy'), +('80.190.227.176', '80.190.227.223', 1354687408, 1354687455, 'DE', 'Germany'), +('80.190.227.224', '80.190.227.255', 1354687456, 1354687487, 'IT', 'Italy'), +('80.190.228.0', '80.190.229.15', 1354687488, 1354687759, 'DE', 'Germany'), +('80.190.229.16', '80.190.229.19', 1354687760, 1354687763, 'CH', 'Switzerland'), +('80.190.229.20', '80.190.231.106', 1354687764, 1354688362, 'DE', 'Germany'), +('80.190.231.107', '80.190.231.107', 1354688363, 1354688363, 'CH', 'Switzerland'), +('80.190.231.108', '80.190.255.255', 1354688364, 1354694655, 'DE', 'Germany'), +('80.191.0.0', '80.191.255.255', 1354694656, 1354760191, 'IR', 'Iran, Islamic Republic of'), +('80.192.0.0', '80.195.255.255', 1354760192, 1355022335, 'GB', 'United Kingdom'), +('80.196.0.0', '80.199.255.255', 1355022336, 1355284479, 'DK', 'Denmark'), +('80.200.0.0', '80.201.255.255', 1355284480, 1355415551, 'BE', 'Belgium'), +('80.202.0.0', '80.203.255.255', 1355415552, 1355546623, 'NO', 'Norway'), +('80.204.0.0', '80.207.255.255', 1355546624, 1355808767, 'IT', 'Italy'), +('80.208.0.0', '80.211.255.255', 1355808768, 1356070911, 'DK', 'Denmark'), +('80.212.0.0', '80.213.255.255', 1356070912, 1356201983, 'NO', 'Norway'), +('80.214.0.0', '80.215.255.255', 1356201984, 1356333055, 'FR', 'France'), +('80.216.0.0', '80.217.255.255', 1356333056, 1356464127, 'SE', 'Sweden'), +('80.218.0.0', '80.219.255.255', 1356464128, 1356595199, 'CH', 'Switzerland'), +('80.220.0.0', '80.223.255.255', 1356595200, 1356857343, 'FI', 'Finland'), +('80.224.0.0', '80.224.255.255', 1356857344, 1356922879, 'ES', 'Spain'), +('80.225.0.0', '80.225.255.255', 1356922880, 1356988415, 'GB', 'United Kingdom'), +('80.226.0.0', '80.226.255.255', 1356988416, 1357053951, 'DE', 'Germany'), +('80.227.0.0', '80.227.147.143', 1357053952, 1357091727, 'AE', 'United Arab Emirates'), +('80.227.147.144', '80.227.147.159', 1357091728, 1357091743, 'A2', 'Satellite Provider'), +('80.227.147.160', '80.227.255.255', 1357091744, 1357119487, 'AE', 'United Arab Emirates'), +('80.228.0.0', '80.228.28.151', 1357119488, 1357126807, 'DE', 'Germany'), +('80.228.28.152', '80.228.28.159', 1357126808, 1357126815, 'NL', 'Netherlands'), +('80.228.28.160', '80.228.29.151', 1357126816, 1357127063, 'DE', 'Germany'), +('80.228.29.152', '80.228.29.167', 1357127064, 1357127079, 'NL', 'Netherlands'), +('80.228.29.168', '80.228.31.47', 1357127080, 1357127471, 'DE', 'Germany'), +('80.228.31.48', '80.228.31.63', 1357127472, 1357127487, 'CH', 'Switzerland'), +('80.228.31.64', '80.228.228.87', 1357127488, 1357177943, 'DE', 'Germany'), +('80.228.228.88', '80.228.228.95', 1357177944, 1357177951, 'NL', 'Netherlands'), +('80.228.228.96', '80.228.255.255', 1357177952, 1357185023, 'DE', 'Germany'), +('80.229.0.0', '80.229.255.255', 1357185024, 1357250559, 'GB', 'United Kingdom'), +('80.230.0.0', '80.230.255.255', 1357250560, 1357316095, 'IL', 'Israel'), +('80.231.0.0', '80.231.1.255', 1357316096, 1357316607, 'ES', 'Spain'), +('80.231.2.0', '80.231.3.255', 1357316608, 1357317119, 'LU', 'Luxembourg'), +('80.231.4.0', '80.231.4.255', 1357317120, 1357317375, 'NG', 'Nigeria'), +('80.231.5.0', '80.231.5.255', 1357317376, 1357317631, 'LB', 'Lebanon'), +('80.231.6.0', '80.231.7.255', 1357317632, 1357318143, 'LY', 'Libyan Arab Jamahiriya'), +('80.231.8.0', '80.231.15.255', 1357318144, 1357320191, 'QA', 'Qatar'), +('80.231.16.0', '80.231.17.255', 1357320192, 1357320703, 'FR', 'France'), +('80.231.18.0', '80.231.18.255', 1357320704, 1357320959, 'RO', 'Romania'), +('80.231.19.0', '80.231.19.31', 1357320960, 1357320991, 'ES', 'Spain'), +('80.231.19.32', '80.231.19.39', 1357320992, 1357320999, 'GB', 'United Kingdom'), +('80.231.19.40', '80.231.19.47', 1357321000, 1357321007, 'FR', 'France'), +('80.231.19.48', '80.231.19.55', 1357321008, 1357321015, 'GB', 'United Kingdom'), +('80.231.19.56', '80.231.19.63', 1357321016, 1357321023, 'DK', 'Denmark'), +('80.231.19.64', '80.231.19.127', 1357321024, 1357321087, 'EU', 'Europe'), +('80.231.19.128', '80.231.19.255', 1357321088, 1357321215, 'LB', 'Lebanon'), +('80.231.20.0', '80.231.20.255', 1357321216, 1357321471, 'GB', 'United Kingdom'), +('80.231.21.0', '80.231.21.31', 1357321472, 1357321503, 'ES', 'Spain'), +('80.231.21.32', '80.231.21.255', 1357321504, 1357321727, 'EU', 'Europe'), +('80.231.22.0', '80.231.22.255', 1357321728, 1357321983, 'CY', 'Cyprus'), +('80.231.23.0', '80.231.23.255', 1357321984, 1357322239, 'SO', 'Somalia'), +('80.231.24.0', '80.231.25.255', 1357322240, 1357322751, 'DE', 'Germany'), +('80.231.26.0', '80.231.27.255', 1357322752, 1357323263, 'BH', 'Bahrain'), +('80.231.28.0', '80.231.28.255', 1357323264, 1357323519, 'ES', 'Spain'), +('80.231.29.0', '80.231.29.255', 1357323520, 1357323775, 'GB', 'United Kingdom'), +('80.231.30.0', '80.231.31.255', 1357323776, 1357324287, 'DE', 'Germany'), +('80.231.32.0', '80.231.39.255', 1357324288, 1357326335, 'GB', 'United Kingdom'), +('80.231.40.0', '80.231.40.255', 1357326336, 1357326591, 'NL', 'Netherlands'), +('80.231.41.0', '80.231.41.255', 1357326592, 1357326847, 'DE', 'Germany'), +('80.231.42.0', '80.231.43.255', 1357326848, 1357327359, 'GB', 'United Kingdom'), +('80.231.44.0', '80.231.47.255', 1357327360, 1357328383, 'DE', 'Germany'), +('80.231.48.0', '80.231.55.0', 1357328384, 1357330176, 'SA', 'Saudi Arabia'), +('80.231.55.1', '80.231.55.255', 1357330177, 1357330431, 'EU', 'Europe'), +('80.231.56.0', '80.231.57.255', 1357330432, 1357330943, 'DE', 'Germany'), +('80.231.58.0', '80.231.59.255', 1357330944, 1357331455, 'ES', 'Spain'), +('80.231.60.0', '80.231.63.255', 1357331456, 1357332479, 'EU', 'Europe'), +('80.231.64.0', '80.231.66.255', 1357332480, 1357333247, 'DE', 'Germany'), +('80.231.67.0', '80.231.67.255', 1357333248, 1357333503, 'GB', 'United Kingdom'), +('80.231.68.0', '80.231.68.255', 1357333504, 1357333759, 'IR', 'Iran, Islamic Republic of'), +('80.231.69.0', '80.231.69.63', 1357333760, 1357333823, 'EU', 'Europe'), +('80.231.69.64', '80.231.69.95', 1357333824, 1357333855, 'GB', 'United Kingdom'), +('80.231.69.96', '80.231.71.255', 1357333856, 1357334527, 'ES', 'Spain'), +('80.231.72.0', '80.231.73.255', 1357334528, 1357335039, 'FR', 'France'), +('80.231.74.0', '80.231.74.255', 1357335040, 1357335295, 'LB', 'Lebanon'), +('80.231.75.0', '80.231.76.255', 1357335296, 1357335807, 'FR', 'France'), +('80.231.77.0', '80.231.77.255', 1357335808, 1357336063, 'KE', 'Kenya'), +('80.231.78.0', '80.231.78.255', 1357336064, 1357336319, 'GB', 'United Kingdom'), +('80.231.79.0', '80.231.79.255', 1357336320, 1357336575, 'FR', 'France'), +('80.231.80.0', '80.231.83.255', 1357336576, 1357337599, 'NL', 'Netherlands'), +('80.231.84.0', '80.231.84.255', 1357337600, 1357337855, 'FR', 'France'), +('80.231.85.0', '80.231.85.255', 1357337856, 1357338111, 'ES', 'Spain'), +('80.231.86.0', '80.231.88.255', 1357338112, 1357338879, 'FR', 'France'), +('80.231.89.0', '80.231.90.255', 1357338880, 1357339391, 'NO', 'Norway'), +('80.231.91.0', '80.231.91.255', 1357339392, 1357339647, 'AT', 'Austria'), +('80.231.92.0', '80.231.92.255', 1357339648, 1357339903, 'DZ', 'Algeria'), +('80.231.93.0', '80.231.94.255', 1357339904, 1357340415, 'ES', 'Spain'), +('80.231.95.0', '80.231.95.255', 1357340416, 1357340671, 'LB', 'Lebanon'), +('80.231.96.0', '80.231.103.255', 1357340672, 1357342719, 'GB', 'United Kingdom'), +('80.231.104.0', '80.231.127.255', 1357342720, 1357348863, 'EU', 'Europe'), +('80.231.128.0', '80.231.128.255', 1357348864, 1357349119, 'DE', 'Germany'), +('80.231.129.0', '80.231.129.255', 1357349120, 1357349375, 'LU', 'Luxembourg'), +('80.231.130.0', '80.231.133.255', 1357349376, 1357350399, 'ES', 'Spain'), +('80.231.134.0', '80.231.135.255', 1357350400, 1357350911, 'QA', 'Qatar'), +('80.231.136.0', '80.231.136.255', 1357350912, 1357351167, 'SM', 'San Marino'), +('80.231.137.0', '80.231.137.255', 1357351168, 1357351423, 'PL', 'Poland'), +('80.231.138.0', '80.231.138.255', 1357351424, 1357351679, 'DE', 'Germany'), +('80.231.139.0', '80.231.139.255', 1357351680, 1357351935, 'PL', 'Poland'), +('80.231.140.0', '80.231.141.255', 1357351936, 1357352447, 'GB', 'United Kingdom'), +('80.231.142.0', '80.231.155.255', 1357352448, 1357356031, 'EU', 'Europe'), +('80.231.156.0', '80.231.161.255', 1357356032, 1357357567, 'ES', 'Spain'), +('80.231.162.0', '80.231.163.255', 1357357568, 1357358079, 'DE', 'Germany'), +('80.231.164.0', '80.231.164.255', 1357358080, 1357358335, 'ES', 'Spain'), +('80.231.165.0', '80.231.165.255', 1357358336, 1357358591, 'EU', 'Europe'), +('80.231.166.0', '80.231.166.255', 1357358592, 1357358847, 'DE', 'Germany'), +('80.231.167.0', '80.231.167.255', 1357358848, 1357359103, 'PL', 'Poland'), +('80.231.168.0', '80.231.169.127', 1357359104, 1357359487, 'ES', 'Spain'), +('80.231.169.128', '80.231.169.191', 1357359488, 1357359551, 'EU', 'Europe'), +('80.231.169.192', '80.231.171.127', 1357359552, 1357359999, 'ES', 'Spain'), +('80.231.171.128', '80.231.171.255', 1357360000, 1357360127, 'EU', 'Europe'), +('80.231.172.0', '80.231.172.127', 1357360128, 1357360255, 'GB', 'United Kingdom'), +('80.231.172.128', '80.231.172.255', 1357360256, 1357360383, 'EU', 'Europe'), +('80.231.173.0', '80.231.173.255', 1357360384, 1357360639, 'ES', 'Spain'), +('80.231.174.0', '80.231.174.255', 1357360640, 1357360895, 'GB', 'United Kingdom'), +('80.231.175.0', '80.231.175.255', 1357360896, 1357361151, 'DE', 'Germany'), +('80.231.176.0', '80.231.183.255', 1357361152, 1357363199, 'EU', 'Europe'), +('80.231.184.0', '80.231.187.255', 1357363200, 1357364223, 'QA', 'Qatar'), +('80.231.188.0', '80.231.191.255', 1357364224, 1357365247, 'ES', 'Spain'), +('80.231.192.0', '80.231.193.255', 1357365248, 1357365759, 'DZ', 'Algeria'), +('80.231.194.0', '80.231.194.31', 1357365760, 1357365791, 'ES', 'Spain'), +('80.231.194.32', '80.231.194.63', 1357365792, 1357365823, 'EU', 'Europe'), +('80.231.194.64', '80.231.194.127', 1357365824, 1357365887, 'GB', 'United Kingdom'), +('80.231.194.128', '80.231.194.191', 1357365888, 1357365951, 'DE', 'Germany'), +('80.231.194.192', '80.231.194.255', 1357365952, 1357366015, 'GB', 'United Kingdom'), +('80.231.195.0', '80.231.195.255', 1357366016, 1357366271, 'KM', 'Comoros'), +('80.231.196.0', '80.231.196.255', 1357366272, 1357366527, 'FR', 'France'), +('80.231.197.0', '80.231.197.63', 1357366528, 1357366591, 'BE', 'Belgium'), +('80.231.197.64', '80.231.197.127', 1357366592, 1357366655, 'FR', 'France'), +('80.231.197.128', '80.231.197.191', 1357366656, 1357366719, 'PT', 'Portugal'), +('80.231.197.192', '80.231.197.255', 1357366720, 1357366783, 'FR', 'France'), +('80.231.198.0', '80.231.198.15', 1357366784, 1357366799, 'MD', 'Moldova, Republic of'), +('80.231.198.16', '80.231.198.31', 1357366800, 1357366815, 'EU', 'Europe'), +('80.231.198.32', '80.231.198.63', 1357366816, 1357366847, 'FR', 'France'), +('80.231.198.64', '80.231.198.79', 1357366848, 1357366863, 'GB', 'United Kingdom'), +('80.231.198.80', '80.231.198.95', 1357366864, 1357366879, 'ES', 'Spain'), +('80.231.198.96', '80.231.198.127', 1357366880, 1357366911, 'GB', 'United Kingdom'), +('80.231.198.128', '80.231.198.255', 1357366912, 1357367039, 'FR', 'France'), +('80.231.199.0', '80.231.199.255', 1357367040, 1357367295, 'GB', 'United Kingdom'), +('80.231.200.0', '80.231.202.255', 1357367296, 1357368063, 'DZ', 'Algeria'), +('80.231.203.0', '80.231.205.255', 1357368064, 1357368831, 'GN', 'Guinea'), +('80.231.206.0', '80.231.207.255', 1357368832, 1357369343, 'EU', 'Europe'), +('80.231.208.0', '80.231.208.255', 1357369344, 1357369599, 'PL', 'Poland'), +('80.231.209.0', '80.231.209.255', 1357369600, 1357369855, 'GB', 'United Kingdom'), +('80.231.210.0', '80.231.210.255', 1357369856, 1357370111, 'KE', 'Kenya'), +('80.231.211.0', '80.231.213.255', 1357370112, 1357370879, 'DZ', 'Algeria'), +('80.231.214.0', '80.231.215.255', 1357370880, 1357371391, 'LY', 'Libyan Arab Jamahiriya'), +('80.231.216.0', '80.231.217.255', 1357371392, 1357371903, 'PK', 'Pakistan'), +('80.231.218.0', '80.231.218.255', 1357371904, 1357372159, 'EU', 'Europe'), +('80.231.219.0', '80.231.219.255', 1357372160, 1357372415, 'GB', 'United Kingdom'), +('80.231.220.0', '80.231.221.255', 1357372416, 1357372927, 'EU', 'Europe'), +('80.231.222.0', '80.231.222.255', 1357372928, 1357373183, 'AM', 'Armenia'), +('80.231.223.0', '80.231.223.255', 1357373184, 1357373439, 'GB', 'United Kingdom'), +('80.231.224.0', '80.231.255.255', 1357373440, 1357381631, 'EU', 'Europe'), +('80.232.0.0', '80.232.38.255', 1357381632, 1357391615, 'NO', 'Norway'), +('80.232.39.0', '80.232.39.255', 1357391616, 1357391871, 'SE', 'Sweden'), +('80.232.40.0', '80.232.127.255', 1357391872, 1357414399, 'NO', 'Norway'), +('80.232.128.0', '80.232.255.255', 1357414400, 1357447167, 'LV', 'Latvia'), +('80.233.0.0', '80.233.127.255', 1357447168, 1357479935, 'DK', 'Denmark'), +('80.233.128.0', '80.233.255.255', 1357479936, 1357512703, 'LV', 'Latvia'), +('80.234.0.0', '80.234.127.255', 1357512704, 1357545471, 'RU', 'Russian Federation'), +('80.234.128.0', '80.234.255.255', 1357545472, 1357578239, 'GB', 'United Kingdom'), +('80.235.0.0', '80.235.127.255', 1357578240, 1357611007, 'EE', 'Estonia'), +('80.235.128.0', '80.235.255.255', 1357611008, 1357643775, 'GB', 'United Kingdom'), +('80.236.0.0', '80.236.127.255', 1357643776, 1357676543, 'FR', 'France'), +('80.236.128.0', '80.236.255.255', 1357676544, 1357709311, 'BE', 'Belgium'), +('80.237.0.0', '80.237.127.255', 1357709312, 1357742079, 'RU', 'Russian Federation'), +('80.237.128.0', '80.237.194.207', 1357742080, 1357759183, 'DE', 'Germany'), +('80.237.194.208', '80.237.194.215', 1357759184, 1357759191, 'AT', 'Austria'), +('80.237.194.216', '80.237.220.191', 1357759192, 1357765823, 'DE', 'Germany'), +('80.237.220.192', '80.237.220.199', 1357765824, 1357765831, 'AT', 'Austria'), +('80.237.220.200', '80.237.255.255', 1357765832, 1357774847, 'DE', 'Germany'), +('80.238.0.0', '80.238.63.255', 1357774848, 1357791231, 'GB', 'United Kingdom'), +('80.238.64.0', '80.238.127.255', 1357791232, 1357807615, 'PL', 'Poland'), +('80.238.128.0', '80.238.255.255', 1357807616, 1357840383, 'CH', 'Switzerland'), +('80.239.0.0', '80.239.106.215', 1357840384, 1357867735, 'NO', 'Norway'), +('80.239.106.216', '80.239.106.223', 1357867736, 1357867743, 'SE', 'Sweden'), +('80.239.106.224', '80.239.127.255', 1357867744, 1357873151, 'NO', 'Norway'), +('80.239.128.0', '80.239.135.255', 1357873152, 1357875199, 'DE', 'Germany'), +('80.239.136.0', '80.239.136.15', 1357875200, 1357875215, 'AT', 'Austria'), +('80.239.136.16', '80.239.136.23', 1357875216, 1357875223, 'DE', 'Germany'), +('80.239.136.24', '80.239.136.31', 1357875224, 1357875231, 'EU', 'Europe'), +('80.239.136.32', '80.239.136.47', 1357875232, 1357875247, 'DE', 'Germany'), +('80.239.136.48', '80.239.136.63', 1357875248, 1357875263, 'EU', 'Europe'), +('80.239.136.64', '80.239.136.79', 1357875264, 1357875279, 'AT', 'Austria'), +('80.239.136.80', '80.239.136.223', 1357875280, 1357875423, 'DE', 'Germany'), +('80.239.136.224', '80.239.136.239', 1357875424, 1357875439, 'GB', 'United Kingdom'), +('80.239.136.240', '80.239.136.255', 1357875440, 1357875455, 'EU', 'Europe'), +('80.239.137.0', '80.239.137.255', 1357875456, 1357875711, 'DE', 'Germany'), +('80.239.138.0', '80.239.138.255', 1357875712, 1357875967, 'PL', 'Poland'), +('80.239.139.0', '80.239.139.175', 1357875968, 1357876143, 'DE', 'Germany'), +('80.239.139.176', '80.239.139.183', 1357876144, 1357876151, 'EU', 'Europe'), +('80.239.139.184', '80.239.139.223', 1357876152, 1357876191, 'DE', 'Germany'), +('80.239.139.224', '80.239.139.239', 1357876192, 1357876207, 'EU', 'Europe'), +('80.239.139.240', '80.239.139.247', 1357876208, 1357876215, 'DE', 'Germany'), +('80.239.139.248', '80.239.140.63', 1357876216, 1357876287, 'EU', 'Europe'), +('80.239.140.64', '80.239.140.79', 1357876288, 1357876303, 'PL', 'Poland'), +('80.239.140.80', '80.239.140.111', 1357876304, 1357876335, 'EU', 'Europe'), +('80.239.140.112', '80.239.140.115', 1357876336, 1357876339, 'PL', 'Poland'), +('80.239.140.116', '80.239.140.167', 1357876340, 1357876391, 'EU', 'Europe'), +('80.239.140.168', '80.239.140.175', 1357876392, 1357876399, 'PL', 'Poland'), +('80.239.140.176', '80.239.140.191', 1357876400, 1357876415, 'EU', 'Europe'), +('80.239.140.192', '80.239.140.255', 1357876416, 1357876479, 'PL', 'Poland'), +('80.239.141.0', '80.239.141.15', 1357876480, 1357876495, 'SE', 'Sweden'), +('80.239.141.16', '80.239.141.127', 1357876496, 1357876607, 'EU', 'Europe'), +('80.239.141.128', '80.239.142.127', 1357876608, 1357876863, 'DE', 'Germany'), +('80.239.142.128', '80.239.142.191', 1357876864, 1357876927, 'SE', 'Sweden'), +('80.239.142.192', '80.239.145.255', 1357876928, 1357877759, 'DE', 'Germany'), +('80.239.146.0', '80.239.147.255', 1357877760, 1357878271, 'EU', 'Europe'), +('80.239.148.0', '80.239.153.255', 1357878272, 1357879807, 'DE', 'Germany'), +('80.239.154.0', '80.239.154.63', 1357879808, 1357879871, 'RU', 'Russian Federation'), +('80.239.154.64', '80.239.154.127', 1357879872, 1357879935, 'DE', 'Germany'), +('80.239.154.128', '80.239.156.127', 1357879936, 1357880447, 'EU', 'Europe'), +('80.239.156.128', '80.239.156.191', 1357880448, 1357880511, 'CH', 'Switzerland'), +('80.239.156.192', '80.239.156.223', 1357880512, 1357880543, 'DE', 'Germany'), +('80.239.156.224', '80.239.156.239', 1357880544, 1357880559, 'AT', 'Austria'), +('80.239.156.240', '80.239.157.255', 1357880560, 1357880831, 'DE', 'Germany'), +('80.239.158.0', '80.239.158.255', 1357880832, 1357881087, 'AT', 'Austria'), +('80.239.159.0', '80.239.159.255', 1357881088, 1357881343, 'DE', 'Germany'), +('80.239.160.0', '80.239.167.255', 1357881344, 1357883391, 'FR', 'France'), +('80.239.168.0', '80.239.168.15', 1357883392, 1357883407, 'ES', 'Spain'), +('80.239.168.16', '80.239.168.31', 1357883408, 1357883423, 'EU', 'Europe'), +('80.239.168.32', '80.239.168.127', 1357883424, 1357883519, 'FR', 'France'), +('80.239.168.128', '80.239.168.143', 1357883520, 1357883535, 'EU', 'Europe'), +('80.239.168.144', '80.239.168.159', 1357883536, 1357883551, 'FR', 'France'), +('80.239.168.160', '80.239.168.191', 1357883552, 1357883583, 'EU', 'Europe'), +('80.239.168.192', '80.239.169.71', 1357883584, 1357883719, 'FR', 'France'), +('80.239.169.72', '80.239.169.111', 1357883720, 1357883759, 'EU', 'Europe'), +('80.239.169.112', '80.239.169.159', 1357883760, 1357883807, 'FR', 'France'), +('80.239.169.160', '80.239.169.191', 1357883808, 1357883839, 'EU', 'Europe'), +('80.239.169.192', '80.239.170.47', 1357883840, 1357883951, 'FR', 'France'), +('80.239.170.48', '80.239.170.95', 1357883952, 1357883999, 'EU', 'Europe'), +('80.239.170.96', '80.239.170.127', 1357884000, 1357884031, 'FR', 'France'), +('80.239.170.128', '80.239.170.255', 1357884032, 1357884159, 'EU', 'Europe'), +('80.239.171.0', '80.239.172.7', 1357884160, 1357884423, 'FR', 'France'), +('80.239.172.8', '80.239.172.23', 1357884424, 1357884439, 'EU', 'Europe'), +('80.239.172.24', '80.239.172.31', 1357884440, 1357884447, 'FR', 'France'), +('80.239.172.32', '80.239.172.95', 1357884448, 1357884511, 'EU', 'Europe'), +('80.239.172.96', '80.239.173.255', 1357884512, 1357884927, 'FR', 'France'), +('80.239.174.0', '80.239.174.63', 1357884928, 1357884991, 'EU', 'Europe'), +('80.239.174.64', '80.239.174.127', 1357884992, 1357885055, 'FR', 'France'), +('80.239.174.128', '80.239.174.191', 1357885056, 1357885119, 'EU', 'Europe'), +('80.239.174.192', '80.239.174.255', 1357885120, 1357885183, 'FR', 'France'), +('80.239.175.0', '80.239.175.15', 1357885184, 1357885199, 'EU', 'Europe'), +('80.239.175.16', '80.239.175.31', 1357885200, 1357885215, 'ES', 'Spain'), +('80.239.175.32', '80.239.175.127', 1357885216, 1357885311, 'EU', 'Europe'), +('80.239.175.128', '80.239.175.255', 1357885312, 1357885439, 'DE', 'Germany'), +('80.239.176.0', '80.239.176.255', 1357885440, 1357885695, 'FR', 'France'), +('80.239.177.0', '80.239.177.255', 1357885696, 1357885951, 'EU', 'Europe'), +('80.239.178.0', '80.239.179.255', 1357885952, 1357886463, 'FR', 'France'), +('80.239.180.0', '80.239.183.255', 1357886464, 1357887487, 'US', 'United States'), +('80.239.184.0', '80.239.187.255', 1357887488, 1357888511, 'FR', 'France'), +('80.239.188.0', '80.239.191.255', 1357888512, 1357889535, 'EU', 'Europe'), +('80.239.192.0', '80.239.196.255', 1357889536, 1357890815, 'PL', 'Poland'), +('80.239.197.0', '80.239.197.79', 1357890816, 1357890895, 'NL', 'Netherlands'), +('80.239.197.80', '80.239.197.95', 1357890896, 1357890911, 'EU', 'Europe'), +('80.239.197.96', '80.239.197.127', 1357890912, 1357890943, 'DE', 'Germany'), +('80.239.197.128', '80.239.199.71', 1357890944, 1357891399, 'NL', 'Netherlands'), +('80.239.199.72', '80.239.199.79', 1357891400, 1357891407, 'EU', 'Europe'), +('80.239.199.80', '80.239.199.95', 1357891408, 1357891423, 'CA', 'Canada'), +('80.239.199.96', '80.239.199.127', 1357891424, 1357891455, 'NL', 'Netherlands'), +('80.239.199.128', '80.239.199.255', 1357891456, 1357891583, 'SE', 'Sweden'), +('80.239.200.0', '80.239.200.95', 1357891584, 1357891679, 'NL', 'Netherlands'), +('80.239.200.96', '80.239.200.127', 1357891680, 1357891711, 'EU', 'Europe'), +('80.239.200.128', '80.239.200.255', 1357891712, 1357891839, 'NL', 'Netherlands'), +('80.239.201.0', '80.239.201.255', 1357891840, 1357892095, 'EU', 'Europe'), +('80.239.202.0', '80.239.205.255', 1357892096, 1357893119, 'NL', 'Netherlands'), +('80.239.206.0', '80.239.207.31', 1357893120, 1357893407, 'EU', 'Europe'), +('80.239.207.32', '80.239.207.63', 1357893408, 1357893439, 'SE', 'Sweden'), +('80.239.207.64', '80.239.207.127', 1357893440, 1357893503, 'EU', 'Europe'), +('80.239.207.128', '80.239.207.255', 1357893504, 1357893631, 'DE', 'Germany'), +('80.239.208.0', '80.239.224.127', 1357893632, 1357897855, 'EU', 'Europe'), +('80.239.224.128', '80.239.226.255', 1357897856, 1357898495, 'DE', 'Germany'), +('80.239.227.0', '80.239.227.255', 1357898496, 1357898751, 'EU', 'Europe'), +('80.239.228.0', '80.239.228.127', 1357898752, 1357898879, 'DE', 'Germany'), +('80.239.228.128', '80.239.228.255', 1357898880, 1357899007, 'EU', 'Europe'), +('80.239.229.0', '80.239.229.7', 1357899008, 1357899015, 'DE', 'Germany'), +('80.239.229.8', '80.239.229.15', 1357899016, 1357899023, 'EU', 'Europe'), +('80.239.229.16', '80.239.229.255', 1357899024, 1357899263, 'DE', 'Germany'), +('80.239.230.0', '80.239.231.31', 1357899264, 1357899551, 'EU', 'Europe'), +('80.239.231.32', '80.239.231.47', 1357899552, 1357899567, 'AT', 'Austria'), +('80.239.231.48', '80.239.231.255', 1357899568, 1357899775, 'EU', 'Europe'), +('80.239.232.0', '80.239.233.255', 1357899776, 1357900287, 'DE', 'Germany'), +('80.239.234.0', '80.239.234.127', 1357900288, 1357900415, 'EU', 'Europe'), +('80.239.234.128', '80.239.234.255', 1357900416, 1357900543, 'SE', 'Sweden'), +('80.239.235.0', '80.239.235.255', 1357900544, 1357900799, 'NL', 'Netherlands'), +('80.239.236.0', '80.239.237.255', 1357900800, 1357901311, 'DE', 'Germany'), +('80.239.238.0', '80.239.238.255', 1357901312, 1357901567, 'EU', 'Europe'), +('80.239.239.0', '80.239.239.255', 1357901568, 1357901823, 'DE', 'Germany'), +('80.239.240.0', '80.239.241.255', 1357901824, 1357902335, 'ES', 'Spain'), +('80.239.242.0', '80.239.246.255', 1357902336, 1357903615, 'EU', 'Europe'), +('80.239.247.0', '80.239.247.255', 1357903616, 1357903871, 'SE', 'Sweden'), +('80.239.248.0', '80.239.255.255', 1357903872, 1357905919, 'EU', 'Europe'), +('80.240.0.0', '80.240.15.255', 1357905920, 1357910015, 'LT', 'Lithuania'), +('80.240.16.0', '80.240.31.255', 1357910016, 1357914111, 'GR', 'Greece'), +('80.240.32.0', '80.240.63.255', 1357914112, 1357922303, 'RU', 'Russian Federation'), +('80.240.64.0', '80.240.79.255', 1357922304, 1357926399, 'SA', 'Saudi Arabia'), +('80.240.80.0', '80.240.95.255', 1357926400, 1357930495, 'GB', 'United Kingdom'), +('80.240.96.0', '80.240.143.255', 1357930496, 1357942783, 'RU', 'Russian Federation'), +('80.240.144.0', '80.240.159.255', 1357942784, 1357946879, 'RS', 'Serbia'), +('80.240.160.0', '80.240.191.255', 1357946880, 1357955071, 'PL', 'Poland'), +('80.240.192.0', '80.240.207.255', 1357955072, 1357959167, 'KE', 'Kenya'), +('80.240.208.0', '80.240.223.255', 1357959168, 1357963263, 'RU', 'Russian Federation'), +('80.240.224.0', '80.240.227.167', 1357963264, 1357964199, 'AT', 'Austria'), +('80.240.227.168', '80.240.227.175', 1357964200, 1357964207, 'DE', 'Germany'), +('80.240.227.176', '80.240.239.255', 1357964208, 1357967359, 'AT', 'Austria'), +('80.240.240.0', '80.240.255.255', 1357967360, 1357971455, 'RU', 'Russian Federation'), +('80.241.0.0', '80.241.15.255', 1357971456, 1357975551, 'KZ', 'Kazakstan'), +('80.241.16.0', '80.241.31.255', 1357975552, 1357979647, 'AT', 'Austria'), +('80.241.32.0', '80.241.47.255', 1357979648, 1357983743, 'KZ', 'Kazakstan'), +('80.241.48.0', '80.241.63.255', 1357983744, 1357987839, 'RU', 'Russian Federation'), +('80.241.64.0', '80.241.79.255', 1357987840, 1357991935, 'GB', 'United Kingdom'), +('80.241.80.0', '80.241.95.255', 1357991936, 1357996031, 'NO', 'Norway'), +('80.241.96.0', '80.241.111.255', 1357996032, 1358000127, 'CH', 'Switzerland'), +('80.241.112.0', '80.241.127.255', 1358000128, 1358004223, 'LI', 'Liechtenstein'), +('80.241.128.0', '80.241.143.255', 1358004224, 1358008319, 'PL', 'Poland'), +('80.241.144.0', '80.241.159.255', 1358008320, 1358012415, 'BH', 'Bahrain'), +('80.241.160.0', '80.241.175.255', 1358012416, 1358016511, 'IT', 'Italy'), +('80.241.176.0', '80.241.191.255', 1358016512, 1358020607, 'GE', 'Georgia'), +('80.241.192.0', '80.241.207.255', 1358020608, 1358024703, 'DE', 'Germany'), +('80.241.208.0', '80.241.223.255', 1358024704, 1358028799, 'EE', 'Estonia'), +('80.241.224.0', '80.241.239.255', 1358028800, 1358032895, 'IT', 'Italy'), +('80.241.240.0', '80.241.255.255', 1358032896, 1358036991, 'GE', 'Georgia'), +('80.242.0.0', '80.242.15.255', 1358036992, 1358041087, 'IR', 'Iran, Islamic Republic of'), +('80.242.16.0', '80.242.31.255', 1358041088, 1358045183, 'FI', 'Finland'), +('80.242.32.0', '80.242.47.255', 1358045184, 1358049279, 'SK', 'Slovakia'), +('80.242.48.0', '80.242.95.255', 1358049280, 1358061567, 'RU', 'Russian Federation'), +('80.242.112.0', '80.242.127.255', 1358065664, 1358069759, 'BA', 'Bosnia and Herzegovina'), +('80.242.128.0', '80.242.147.95', 1358069760, 1358074719, 'DE', 'Germany'), +('80.242.147.96', '80.242.147.127', 1358074720, 1358074751, 'CH', 'Switzerland'), +('80.242.147.128', '80.242.178.255', 1358074752, 1358082815, 'DE', 'Germany'), +('80.242.179.0', '80.242.179.255', 1358082816, 1358083071, 'CH', 'Switzerland'), +('80.242.180.0', '80.242.191.255', 1358083072, 1358086143, 'DE', 'Germany'), +('80.242.192.0', '80.242.207.255', 1358086144, 1358090239, 'CH', 'Switzerland'), +('80.242.224.0', '80.242.255.255', 1358094336, 1358102527, 'NL', 'Netherlands'), +('80.243.0.0', '80.243.15.255', 1358102528, 1358106623, 'RU', 'Russian Federation'), +('80.243.16.0', '80.243.31.255', 1358106624, 1358110719, 'LT', 'Lithuania'), +('80.243.32.0', '80.243.56.31', 1358110720, 1358116895, 'DE', 'Germany'), +('80.243.56.32', '80.243.56.47', 1358116896, 1358116911, 'IT', 'Italy'), +('80.243.56.48', '80.243.63.255', 1358116912, 1358118911, 'DE', 'Germany'), +('80.243.64.0', '80.243.79.255', 1358118912, 1358123007, 'RU', 'Russian Federation'), +('80.243.80.0', '80.243.95.255', 1358123008, 1358127103, 'PT', 'Portugal'), +('80.243.96.0', '80.243.111.255', 1358127104, 1358131199, 'CZ', 'Czech Republic'), +('80.243.112.0', '80.243.127.255', 1358131200, 1358135295, 'DK', 'Denmark'), +('80.243.128.0', '80.243.143.255', 1358135296, 1358139391, 'DE', 'Germany'), +('80.243.144.0', '80.243.159.255', 1358139392, 1358143487, 'UA', 'Ukraine'), +('80.243.160.0', '80.243.162.159', 1358143488, 1358144159, 'AT', 'Austria'), +('80.243.162.160', '80.243.162.191', 1358144160, 1358144191, 'MT', 'Malta'), +('80.243.162.192', '80.243.175.191', 1358144192, 1358147519, 'AT', 'Austria'), +('80.243.175.192', '80.243.175.255', 1358147520, 1358147583, 'MT', 'Malta'), +('80.243.176.0', '80.243.191.255', 1358147584, 1358151679, 'GB', 'United Kingdom'), +('80.243.192.0', '80.243.207.255', 1358151680, 1358155775, 'DE', 'Germany'), +('80.243.208.0', '80.243.223.255', 1358155776, 1358159871, 'CH', 'Switzerland'), +('80.243.224.0', '80.243.239.255', 1358159872, 1358163967, 'ES', 'Spain'), +('80.243.240.0', '80.243.255.255', 1358163968, 1358168063, 'FR', 'France'), +('80.244.0.0', '80.244.15.255', 1358168064, 1358172159, 'GB', 'United Kingdom'), +('80.244.16.0', '80.244.19.255', 1358172160, 1358173183, 'CY', 'Cyprus'), +('80.244.20.0', '80.244.22.255', 1358173184, 1358173951, 'GR', 'Greece'), +('80.244.23.0', '80.244.31.255', 1358173952, 1358176255, 'CY', 'Cyprus'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('80.244.32.0', '80.244.47.255', 1358176256, 1358180351, 'RU', 'Russian Federation'), +('80.244.48.0', '80.244.63.255', 1358180352, 1358184447, 'ES', 'Spain'), +('80.244.64.0', '80.244.95.255', 1358184448, 1358192639, 'SE', 'Sweden'), +('80.244.96.0', '80.244.111.255', 1358192640, 1358196735, 'HU', 'Hungary'), +('80.244.112.0', '80.244.127.255', 1358196736, 1358200831, 'IT', 'Italy'), +('80.244.128.0', '80.244.159.255', 1358200832, 1358209023, 'PL', 'Poland'), +('80.244.160.0', '80.244.175.255', 1358209024, 1358213119, 'IL', 'Israel'), +('80.244.176.0', '80.244.191.255', 1358213120, 1358217215, 'GB', 'United Kingdom'), +('80.244.192.0', '80.244.207.255', 1358217216, 1358221311, 'SE', 'Sweden'), +('80.244.208.0', '80.244.215.255', 1358221312, 1358223359, 'DE', 'Germany'), +('80.244.216.0', '80.244.217.15', 1358223360, 1358223631, 'GB', 'United Kingdom'), +('80.244.217.16', '80.244.217.119', 1358223632, 1358223735, 'DE', 'Germany'), +('80.244.217.120', '80.244.217.159', 1358223736, 1358223775, 'GB', 'United Kingdom'), +('80.244.217.160', '80.244.218.39', 1358223776, 1358223911, 'DE', 'Germany'), +('80.244.218.40', '80.244.218.55', 1358223912, 1358223927, 'NL', 'Netherlands'), +('80.244.218.56', '80.244.218.95', 1358223928, 1358223967, 'DE', 'Germany'), +('80.244.218.96', '80.244.218.175', 1358223968, 1358224047, 'NL', 'Netherlands'), +('80.244.218.176', '80.244.220.127', 1358224048, 1358224511, 'DE', 'Germany'), +('80.244.220.128', '80.244.220.135', 1358224512, 1358224519, 'BE', 'Belgium'), +('80.244.220.136', '80.244.220.227', 1358224520, 1358224611, 'DE', 'Germany'), +('80.244.220.228', '80.244.221.11', 1358224612, 1358224651, 'BE', 'Belgium'), +('80.244.221.12', '80.244.221.15', 1358224652, 1358224655, 'DE', 'Germany'), +('80.244.221.16', '80.244.221.79', 1358224656, 1358224719, 'BE', 'Belgium'), +('80.244.221.80', '80.244.222.31', 1358224720, 1358224927, 'DE', 'Germany'), +('80.244.222.32', '80.244.222.83', 1358224928, 1358224979, 'IT', 'Italy'), +('80.244.222.84', '80.244.222.87', 1358224980, 1358224983, 'DE', 'Germany'), +('80.244.222.88', '80.244.222.159', 1358224984, 1358225055, 'IT', 'Italy'), +('80.244.222.160', '80.244.223.255', 1358225056, 1358225407, 'DE', 'Germany'), +('80.244.224.0', '80.244.239.255', 1358225408, 1358229503, 'RU', 'Russian Federation'), +('80.244.240.0', '80.244.240.127', 1358229504, 1358229631, 'DE', 'Germany'), +('80.244.240.128', '80.244.240.135', 1358229632, 1358229639, 'LU', 'Luxembourg'), +('80.244.240.136', '80.244.242.95', 1358229640, 1358230111, 'DE', 'Germany'), +('80.244.242.96', '80.244.242.99', 1358230112, 1358230115, 'AT', 'Austria'), +('80.244.242.100', '80.244.243.111', 1358230116, 1358230383, 'DE', 'Germany'), +('80.244.243.112', '80.244.243.119', 1358230384, 1358230391, 'US', 'United States'), +('80.244.243.120', '80.244.243.127', 1358230392, 1358230399, 'CH', 'Switzerland'), +('80.244.243.128', '80.244.253.31', 1358230400, 1358232863, 'DE', 'Germany'), +('80.244.253.32', '80.244.253.47', 1358232864, 1358232879, 'IT', 'Italy'), +('80.244.253.48', '80.244.255.255', 1358232880, 1358233599, 'DE', 'Germany'), +('80.245.0.0', '80.245.15.255', 1358233600, 1358237695, 'ES', 'Spain'), +('80.245.16.0', '80.245.31.255', 1358237696, 1358241791, 'FR', 'France'), +('80.245.32.0', '80.245.32.15', 1358241792, 1358241807, 'BE', 'Belgium'), +('80.245.32.16', '80.245.35.31', 1358241808, 1358242591, 'FR', 'France'), +('80.245.35.32', '80.245.35.63', 1358242592, 1358242623, 'BE', 'Belgium'), +('80.245.35.64', '80.245.41.255', 1358242624, 1358244351, 'FR', 'France'), +('80.245.42.0', '80.245.45.255', 1358244352, 1358245375, 'NL', 'Netherlands'), +('80.245.46.0', '80.245.47.63', 1358245376, 1358245695, 'FR', 'France'), +('80.245.47.64', '80.245.47.95', 1358245696, 1358245727, 'BE', 'Belgium'), +('80.245.47.96', '80.245.47.255', 1358245728, 1358245887, 'FR', 'France'), +('80.245.48.0', '80.245.55.255', 1358245888, 1358247935, 'NL', 'Netherlands'), +('80.245.56.0', '80.245.63.255', 1358247936, 1358249983, 'FR', 'France'), +('80.245.64.0', '80.245.71.39', 1358249984, 1358251815, 'DE', 'Germany'), +('80.245.71.40', '80.245.71.47', 1358251816, 1358251823, 'NL', 'Netherlands'), +('80.245.71.48', '80.245.79.255', 1358251824, 1358254079, 'DE', 'Germany'), +('80.245.80.0', '80.245.95.255', 1358254080, 1358258175, 'MD', 'Moldova, Republic of'), +('80.245.96.0', '80.245.111.255', 1358258176, 1358262271, 'GB', 'United Kingdom'), +('80.245.112.0', '80.245.127.255', 1358262272, 1358266367, 'UA', 'Ukraine'), +('80.245.128.0', '80.245.159.255', 1358266368, 1358274559, 'DE', 'Germany'), +('80.245.160.0', '80.245.175.255', 1358274560, 1358278655, 'GR', 'Greece'), +('80.245.176.0', '80.245.191.255', 1358278656, 1358282751, 'PL', 'Poland'), +('80.245.192.0', '80.245.207.255', 1358282752, 1358286847, 'AT', 'Austria'), +('80.245.208.0', '80.245.223.255', 1358286848, 1358290943, 'MT', 'Malta'), +('80.245.224.0', '80.245.239.255', 1358290944, 1358295039, 'SE', 'Sweden'), +('80.245.240.0', '80.245.255.255', 1358295040, 1358299135, 'RU', 'Russian Federation'), +('80.246.0.0', '80.246.15.255', 1358299136, 1358303231, 'DZ', 'Algeria'), +('80.246.16.0', '80.246.31.255', 1358303232, 1358307327, 'RU', 'Russian Federation'), +('80.246.32.0', '80.246.63.255', 1358307328, 1358315519, 'DE', 'Germany'), +('80.246.64.0', '80.246.95.255', 1358315520, 1358323711, 'RU', 'Russian Federation'), +('80.246.96.0', '80.246.111.255', 1358323712, 1358327807, 'LU', 'Luxembourg'), +('80.246.112.0', '80.246.115.95', 1358327808, 1358328671, 'DE', 'Germany'), +('80.246.115.96', '80.246.115.151', 1358328672, 1358328727, 'AT', 'Austria'), +('80.246.115.152', '80.246.127.255', 1358328728, 1358331903, 'DE', 'Germany'), +('80.246.128.0', '80.246.143.255', 1358331904, 1358335999, 'IL', 'Israel'), +('80.246.144.0', '80.246.175.255', 1358336000, 1358344191, 'FI', 'Finland'), +('80.246.176.0', '80.246.207.255', 1358344192, 1358352383, 'NL', 'Netherlands'), +('80.246.208.0', '80.246.223.255', 1358352384, 1358356479, 'RU', 'Russian Federation'), +('80.246.224.0', '80.246.239.255', 1358356480, 1358360575, 'SI', 'Slovenia'), +('80.246.240.0', '80.246.255.255', 1358360576, 1358364671, 'RU', 'Russian Federation'), +('80.247.0.0', '80.247.31.255', 1358364672, 1358372863, 'GB', 'United Kingdom'), +('80.247.32.0', '80.247.47.255', 1358372864, 1358376959, 'RU', 'Russian Federation'), +('80.247.48.0', '80.247.63.255', 1358376960, 1358381055, 'GB', 'United Kingdom'), +('80.247.64.0', '80.247.72.207', 1358381056, 1358383311, 'IT', 'Italy'), +('80.247.72.208', '80.247.72.223', 1358383312, 1358383327, 'FR', 'France'), +('80.247.72.224', '80.247.75.255', 1358383328, 1358384127, 'IT', 'Italy'), +('80.247.76.0', '80.247.76.15', 1358384128, 1358384143, 'FR', 'France'), +('80.247.76.16', '80.247.76.63', 1358384144, 1358384191, 'IT', 'Italy'), +('80.247.76.64', '80.247.76.71', 1358384192, 1358384199, 'FR', 'France'), +('80.247.76.72', '80.247.79.255', 1358384200, 1358385151, 'IT', 'Italy'), +('80.247.80.0', '80.247.95.255', 1358385152, 1358389247, 'GB', 'United Kingdom'), +('80.247.96.0', '80.247.127.255', 1358389248, 1358397439, 'RU', 'Russian Federation'), +('80.247.128.0', '80.247.129.47', 1358397440, 1358397743, 'GB', 'United Kingdom'), +('80.247.129.48', '80.247.129.255', 1358397744, 1358397951, 'A2', 'Satellite Provider'), +('80.247.130.0', '80.247.131.255', 1358397952, 1358398463, 'TZ', 'Tanzania, United Republic of'), +('80.247.132.0', '80.247.135.255', 1358398464, 1358399487, 'GB', 'United Kingdom'), +('80.247.136.0', '80.247.137.255', 1358399488, 1358399999, 'NG', 'Nigeria'), +('80.247.138.0', '80.247.138.7', 1358400000, 1358400007, 'PK', 'Pakistan'), +('80.247.138.8', '80.247.138.15', 1358400008, 1358400015, 'A2', 'Satellite Provider'), +('80.247.138.16', '80.247.138.71', 1358400016, 1358400071, 'IN', 'India'), +('80.247.138.72', '80.247.138.255', 1358400072, 1358400255, 'A2', 'Satellite Provider'), +('80.247.139.0', '80.247.139.255', 1358400256, 1358400511, 'AF', 'Afghanistan'), +('80.247.140.0', '80.247.140.7', 1358400512, 1358400519, 'GA', 'Gabon'), +('80.247.140.8', '80.247.140.15', 1358400520, 1358400527, 'A2', 'Satellite Provider'), +('80.247.140.16', '80.247.140.23', 1358400528, 1358400535, 'TZ', 'Tanzania, United Republic of'), +('80.247.140.24', '80.247.140.31', 1358400536, 1358400543, 'A2', 'Satellite Provider'), +('80.247.140.32', '80.247.140.39', 1358400544, 1358400551, 'GA', 'Gabon'), +('80.247.140.40', '80.247.140.63', 1358400552, 1358400575, 'A2', 'Satellite Provider'), +('80.247.140.64', '80.247.140.79', 1358400576, 1358400591, 'KE', 'Kenya'), +('80.247.140.80', '80.247.140.127', 1358400592, 1358400639, 'A2', 'Satellite Provider'), +('80.247.140.128', '80.247.141.7', 1358400640, 1358400775, 'KE', 'Kenya'), +('80.247.141.8', '80.247.141.15', 1358400776, 1358400783, 'A2', 'Satellite Provider'), +('80.247.141.16', '80.247.141.31', 1358400784, 1358400799, 'KE', 'Kenya'), +('80.247.141.32', '80.247.141.95', 1358400800, 1358400863, 'NG', 'Nigeria'), +('80.247.141.96', '80.247.141.127', 1358400864, 1358400895, 'GA', 'Gabon'), +('80.247.141.128', '80.247.142.255', 1358400896, 1358401279, 'NG', 'Nigeria'), +('80.247.143.0', '80.247.143.111', 1358401280, 1358401391, 'KE', 'Kenya'), +('80.247.143.112', '80.247.143.127', 1358401392, 1358401407, 'A2', 'Satellite Provider'), +('80.247.143.128', '80.247.143.159', 1358401408, 1358401439, 'KE', 'Kenya'), +('80.247.143.160', '80.247.143.255', 1358401440, 1358401535, 'A2', 'Satellite Provider'), +('80.247.144.0', '80.247.144.255', 1358401536, 1358401791, 'GB', 'United Kingdom'), +('80.247.145.0', '80.247.146.127', 1358401792, 1358402175, 'A2', 'Satellite Provider'), +('80.247.146.128', '80.247.146.255', 1358402176, 1358402303, 'TZ', 'Tanzania, United Republic of'), +('80.247.147.0', '80.247.147.15', 1358402304, 1358402319, 'A2', 'Satellite Provider'), +('80.247.147.16', '80.247.147.39', 1358402320, 1358402343, 'NG', 'Nigeria'), +('80.247.147.40', '80.247.147.47', 1358402344, 1358402351, 'KE', 'Kenya'), +('80.247.147.48', '80.247.147.55', 1358402352, 1358402359, 'A2', 'Satellite Provider'), +('80.247.147.56', '80.247.147.59', 1358402360, 1358402363, 'ID', 'Indonesia'), +('80.247.147.60', '80.247.147.63', 1358402364, 1358402367, 'A2', 'Satellite Provider'), +('80.247.147.64', '80.247.147.95', 1358402368, 1358402399, 'NG', 'Nigeria'), +('80.247.147.96', '80.247.147.111', 1358402400, 1358402415, 'CG', 'Congo'), +('80.247.147.112', '80.247.147.115', 1358402416, 1358402419, 'ID', 'Indonesia'), +('80.247.147.116', '80.247.147.143', 1358402420, 1358402447, 'A2', 'Satellite Provider'), +('80.247.147.144', '80.247.147.159', 1358402448, 1358402463, 'KE', 'Kenya'), +('80.247.147.160', '80.247.147.191', 1358402464, 1358402495, 'A2', 'Satellite Provider'), +('80.247.147.192', '80.247.147.239', 1358402496, 1358402543, 'KE', 'Kenya'), +('80.247.147.240', '80.247.147.255', 1358402544, 1358402559, 'A2', 'Satellite Provider'), +('80.247.148.0', '80.247.148.159', 1358402560, 1358402719, 'GB', 'United Kingdom'), +('80.247.148.160', '80.247.150.31', 1358402720, 1358403103, 'A2', 'Satellite Provider'), +('80.247.150.32', '80.247.150.63', 1358403104, 1358403135, 'ID', 'Indonesia'), +('80.247.150.64', '80.247.150.79', 1358403136, 1358403151, 'A2', 'Satellite Provider'), +('80.247.150.80', '80.247.150.95', 1358403152, 1358403167, 'ID', 'Indonesia'), +('80.247.150.96', '80.247.150.111', 1358403168, 1358403183, 'A2', 'Satellite Provider'), +('80.247.150.112', '80.247.150.201', 1358403184, 1358403273, 'ID', 'Indonesia'), +('80.247.150.202', '80.247.150.255', 1358403274, 1358403327, 'A2', 'Satellite Provider'), +('80.247.151.0', '80.247.151.255', 1358403328, 1358403583, 'NG', 'Nigeria'), +('80.247.152.0', '80.247.152.7', 1358403584, 1358403591, 'PK', 'Pakistan'), +('80.247.152.8', '80.247.152.47', 1358403592, 1358403631, 'A2', 'Satellite Provider'), +('80.247.152.48', '80.247.152.95', 1358403632, 1358403679, 'PK', 'Pakistan'), +('80.247.152.96', '80.247.152.103', 1358403680, 1358403687, 'A2', 'Satellite Provider'), +('80.247.152.104', '80.247.152.127', 1358403688, 1358403711, 'PK', 'Pakistan'), +('80.247.152.128', '80.247.152.255', 1358403712, 1358403839, 'A2', 'Satellite Provider'), +('80.247.153.0', '80.247.153.255', 1358403840, 1358404095, 'NG', 'Nigeria'), +('80.247.154.0', '80.247.155.255', 1358404096, 1358404607, 'A2', 'Satellite Provider'), +('80.247.156.0', '80.247.156.3', 1358404608, 1358404611, 'NG', 'Nigeria'), +('80.247.156.4', '80.247.156.7', 1358404612, 1358404615, 'TZ', 'Tanzania, United Republic of'), +('80.247.156.8', '80.247.156.15', 1358404616, 1358404623, 'NG', 'Nigeria'), +('80.247.156.16', '80.247.156.47', 1358404624, 1358404655, 'TZ', 'Tanzania, United Republic of'), +('80.247.156.48', '80.247.156.63', 1358404656, 1358404671, 'NG', 'Nigeria'), +('80.247.156.64', '80.247.156.87', 1358404672, 1358404695, 'A2', 'Satellite Provider'), +('80.247.156.88', '80.247.156.95', 1358404696, 1358404703, 'TZ', 'Tanzania, United Republic of'), +('80.247.156.96', '80.247.156.127', 1358404704, 1358404735, 'A2', 'Satellite Provider'), +('80.247.156.128', '80.247.156.143', 1358404736, 1358404751, 'NG', 'Nigeria'), +('80.247.156.144', '80.247.156.159', 1358404752, 1358404767, 'A2', 'Satellite Provider'), +('80.247.156.160', '80.247.156.175', 1358404768, 1358404783, 'NG', 'Nigeria'), +('80.247.156.176', '80.247.156.255', 1358404784, 1358404863, 'A2', 'Satellite Provider'), +('80.247.157.0', '80.247.157.255', 1358404864, 1358405119, 'NG', 'Nigeria'), +('80.247.158.0', '80.247.158.255', 1358405120, 1358405375, 'TZ', 'Tanzania, United Republic of'), +('80.247.159.0', '80.247.159.255', 1358405376, 1358405631, 'NG', 'Nigeria'), +('80.247.160.0', '80.247.175.255', 1358405632, 1358409727, 'NL', 'Netherlands'), +('80.247.176.0', '80.247.191.255', 1358409728, 1358413823, 'RU', 'Russian Federation'), +('80.247.192.0', '80.247.223.255', 1358413824, 1358422015, 'NL', 'Netherlands'), +('80.247.224.0', '80.247.239.255', 1358422016, 1358426111, 'FR', 'France'), +('80.247.240.0', '80.247.255.255', 1358426112, 1358430207, 'FI', 'Finland'), +('80.248.0.0', '80.248.15.255', 1358430208, 1358434303, 'NG', 'Nigeria'), +('80.248.16.0', '80.248.31.255', 1358434304, 1358438399, 'IS', 'Iceland'), +('80.248.32.0', '80.248.47.255', 1358438400, 1358442495, 'NL', 'Netherlands'), +('80.248.48.0', '80.248.63.255', 1358442496, 1358446591, 'RU', 'Russian Federation'), +('80.248.64.0', '80.248.79.255', 1358446592, 1358450687, 'TG', 'Togo'), +('80.248.80.0', '80.248.95.255', 1358450688, 1358454783, 'RU', 'Russian Federation'), +('80.248.96.0', '80.248.127.255', 1358454784, 1358462975, 'FI', 'Finland'), +('80.248.128.0', '80.248.143.255', 1358462976, 1358467071, 'SE', 'Sweden'), +('80.248.144.0', '80.248.159.255', 1358467072, 1358471167, 'RU', 'Russian Federation'), +('80.248.160.0', '80.248.175.255', 1358471168, 1358475263, 'FI', 'Finland'), +('80.248.176.0', '80.248.191.255', 1358475264, 1358479359, 'GB', 'United Kingdom'), +('80.248.192.0', '80.248.207.255', 1358479360, 1358483455, 'LI', 'Liechtenstein'), +('80.248.208.0', '80.248.223.255', 1358483456, 1358487551, 'FR', 'France'), +('80.248.224.0', '80.248.239.255', 1358487552, 1358491647, 'SE', 'Sweden'), +('80.248.240.0', '80.248.255.255', 1358491648, 1358495743, 'FI', 'Finland'), +('80.249.0.0', '80.249.15.255', 1358495744, 1358499839, 'PL', 'Poland'), +('80.249.16.0', '80.249.31.255', 1358499840, 1358503935, 'KZ', 'Kazakstan'), +('80.249.32.0', '80.249.47.255', 1358503936, 1358508031, 'IT', 'Italy'), +('80.249.48.0', '80.249.63.255', 1358508032, 1358512127, 'GB', 'United Kingdom'), +('80.249.64.0', '80.249.79.255', 1358512128, 1358516223, 'DZ', 'Algeria'), +('80.249.80.0', '80.249.95.255', 1358516224, 1358520319, 'BY', 'Belarus'), +('80.249.96.0', '80.249.111.255', 1358520320, 1358524415, 'GB', 'United Kingdom'), +('80.249.112.0', '80.249.112.255', 1358524416, 1358524671, 'CH', 'Switzerland'), +('80.249.113.0', '80.249.113.255', 1358524672, 1358524927, 'DE', 'Germany'), +('80.249.114.0', '80.249.114.255', 1358524928, 1358525183, 'GB', 'United Kingdom'), +('80.249.115.0', '80.249.115.31', 1358525184, 1358525215, 'NL', 'Netherlands'), +('80.249.115.32', '80.249.115.43', 1358525216, 1358525227, 'DE', 'Germany'), +('80.249.115.44', '80.249.115.51', 1358525228, 1358525235, 'NL', 'Netherlands'), +('80.249.115.52', '80.249.115.143', 1358525236, 1358525327, 'DE', 'Germany'), +('80.249.115.144', '80.249.115.159', 1358525328, 1358525343, 'NL', 'Netherlands'), +('80.249.115.160', '80.249.115.175', 1358525344, 1358525359, 'DE', 'Germany'), +('80.249.115.176', '80.249.115.207', 1358525360, 1358525391, 'NL', 'Netherlands'), +('80.249.115.208', '80.249.116.47', 1358525392, 1358525487, 'DE', 'Germany'), +('80.249.116.48', '80.249.116.51', 1358525488, 1358525491, 'CH', 'Switzerland'), +('80.249.116.52', '80.249.116.95', 1358525492, 1358525535, 'DE', 'Germany'), +('80.249.116.96', '80.249.116.103', 1358525536, 1358525543, 'CH', 'Switzerland'), +('80.249.116.104', '80.249.118.255', 1358525544, 1358526207, 'DE', 'Germany'), +('80.249.119.0', '80.249.119.255', 1358526208, 1358526463, 'NL', 'Netherlands'), +('80.249.120.0', '80.249.121.255', 1358526464, 1358526975, 'DE', 'Germany'), +('80.249.122.0', '80.249.122.255', 1358526976, 1358527231, 'NL', 'Netherlands'), +('80.249.123.0', '80.249.123.255', 1358527232, 1358527487, 'DE', 'Germany'), +('80.249.124.0', '80.249.124.255', 1358527488, 1358527743, 'NL', 'Netherlands'), +('80.249.125.0', '80.249.125.7', 1358527744, 1358527751, 'DE', 'Germany'), +('80.249.125.8', '80.249.125.15', 1358527752, 1358527759, 'NL', 'Netherlands'), +('80.249.125.16', '80.249.127.255', 1358527760, 1358528511, 'DE', 'Germany'), +('80.249.128.0', '80.249.159.255', 1358528512, 1358536703, 'RU', 'Russian Federation'), +('80.249.160.0', '80.249.175.255', 1358536704, 1358540799, 'HU', 'Hungary'), +('80.249.176.0', '80.249.191.255', 1358540800, 1358544895, 'RU', 'Russian Federation'), +('80.249.192.0', '80.249.207.255', 1358544896, 1358548991, 'LV', 'Latvia'), +('80.249.208.0', '80.249.223.255', 1358548992, 1358553087, 'JO', 'Jordan'), +('80.249.224.0', '80.249.239.255', 1358553088, 1358557183, 'UA', 'Ukraine'), +('80.249.240.0', '80.249.255.255', 1358557184, 1358561279, 'IE', 'Ireland'), +('80.250.0.0', '80.250.24.15', 1358561280, 1358567439, 'CZ', 'Czech Republic'), +('80.250.24.16', '80.250.24.31', 1358567440, 1358567455, 'SC', 'Seychelles'), +('80.250.24.32', '80.250.31.255', 1358567456, 1358569471, 'CZ', 'Czech Republic'), +('80.250.32.0', '80.250.47.255', 1358569472, 1358573567, 'NG', 'Nigeria'), +('80.250.48.0', '80.250.63.255', 1358573568, 1358577663, 'LV', 'Latvia'), +('80.250.64.0', '80.250.95.255', 1358577664, 1358585855, 'RU', 'Russian Federation'), +('80.250.96.0', '80.250.111.255', 1358585856, 1358589951, 'GB', 'United Kingdom'), +('80.250.112.0', '80.250.127.255', 1358589952, 1358594047, 'EE', 'Estonia'), +('80.250.128.0', '80.250.143.255', 1358594048, 1358598143, 'DE', 'Germany'), +('80.250.144.0', '80.250.159.255', 1358598144, 1358602239, 'IL', 'Israel'), +('80.250.160.0', '80.250.239.255', 1358602240, 1358622719, 'RU', 'Russian Federation'), +('80.250.240.0', '80.250.255.255', 1358622720, 1358626815, 'SK', 'Slovakia'), +('80.251.0.0', '80.251.15.255', 1358626816, 1358630911, 'GB', 'United Kingdom'), +('80.251.16.0', '80.251.19.255', 1358630912, 1358631935, 'US', 'United States'), +('80.251.20.0', '80.251.31.255', 1358631936, 1358635007, 'GB', 'United Kingdom'), +('80.251.32.0', '80.251.47.255', 1358635008, 1358639103, 'TR', 'Turkey'), +('80.251.48.0', '80.251.63.255', 1358639104, 1358643199, 'RU', 'Russian Federation'), +('80.251.64.0', '80.251.79.255', 1358643200, 1358647295, 'ES', 'Spain'), +('80.251.80.0', '80.251.95.255', 1358647296, 1358651391, 'DE', 'Germany'), +('80.251.96.0', '80.251.111.255', 1358651392, 1358655487, 'FR', 'France'), +('80.251.112.0', '80.251.159.255', 1358655488, 1358667775, 'RU', 'Russian Federation'), +('80.251.160.0', '80.251.161.7', 1358667776, 1358668039, 'PT', 'Portugal'), +('80.251.161.8', '80.251.161.15', 1358668040, 1358668047, 'GB', 'United Kingdom'), +('80.251.161.16', '80.251.161.31', 1358668048, 1358668063, 'PT', 'Portugal'), +('80.251.161.32', '80.251.161.63', 1358668064, 1358668095, 'GB', 'United Kingdom'), +('80.251.161.64', '80.251.161.179', 1358668096, 1358668211, 'PT', 'Portugal'), +('80.251.161.180', '80.251.161.183', 1358668212, 1358668215, 'GB', 'United Kingdom'), +('80.251.161.184', '80.251.161.199', 1358668216, 1358668231, 'PT', 'Portugal'), +('80.251.161.200', '80.251.161.207', 1358668232, 1358668239, 'GB', 'United Kingdom'), +('80.251.161.208', '80.251.161.231', 1358668240, 1358668263, 'PT', 'Portugal'), +('80.251.161.232', '80.251.161.247', 1358668264, 1358668279, 'GB', 'United Kingdom'), +('80.251.161.248', '80.251.162.71', 1358668280, 1358668359, 'PT', 'Portugal'), +('80.251.162.72', '80.251.162.79', 1358668360, 1358668367, 'GB', 'United Kingdom'), +('80.251.162.80', '80.251.162.175', 1358668368, 1358668463, 'PT', 'Portugal'), +('80.251.162.176', '80.251.162.191', 1358668464, 1358668479, 'ES', 'Spain'), +('80.251.162.192', '80.251.163.7', 1358668480, 1358668551, 'PT', 'Portugal'), +('80.251.163.8', '80.251.163.23', 1358668552, 1358668567, 'GB', 'United Kingdom'), +('80.251.163.24', '80.251.163.31', 1358668568, 1358668575, 'PT', 'Portugal'), +('80.251.163.32', '80.251.163.47', 1358668576, 1358668591, 'GB', 'United Kingdom'), +('80.251.163.48', '80.251.163.191', 1358668592, 1358668735, 'PT', 'Portugal'), +('80.251.163.192', '80.251.164.7', 1358668736, 1358668807, 'GB', 'United Kingdom'), +('80.251.164.8', '80.251.164.15', 1358668808, 1358668815, 'PT', 'Portugal'), +('80.251.164.16', '80.251.164.31', 1358668816, 1358668831, 'GB', 'United Kingdom'), +('80.251.164.32', '80.251.164.127', 1358668832, 1358668927, 'PT', 'Portugal'), +('80.251.164.128', '80.251.164.255', 1358668928, 1358669055, 'GB', 'United Kingdom'), +('80.251.165.0', '80.251.166.39', 1358669056, 1358669351, 'PT', 'Portugal'), +('80.251.166.40', '80.251.166.47', 1358669352, 1358669359, 'GB', 'United Kingdom'), +('80.251.166.48', '80.251.166.87', 1358669360, 1358669399, 'PT', 'Portugal'), +('80.251.166.88', '80.251.166.95', 1358669400, 1358669407, 'GB', 'United Kingdom'), +('80.251.166.96', '80.251.166.191', 1358669408, 1358669503, 'PT', 'Portugal'), +('80.251.166.192', '80.251.166.207', 1358669504, 1358669519, 'GB', 'United Kingdom'), +('80.251.166.208', '80.251.166.231', 1358669520, 1358669543, 'PT', 'Portugal'), +('80.251.166.232', '80.251.166.239', 1358669544, 1358669551, 'GB', 'United Kingdom'), +('80.251.166.240', '80.251.168.91', 1358669552, 1358669915, 'PT', 'Portugal'), +('80.251.168.92', '80.251.168.95', 1358669916, 1358669919, 'GB', 'United Kingdom'), +('80.251.168.96', '80.251.168.175', 1358669920, 1358669999, 'PT', 'Portugal'), +('80.251.168.176', '80.251.168.207', 1358670000, 1358670031, 'GB', 'United Kingdom'), +('80.251.168.208', '80.251.169.31', 1358670032, 1358670111, 'PT', 'Portugal'), +('80.251.169.32', '80.251.170.255', 1358670112, 1358670591, 'GB', 'United Kingdom'), +('80.251.171.0', '80.251.172.111', 1358670592, 1358670959, 'PT', 'Portugal'), +('80.251.172.112', '80.251.172.127', 1358670960, 1358670975, 'GB', 'United Kingdom'), +('80.251.172.128', '80.251.172.255', 1358670976, 1358671103, 'PT', 'Portugal'), +('80.251.173.0', '80.251.174.7', 1358671104, 1358671367, 'GB', 'United Kingdom'), +('80.251.174.8', '80.251.174.15', 1358671368, 1358671375, 'PT', 'Portugal'), +('80.251.174.16', '80.251.174.23', 1358671376, 1358671383, 'GB', 'United Kingdom'), +('80.251.174.24', '80.251.174.31', 1358671384, 1358671391, 'PT', 'Portugal'), +('80.251.174.32', '80.251.174.47', 1358671392, 1358671407, 'GB', 'United Kingdom'), +('80.251.174.48', '80.251.174.55', 1358671408, 1358671415, 'PT', 'Portugal'), +('80.251.174.56', '80.251.174.79', 1358671416, 1358671439, 'GB', 'United Kingdom'), +('80.251.174.80', '80.251.174.255', 1358671440, 1358671615, 'PT', 'Portugal'), +('80.251.175.0', '80.251.191.255', 1358671616, 1358675967, 'GB', 'United Kingdom'), +('80.251.192.0', '80.251.194.255', 1358675968, 1358676735, 'SE', 'Sweden'), +('80.251.195.0', '80.251.198.255', 1358676736, 1358677759, 'DK', 'Denmark'), +('80.251.199.0', '80.251.204.255', 1358677760, 1358679295, 'SE', 'Sweden'), +('80.251.205.0', '80.251.206.255', 1358679296, 1358679807, 'DK', 'Denmark'), +('80.251.207.0', '80.251.207.255', 1358679808, 1358680063, 'SE', 'Sweden'), +('80.251.208.0', '80.251.239.255', 1358680064, 1358688255, 'RU', 'Russian Federation'), +('80.251.240.0', '80.251.255.255', 1358688256, 1358692351, 'CZ', 'Czech Republic'), +('80.252.0.0', '80.252.15.255', 1358692352, 1358696447, 'PL', 'Poland'), +('80.252.16.0', '80.252.31.255', 1358696448, 1358700543, 'RU', 'Russian Federation'), +('80.252.32.0', '80.252.47.255', 1358700544, 1358704639, 'AT', 'Austria'), +('80.252.48.0', '80.252.63.255', 1358704640, 1358708735, 'HU', 'Hungary'), +('80.252.64.0', '80.252.79.255', 1358708736, 1358712831, 'GB', 'United Kingdom'), +('80.252.80.0', '80.252.95.255', 1358712832, 1358716927, 'NL', 'Netherlands'), +('80.252.96.0', '80.252.111.255', 1358716928, 1358721023, 'DE', 'Germany'), +('80.252.112.0', '80.252.127.255', 1358721024, 1358725119, 'GB', 'United Kingdom'), +('80.252.128.0', '80.252.159.255', 1358725120, 1358733311, 'RU', 'Russian Federation'), +('80.252.160.0', '80.252.161.71', 1358733312, 1358733639, 'SE', 'Sweden'), +('80.252.161.72', '80.252.161.75', 1358733640, 1358733643, 'DE', 'Germany'), +('80.252.161.76', '80.252.162.179', 1358733644, 1358734003, 'SE', 'Sweden'), +('80.252.162.180', '80.252.162.183', 1358734004, 1358734007, 'NO', 'Norway'), +('80.252.162.184', '80.252.163.43', 1358734008, 1358734123, 'SE', 'Sweden'), +('80.252.163.44', '80.252.163.47', 1358734124, 1358734127, 'AN', 'Netherlands Antilles'), +('80.252.163.48', '80.252.164.7', 1358734128, 1358734343, 'SE', 'Sweden'), +('80.252.164.8', '80.252.164.11', 1358734344, 1358734347, 'NL', 'Netherlands'), +('80.252.164.12', '80.252.165.123', 1358734348, 1358734715, 'SE', 'Sweden'), +('80.252.165.124', '80.252.165.127', 1358734716, 1358734719, 'NL', 'Netherlands'), +('80.252.165.128', '80.252.166.127', 1358734720, 1358734975, 'SE', 'Sweden'), +('80.252.166.128', '80.252.166.131', 1358734976, 1358734979, 'NL', 'Netherlands'), +('80.252.166.132', '80.252.167.35', 1358734980, 1358735139, 'SE', 'Sweden'), +('80.252.167.36', '80.252.167.39', 1358735140, 1358735143, 'NL', 'Netherlands'), +('80.252.167.40', '80.252.167.215', 1358735144, 1358735319, 'SE', 'Sweden'), +('80.252.167.216', '80.252.167.219', 1358735320, 1358735323, 'DE', 'Germany'), +('80.252.167.220', '80.252.168.131', 1358735324, 1358735491, 'SE', 'Sweden'), +('80.252.168.132', '80.252.168.135', 1358735492, 1358735495, 'NL', 'Netherlands'), +('80.252.168.136', '80.252.169.95', 1358735496, 1358735711, 'SE', 'Sweden'), +('80.252.169.96', '80.252.169.99', 1358735712, 1358735715, 'FR', 'France'), +('80.252.169.100', '80.252.169.127', 1358735716, 1358735743, 'SE', 'Sweden'), +('80.252.169.128', '80.252.169.135', 1358735744, 1358735751, 'FR', 'France'), +('80.252.169.136', '80.252.174.31', 1358735752, 1358736927, 'SE', 'Sweden'), +('80.252.174.32', '80.252.174.47', 1358736928, 1358736943, 'NL', 'Netherlands'), +('80.252.174.48', '80.252.175.231', 1358736944, 1358737383, 'SE', 'Sweden'), +('80.252.175.232', '80.252.175.235', 1358737384, 1358737387, 'NL', 'Netherlands'), +('80.252.175.236', '80.252.178.183', 1358737388, 1358738103, 'SE', 'Sweden'), +('80.252.178.184', '80.252.178.191', 1358738104, 1358738111, 'FR', 'France'), +('80.252.178.192', '80.252.179.127', 1358738112, 1358738303, 'SE', 'Sweden'), +('80.252.179.128', '80.252.179.131', 1358738304, 1358738307, 'FR', 'France'), +('80.252.179.132', '80.252.179.255', 1358738308, 1358738431, 'SE', 'Sweden'), +('80.252.180.0', '80.252.180.15', 1358738432, 1358738447, 'NL', 'Netherlands'), +('80.252.180.16', '80.252.180.255', 1358738448, 1358738687, 'SE', 'Sweden'), +('80.252.181.0', '80.252.181.3', 1358738688, 1358738691, 'DE', 'Germany'), +('80.252.181.4', '80.252.182.191', 1358738692, 1358739135, 'SE', 'Sweden'), +('80.252.182.192', '80.252.182.207', 1358739136, 1358739151, 'NL', 'Netherlands'), +('80.252.182.208', '80.252.184.47', 1358739152, 1358739503, 'SE', 'Sweden'), +('80.252.184.48', '80.252.184.63', 1358739504, 1358739519, 'FR', 'France'), +('80.252.184.64', '80.252.186.191', 1358739520, 1358740159, 'SE', 'Sweden'), +('80.252.186.192', '80.252.186.207', 1358740160, 1358740175, 'FR', 'France'), +('80.252.186.208', '80.252.187.111', 1358740176, 1358740335, 'SE', 'Sweden'), +('80.252.187.112', '80.252.187.127', 1358740336, 1358740351, 'GB', 'United Kingdom'), +('80.252.187.128', '80.252.188.191', 1358740352, 1358740671, 'SE', 'Sweden'), +('80.252.188.192', '80.252.188.207', 1358740672, 1358740687, 'GB', 'United Kingdom'), +('80.252.188.208', '80.252.189.147', 1358740688, 1358740883, 'SE', 'Sweden'), +('80.252.189.148', '80.252.189.151', 1358740884, 1358740887, 'NL', 'Netherlands'), +('80.252.189.152', '80.252.190.63', 1358740888, 1358741055, 'SE', 'Sweden'), +('80.252.190.64', '80.252.190.79', 1358741056, 1358741071, 'GB', 'United Kingdom'), +('80.252.190.80', '80.252.191.255', 1358741072, 1358741503, 'SE', 'Sweden'), +('80.252.192.0', '80.252.207.255', 1358741504, 1358745599, 'IT', 'Italy'), +('80.252.208.0', '80.252.223.255', 1358745600, 1358749695, 'SE', 'Sweden'), +('80.252.224.0', '80.252.239.255', 1358749696, 1358753791, 'IT', 'Italy'), +('80.252.240.0', '80.252.255.255', 1358753792, 1358757887, 'UA', 'Ukraine'), +('80.253.0.0', '80.253.31.255', 1358757888, 1358766079, 'RU', 'Russian Federation'), +('80.253.32.0', '80.253.47.255', 1358766080, 1358770175, 'IT', 'Italy'), +('80.253.48.0', '80.253.63.255', 1358770176, 1358774271, 'BG', 'Bulgaria'), +('80.253.64.0', '80.253.79.255', 1358774272, 1358778367, 'ES', 'Spain'), +('80.253.80.0', '80.253.95.255', 1358778368, 1358782463, 'CH', 'Switzerland'), +('80.253.96.0', '80.253.102.15', 1358782464, 1358784015, 'GB', 'United Kingdom'), +('80.253.102.16', '80.253.102.39', 1358784016, 1358784039, 'NL', 'Netherlands'), +('80.253.102.40', '80.253.102.63', 1358784040, 1358784063, 'DE', 'Germany'), +('80.253.102.64', '80.253.105.63', 1358784064, 1358784831, 'GB', 'United Kingdom'), +('80.253.105.64', '80.253.105.95', 1358784832, 1358784863, 'NL', 'Netherlands'), +('80.253.105.96', '80.253.105.127', 1358784864, 1358784895, 'DE', 'Germany'), +('80.253.105.128', '80.253.106.63', 1358784896, 1358785087, 'GB', 'United Kingdom'), +('80.253.106.64', '80.253.106.127', 1358785088, 1358785151, 'NL', 'Netherlands'), +('80.253.106.128', '80.253.111.255', 1358785152, 1358786559, 'GB', 'United Kingdom'), +('80.253.112.0', '80.253.113.255', 1358786560, 1358787071, 'NL', 'Netherlands'), +('80.253.114.0', '80.253.115.7', 1358787072, 1358787335, 'GB', 'United Kingdom'), +('80.253.115.8', '80.253.115.31', 1358787336, 1358787359, 'IE', 'Ireland'), +('80.253.115.32', '80.253.122.47', 1358787360, 1358789167, 'GB', 'United Kingdom'), +('80.253.122.48', '80.253.122.63', 1358789168, 1358789183, 'IE', 'Ireland'), +('80.253.122.64', '80.253.127.255', 1358789184, 1358790655, 'GB', 'United Kingdom'), +('80.253.128.0', '80.253.159.255', 1358790656, 1358798847, 'IR', 'Iran, Islamic Republic of'), +('80.253.160.0', '80.253.161.255', 1358798848, 1358799359, 'GB', 'United Kingdom'), +('80.253.162.0', '80.253.175.255', 1358799360, 1358802943, 'HR', 'Croatia'), +('80.253.176.0', '80.253.191.255', 1358802944, 1358807039, 'HU', 'Hungary'), +('80.253.192.0', '80.253.196.95', 1358807040, 1358808159, 'A2', 'Satellite Provider'), +('80.253.196.96', '80.253.196.127', 1358808160, 1358808191, 'RU', 'Russian Federation'), +('80.253.196.128', '80.253.205.249', 1358808192, 1358810617, 'A2', 'Satellite Provider'), +('80.253.205.250', '80.253.205.254', 1358810618, 1358810622, 'RU', 'Russian Federation'), +('80.253.205.255', '80.253.206.255', 1358810623, 1358810879, 'A2', 'Satellite Provider'), +('80.253.207.0', '80.253.207.127', 1358810880, 1358811007, 'RU', 'Russian Federation'), +('80.253.207.128', '80.253.207.255', 1358811008, 1358811135, 'A2', 'Satellite Provider'), +('80.253.208.0', '80.253.223.255', 1358811136, 1358815231, 'DE', 'Germany'), +('80.253.224.0', '80.253.239.255', 1358815232, 1358819327, 'RU', 'Russian Federation'), +('80.253.240.0', '80.253.255.255', 1358819328, 1358823423, 'TR', 'Turkey'), +('80.254.0.0', '80.254.15.255', 1358823424, 1358827519, 'UA', 'Ukraine'), +('80.254.16.0', '80.254.31.255', 1358827520, 1358831615, 'RU', 'Russian Federation'), +('80.254.32.0', '80.254.47.255', 1358831616, 1358835711, 'NO', 'Norway'), +('80.254.48.0', '80.254.63.255', 1358835712, 1358839807, 'RU', 'Russian Federation'), +('80.254.64.0', '80.254.79.255', 1358839808, 1358843903, 'CH', 'Switzerland'), +('80.254.80.0', '80.254.95.255', 1358843904, 1358847999, 'MT', 'Malta'), +('80.254.96.0', '80.254.127.255', 1358848000, 1358856191, 'RU', 'Russian Federation'), +('80.254.128.0', '80.254.143.255', 1358856192, 1358860287, 'DE', 'Germany'), +('80.254.144.0', '80.254.147.255', 1358860288, 1358861311, 'GB', 'United Kingdom'), +('80.254.148.0', '80.254.149.255', 1358861312, 1358861823, 'DE', 'Germany'), +('80.254.150.0', '80.254.151.255', 1358861824, 1358862335, 'GB', 'United Kingdom'), +('80.254.152.0', '80.254.152.255', 1358862336, 1358862591, 'US', 'United States'), +('80.254.153.0', '80.254.155.255', 1358862592, 1358863359, 'GB', 'United Kingdom'), +('80.254.156.0', '80.254.156.255', 1358863360, 1358863615, 'US', 'United States'), +('80.254.157.0', '80.254.159.255', 1358863616, 1358864383, 'GB', 'United Kingdom'), +('80.254.160.0', '80.254.160.15', 1358864384, 1358864399, 'CH', 'Switzerland'), +('80.254.160.16', '80.254.160.23', 1358864400, 1358864407, 'IN', 'India'), +('80.254.160.24', '80.254.160.151', 1358864408, 1358864535, 'CH', 'Switzerland'), +('80.254.160.152', '80.254.160.159', 1358864536, 1358864543, 'LI', 'Liechtenstein'), +('80.254.160.160', '80.254.191.255', 1358864544, 1358872575, 'CH', 'Switzerland'), +('80.254.192.0', '80.254.207.255', 1358872576, 1358876671, 'IT', 'Italy'), +('80.254.208.0', '80.254.223.255', 1358876672, 1358880767, 'LV', 'Latvia'), +('80.254.224.0', '80.254.239.255', 1358880768, 1358884863, 'GB', 'United Kingdom'), +('80.254.240.0', '80.254.255.255', 1358884864, 1358888959, 'SE', 'Sweden'), +('80.255.0.0', '80.255.15.255', 1358888960, 1358893055, 'DE', 'Germany'), +('80.255.16.0', '80.255.31.255', 1358893056, 1358897151, 'RU', 'Russian Federation'), +('80.255.32.0', '80.255.35.255', 1358897152, 1358898175, 'A2', 'Satellite Provider'), +('80.255.36.0', '80.255.36.63', 1358898176, 1358898239, 'CA', 'Canada'), +('80.255.36.64', '80.255.36.159', 1358898240, 1358898335, 'A2', 'Satellite Provider'), +('80.255.36.160', '80.255.36.175', 1358898336, 1358898351, 'DK', 'Denmark'), +('80.255.36.176', '80.255.38.128', 1358898352, 1358898816, 'A2', 'Satellite Provider'), +('80.255.38.129', '80.255.38.255', 1358898817, 1358898943, 'CG', 'Congo'), +('80.255.39.0', '80.255.39.31', 1358898944, 1358898975, 'A2', 'Satellite Provider'), +('80.255.39.32', '80.255.39.47', 1358898976, 1358898991, 'US', 'United States'), +('80.255.39.48', '80.255.39.135', 1358898992, 1358899079, 'A2', 'Satellite Provider'), +('80.255.39.136', '80.255.39.143', 1358899080, 1358899087, 'CD', 'Congo, The Democratic Republic of the'), +('80.255.39.144', '80.255.39.151', 1358899088, 1358899095, 'A2', 'Satellite Provider'), +('80.255.39.152', '80.255.39.159', 1358899096, 1358899103, 'CD', 'Congo, The Democratic Republic of the'), +('80.255.39.160', '80.255.39.167', 1358899104, 1358899111, 'A2', 'Satellite Provider'), +('80.255.39.168', '80.255.39.175', 1358899112, 1358899119, 'ZA', 'South Africa'), +('80.255.39.176', '80.255.39.183', 1358899120, 1358899127, 'A2', 'Satellite Provider'), +('80.255.39.184', '80.255.39.191', 1358899128, 1358899135, 'NG', 'Nigeria'), +('80.255.39.192', '80.255.39.255', 1358899136, 1358899199, 'A2', 'Satellite Provider'), +('80.255.40.0', '80.255.40.7', 1358899200, 1358899207, 'UG', 'Uganda'), +('80.255.40.8', '80.255.40.15', 1358899208, 1358899215, 'LA', 'Lao People''s Democratic Republic'), +('80.255.40.16', '80.255.40.39', 1358899216, 1358899239, 'US', 'United States'), +('80.255.40.40', '80.255.40.47', 1358899240, 1358899247, 'LK', 'Sri Lanka'), +('80.255.40.48', '80.255.40.63', 1358899248, 1358899263, 'A2', 'Satellite Provider'), +('80.255.40.64', '80.255.40.95', 1358899264, 1358899295, 'PK', 'Pakistan'), +('80.255.40.96', '80.255.40.103', 1358899296, 1358899303, 'NG', 'Nigeria'), +('80.255.40.104', '80.255.40.111', 1358899304, 1358899311, 'AE', 'United Arab Emirates'), +('80.255.40.112', '80.255.40.127', 1358899312, 1358899327, 'NG', 'Nigeria'), +('80.255.40.128', '80.255.40.135', 1358899328, 1358899335, 'CD', 'Congo, The Democratic Republic of the'), +('80.255.40.136', '80.255.40.143', 1358899336, 1358899343, 'NG', 'Nigeria'), +('80.255.40.144', '80.255.40.159', 1358899344, 1358899359, 'MR', 'Mauritania'), +('80.255.40.160', '80.255.40.175', 1358899360, 1358899375, 'US', 'United States'), +('80.255.40.176', '80.255.40.183', 1358899376, 1358899383, 'CD', 'Congo, The Democratic Republic of the'), +('80.255.40.184', '80.255.40.191', 1358899384, 1358899391, 'UG', 'Uganda'), +('80.255.40.192', '80.255.40.207', 1358899392, 1358899407, 'A2', 'Satellite Provider'), +('80.255.40.208', '80.255.40.215', 1358899408, 1358899415, 'DE', 'Germany'), +('80.255.40.216', '80.255.40.223', 1358899416, 1358899423, 'CD', 'Congo, The Democratic Republic of the'), +('80.255.40.224', '80.255.40.231', 1358899424, 1358899431, 'US', 'United States'), +('80.255.40.232', '80.255.40.255', 1358899432, 1358899455, 'NG', 'Nigeria'), +('80.255.41.0', '80.255.41.7', 1358899456, 1358899463, 'A2', 'Satellite Provider'), +('80.255.41.8', '80.255.41.15', 1358899464, 1358899471, 'US', 'United States'), +('80.255.41.16', '80.255.41.23', 1358899472, 1358899479, 'SV', 'El Salvador'), +('80.255.41.24', '80.255.41.127', 1358899480, 1358899583, 'A2', 'Satellite Provider'), +('80.255.41.128', '80.255.41.135', 1358899584, 1358899591, 'IN', 'India'), +('80.255.41.136', '80.255.41.143', 1358899592, 1358899599, 'NG', 'Nigeria'), +('80.255.41.144', '80.255.41.151', 1358899600, 1358899607, 'LK', 'Sri Lanka'), +('80.255.41.152', '80.255.41.159', 1358899608, 1358899615, 'A2', 'Satellite Provider'), +('80.255.41.160', '80.255.41.175', 1358899616, 1358899631, 'NG', 'Nigeria'), +('80.255.41.176', '80.255.41.191', 1358899632, 1358899647, 'NP', 'Nepal'), +('80.255.41.192', '80.255.41.198', 1358899648, 1358899654, 'NG', 'Nigeria'), +('80.255.41.199', '80.255.43.15', 1358899655, 1358899983, 'A2', 'Satellite Provider'), +('80.255.43.16', '80.255.43.23', 1358899984, 1358899991, 'KY', 'Cayman Islands'), +('80.255.43.24', '80.255.46.31', 1358899992, 1358900767, 'A2', 'Satellite Provider'), +('80.255.46.32', '80.255.46.47', 1358900768, 1358900783, 'BI', 'Burundi'), +('80.255.46.48', '80.255.46.223', 1358900784, 1358900959, 'A2', 'Satellite Provider'), +('80.255.46.224', '80.255.46.239', 1358900960, 1358900975, 'SL', 'Sierra Leone'), +('80.255.46.240', '80.255.46.255', 1358900976, 1358900991, 'A2', 'Satellite Provider'), +('80.255.47.0', '80.255.47.255', 1358900992, 1358901247, 'TZ', 'Tanzania, United Republic of'), +('80.255.48.0', '80.255.49.39', 1358901248, 1358901543, 'A2', 'Satellite Provider'), +('80.255.49.40', '80.255.49.47', 1358901544, 1358901551, 'DE', 'Germany'), +('80.255.49.48', '80.255.50.47', 1358901552, 1358901807, 'A2', 'Satellite Provider'), +('80.255.50.48', '80.255.50.55', 1358901808, 1358901815, 'CD', 'Congo, The Democratic Republic of the'), +('80.255.50.56', '80.255.50.175', 1358901816, 1358901935, 'A2', 'Satellite Provider'), +('80.255.50.176', '80.255.50.191', 1358901936, 1358901951, 'NG', 'Nigeria'), +('80.255.50.192', '80.255.50.239', 1358901952, 1358901999, 'A2', 'Satellite Provider'), +('80.255.50.240', '80.255.51.23', 1358902000, 1358902039, 'NG', 'Nigeria'), +('80.255.51.24', '80.255.51.47', 1358902040, 1358902063, 'A2', 'Satellite Provider'), +('80.255.51.48', '80.255.51.63', 1358902064, 1358902079, 'TZ', 'Tanzania, United Republic of'), +('80.255.51.64', '80.255.51.71', 1358902080, 1358902087, 'NG', 'Nigeria'), +('80.255.51.72', '80.255.51.87', 1358902088, 1358902103, 'MG', 'Madagascar'), +('80.255.51.88', '80.255.51.127', 1358902104, 1358902143, 'NG', 'Nigeria'), +('80.255.51.128', '80.255.51.135', 1358902144, 1358902151, 'A2', 'Satellite Provider'), +('80.255.51.136', '80.255.51.151', 1358902152, 1358902167, 'NG', 'Nigeria'), +('80.255.51.152', '80.255.51.159', 1358902168, 1358902175, 'AU', 'Australia'), +('80.255.51.160', '80.255.51.191', 1358902176, 1358902207, 'A2', 'Satellite Provider'), +('80.255.51.192', '80.255.51.199', 1358902208, 1358902215, 'US', 'United States'), +('80.255.51.200', '80.255.51.217', 1358902216, 1358902233, 'NG', 'Nigeria'), +('80.255.51.218', '80.255.51.247', 1358902234, 1358902263, 'A2', 'Satellite Provider'), +('80.255.51.248', '80.255.51.255', 1358902264, 1358902271, 'ZA', 'South Africa'), +('80.255.52.0', '80.255.57.63', 1358902272, 1358903615, 'A2', 'Satellite Provider'), +('80.255.57.64', '80.255.57.71', 1358903616, 1358903623, 'GB', 'United Kingdom'), +('80.255.57.72', '80.255.57.255', 1358903624, 1358903807, 'A2', 'Satellite Provider'), +('80.255.58.0', '80.255.58.143', 1358903808, 1358903951, 'NG', 'Nigeria'), +('80.255.58.144', '80.255.58.159', 1358903952, 1358903967, 'A2', 'Satellite Provider'), +('80.255.58.160', '80.255.58.175', 1358903968, 1358903983, 'CA', 'Canada'), +('80.255.58.176', '80.255.58.191', 1358903984, 1358903999, 'NG', 'Nigeria'), +('80.255.58.192', '80.255.58.224', 1358904000, 1358904032, 'ZA', 'South Africa'), +('80.255.58.225', '80.255.58.255', 1358904033, 1358904063, 'NG', 'Nigeria'), +('80.255.59.0', '80.255.59.7', 1358904064, 1358904071, 'A2', 'Satellite Provider'), +('80.255.59.8', '80.255.59.31', 1358904072, 1358904095, 'US', 'United States'), +('80.255.59.32', '80.255.59.39', 1358904096, 1358904103, 'A2', 'Satellite Provider'), +('80.255.59.40', '80.255.59.55', 1358904104, 1358904119, 'US', 'United States'), +('80.255.59.56', '80.255.59.63', 1358904120, 1358904127, 'A2', 'Satellite Provider'), +('80.255.59.64', '80.255.59.71', 1358904128, 1358904135, 'US', 'United States'), +('80.255.59.72', '80.255.59.79', 1358904136, 1358904143, 'A2', 'Satellite Provider'), +('80.255.59.80', '80.255.59.87', 1358904144, 1358904151, 'NG', 'Nigeria'), +('80.255.59.88', '80.255.59.103', 1358904152, 1358904167, 'A2', 'Satellite Provider'), +('80.255.59.104', '80.255.59.111', 1358904168, 1358904175, 'US', 'United States'), +('80.255.59.112', '80.255.59.127', 1358904176, 1358904191, 'A2', 'Satellite Provider'), +('80.255.59.128', '80.255.59.135', 1358904192, 1358904199, 'NG', 'Nigeria'), +('80.255.59.136', '80.255.59.198', 1358904200, 1358904262, 'US', 'United States'), +('80.255.59.199', '80.255.59.231', 1358904263, 1358904295, 'A2', 'Satellite Provider'), +('80.255.59.232', '80.255.59.247', 1358904296, 1358904311, 'NG', 'Nigeria'), +('80.255.59.248', '80.255.60.231', 1358904312, 1358904551, 'A2', 'Satellite Provider'), +('80.255.60.232', '80.255.60.239', 1358904552, 1358904559, 'IL', 'Israel'), +('80.255.60.240', '80.255.60.255', 1358904560, 1358904575, 'A2', 'Satellite Provider'), +('80.255.61.0', '80.255.61.125', 1358904576, 1358904701, 'NG', 'Nigeria'), +('80.255.61.126', '80.255.61.127', 1358904702, 1358904703, 'A2', 'Satellite Provider'), +('80.255.61.128', '80.255.61.143', 1358904704, 1358904719, 'MU', 'Mauritius'), +('80.255.61.144', '80.255.61.159', 1358904720, 1358904735, 'KN', 'Saint Kitts and Nevis'), +('80.255.61.160', '80.255.61.191', 1358904736, 1358904767, 'ZA', 'South Africa'), +('80.255.61.192', '80.255.61.255', 1358904768, 1358904831, 'NG', 'Nigeria'), +('80.255.62.0', '80.255.63.7', 1358904832, 1358905095, 'A2', 'Satellite Provider'), +('80.255.63.8', '80.255.63.15', 1358905096, 1358905103, 'GH', 'Ghana'), +('80.255.63.16', '80.255.63.23', 1358905104, 1358905111, 'A2', 'Satellite Provider'), +('80.255.63.24', '80.255.63.31', 1358905112, 1358905119, 'TZ', 'Tanzania, United Republic of'), +('80.255.63.32', '80.255.63.39', 1358905120, 1358905127, 'GY', 'Guyana'), +('80.255.63.40', '80.255.63.63', 1358905128, 1358905151, 'A2', 'Satellite Provider'), +('80.255.63.64', '80.255.63.71', 1358905152, 1358905159, 'MG', 'Madagascar'), +('80.255.63.72', '80.255.63.79', 1358905160, 1358905167, 'A2', 'Satellite Provider'), +('80.255.63.80', '80.255.63.95', 1358905168, 1358905183, 'CD', 'Congo, The Democratic Republic of the'), +('80.255.63.96', '80.255.63.127', 1358905184, 1358905215, 'GH', 'Ghana'), +('80.255.63.128', '80.255.63.135', 1358905216, 1358905223, 'US', 'United States'), +('80.255.63.136', '80.255.63.143', 1358905224, 1358905231, 'A2', 'Satellite Provider'), +('80.255.63.144', '80.255.63.159', 1358905232, 1358905247, 'GN', 'Guinea'), +('80.255.63.160', '80.255.63.191', 1358905248, 1358905279, 'US', 'United States'), +('80.255.63.192', '80.255.63.207', 1358905280, 1358905295, 'A2', 'Satellite Provider'), +('80.255.63.208', '80.255.63.223', 1358905296, 1358905311, 'LR', 'Liberia'), +('80.255.63.224', '80.255.63.239', 1358905312, 1358905327, 'US', 'United States'), +('80.255.63.240', '80.255.63.255', 1358905328, 1358905343, 'A2', 'Satellite Provider'), +('80.255.64.0', '80.255.79.255', 1358905344, 1358909439, 'UA', 'Ukraine'), +('80.255.80.0', '80.255.95.255', 1358909440, 1358913535, 'RU', 'Russian Federation'), +('80.255.96.0', '80.255.111.255', 1358913536, 1358917631, 'CH', 'Switzerland'), +('80.255.112.0', '80.255.127.255', 1358917632, 1358921727, 'ES', 'Spain'), +('80.255.128.0', '80.255.159.255', 1358921728, 1358929919, 'RU', 'Russian Federation'), +('80.255.160.0', '80.255.175.255', 1358929920, 1358934015, 'LU', 'Luxembourg'), +('80.255.176.0', '80.255.191.255', 1358934016, 1358938111, 'RU', 'Russian Federation'), +('80.255.192.0', '80.255.223.255', 1358938112, 1358946303, 'GB', 'United Kingdom'), +('80.255.224.0', '80.255.239.255', 1358946304, 1358950399, 'LV', 'Latvia'), +('80.255.240.0', '80.255.255.255', 1358950400, 1358954495, 'NL', 'Netherlands'), +('81.0.0.0', '81.0.63.255', 1358954496, 1358970879, 'ES', 'Spain'), +('81.0.64.0', '81.0.115.255', 1358970880, 1358984191, 'HU', 'Hungary'), +('81.0.116.0', '81.0.117.255', 1358984192, 1358984703, 'SK', 'Slovakia'), +('81.0.118.0', '81.0.123.255', 1358984704, 1358986239, 'HU', 'Hungary'), +('81.0.124.0', '81.0.124.255', 1358986240, 1358986495, 'SK', 'Slovakia'), +('81.0.125.0', '81.0.127.255', 1358986496, 1358987263, 'HU', 'Hungary'), +('81.0.128.0', '81.0.191.255', 1358987264, 1359003647, 'NO', 'Norway'), +('81.0.192.0', '81.0.255.255', 1359003648, 1359020031, 'CZ', 'Czech Republic'), +('81.1.0.0', '81.1.63.255', 1359020032, 1359036415, 'FR', 'France'), +('81.1.64.0', '81.1.127.255', 1359036416, 1359052799, 'GB', 'United Kingdom'), +('81.1.128.0', '81.1.191.255', 1359052800, 1359069183, 'SE', 'Sweden'), +('81.1.192.0', '81.2.63.255', 1359069184, 1359101951, 'RU', 'Russian Federation'), +('81.2.64.0', '81.2.127.255', 1359101952, 1359118335, 'GB', 'United Kingdom'), +('81.2.128.0', '81.2.191.255', 1359118336, 1359134719, 'DE', 'Germany'), +('81.2.192.0', '81.2.251.255', 1359134720, 1359150079, 'CZ', 'Czech Republic'), +('81.2.252.0', '81.2.253.255', 1359150080, 1359150591, 'HU', 'Hungary'), +('81.2.254.0', '81.2.255.255', 1359150592, 1359151103, 'CZ', 'Czech Republic'), +('81.3.0.0', '81.3.58.223', 1359151104, 1359166175, 'DE', 'Germany'), +('81.3.58.224', '81.3.58.239', 1359166176, 1359166191, 'HK', 'Hong Kong'), +('81.3.58.240', '81.3.63.255', 1359166192, 1359167487, 'DE', 'Germany'), +('81.3.64.0', '81.3.127.255', 1359167488, 1359183871, 'GB', 'United Kingdom'), +('81.3.128.0', '81.3.191.255', 1359183872, 1359200255, 'RU', 'Russian Federation'), +('81.3.192.0', '81.3.255.255', 1359200256, 1359216639, 'AT', 'Austria'), +('81.4.0.0', '81.4.63.255', 1359216640, 1359233023, 'EG', 'Egypt'), +('81.4.64.0', '81.4.127.255', 1359233024, 1359249407, 'NL', 'Netherlands'), +('81.4.128.0', '81.4.135.223', 1359249408, 1359251423, 'CY', 'Cyprus'), +('81.4.135.224', '81.4.135.227', 1359251424, 1359251427, 'A2', 'Satellite Provider'), +('81.4.135.228', '81.4.172.63', 1359251428, 1359260735, 'CY', 'Cyprus'), +('81.4.172.64', '81.4.172.79', 1359260736, 1359260751, 'A2', 'Satellite Provider'), +('81.4.172.80', '81.4.183.255', 1359260752, 1359263743, 'CY', 'Cyprus'), +('81.4.184.0', '81.4.184.255', 1359263744, 1359263999, 'LB', 'Lebanon'), +('81.4.185.0', '81.4.187.255', 1359264000, 1359264767, 'CY', 'Cyprus'), +('81.4.188.0', '81.4.188.255', 1359264768, 1359265023, 'LB', 'Lebanon'), +('81.4.189.0', '81.4.191.255', 1359265024, 1359265791, 'CY', 'Cyprus'), +('81.4.192.0', '81.4.255.255', 1359265792, 1359282175, 'RU', 'Russian Federation'), +('81.5.0.0', '81.5.63.255', 1359282176, 1359298559, 'IL', 'Israel'), +('81.5.64.0', '81.5.127.255', 1359298560, 1359314943, 'RU', 'Russian Federation'), +('81.5.128.0', '81.5.191.255', 1359314944, 1359331327, 'GB', 'United Kingdom'), +('81.5.192.0', '81.5.255.255', 1359331328, 1359347711, 'AT', 'Austria'), +('81.6.0.0', '81.6.6.103', 1359347712, 1359349351, 'CH', 'Switzerland'), +('81.6.6.104', '81.6.6.111', 1359349352, 1359349359, 'LB', 'Lebanon'), +('81.6.6.112', '81.6.63.255', 1359349360, 1359364095, 'CH', 'Switzerland'), +('81.6.64.0', '81.6.127.255', 1359364096, 1359380479, 'TR', 'Turkey'), +('81.6.128.0', '81.6.191.255', 1359380480, 1359396863, 'PL', 'Poland'), +('81.6.192.0', '81.6.255.255', 1359396864, 1359413247, 'GB', 'United Kingdom'), +('81.7.64.0', '81.7.127.255', 1359429632, 1359446015, 'LT', 'Lithuania'), +('81.7.128.0', '81.7.191.255', 1359446016, 1359462399, 'DK', 'Denmark'), +('81.7.192.0', '81.7.210.55', 1359462400, 1359467063, 'DE', 'Germany'), +('81.7.210.56', '81.7.210.71', 1359467064, 1359467079, 'US', 'United States'), +('81.7.210.72', '81.7.210.79', 1359467080, 1359467087, 'DE', 'Germany'), +('81.7.210.80', '81.7.210.87', 1359467088, 1359467095, 'US', 'United States'), +('81.7.210.88', '81.7.210.95', 1359467096, 1359467103, 'BR', 'Brazil'), +('81.7.210.96', '81.7.210.127', 1359467104, 1359467135, 'US', 'United States'), +('81.7.210.128', '81.7.210.135', 1359467136, 1359467143, 'MX', 'Mexico'), +('81.7.210.136', '81.7.210.207', 1359467144, 1359467215, 'US', 'United States'), +('81.7.210.208', '81.7.210.215', 1359467216, 1359467223, 'DE', 'Germany'), +('81.7.210.216', '81.7.210.223', 1359467224, 1359467231, 'US', 'United States'), +('81.7.210.224', '81.7.210.231', 1359467232, 1359467239, 'DE', 'Germany'), +('81.7.210.232', '81.7.210.247', 1359467240, 1359467255, 'US', 'United States'), +('81.7.210.248', '81.7.210.255', 1359467256, 1359467263, 'MX', 'Mexico'), +('81.7.211.0', '81.7.211.191', 1359467264, 1359467455, 'US', 'United States'), +('81.7.211.192', '81.7.211.223', 1359467456, 1359467487, 'CA', 'Canada'), +('81.7.211.224', '81.7.211.231', 1359467488, 1359467495, 'DE', 'Germany'), +('81.7.211.232', '81.7.212.127', 1359467496, 1359467647, 'US', 'United States'), +('81.7.212.128', '81.7.216.39', 1359467648, 1359468583, 'DE', 'Germany'), +('81.7.216.40', '81.7.216.47', 1359468584, 1359468591, 'SG', 'Singapore'), +('81.7.216.48', '81.7.216.95', 1359468592, 1359468639, 'DE', 'Germany'), +('81.7.216.96', '81.7.216.111', 1359468640, 1359468655, 'SG', 'Singapore'), +('81.7.216.112', '81.7.216.127', 1359468656, 1359468671, 'JP', 'Japan'), +('81.7.216.128', '81.7.216.151', 1359468672, 1359468695, 'SG', 'Singapore'), +('81.7.216.152', '81.7.221.119', 1359468696, 1359469943, 'DE', 'Germany'), +('81.7.221.120', '81.7.221.159', 1359469944, 1359469983, 'AT', 'Austria'), +('81.7.221.160', '81.7.223.255', 1359469984, 1359470591, 'DE', 'Germany'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('81.7.224.0', '81.7.255.255', 1359470592, 1359478783, 'CH', 'Switzerland'), +('81.8.0.0', '81.8.127.255', 1359478784, 1359511551, 'TR', 'Turkey'), +('81.8.128.0', '81.8.255.255', 1359511552, 1359544319, 'SE', 'Sweden'), +('81.9.0.0', '81.9.11.255', 1359544320, 1359547391, 'RU', 'Russian Federation'), +('81.9.12.0', '81.9.13.255', 1359547392, 1359547903, 'US', 'United States'), +('81.9.14.0', '81.9.14.255', 1359547904, 1359548159, 'RU', 'Russian Federation'), +('81.9.15.0', '81.9.15.255', 1359548160, 1359548415, 'US', 'United States'), +('81.9.16.0', '81.9.31.255', 1359548416, 1359552511, 'RU', 'Russian Federation'), +('81.9.32.0', '81.9.32.255', 1359552512, 1359552767, 'US', 'United States'), +('81.9.33.0', '81.9.36.63', 1359552768, 1359553599, 'RU', 'Russian Federation'), +('81.9.36.64', '81.9.36.95', 1359553600, 1359553631, 'US', 'United States'), +('81.9.36.96', '81.9.127.255', 1359553632, 1359577087, 'RU', 'Russian Federation'), +('81.9.128.0', '81.9.255.255', 1359577088, 1359609855, 'ES', 'Spain'), +('81.10.0.0', '81.10.80.255', 1359609856, 1359630591, 'EG', 'Egypt'), +('81.10.81.0', '81.10.83.255', 1359630592, 1359631359, 'JO', 'Jordan'), +('81.10.84.0', '81.10.115.255', 1359631360, 1359639551, 'EG', 'Egypt'), +('81.10.116.0', '81.10.119.255', 1359639552, 1359640575, 'JO', 'Jordan'), +('81.10.120.0', '81.10.122.255', 1359640576, 1359641343, 'EG', 'Egypt'), +('81.10.123.0', '81.10.127.255', 1359641344, 1359642623, 'JO', 'Jordan'), +('81.10.128.0', '81.10.255.255', 1359642624, 1359675391, 'AT', 'Austria'), +('81.11.0.0', '81.11.127.255', 1359675392, 1359708159, 'DE', 'Germany'), +('81.11.128.0', '81.11.255.255', 1359708160, 1359740927, 'BE', 'Belgium'), +('81.12.0.0', '81.12.127.255', 1359740928, 1359773695, 'IR', 'Iran, Islamic Republic of'), +('81.12.128.0', '81.12.255.255', 1359773696, 1359806463, 'RO', 'Romania'), +('81.13.0.0', '81.13.127.255', 1359806464, 1359839231, 'RU', 'Russian Federation'), +('81.13.128.0', '81.13.255.255', 1359839232, 1359871999, 'CH', 'Switzerland'), +('81.14.0.0', '81.14.127.255', 1359872000, 1359904767, 'GB', 'United Kingdom'), +('81.14.128.0', '81.14.255.255', 1359904768, 1359937535, 'DE', 'Germany'), +('81.15.0.0', '81.15.127.255', 1359937536, 1359970303, 'IS', 'Iceland'), +('81.15.128.0', '81.15.255.255', 1359970304, 1360003071, 'PL', 'Poland'), +('81.16.0.0', '81.16.15.255', 1360003072, 1360007167, 'AM', 'Armenia'), +('81.16.16.0', '81.16.31.255', 1360007168, 1360011263, 'GB', 'United Kingdom'), +('81.16.32.0', '81.16.47.255', 1360011264, 1360015359, 'AT', 'Austria'), +('81.16.48.0', '81.16.63.255', 1360015360, 1360019455, 'DE', 'Germany'), +('81.16.64.0', '81.16.79.255', 1360019456, 1360023551, 'FI', 'Finland'), +('81.16.80.0', '81.16.95.255', 1360023552, 1360027647, 'RU', 'Russian Federation'), +('81.16.96.0', '81.16.111.255', 1360027648, 1360031743, 'AT', 'Austria'), +('81.16.112.0', '81.16.143.255', 1360031744, 1360039935, 'RU', 'Russian Federation'), +('81.16.144.0', '81.16.158.223', 1360039936, 1360043743, 'AT', 'Austria'), +('81.16.158.224', '81.16.158.227', 1360043744, 1360043747, 'AU', 'Australia'), +('81.16.158.228', '81.16.159.255', 1360043748, 1360044031, 'AT', 'Austria'), +('81.16.160.0', '81.16.175.255', 1360044032, 1360048127, 'SE', 'Sweden'), +('81.16.176.0', '81.16.180.15', 1360048128, 1360049167, 'DE', 'Germany'), +('81.16.180.16', '81.16.180.31', 1360049168, 1360049183, 'GB', 'United Kingdom'), +('81.16.180.32', '81.16.180.47', 1360049184, 1360049199, 'DE', 'Germany'), +('81.16.180.48', '81.16.180.55', 1360049200, 1360049207, 'SE', 'Sweden'), +('81.16.180.56', '81.16.180.63', 1360049208, 1360049215, 'IT', 'Italy'), +('81.16.180.64', '81.16.180.71', 1360049216, 1360049223, 'ES', 'Spain'), +('81.16.180.72', '81.16.180.79', 1360049224, 1360049231, 'JP', 'Japan'), +('81.16.180.80', '81.16.180.87', 1360049232, 1360049239, 'US', 'United States'), +('81.16.180.88', '81.16.180.95', 1360049240, 1360049247, 'GB', 'United Kingdom'), +('81.16.180.96', '81.16.191.255', 1360049248, 1360052223, 'DE', 'Germany'), +('81.16.192.0', '81.16.207.255', 1360052224, 1360056319, 'HU', 'Hungary'), +('81.16.208.0', '81.16.223.255', 1360056320, 1360060415, 'SA', 'Saudi Arabia'), +('81.16.224.0', '81.16.239.255', 1360060416, 1360064511, 'LT', 'Lithuania'), +('81.16.240.0', '81.16.255.255', 1360064512, 1360068607, 'GE', 'Georgia'), +('81.17.0.0', '81.17.31.255', 1360068608, 1360076799, 'RU', 'Russian Federation'), +('81.17.32.0', '81.17.63.255', 1360076800, 1360084991, 'NL', 'Netherlands'), +('81.17.64.0', '81.17.79.255', 1360084992, 1360089087, 'GB', 'United Kingdom'), +('81.17.80.0', '81.17.95.255', 1360089088, 1360093183, 'AZ', 'Azerbaijan'), +('81.17.96.0', '81.17.127.255', 1360093184, 1360101375, 'DE', 'Germany'), +('81.17.128.0', '81.17.143.255', 1360101376, 1360105471, 'UA', 'Ukraine'), +('81.17.144.0', '81.17.159.255', 1360105472, 1360109567, 'RU', 'Russian Federation'), +('81.17.160.0', '81.17.175.255', 1360109568, 1360113663, 'KZ', 'Kazakstan'), +('81.17.176.0', '81.17.191.255', 1360113664, 1360117759, 'HU', 'Hungary'), +('81.17.192.0', '81.17.207.255', 1360117760, 1360121855, 'FI', 'Finland'), +('81.17.208.0', '81.17.223.255', 1360121856, 1360125951, 'DE', 'Germany'), +('81.17.224.0', '81.17.227.255', 1360125952, 1360126975, 'SI', 'Slovenia'), +('81.17.228.0', '81.17.229.255', 1360126976, 1360127487, 'HR', 'Croatia'), +('81.17.230.0', '81.17.231.255', 1360127488, 1360127999, 'RS', 'Serbia'), +('81.17.232.0', '81.17.233.255', 1360128000, 1360128511, 'MK', 'Macedonia'), +('81.17.234.0', '81.17.235.255', 1360128512, 1360129023, 'SI', 'Slovenia'), +('81.17.236.0', '81.17.239.255', 1360129024, 1360130047, 'BA', 'Bosnia and Herzegovina'), +('81.17.240.0', '81.17.242.15', 1360130048, 1360130575, 'IE', 'Ireland'), +('81.17.242.16', '81.17.242.23', 1360130576, 1360130583, 'GB', 'United Kingdom'), +('81.17.242.24', '81.17.242.255', 1360130584, 1360130815, 'IE', 'Ireland'), +('81.17.243.0', '81.17.243.63', 1360130816, 1360130879, 'GB', 'United Kingdom'), +('81.17.243.64', '81.17.245.192', 1360130880, 1360131520, 'IE', 'Ireland'), +('81.17.245.193', '81.17.245.255', 1360131521, 1360131583, 'GB', 'United Kingdom'), +('81.17.246.0', '81.17.247.63', 1360131584, 1360131903, 'IE', 'Ireland'), +('81.17.247.64', '81.17.247.79', 1360131904, 1360131919, 'US', 'United States'), +('81.17.247.80', '81.17.247.95', 1360131920, 1360131935, 'AU', 'Australia'), +('81.17.247.96', '81.17.247.111', 1360131936, 1360131951, 'GB', 'United Kingdom'), +('81.17.247.112', '81.17.255.255', 1360131952, 1360134143, 'IE', 'Ireland'), +('81.18.0.0', '81.18.15.255', 1360134144, 1360138239, 'NL', 'Netherlands'), +('81.18.16.0', '81.18.31.255', 1360138240, 1360142335, 'CH', 'Switzerland'), +('81.18.32.0', '81.18.47.255', 1360142336, 1360146431, 'NG', 'Nigeria'), +('81.18.48.0', '81.18.63.255', 1360146432, 1360150527, 'RS', 'Serbia'), +('81.18.64.0', '81.18.95.255', 1360150528, 1360158719, 'RO', 'Romania'), +('81.18.96.0', '81.18.111.255', 1360158720, 1360162815, 'DE', 'Germany'), +('81.18.112.0', '81.18.159.255', 1360162816, 1360175103, 'RU', 'Russian Federation'), +('81.18.160.0', '81.18.175.255', 1360175104, 1360179199, 'NL', 'Netherlands'), +('81.18.176.0', '81.18.191.175', 1360179200, 1360183215, 'FR', 'France'), +('81.18.191.176', '81.18.191.191', 1360183216, 1360183231, 'BE', 'Belgium'), +('81.18.191.192', '81.18.191.255', 1360183232, 1360183295, 'FR', 'France'), +('81.18.192.0', '81.18.223.255', 1360183296, 1360191487, 'PL', 'Poland'), +('81.18.224.0', '81.18.239.255', 1360191488, 1360195583, 'FO', 'Faroe Islands'), +('81.18.240.0', '81.18.255.255', 1360195584, 1360199679, 'NL', 'Netherlands'), +('81.19.0.0', '81.19.15.255', 1360199680, 1360203775, 'CZ', 'Czech Republic'), +('81.19.16.0', '81.19.31.255', 1360203776, 1360207871, 'FR', 'France'), +('81.19.32.0', '81.19.47.255', 1360207872, 1360211967, 'CZ', 'Czech Republic'), +('81.19.48.0', '81.19.63.255', 1360211968, 1360216063, 'GB', 'United Kingdom'), +('81.19.64.0', '81.19.95.255', 1360216064, 1360224255, 'RU', 'Russian Federation'), +('81.19.96.0', '81.19.101.127', 1360224256, 1360225663, 'ES', 'Spain'), +('81.19.101.128', '81.19.101.159', 1360225664, 1360225695, 'GB', 'United Kingdom'), +('81.19.101.160', '81.19.103.31', 1360225696, 1360226079, 'ES', 'Spain'), +('81.19.103.32', '81.19.103.63', 1360226080, 1360226111, 'IT', 'Italy'), +('81.19.103.64', '81.19.103.143', 1360226112, 1360226191, 'ES', 'Spain'), +('81.19.103.144', '81.19.103.151', 1360226192, 1360226199, 'IT', 'Italy'), +('81.19.103.152', '81.19.106.207', 1360226200, 1360227023, 'ES', 'Spain'), +('81.19.106.208', '81.19.106.223', 1360227024, 1360227039, 'GB', 'United Kingdom'), +('81.19.106.224', '81.19.111.255', 1360227040, 1360228351, 'ES', 'Spain'), +('81.19.112.0', '81.19.123.207', 1360228352, 1360231375, 'FI', 'Finland'), +('81.19.123.208', '81.19.123.223', 1360231376, 1360231391, 'AX', 'Aland Islands'), +('81.19.123.224', '81.19.124.191', 1360231392, 1360231615, 'FI', 'Finland'), +('81.19.124.192', '81.19.124.255', 1360231616, 1360231679, 'AX', 'Aland Islands'), +('81.19.125.0', '81.19.127.255', 1360231680, 1360232447, 'FI', 'Finland'), +('81.19.128.0', '81.19.143.255', 1360232448, 1360236543, 'RU', 'Russian Federation'), +('81.19.144.0', '81.19.159.255', 1360236544, 1360240639, 'AT', 'Austria'), +('81.19.160.0', '81.19.175.255', 1360240640, 1360244735, 'ES', 'Spain'), +('81.19.176.0', '81.19.223.255', 1360244736, 1360257023, 'GB', 'United Kingdom'), +('81.19.224.0', '81.19.255.255', 1360257024, 1360265215, 'DK', 'Denmark'), +('81.20.0.0', '81.20.15.255', 1360265216, 1360269311, 'GB', 'United Kingdom'), +('81.20.16.0', '81.20.31.255', 1360269312, 1360273407, 'KG', 'Kyrgyzstan'), +('81.20.32.0', '81.20.63.255', 1360273408, 1360281599, 'GB', 'United Kingdom'), +('81.20.64.0', '81.20.79.255', 1360281600, 1360285695, 'NL', 'Netherlands'), +('81.20.80.0', '81.20.95.255', 1360285696, 1360289791, 'DE', 'Germany'), +('81.20.96.0', '81.20.111.255', 1360289792, 1360293887, 'RU', 'Russian Federation'), +('81.20.112.0', '81.20.143.255', 1360293888, 1360302079, 'DE', 'Germany'), +('81.20.144.0', '81.20.159.255', 1360302080, 1360306175, 'EE', 'Estonia'), +('81.20.160.0', '81.20.175.255', 1360306176, 1360310271, 'RU', 'Russian Federation'), +('81.20.176.0', '81.20.191.255', 1360310272, 1360314367, 'GB', 'United Kingdom'), +('81.20.192.0', '81.20.207.255', 1360314368, 1360318463, 'RU', 'Russian Federation'), +('81.20.208.0', '81.20.223.255', 1360318464, 1360322559, 'FR', 'France'), +('81.20.224.0', '81.20.239.255', 1360322560, 1360326655, 'FI', 'Finland'), +('81.20.240.0', '81.20.255.255', 1360326656, 1360330751, 'PT', 'Portugal'), +('81.21.0.0', '81.21.15.255', 1360330752, 1360334847, 'UA', 'Ukraine'), +('81.21.16.0', '81.21.31.255', 1360334848, 1360338943, 'AT', 'Austria'), +('81.21.32.0', '81.21.47.255', 1360338944, 1360343039, 'CY', 'Cyprus'), +('81.21.48.0', '81.21.63.255', 1360343040, 1360347135, 'SA', 'Saudi Arabia'), +('81.21.64.0', '81.21.79.255', 1360347136, 1360351231, 'GB', 'United Kingdom'), +('81.21.80.0', '81.21.95.255', 1360351232, 1360355327, 'AZ', 'Azerbaijan'), +('81.21.96.0', '81.21.111.255', 1360355328, 1360359423, 'EG', 'Egypt'), +('81.21.112.0', '81.21.127.255', 1360359424, 1360363519, 'AT', 'Austria'), +('81.21.128.0', '81.21.143.255', 1360363520, 1360367615, 'IT', 'Italy'), +('81.21.144.0', '81.21.159.255', 1360367616, 1360371711, 'IE', 'Ireland'), +('81.21.160.0', '81.21.175.255', 1360371712, 1360375807, 'TR', 'Turkey'), +('81.21.176.0', '81.21.191.255', 1360375808, 1360379903, 'NL', 'Netherlands'), +('81.21.192.0', '81.21.207.255', 1360379904, 1360383999, 'PL', 'Poland'), +('81.21.208.0', '81.21.223.255', 1360384000, 1360388095, 'SE', 'Sweden'), +('81.21.224.0', '81.21.239.255', 1360388096, 1360392191, 'RU', 'Russian Federation'), +('81.21.240.0', '81.21.255.255', 1360392192, 1360396287, 'EE', 'Estonia'), +('81.22.0.0', '81.22.15.255', 1360396288, 1360400383, 'RU', 'Russian Federation'), +('81.22.16.0', '81.22.31.255', 1360400384, 1360404479, 'BH', 'Bahrain'), +('81.22.32.0', '81.22.32.255', 1360404480, 1360404735, 'GB', 'United Kingdom'), +('81.22.33.0', '81.22.33.255', 1360404736, 1360404991, 'DE', 'Germany'), +('81.22.34.0', '81.22.34.255', 1360404992, 1360405247, 'FR', 'France'), +('81.22.35.0', '81.22.35.255', 1360405248, 1360405503, 'SE', 'Sweden'), +('81.22.36.0', '81.22.47.255', 1360405504, 1360408575, 'GB', 'United Kingdom'), +('81.22.48.0', '81.22.63.255', 1360408576, 1360412671, 'RU', 'Russian Federation'), +('81.22.64.0', '81.22.95.255', 1360412672, 1360420863, 'DZ', 'Algeria'), +('81.22.96.0', '81.22.111.255', 1360420864, 1360424959, 'TR', 'Turkey'), +('81.22.112.0', '81.22.127.255', 1360424960, 1360429055, 'RU', 'Russian Federation'), +('81.22.128.0', '81.22.143.255', 1360429056, 1360433151, 'UA', 'Ukraine'), +('81.22.144.0', '81.22.159.255', 1360433152, 1360437247, 'RO', 'Romania'), +('81.22.160.0', '81.22.175.255', 1360437248, 1360441343, 'FI', 'Finland'), +('81.22.176.0', '81.22.191.255', 1360441344, 1360445439, 'HU', 'Hungary'), +('81.22.192.0', '81.22.223.255', 1360445440, 1360453631, 'RU', 'Russian Federation'), +('81.22.224.0', '81.22.239.255', 1360453632, 1360457727, 'DE', 'Germany'), +('81.22.240.0', '81.22.245.95', 1360457728, 1360459103, 'FI', 'Finland'), +('81.22.245.96', '81.22.245.127', 1360459104, 1360459135, 'IL', 'Israel'), +('81.22.245.128', '81.22.255.255', 1360459136, 1360461823, 'FI', 'Finland'), +('81.23.0.0', '81.23.15.255', 1360461824, 1360465919, 'LT', 'Lithuania'), +('81.23.16.0', '81.23.31.255', 1360465920, 1360470015, 'UA', 'Ukraine'), +('81.23.32.0', '81.23.47.255', 1360470016, 1360474111, 'FR', 'France'), +('81.23.48.0', '81.23.63.255', 1360474112, 1360478207, 'GB', 'United Kingdom'), +('81.23.64.0', '81.23.79.255', 1360478208, 1360482303, 'CH', 'Switzerland'), +('81.23.80.0', '81.23.95.255', 1360482304, 1360486399, 'IT', 'Italy'), +('81.23.96.0', '81.23.207.255', 1360486400, 1360515071, 'RU', 'Russian Federation'), +('81.23.208.0', '81.23.223.255', 1360515072, 1360519167, 'GB', 'United Kingdom'), +('81.23.224.0', '81.23.242.255', 1360519168, 1360524031, 'NL', 'Netherlands'), +('81.23.243.0', '81.23.243.255', 1360524032, 1360524287, 'US', 'United States'), +('81.23.244.0', '81.24.15.255', 1360524288, 1360531455, 'NL', 'Netherlands'), +('81.24.16.0', '81.24.31.255', 1360531456, 1360535551, 'RO', 'Romania'), +('81.24.32.0', '81.24.47.255', 1360535552, 1360539647, 'DE', 'Germany'), +('81.24.48.0', '81.24.63.255', 1360539648, 1360543743, 'NL', 'Netherlands'), +('81.24.64.0', '81.24.79.255', 1360543744, 1360547839, 'DE', 'Germany'), +('81.24.80.0', '81.24.95.255', 1360547840, 1360551935, 'RU', 'Russian Federation'), +('81.24.96.0', '81.24.111.255', 1360551936, 1360556031, 'SI', 'Slovenia'), +('81.24.112.0', '81.24.143.255', 1360556032, 1360564223, 'RU', 'Russian Federation'), +('81.24.144.0', '81.24.159.255', 1360564224, 1360568319, 'AT', 'Austria'), +('81.24.160.0', '81.24.175.255', 1360568320, 1360572415, 'ES', 'Spain'), +('81.24.176.0', '81.24.191.255', 1360572416, 1360576511, 'GR', 'Greece'), +('81.24.192.0', '81.24.207.255', 1360576512, 1360580607, 'GB', 'United Kingdom'), +('81.24.208.0', '81.24.223.255', 1360580608, 1360584703, 'UA', 'Ukraine'), +('81.24.224.0', '81.24.239.255', 1360584704, 1360588799, 'IT', 'Italy'), +('81.24.240.0', '81.24.255.255', 1360588800, 1360592895, 'GB', 'United Kingdom'), +('81.25.0.0', '81.25.15.255', 1360592896, 1360596991, 'RU', 'Russian Federation'), +('81.25.16.0', '81.25.31.255', 1360596992, 1360601087, 'CZ', 'Czech Republic'), +('81.25.32.0', '81.25.47.255', 1360601088, 1360605183, 'BY', 'Belarus'), +('81.25.48.0', '81.25.79.255', 1360605184, 1360613375, 'RU', 'Russian Federation'), +('81.25.80.0', '81.25.95.255', 1360613376, 1360617471, 'SE', 'Sweden'), +('81.25.96.0', '81.25.111.255', 1360617472, 1360621567, 'IT', 'Italy'), +('81.25.112.0', '81.25.127.255', 1360621568, 1360625663, 'ES', 'Spain'), +('81.25.128.0', '81.25.139.255', 1360625664, 1360628735, 'A2', 'Satellite Provider'), +('81.25.140.0', '81.25.140.255', 1360628736, 1360628991, 'IQ', 'Iraq'), +('81.25.141.0', '81.25.142.255', 1360628992, 1360629503, 'A2', 'Satellite Provider'), +('81.25.143.0', '81.25.143.255', 1360629504, 1360629759, 'IQ', 'Iraq'), +('81.25.144.0', '81.25.159.255', 1360629760, 1360633855, 'SE', 'Sweden'), +('81.25.160.0', '81.25.175.255', 1360633856, 1360637951, 'RU', 'Russian Federation'), +('81.25.176.0', '81.25.191.255', 1360637952, 1360642047, 'FO', 'Faroe Islands'), +('81.25.192.0', '81.25.207.255', 1360642048, 1360646143, 'FR', 'France'), +('81.25.208.0', '81.25.223.255', 1360646144, 1360650239, 'AT', 'Austria'), +('81.25.224.0', '81.25.239.255', 1360650240, 1360654335, 'UA', 'Ukraine'), +('81.25.240.0', '81.25.255.255', 1360654336, 1360658431, 'EE', 'Estonia'), +('81.26.0.0', '81.26.31.255', 1360658432, 1360666623, 'PL', 'Poland'), +('81.26.32.0', '81.26.63.255', 1360666624, 1360674815, 'NO', 'Norway'), +('81.26.64.0', '81.26.79.255', 1360674816, 1360678911, 'DZ', 'Algeria'), +('81.26.80.0', '81.26.95.255', 1360678912, 1360683007, 'RU', 'Russian Federation'), +('81.26.96.0', '81.26.127.255', 1360683008, 1360691199, 'GB', 'United Kingdom'), +('81.26.128.0', '81.26.159.255', 1360691200, 1360699391, 'RU', 'Russian Federation'), +('81.26.160.0', '81.26.175.255', 1360699392, 1360703487, 'DE', 'Germany'), +('81.26.176.0', '81.26.191.255', 1360703488, 1360707583, 'RU', 'Russian Federation'), +('81.26.192.0', '81.26.207.255', 1360707584, 1360711679, 'IT', 'Italy'), +('81.26.208.0', '81.26.223.255', 1360711680, 1360715775, 'NL', 'Netherlands'), +('81.26.224.0', '81.27.15.255', 1360715776, 1360728063, 'SE', 'Sweden'), +('81.27.16.0', '81.27.31.255', 1360728064, 1360732159, 'FR', 'France'), +('81.27.32.0', '81.27.47.255', 1360732160, 1360736255, 'NO', 'Norway'), +('81.27.48.0', '81.27.63.255', 1360736256, 1360740351, 'RU', 'Russian Federation'), +('81.27.64.0', '81.27.111.255', 1360740352, 1360752639, 'GB', 'United Kingdom'), +('81.27.112.0', '81.27.127.255', 1360752640, 1360756735, 'DE', 'Germany'), +('81.27.128.0', '81.27.143.255', 1360756736, 1360760831, 'IT', 'Italy'), +('81.27.144.0', '81.27.159.255', 1360760832, 1360764927, 'RU', 'Russian Federation'), +('81.27.160.0', '81.27.175.255', 1360764928, 1360769023, 'DE', 'Germany'), +('81.27.176.0', '81.27.191.255', 1360769024, 1360773119, 'IT', 'Italy'), +('81.27.192.0', '81.27.207.255', 1360773120, 1360777215, 'CZ', 'Czech Republic'), +('81.27.224.0', '81.27.239.255', 1360781312, 1360785407, 'DE', 'Germany'), +('81.27.240.0', '81.28.15.255', 1360785408, 1360793599, 'RU', 'Russian Federation'), +('81.28.16.0', '81.28.31.255', 1360793600, 1360797695, 'CZ', 'Czech Republic'), +('81.28.32.0', '81.28.63.255', 1360797696, 1360805887, 'IR', 'Iran, Islamic Republic of'), +('81.28.64.0', '81.28.79.255', 1360805888, 1360809983, 'DE', 'Germany'), +('81.28.80.0', '81.28.95.255', 1360809984, 1360814079, 'NL', 'Netherlands'), +('81.28.96.0', '81.28.111.255', 1360814080, 1360818175, 'FR', 'France'), +('81.28.112.0', '81.28.127.255', 1360818176, 1360822271, 'JO', 'Jordan'), +('81.28.128.0', '81.28.143.255', 1360822272, 1360826367, 'AT', 'Austria'), +('81.28.144.0', '81.28.159.255', 1360826368, 1360830463, 'GB', 'United Kingdom'), +('81.28.160.0', '81.28.191.255', 1360830464, 1360838655, 'RU', 'Russian Federation'), +('81.28.192.0', '81.28.207.255', 1360838656, 1360842751, 'FR', 'France'), +('81.28.208.0', '81.28.223.255', 1360842752, 1360846847, 'RU', 'Russian Federation'), +('81.28.224.0', '81.28.239.255', 1360846848, 1360850943, 'DE', 'Germany'), +('81.28.240.0', '81.28.255.255', 1360850944, 1360855039, 'IT', 'Italy'), +('81.29.0.0', '81.29.3.33', 1360855040, 1360855841, 'NL', 'Netherlands'), +('81.29.3.34', '81.29.3.43', 1360855842, 1360855851, 'MX', 'Mexico'), +('81.29.3.44', '81.29.4.11', 1360855852, 1360856075, 'NL', 'Netherlands'), +('81.29.4.12', '81.29.4.15', 1360856076, 1360856079, 'AU', 'Australia'), +('81.29.4.16', '81.29.4.45', 1360856080, 1360856109, 'NL', 'Netherlands'), +('81.29.4.46', '81.29.4.49', 1360856110, 1360856113, 'AU', 'Australia'), +('81.29.4.50', '81.29.4.69', 1360856114, 1360856133, 'NL', 'Netherlands'), +('81.29.4.70', '81.29.4.80', 1360856134, 1360856144, 'MX', 'Mexico'), +('81.29.4.81', '81.29.15.255', 1360856145, 1360859135, 'NL', 'Netherlands'), +('81.29.16.0', '81.29.31.255', 1360859136, 1360863231, 'LT', 'Lithuania'), +('81.29.32.0', '81.29.47.255', 1360863232, 1360867327, 'NO', 'Norway'), +('81.29.48.0', '81.29.95.255', 1360867328, 1360879615, 'GB', 'United Kingdom'), +('81.29.96.0', '81.29.111.255', 1360879616, 1360883711, 'EG', 'Egypt'), +('81.29.112.0', '81.29.127.255', 1360883712, 1360887807, 'RU', 'Russian Federation'), +('81.29.128.0', '81.29.137.255', 1360887808, 1360890367, 'FI', 'Finland'), +('81.29.138.0', '81.29.138.255', 1360890368, 1360890623, 'RU', 'Russian Federation'), +('81.29.139.0', '81.29.139.255', 1360890624, 1360890879, 'FI', 'Finland'), +('81.29.140.0', '81.29.141.255', 1360890880, 1360891391, 'RU', 'Russian Federation'), +('81.29.142.0', '81.29.142.255', 1360891392, 1360891647, 'FI', 'Finland'), +('81.29.143.0', '81.29.143.255', 1360891648, 1360891903, 'RU', 'Russian Federation'), +('81.29.144.0', '81.29.145.127', 1360891904, 1360892287, 'CH', 'Switzerland'), +('81.29.145.128', '81.29.145.255', 1360892288, 1360892415, 'IT', 'Italy'), +('81.29.146.0', '81.29.146.11', 1360892416, 1360892427, 'CH', 'Switzerland'), +('81.29.146.12', '81.29.146.15', 1360892428, 1360892431, 'IT', 'Italy'), +('81.29.146.16', '81.29.146.135', 1360892432, 1360892551, 'CH', 'Switzerland'), +('81.29.146.136', '81.29.147.39', 1360892552, 1360892711, 'IT', 'Italy'), +('81.29.147.40', '81.29.147.55', 1360892712, 1360892727, 'CH', 'Switzerland'), +('81.29.147.56', '81.29.147.63', 1360892728, 1360892735, 'IT', 'Italy'), +('81.29.147.64', '81.29.147.67', 1360892736, 1360892739, 'EE', 'Estonia'), +('81.29.147.68', '81.29.147.71', 1360892740, 1360892743, 'GB', 'United Kingdom'), +('81.29.147.72', '81.29.147.79', 1360892744, 1360892751, 'CH', 'Switzerland'), +('81.29.147.80', '81.29.147.99', 1360892752, 1360892771, 'IT', 'Italy'), +('81.29.147.100', '81.29.147.103', 1360892772, 1360892775, 'CH', 'Switzerland'), +('81.29.147.104', '81.29.147.107', 1360892776, 1360892779, 'IT', 'Italy'), +('81.29.147.108', '81.29.147.119', 1360892780, 1360892791, 'CH', 'Switzerland'), +('81.29.147.120', '81.29.147.191', 1360892792, 1360892863, 'IT', 'Italy'), +('81.29.147.192', '81.29.148.255', 1360892864, 1360893183, 'CH', 'Switzerland'), +('81.29.149.0', '81.29.149.31', 1360893184, 1360893215, 'IT', 'Italy'), +('81.29.149.32', '81.29.149.63', 1360893216, 1360893247, 'CH', 'Switzerland'), +('81.29.149.64', '81.29.151.0', 1360893248, 1360893696, 'IT', 'Italy'), +('81.29.151.1', '81.29.151.126', 1360893697, 1360893822, 'CH', 'Switzerland'), +('81.29.151.127', '81.29.151.128', 1360893823, 1360893824, 'IT', 'Italy'), +('81.29.151.129', '81.29.151.134', 1360893825, 1360893830, 'CH', 'Switzerland'), +('81.29.151.135', '81.29.153.191', 1360893831, 1360894399, 'IT', 'Italy'), +('81.29.153.192', '81.29.153.255', 1360894400, 1360894463, 'CH', 'Switzerland'), +('81.29.154.0', '81.29.159.255', 1360894464, 1360895999, 'IT', 'Italy'), +('81.29.160.0', '81.29.175.255', 1360896000, 1360900095, 'QA', 'Qatar'), +('81.29.176.0', '81.29.192.143', 1360900096, 1360904335, 'IT', 'Italy'), +('81.29.192.144', '81.29.192.151', 1360904336, 1360904343, 'GB', 'United Kingdom'), +('81.29.192.152', '81.29.196.175', 1360904344, 1360905391, 'IT', 'Italy'), +('81.29.196.176', '81.29.196.191', 1360905392, 1360905407, 'GB', 'United Kingdom'), +('81.29.196.192', '81.29.201.191', 1360905408, 1360906687, 'IT', 'Italy'), +('81.29.201.192', '81.29.201.223', 1360906688, 1360906719, 'GB', 'United Kingdom'), +('81.29.201.224', '81.29.205.159', 1360906720, 1360907679, 'IT', 'Italy'), +('81.29.205.160', '81.29.205.191', 1360907680, 1360907711, 'GB', 'United Kingdom'), +('81.29.205.192', '81.29.216.159', 1360907712, 1360910495, 'IT', 'Italy'), +('81.29.216.160', '81.29.216.175', 1360910496, 1360910511, 'GB', 'United Kingdom'), +('81.29.216.176', '81.29.216.191', 1360910512, 1360910527, 'IT', 'Italy'), +('81.29.216.192', '81.29.216.223', 1360910528, 1360910559, 'GB', 'United Kingdom'), +('81.29.216.224', '81.29.239.255', 1360910560, 1360916479, 'IT', 'Italy'), +('81.29.240.0', '81.29.255.255', 1360916480, 1360920575, 'IR', 'Iran, Islamic Republic of'), +('81.30.0.0', '81.30.47.255', 1360920576, 1360932863, 'IT', 'Italy'), +('81.30.48.0', '81.30.63.255', 1360932864, 1360936959, 'RU', 'Russian Federation'), +('81.30.64.0', '81.30.79.255', 1360936960, 1360941055, 'NL', 'Netherlands'), +('81.30.80.0', '81.30.95.255', 1360941056, 1360945151, 'BY', 'Belarus'), +('81.30.96.0', '81.30.111.255', 1360945152, 1360949247, 'DE', 'Germany'), +('81.30.112.0', '81.30.127.255', 1360949248, 1360953343, 'RU', 'Russian Federation'), +('81.30.128.0', '81.30.143.255', 1360953344, 1360957439, 'DE', 'Germany'), +('81.30.144.0', '81.30.159.255', 1360957440, 1360961535, 'AZ', 'Azerbaijan'), +('81.30.160.0', '81.30.175.255', 1360961536, 1360965631, 'UA', 'Ukraine'), +('81.30.176.0', '81.30.223.255', 1360965632, 1360977919, 'RU', 'Russian Federation'), +('81.30.224.0', '81.31.5.143', 1360977920, 1360987535, 'CZ', 'Czech Republic'), +('81.31.5.144', '81.31.6.255', 1360987536, 1360987903, 'GB', 'United Kingdom'), +('81.31.7.0', '81.31.7.31', 1360987904, 1360987935, 'CZ', 'Czech Republic'), +('81.31.7.32', '81.31.7.79', 1360987936, 1360987983, 'SK', 'Slovakia'), +('81.31.7.80', '81.31.7.95', 1360987984, 1360987999, 'CZ', 'Czech Republic'), +('81.31.7.96', '81.31.7.111', 1360988000, 1360988015, 'GB', 'United Kingdom'), +('81.31.7.112', '81.31.7.127', 1360988016, 1360988031, 'CZ', 'Czech Republic'), +('81.31.7.128', '81.31.7.135', 1360988032, 1360988039, 'GB', 'United Kingdom'), +('81.31.7.136', '81.31.7.143', 1360988040, 1360988047, 'CZ', 'Czech Republic'), +('81.31.7.144', '81.31.7.151', 1360988048, 1360988055, 'GB', 'United Kingdom'), +('81.31.7.152', '81.31.7.159', 1360988056, 1360988063, 'SK', 'Slovakia'), +('81.31.7.160', '81.31.7.175', 1360988064, 1360988079, 'CZ', 'Czech Republic'), +('81.31.7.176', '81.31.7.255', 1360988080, 1360988159, 'GB', 'United Kingdom'), +('81.31.8.0', '81.31.8.255', 1360988160, 1360988415, 'SK', 'Slovakia'), +('81.31.9.0', '81.31.10.255', 1360988416, 1360988927, 'CZ', 'Czech Republic'), +('81.31.11.0', '81.31.11.255', 1360988928, 1360989183, 'GB', 'United Kingdom'), +('81.31.12.0', '81.31.12.255', 1360989184, 1360989439, 'SK', 'Slovakia'), +('81.31.13.0', '81.31.13.255', 1360989440, 1360989695, 'GB', 'United Kingdom'), +('81.31.14.0', '81.31.15.127', 1360989696, 1360990079, 'CZ', 'Czech Republic'), +('81.31.15.128', '81.31.15.255', 1360990080, 1360990207, 'GB', 'United Kingdom'), +('81.31.16.0', '81.31.16.255', 1360990208, 1360990463, 'CZ', 'Czech Republic'), +('81.31.17.0', '81.31.17.255', 1360990464, 1360990719, 'GB', 'United Kingdom'), +('81.31.18.0', '81.31.18.255', 1360990720, 1360990975, 'CZ', 'Czech Republic'), +('81.31.19.0', '81.31.19.255', 1360990976, 1360991231, 'GB', 'United Kingdom'), +('81.31.20.0', '81.31.21.255', 1360991232, 1360991743, 'CZ', 'Czech Republic'), +('81.31.22.0', '81.31.22.255', 1360991744, 1360991999, 'GB', 'United Kingdom'), +('81.31.23.0', '81.31.23.255', 1360992000, 1360992255, 'SK', 'Slovakia'), +('81.31.24.0', '81.31.25.255', 1360992256, 1360992767, 'CZ', 'Czech Republic'), +('81.31.26.0', '81.31.31.255', 1360992768, 1360994303, 'GB', 'United Kingdom'), +('81.31.32.0', '81.31.47.255', 1360994304, 1360998399, 'CZ', 'Czech Republic'), +('81.31.48.0', '81.31.63.255', 1360998400, 1361002495, 'FI', 'Finland'), +('81.31.64.0', '81.31.79.255', 1361002496, 1361006591, 'GB', 'United Kingdom'), +('81.31.80.0', '81.31.95.255', 1361006592, 1361010687, 'DK', 'Denmark'), +('81.31.96.0', '81.31.127.255', 1361010688, 1361018879, 'GB', 'United Kingdom'), +('81.31.128.0', '81.31.143.255', 1361018880, 1361022975, 'AT', 'Austria'), +('81.31.144.0', '81.31.159.255', 1361022976, 1361027071, 'IT', 'Italy'), +('81.31.160.0', '81.31.191.255', 1361027072, 1361035263, 'IR', 'Iran, Islamic Republic of'), +('81.31.192.0', '81.31.193.7', 1361035264, 1361035527, 'NL', 'Netherlands'), +('81.31.193.8', '81.31.193.15', 1361035528, 1361035535, 'IT', 'Italy'), +('81.31.193.16', '81.31.193.27', 1361035536, 1361035547, 'ES', 'Spain'), +('81.31.193.28', '81.31.193.31', 1361035548, 1361035551, 'DE', 'Germany'), +('81.31.193.32', '81.31.193.39', 1361035552, 1361035559, 'GB', 'United Kingdom'), +('81.31.193.40', '81.31.193.43', 1361035560, 1361035563, 'IQ', 'Iraq'), +('81.31.193.44', '81.31.193.47', 1361035564, 1361035567, 'GB', 'United Kingdom'), +('81.31.193.48', '81.31.193.63', 1361035568, 1361035583, 'ES', 'Spain'), +('81.31.193.64', '81.31.193.71', 1361035584, 1361035591, 'NL', 'Netherlands'), +('81.31.193.72', '81.31.193.79', 1361035592, 1361035599, 'IQ', 'Iraq'), +('81.31.193.80', '81.31.193.87', 1361035600, 1361035607, 'NL', 'Netherlands'), +('81.31.193.88', '81.31.193.95', 1361035608, 1361035615, 'IQ', 'Iraq'), +('81.31.193.96', '81.31.193.103', 1361035616, 1361035623, 'ES', 'Spain'), +('81.31.193.104', '81.31.193.107', 1361035624, 1361035627, 'DE', 'Germany'), +('81.31.193.108', '81.31.193.119', 1361035628, 1361035639, 'DZ', 'Algeria'), +('81.31.193.120', '81.31.193.123', 1361035640, 1361035643, 'IQ', 'Iraq'), +('81.31.193.124', '81.31.193.127', 1361035644, 1361035647, 'GB', 'United Kingdom'), +('81.31.193.128', '81.31.193.131', 1361035648, 1361035651, 'TR', 'Turkey'), +('81.31.193.132', '81.31.193.135', 1361035652, 1361035655, 'DE', 'Germany'), +('81.31.193.136', '81.31.193.147', 1361035656, 1361035667, 'IQ', 'Iraq'), +('81.31.193.148', '81.31.193.151', 1361035668, 1361035671, 'DZ', 'Algeria'), +('81.31.193.152', '81.31.193.159', 1361035672, 1361035679, 'ES', 'Spain'), +('81.31.193.160', '81.31.193.163', 1361035680, 1361035683, 'IE', 'Ireland'), +('81.31.193.164', '81.31.193.167', 1361035684, 1361035687, 'GB', 'United Kingdom'), +('81.31.193.168', '81.31.193.171', 1361035688, 1361035691, 'RS', 'Serbia'), +('81.31.193.172', '81.31.193.175', 1361035692, 1361035695, 'IQ', 'Iraq'), +('81.31.193.176', '81.31.193.191', 1361035696, 1361035711, 'BA', 'Bosnia and Herzegovina'), +('81.31.193.192', '81.31.193.195', 1361035712, 1361035715, 'DE', 'Germany'), +('81.31.193.196', '81.31.193.199', 1361035716, 1361035719, 'IQ', 'Iraq'), +('81.31.193.200', '81.31.193.203', 1361035720, 1361035723, 'ES', 'Spain'), +('81.31.193.204', '81.31.193.207', 1361035724, 1361035727, 'DE', 'Germany'), +('81.31.193.208', '81.31.193.215', 1361035728, 1361035735, 'IQ', 'Iraq'), +('81.31.193.216', '81.31.193.223', 1361035736, 1361035743, 'IT', 'Italy'), +('81.31.193.224', '81.31.193.231', 1361035744, 1361035751, 'TR', 'Turkey'), +('81.31.193.232', '81.31.193.239', 1361035752, 1361035759, 'KW', 'Kuwait'), +('81.31.193.240', '81.31.193.243', 1361035760, 1361035763, 'IQ', 'Iraq'), +('81.31.193.244', '81.31.193.247', 1361035764, 1361035767, 'DE', 'Germany'), +('81.31.193.248', '81.31.194.3', 1361035768, 1361035779, 'IQ', 'Iraq'), +('81.31.194.4', '81.31.194.7', 1361035780, 1361035783, 'KW', 'Kuwait'), +('81.31.194.8', '81.31.194.11', 1361035784, 1361035787, 'IT', 'Italy'), +('81.31.194.12', '81.31.194.15', 1361035788, 1361035791, 'DZ', 'Algeria'), +('81.31.194.16', '81.31.194.23', 1361035792, 1361035799, 'IQ', 'Iraq'), +('81.31.194.24', '81.31.194.31', 1361035800, 1361035807, 'TR', 'Turkey'), +('81.31.194.32', '81.31.194.35', 1361035808, 1361035811, 'DE', 'Germany'), +('81.31.194.36', '81.31.194.39', 1361035812, 1361035815, 'BA', 'Bosnia and Herzegovina'), +('81.31.194.40', '81.31.194.47', 1361035816, 1361035823, 'IT', 'Italy'), +('81.31.194.48', '81.31.194.55', 1361035824, 1361035831, 'DE', 'Germany'), +('81.31.194.56', '81.31.194.63', 1361035832, 1361035839, 'BE', 'Belgium'), +('81.31.194.64', '81.31.194.71', 1361035840, 1361035847, 'ES', 'Spain'), +('81.31.194.72', '81.31.194.79', 1361035848, 1361035855, 'NL', 'Netherlands'), +('81.31.194.80', '81.31.194.87', 1361035856, 1361035863, 'ES', 'Spain'), +('81.31.194.88', '81.31.194.95', 1361035864, 1361035871, 'BE', 'Belgium'), +('81.31.194.96', '81.31.194.103', 1361035872, 1361035879, 'ES', 'Spain'), +('81.31.194.104', '81.31.194.111', 1361035880, 1361035887, 'DE', 'Germany'), +('81.31.194.112', '81.31.194.119', 1361035888, 1361035895, 'GB', 'United Kingdom'), +('81.31.194.120', '81.31.194.127', 1361035896, 1361035903, 'IQ', 'Iraq'), +('81.31.194.128', '81.31.194.131', 1361035904, 1361035907, 'DE', 'Germany'), +('81.31.194.132', '81.31.194.135', 1361035908, 1361035911, 'ES', 'Spain'), +('81.31.194.136', '81.31.194.139', 1361035912, 1361035915, 'IQ', 'Iraq'), +('81.31.194.140', '81.31.194.143', 1361035916, 1361035919, 'HR', 'Croatia'), +('81.31.194.144', '81.31.194.147', 1361035920, 1361035923, 'CH', 'Switzerland'), +('81.31.194.148', '81.31.194.151', 1361035924, 1361035927, 'IE', 'Ireland'), +('81.31.194.152', '81.31.194.155', 1361035928, 1361035931, 'GB', 'United Kingdom'), +('81.31.194.156', '81.31.194.159', 1361035932, 1361035935, 'TR', 'Turkey'), +('81.31.194.160', '81.31.194.163', 1361035936, 1361035939, 'IE', 'Ireland'), +('81.31.194.164', '81.31.194.167', 1361035940, 1361035943, 'DE', 'Germany'), +('81.31.194.168', '81.31.194.175', 1361035944, 1361035951, 'US', 'United States'), +('81.31.194.176', '81.31.194.179', 1361035952, 1361035955, 'RS', 'Serbia'), +('81.31.194.180', '81.31.194.183', 1361035956, 1361035959, 'GB', 'United Kingdom'), +('81.31.194.184', '81.31.194.187', 1361035960, 1361035963, 'GR', 'Greece'), +('81.31.194.188', '81.31.194.191', 1361035964, 1361035967, 'CH', 'Switzerland'), +('81.31.194.192', '81.31.194.199', 1361035968, 1361035975, 'DE', 'Germany'), +('81.31.194.200', '81.31.194.207', 1361035976, 1361035983, 'IQ', 'Iraq'), +('81.31.194.208', '81.31.194.215', 1361035984, 1361035991, 'DE', 'Germany'), +('81.31.194.216', '81.31.194.219', 1361035992, 1361035995, 'IQ', 'Iraq'), +('81.31.194.220', '81.31.194.223', 1361035996, 1361035999, 'IE', 'Ireland'), +('81.31.194.224', '81.31.194.239', 1361036000, 1361036015, 'GB', 'United Kingdom'), +('81.31.194.240', '81.31.194.243', 1361036016, 1361036019, 'ES', 'Spain'), +('81.31.194.244', '81.31.194.251', 1361036020, 1361036027, 'IQ', 'Iraq'), +('81.31.194.252', '81.31.194.255', 1361036028, 1361036031, 'GB', 'United Kingdom'), +('81.31.195.0', '81.31.195.7', 1361036032, 1361036039, 'IE', 'Ireland'), +('81.31.195.8', '81.31.195.23', 1361036040, 1361036055, 'IQ', 'Iraq'), +('81.31.195.24', '81.31.195.31', 1361036056, 1361036063, 'NL', 'Netherlands'), +('81.31.195.32', '81.31.195.39', 1361036064, 1361036071, 'DE', 'Germany'), +('81.31.195.40', '81.31.195.47', 1361036072, 1361036079, 'BE', 'Belgium'), +('81.31.195.48', '81.31.195.55', 1361036080, 1361036087, 'FR', 'France'), +('81.31.195.56', '81.31.195.63', 1361036088, 1361036095, 'IT', 'Italy'), +('81.31.195.64', '81.31.195.71', 1361036096, 1361036103, 'SE', 'Sweden'), +('81.31.195.72', '81.31.195.79', 1361036104, 1361036111, 'NO', 'Norway'), +('81.31.195.80', '81.31.195.87', 1361036112, 1361036119, 'RO', 'Romania'), +('81.31.195.88', '81.31.195.95', 1361036120, 1361036127, 'HU', 'Hungary'), +('81.31.195.96', '81.31.195.103', 1361036128, 1361036135, 'CZ', 'Czech Republic'), +('81.31.195.104', '81.31.195.111', 1361036136, 1361036143, 'IQ', 'Iraq'), +('81.31.195.112', '81.31.195.119', 1361036144, 1361036151, 'TR', 'Turkey'), +('81.31.195.120', '81.31.195.135', 1361036152, 1361036167, 'ES', 'Spain'), +('81.31.195.136', '81.31.195.143', 1361036168, 1361036175, 'IQ', 'Iraq'), +('81.31.195.144', '81.31.195.159', 1361036176, 1361036191, 'GB', 'United Kingdom'), +('81.31.195.160', '81.31.195.167', 1361036192, 1361036199, 'KW', 'Kuwait'), +('81.31.195.168', '81.31.195.183', 1361036200, 1361036215, 'IQ', 'Iraq'), +('81.31.195.184', '81.31.195.191', 1361036216, 1361036223, 'TR', 'Turkey'), +('81.31.195.192', '81.31.195.199', 1361036224, 1361036231, 'DE', 'Germany'), +('81.31.195.200', '81.31.195.207', 1361036232, 1361036239, 'IQ', 'Iraq'), +('81.31.195.208', '81.31.195.211', 1361036240, 1361036243, 'NL', 'Netherlands'), +('81.31.195.212', '81.31.195.215', 1361036244, 1361036247, 'IT', 'Italy'), +('81.31.195.216', '81.31.195.219', 1361036248, 1361036251, 'TN', 'Tunisia'), +('81.31.195.220', '81.31.195.223', 1361036252, 1361036255, 'GR', 'Greece'), +('81.31.195.224', '81.31.195.227', 1361036256, 1361036259, 'GB', 'United Kingdom'), +('81.31.195.228', '81.31.195.231', 1361036260, 1361036263, 'IS', 'Iceland'), +('81.31.195.232', '81.31.195.239', 1361036264, 1361036271, 'KW', 'Kuwait'), +('81.31.195.240', '81.31.195.255', 1361036272, 1361036287, 'IQ', 'Iraq'), +('81.31.196.0', '81.31.196.3', 1361036288, 1361036291, 'IT', 'Italy'), +('81.31.196.4', '81.31.196.7', 1361036292, 1361036295, 'IE', 'Ireland'), +('81.31.196.8', '81.31.196.11', 1361036296, 1361036299, 'IQ', 'Iraq'), +('81.31.196.12', '81.31.196.15', 1361036300, 1361036303, 'IT', 'Italy'), +('81.31.196.16', '81.31.196.19', 1361036304, 1361036307, 'ES', 'Spain'), +('81.31.196.20', '81.31.196.23', 1361036308, 1361036311, 'DE', 'Germany'), +('81.31.196.24', '81.31.196.27', 1361036312, 1361036315, 'TR', 'Turkey'), +('81.31.196.28', '81.31.196.39', 1361036316, 1361036327, 'DZ', 'Algeria'), +('81.31.196.40', '81.31.196.47', 1361036328, 1361036335, 'MA', 'Morocco'), +('81.31.196.48', '81.31.196.63', 1361036336, 1361036351, 'DZ', 'Algeria'), +('81.31.196.64', '81.31.196.71', 1361036352, 1361036359, 'IQ', 'Iraq'), +('81.31.196.72', '81.31.196.79', 1361036360, 1361036367, 'DZ', 'Algeria'), +('81.31.196.80', '81.31.196.83', 1361036368, 1361036371, 'GB', 'United Kingdom'), +('81.31.196.84', '81.31.196.87', 1361036372, 1361036375, 'IT', 'Italy'), +('81.31.196.88', '81.31.196.91', 1361036376, 1361036379, 'NL', 'Netherlands'), +('81.31.196.92', '81.31.196.95', 1361036380, 1361036383, 'IQ', 'Iraq'), +('81.31.196.96', '81.31.196.99', 1361036384, 1361036387, 'DZ', 'Algeria'), +('81.31.196.100', '81.31.196.103', 1361036388, 1361036391, 'ES', 'Spain'), +('81.31.196.104', '81.31.196.107', 1361036392, 1361036395, 'IQ', 'Iraq'), +('81.31.196.108', '81.31.196.115', 1361036396, 1361036403, 'ES', 'Spain'), +('81.31.196.116', '81.31.196.119', 1361036404, 1361036407, 'KW', 'Kuwait'), +('81.31.196.120', '81.31.196.123', 1361036408, 1361036411, 'IQ', 'Iraq'), +('81.31.196.124', '81.31.196.127', 1361036412, 1361036415, 'ES', 'Spain'), +('81.31.196.128', '81.31.196.131', 1361036416, 1361036419, 'IQ', 'Iraq'), +('81.31.196.132', '81.31.196.135', 1361036420, 1361036423, 'ES', 'Spain'), +('81.31.196.136', '81.31.196.143', 1361036424, 1361036431, 'IQ', 'Iraq'), +('81.31.196.144', '81.31.196.147', 1361036432, 1361036435, 'EG', 'Egypt'), +('81.31.196.148', '81.31.196.167', 1361036436, 1361036455, 'IQ', 'Iraq'), +('81.31.196.168', '81.31.196.171', 1361036456, 1361036459, 'NL', 'Netherlands'), +('81.31.196.172', '81.31.196.175', 1361036460, 1361036463, 'TR', 'Turkey'), +('81.31.196.176', '81.31.196.183', 1361036464, 1361036471, 'IQ', 'Iraq'), +('81.31.196.184', '81.31.196.187', 1361036472, 1361036475, 'IL', 'Israel'), +('81.31.196.188', '81.31.196.191', 1361036476, 1361036479, 'IQ', 'Iraq'), +('81.31.196.192', '81.31.196.199', 1361036480, 1361036487, 'KW', 'Kuwait'), +('81.31.196.200', '81.31.196.203', 1361036488, 1361036491, 'GB', 'United Kingdom'), +('81.31.196.204', '81.31.196.207', 1361036492, 1361036495, 'KW', 'Kuwait'), +('81.31.196.208', '81.31.196.219', 1361036496, 1361036507, 'IQ', 'Iraq'), +('81.31.196.220', '81.31.196.223', 1361036508, 1361036511, 'ES', 'Spain'), +('81.31.196.224', '81.31.196.227', 1361036512, 1361036515, 'TR', 'Turkey'), +('81.31.196.228', '81.31.196.235', 1361036516, 1361036523, 'IT', 'Italy'), +('81.31.196.236', '81.31.196.239', 1361036524, 1361036527, 'GB', 'United Kingdom'), +('81.31.196.240', '81.31.196.243', 1361036528, 1361036531, 'IT', 'Italy'), +('81.31.196.244', '81.31.196.255', 1361036532, 1361036543, 'IQ', 'Iraq'), +('81.31.197.0', '81.31.197.7', 1361036544, 1361036551, 'DE', 'Germany'), +('81.31.197.8', '81.31.197.15', 1361036552, 1361036559, 'GB', 'United Kingdom'), +('81.31.197.16', '81.31.197.23', 1361036560, 1361036567, 'TR', 'Turkey'), +('81.31.197.24', '81.31.197.35', 1361036568, 1361036579, 'IQ', 'Iraq'), +('81.31.197.36', '81.31.197.39', 1361036580, 1361036583, 'ES', 'Spain'), +('81.31.197.40', '81.31.197.47', 1361036584, 1361036591, 'IQ', 'Iraq'), +('81.31.197.48', '81.31.197.51', 1361036592, 1361036595, 'KW', 'Kuwait'), +('81.31.197.52', '81.31.197.55', 1361036596, 1361036599, 'ES', 'Spain'), +('81.31.197.56', '81.31.197.59', 1361036600, 1361036603, 'KW', 'Kuwait'), +('81.31.197.60', '81.31.197.63', 1361036604, 1361036607, 'ES', 'Spain'), +('81.31.197.64', '81.31.197.67', 1361036608, 1361036611, 'TR', 'Turkey'), +('81.31.197.68', '81.31.197.79', 1361036612, 1361036623, 'GB', 'United Kingdom'), +('81.31.197.80', '81.31.197.87', 1361036624, 1361036631, 'IQ', 'Iraq'), +('81.31.197.88', '81.31.197.91', 1361036632, 1361036635, 'ES', 'Spain'), +('81.31.197.92', '81.31.197.95', 1361036636, 1361036639, 'GB', 'United Kingdom'), +('81.31.197.96', '81.31.197.119', 1361036640, 1361036663, 'IQ', 'Iraq'), +('81.31.197.120', '81.31.197.123', 1361036664, 1361036667, 'DZ', 'Algeria'), +('81.31.197.124', '81.31.197.127', 1361036668, 1361036671, 'CH', 'Switzerland'), +('81.31.197.128', '81.31.197.131', 1361036672, 1361036675, 'TR', 'Turkey'), +('81.31.197.132', '81.31.197.135', 1361036676, 1361036679, 'ES', 'Spain'), +('81.31.197.136', '81.31.197.175', 1361036680, 1361036719, 'IQ', 'Iraq'), +('81.31.197.176', '81.31.197.183', 1361036720, 1361036727, 'DZ', 'Algeria'), +('81.31.197.184', '81.31.197.191', 1361036728, 1361036735, 'US', 'United States'), +('81.31.197.192', '81.31.198.15', 1361036736, 1361036815, 'IQ', 'Iraq'), +('81.31.198.16', '81.31.198.19', 1361036816, 1361036819, 'NL', 'Netherlands'), +('81.31.198.20', '81.31.198.23', 1361036820, 1361036823, 'ES', 'Spain'), +('81.31.198.24', '81.31.198.27', 1361036824, 1361036827, 'DE', 'Germany'), +('81.31.198.28', '81.31.198.31', 1361036828, 1361036831, 'DZ', 'Algeria'), +('81.31.198.32', '81.31.198.47', 1361036832, 1361036847, 'IQ', 'Iraq'), +('81.31.198.48', '81.31.198.51', 1361036848, 1361036851, 'DZ', 'Algeria'), +('81.31.198.52', '81.31.198.63', 1361036852, 1361036863, 'IQ', 'Iraq'), +('81.31.198.64', '81.31.198.71', 1361036864, 1361036871, 'TR', 'Turkey'), +('81.31.198.72', '81.31.198.79', 1361036872, 1361036879, 'IQ', 'Iraq'), +('81.31.198.80', '81.31.198.87', 1361036880, 1361036887, 'US', 'United States'), +('81.31.198.88', '81.31.198.91', 1361036888, 1361036891, 'GB', 'United Kingdom'), +('81.31.198.92', '81.31.198.95', 1361036892, 1361036895, 'IQ', 'Iraq'), +('81.31.198.96', '81.31.198.99', 1361036896, 1361036899, 'NL', 'Netherlands'), +('81.31.198.100', '81.31.198.119', 1361036900, 1361036919, 'IQ', 'Iraq'), +('81.31.198.120', '81.31.198.123', 1361036920, 1361036923, 'IT', 'Italy'), +('81.31.198.124', '81.31.198.127', 1361036924, 1361036927, 'GB', 'United Kingdom'), +('81.31.198.128', '81.31.198.135', 1361036928, 1361036935, 'KW', 'Kuwait'), +('81.31.198.136', '81.31.198.151', 1361036936, 1361036951, 'IQ', 'Iraq'), +('81.31.198.152', '81.31.198.159', 1361036952, 1361036959, 'TR', 'Turkey'), +('81.31.198.160', '81.31.198.171', 1361036960, 1361036971, 'IQ', 'Iraq'), +('81.31.198.172', '81.31.198.179', 1361036972, 1361036979, 'DZ', 'Algeria'), +('81.31.198.180', '81.31.198.183', 1361036980, 1361036983, 'FR', 'France'), +('81.31.198.184', '81.31.198.199', 1361036984, 1361036999, 'IQ', 'Iraq'), +('81.31.198.200', '81.31.198.207', 1361037000, 1361037007, 'PL', 'Poland'), +('81.31.198.208', '81.31.198.215', 1361037008, 1361037015, 'IQ', 'Iraq'), +('81.31.198.216', '81.31.198.223', 1361037016, 1361037023, 'DZ', 'Algeria'), +('81.31.198.224', '81.31.198.255', 1361037024, 1361037055, 'KW', 'Kuwait'), +('81.31.199.0', '81.31.199.3', 1361037056, 1361037059, 'IQ', 'Iraq'), +('81.31.199.4', '81.31.199.7', 1361037060, 1361037063, 'ES', 'Spain'), +('81.31.199.8', '81.31.199.11', 1361037064, 1361037067, 'IQ', 'Iraq'), +('81.31.199.12', '81.31.199.15', 1361037068, 1361037071, 'TR', 'Turkey'), +('81.31.199.16', '81.31.199.19', 1361037072, 1361037075, 'IQ', 'Iraq'), +('81.31.199.20', '81.31.199.23', 1361037076, 1361037079, 'HU', 'Hungary'), +('81.31.199.24', '81.31.199.27', 1361037080, 1361037083, 'IQ', 'Iraq'), +('81.31.199.28', '81.31.199.31', 1361037084, 1361037087, 'DZ', 'Algeria'), +('81.31.199.32', '81.31.199.35', 1361037088, 1361037091, 'GB', 'United Kingdom'), +('81.31.199.36', '81.31.199.63', 1361037092, 1361037119, 'IQ', 'Iraq'), +('81.31.199.64', '81.31.199.71', 1361037120, 1361037127, 'TR', 'Turkey'), +('81.31.199.72', '81.31.199.79', 1361037128, 1361037135, 'DE', 'Germany'), +('81.31.199.80', '81.31.199.103', 1361037136, 1361037159, 'IQ', 'Iraq'), +('81.31.199.104', '81.31.199.111', 1361037160, 1361037167, 'KW', 'Kuwait'), +('81.31.199.112', '81.31.199.123', 1361037168, 1361037179, 'IQ', 'Iraq'), +('81.31.199.124', '81.31.199.127', 1361037180, 1361037183, 'GB', 'United Kingdom'), +('81.31.199.128', '81.31.199.135', 1361037184, 1361037191, 'US', 'United States'), +('81.31.199.136', '81.31.199.143', 1361037192, 1361037199, 'IQ', 'Iraq'), +('81.31.199.144', '81.31.199.147', 1361037200, 1361037203, 'GB', 'United Kingdom'), +('81.31.199.148', '81.31.199.151', 1361037204, 1361037207, 'FR', 'France'), +('81.31.199.152', '81.31.199.159', 1361037208, 1361037215, 'DZ', 'Algeria'), +('81.31.199.160', '81.31.199.167', 1361037216, 1361037223, 'TR', 'Turkey'), +('81.31.199.168', '81.31.199.175', 1361037224, 1361037231, 'ES', 'Spain'), +('81.31.199.176', '81.31.199.215', 1361037232, 1361037271, 'IQ', 'Iraq'), +('81.31.199.216', '81.31.199.223', 1361037272, 1361037279, 'NL', 'Netherlands'), +('81.31.199.224', '81.31.199.239', 1361037280, 1361037295, 'IQ', 'Iraq'), +('81.31.199.240', '81.31.199.255', 1361037296, 1361037311, 'DZ', 'Algeria'), +('81.31.200.0', '81.31.200.7', 1361037312, 1361037319, 'IQ', 'Iraq'), +('81.31.200.8', '81.31.200.15', 1361037320, 1361037327, 'GB', 'United Kingdom'), +('81.31.200.16', '81.31.200.27', 1361037328, 1361037339, 'IQ', 'Iraq'), +('81.31.200.28', '81.31.200.31', 1361037340, 1361037343, 'TR', 'Turkey'), +('81.31.200.32', '81.31.200.47', 1361037344, 1361037359, 'IQ', 'Iraq'), +('81.31.200.48', '81.31.200.51', 1361037360, 1361037363, 'ES', 'Spain'), +('81.31.200.52', '81.31.200.55', 1361037364, 1361037367, 'DZ', 'Algeria'), +('81.31.200.56', '81.31.200.75', 1361037368, 1361037387, 'IQ', 'Iraq'), +('81.31.200.76', '81.31.200.79', 1361037388, 1361037391, 'TR', 'Turkey'), +('81.31.200.80', '81.31.200.83', 1361037392, 1361037395, 'IT', 'Italy'), +('81.31.200.84', '81.31.200.87', 1361037396, 1361037399, 'US', 'United States'), +('81.31.200.88', '81.31.200.95', 1361037400, 1361037407, 'IQ', 'Iraq'), +('81.31.200.96', '81.31.200.103', 1361037408, 1361037415, 'TR', 'Turkey'), +('81.31.200.104', '81.31.200.131', 1361037416, 1361037443, 'IQ', 'Iraq'), +('81.31.200.132', '81.31.200.135', 1361037444, 1361037447, 'DZ', 'Algeria'), +('81.31.200.136', '81.31.200.143', 1361037448, 1361037455, 'IQ', 'Iraq'), +('81.31.200.144', '81.31.200.151', 1361037456, 1361037463, 'NL', 'Netherlands'), +('81.31.200.152', '81.31.200.159', 1361037464, 1361037471, 'CH', 'Switzerland'), +('81.31.200.160', '81.31.200.175', 1361037472, 1361037487, 'NL', 'Netherlands'), +('81.31.200.176', '81.31.200.183', 1361037488, 1361037495, 'IQ', 'Iraq'), +('81.31.200.184', '81.31.200.191', 1361037496, 1361037503, 'DZ', 'Algeria'), +('81.31.200.192', '81.31.200.203', 1361037504, 1361037515, 'IQ', 'Iraq'), +('81.31.200.204', '81.31.200.207', 1361037516, 1361037519, 'JO', 'Jordan'), +('81.31.200.208', '81.31.200.215', 1361037520, 1361037527, 'IQ', 'Iraq'), +('81.31.200.216', '81.31.200.239', 1361037528, 1361037551, 'DZ', 'Algeria'), +('81.31.200.240', '81.31.200.247', 1361037552, 1361037559, 'QA', 'Qatar'), +('81.31.200.248', '81.31.200.255', 1361037560, 1361037567, 'IQ', 'Iraq'), +('81.31.201.0', '81.31.201.7', 1361037568, 1361037575, 'TR', 'Turkey'), +('81.31.201.8', '81.31.201.15', 1361037576, 1361037583, 'IQ', 'Iraq'), +('81.31.201.16', '81.31.201.19', 1361037584, 1361037587, 'GB', 'United Kingdom'), +('81.31.201.20', '81.31.201.23', 1361037588, 1361037591, 'ES', 'Spain'), +('81.31.201.24', '81.31.201.31', 1361037592, 1361037599, 'US', 'United States'), +('81.31.201.32', '81.31.201.43', 1361037600, 1361037611, 'IQ', 'Iraq'), +('81.31.201.44', '81.31.201.47', 1361037612, 1361037615, 'ES', 'Spain'), +('81.31.201.48', '81.31.201.51', 1361037616, 1361037619, 'IQ', 'Iraq'), +('81.31.201.52', '81.31.201.63', 1361037620, 1361037631, 'ES', 'Spain'), +('81.31.201.64', '81.31.201.71', 1361037632, 1361037639, 'DZ', 'Algeria'), +('81.31.201.72', '81.31.201.99', 1361037640, 1361037667, 'IQ', 'Iraq'), +('81.31.201.100', '81.31.201.103', 1361037668, 1361037671, 'DZ', 'Algeria'), +('81.31.201.104', '81.31.201.115', 1361037672, 1361037683, 'IQ', 'Iraq'), +('81.31.201.116', '81.31.201.119', 1361037684, 1361037687, 'TR', 'Turkey'), +('81.31.201.120', '81.31.201.127', 1361037688, 1361037695, 'IQ', 'Iraq'), +('81.31.201.128', '81.31.201.135', 1361037696, 1361037703, 'PL', 'Poland'), +('81.31.201.136', '81.31.201.203', 1361037704, 1361037771, 'IQ', 'Iraq'), +('81.31.201.204', '81.31.201.207', 1361037772, 1361037775, 'GB', 'United Kingdom'), +('81.31.201.208', '81.31.201.215', 1361037776, 1361037783, 'NL', 'Netherlands'), +('81.31.201.216', '81.31.201.255', 1361037784, 1361037823, 'IQ', 'Iraq'), +('81.31.202.0', '81.31.202.3', 1361037824, 1361037827, 'ES', 'Spain'), +('81.31.202.4', '81.31.202.11', 1361037828, 1361037835, 'IQ', 'Iraq'), +('81.31.202.12', '81.31.202.15', 1361037836, 1361037839, 'ES', 'Spain'), +('81.31.202.16', '81.31.202.23', 1361037840, 1361037847, 'TR', 'Turkey'), +('81.31.202.24', '81.31.202.27', 1361037848, 1361037851, 'IQ', 'Iraq'), +('81.31.202.28', '81.31.202.31', 1361037852, 1361037855, 'ES', 'Spain'), +('81.31.202.32', '81.31.202.47', 1361037856, 1361037871, 'IQ', 'Iraq'), +('81.31.202.48', '81.31.202.51', 1361037872, 1361037875, 'ES', 'Spain'), +('81.31.202.52', '81.31.202.55', 1361037876, 1361037879, 'AL', 'Albania'), +('81.31.202.56', '81.31.202.59', 1361037880, 1361037883, 'PT', 'Portugal'), +('81.31.202.60', '81.31.202.67', 1361037884, 1361037891, 'IQ', 'Iraq'), +('81.31.202.68', '81.31.202.71', 1361037892, 1361037895, 'ES', 'Spain'), +('81.31.202.72', '81.31.202.83', 1361037896, 1361037907, 'IQ', 'Iraq'), +('81.31.202.84', '81.31.202.87', 1361037908, 1361037911, 'US', 'United States'), +('81.31.202.88', '81.31.202.95', 1361037912, 1361037919, 'TR', 'Turkey'), +('81.31.202.96', '81.31.202.183', 1361037920, 1361038007, 'IQ', 'Iraq'), +('81.31.202.184', '81.31.202.191', 1361038008, 1361038015, 'TR', 'Turkey'), +('81.31.202.192', '81.31.202.199', 1361038016, 1361038023, 'IQ', 'Iraq'), +('81.31.202.200', '81.31.202.207', 1361038024, 1361038031, 'IT', 'Italy'), +('81.31.202.208', '81.31.202.215', 1361038032, 1361038039, 'IQ', 'Iraq'), +('81.31.202.216', '81.31.202.223', 1361038040, 1361038047, 'US', 'United States'), +('81.31.202.224', '81.31.203.15', 1361038048, 1361038095, 'IQ', 'Iraq'), +('81.31.203.16', '81.31.203.23', 1361038096, 1361038103, 'US', 'United States'), +('81.31.203.24', '81.31.203.47', 1361038104, 1361038127, 'IQ', 'Iraq'), +('81.31.203.48', '81.31.203.55', 1361038128, 1361038135, 'MA', 'Morocco'), +('81.31.203.56', '81.31.203.63', 1361038136, 1361038143, 'IQ', 'Iraq'), +('81.31.203.64', '81.31.203.67', 1361038144, 1361038147, 'KW', 'Kuwait'), +('81.31.203.68', '81.31.203.79', 1361038148, 1361038159, 'GB', 'United Kingdom'), +('81.31.203.80', '81.31.203.83', 1361038160, 1361038163, 'KW', 'Kuwait'), +('81.31.203.84', '81.31.203.95', 1361038164, 1361038175, 'GB', 'United Kingdom'), +('81.31.203.96', '81.31.203.99', 1361038176, 1361038179, 'KW', 'Kuwait'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('81.31.203.100', '81.31.203.111', 1361038180, 1361038191, 'GB', 'United Kingdom'), +('81.31.203.112', '81.31.203.119', 1361038192, 1361038199, 'IQ', 'Iraq'), +('81.31.203.120', '81.31.203.131', 1361038200, 1361038211, 'GB', 'United Kingdom'), +('81.31.203.132', '81.31.203.135', 1361038212, 1361038215, 'NL', 'Netherlands'), +('81.31.203.136', '81.31.203.143', 1361038216, 1361038223, 'GB', 'United Kingdom'), +('81.31.203.144', '81.31.203.151', 1361038224, 1361038231, 'IQ', 'Iraq'), +('81.31.203.152', '81.31.203.159', 1361038232, 1361038239, 'DE', 'Germany'), +('81.31.203.160', '81.31.203.167', 1361038240, 1361038247, 'IQ', 'Iraq'), +('81.31.203.168', '81.31.203.191', 1361038248, 1361038271, 'US', 'United States'), +('81.31.203.192', '81.31.203.195', 1361038272, 1361038275, 'GB', 'United Kingdom'), +('81.31.203.196', '81.31.203.199', 1361038276, 1361038279, 'KW', 'Kuwait'), +('81.31.203.200', '81.31.203.207', 1361038280, 1361038287, 'GB', 'United Kingdom'), +('81.31.203.208', '81.31.203.215', 1361038288, 1361038295, 'IQ', 'Iraq'), +('81.31.203.216', '81.31.203.223', 1361038296, 1361038303, 'DE', 'Germany'), +('81.31.203.224', '81.31.203.255', 1361038304, 1361038335, 'US', 'United States'), +('81.31.204.0', '81.31.207.255', 1361038336, 1361039359, 'NL', 'Netherlands'), +('81.31.208.0', '81.31.223.255', 1361039360, 1361043455, 'IT', 'Italy'), +('81.31.224.0', '81.31.255.255', 1361043456, 1361051647, 'NO', 'Norway'), +('81.32.0.0', '81.47.255.255', 1361051648, 1362100223, 'ES', 'Spain'), +('81.48.0.0', '81.52.127.255', 1362100224, 1362395135, 'FR', 'France'), +('81.52.128.0', '81.52.128.47', 1362395136, 1362395183, 'CH', 'Switzerland'), +('81.52.128.48', '81.52.128.255', 1362395184, 1362395391, 'FR', 'France'), +('81.52.129.0', '81.52.129.127', 1362395392, 1362395519, 'SG', 'Singapore'), +('81.52.129.128', '81.52.129.255', 1362395520, 1362395647, 'FR', 'France'), +('81.52.130.0', '81.52.131.255', 1362395648, 1362396159, 'US', 'United States'), +('81.52.132.0', '81.52.132.255', 1362396160, 1362396415, 'FR', 'France'), +('81.52.133.0', '81.52.134.255', 1362396416, 1362396927, 'US', 'United States'), +('81.52.135.0', '81.52.135.255', 1362396928, 1362397183, 'CM', 'Cameroon'), +('81.52.136.0', '81.52.136.71', 1362397184, 1362397255, 'GB', 'United Kingdom'), +('81.52.136.72', '81.52.140.255', 1362397256, 1362398463, 'FR', 'France'), +('81.52.141.0', '81.52.141.255', 1362398464, 1362398719, 'DE', 'Germany'), +('81.52.142.0', '81.52.143.255', 1362398720, 1362399231, 'FR', 'France'), +('81.52.144.0', '81.52.144.31', 1362399232, 1362399263, 'GB', 'United Kingdom'), +('81.52.144.32', '81.52.144.255', 1362399264, 1362399487, 'FR', 'France'), +('81.52.145.0', '81.52.149.255', 1362399488, 1362400767, 'GB', 'United Kingdom'), +('81.52.150.0', '81.52.160.255', 1362400768, 1362403583, 'FR', 'France'), +('81.52.161.0', '81.52.169.255', 1362403584, 1362405887, 'DZ', 'Algeria'), +('81.52.170.0', '81.52.170.255', 1362405888, 1362406143, 'FR', 'France'), +('81.52.171.0', '81.52.174.255', 1362406144, 1362407167, 'SV', 'El Salvador'), +('81.52.175.0', '81.52.191.255', 1362407168, 1362411519, 'FR', 'France'), +('81.52.192.0', '81.52.198.217', 1362411520, 1362413273, 'MQ', 'Martinique'), +('81.52.198.218', '81.52.199.255', 1362413274, 1362413567, 'FR', 'France'), +('81.52.200.0', '81.52.200.19', 1362413568, 1362413587, 'CM', 'Cameroon'), +('81.52.200.20', '81.52.201.255', 1362413588, 1362414079, 'FR', 'France'), +('81.52.202.0', '81.52.204.255', 1362414080, 1362414847, 'US', 'United States'), +('81.52.205.0', '81.52.205.255', 1362414848, 1362415103, 'GB', 'United Kingdom'), +('81.52.206.0', '81.52.206.255', 1362415104, 1362415359, 'FR', 'France'), +('81.52.207.0', '81.52.207.255', 1362415360, 1362415615, 'DE', 'Germany'), +('81.52.208.0', '81.52.215.255', 1362415616, 1362417663, 'GP', 'Guadeloupe'), +('81.52.216.0', '81.52.223.255', 1362417664, 1362419711, 'SG', 'Singapore'), +('81.52.224.0', '81.52.236.255', 1362419712, 1362423039, 'FR', 'France'), +('81.52.237.0', '81.52.237.127', 1362423040, 1362423167, 'SG', 'Singapore'), +('81.52.237.128', '81.52.237.223', 1362423168, 1362423263, 'FR', 'France'), +('81.52.237.224', '81.52.237.255', 1362423264, 1362423295, 'SG', 'Singapore'), +('81.52.238.0', '81.52.239.255', 1362423296, 1362423807, 'VE', 'Venezuela'), +('81.52.240.0', '81.52.247.255', 1362423808, 1362425855, 'SG', 'Singapore'), +('81.52.248.0', '81.52.250.255', 1362425856, 1362426623, 'US', 'United States'), +('81.52.251.0', '81.52.251.255', 1362426624, 1362426879, 'FR', 'France'), +('81.52.252.0', '81.52.255.255', 1362426880, 1362427903, 'MQ', 'Martinique'), +('81.53.0.0', '81.57.255.255', 1362427904, 1362755583, 'FR', 'France'), +('81.58.0.0', '81.59.255.9', 1362755584, 1362886409, 'NL', 'Netherlands'), +('81.59.255.10', '81.59.255.13', 1362886410, 1362886413, 'BE', 'Belgium'), +('81.59.255.14', '81.59.255.16', 1362886414, 1362886416, 'NL', 'Netherlands'), +('81.59.255.17', '81.59.255.19', 1362886417, 1362886419, 'BE', 'Belgium'), +('81.59.255.20', '81.59.255.21', 1362886420, 1362886421, 'NL', 'Netherlands'), +('81.59.255.22', '81.59.255.22', 1362886422, 1362886422, 'BE', 'Belgium'), +('81.59.255.23', '81.59.255.255', 1362886423, 1362886655, 'NL', 'Netherlands'), +('81.60.0.0', '81.61.255.255', 1362886656, 1363017727, 'ES', 'Spain'), +('81.62.0.0', '81.63.255.255', 1363017728, 1363148799, 'CH', 'Switzerland'), +('81.64.0.0', '81.67.255.255', 1363148800, 1363410943, 'FR', 'France'), +('81.68.0.0', '81.71.255.255', 1363410944, 1363673087, 'NL', 'Netherlands'), +('81.72.0.0', '81.75.255.255', 1363673088, 1363935231, 'IT', 'Italy'), +('81.76.0.0', '81.79.255.255', 1363935232, 1364197375, 'GB', 'United Kingdom'), +('81.80.0.0', '81.80.26.2', 1364197376, 1364204034, 'FR', 'France'), +('81.80.26.3', '81.80.26.3', 1364204035, 1364204035, 'GB', 'United Kingdom'), +('81.80.26.4', '81.80.255.255', 1364204036, 1364262911, 'FR', 'France'), +('81.81.0.0', '81.81.255.255', 1364262912, 1364328447, 'IT', 'Italy'), +('81.82.0.0', '81.83.255.255', 1364328448, 1364459519, 'BE', 'Belgium'), +('81.84.0.0', '81.84.255.255', 1364459520, 1364525055, 'PT', 'Portugal'), +('81.85.0.0', '81.85.4.255', 1364525056, 1364526335, 'NL', 'Netherlands'), +('81.85.5.0', '81.85.5.255', 1364526336, 1364526591, 'US', 'United States'), +('81.85.6.0', '81.85.13.255', 1364526592, 1364528639, 'GB', 'United Kingdom'), +('81.85.14.0', '81.85.14.255', 1364528640, 1364528895, 'UA', 'Ukraine'), +('81.85.15.0', '81.85.19.255', 1364528896, 1364530175, 'GB', 'United Kingdom'), +('81.85.20.0', '81.85.57.255', 1364530176, 1364539903, 'NL', 'Netherlands'), +('81.85.58.0', '81.85.58.255', 1364539904, 1364540159, 'US', 'United States'), +('81.85.59.0', '81.85.60.255', 1364540160, 1364540671, 'NL', 'Netherlands'), +('81.85.61.0', '81.85.61.255', 1364540672, 1364540927, 'US', 'United States'), +('81.85.62.0', '81.85.224.15', 1364540928, 1364582415, 'NL', 'Netherlands'), +('81.85.224.16', '81.85.224.31', 1364582416, 1364582431, 'LB', 'Lebanon'), +('81.85.224.32', '81.85.237.255', 1364582432, 1364585983, 'NL', 'Netherlands'), +('81.85.238.0', '81.85.239.0', 1364585984, 1364586240, 'LB', 'Lebanon'), +('81.85.239.1', '81.85.239.255', 1364586241, 1364586495, 'NL', 'Netherlands'), +('81.85.240.0', '81.85.241.0', 1364586496, 1364586752, 'LB', 'Lebanon'), +('81.85.241.1', '81.85.255.255', 1364586753, 1364590591, 'NL', 'Netherlands'), +('81.86.0.0', '81.87.255.255', 1364590592, 1364721663, 'GB', 'United Kingdom'), +('81.88.0.0', '81.88.15.255', 1364721664, 1364725759, 'SE', 'Sweden'), +('81.88.16.0', '81.88.47.255', 1364725760, 1364733951, 'DE', 'Germany'), +('81.88.48.0', '81.88.63.255', 1364733952, 1364738047, 'IT', 'Italy'), +('81.88.64.0', '81.88.79.255', 1364738048, 1364742143, 'NO', 'Norway'), +('81.88.80.0', '81.88.95.255', 1364742144, 1364746239, 'RU', 'Russian Federation'), +('81.88.96.0', '81.88.107.255', 1364746240, 1364749311, 'FR', 'France'), +('81.88.108.0', '81.88.108.62', 1364749312, 1364749374, 'BE', 'Belgium'), +('81.88.108.63', '81.88.108.143', 1364749375, 1364749455, 'FR', 'France'), +('81.88.108.144', '81.88.108.151', 1364749456, 1364749463, 'BE', 'Belgium'), +('81.88.108.152', '81.88.108.159', 1364749464, 1364749471, 'FR', 'France'), +('81.88.108.160', '81.88.109.15', 1364749472, 1364749583, 'BE', 'Belgium'), +('81.88.109.16', '81.88.109.63', 1364749584, 1364749631, 'FR', 'France'), +('81.88.109.64', '81.88.109.95', 1364749632, 1364749663, 'BE', 'Belgium'), +('81.88.109.96', '81.88.109.255', 1364749664, 1364749823, 'FR', 'France'), +('81.88.110.0', '81.88.110.255', 1364749824, 1364750079, 'BE', 'Belgium'), +('81.88.111.0', '81.88.111.255', 1364750080, 1364750335, 'FR', 'France'), +('81.88.112.0', '81.88.127.255', 1364750336, 1364754431, 'RU', 'Russian Federation'), +('81.88.128.0', '81.88.143.255', 1364754432, 1364758527, 'SK', 'Slovakia'), +('81.88.144.0', '81.88.159.255', 1364758528, 1364762623, 'KZ', 'Kazakstan'), +('81.88.160.0', '81.88.175.255', 1364762624, 1364766719, 'GB', 'United Kingdom'), +('81.88.176.0', '81.88.191.255', 1364766720, 1364770815, 'CH', 'Switzerland'), +('81.88.192.0', '81.88.207.255', 1364770816, 1364774911, 'KG', 'Kyrgyzstan'), +('81.88.208.0', '81.88.223.255', 1364774912, 1364779007, 'RU', 'Russian Federation'), +('81.88.224.0', '81.88.255.255', 1364779008, 1364787199, 'IT', 'Italy'), +('81.89.0.0', '81.89.31.255', 1364787200, 1364795391, 'RO', 'Romania'), +('81.89.32.0', '81.89.47.255', 1364795392, 1364799487, 'ES', 'Spain'), +('81.89.48.0', '81.89.63.255', 1364799488, 1364803583, 'SK', 'Slovakia'), +('81.89.64.0', '81.89.95.255', 1364803584, 1364811775, 'RU', 'Russian Federation'), +('81.89.96.0', '81.89.96.31', 1364811776, 1364811807, 'LU', 'Luxembourg'), +('81.89.96.32', '81.89.111.255', 1364811808, 1364815871, 'DE', 'Germany'), +('81.89.112.0', '81.89.127.255', 1364815872, 1364819967, 'RU', 'Russian Federation'), +('81.89.128.0', '81.89.143.255', 1364819968, 1364824063, 'GB', 'United Kingdom'), +('81.89.160.0', '81.89.164.255', 1364828160, 1364829439, 'GB', 'United Kingdom'), +('81.89.165.0', '81.89.165.47', 1364829440, 1364829487, 'FR', 'France'), +('81.89.165.48', '81.89.165.63', 1364829488, 1364829503, 'GB', 'United Kingdom'), +('81.89.165.64', '81.89.165.87', 1364829504, 1364829527, 'FR', 'France'), +('81.89.165.88', '81.89.175.255', 1364829528, 1364832255, 'GB', 'United Kingdom'), +('81.89.176.0', '81.89.191.255', 1364832256, 1364836351, 'RU', 'Russian Federation'), +('81.89.192.0', '81.89.207.255', 1364836352, 1364840447, 'DE', 'Germany'), +('81.89.208.0', '81.89.223.255', 1364840448, 1364844543, 'AM', 'Armenia'), +('81.89.224.0', '81.89.254.255', 1364844544, 1364852479, 'DE', 'Germany'), +('81.89.255.0', '81.89.255.255', 1364852480, 1364852735, 'GB', 'United Kingdom'), +('81.90.0.0', '81.90.15.255', 1364852736, 1364856831, 'RU', 'Russian Federation'), +('81.90.16.0', '81.90.31.255', 1364856832, 1364860927, 'IQ', 'Iraq'), +('81.90.32.0', '81.90.47.255', 1364860928, 1364865023, 'DE', 'Germany'), +('81.90.48.0', '81.90.63.255', 1364865024, 1364869119, 'PT', 'Portugal'), +('81.90.64.0', '81.90.79.255', 1364869120, 1364873215, 'FI', 'Finland'), +('81.90.80.0', '81.90.95.255', 1364873216, 1364877311, 'GB', 'United Kingdom'), +('81.90.96.0', '81.90.111.255', 1364877312, 1364881407, 'ES', 'Spain'), +('81.90.112.0', '81.90.127.255', 1364881408, 1364885503, 'EE', 'Estonia'), +('81.90.128.0', '81.90.143.255', 1364885504, 1364889599, 'GB', 'United Kingdom'), +('81.90.144.0', '81.90.159.255', 1364889600, 1364893695, 'IR', 'Iran, Islamic Republic of'), +('81.90.160.0', '81.90.175.255', 1364893696, 1364897791, 'CZ', 'Czech Republic'), +('81.90.176.0', '81.90.191.255', 1364897792, 1364901887, 'SI', 'Slovenia'), +('81.90.192.0', '81.90.207.255', 1364901888, 1364905983, 'DE', 'Germany'), +('81.90.208.0', '81.90.223.255', 1364905984, 1364910079, 'RU', 'Russian Federation'), +('81.90.224.0', '81.90.239.255', 1364910080, 1364914175, 'UA', 'Ukraine'), +('81.90.240.0', '81.90.255.255', 1364914176, 1364918271, 'CZ', 'Czech Republic'), +('81.91.0.0', '81.91.15.255', 1364918272, 1364922367, 'NL', 'Netherlands'), +('81.91.16.0', '81.91.31.255', 1364922368, 1364926463, 'TR', 'Turkey'), +('81.91.32.0', '81.91.63.255', 1364926464, 1364934655, 'RU', 'Russian Federation'), +('81.91.64.0', '81.91.79.255', 1364934656, 1364938751, 'FR', 'France'), +('81.91.80.0', '81.91.95.255', 1364938752, 1364942847, 'CZ', 'Czech Republic'), +('81.91.96.0', '81.91.111.255', 1364942848, 1364946943, 'GB', 'United Kingdom'), +('81.91.112.0', '81.91.112.223', 1364946944, 1364947167, 'TR', 'Turkey'), +('81.91.112.224', '81.91.112.255', 1364947168, 1364947199, 'US', 'United States'), +('81.91.113.0', '81.91.117.255', 1364947200, 1364948479, 'GB', 'United Kingdom'), +('81.91.118.0', '81.91.120.255', 1364948480, 1364949247, 'TR', 'Turkey'), +('81.91.121.0', '81.91.121.255', 1364949248, 1364949503, 'CY', 'Cyprus'), +('81.91.122.0', '81.91.122.255', 1364949504, 1364949759, 'TR', 'Turkey'), +('81.91.123.0', '81.91.123.255', 1364949760, 1364950015, 'CY', 'Cyprus'), +('81.91.124.0', '81.91.125.255', 1364950016, 1364950527, 'TR', 'Turkey'), +('81.91.126.0', '81.91.126.255', 1364950528, 1364950783, 'CY', 'Cyprus'), +('81.91.127.0', '81.91.127.63', 1364950784, 1364950847, 'TR', 'Turkey'), +('81.91.127.64', '81.91.127.127', 1364950848, 1364950911, 'GB', 'United Kingdom'), +('81.91.127.128', '81.91.127.255', 1364950912, 1364951039, 'TR', 'Turkey'), +('81.91.128.0', '81.91.159.255', 1364951040, 1364959231, 'IR', 'Iran, Islamic Republic of'), +('81.91.160.0', '81.91.175.255', 1364959232, 1364963327, 'DE', 'Germany'), +('81.91.176.0', '81.91.191.255', 1364963328, 1364967423, 'RU', 'Russian Federation'), +('81.91.192.0', '81.91.207.255', 1364967424, 1364971519, 'GB', 'United Kingdom'), +('81.91.208.0', '81.91.223.255', 1364971520, 1364975615, 'CZ', 'Czech Republic'), +('81.91.224.0', '81.91.239.255', 1364975616, 1364979711, 'BJ', 'Benin'), +('81.91.240.0', '81.91.255.255', 1364979712, 1364983807, 'GB', 'United Kingdom'), +('81.92.0.0', '81.92.31.255', 1364983808, 1364991999, 'DE', 'Germany'), +('81.92.32.0', '81.92.47.255', 1364992000, 1364996095, 'IT', 'Italy'), +('81.92.48.0', '81.92.63.255', 1364996096, 1365000191, 'GR', 'Greece'), +('81.92.64.0', '81.92.73.255', 1365000192, 1365002751, 'SE', 'Sweden'), +('81.92.74.0', '81.92.75.255', 1365002752, 1365003263, 'GB', 'United Kingdom'), +('81.92.76.0', '81.92.79.31', 1365003264, 1365004063, 'SE', 'Sweden'), +('81.92.79.32', '81.92.79.55', 1365004064, 1365004087, 'GB', 'United Kingdom'), +('81.92.79.56', '81.92.79.63', 1365004088, 1365004095, 'SE', 'Sweden'), +('81.92.79.64', '81.92.79.175', 1365004096, 1365004207, 'GB', 'United Kingdom'), +('81.92.79.176', '81.92.79.191', 1365004208, 1365004223, 'SE', 'Sweden'), +('81.92.79.192', '81.92.79.255', 1365004224, 1365004287, 'GB', 'United Kingdom'), +('81.92.80.0', '81.92.95.255', 1365004288, 1365008383, 'FR', 'France'), +('81.92.96.0', '81.92.111.255', 1365008384, 1365012479, 'CH', 'Switzerland'), +('81.92.112.0', '81.92.127.255', 1365012480, 1365016575, 'FR', 'France'), +('81.92.128.0', '81.92.143.255', 1365016576, 1365020671, 'ES', 'Spain'), +('81.92.144.0', '81.92.159.255', 1365020672, 1365024767, 'CZ', 'Czech Republic'), +('81.92.160.0', '81.92.171.255', 1365024768, 1365027839, 'DE', 'Germany'), +('81.92.172.0', '81.92.172.31', 1365027840, 1365027871, 'US', 'United States'), +('81.92.172.32', '81.92.175.255', 1365027872, 1365028863, 'DE', 'Germany'), +('81.92.176.0', '81.92.191.255', 1365028864, 1365032959, 'NL', 'Netherlands'), +('81.92.192.0', '81.92.223.255', 1365032960, 1365041151, 'PT', 'Portugal'), +('81.92.224.0', '81.92.224.255', 1365041152, 1365041407, 'IQ', 'Iraq'), +('81.92.225.0', '81.92.227.127', 1365041408, 1365042047, 'LU', 'Luxembourg'), +('81.92.227.128', '81.92.227.135', 1365042048, 1365042055, 'GB', 'United Kingdom'), +('81.92.227.136', '81.92.227.255', 1365042056, 1365042175, 'LU', 'Luxembourg'), +('81.92.228.0', '81.92.236.255', 1365042176, 1365044479, 'FR', 'France'), +('81.92.237.0', '81.92.237.175', 1365044480, 1365044655, 'LU', 'Luxembourg'), +('81.92.237.176', '81.92.237.239', 1365044656, 1365044719, 'FR', 'France'), +('81.92.237.240', '81.92.238.159', 1365044720, 1365044895, 'LU', 'Luxembourg'), +('81.92.238.160', '81.92.238.175', 1365044896, 1365044911, 'FR', 'France'), +('81.92.238.176', '81.92.238.223', 1365044912, 1365044959, 'LU', 'Luxembourg'), +('81.92.238.224', '81.92.238.239', 1365044960, 1365044975, 'BE', 'Belgium'), +('81.92.238.240', '81.92.239.223', 1365044976, 1365045215, 'LU', 'Luxembourg'), +('81.92.239.224', '81.92.239.255', 1365045216, 1365045247, 'BE', 'Belgium'), +('81.92.240.0', '81.92.247.255', 1365045248, 1365047295, 'AT', 'Austria'), +('81.92.248.0', '81.92.248.127', 1365047296, 1365047423, 'SK', 'Slovakia'), +('81.92.248.128', '81.92.248.255', 1365047424, 1365047551, 'AT', 'Austria'), +('81.92.249.0', '81.92.249.95', 1365047552, 1365047647, 'SK', 'Slovakia'), +('81.92.249.96', '81.92.249.127', 1365047648, 1365047679, 'AT', 'Austria'), +('81.92.249.128', '81.92.249.255', 1365047680, 1365047807, 'SK', 'Slovakia'), +('81.92.250.0', '81.92.250.63', 1365047808, 1365047871, 'AT', 'Austria'), +('81.92.250.64', '81.92.250.95', 1365047872, 1365047903, 'SK', 'Slovakia'), +('81.92.250.96', '81.92.250.191', 1365047904, 1365047999, 'AT', 'Austria'), +('81.92.250.192', '81.92.251.127', 1365048000, 1365048191, 'SK', 'Slovakia'), +('81.92.251.128', '81.92.251.191', 1365048192, 1365048255, 'AT', 'Austria'), +('81.92.251.192', '81.92.252.63', 1365048256, 1365048383, 'SK', 'Slovakia'), +('81.92.252.64', '81.92.252.191', 1365048384, 1365048511, 'AT', 'Austria'), +('81.92.252.192', '81.92.253.31', 1365048512, 1365048607, 'SK', 'Slovakia'), +('81.92.253.32', '81.92.253.127', 1365048608, 1365048703, 'AT', 'Austria'), +('81.92.253.128', '81.92.254.55', 1365048704, 1365048887, 'SK', 'Slovakia'), +('81.92.254.56', '81.92.254.63', 1365048888, 1365048895, 'AT', 'Austria'), +('81.92.254.64', '81.92.254.95', 1365048896, 1365048927, 'SK', 'Slovakia'), +('81.92.254.96', '81.92.255.255', 1365048928, 1365049343, 'AT', 'Austria'), +('81.93.0.0', '81.93.31.255', 1365049344, 1365057535, 'FR', 'France'), +('81.93.32.0', '81.93.47.255', 1365057536, 1365061631, 'IT', 'Italy'), +('81.93.48.0', '81.93.63.255', 1365061632, 1365065727, 'NL', 'Netherlands'), +('81.93.64.0', '81.93.95.255', 1365065728, 1365073919, 'BA', 'Bosnia and Herzegovina'), +('81.93.96.0', '81.93.111.255', 1365073920, 1365078015, 'NO', 'Norway'), +('81.93.112.0', '81.93.127.255', 1365078016, 1365082111, 'DE', 'Germany'), +('81.93.128.0', '81.93.159.255', 1365082112, 1365090303, 'SE', 'Sweden'), +('81.93.160.0', '81.93.175.255', 1365090304, 1365094399, 'NO', 'Norway'), +('81.93.176.0', '81.93.178.143', 1365094400, 1365095055, 'FR', 'France'), +('81.93.178.144', '81.93.178.159', 1365095056, 1365095071, 'GB', 'United Kingdom'), +('81.93.178.160', '81.93.178.175', 1365095072, 1365095087, 'FR', 'France'), +('81.93.178.176', '81.93.178.183', 1365095088, 1365095095, 'GB', 'United Kingdom'), +('81.93.178.184', '81.93.180.151', 1365095096, 1365095575, 'FR', 'France'), +('81.93.180.152', '81.93.180.159', 1365095576, 1365095583, 'GB', 'United Kingdom'), +('81.93.180.160', '81.93.184.255', 1365095584, 1365096703, 'FR', 'France'), +('81.93.185.0', '81.93.185.7', 1365096704, 1365096711, 'GB', 'United Kingdom'), +('81.93.185.8', '81.93.185.31', 1365096712, 1365096735, 'FR', 'France'), +('81.93.185.32', '81.93.185.63', 1365096736, 1365096767, 'IT', 'Italy'), +('81.93.185.64', '81.93.186.255', 1365096768, 1365097215, 'FR', 'France'), +('81.93.187.0', '81.93.187.255', 1365097216, 1365097471, 'ES', 'Spain'), +('81.93.188.0', '81.93.188.255', 1365097472, 1365097727, 'FR', 'France'), +('81.93.189.0', '81.93.189.255', 1365097728, 1365097983, 'CH', 'Switzerland'), +('81.93.190.0', '81.93.191.255', 1365097984, 1365098495, 'FR', 'France'), +('81.93.192.0', '81.93.207.255', 1365098496, 1365102591, 'HU', 'Hungary'), +('81.93.208.0', '81.93.209.63', 1365102592, 1365102911, 'ES', 'Spain'), +('81.93.209.64', '81.93.209.71', 1365102912, 1365102919, 'GB', 'United Kingdom'), +('81.93.209.72', '81.93.211.23', 1365102920, 1365103383, 'ES', 'Spain'), +('81.93.211.24', '81.93.211.31', 1365103384, 1365103391, 'GB', 'United Kingdom'), +('81.93.211.32', '81.93.211.119', 1365103392, 1365103479, 'ES', 'Spain'), +('81.93.211.120', '81.93.211.127', 1365103480, 1365103487, 'GB', 'United Kingdom'), +('81.93.211.128', '81.93.211.159', 1365103488, 1365103519, 'ES', 'Spain'), +('81.93.211.160', '81.93.211.191', 1365103520, 1365103551, 'GB', 'United Kingdom'), +('81.93.211.192', '81.93.212.63', 1365103552, 1365103679, 'ES', 'Spain'), +('81.93.212.64', '81.93.212.127', 1365103680, 1365103743, 'GB', 'United Kingdom'), +('81.93.212.128', '81.93.212.159', 1365103744, 1365103775, 'ES', 'Spain'), +('81.93.212.160', '81.93.212.175', 1365103776, 1365103791, 'GB', 'United Kingdom'), +('81.93.212.176', '81.93.212.255', 1365103792, 1365103871, 'ES', 'Spain'), +('81.93.213.0', '81.93.214.7', 1365103872, 1365104135, 'GB', 'United Kingdom'), +('81.93.214.8', '81.93.214.71', 1365104136, 1365104199, 'ES', 'Spain'), +('81.93.214.72', '81.93.214.79', 1365104200, 1365104207, 'GB', 'United Kingdom'), +('81.93.214.80', '81.93.216.95', 1365104208, 1365104735, 'ES', 'Spain'), +('81.93.216.96', '81.93.216.103', 1365104736, 1365104743, 'GB', 'United Kingdom'), +('81.93.216.104', '81.93.217.255', 1365104744, 1365105151, 'ES', 'Spain'), +('81.93.218.0', '81.93.218.63', 1365105152, 1365105215, 'GB', 'United Kingdom'), +('81.93.218.64', '81.93.223.255', 1365105216, 1365106687, 'ES', 'Spain'), +('81.93.224.0', '81.93.239.255', 1365106688, 1365110783, 'GB', 'United Kingdom'), +('81.93.240.0', '81.93.255.255', 1365110784, 1365114879, 'FR', 'France'), +('81.94.0.0', '81.94.15.255', 1365114880, 1365118975, 'BA', 'Bosnia and Herzegovina'), +('81.94.16.0', '81.94.47.255', 1365118976, 1365127167, 'RU', 'Russian Federation'), +('81.94.48.0', '81.94.56.255', 1365127168, 1365129471, 'AT', 'Austria'), +('81.94.57.0', '81.94.57.255', 1365129472, 1365129727, 'IT', 'Italy'), +('81.94.58.0', '81.94.60.31', 1365129728, 1365130271, 'AT', 'Austria'), +('81.94.60.32', '81.94.60.63', 1365130272, 1365130303, 'IT', 'Italy'), +('81.94.60.64', '81.94.60.255', 1365130304, 1365130495, 'AT', 'Austria'), +('81.94.61.0', '81.94.62.255', 1365130496, 1365131007, 'IT', 'Italy'), +('81.94.63.0', '81.94.63.255', 1365131008, 1365131263, 'AT', 'Austria'), +('81.94.64.0', '81.94.95.255', 1365131264, 1365139455, 'SE', 'Sweden'), +('81.94.96.0', '81.94.127.255', 1365139456, 1365147647, 'CH', 'Switzerland'), +('81.94.128.0', '81.94.159.255', 1365147648, 1365155839, 'RU', 'Russian Federation'), +('81.94.160.0', '81.94.175.255', 1365155840, 1365159935, 'SE', 'Sweden'), +('81.94.176.0', '81.94.191.255', 1365159936, 1365164031, 'NO', 'Norway'), +('81.94.192.0', '81.94.223.255', 1365164032, 1365172223, 'GB', 'United Kingdom'), +('81.94.224.0', '81.94.239.255', 1365172224, 1365176319, 'LV', 'Latvia'), +('81.94.240.0', '81.94.255.255', 1365176320, 1365180415, 'HU', 'Hungary'), +('81.95.0.0', '81.95.10.255', 1365180416, 1365183231, 'DE', 'Germany'), +('81.95.11.0', '81.95.11.63', 1365183232, 1365183295, 'SC', 'Seychelles'), +('81.95.11.64', '81.95.15.255', 1365183296, 1365184511, 'DE', 'Germany'), +('81.95.16.0', '81.95.47.255', 1365184512, 1365192703, 'RU', 'Russian Federation'), +('81.95.48.0', '81.95.63.255', 1365192704, 1365196799, 'GB', 'United Kingdom'), +('81.95.64.0', '81.95.79.255', 1365196800, 1365200895, 'ES', 'Spain'), +('81.95.80.0', '81.95.95.255', 1365200896, 1365204991, 'IQ', 'Iraq'), +('81.95.96.0', '81.95.111.255', 1365204992, 1365209087, 'CZ', 'Czech Republic'), +('81.95.112.0', '81.95.127.255', 1365209088, 1365213183, 'BE', 'Belgium'), +('81.95.128.0', '81.95.143.255', 1365213184, 1365217279, 'RU', 'Russian Federation'), +('81.95.144.0', '81.95.159.255', 1365217280, 1365221375, 'GB', 'United Kingdom'), +('81.95.160.0', '81.95.175.255', 1365221376, 1365225471, 'GE', 'Georgia'), +('81.95.176.0', '81.95.191.255', 1365225472, 1365229567, 'UA', 'Ukraine'), +('81.95.192.0', '81.95.207.255', 1365229568, 1365233663, 'PL', 'Poland'), +('81.95.208.0', '81.95.223.255', 1365233664, 1365237759, 'RU', 'Russian Federation'), +('81.95.224.0', '81.95.239.255', 1365237760, 1365241855, 'UZ', 'Uzbekistan'), +('81.95.240.0', '81.95.255.255', 1365241856, 1365245951, 'DK', 'Denmark'), +('81.96.0.0', '81.111.255.255', 1365245952, 1366294527, 'GB', 'United Kingdom'), +('81.112.0.0', '81.127.255.255', 1366294528, 1367343103, 'IT', 'Italy'), +('81.128.0.0', '81.159.255.255', 1367343104, 1369440255, 'GB', 'United Kingdom'), +('81.160.0.0', '81.160.127.255', 1369440256, 1369473023, 'DE', 'Germany'), +('81.160.128.0', '81.160.255.255', 1369473024, 1369505791, 'HU', 'Hungary'), +('81.161.0.0', '81.161.127.255', 1369505792, 1369538559, 'DE', 'Germany'), +('81.161.128.0', '81.161.191.255', 1369538560, 1369554943, 'DK', 'Denmark'), +('81.161.192.0', '81.161.207.255', 1369554944, 1369559039, 'PL', 'Poland'), +('81.161.208.0', '81.161.223.255', 1369559040, 1369563135, 'RU', 'Russian Federation'), +('81.161.224.0', '81.161.239.255', 1369563136, 1369567231, 'PL', 'Poland'), +('81.161.240.0', '81.161.255.255', 1369567232, 1369571327, 'BG', 'Bulgaria'), +('81.162.0.0', '81.162.255.255', 1369571328, 1369636863, 'SE', 'Sweden'), +('81.164.0.0', '81.165.255.255', 1369702400, 1369833471, 'BE', 'Belgium'), +('81.166.0.0', '81.167.255.255', 1369833472, 1369964543, 'NO', 'Norway'), +('81.168.0.0', '81.168.127.255', 1369964544, 1369997311, 'GB', 'United Kingdom'), +('81.168.128.0', '81.168.255.255', 1369997312, 1370030079, 'PL', 'Poland'), +('81.169.0.0', '81.169.127.255', 1370030080, 1370062847, 'BE', 'Belgium'), +('81.169.128.0', '81.169.199.255', 1370062848, 1370081279, 'DE', 'Germany'), +('81.169.200.0', '81.169.239.255', 1370081280, 1370091519, 'EU', 'Europe'), +('81.169.240.0', '81.169.255.255', 1370091520, 1370095615, 'DE', 'Germany'), +('81.170.0.0', '81.170.127.255', 1370095616, 1370128383, 'GB', 'United Kingdom'), +('81.170.128.0', '81.170.255.255', 1370128384, 1370161151, 'SE', 'Sweden'), +('81.171.0.0', '81.171.103.255', 1370161152, 1370187775, 'NL', 'Netherlands'), +('81.171.104.0', '81.171.104.255', 1370187776, 1370188031, 'GR', 'Greece'), +('81.171.105.0', '81.171.127.255', 1370188032, 1370193919, 'NL', 'Netherlands'), +('81.171.128.0', '81.171.255.255', 1370193920, 1370226687, 'GB', 'United Kingdom'), +('81.172.0.0', '81.172.127.255', 1370226688, 1370259455, 'ES', 'Spain'), +('81.172.128.0', '81.172.255.255', 1370259456, 1370292223, 'SE', 'Sweden'), +('81.173.0.0', '81.173.29.255', 1370292224, 1370299903, 'NL', 'Netherlands'), +('81.173.30.0', '81.173.30.255', 1370299904, 1370300159, 'US', 'United States'), +('81.173.31.0', '81.173.127.255', 1370300160, 1370324991, 'NL', 'Netherlands'), +('81.173.128.0', '81.173.255.255', 1370324992, 1370357759, 'DE', 'Germany'), +('81.174.0.0', '81.174.127.255', 1370357760, 1370390527, 'IT', 'Italy'), +('81.174.128.0', '81.174.255.255', 1370390528, 1370423295, 'GB', 'United Kingdom'), +('81.175.0.0', '81.175.63.255', 1370423296, 1370439679, 'NO', 'Norway'), +('81.175.64.0', '81.175.127.255', 1370439680, 1370456063, 'NL', 'Netherlands'), +('81.175.128.0', '81.175.255.255', 1370456064, 1370488831, 'FI', 'Finland'), +('81.176.0.0', '81.176.66.127', 1370488832, 1370505855, 'RU', 'Russian Federation'), +('81.176.66.128', '81.176.66.143', 1370505856, 1370505871, 'CY', 'Cyprus'), +('81.176.66.144', '81.176.78.95', 1370505872, 1370508895, 'RU', 'Russian Federation'), +('81.176.78.96', '81.176.78.111', 1370508896, 1370508911, 'CY', 'Cyprus'), +('81.176.78.112', '81.177.5.239', 1370508912, 1370555887, 'RU', 'Russian Federation'), +('81.177.5.240', '81.177.5.255', 1370555888, 1370555903, 'CY', 'Cyprus'), +('81.177.6.0', '81.177.37.127', 1370555904, 1370563967, 'RU', 'Russian Federation'), +('81.177.37.128', '81.177.37.191', 1370563968, 1370564031, 'US', 'United States'), +('81.177.37.192', '81.177.255.255', 1370564032, 1370619903, 'RU', 'Russian Federation'), +('81.178.0.0', '81.179.255.255', 1370619904, 1370750975, 'GB', 'United Kingdom'), +('81.180.0.0', '81.180.63.255', 1370750976, 1370767359, 'RO', 'Romania'), +('81.180.64.0', '81.180.79.255', 1370767360, 1370771455, 'MD', 'Moldova, Republic of'), +('81.180.80.0', '81.180.83.255', 1370771456, 1370772479, 'RO', 'Romania'), +('81.180.84.0', '81.180.85.255', 1370772480, 1370772991, 'MD', 'Moldova, Republic of'), +('81.180.86.0', '81.181.255.255', 1370772992, 1370882047, 'RO', 'Romania'), +('81.182.0.0', '81.183.255.255', 1370882048, 1371013119, 'HU', 'Hungary'), +('81.184.0.0', '81.184.255.255', 1371013120, 1371078655, 'ES', 'Spain'), +('81.185.0.0', '81.185.255.255', 1371078656, 1371144191, 'FR', 'France'), +('81.186.0.0', '81.186.223.255', 1371144192, 1371201535, 'GR', 'Greece'), +('81.186.224.0', '81.186.239.255', 1371201536, 1371205631, 'PL', 'Poland'), +('81.186.240.0', '81.186.255.255', 1371205632, 1371209727, 'SE', 'Sweden'), +('81.187.0.0', '81.187.255.255', 1371209728, 1371275263, 'GB', 'United Kingdom'), +('81.188.0.0', '81.188.255.255', 1371275264, 1371340799, 'BE', 'Belgium'), +('81.189.0.0', '81.189.132.148', 1371340800, 1371374740, 'AT', 'Austria'), +('81.189.132.149', '81.189.132.149', 1371374741, 1371374741, 'SK', 'Slovakia'), +('81.189.132.150', '81.189.255.255', 1371374742, 1371406335, 'AT', 'Austria'), +('81.190.0.0', '81.190.255.255', 1371406336, 1371471871, 'PL', 'Poland'), +('81.191.0.0', '81.191.255.255', 1371471872, 1371537407, 'NO', 'Norway'), +('81.192.0.0', '81.192.255.255', 1371537408, 1371602943, 'MA', 'Morocco'), +('81.193.0.0', '81.193.255.255', 1371602944, 1371668479, 'PT', 'Portugal'), +('81.194.0.0', '81.194.255.255', 1371668480, 1371734015, 'FR', 'France'), +('81.195.0.0', '81.195.255.255', 1371734016, 1371799551, 'RU', 'Russian Federation'), +('81.196.0.0', '81.196.255.255', 1371799552, 1371865087, 'RO', 'Romania'), +('81.197.0.0', '81.197.255.255', 1371865088, 1371930623, 'FI', 'Finland'), +('81.198.0.0', '81.198.255.255', 1371930624, 1371996159, 'LV', 'Latvia'), +('81.199.0.0', '81.199.3.255', 1371996160, 1371997183, 'A2', 'Satellite Provider'), +('81.199.4.0', '81.199.4.255', 1371997184, 1371997439, 'KE', 'Kenya'), +('81.199.5.0', '81.199.7.255', 1371997440, 1371998207, 'NG', 'Nigeria'), +('81.199.8.0', '81.199.8.255', 1371998208, 1371998463, 'CD', 'Congo, The Democratic Republic of the'), +('81.199.9.0', '81.199.9.255', 1371998464, 1371998719, 'NG', 'Nigeria'), +('81.199.10.0', '81.199.11.255', 1371998720, 1371999231, 'A2', 'Satellite Provider'), +('81.199.12.0', '81.199.15.255', 1371999232, 1372000255, 'CM', 'Cameroon'), +('81.199.16.0', '81.199.31.255', 1372000256, 1372004351, 'UG', 'Uganda'), +('81.199.32.0', '81.199.32.255', 1372004352, 1372004607, 'TZ', 'Tanzania, United Republic of'), +('81.199.33.0', '81.199.39.255', 1372004608, 1372006399, 'A2', 'Satellite Provider'), +('81.199.40.0', '81.199.40.7', 1372006400, 1372006407, 'NG', 'Nigeria'), +('81.199.40.8', '81.199.40.63', 1372006408, 1372006463, 'A2', 'Satellite Provider'), +('81.199.40.64', '81.199.40.95', 1372006464, 1372006495, 'NG', 'Nigeria'), +('81.199.40.96', '81.199.42.127', 1372006496, 1372007039, 'A2', 'Satellite Provider'), +('81.199.42.128', '81.199.44.31', 1372007040, 1372007455, 'NG', 'Nigeria'), +('81.199.44.32', '81.199.44.255', 1372007456, 1372007679, 'A2', 'Satellite Provider'), +('81.199.45.0', '81.199.45.255', 1372007680, 1372007935, 'NG', 'Nigeria'), +('81.199.46.0', '81.199.46.159', 1372007936, 1372008095, 'A2', 'Satellite Provider'), +('81.199.46.160', '81.199.46.255', 1372008096, 1372008191, 'NG', 'Nigeria'), +('81.199.47.0', '81.199.54.255', 1372008192, 1372010239, 'A2', 'Satellite Provider'), +('81.199.55.0', '81.199.55.32', 1372010240, 1372010272, 'NG', 'Nigeria'), +('81.199.55.33', '81.199.56.255', 1372010273, 1372010751, 'A2', 'Satellite Provider'), +('81.199.57.0', '81.199.57.215', 1372010752, 1372010967, 'NG', 'Nigeria'), +('81.199.57.216', '81.199.57.255', 1372010968, 1372011007, 'TZ', 'Tanzania, United Republic of'), +('81.199.58.0', '81.199.63.255', 1372011008, 1372012543, 'A2', 'Satellite Provider'), +('81.199.64.0', '81.199.71.255', 1372012544, 1372014591, 'ZM', 'Zambia'), +('81.199.72.0', '81.199.75.255', 1372014592, 1372015615, 'A2', 'Satellite Provider'), +('81.199.76.0', '81.199.76.255', 1372015616, 1372015871, 'NG', 'Nigeria'), +('81.199.77.0', '81.199.79.255', 1372015872, 1372016639, 'GH', 'Ghana'), +('81.199.80.0', '81.199.80.191', 1372016640, 1372016831, 'BW', 'Botswana'), +('81.199.80.192', '81.199.80.207', 1372016832, 1372016847, 'BJ', 'Benin'), +('81.199.80.208', '81.199.80.255', 1372016848, 1372016895, 'BW', 'Botswana'), +('81.199.81.0', '81.199.82.255', 1372016896, 1372017407, 'A2', 'Satellite Provider'), +('81.199.83.0', '81.199.83.255', 1372017408, 1372017663, 'TZ', 'Tanzania, United Republic of'), +('81.199.84.0', '81.199.89.255', 1372017664, 1372019199, 'A2', 'Satellite Provider'), +('81.199.90.0', '81.199.90.255', 1372019200, 1372019455, 'GA', 'Gabon'), +('81.199.91.0', '81.199.95.255', 1372019456, 1372020735, 'A2', 'Satellite Provider'), +('81.199.96.0', '81.199.103.255', 1372020736, 1372022783, 'ZM', 'Zambia'), +('81.199.104.0', '81.199.107.255', 1372022784, 1372023807, 'A2', 'Satellite Provider'), +('81.199.108.0', '81.199.111.255', 1372023808, 1372024831, 'NG', 'Nigeria'), +('81.199.112.0', '81.199.112.255', 1372024832, 1372025087, 'IL', 'Israel'), +('81.199.113.0', '81.199.113.255', 1372025088, 1372025343, 'A2', 'Satellite Provider'), +('81.199.114.0', '81.199.114.255', 1372025344, 1372025599, 'CD', 'Congo, The Democratic Republic of the'), +('81.199.115.0', '81.199.115.63', 1372025600, 1372025663, 'A2', 'Satellite Provider'), +('81.199.115.64', '81.199.115.95', 1372025664, 1372025695, 'KE', 'Kenya'), +('81.199.115.96', '81.199.115.127', 1372025696, 1372025727, 'TZ', 'Tanzania, United Republic of'), +('81.199.115.128', '81.199.115.255', 1372025728, 1372025855, 'A2', 'Satellite Provider'), +('81.199.116.0', '81.199.117.255', 1372025856, 1372026367, 'IL', 'Israel'), +('81.199.118.0', '81.199.119.255', 1372026368, 1372026879, 'A2', 'Satellite Provider'), +('81.199.120.0', '81.199.123.255', 1372026880, 1372027903, 'IL', 'Israel'), +('81.199.124.0', '81.199.129.255', 1372027904, 1372029439, 'A2', 'Satellite Provider'), +('81.199.130.0', '81.199.130.255', 1372029440, 1372029695, 'NG', 'Nigeria'), +('81.199.131.0', '81.199.131.255', 1372029696, 1372029951, 'NE', 'Niger'), +('81.199.132.0', '81.199.139.255', 1372029952, 1372031999, 'A2', 'Satellite Provider'), +('81.199.140.0', '81.199.140.255', 1372032000, 1372032255, 'CM', 'Cameroon'), +('81.199.141.0', '81.199.162.255', 1372032256, 1372037887, 'A2', 'Satellite Provider'), +('81.199.163.0', '81.199.163.255', 1372037888, 1372038143, 'NG', 'Nigeria'), +('81.199.164.0', '81.199.164.255', 1372038144, 1372038399, 'KE', 'Kenya'), +('81.199.165.0', '81.199.167.255', 1372038400, 1372039167, 'A2', 'Satellite Provider'), +('81.199.168.0', '81.199.171.255', 1372039168, 1372040191, 'CD', 'Congo, The Democratic Republic of the'), +('81.199.172.0', '81.199.173.255', 1372040192, 1372040703, 'A2', 'Satellite Provider'), +('81.199.174.0', '81.199.175.255', 1372040704, 1372041215, 'CD', 'Congo, The Democratic Republic of the'), +('81.199.176.0', '81.199.176.127', 1372041216, 1372041343, 'A2', 'Satellite Provider'), +('81.199.176.128', '81.199.176.255', 1372041344, 1372041471, 'NG', 'Nigeria'), +('81.199.177.0', '81.199.184.255', 1372041472, 1372043519, 'A2', 'Satellite Provider'), +('81.199.185.0', '81.199.185.255', 1372043520, 1372043775, 'NG', 'Nigeria'), +('81.199.186.0', '81.199.188.127', 1372043776, 1372044415, 'A2', 'Satellite Provider'), +('81.199.188.128', '81.199.188.159', 1372044416, 1372044447, 'NG', 'Nigeria'), +('81.199.188.160', '81.199.189.255', 1372044448, 1372044799, 'A2', 'Satellite Provider'), +('81.199.190.0', '81.199.190.63', 1372044800, 1372044863, 'CM', 'Cameroon'), +('81.199.190.64', '81.199.190.127', 1372044864, 1372044927, 'NG', 'Nigeria'), +('81.199.190.128', '81.199.190.255', 1372044928, 1372045055, 'A2', 'Satellite Provider'), +('81.199.191.0', '81.199.191.31', 1372045056, 1372045087, 'CM', 'Cameroon'), +('81.199.191.32', '81.199.191.63', 1372045088, 1372045119, 'A2', 'Satellite Provider'), +('81.199.191.64', '81.199.191.95', 1372045120, 1372045151, 'NG', 'Nigeria'), +('81.199.191.96', '81.199.191.159', 1372045152, 1372045215, 'A2', 'Satellite Provider'), +('81.199.191.160', '81.199.191.191', 1372045216, 1372045247, 'NG', 'Nigeria'), +('81.199.191.192', '81.199.192.255', 1372045248, 1372045567, 'A2', 'Satellite Provider'), +('81.199.193.0', '81.199.194.63', 1372045568, 1372045887, 'NG', 'Nigeria'), +('81.199.194.64', '81.199.196.223', 1372045888, 1372046559, 'A2', 'Satellite Provider'), +('81.199.196.224', '81.199.196.255', 1372046560, 1372046591, 'NG', 'Nigeria'), +('81.199.197.0', '81.199.199.127', 1372046592, 1372047231, 'A2', 'Satellite Provider'), +('81.199.199.128', '81.199.199.191', 1372047232, 1372047295, 'NG', 'Nigeria'), +('81.199.199.192', '81.199.199.255', 1372047296, 1372047359, 'A2', 'Satellite Provider'), +('81.199.200.0', '81.199.200.255', 1372047360, 1372047615, 'CM', 'Cameroon'), +('81.199.201.0', '81.199.208.255', 1372047616, 1372049663, 'A2', 'Satellite Provider'), +('81.199.209.0', '81.199.210.255', 1372049664, 1372050175, 'NG', 'Nigeria'), +('81.199.211.0', '81.199.243.255', 1372050176, 1372058623, 'A2', 'Satellite Provider'), +('81.199.244.0', '81.199.244.255', 1372058624, 1372058879, 'NG', 'Nigeria'), +('81.199.245.0', '81.199.249.255', 1372058880, 1372060159, 'A2', 'Satellite Provider'), +('81.199.250.0', '81.199.255.255', 1372060160, 1372061695, 'IL', 'Israel'), +('81.200.0.0', '81.200.31.255', 1372061696, 1372069887, 'RU', 'Russian Federation'), +('81.200.32.0', '81.200.47.255', 1372069888, 1372073983, 'FR', 'France'), +('81.200.48.0', '81.200.63.255', 1372073984, 1372078079, 'CZ', 'Czech Republic'), +('81.200.64.0', '81.200.79.255', 1372078080, 1372082175, 'GB', 'United Kingdom'), +('81.200.80.0', '81.200.95.255', 1372082176, 1372086271, 'RU', 'Russian Federation'), +('81.200.96.0', '81.200.111.255', 1372086272, 1372090367, 'DE', 'Germany'), +('81.200.112.0', '81.200.127.255', 1372090368, 1372094463, 'RU', 'Russian Federation'), +('81.200.128.0', '81.200.143.255', 1372094464, 1372098559, 'IT', 'Italy'), +('81.200.144.0', '81.200.159.255', 1372098560, 1372102655, 'RU', 'Russian Federation'), +('81.200.160.0', '81.200.175.255', 1372102656, 1372106751, 'SE', 'Sweden'), +('81.200.176.0', '81.200.190.255', 1372106752, 1372110591, 'FR', 'France'), +('81.200.191.0', '81.200.191.31', 1372110592, 1372110623, 'GB', 'United Kingdom'), +('81.200.191.32', '81.200.191.63', 1372110624, 1372110655, 'DE', 'Germany'), +('81.200.191.64', '81.200.191.95', 1372110656, 1372110687, 'IT', 'Italy'), +('81.200.191.96', '81.200.191.127', 1372110688, 1372110719, 'ES', 'Spain'), +('81.200.191.128', '81.200.191.159', 1372110720, 1372110751, 'FR', 'France'), +('81.200.191.160', '81.200.191.191', 1372110752, 1372110783, 'NL', 'Netherlands'), +('81.200.191.192', '81.200.191.255', 1372110784, 1372110847, 'FR', 'France'), +('81.200.192.0', '81.200.207.255', 1372110848, 1372114943, 'DE', 'Germany'), +('81.200.208.0', '81.200.223.255', 1372114944, 1372119039, 'RU', 'Russian Federation'), +('81.200.224.0', '81.200.239.255', 1372119040, 1372123135, 'IT', 'Italy'), +('81.200.240.0', '81.200.255.255', 1372123136, 1372127231, 'RU', 'Russian Federation'), +('81.201.0.0', '81.201.15.255', 1372127232, 1372131327, 'IT', 'Italy'), +('81.201.16.0', '81.201.31.255', 1372131328, 1372135423, 'RU', 'Russian Federation'), +('81.201.32.0', '81.201.43.15', 1372135424, 1372138255, 'DE', 'Germany'), +('81.201.43.16', '81.201.43.23', 1372138256, 1372138263, 'GB', 'United Kingdom'), +('81.201.43.24', '81.201.47.255', 1372138264, 1372139519, 'DE', 'Germany'), +('81.201.48.0', '81.201.63.255', 1372139520, 1372143615, 'CZ', 'Czech Republic'), +('81.201.64.0', '81.201.79.255', 1372143616, 1372147711, 'RU', 'Russian Federation'), +('81.201.80.0', '81.201.95.255', 1372147712, 1372151807, 'BE', 'Belgium'), +('81.201.96.0', '81.201.99.247', 1372151808, 1372152823, 'DE', 'Germany'), +('81.201.99.248', '81.201.99.255', 1372152824, 1372152831, 'GB', 'United Kingdom'), +('81.201.100.0', '81.201.127.255', 1372152832, 1372159999, 'DE', 'Germany'), +('81.201.128.0', '81.201.143.255', 1372160000, 1372164095, 'GB', 'United Kingdom'), +('81.201.144.0', '81.201.159.255', 1372164096, 1372168191, 'DE', 'Germany'), +('81.201.160.0', '81.201.175.255', 1372168192, 1372172287, 'GB', 'United Kingdom'), +('81.201.176.0', '81.201.191.255', 1372172288, 1372176383, 'FR', 'France'), +('81.201.192.0', '81.201.207.255', 1372176384, 1372180479, 'CH', 'Switzerland'), +('81.201.208.0', '81.201.221.191', 1372180480, 1372183999, 'SE', 'Sweden'), +('81.201.221.192', '81.201.221.255', 1372184000, 1372184063, 'ES', 'Spain'), +('81.201.222.0', '81.201.222.7', 1372184064, 1372184071, 'SE', 'Sweden'), +('81.201.222.8', '81.201.222.15', 1372184072, 1372184079, 'ES', 'Spain'), +('81.201.222.16', '81.201.223.255', 1372184080, 1372184575, 'SE', 'Sweden'), +('81.201.224.0', '81.201.239.255', 1372184576, 1372188671, 'DE', 'Germany'), +('81.201.240.0', '81.201.255.255', 1372188672, 1372192767, 'RU', 'Russian Federation'), +('81.202.0.0', '81.203.255.255', 1372192768, 1372323839, 'ES', 'Spain'), +('81.204.0.0', '81.207.255.255', 1372323840, 1372585983, 'NL', 'Netherlands'), +('81.208.0.0', '81.208.0.255', 1372585984, 1372586239, 'A2', 'Satellite Provider'), +('81.208.1.0', '81.208.13.255', 1372586240, 1372589567, 'IT', 'Italy'), +('81.208.14.0', '81.208.14.255', 1372589568, 1372589823, 'A2', 'Satellite Provider'), +('81.208.15.0', '81.208.127.255', 1372589824, 1372618751, 'IT', 'Italy'), +('81.208.128.0', '81.208.255.255', 1372618752, 1372651519, 'GB', 'United Kingdom'), +('81.209.0.0', '81.209.127.255', 1372651520, 1372684287, 'FI', 'Finland'), +('81.209.128.0', '81.209.128.127', 1372684288, 1372684415, 'DE', 'Germany'), +('81.209.128.128', '81.209.128.255', 1372684416, 1372684543, 'EU', 'Europe'), +('81.209.129.0', '81.209.133.63', 1372684544, 1372685631, 'DE', 'Germany'), +('81.209.133.64', '81.209.133.87', 1372685632, 1372685655, 'EU', 'Europe'), +('81.209.133.88', '81.209.133.95', 1372685656, 1372685663, 'DE', 'Germany'), +('81.209.133.96', '81.209.133.127', 1372685664, 1372685695, 'EU', 'Europe'), +('81.209.133.128', '81.209.133.255', 1372685696, 1372685823, 'DE', 'Germany'), +('81.209.134.0', '81.209.134.63', 1372685824, 1372685887, 'EU', 'Europe'), +('81.209.134.64', '81.209.135.255', 1372685888, 1372686335, 'DE', 'Germany'), +('81.209.136.0', '81.209.139.255', 1372686336, 1372687359, 'EU', 'Europe'), +('81.209.140.0', '81.209.141.95', 1372687360, 1372687711, 'DE', 'Germany'), +('81.209.141.96', '81.209.141.103', 1372687712, 1372687719, 'EU', 'Europe'), +('81.209.141.104', '81.209.141.111', 1372687720, 1372687727, 'DE', 'Germany'), +('81.209.141.112', '81.209.141.119', 1372687728, 1372687735, 'EU', 'Europe'), +('81.209.141.120', '81.209.143.71', 1372687736, 1372688199, 'DE', 'Germany'), +('81.209.143.72', '81.209.143.95', 1372688200, 1372688223, 'EU', 'Europe'), +('81.209.143.96', '81.209.149.159', 1372688224, 1372689823, 'DE', 'Germany'), +('81.209.149.160', '81.209.149.255', 1372689824, 1372689919, 'EU', 'Europe'), +('81.209.150.0', '81.209.155.255', 1372689920, 1372691455, 'DE', 'Germany'), +('81.209.156.0', '81.209.156.255', 1372691456, 1372691711, 'US', 'United States'), +('81.209.157.0', '81.209.157.255', 1372691712, 1372691967, 'EU', 'Europe'), +('81.209.158.0', '81.209.166.255', 1372691968, 1372694271, 'DE', 'Germany'), +('81.209.167.0', '81.209.168.31', 1372694272, 1372694559, 'EU', 'Europe'), +('81.209.168.32', '81.209.168.63', 1372694560, 1372694591, 'DE', 'Germany'), +('81.209.168.64', '81.209.168.95', 1372694592, 1372694623, 'EU', 'Europe'), +('81.209.168.96', '81.209.168.127', 1372694624, 1372694655, 'DE', 'Germany'), +('81.209.168.128', '81.209.168.255', 1372694656, 1372694783, 'EU', 'Europe'), +('81.209.169.0', '81.209.169.31', 1372694784, 1372694815, 'DE', 'Germany'), +('81.209.169.32', '81.209.169.47', 1372694816, 1372694831, 'EU', 'Europe'), +('81.209.169.48', '81.209.169.255', 1372694832, 1372695039, 'DE', 'Germany'), +('81.209.170.0', '81.209.170.127', 1372695040, 1372695167, 'EU', 'Europe'), +('81.209.170.128', '81.209.170.255', 1372695168, 1372695295, 'DE', 'Germany'), +('81.209.171.0', '81.209.171.127', 1372695296, 1372695423, 'EU', 'Europe'), +('81.209.171.128', '81.209.171.255', 1372695424, 1372695551, 'DE', 'Germany'), +('81.209.172.0', '81.209.172.255', 1372695552, 1372695807, 'CZ', 'Czech Republic'), +('81.209.173.0', '81.209.173.199', 1372695808, 1372696007, 'DK', 'Denmark'), +('81.209.173.200', '81.209.173.255', 1372696008, 1372696063, 'EU', 'Europe'), +('81.209.174.0', '81.209.175.255', 1372696064, 1372696575, 'DE', 'Germany'), +('81.209.176.0', '81.209.176.255', 1372696576, 1372696831, 'EU', 'Europe'), +('81.209.177.0', '81.209.178.127', 1372696832, 1372697215, 'DE', 'Germany'), +('81.209.178.128', '81.209.178.143', 1372697216, 1372697231, 'EU', 'Europe'), +('81.209.178.144', '81.209.178.151', 1372697232, 1372697239, 'DE', 'Germany'), +('81.209.178.152', '81.209.178.159', 1372697240, 1372697247, 'EU', 'Europe'), +('81.209.178.160', '81.209.178.191', 1372697248, 1372697279, 'DE', 'Germany'), +('81.209.178.192', '81.209.178.255', 1372697280, 1372697343, 'EU', 'Europe'), +('81.209.179.0', '81.209.183.103', 1372697344, 1372698471, 'DE', 'Germany'), +('81.209.183.104', '81.209.183.191', 1372698472, 1372698559, 'EU', 'Europe'), +('81.209.183.192', '81.209.189.255', 1372698560, 1372700159, 'DE', 'Germany'), +('81.209.190.0', '81.209.190.255', 1372700160, 1372700415, 'SE', 'Sweden'), +('81.209.191.0', '81.209.191.255', 1372700416, 1372700671, 'EU', 'Europe'), +('81.209.192.0', '81.209.198.255', 1372700672, 1372702463, 'DE', 'Germany'), +('81.209.199.0', '81.209.199.255', 1372702464, 1372702719, 'EU', 'Europe'), +('81.209.200.0', '81.209.200.15', 1372702720, 1372702735, 'DE', 'Germany'), +('81.209.200.16', '81.209.200.31', 1372702736, 1372702751, 'EU', 'Europe'), +('81.209.200.32', '81.209.201.15', 1372702752, 1372702991, 'DE', 'Germany'), +('81.209.201.16', '81.209.201.255', 1372702992, 1372703231, 'EU', 'Europe'), +('81.209.202.0', '81.209.202.31', 1372703232, 1372703263, 'DE', 'Germany'), +('81.209.202.32', '81.209.202.39', 1372703264, 1372703271, 'EU', 'Europe'), +('81.209.202.40', '81.209.202.91', 1372703272, 1372703323, 'DE', 'Germany'), +('81.209.202.92', '81.209.202.95', 1372703324, 1372703327, 'EU', 'Europe'), +('81.209.202.96', '81.209.202.175', 1372703328, 1372703407, 'DE', 'Germany'), +('81.209.202.176', '81.209.202.191', 1372703408, 1372703423, 'EU', 'Europe'), +('81.209.202.192', '81.209.241.111', 1372703424, 1372713327, 'DE', 'Germany'), +('81.209.241.112', '81.209.241.127', 1372713328, 1372713343, 'EU', 'Europe'), +('81.209.241.128', '81.209.241.159', 1372713344, 1372713375, 'DE', 'Germany'), +('81.209.241.160', '81.209.241.255', 1372713376, 1372713471, 'EU', 'Europe'), +('81.209.242.0', '81.209.244.255', 1372713472, 1372714239, 'DE', 'Germany'), +('81.209.245.0', '81.209.245.255', 1372714240, 1372714495, 'EU', 'Europe'), +('81.209.246.0', '81.209.255.255', 1372714496, 1372717055, 'DE', 'Germany'), +('81.210.0.0', '81.210.127.255', 1372717056, 1372749823, 'PL', 'Poland'), +('81.210.128.0', '81.210.255.255', 1372749824, 1372782591, 'DE', 'Germany'), +('81.211.0.0', '81.211.127.255', 1372782592, 1372815359, 'RU', 'Russian Federation'), +('81.211.128.0', '81.211.255.255', 1372815360, 1372848127, 'IT', 'Italy'), +('81.212.0.0', '81.215.255.255', 1372848128, 1373110271, 'TR', 'Turkey'), +('81.216.0.0', '81.216.255.255', 1373110272, 1373175807, 'SE', 'Sweden'), +('81.217.0.0', '81.217.255.255', 1373175808, 1373241343, 'AT', 'Austria'), +('81.218.0.0', '81.218.255.255', 1373241344, 1373306879, 'IL', 'Israel'), +('81.219.0.0', '81.219.255.255', 1373306880, 1373372415, 'PL', 'Poland'), +('81.220.0.0', '81.220.255.255', 1373372416, 1373437951, 'FR', 'France'), +('81.221.0.0', '81.221.255.255', 1373437952, 1373503487, 'CH', 'Switzerland'), +('81.222.0.0', '81.222.63.255', 1373503488, 1373519871, 'RU', 'Russian Federation'), +('81.222.64.0', '81.222.67.255', 1373519872, 1373520895, 'GB', 'United Kingdom'), +('81.222.68.0', '81.222.255.255', 1373520896, 1373569023, 'RU', 'Russian Federation'), +('81.223.0.0', '81.223.255.255', 1373569024, 1373634559, 'AT', 'Austria'), +('81.224.0.0', '81.239.255.255', 1373634560, 1374683135, 'SE', 'Sweden'), +('81.240.0.0', '81.247.255.255', 1374683136, 1375207423, 'BE', 'Belgium'), +('81.248.0.0', '81.255.255.255', 1375207424, 1375731711, 'FR', 'France'), +('82.0.0.0', '82.1.4.63', 1375731712, 1375798335, 'GB', 'United Kingdom'), +('82.1.4.64', '82.1.4.79', 1375798336, 1375798351, 'IE', 'Ireland'), +('82.1.4.80', '82.1.215.255', 1375798352, 1375852543, 'GB', 'United Kingdom'), +('82.1.216.0', '82.1.216.255', 1375852544, 1375852799, 'IE', 'Ireland'), +('82.1.217.0', '82.47.255.255', 1375852800, 1378877439, 'GB', 'United Kingdom'), +('82.48.0.0', '82.63.255.255', 1378877440, 1379926015, 'IT', 'Italy'), +('82.64.0.0', '82.67.255.255', 1379926016, 1380188159, 'FR', 'France'), +('82.68.0.0', '82.71.255.255', 1380188160, 1380450303, 'GB', 'United Kingdom'), +('82.72.0.0', '82.75.255.255', 1380450304, 1380712447, 'NL', 'Netherlands'), +('82.76.0.0', '82.78.235.255', 1380712448, 1380903935, 'RO', 'Romania'), +('82.78.236.0', '82.78.237.255', 1380903936, 1380904447, 'SK', 'Slovakia'), +('82.78.238.0', '82.79.255.255', 1380904448, 1380974591, 'RO', 'Romania'), +('82.80.0.0', '82.80.241.183', 1380974592, 1381036471, 'IL', 'Israel'), +('82.80.241.184', '82.80.241.191', 1381036472, 1381036479, 'A2', 'Satellite Provider'), +('82.80.241.192', '82.81.255.255', 1381036480, 1381105663, 'IL', 'Israel'), +('82.82.0.0', '82.83.255.255', 1381105664, 1381236735, 'DE', 'Germany'), +('82.84.0.0', '82.85.255.255', 1381236736, 1381367807, 'IT', 'Italy'), +('82.86.0.0', '82.87.255.255', 1381367808, 1381498879, 'ES', 'Spain'), +('82.88.0.0', '82.91.255.255', 1381498880, 1381761023, 'IT', 'Italy'), +('82.92.0.0', '82.95.255.255', 1381761024, 1382023167, 'NL', 'Netherlands'), +('82.96.0.0', '82.96.6.255', 1382023168, 1382024959, 'SE', 'Sweden'), +('82.96.7.0', '82.96.7.255', 1382024960, 1382025215, 'DK', 'Denmark'), +('82.96.8.0', '82.96.40.175', 1382025216, 1382033583, 'SE', 'Sweden'), +('82.96.40.176', '82.96.40.191', 1382033584, 1382033599, 'NL', 'Netherlands'), +('82.96.40.192', '82.96.47.159', 1382033600, 1382035359, 'SE', 'Sweden'), +('82.96.47.160', '82.96.47.175', 1382035360, 1382035375, 'NO', 'Norway'), +('82.96.47.176', '82.96.61.223', 1382035376, 1382039007, 'SE', 'Sweden'), +('82.96.61.224', '82.96.61.239', 1382039008, 1382039023, 'FR', 'France'), +('82.96.61.240', '82.96.62.15', 1382039024, 1382039055, 'SE', 'Sweden'), +('82.96.62.16', '82.96.62.31', 1382039056, 1382039071, 'DE', 'Germany'), +('82.96.62.32', '82.96.62.135', 1382039072, 1382039175, 'SE', 'Sweden'), +('82.96.62.136', '82.96.62.151', 1382039176, 1382039191, 'GB', 'United Kingdom'), +('82.96.62.152', '82.96.63.255', 1382039192, 1382039551, 'SE', 'Sweden'), +('82.96.64.0', '82.96.127.255', 1382039552, 1382055935, 'DE', 'Germany'), +('82.96.128.0', '82.96.191.255', 1382055936, 1382072319, 'FR', 'France'), +('82.96.192.0', '82.96.255.255', 1382072320, 1382088703, 'RU', 'Russian Federation'), +('82.97.0.0', '82.97.10.47', 1382088704, 1382091311, 'FR', 'France'), +('82.97.10.48', '82.97.10.63', 1382091312, 1382091327, 'MC', 'Monaco'), +('82.97.10.64', '82.97.10.111', 1382091328, 1382091375, 'FR', 'France'), +('82.97.10.112', '82.97.10.127', 1382091376, 1382091391, 'MC', 'Monaco'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('82.97.10.128', '82.97.11.255', 1382091392, 1382091775, 'FR', 'France'), +('82.97.12.0', '82.97.12.255', 1382091776, 1382092031, 'MC', 'Monaco'), +('82.97.13.0', '82.97.14.79', 1382092032, 1382092367, 'FR', 'France'), +('82.97.14.80', '82.97.14.111', 1382092368, 1382092399, 'MC', 'Monaco'), +('82.97.14.112', '82.97.16.15', 1382092400, 1382092815, 'FR', 'France'), +('82.97.16.16', '82.97.16.31', 1382092816, 1382092831, 'MC', 'Monaco'), +('82.97.16.32', '82.97.16.255', 1382092832, 1382093055, 'FR', 'France'), +('82.97.17.0', '82.97.17.31', 1382093056, 1382093087, 'GB', 'United Kingdom'), +('82.97.17.32', '82.97.63.255', 1382093088, 1382105087, 'FR', 'France'), +('82.97.64.0', '82.97.191.255', 1382105088, 1382137855, 'DE', 'Germany'), +('82.97.192.0', '82.97.255.255', 1382137856, 1382154239, 'RU', 'Russian Federation'), +('82.98.0.0', '82.98.63.255', 1382154240, 1382170623, 'FR', 'France'), +('82.98.64.0', '82.98.68.128', 1382170624, 1382171776, 'DE', 'Germany'), +('82.98.68.129', '82.98.68.143', 1382171777, 1382171791, 'CH', 'Switzerland'), +('82.98.68.144', '82.98.97.175', 1382171792, 1382179247, 'DE', 'Germany'), +('82.98.97.176', '82.98.97.207', 1382179248, 1382179279, 'GB', 'United Kingdom'), +('82.98.97.208', '82.98.127.255', 1382179280, 1382187007, 'DE', 'Germany'), +('82.98.128.0', '82.98.191.255', 1382187008, 1382203391, 'ES', 'Spain'), +('82.98.192.0', '82.98.196.63', 1382203392, 1382204479, 'NL', 'Netherlands'), +('82.98.196.64', '82.98.222.255', 1382204480, 1382211327, 'DE', 'Germany'), +('82.98.223.0', '82.98.223.255', 1382211328, 1382211583, 'NL', 'Netherlands'), +('82.98.224.0', '82.98.224.127', 1382211584, 1382211711, 'FR', 'France'), +('82.98.224.128', '82.98.224.255', 1382211712, 1382211839, 'DE', 'Germany'), +('82.98.225.0', '82.98.225.255', 1382211840, 1382212095, 'FR', 'France'), +('82.98.226.0', '82.98.226.127', 1382212096, 1382212223, 'DE', 'Germany'), +('82.98.226.128', '82.98.226.143', 1382212224, 1382212239, 'FR', 'France'), +('82.98.226.144', '82.98.226.191', 1382212240, 1382212287, 'DE', 'Germany'), +('82.98.226.192', '82.98.226.255', 1382212288, 1382212351, 'NL', 'Netherlands'), +('82.98.227.0', '82.98.227.127', 1382212352, 1382212479, 'FR', 'France'), +('82.98.227.128', '82.98.227.255', 1382212480, 1382212607, 'DE', 'Germany'), +('82.98.228.0', '82.98.228.255', 1382212608, 1382212863, 'FR', 'France'), +('82.98.229.0', '82.98.230.63', 1382212864, 1382213183, 'NL', 'Netherlands'), +('82.98.230.64', '82.98.230.79', 1382213184, 1382213199, 'DE', 'Germany'), +('82.98.230.80', '82.98.233.191', 1382213200, 1382214079, 'NL', 'Netherlands'), +('82.98.233.192', '82.98.233.223', 1382214080, 1382214111, 'DE', 'Germany'), +('82.98.233.224', '82.98.233.255', 1382214112, 1382214143, 'NL', 'Netherlands'), +('82.98.234.0', '82.98.234.127', 1382214144, 1382214271, 'DE', 'Germany'), +('82.98.234.128', '82.98.234.191', 1382214272, 1382214335, 'NL', 'Netherlands'), +('82.98.234.192', '82.98.234.255', 1382214336, 1382214399, 'DE', 'Germany'), +('82.98.235.0', '82.98.236.223', 1382214400, 1382214879, 'NL', 'Netherlands'), +('82.98.236.224', '82.98.236.239', 1382214880, 1382214895, 'DE', 'Germany'), +('82.98.236.240', '82.98.244.127', 1382214896, 1382216831, 'NL', 'Netherlands'), +('82.98.244.128', '82.98.244.191', 1382216832, 1382216895, 'DE', 'Germany'), +('82.98.244.192', '82.98.244.255', 1382216896, 1382216959, 'NL', 'Netherlands'), +('82.98.245.0', '82.98.245.255', 1382216960, 1382217215, 'FR', 'France'), +('82.98.246.0', '82.98.247.255', 1382217216, 1382217727, 'NL', 'Netherlands'), +('82.98.248.0', '82.98.248.255', 1382217728, 1382217983, 'DE', 'Germany'), +('82.98.249.0', '82.98.250.159', 1382217984, 1382218399, 'NL', 'Netherlands'), +('82.98.250.160', '82.98.250.207', 1382218400, 1382218447, 'DE', 'Germany'), +('82.98.250.208', '82.98.250.215', 1382218448, 1382218455, 'NL', 'Netherlands'), +('82.98.250.216', '82.98.250.255', 1382218456, 1382218495, 'DE', 'Germany'), +('82.98.251.0', '82.98.251.127', 1382218496, 1382218623, 'NL', 'Netherlands'), +('82.98.251.128', '82.98.251.255', 1382218624, 1382218751, 'DE', 'Germany'), +('82.98.252.0', '82.98.252.63', 1382218752, 1382218815, 'NL', 'Netherlands'), +('82.98.252.64', '82.98.252.159', 1382218816, 1382218911, 'DE', 'Germany'), +('82.98.252.160', '82.98.252.207', 1382218912, 1382218959, 'NL', 'Netherlands'), +('82.98.252.208', '82.98.252.239', 1382218960, 1382218991, 'DE', 'Germany'), +('82.98.252.240', '82.98.255.255', 1382218992, 1382219775, 'NL', 'Netherlands'), +('82.99.0.0', '82.99.17.159', 1382219776, 1382224287, 'SE', 'Sweden'), +('82.99.17.160', '82.99.17.191', 1382224288, 1382224319, 'NO', 'Norway'), +('82.99.17.192', '82.99.25.95', 1382224320, 1382226271, 'SE', 'Sweden'), +('82.99.25.96', '82.99.25.127', 1382226272, 1382226303, 'NO', 'Norway'), +('82.99.25.128', '82.99.29.127', 1382226304, 1382227327, 'SE', 'Sweden'), +('82.99.29.128', '82.99.29.255', 1382227328, 1382227455, 'NO', 'Norway'), +('82.99.30.0', '82.99.30.127', 1382227456, 1382227583, 'SE', 'Sweden'), +('82.99.30.128', '82.99.30.255', 1382227584, 1382227711, 'DK', 'Denmark'), +('82.99.31.0', '82.99.49.255', 1382227712, 1382232575, 'SE', 'Sweden'), +('82.99.50.0', '82.99.50.63', 1382232576, 1382232639, 'NO', 'Norway'), +('82.99.50.64', '82.99.50.127', 1382232640, 1382232703, 'DK', 'Denmark'), +('82.99.50.128', '82.99.53.63', 1382232704, 1382233407, 'SE', 'Sweden'), +('82.99.53.64', '82.99.53.79', 1382233408, 1382233423, 'GB', 'United Kingdom'), +('82.99.53.80', '82.99.127.255', 1382233424, 1382252543, 'SE', 'Sweden'), +('82.99.128.0', '82.99.191.255', 1382252544, 1382268927, 'CZ', 'Czech Republic'), +('82.99.192.0', '82.99.255.255', 1382268928, 1382285311, 'IR', 'Iran, Islamic Republic of'), +('82.100.0.0', '82.100.62.207', 1382285312, 1382301391, 'CZ', 'Czech Republic'), +('82.100.62.208', '82.100.62.223', 1382301392, 1382301407, 'SK', 'Slovakia'), +('82.100.62.224', '82.100.63.255', 1382301408, 1382301695, 'CZ', 'Czech Republic'), +('82.100.64.0', '82.100.127.255', 1382301696, 1382318079, 'SE', 'Sweden'), +('82.100.128.0', '82.100.191.255', 1382318080, 1382334463, 'RU', 'Russian Federation'), +('82.100.192.0', '82.100.255.255', 1382334464, 1382350847, 'DE', 'Germany'), +('82.101.0.0', '82.101.63.255', 1382350848, 1382367231, 'FR', 'France'), +('82.101.64.0', '82.101.127.255', 1382367232, 1382383615, 'BG', 'Bulgaria'), +('82.101.128.0', '82.101.191.255', 1382383616, 1382399999, 'DZ', 'Algeria'), +('82.101.192.0', '82.101.255.255', 1382400000, 1382416383, 'NL', 'Netherlands'), +('82.102.0.0', '82.102.12.23', 1382416384, 1382419479, 'PT', 'Portugal'), +('82.102.12.24', '82.102.12.31', 1382419480, 1382419487, 'ES', 'Spain'), +('82.102.12.32', '82.102.13.255', 1382419488, 1382419967, 'PT', 'Portugal'), +('82.102.14.0', '82.102.14.31', 1382419968, 1382419999, 'ES', 'Spain'), +('82.102.14.32', '82.102.17.95', 1382420000, 1382420831, 'PT', 'Portugal'), +('82.102.17.96', '82.102.17.127', 1382420832, 1382420863, 'ES', 'Spain'), +('82.102.17.128', '82.102.17.191', 1382420864, 1382420927, 'PT', 'Portugal'), +('82.102.17.192', '82.102.17.255', 1382420928, 1382420991, 'GB', 'United Kingdom'), +('82.102.18.0', '82.102.18.255', 1382420992, 1382421247, 'FR', 'France'), +('82.102.19.0', '82.102.24.255', 1382421248, 1382422783, 'PT', 'Portugal'), +('82.102.25.0', '82.102.25.255', 1382422784, 1382423039, 'ES', 'Spain'), +('82.102.26.0', '82.102.63.255', 1382423040, 1382432767, 'PT', 'Portugal'), +('82.102.64.0', '82.102.127.255', 1382432768, 1382449151, 'CY', 'Cyprus'), +('82.102.128.0', '82.102.191.255', 1382449152, 1382465535, 'IL', 'Israel'), +('82.102.192.0', '82.102.255.255', 1382465536, 1382481919, 'PS', 'Palestinian Territory, Occupied'), +('82.103.0.0', '82.103.63.255', 1382481920, 1382498303, 'AT', 'Austria'), +('82.103.64.0', '82.103.127.255', 1382498304, 1382514687, 'BG', 'Bulgaria'), +('82.103.128.0', '82.103.191.255', 1382514688, 1382531071, 'DK', 'Denmark'), +('82.103.192.0', '82.103.255.255', 1382531072, 1382547455, 'FI', 'Finland'), +('82.104.0.0', '82.107.255.255', 1382547456, 1382809599, 'IT', 'Italy'), +('82.108.0.0', '82.111.75.255', 1382809600, 1383025663, 'GB', 'United Kingdom'), +('82.111.76.0', '82.111.76.8', 1383025664, 1383025672, 'DE', 'Germany'), +('82.111.76.9', '82.111.76.15', 1383025673, 1383025679, 'GB', 'United Kingdom'), +('82.111.76.16', '82.111.76.47', 1383025680, 1383025711, 'DE', 'Germany'), +('82.111.76.48', '82.111.76.63', 1383025712, 1383025727, 'GB', 'United Kingdom'), +('82.111.76.64', '82.111.76.95', 1383025728, 1383025759, 'DE', 'Germany'), +('82.111.76.96', '82.111.152.95', 1383025760, 1383045215, 'GB', 'United Kingdom'), +('82.111.152.96', '82.111.152.111', 1383045216, 1383045231, 'IT', 'Italy'), +('82.111.152.112', '82.111.255.255', 1383045232, 1383071743, 'GB', 'United Kingdom'), +('82.112.0.0', '82.112.5.95', 1383071744, 1383073119, 'RU', 'Russian Federation'), +('82.112.5.96', '82.112.5.111', 1383073120, 1383073135, 'UZ', 'Uzbekistan'), +('82.112.5.112', '82.112.5.255', 1383073136, 1383073279, 'RU', 'Russian Federation'), +('82.112.6.0', '82.112.6.255', 1383073280, 1383073535, 'KZ', 'Kazakstan'), +('82.112.7.0', '82.112.31.255', 1383073536, 1383079935, 'RU', 'Russian Federation'), +('82.112.32.0', '82.112.63.255', 1383079936, 1383088127, 'NL', 'Netherlands'), +('82.112.64.0', '82.112.95.255', 1383088128, 1383096319, 'IS', 'Iceland'), +('82.112.96.0', '82.112.123.39', 1383096320, 1383103271, 'GB', 'United Kingdom'), +('82.112.123.40', '82.112.123.47', 1383103272, 1383103279, 'ES', 'Spain'), +('82.112.123.48', '82.112.123.239', 1383103280, 1383103471, 'GB', 'United Kingdom'), +('82.112.123.240', '82.112.123.255', 1383103472, 1383103487, 'NL', 'Netherlands'), +('82.112.124.0', '82.112.126.15', 1383103488, 1383104015, 'GB', 'United Kingdom'), +('82.112.126.16', '82.112.126.23', 1383104016, 1383104023, 'ES', 'Spain'), +('82.112.126.24', '82.112.126.255', 1383104024, 1383104255, 'GB', 'United Kingdom'), +('82.112.127.0', '82.112.127.255', 1383104256, 1383104511, 'FR', 'France'), +('82.112.128.0', '82.112.156.7', 1383104512, 1383111687, 'JE', 'Jersey'), +('82.112.156.8', '82.112.156.47', 1383111688, 1383111727, 'GB', 'United Kingdom'), +('82.112.156.48', '82.112.159.255', 1383111728, 1383112703, 'JE', 'Jersey'), +('82.112.160.0', '82.112.191.255', 1383112704, 1383120895, 'GE', 'Georgia'), +('82.112.192.0', '82.112.223.255', 1383120896, 1383129087, 'IT', 'Italy'), +('82.112.224.0', '82.112.255.255', 1383129088, 1383137279, 'GB', 'United Kingdom'), +('82.113.0.0', '82.113.31.255', 1383137280, 1383145471, 'MC', 'Monaco'), +('82.113.32.0', '82.113.63.255', 1383145472, 1383153663, 'CZ', 'Czech Republic'), +('82.113.64.0', '82.113.95.255', 1383153664, 1383161855, 'GB', 'United Kingdom'), +('82.113.96.0', '82.113.127.255', 1383161856, 1383170047, 'DE', 'Germany'), +('82.113.128.0', '82.113.134.159', 1383170048, 1383171743, 'GB', 'United Kingdom'), +('82.113.134.160', '82.113.134.191', 1383171744, 1383171775, 'NZ', 'New Zealand'), +('82.113.134.192', '82.113.137.207', 1383171776, 1383172559, 'GB', 'United Kingdom'), +('82.113.137.208', '82.113.137.215', 1383172560, 1383172567, 'ZA', 'South Africa'), +('82.113.137.216', '82.113.191.255', 1383172568, 1383186431, 'GB', 'United Kingdom'), +('82.113.192.0', '82.113.223.255', 1383186432, 1383194623, 'IT', 'Italy'), +('82.113.224.0', '82.113.255.255', 1383194624, 1383202815, 'GB', 'United Kingdom'), +('82.114.0.0', '82.114.31.255', 1383202816, 1383211007, 'RU', 'Russian Federation'), +('82.114.32.0', '82.114.63.255', 1383211008, 1383219199, 'CY', 'Cyprus'), +('82.114.64.0', '82.114.74.255', 1383219200, 1383222015, 'RS', 'Serbia'), +('82.114.75.0', '82.114.76.255', 1383222016, 1383222527, 'MK', 'Macedonia'), +('82.114.77.0', '82.114.77.255', 1383222528, 1383222783, 'RS', 'Serbia'), +('82.114.78.0', '82.114.78.255', 1383222784, 1383223039, 'MK', 'Macedonia'), +('82.114.79.0', '82.114.95.255', 1383223040, 1383227391, 'RS', 'Serbia'), +('82.114.96.0', '82.114.142.127', 1383227392, 1383239295, 'RU', 'Russian Federation'), +('82.114.142.128', '82.114.142.255', 1383239296, 1383239423, 'AR', 'Argentina'), +('82.114.143.0', '82.114.159.255', 1383239424, 1383243775, 'RU', 'Russian Federation'), +('82.114.160.0', '82.114.191.255', 1383243776, 1383251967, 'YE', 'Yemen'), +('82.114.192.0', '82.114.223.255', 1383251968, 1383260159, 'CZ', 'Czech Republic'), +('82.114.224.0', '82.114.255.255', 1383260160, 1383268351, 'RU', 'Russian Federation'), +('82.115.0.0', '82.115.21.255', 1383268352, 1383273983, 'IR', 'Iran, Islamic Republic of'), +('82.115.22.0', '82.115.31.255', 1383273984, 1383276543, 'KW', 'Kuwait'), +('82.115.32.0', '82.115.63.255', 1383276544, 1383284735, 'KZ', 'Kazakstan'), +('82.115.64.0', '82.115.95.255', 1383284736, 1383292927, 'PL', 'Poland'), +('82.115.96.0', '82.115.127.255', 1383292928, 1383301119, 'DE', 'Germany'), +('82.115.128.0', '82.115.159.255', 1383301120, 1383309311, 'SE', 'Sweden'), +('82.115.160.0', '82.115.191.255', 1383309312, 1383317503, 'IT', 'Italy'), +('82.115.192.0', '82.115.207.255', 1383317504, 1383321599, 'SE', 'Sweden'), +('82.115.208.0', '82.115.223.255', 1383321600, 1383325695, 'RU', 'Russian Federation'), +('82.115.224.0', '82.115.255.255', 1383325696, 1383333887, 'GB', 'United Kingdom'), +('82.116.0.0', '82.116.63.255', 1383333888, 1383350271, 'RU', 'Russian Federation'), +('82.116.64.0', '82.116.95.255', 1383350272, 1383358463, 'NO', 'Norway'), +('82.116.96.0', '82.116.128.255', 1383358464, 1383366911, 'DE', 'Germany'), +('82.116.129.0', '82.116.129.255', 1383366912, 1383367167, 'SY', 'Syrian Arab Republic'), +('82.116.130.0', '82.116.131.255', 1383367168, 1383367679, 'KW', 'Kuwait'), +('82.116.132.0', '82.116.135.255', 1383367680, 1383368703, 'GB', 'United Kingdom'), +('82.116.136.0', '82.116.136.127', 1383368704, 1383368831, 'DE', 'Germany'), +('82.116.136.128', '82.116.136.143', 1383368832, 1383368847, 'GB', 'United Kingdom'), +('82.116.136.144', '82.116.137.127', 1383368848, 1383369087, 'DE', 'Germany'), +('82.116.137.128', '82.116.137.159', 1383369088, 1383369119, 'GB', 'United Kingdom'), +('82.116.137.160', '82.116.138.15', 1383369120, 1383369231, 'DE', 'Germany'), +('82.116.138.16', '82.116.138.31', 1383369232, 1383369247, 'GB', 'United Kingdom'), +('82.116.138.32', '82.116.139.63', 1383369248, 1383369535, 'DE', 'Germany'), +('82.116.139.64', '82.116.139.95', 1383369536, 1383369567, 'GB', 'United Kingdom'), +('82.116.139.96', '82.116.139.255', 1383369568, 1383369727, 'DE', 'Germany'), +('82.116.140.0', '82.116.143.255', 1383369728, 1383370751, 'KW', 'Kuwait'), +('82.116.144.0', '82.116.147.255', 1383370752, 1383371775, 'DE', 'Germany'), +('82.116.148.0', '82.116.158.255', 1383371776, 1383374591, 'KW', 'Kuwait'), +('82.116.159.0', '82.116.159.255', 1383374592, 1383374847, 'US', 'United States'), +('82.116.160.0', '82.116.191.255', 1383374848, 1383383039, 'ES', 'Spain'), +('82.116.192.0', '82.116.223.255', 1383383040, 1383391231, 'CY', 'Cyprus'), +('82.116.224.0', '82.116.255.255', 1383391232, 1383399423, 'FI', 'Finland'), +('82.117.0.0', '82.117.10.31', 1383399424, 1383402015, 'LI', 'Liechtenstein'), +('82.117.10.32', '82.117.10.39', 1383402016, 1383402023, 'CH', 'Switzerland'), +('82.117.10.40', '82.117.31.255', 1383402024, 1383407615, 'LI', 'Liechtenstein'), +('82.117.32.0', '82.117.63.255', 1383407616, 1383415807, 'NO', 'Norway'), +('82.117.64.0', '82.117.95.255', 1383415808, 1383423999, 'RU', 'Russian Federation'), +('82.117.96.0', '82.117.127.255', 1383424000, 1383432191, 'SE', 'Sweden'), +('82.117.128.0', '82.117.159.255', 1383432192, 1383440383, 'CZ', 'Czech Republic'), +('82.117.160.0', '82.117.191.255', 1383440384, 1383448575, 'RU', 'Russian Federation'), +('82.117.192.0', '82.117.223.255', 1383448576, 1383456767, 'RS', 'Serbia'), +('82.117.224.0', '82.117.255.255', 1383456768, 1383464959, 'UA', 'Ukraine'), +('82.118.0.0', '82.118.31.255', 1383464960, 1383473151, 'US', 'United States'), +('82.118.32.0', '82.118.63.255', 1383473152, 1383481343, 'DE', 'Germany'), +('82.118.64.0', '82.118.64.255', 1383481344, 1383481599, 'GB', 'United Kingdom'), +('82.118.65.0', '82.118.65.15', 1383481600, 1383481615, 'US', 'United States'), +('82.118.65.16', '82.118.65.63', 1383481616, 1383481663, 'GB', 'United Kingdom'), +('82.118.65.64', '82.118.65.95', 1383481664, 1383481695, 'US', 'United States'), +('82.118.65.96', '82.118.65.103', 1383481696, 1383481703, 'GB', 'United Kingdom'), +('82.118.65.104', '82.118.65.111', 1383481704, 1383481711, 'US', 'United States'), +('82.118.65.112', '82.118.65.175', 1383481712, 1383481775, 'GB', 'United Kingdom'), +('82.118.65.176', '82.118.65.191', 1383481776, 1383481791, 'SA', 'Saudi Arabia'), +('82.118.65.192', '82.118.67.255', 1383481792, 1383482367, 'GB', 'United Kingdom'), +('82.118.68.0', '82.118.69.255', 1383482368, 1383482879, 'NL', 'Netherlands'), +('82.118.70.0', '82.118.71.239', 1383482880, 1383483375, 'GB', 'United Kingdom'), +('82.118.71.240', '82.118.71.247', 1383483376, 1383483383, 'US', 'United States'), +('82.118.71.248', '82.118.73.239', 1383483384, 1383483887, 'GB', 'United Kingdom'), +('82.118.73.240', '82.118.73.255', 1383483888, 1383483903, 'JP', 'Japan'), +('82.118.74.0', '82.118.79.191', 1383483904, 1383485375, 'GB', 'United Kingdom'), +('82.118.79.192', '82.118.79.223', 1383485376, 1383485407, 'US', 'United States'), +('82.118.79.224', '82.118.127.255', 1383485408, 1383497727, 'GB', 'United Kingdom'), +('82.118.128.0', '82.118.133.31', 1383497728, 1383499039, 'RU', 'Russian Federation'), +('82.118.133.32', '82.118.133.39', 1383499040, 1383499047, 'UA', 'Ukraine'), +('82.118.133.40', '82.118.135.255', 1383499048, 1383499775, 'RU', 'Russian Federation'), +('82.118.136.0', '82.118.143.255', 1383499776, 1383501823, 'AZ', 'Azerbaijan'), +('82.118.144.0', '82.118.145.255', 1383501824, 1383502335, 'RU', 'Russian Federation'), +('82.118.146.0', '82.118.147.255', 1383502336, 1383502847, 'CH', 'Switzerland'), +('82.118.148.0', '82.118.150.255', 1383502848, 1383503615, 'RU', 'Russian Federation'), +('82.118.151.0', '82.118.151.0', 1383503616, 1383503616, 'CZ', 'Czech Republic'), +('82.118.151.1', '82.118.155.255', 1383503617, 1383504895, 'RU', 'Russian Federation'), +('82.118.156.0', '82.118.159.255', 1383504896, 1383505919, 'AZ', 'Azerbaijan'), +('82.118.160.0', '82.118.191.255', 1383505920, 1383514111, 'SA', 'Saudi Arabia'), +('82.118.192.0', '82.118.223.255', 1383514112, 1383522303, 'FI', 'Finland'), +('82.118.224.0', '82.118.255.255', 1383522304, 1383530495, 'BG', 'Bulgaria'), +('82.119.0.0', '82.119.31.255', 1383530496, 1383538687, 'DE', 'Germany'), +('82.119.32.0', '82.119.63.255', 1383538688, 1383546879, 'IT', 'Italy'), +('82.119.64.0', '82.119.95.255', 1383546880, 1383555071, 'BG', 'Bulgaria'), +('82.119.96.0', '82.119.127.255', 1383555072, 1383563263, 'SK', 'Slovakia'), +('82.119.128.0', '82.119.159.255', 1383563264, 1383571455, 'RU', 'Russian Federation'), +('82.119.160.0', '82.119.191.255', 1383571456, 1383579647, 'DE', 'Germany'), +('82.119.192.0', '82.119.223.255', 1383579648, 1383587839, 'IT', 'Italy'), +('82.119.224.0', '82.119.226.63', 1383587840, 1383588415, 'SK', 'Slovakia'), +('82.119.226.64', '82.119.226.71', 1383588416, 1383588423, 'CZ', 'Czech Republic'), +('82.119.226.72', '82.119.226.79', 1383588424, 1383588431, 'SK', 'Slovakia'), +('82.119.226.80', '82.119.226.87', 1383588432, 1383588439, 'CZ', 'Czech Republic'), +('82.119.226.88', '82.119.233.143', 1383588440, 1383590287, 'SK', 'Slovakia'), +('82.119.233.144', '82.119.233.151', 1383590288, 1383590295, 'CZ', 'Czech Republic'), +('82.119.233.152', '82.119.233.223', 1383590296, 1383590367, 'SK', 'Slovakia'), +('82.119.233.224', '82.119.233.231', 1383590368, 1383590375, 'CZ', 'Czech Republic'), +('82.119.233.232', '82.119.234.63', 1383590376, 1383590463, 'SK', 'Slovakia'), +('82.119.234.64', '82.119.234.143', 1383590464, 1383590543, 'CZ', 'Czech Republic'), +('82.119.234.144', '82.119.234.191', 1383590544, 1383590591, 'SK', 'Slovakia'), +('82.119.234.192', '82.119.234.255', 1383590592, 1383590655, 'CZ', 'Czech Republic'), +('82.119.235.0', '82.119.239.255', 1383590656, 1383591935, 'SK', 'Slovakia'), +('82.119.240.0', '82.119.243.183', 1383591936, 1383592887, 'CZ', 'Czech Republic'), +('82.119.243.184', '82.119.243.191', 1383592888, 1383592895, 'VC', 'Saint Vincent and the Grenadines'), +('82.119.243.192', '82.119.255.255', 1383592896, 1383596031, 'CZ', 'Czech Republic'), +('82.120.0.0', '82.127.255.255', 1383596032, 1384120319, 'FR', 'France'), +('82.128.0.0', '82.128.127.255', 1384120320, 1384153087, 'NG', 'Nigeria'), +('82.128.128.0', '82.128.255.255', 1384153088, 1384185855, 'FI', 'Finland'), +('82.129.0.0', '82.129.7.255', 1384185856, 1384187903, 'DE', 'Germany'), +('82.129.8.0', '82.129.8.127', 1384187904, 1384188031, 'CH', 'Switzerland'), +('82.129.8.128', '82.129.8.191', 1384188032, 1384188095, 'DE', 'Germany'), +('82.129.8.192', '82.129.8.223', 1384188096, 1384188127, 'NL', 'Netherlands'), +('82.129.8.224', '82.129.12.127', 1384188128, 1384189055, 'DE', 'Germany'), +('82.129.12.128', '82.129.12.255', 1384189056, 1384189183, 'CH', 'Switzerland'), +('82.129.13.0', '82.129.13.255', 1384189184, 1384189439, 'AT', 'Austria'), +('82.129.14.0', '82.129.17.255', 1384189440, 1384190463, 'DE', 'Germany'), +('82.129.18.0', '82.129.18.255', 1384190464, 1384190719, 'NL', 'Netherlands'), +('82.129.19.0', '82.129.19.255', 1384190720, 1384190975, 'DE', 'Germany'), +('82.129.20.0', '82.129.20.255', 1384190976, 1384191231, 'DK', 'Denmark'), +('82.129.21.0', '82.129.21.127', 1384191232, 1384191359, 'DE', 'Germany'), +('82.129.21.128', '82.129.21.191', 1384191360, 1384191423, 'AT', 'Austria'), +('82.129.21.192', '82.129.23.255', 1384191424, 1384191999, 'DE', 'Germany'), +('82.129.24.0', '82.129.24.191', 1384192000, 1384192191, 'NL', 'Netherlands'), +('82.129.24.192', '82.129.24.255', 1384192192, 1384192255, 'DE', 'Germany'), +('82.129.25.0', '82.129.25.255', 1384192256, 1384192511, 'NL', 'Netherlands'), +('82.129.26.0', '82.129.27.255', 1384192512, 1384193023, 'DE', 'Germany'), +('82.129.28.0', '82.129.31.255', 1384193024, 1384194047, 'NL', 'Netherlands'), +('82.129.32.0', '82.129.32.143', 1384194048, 1384194191, 'DE', 'Germany'), +('82.129.32.144', '82.129.32.159', 1384194192, 1384194207, 'AT', 'Austria'), +('82.129.32.160', '82.129.32.223', 1384194208, 1384194271, 'DE', 'Germany'), +('82.129.32.224', '82.129.32.255', 1384194272, 1384194303, 'NL', 'Netherlands'), +('82.129.33.0', '82.129.33.255', 1384194304, 1384194559, 'DE', 'Germany'), +('82.129.34.0', '82.129.34.255', 1384194560, 1384194815, 'NL', 'Netherlands'), +('82.129.35.0', '82.129.38.127', 1384194816, 1384195711, 'DE', 'Germany'), +('82.129.38.128', '82.129.38.159', 1384195712, 1384195743, 'NL', 'Netherlands'), +('82.129.38.160', '82.129.38.167', 1384195744, 1384195751, 'CH', 'Switzerland'), +('82.129.38.168', '82.129.38.191', 1384195752, 1384195775, 'DE', 'Germany'), +('82.129.38.192', '82.129.38.255', 1384195776, 1384195839, 'SE', 'Sweden'), +('82.129.39.0', '82.129.39.255', 1384195840, 1384196095, 'DE', 'Germany'), +('82.129.40.0', '82.129.43.255', 1384196096, 1384197119, 'CZ', 'Czech Republic'), +('82.129.44.0', '82.129.127.255', 1384197120, 1384218623, 'DE', 'Germany'), +('82.129.128.0', '82.129.255.255', 1384218624, 1384251391, 'EG', 'Egypt'), +('82.130.0.0', '82.130.63.255', 1384251392, 1384267775, 'FI', 'Finland'), +('82.130.64.0', '82.130.127.255', 1384267776, 1384284159, 'CH', 'Switzerland'), +('82.130.128.0', '82.130.255.255', 1384284160, 1384316927, 'ES', 'Spain'), +('82.131.0.0', '82.131.127.255', 1384316928, 1384349695, 'EE', 'Estonia'), +('82.131.128.0', '82.131.255.255', 1384349696, 1384382463, 'HU', 'Hungary'), +('82.132.0.0', '82.132.127.255', 1384382464, 1384415231, 'HR', 'Croatia'), +('82.132.128.0', '82.132.129.255', 1384415232, 1384415743, 'DE', 'Germany'), +('82.132.130.0', '82.132.142.255', 1384415744, 1384419071, 'GB', 'United Kingdom'), +('82.132.143.0', '82.132.144.255', 1384419072, 1384419583, 'DE', 'Germany'), +('82.132.145.0', '82.132.145.255', 1384419584, 1384419839, 'GB', 'United Kingdom'), +('82.132.146.0', '82.132.147.255', 1384419840, 1384420351, 'DE', 'Germany'), +('82.132.148.0', '82.132.157.127', 1384420352, 1384422783, 'GB', 'United Kingdom'), +('82.132.157.128', '82.132.157.255', 1384422784, 1384422911, 'DE', 'Germany'), +('82.132.158.0', '82.132.207.255', 1384422912, 1384435711, 'GB', 'United Kingdom'), +('82.132.208.0', '82.132.251.255', 1384435712, 1384446975, 'DE', 'Germany'), +('82.132.252.0', '82.132.252.255', 1384446976, 1384447231, 'GB', 'United Kingdom'), +('82.132.253.0', '82.132.254.255', 1384447232, 1384447743, 'DE', 'Germany'), +('82.132.255.0', '82.132.255.63', 1384447744, 1384447807, 'GB', 'United Kingdom'), +('82.132.255.64', '82.132.255.255', 1384447808, 1384447999, 'DE', 'Germany'), +('82.133.0.0', '82.133.127.255', 1384448000, 1384480767, 'GB', 'United Kingdom'), +('82.133.128.0', '82.133.159.159', 1384480768, 1384488863, 'FI', 'Finland'), +('82.133.159.160', '82.133.159.167', 1384488864, 1384488871, 'AX', 'Aland Islands'), +('82.133.159.168', '82.133.183.31', 1384488872, 1384494879, 'FI', 'Finland'), +('82.133.183.32', '82.133.183.39', 1384494880, 1384494887, 'AX', 'Aland Islands'), +('82.133.183.40', '82.133.183.87', 1384494888, 1384494935, 'FI', 'Finland'), +('82.133.183.88', '82.133.183.95', 1384494936, 1384494943, 'AX', 'Aland Islands'), +('82.133.183.96', '82.133.212.143', 1384494944, 1384502415, 'FI', 'Finland'), +('82.133.212.144', '82.133.212.175', 1384502416, 1384502447, 'AX', 'Aland Islands'), +('82.133.212.176', '82.133.221.39', 1384502448, 1384504615, 'FI', 'Finland'), +('82.133.221.40', '82.133.221.47', 1384504616, 1384504623, 'AX', 'Aland Islands'), +('82.133.221.48', '82.133.255.255', 1384504624, 1384513535, 'FI', 'Finland'), +('82.134.0.0', '82.134.127.255', 1384513536, 1384546303, 'NO', 'Norway'), +('82.134.128.0', '82.134.255.255', 1384546304, 1384579071, 'NL', 'Netherlands'), +('82.135.0.0', '82.135.127.255', 1384579072, 1384611839, 'DE', 'Germany'), +('82.135.128.0', '82.135.255.255', 1384611840, 1384644607, 'LT', 'Lithuania'), +('82.136.0.0', '82.136.63.255', 1384644608, 1384660991, 'GB', 'United Kingdom'), +('82.136.64.0', '82.136.127.255', 1384660992, 1384677375, 'CH', 'Switzerland'), +('82.136.128.0', '82.136.191.255', 1384677376, 1384693759, 'SE', 'Sweden'), +('82.136.192.0', '82.136.255.255', 1384693760, 1384710143, 'NL', 'Netherlands'), +('82.137.0.0', '82.137.63.255', 1384710144, 1384726527, 'RO', 'Romania'), +('82.137.64.0', '82.137.127.255', 1384726528, 1384742911, 'BG', 'Bulgaria'), +('82.137.128.0', '82.137.191.255', 1384742912, 1384759295, 'RU', 'Russian Federation'), +('82.137.192.0', '82.137.255.255', 1384759296, 1384775679, 'SY', 'Syrian Arab Republic'), +('82.138.0.0', '82.138.63.255', 1384775680, 1384792063, 'RU', 'Russian Federation'), +('82.138.64.0', '82.138.66.47', 1384792064, 1384792623, 'FR', 'France'), +('82.138.66.48', '82.138.66.63', 1384792624, 1384792639, 'BE', 'Belgium'), +('82.138.66.64', '82.138.70.63', 1384792640, 1384793663, 'FR', 'France'), +('82.138.70.64', '82.138.70.95', 1384793664, 1384793695, 'BE', 'Belgium'), +('82.138.70.96', '82.138.70.191', 1384793696, 1384793791, 'FR', 'France'), +('82.138.70.192', '82.138.70.223', 1384793792, 1384793823, 'BE', 'Belgium'), +('82.138.70.224', '82.138.72.15', 1384793824, 1384794127, 'FR', 'France'), +('82.138.72.16', '82.138.72.31', 1384794128, 1384794143, 'CH', 'Switzerland'), +('82.138.72.32', '82.138.72.159', 1384794144, 1384794271, 'FR', 'France'), +('82.138.72.160', '82.138.72.175', 1384794272, 1384794287, 'CH', 'Switzerland'), +('82.138.72.176', '82.138.74.191', 1384794288, 1384794815, 'FR', 'France'), +('82.138.74.192', '82.138.74.223', 1384794816, 1384794847, 'BE', 'Belgium'), +('82.138.74.224', '82.138.74.255', 1384794848, 1384794879, 'FR', 'France'), +('82.138.75.0', '82.138.75.255', 1384794880, 1384795135, 'CH', 'Switzerland'), +('82.138.76.0', '82.138.76.143', 1384795136, 1384795279, 'FR', 'France'), +('82.138.76.144', '82.138.76.191', 1384795280, 1384795327, 'BE', 'Belgium'), +('82.138.76.192', '82.138.98.255', 1384795328, 1384801023, 'FR', 'France'), +('82.138.99.0', '82.138.99.63', 1384801024, 1384801087, 'SM', 'San Marino'), +('82.138.99.64', '82.138.104.191', 1384801088, 1384802495, 'FR', 'France'), +('82.138.104.192', '82.138.104.255', 1384802496, 1384802559, 'IT', 'Italy'), +('82.138.105.0', '82.138.127.255', 1384802560, 1384808447, 'FR', 'France'), +('82.138.128.0', '82.138.129.255', 1384808448, 1384808959, 'EU', 'Europe'), +('82.138.130.0', '82.138.130.7', 1384808960, 1384808967, 'DE', 'Germany'), +('82.138.130.8', '82.138.130.15', 1384808968, 1384808975, 'SE', 'Sweden'), +('82.138.130.16', '82.138.130.31', 1384808976, 1384808991, 'DE', 'Germany'), +('82.138.130.32', '82.138.130.47', 1384808992, 1384809007, 'FI', 'Finland'), +('82.138.130.48', '82.138.130.55', 1384809008, 1384809015, 'PT', 'Portugal'), +('82.138.130.56', '82.138.130.63', 1384809016, 1384809023, 'GB', 'United Kingdom'), +('82.138.130.64', '82.138.130.79', 1384809024, 1384809039, 'EU', 'Europe'), +('82.138.130.80', '82.138.130.95', 1384809040, 1384809055, 'FR', 'France'), +('82.138.130.96', '82.138.130.103', 1384809056, 1384809063, 'GE', 'Georgia'), +('82.138.130.104', '82.138.130.111', 1384809064, 1384809071, 'GB', 'United Kingdom'), +('82.138.130.112', '82.138.130.127', 1384809072, 1384809087, 'EU', 'Europe'), +('82.138.130.128', '82.138.130.143', 1384809088, 1384809103, 'FR', 'France'), +('82.138.130.144', '82.138.137.255', 1384809104, 1384811007, 'EU', 'Europe'), +('82.138.138.0', '82.138.139.255', 1384811008, 1384811519, 'GB', 'United Kingdom'), +('82.138.140.0', '82.138.140.127', 1384811520, 1384811647, 'IR', 'Iran, Islamic Republic of'), +('82.138.140.128', '82.138.144.255', 1384811648, 1384812799, 'EU', 'Europe'), +('82.138.145.0', '82.138.146.255', 1384812800, 1384813311, 'GB', 'United Kingdom'), +('82.138.147.0', '82.138.167.31', 1384813312, 1384818463, 'EU', 'Europe'), +('82.138.167.32', '82.138.167.63', 1384818464, 1384818495, 'BE', 'Belgium'), +('82.138.167.64', '82.138.191.255', 1384818496, 1384824831, 'EU', 'Europe'), +('82.138.192.0', '82.138.255.255', 1384824832, 1384841215, 'GB', 'United Kingdom'), +('82.139.0.0', '82.139.63.255', 1384841216, 1384857599, 'PL', 'Poland'), +('82.139.64.0', '82.139.127.255', 1384857600, 1384873983, 'NL', 'Netherlands'), +('82.139.128.0', '82.139.191.255', 1384873984, 1384890367, 'PL', 'Poland'), +('82.139.192.0', '82.140.63.255', 1384890368, 1384923135, 'DE', 'Germany'), +('82.140.64.0', '82.140.127.255', 1384923136, 1384939519, 'RU', 'Russian Federation'), +('82.140.128.0', '82.140.191.255', 1384939520, 1384955903, 'LT', 'Lithuania'), +('82.140.192.0', '82.140.255.255', 1384955904, 1384972287, 'PT', 'Portugal'), +('82.141.0.0', '82.141.63.255', 1384972288, 1384988671, 'DE', 'Germany'), +('82.141.64.0', '82.141.127.255', 1384988672, 1385005055, 'FI', 'Finland'), +('82.141.128.0', '82.141.131.255', 1385005056, 1385006079, 'HU', 'Hungary'), +('82.141.132.0', '82.141.132.127', 1385006080, 1385006207, 'SK', 'Slovakia'), +('82.141.132.128', '82.141.191.255', 1385006208, 1385021439, 'HU', 'Hungary'), +('82.141.192.0', '82.141.255.255', 1385021440, 1385037823, 'IE', 'Ireland'), +('82.142.0.0', '82.142.63.255', 1385037824, 1385054207, 'FR', 'France'), +('82.142.64.0', '82.142.127.255', 1385054208, 1385070591, 'CZ', 'Czech Republic'), +('82.142.128.0', '82.142.191.255', 1385070592, 1385086975, 'RU', 'Russian Federation'), +('82.142.192.0', '82.142.255.255', 1385086976, 1385103359, 'GB', 'United Kingdom'), +('82.143.0.0', '82.143.63.255', 1385103360, 1385119743, 'IT', 'Italy'), +('82.143.64.0', '82.143.127.255', 1385119744, 1385136127, 'BE', 'Belgium'), +('82.143.128.0', '82.143.191.255', 1385136128, 1385152511, 'PL', 'Poland'), +('82.143.192.0', '82.143.255.255', 1385152512, 1385168895, 'DK', 'Denmark'), +('82.144.0.0', '82.144.31.255', 1385168896, 1385177087, 'ES', 'Spain'), +('82.144.32.0', '82.144.63.255', 1385177088, 1385185279, 'DE', 'Germany'), +('82.144.64.0', '82.144.95.255', 1385185280, 1385193471, 'RU', 'Russian Federation'), +('82.144.96.0', '82.144.127.255', 1385193472, 1385201663, 'ES', 'Spain'), +('82.144.128.0', '82.144.159.255', 1385201664, 1385209855, 'CZ', 'Czech Republic'), +('82.144.160.0', '82.144.191.255', 1385209856, 1385218047, 'HU', 'Hungary'), +('82.144.192.0', '82.144.223.255', 1385218048, 1385226239, 'UA', 'Ukraine'), +('82.144.224.0', '82.144.255.255', 1385226240, 1385234431, 'GB', 'United Kingdom'), +('82.145.0.0', '82.145.31.255', 1385234432, 1385242623, 'DE', 'Germany'), +('82.145.32.0', '82.145.63.255', 1385242624, 1385250815, 'GB', 'United Kingdom'), +('82.145.64.0', '82.145.95.255', 1385250816, 1385259007, 'PL', 'Poland'), +('82.145.96.0', '82.145.127.255', 1385259008, 1385267199, 'IT', 'Italy'), +('82.145.128.0', '82.145.159.255', 1385267200, 1385275391, 'SE', 'Sweden'), +('82.145.160.0', '82.145.191.255', 1385275392, 1385283583, 'IT', 'Italy'), +('82.145.192.0', '82.145.223.255', 1385283584, 1385291775, 'KW', 'Kuwait'), +('82.145.224.0', '82.145.255.255', 1385291776, 1385299967, 'TR', 'Turkey'), +('82.146.0.0', '82.146.31.255', 1385299968, 1385308159, 'BG', 'Bulgaria'), +('82.146.32.0', '82.146.39.255', 1385308160, 1385310207, 'BE', 'Belgium'), +('82.146.40.0', '82.146.63.255', 1385310208, 1385316351, 'RU', 'Russian Federation'), +('82.146.64.0', '82.146.95.255', 1385316352, 1385324543, 'NO', 'Norway'), +('82.146.96.0', '82.146.127.255', 1385324544, 1385332735, 'BE', 'Belgium'), +('82.146.128.0', '82.146.159.255', 1385332736, 1385340927, 'GB', 'United Kingdom'), +('82.146.160.0', '82.146.191.255', 1385340928, 1385349119, 'LB', 'Lebanon'), +('82.146.192.0', '82.146.223.255', 1385349120, 1385357311, 'CH', 'Switzerland'), +('82.146.224.0', '82.146.255.255', 1385357312, 1385365503, 'PL', 'Poland'), +('82.147.0.0', '82.147.31.255', 1385365504, 1385373695, 'GB', 'United Kingdom'), +('82.147.32.0', '82.147.63.255', 1385373696, 1385381887, 'NO', 'Norway'), +('82.147.64.0', '82.147.127.255', 1385381888, 1385398271, 'RU', 'Russian Federation'), +('82.147.128.0', '82.147.159.255', 1385398272, 1385406463, 'BG', 'Bulgaria'), +('82.147.160.0', '82.147.191.255', 1385406464, 1385414655, 'EE', 'Estonia'), +('82.147.192.0', '82.147.223.255', 1385414656, 1385422847, 'SA', 'Saudi Arabia'), +('82.147.224.0', '82.147.255.255', 1385422848, 1385431039, 'DK', 'Denmark'), +('82.148.0.0', '82.148.31.255', 1385431040, 1385439231, 'RU', 'Russian Federation'), +('82.148.32.0', '82.148.63.255', 1385439232, 1385447423, 'GB', 'United Kingdom'), +('82.148.64.0', '82.148.95.255', 1385447424, 1385455615, 'IS', 'Iceland'), +('82.148.96.0', '82.148.127.255', 1385455616, 1385463807, 'QA', 'Qatar'), +('82.148.128.0', '82.148.191.255', 1385463808, 1385480191, 'NO', 'Norway'), +('82.148.192.0', '82.148.223.255', 1385480192, 1385488383, 'NL', 'Netherlands'), +('82.148.224.0', '82.148.255.255', 1385488384, 1385496575, 'GB', 'United Kingdom'), +('82.149.0.0', '82.149.31.255', 1385496576, 1385504767, 'SI', 'Slovenia'), +('82.149.32.0', '82.149.63.255', 1385504768, 1385512959, 'FR', 'France'), +('82.149.64.0', '82.149.95.255', 1385512960, 1385521151, 'DE', 'Germany'), +('82.149.96.0', '82.149.127.255', 1385521152, 1385529343, 'AT', 'Austria'), +('82.149.128.0', '82.149.159.255', 1385529344, 1385537535, 'RU', 'Russian Federation'), +('82.149.160.0', '82.149.191.255', 1385537536, 1385545727, 'DE', 'Germany'), +('82.149.192.0', '82.149.223.255', 1385545728, 1385553919, 'RU', 'Russian Federation'), +('82.149.224.0', '82.149.226.83', 1385553920, 1385554515, 'DE', 'Germany'), +('82.149.226.84', '82.149.226.87', 1385554516, 1385554519, 'CH', 'Switzerland'), +('82.149.226.88', '82.149.226.95', 1385554520, 1385554527, 'DE', 'Germany'), +('82.149.226.96', '82.149.226.99', 1385554528, 1385554531, 'AT', 'Austria'), +('82.149.226.100', '82.149.227.31', 1385554532, 1385554719, 'DE', 'Germany'), +('82.149.227.32', '82.149.227.47', 1385554720, 1385554735, 'AT', 'Austria'), +('82.149.227.48', '82.149.227.95', 1385554736, 1385554783, 'DE', 'Germany'), +('82.149.227.96', '82.149.227.103', 1385554784, 1385554791, 'CH', 'Switzerland'), +('82.149.227.104', '82.149.237.255', 1385554792, 1385557503, 'DE', 'Germany'), +('82.149.238.0', '82.149.238.255', 1385557504, 1385557759, 'AT', 'Austria'), +('82.149.239.0', '82.149.243.255', 1385557760, 1385559039, 'DE', 'Germany'), +('82.149.244.0', '82.149.244.255', 1385559040, 1385559295, 'SK', 'Slovakia'), +('82.149.245.0', '82.149.250.255', 1385559296, 1385560831, 'DE', 'Germany'), +('82.149.251.0', '82.149.251.255', 1385560832, 1385561087, 'SK', 'Slovakia'), +('82.149.252.0', '82.149.255.255', 1385561088, 1385562111, 'DE', 'Germany'), +('82.150.0.0', '82.150.1.255', 1385562112, 1385562623, 'EU', 'Europe'), +('82.150.2.0', '82.150.3.255', 1385562624, 1385563135, 'ES', 'Spain'), +('82.150.4.0', '82.150.5.255', 1385563136, 1385563647, 'EU', 'Europe'), +('82.150.6.0', '82.150.7.31', 1385563648, 1385563935, 'IE', 'Ireland'), +('82.150.7.32', '82.150.7.127', 1385563936, 1385564031, 'EU', 'Europe'), +('82.150.7.128', '82.150.7.191', 1385564032, 1385564095, 'IE', 'Ireland'), +('82.150.7.192', '82.150.7.195', 1385564096, 1385564099, 'EU', 'Europe'), +('82.150.7.196', '82.150.7.223', 1385564100, 1385564127, 'IE', 'Ireland'), +('82.150.7.224', '82.150.7.255', 1385564128, 1385564159, 'EU', 'Europe'), +('82.150.8.0', '82.150.8.63', 1385564160, 1385564223, 'HU', 'Hungary'), +('82.150.8.64', '82.150.8.223', 1385564224, 1385564383, 'EU', 'Europe'), +('82.150.8.224', '82.150.9.255', 1385564384, 1385564671, 'HU', 'Hungary'), +('82.150.10.0', '82.150.11.255', 1385564672, 1385565183, 'EU', 'Europe'), +('82.150.12.0', '82.150.12.255', 1385565184, 1385565439, 'ES', 'Spain'), +('82.150.13.0', '82.150.15.255', 1385565440, 1385566207, 'EU', 'Europe'), +('82.150.16.0', '82.150.16.191', 1385566208, 1385566399, 'FR', 'France'), +('82.150.16.192', '82.150.16.223', 1385566400, 1385566431, 'EU', 'Europe'), +('82.150.16.224', '82.150.18.127', 1385566432, 1385566847, 'FR', 'France'), +('82.150.18.128', '82.150.18.159', 1385566848, 1385566879, 'EU', 'Europe'), +('82.150.18.160', '82.150.18.191', 1385566880, 1385566911, 'FR', 'France'), +('82.150.18.192', '82.150.18.207', 1385566912, 1385566927, 'EU', 'Europe'), +('82.150.18.208', '82.150.18.215', 1385566928, 1385566935, 'FR', 'France'), +('82.150.18.216', '82.150.18.223', 1385566936, 1385566943, 'EU', 'Europe'), +('82.150.18.224', '82.150.19.15', 1385566944, 1385566991, 'FR', 'France'), +('82.150.19.16', '82.150.19.19', 1385566992, 1385566995, 'EU', 'Europe'), +('82.150.19.20', '82.150.19.31', 1385566996, 1385567007, 'FR', 'France'), +('82.150.19.32', '82.150.19.111', 1385567008, 1385567087, 'EU', 'Europe'), +('82.150.19.112', '82.150.19.127', 1385567088, 1385567103, 'FR', 'France'), +('82.150.19.128', '82.150.19.143', 1385567104, 1385567119, 'EU', 'Europe'), +('82.150.19.144', '82.150.19.179', 1385567120, 1385567155, 'FR', 'France'), +('82.150.19.180', '82.150.19.183', 1385567156, 1385567159, 'EU', 'Europe'), +('82.150.19.184', '82.150.19.239', 1385567160, 1385567215, 'FR', 'France'), +('82.150.19.240', '82.150.19.247', 1385567216, 1385567223, 'EU', 'Europe'), +('82.150.19.248', '82.150.19.251', 1385567224, 1385567227, 'FR', 'France'), +('82.150.19.252', '82.150.19.255', 1385567228, 1385567231, 'EU', 'Europe'), +('82.150.20.0', '82.150.23.255', 1385567232, 1385568255, 'IE', 'Ireland'), +('82.150.24.0', '82.150.28.127', 1385568256, 1385569407, 'EU', 'Europe'), +('82.150.28.128', '82.150.28.207', 1385569408, 1385569487, 'CZ', 'Czech Republic'), +('82.150.28.208', '82.150.28.223', 1385569488, 1385569503, 'DE', 'Germany'), +('82.150.28.224', '82.150.28.231', 1385569504, 1385569511, 'CZ', 'Czech Republic'), +('82.150.28.232', '82.150.28.247', 1385569512, 1385569527, 'EU', 'Europe'), +('82.150.28.248', '82.150.28.255', 1385569528, 1385569535, 'GB', 'United Kingdom'), +('82.150.29.0', '82.150.29.255', 1385569536, 1385569791, 'EU', 'Europe'), +('82.150.30.0', '82.150.31.255', 1385569792, 1385570303, 'FR', 'France'), +('82.150.32.0', '82.150.63.255', 1385570304, 1385578495, 'HU', 'Hungary'), +('82.150.64.0', '82.150.95.255', 1385578496, 1385586687, 'DK', 'Denmark'), +('82.150.96.0', '82.150.100.255', 1385586688, 1385587967, 'GB', 'United Kingdom'), +('82.150.101.0', '82.150.103.255', 1385587968, 1385588735, 'US', 'United States'), +('82.150.104.0', '82.150.105.255', 1385588736, 1385589247, 'HK', 'Hong Kong'), +('82.150.106.0', '82.150.106.255', 1385589248, 1385589503, 'JP', 'Japan'), +('82.150.107.0', '82.150.127.255', 1385589504, 1385594879, 'GB', 'United Kingdom'), +('82.150.128.0', '82.150.159.255', 1385594880, 1385603071, 'NL', 'Netherlands'), +('82.150.160.0', '82.150.191.255', 1385603072, 1385611263, 'CZ', 'Czech Republic'), +('82.150.192.0', '82.150.223.255', 1385611264, 1385619455, 'AT', 'Austria'), +('82.150.224.0', '82.150.247.255', 1385619456, 1385625599, 'DE', 'Germany'), +('82.150.248.0', '82.150.255.255', 1385625600, 1385627647, 'FR', 'France'), +('82.151.0.0', '82.151.31.255', 1385627648, 1385635839, 'RU', 'Russian Federation'), +('82.151.32.0', '82.151.63.255', 1385635840, 1385644031, 'NL', 'Netherlands'), +('82.151.64.0', '82.151.95.255', 1385644032, 1385652223, 'MR', 'Mauritania'), +('82.151.96.0', '82.151.127.255', 1385652224, 1385660415, 'RU', 'Russian Federation'), +('82.151.128.0', '82.151.159.255', 1385660416, 1385668607, 'TR', 'Turkey'), +('82.151.160.0', '82.151.191.255', 1385668608, 1385676799, 'NL', 'Netherlands'), +('82.151.224.0', '82.153.255.255', 1385684992, 1385824255, 'GB', 'United Kingdom'), +('82.154.0.0', '82.155.255.255', 1385824256, 1385955327, 'PT', 'Portugal'), +('82.156.0.0', '82.157.255.255', 1385955328, 1386086399, 'NL', 'Netherlands'), +('82.158.0.0', '82.159.255.255', 1386086400, 1386217471, 'ES', 'Spain'), +('82.160.0.0', '82.160.255.255', 1386217472, 1386283007, 'PL', 'Poland'), +('82.161.0.0', '82.161.255.255', 1386283008, 1386348543, 'NL', 'Netherlands'), +('82.162.0.0', '82.162.39.239', 1386348544, 1386358767, 'RU', 'Russian Federation'), +('82.162.39.240', '82.162.39.255', 1386358768, 1386358783, 'FR', 'France'), +('82.162.40.0', '82.162.255.255', 1386358784, 1386414079, 'RU', 'Russian Federation'), +('82.163.0.0', '82.163.255.255', 1386414080, 1386479615, 'GB', 'United Kingdom'), +('82.164.0.0', '82.164.255.255', 1386479616, 1386545151, 'NO', 'Norway'), +('82.165.0.0', '82.165.127.255', 1386545152, 1386577919, 'DE', 'Germany'), +('82.165.128.0', '82.165.191.255', 1386577920, 1386594303, 'US', 'United States'), +('82.165.192.0', '82.165.223.255', 1386594304, 1386602495, 'DE', 'Germany'), +('82.165.224.0', '82.165.255.255', 1386602496, 1386610687, 'US', 'United States'), +('82.166.0.0', '82.166.255.255', 1386610688, 1386676223, 'IL', 'Israel'), +('82.167.0.0', '82.167.255.255', 1386676224, 1386741759, 'SA', 'Saudi Arabia'), +('82.168.0.0', '82.175.129.87', 1386741760, 1387233623, 'NL', 'Netherlands'), +('82.175.129.88', '82.175.129.91', 1387233624, 1387233627, 'BE', 'Belgium'), +('82.175.129.92', '82.175.129.127', 1387233628, 1387233663, 'NL', 'Netherlands'), +('82.175.129.128', '82.175.129.191', 1387233664, 1387233727, 'BE', 'Belgium'), +('82.175.129.192', '82.175.129.255', 1387233728, 1387233791, 'NL', 'Netherlands'), +('82.175.130.0', '82.175.130.127', 1387233792, 1387233919, 'BE', 'Belgium'), +('82.175.130.128', '82.175.191.255', 1387233920, 1387249663, 'NL', 'Netherlands'), +('82.175.192.0', '82.175.198.31', 1387249664, 1387251231, 'BE', 'Belgium'), +('82.175.198.32', '82.175.198.63', 1387251232, 1387251263, 'NL', 'Netherlands'), +('82.175.198.64', '82.175.199.159', 1387251264, 1387251615, 'BE', 'Belgium'), +('82.175.199.160', '82.175.199.191', 1387251616, 1387251647, 'NL', 'Netherlands'), +('82.175.199.192', '82.175.200.15', 1387251648, 1387251727, 'BE', 'Belgium'), +('82.175.200.16', '82.175.200.39', 1387251728, 1387251751, 'NL', 'Netherlands'), +('82.175.200.40', '82.175.200.47', 1387251752, 1387251759, 'BE', 'Belgium'), +('82.175.200.48', '82.175.201.255', 1387251760, 1387252223, 'NL', 'Netherlands'), +('82.175.202.0', '82.175.202.255', 1387252224, 1387252479, 'BE', 'Belgium'), +('82.175.203.0', '82.176.255.255', 1387252480, 1387331583, 'NL', 'Netherlands'), +('82.177.0.0', '82.177.255.255', 1387331584, 1387397119, 'PL', 'Poland'), +('82.178.0.0', '82.178.255.255', 1387397120, 1387462655, 'OM', 'Oman'), +('82.179.0.0', '82.179.255.255', 1387462656, 1387528191, 'RU', 'Russian Federation'), +('82.180.0.0', '82.180.255.255', 1387528192, 1387593727, 'DK', 'Denmark'), +('82.181.0.0', '82.181.255.255', 1387593728, 1387659263, 'FI', 'Finland'), +('82.182.0.0', '82.183.255.255', 1387659264, 1387790335, 'SE', 'Sweden'), +('82.184.0.0', '82.191.255.255', 1387790336, 1388314623, 'IT', 'Italy'), +('82.192.0.0', '82.192.31.255', 1388314624, 1388322815, 'AT', 'Austria'), +('82.192.32.0', '82.192.63.255', 1388322816, 1388331007, 'SI', 'Slovenia'), +('82.192.64.0', '82.192.95.255', 1388331008, 1388339199, 'NL', 'Netherlands'), +('82.192.96.0', '82.192.127.255', 1388339200, 1388347391, 'GB', 'United Kingdom'), +('82.192.128.0', '82.192.191.255', 1388347392, 1388363775, 'DK', 'Denmark'), +('82.192.192.0', '82.192.223.255', 1388363776, 1388371967, 'DE', 'Germany'), +('82.192.224.0', '82.192.255.255', 1388371968, 1388380159, 'CH', 'Switzerland'), +('82.193.0.0', '82.193.32.127', 1388380160, 1388388479, 'IT', 'Italy'), +('82.193.32.128', '82.193.32.255', 1388388480, 1388388607, 'NG', 'Nigeria'), +('82.193.33.0', '82.193.34.95', 1388388608, 1388388959, 'IT', 'Italy'), +('82.193.34.96', '82.193.34.103', 1388388960, 1388388967, 'NG', 'Nigeria'), +('82.193.34.104', '82.193.35.15', 1388388968, 1388389135, 'IT', 'Italy'), +('82.193.35.16', '82.193.35.31', 1388389136, 1388389151, 'NG', 'Nigeria'), +('82.193.35.32', '82.193.35.63', 1388389152, 1388389183, 'IT', 'Italy'), +('82.193.35.64', '82.193.35.103', 1388389184, 1388389223, 'NG', 'Nigeria'), +('82.193.35.104', '82.193.35.111', 1388389224, 1388389231, 'IT', 'Italy'), +('82.193.35.112', '82.193.35.127', 1388389232, 1388389247, 'NG', 'Nigeria'), +('82.193.35.128', '82.193.35.135', 1388389248, 1388389255, 'IT', 'Italy'), +('82.193.35.136', '82.193.55.255', 1388389256, 1388394495, 'NG', 'Nigeria'), +('82.193.56.0', '82.193.59.255', 1388394496, 1388395519, 'IT', 'Italy'), +('82.193.60.0', '82.193.63.255', 1388395520, 1388396543, 'NG', 'Nigeria'), +('82.193.64.0', '82.193.95.255', 1388396544, 1388404735, 'LV', 'Latvia'), +('82.193.96.0', '82.193.127.255', 1388404736, 1388412927, 'UA', 'Ukraine'), +('82.193.128.0', '82.193.159.255', 1388412928, 1388421119, 'RU', 'Russian Federation'), +('82.193.160.0', '82.193.191.255', 1388421120, 1388429311, 'SE', 'Sweden'), +('82.193.192.0', '82.193.223.255', 1388429312, 1388437503, 'HR', 'Croatia'), +('82.193.224.0', '82.193.255.255', 1388437504, 1388445695, 'DE', 'Germany'), +('82.194.0.0', '82.194.31.255', 1388445696, 1388453887, 'AZ', 'Azerbaijan'), +('82.194.32.0', '82.194.63.255', 1388453888, 1388462079, 'BH', 'Bahrain'), +('82.194.64.0', '82.194.95.255', 1388462080, 1388470271, 'ES', 'Spain'), +('82.194.96.0', '82.194.127.255', 1388470272, 1388478463, 'DE', 'Germany'), +('82.194.128.0', '82.194.159.255', 1388478464, 1388486655, 'AT', 'Austria'), +('82.194.160.0', '82.194.191.255', 1388486656, 1388494847, 'RU', 'Russian Federation'), +('82.194.192.0', '82.194.223.255', 1388494848, 1388503039, 'NO', 'Norway'), +('82.194.224.0', '82.195.31.255', 1388503040, 1388519423, 'RU', 'Russian Federation'), +('82.195.32.0', '82.195.63.255', 1388519424, 1388527615, 'NL', 'Netherlands'), +('82.195.64.0', '82.195.95.255', 1388527616, 1388535807, 'DE', 'Germany'), +('82.195.96.0', '82.195.127.255', 1388535808, 1388543999, 'GB', 'United Kingdom'), +('82.195.128.0', '82.195.136.144', 1388544000, 1388546192, 'IE', 'Ireland'), +('82.195.136.145', '82.195.136.145', 1388546193, 1388546193, 'GB', 'United Kingdom'), +('82.195.136.146', '82.195.141.255', 1388546194, 1388547583, 'IE', 'Ireland'), +('82.195.142.0', '82.195.142.191', 1388547584, 1388547775, 'GB', 'United Kingdom'), +('82.195.142.192', '82.195.143.31', 1388547776, 1388547871, 'IE', 'Ireland'), +('82.195.143.32', '82.195.143.63', 1388547872, 1388547903, 'GB', 'United Kingdom'), +('82.195.143.64', '82.195.159.255', 1388547904, 1388552191, 'IE', 'Ireland'), +('82.195.160.0', '82.195.191.255', 1388552192, 1388560383, 'GB', 'United Kingdom'), +('82.195.192.0', '82.195.223.255', 1388560384, 1388568575, 'FI', 'Finland'), +('82.195.224.0', '82.195.255.255', 1388568576, 1388576767, 'CH', 'Switzerland'), +('82.196.0.0', '82.196.31.255', 1388576768, 1388584959, 'FR', 'France'), +('82.196.32.0', '82.196.41.223', 1388584960, 1388587487, 'GB', 'United Kingdom'), +('82.196.41.224', '82.196.41.239', 1388587488, 1388587503, 'FR', 'France'), +('82.196.41.240', '82.196.45.255', 1388587504, 1388588543, 'GB', 'United Kingdom'), +('82.196.46.0', '82.196.46.255', 1388588544, 1388588799, 'US', 'United States'), +('82.196.47.0', '82.196.51.255', 1388588800, 1388590079, 'GB', 'United Kingdom'), +('82.196.52.0', '82.196.52.47', 1388590080, 1388590127, 'FR', 'France'), +('82.196.52.48', '82.196.53.255', 1388590128, 1388590591, 'GB', 'United Kingdom'), +('82.196.54.0', '82.196.54.127', 1388590592, 1388590719, 'US', 'United States'), +('82.196.54.128', '82.196.55.255', 1388590720, 1388591103, 'GB', 'United Kingdom'), +('82.196.56.0', '82.196.56.47', 1388591104, 1388591151, 'SG', 'Singapore'), +('82.196.56.48', '82.196.56.63', 1388591152, 1388591167, 'GB', 'United Kingdom'), +('82.196.56.64', '82.196.56.83', 1388591168, 1388591187, 'SG', 'Singapore'), +('82.196.56.84', '82.196.56.95', 1388591188, 1388591199, 'GB', 'United Kingdom'), +('82.196.56.96', '82.196.56.127', 1388591200, 1388591231, 'SG', 'Singapore'), +('82.196.56.128', '82.196.56.191', 1388591232, 1388591295, 'GB', 'United Kingdom'), +('82.196.56.192', '82.196.56.207', 1388591296, 1388591311, 'SG', 'Singapore'), +('82.196.56.208', '82.196.57.255', 1388591312, 1388591615, 'GB', 'United Kingdom'), +('82.196.58.0', '82.196.58.15', 1388591616, 1388591631, 'US', 'United States'), +('82.196.58.16', '82.196.58.31', 1388591632, 1388591647, 'GB', 'United Kingdom'), +('82.196.58.32', '82.196.58.47', 1388591648, 1388591663, 'US', 'United States'), +('82.196.58.48', '82.196.63.255', 1388591664, 1388593151, 'GB', 'United Kingdom'), +('82.196.64.0', '82.196.95.255', 1388593152, 1388601343, 'RU', 'Russian Federation'), +('82.196.96.0', '82.196.127.255', 1388601344, 1388609535, 'SE', 'Sweden'), +('82.196.128.0', '82.196.159.255', 1388609536, 1388617727, 'RU', 'Russian Federation'), +('82.196.160.0', '82.196.191.255', 1388617728, 1388625919, 'SE', 'Sweden'), +('82.196.192.0', '82.196.223.255', 1388625920, 1388634111, 'NO', 'Norway'), +('82.196.224.0', '82.196.255.255', 1388634112, 1388642303, 'GB', 'United Kingdom'), +('82.197.0.0', '82.197.31.255', 1388642304, 1388650495, 'FI', 'Finland'), +('82.197.32.0', '82.197.63.255', 1388650496, 1388658687, 'PL', 'Poland'), +('82.197.64.0', '82.197.95.255', 1388658688, 1388666879, 'GB', 'United Kingdom'), +('82.197.96.0', '82.197.127.255', 1388666880, 1388675071, 'GR', 'Greece'), +('82.197.128.0', '82.197.128.255', 1388675072, 1388675327, 'NL', 'Netherlands'), +('82.197.129.0', '82.197.129.255', 1388675328, 1388675583, 'EU', 'Europe'), +('82.197.130.0', '82.197.135.255', 1388675584, 1388677119, 'DE', 'Germany'), +('82.197.136.0', '82.197.136.255', 1388677120, 1388677375, 'GB', 'United Kingdom'), +('82.197.137.0', '82.197.137.255', 1388677376, 1388677631, 'EU', 'Europe'), +('82.197.138.0', '82.197.138.31', 1388677632, 1388677663, 'AT', 'Austria'), +('82.197.138.32', '82.197.138.255', 1388677664, 1388677887, 'EU', 'Europe'), +('82.197.139.0', '82.197.143.255', 1388677888, 1388679167, 'DE', 'Germany'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('82.197.144.0', '82.197.144.255', 1388679168, 1388679423, 'FR', 'France'), +('82.197.145.0', '82.197.145.31', 1388679424, 1388679455, 'DE', 'Germany'), +('82.197.145.32', '82.197.145.255', 1388679456, 1388679679, 'EU', 'Europe'), +('82.197.146.0', '82.197.155.255', 1388679680, 1388682239, 'DE', 'Germany'), +('82.197.156.0', '82.197.157.255', 1388682240, 1388682751, 'EU', 'Europe'), +('82.197.158.0', '82.197.159.255', 1388682752, 1388683263, 'DE', 'Germany'), +('82.197.160.0', '82.197.191.255', 1388683264, 1388691455, 'CH', 'Switzerland'), +('82.197.192.0', '82.197.223.255', 1388691456, 1388699647, 'NL', 'Netherlands'), +('82.197.224.0', '82.197.255.255', 1388699648, 1388707839, 'SE', 'Sweden'), +('82.198.0.0', '82.198.3.255', 1388707840, 1388708863, 'RU', 'Russian Federation'), +('82.198.4.0', '82.198.4.255', 1388708864, 1388709119, 'LB', 'Lebanon'), +('82.198.5.0', '82.198.19.255', 1388709120, 1388712959, 'RU', 'Russian Federation'), +('82.198.20.0', '82.198.20.255', 1388712960, 1388713215, 'LB', 'Lebanon'), +('82.198.21.0', '82.198.22.255', 1388713216, 1388713727, 'TJ', 'Tajikistan'), +('82.198.23.0', '82.198.23.255', 1388713728, 1388713983, 'LB', 'Lebanon'), +('82.198.24.0', '82.198.24.255', 1388713984, 1388714239, 'AM', 'Armenia'), +('82.198.25.0', '82.198.25.255', 1388714240, 1388714495, 'LT', 'Lithuania'), +('82.198.26.0', '82.198.26.255', 1388714496, 1388714751, 'RU', 'Russian Federation'), +('82.198.27.0', '82.198.27.255', 1388714752, 1388715007, 'IQ', 'Iraq'), +('82.198.28.0', '82.198.28.255', 1388715008, 1388715263, 'LT', 'Lithuania'), +('82.198.29.0', '82.198.29.255', 1388715264, 1388715519, 'LB', 'Lebanon'), +('82.198.30.0', '82.198.30.255', 1388715520, 1388715775, 'LV', 'Latvia'), +('82.198.31.0', '82.198.31.255', 1388715776, 1388716031, 'LT', 'Lithuania'), +('82.198.32.0', '82.198.63.255', 1388716032, 1388724223, 'ES', 'Spain'), +('82.198.64.0', '82.198.81.24', 1388724224, 1388728600, 'DE', 'Germany'), +('82.198.81.25', '82.198.81.32', 1388728601, 1388728608, 'CZ', 'Czech Republic'), +('82.198.81.33', '82.198.81.64', 1388728609, 1388728640, 'DE', 'Germany'), +('82.198.81.65', '82.198.81.97', 1388728641, 1388728673, 'AT', 'Austria'), +('82.198.81.98', '82.198.81.158', 1388728674, 1388728734, 'DE', 'Germany'), +('82.198.81.159', '82.198.81.186', 1388728735, 1388728762, 'AT', 'Austria'), +('82.198.81.187', '82.198.81.207', 1388728763, 1388728783, 'DE', 'Germany'), +('82.198.81.208', '82.198.81.223', 1388728784, 1388728799, 'AT', 'Austria'), +('82.198.81.224', '82.198.81.239', 1388728800, 1388728815, 'DE', 'Germany'), +('82.198.81.240', '82.198.81.244', 1388728816, 1388728820, 'AT', 'Austria'), +('82.198.81.245', '82.198.83.120', 1388728821, 1388729208, 'DE', 'Germany'), +('82.198.83.121', '82.198.83.152', 1388729209, 1388729240, 'AT', 'Austria'), +('82.198.83.153', '82.198.83.192', 1388729241, 1388729280, 'DE', 'Germany'), +('82.198.83.193', '82.198.83.208', 1388729281, 1388729296, 'AT', 'Austria'), +('82.198.83.209', '82.198.83.216', 1388729297, 1388729304, 'DE', 'Germany'), +('82.198.83.217', '82.198.83.232', 1388729305, 1388729320, 'AT', 'Austria'), +('82.198.83.233', '82.198.86.0', 1388729321, 1388729856, 'DE', 'Germany'), +('82.198.86.1', '82.198.86.32', 1388729857, 1388729888, 'AT', 'Austria'), +('82.198.86.33', '82.198.91.0', 1388729889, 1388731136, 'DE', 'Germany'), +('82.198.91.1', '82.198.91.255', 1388731137, 1388731391, 'AT', 'Austria'), +('82.198.92.0', '82.198.95.255', 1388731392, 1388732415, 'DE', 'Germany'), +('82.198.96.0', '82.198.127.255', 1388732416, 1388740607, 'ES', 'Spain'), +('82.198.128.0', '82.198.128.23', 1388740608, 1388740631, 'IE', 'Ireland'), +('82.198.128.24', '82.198.128.31', 1388740632, 1388740639, 'GB', 'United Kingdom'), +('82.198.128.32', '82.198.137.95', 1388740640, 1388743007, 'IE', 'Ireland'), +('82.198.137.96', '82.198.137.103', 1388743008, 1388743015, 'GB', 'United Kingdom'), +('82.198.137.104', '82.198.137.111', 1388743016, 1388743023, 'IE', 'Ireland'), +('82.198.137.112', '82.198.137.127', 1388743024, 1388743039, 'GB', 'United Kingdom'), +('82.198.137.128', '82.198.137.131', 1388743040, 1388743043, 'IE', 'Ireland'), +('82.198.137.132', '82.198.137.255', 1388743044, 1388743167, 'GB', 'United Kingdom'), +('82.198.138.0', '82.198.138.171', 1388743168, 1388743339, 'IE', 'Ireland'), +('82.198.138.172', '82.198.138.175', 1388743340, 1388743343, 'GB', 'United Kingdom'), +('82.198.138.176', '82.198.138.183', 1388743344, 1388743351, 'IE', 'Ireland'), +('82.198.138.184', '82.198.138.191', 1388743352, 1388743359, 'GB', 'United Kingdom'), +('82.198.138.192', '82.198.139.127', 1388743360, 1388743551, 'IE', 'Ireland'), +('82.198.139.128', '82.198.139.135', 1388743552, 1388743559, 'GB', 'United Kingdom'), +('82.198.139.136', '82.198.141.255', 1388743560, 1388744191, 'IE', 'Ireland'), +('82.198.142.0', '82.198.142.255', 1388744192, 1388744447, 'GB', 'United Kingdom'), +('82.198.143.0', '82.198.159.255', 1388744448, 1388748799, 'IE', 'Ireland'), +('82.198.160.0', '82.198.191.255', 1388748800, 1388756991, 'RU', 'Russian Federation'), +('82.198.192.0', '82.198.223.255', 1388756992, 1388765183, 'DE', 'Germany'), +('82.198.224.0', '82.198.255.255', 1388765184, 1388773375, 'GB', 'United Kingdom'), +('82.199.0.0', '82.199.31.255', 1388773376, 1388781567, 'NO', 'Norway'), +('82.199.32.0', '82.199.63.255', 1388781568, 1388789759, 'ES', 'Spain'), +('82.199.64.0', '82.199.95.255', 1388789760, 1388797951, 'NL', 'Netherlands'), +('82.199.96.0', '82.199.127.255', 1388797952, 1388806143, 'RU', 'Russian Federation'), +('82.199.128.0', '82.199.159.255', 1388806144, 1388814335, 'NL', 'Netherlands'), +('82.199.160.0', '82.199.186.127', 1388814336, 1388821119, 'AX', 'Aland Islands'), +('82.199.186.128', '82.199.186.158', 1388821120, 1388821150, 'SE', 'Sweden'), +('82.199.186.159', '82.199.186.255', 1388821151, 1388821247, 'AX', 'Aland Islands'), +('82.199.187.0', '82.199.191.255', 1388821248, 1388822527, 'SE', 'Sweden'), +('82.199.192.0', '82.199.223.255', 1388822528, 1388830719, 'BG', 'Bulgaria'), +('82.199.224.0', '82.199.255.255', 1388830720, 1388838911, 'FI', 'Finland'), +('82.200.0.0', '82.200.127.255', 1388838912, 1388871679, 'RU', 'Russian Federation'), +('82.200.128.0', '82.200.255.255', 1388871680, 1388904447, 'KZ', 'Kazakstan'), +('82.201.0.0', '82.201.127.255', 1388904448, 1388937215, 'NL', 'Netherlands'), +('82.201.128.0', '82.201.255.255', 1388937216, 1388969983, 'EG', 'Egypt'), +('82.202.0.0', '82.202.127.255', 1388969984, 1389002751, 'CZ', 'Czech Republic'), +('82.202.128.0', '82.202.255.255', 1389002752, 1389035519, 'RU', 'Russian Federation'), +('82.203.0.0', '82.203.127.255', 1389035520, 1389068287, 'GB', 'United Kingdom'), +('82.203.128.0', '82.203.255.255', 1389068288, 1389101055, 'FI', 'Finland'), +('82.204.0.0', '82.204.127.255', 1389101056, 1389133823, 'NL', 'Netherlands'), +('82.204.128.0', '82.204.255.255', 1389133824, 1389166591, 'RU', 'Russian Federation'), +('82.205.0.0', '82.205.127.255', 1389166592, 1389199359, 'PS', 'Palestinian Territory, Occupied'), +('82.205.128.0', '82.205.128.255', 1389199360, 1389199615, 'A2', 'Satellite Provider'), +('82.205.129.0', '82.205.129.31', 1389199616, 1389199647, 'IR', 'Iran, Islamic Republic of'), +('82.205.129.32', '82.205.129.127', 1389199648, 1389199743, 'A2', 'Satellite Provider'), +('82.205.129.128', '82.205.129.159', 1389199744, 1389199775, 'IR', 'Iran, Islamic Republic of'), +('82.205.129.160', '82.205.129.255', 1389199776, 1389199871, 'A2', 'Satellite Provider'), +('82.205.130.0', '82.205.130.255', 1389199872, 1389200127, 'IR', 'Iran, Islamic Republic of'), +('82.205.131.0', '82.205.133.255', 1389200128, 1389200895, 'A2', 'Satellite Provider'), +('82.205.134.0', '82.205.134.127', 1389200896, 1389201023, 'KW', 'Kuwait'), +('82.205.134.128', '82.205.134.191', 1389201024, 1389201087, 'A2', 'Satellite Provider'), +('82.205.134.192', '82.205.134.255', 1389201088, 1389201151, 'KW', 'Kuwait'), +('82.205.135.0', '82.205.137.127', 1389201152, 1389201791, 'A2', 'Satellite Provider'), +('82.205.137.128', '82.205.137.255', 1389201792, 1389201919, 'KW', 'Kuwait'), +('82.205.138.0', '82.205.138.255', 1389201920, 1389202175, 'SA', 'Saudi Arabia'), +('82.205.139.0', '82.205.139.15', 1389202176, 1389202191, 'IR', 'Iran, Islamic Republic of'), +('82.205.139.16', '82.205.139.31', 1389202192, 1389202207, 'A2', 'Satellite Provider'), +('82.205.139.32', '82.205.139.47', 1389202208, 1389202223, 'IQ', 'Iraq'), +('82.205.139.48', '82.205.139.63', 1389202224, 1389202239, 'SA', 'Saudi Arabia'), +('82.205.139.64', '82.205.139.127', 1389202240, 1389202303, 'IR', 'Iran, Islamic Republic of'), +('82.205.139.128', '82.205.139.167', 1389202304, 1389202343, 'A2', 'Satellite Provider'), +('82.205.139.168', '82.205.139.175', 1389202344, 1389202351, 'IQ', 'Iraq'), +('82.205.139.176', '82.205.139.191', 1389202352, 1389202367, 'IR', 'Iran, Islamic Republic of'), +('82.205.139.192', '82.205.139.199', 1389202368, 1389202375, 'IQ', 'Iraq'), +('82.205.139.200', '82.205.139.207', 1389202376, 1389202383, 'A2', 'Satellite Provider'), +('82.205.139.208', '82.205.139.215', 1389202384, 1389202391, 'IQ', 'Iraq'), +('82.205.139.216', '82.205.143.191', 1389202392, 1389203391, 'A2', 'Satellite Provider'), +('82.205.143.192', '82.205.143.255', 1389203392, 1389203455, 'IR', 'Iran, Islamic Republic of'), +('82.205.144.0', '82.205.144.31', 1389203456, 1389203487, 'IQ', 'Iraq'), +('82.205.144.32', '82.205.144.95', 1389203488, 1389203551, 'A2', 'Satellite Provider'), +('82.205.144.96', '82.205.144.127', 1389203552, 1389203583, 'IQ', 'Iraq'), +('82.205.144.128', '82.205.146.159', 1389203584, 1389204127, 'A2', 'Satellite Provider'), +('82.205.146.160', '82.205.146.175', 1389204128, 1389204143, 'IR', 'Iran, Islamic Republic of'), +('82.205.146.176', '82.205.146.179', 1389204144, 1389204147, 'A2', 'Satellite Provider'), +('82.205.146.180', '82.205.146.191', 1389204148, 1389204159, 'TM', 'Turkmenistan'), +('82.205.146.192', '82.205.146.199', 1389204160, 1389204167, 'A2', 'Satellite Provider'), +('82.205.146.200', '82.205.146.207', 1389204168, 1389204175, 'IR', 'Iran, Islamic Republic of'), +('82.205.146.208', '82.205.146.215', 1389204176, 1389204183, 'IQ', 'Iraq'), +('82.205.146.216', '82.205.147.63', 1389204184, 1389204287, 'A2', 'Satellite Provider'), +('82.205.147.64', '82.205.147.79', 1389204288, 1389204303, 'SA', 'Saudi Arabia'), +('82.205.147.80', '82.205.147.255', 1389204304, 1389204479, 'A2', 'Satellite Provider'), +('82.205.148.0', '82.205.148.255', 1389204480, 1389204735, 'SA', 'Saudi Arabia'), +('82.205.149.0', '82.205.151.255', 1389204736, 1389205503, 'A2', 'Satellite Provider'), +('82.205.152.0', '82.205.152.127', 1389205504, 1389205631, 'IQ', 'Iraq'), +('82.205.152.128', '82.205.153.175', 1389205632, 1389205935, 'IR', 'Iran, Islamic Republic of'), +('82.205.153.176', '82.205.153.191', 1389205936, 1389205951, 'A2', 'Satellite Provider'), +('82.205.153.192', '82.205.153.207', 1389205952, 1389205967, 'IR', 'Iran, Islamic Republic of'), +('82.205.153.208', '82.205.153.239', 1389205968, 1389205999, 'A2', 'Satellite Provider'), +('82.205.153.240', '82.205.153.255', 1389206000, 1389206015, 'IR', 'Iran, Islamic Republic of'), +('82.205.154.0', '82.205.154.63', 1389206016, 1389206079, 'A2', 'Satellite Provider'), +('82.205.154.64', '82.205.154.79', 1389206080, 1389206095, 'IR', 'Iran, Islamic Republic of'), +('82.205.154.80', '82.205.154.175', 1389206096, 1389206191, 'A2', 'Satellite Provider'), +('82.205.154.176', '82.205.154.183', 1389206192, 1389206199, 'TM', 'Turkmenistan'), +('82.205.154.184', '82.205.154.191', 1389206200, 1389206207, 'SA', 'Saudi Arabia'), +('82.205.154.192', '82.205.154.255', 1389206208, 1389206271, 'A2', 'Satellite Provider'), +('82.205.155.0', '82.205.156.128', 1389206272, 1389206656, 'IR', 'Iran, Islamic Republic of'), +('82.205.156.129', '82.205.156.191', 1389206657, 1389206719, 'A2', 'Satellite Provider'), +('82.205.156.192', '82.205.157.255', 1389206720, 1389207039, 'IR', 'Iran, Islamic Republic of'), +('82.205.158.0', '82.205.158.255', 1389207040, 1389207295, 'A2', 'Satellite Provider'), +('82.205.159.0', '82.205.159.63', 1389207296, 1389207359, 'IR', 'Iran, Islamic Republic of'), +('82.205.159.64', '82.205.159.95', 1389207360, 1389207391, 'SA', 'Saudi Arabia'), +('82.205.159.96', '82.205.159.191', 1389207392, 1389207487, 'IR', 'Iran, Islamic Republic of'), +('82.205.159.192', '82.205.159.199', 1389207488, 1389207495, 'A2', 'Satellite Provider'), +('82.205.159.200', '82.205.159.223', 1389207496, 1389207519, 'SA', 'Saudi Arabia'), +('82.205.159.224', '82.205.159.255', 1389207520, 1389207551, 'IR', 'Iran, Islamic Republic of'), +('82.205.160.0', '82.205.160.255', 1389207552, 1389207807, 'LB', 'Lebanon'), +('82.205.161.0', '82.205.161.255', 1389207808, 1389208063, 'A2', 'Satellite Provider'), +('82.205.162.0', '82.205.162.63', 1389208064, 1389208127, 'AE', 'United Arab Emirates'), +('82.205.162.64', '82.205.162.95', 1389208128, 1389208159, 'A2', 'Satellite Provider'), +('82.205.162.96', '82.205.162.127', 1389208160, 1389208191, 'IR', 'Iran, Islamic Republic of'), +('82.205.162.128', '82.205.165.63', 1389208192, 1389208895, 'A2', 'Satellite Provider'), +('82.205.165.64', '82.205.165.127', 1389208896, 1389208959, 'IQ', 'Iraq'), +('82.205.165.128', '82.205.165.255', 1389208960, 1389209087, 'A2', 'Satellite Provider'), +('82.205.166.0', '82.205.166.255', 1389209088, 1389209343, 'IR', 'Iran, Islamic Republic of'), +('82.205.167.0', '82.205.171.255', 1389209344, 1389210623, 'A2', 'Satellite Provider'), +('82.205.172.0', '82.205.172.7', 1389210624, 1389210631, 'IR', 'Iran, Islamic Republic of'), +('82.205.172.8', '82.205.172.31', 1389210632, 1389210655, 'A2', 'Satellite Provider'), +('82.205.172.32', '82.205.172.127', 1389210656, 1389210751, 'IR', 'Iran, Islamic Republic of'), +('82.205.172.128', '82.205.172.191', 1389210752, 1389210815, 'A2', 'Satellite Provider'), +('82.205.172.192', '82.205.172.255', 1389210816, 1389210879, 'IR', 'Iran, Islamic Republic of'), +('82.205.173.0', '82.205.173.255', 1389210880, 1389211135, 'LB', 'Lebanon'), +('82.205.174.0', '82.205.176.71', 1389211136, 1389211719, 'A2', 'Satellite Provider'), +('82.205.176.72', '82.205.176.79', 1389211720, 1389211727, 'IR', 'Iran, Islamic Republic of'), +('82.205.176.80', '82.205.176.95', 1389211728, 1389211743, 'IQ', 'Iraq'), +('82.205.176.96', '82.205.180.255', 1389211744, 1389212927, 'A2', 'Satellite Provider'), +('82.205.181.0', '82.205.181.63', 1389212928, 1389212991, 'IR', 'Iran, Islamic Republic of'), +('82.205.181.64', '82.205.181.127', 1389212992, 1389213055, 'A2', 'Satellite Provider'), +('82.205.181.128', '82.205.181.159', 1389213056, 1389213087, 'IR', 'Iran, Islamic Republic of'), +('82.205.181.160', '82.205.181.255', 1389213088, 1389213183, 'A2', 'Satellite Provider'), +('82.205.182.0', '82.205.182.15', 1389213184, 1389213199, 'IQ', 'Iraq'), +('82.205.182.16', '82.205.182.255', 1389213200, 1389213439, 'A2', 'Satellite Provider'), +('82.205.183.0', '82.205.183.255', 1389213440, 1389213695, 'LY', 'Libyan Arab Jamahiriya'), +('82.205.184.0', '82.205.184.255', 1389213696, 1389213951, 'LB', 'Lebanon'), +('82.205.185.0', '82.205.185.255', 1389213952, 1389214207, 'A2', 'Satellite Provider'), +('82.205.186.0', '82.205.186.255', 1389214208, 1389214463, 'LY', 'Libyan Arab Jamahiriya'), +('82.205.187.0', '82.205.188.255', 1389214464, 1389214975, 'A2', 'Satellite Provider'), +('82.205.189.0', '82.205.189.63', 1389214976, 1389215039, 'IQ', 'Iraq'), +('82.205.189.64', '82.205.189.255', 1389215040, 1389215231, 'A2', 'Satellite Provider'), +('82.205.190.0', '82.205.199.255', 1389215232, 1389217791, 'AF', 'Afghanistan'), +('82.205.200.0', '82.205.201.255', 1389217792, 1389218303, 'A2', 'Satellite Provider'), +('82.205.202.0', '82.205.207.255', 1389218304, 1389219839, 'AF', 'Afghanistan'), +('82.205.208.0', '82.205.208.255', 1389219840, 1389220095, 'A2', 'Satellite Provider'), +('82.205.209.0', '82.205.209.47', 1389220096, 1389220143, 'SA', 'Saudi Arabia'), +('82.205.209.48', '82.205.209.63', 1389220144, 1389220159, 'A2', 'Satellite Provider'), +('82.205.209.64', '82.205.209.127', 1389220160, 1389220223, 'IQ', 'Iraq'), +('82.205.209.128', '82.205.209.191', 1389220224, 1389220287, 'A2', 'Satellite Provider'), +('82.205.209.192', '82.205.210.127', 1389220288, 1389220479, 'IR', 'Iran, Islamic Republic of'), +('82.205.210.128', '82.205.210.143', 1389220480, 1389220495, 'IQ', 'Iraq'), +('82.205.210.144', '82.205.210.159', 1389220496, 1389220511, 'A2', 'Satellite Provider'), +('82.205.210.160', '82.205.210.191', 1389220512, 1389220543, 'SA', 'Saudi Arabia'), +('82.205.210.192', '82.205.210.223', 1389220544, 1389220575, 'A2', 'Satellite Provider'), +('82.205.210.224', '82.205.210.239', 1389220576, 1389220591, 'IQ', 'Iraq'), +('82.205.210.240', '82.205.210.255', 1389220592, 1389220607, 'A2', 'Satellite Provider'), +('82.205.211.0', '82.205.211.47', 1389220608, 1389220655, 'SA', 'Saudi Arabia'), +('82.205.211.48', '82.205.211.63', 1389220656, 1389220671, 'A2', 'Satellite Provider'), +('82.205.211.64', '82.205.211.79', 1389220672, 1389220687, 'IQ', 'Iraq'), +('82.205.211.80', '82.205.211.95', 1389220688, 1389220703, 'SA', 'Saudi Arabia'), +('82.205.211.96', '82.205.211.127', 1389220704, 1389220735, 'A2', 'Satellite Provider'), +('82.205.211.128', '82.205.211.143', 1389220736, 1389220751, 'IQ', 'Iraq'), +('82.205.211.144', '82.205.211.191', 1389220752, 1389220799, 'SA', 'Saudi Arabia'), +('82.205.211.192', '82.205.212.31', 1389220800, 1389220895, 'A2', 'Satellite Provider'), +('82.205.212.32', '82.205.212.63', 1389220896, 1389220927, 'SA', 'Saudi Arabia'), +('82.205.212.64', '82.205.212.71', 1389220928, 1389220935, 'A2', 'Satellite Provider'), +('82.205.212.72', '82.205.212.79', 1389220936, 1389220943, 'IR', 'Iran, Islamic Republic of'), +('82.205.212.80', '82.205.212.95', 1389220944, 1389220959, 'A2', 'Satellite Provider'), +('82.205.212.96', '82.205.212.111', 1389220960, 1389220975, 'IQ', 'Iraq'), +('82.205.212.112', '82.205.212.255', 1389220976, 1389221119, 'A2', 'Satellite Provider'), +('82.205.213.0', '82.205.214.255', 1389221120, 1389221631, 'LY', 'Libyan Arab Jamahiriya'), +('82.205.215.0', '82.205.218.31', 1389221632, 1389222431, 'SA', 'Saudi Arabia'), +('82.205.218.32', '82.205.218.63', 1389222432, 1389222463, 'IQ', 'Iraq'), +('82.205.218.64', '82.205.218.95', 1389222464, 1389222495, 'A2', 'Satellite Provider'), +('82.205.218.96', '82.205.218.111', 1389222496, 1389222511, 'IQ', 'Iraq'), +('82.205.218.112', '82.205.218.128', 1389222512, 1389222528, 'A2', 'Satellite Provider'), +('82.205.218.129', '82.205.218.142', 1389222529, 1389222542, 'SA', 'Saudi Arabia'), +('82.205.218.143', '82.205.218.175', 1389222543, 1389222575, 'A2', 'Satellite Provider'), +('82.205.218.176', '82.205.218.191', 1389222576, 1389222591, 'SA', 'Saudi Arabia'), +('82.205.218.192', '82.205.218.207', 1389222592, 1389222607, 'IQ', 'Iraq'), +('82.205.218.208', '82.205.218.223', 1389222608, 1389222623, 'A2', 'Satellite Provider'), +('82.205.218.224', '82.205.218.239', 1389222624, 1389222639, 'IR', 'Iran, Islamic Republic of'), +('82.205.218.240', '82.205.219.31', 1389222640, 1389222687, 'A2', 'Satellite Provider'), +('82.205.219.32', '82.205.219.47', 1389222688, 1389222703, 'IR', 'Iran, Islamic Republic of'), +('82.205.219.48', '82.205.219.63', 1389222704, 1389222719, 'SA', 'Saudi Arabia'), +('82.205.219.64', '82.205.219.95', 1389222720, 1389222751, 'IQ', 'Iraq'), +('82.205.219.96', '82.205.219.143', 1389222752, 1389222799, 'A2', 'Satellite Provider'), +('82.205.219.144', '82.205.219.223', 1389222800, 1389222879, 'SA', 'Saudi Arabia'), +('82.205.219.224', '82.205.219.255', 1389222880, 1389222911, 'A2', 'Satellite Provider'), +('82.205.220.0', '82.205.220.255', 1389222912, 1389223167, 'SA', 'Saudi Arabia'), +('82.205.221.0', '82.205.221.15', 1389223168, 1389223183, 'A2', 'Satellite Provider'), +('82.205.221.16', '82.205.221.47', 1389223184, 1389223215, 'SA', 'Saudi Arabia'), +('82.205.221.48', '82.205.221.63', 1389223216, 1389223231, 'A2', 'Satellite Provider'), +('82.205.221.64', '82.205.221.95', 1389223232, 1389223263, 'SA', 'Saudi Arabia'), +('82.205.221.96', '82.205.221.159', 1389223264, 1389223327, 'IQ', 'Iraq'), +('82.205.221.160', '82.205.221.255', 1389223328, 1389223423, 'A2', 'Satellite Provider'), +('82.205.222.0', '82.205.222.47', 1389223424, 1389223471, 'SA', 'Saudi Arabia'), +('82.205.222.48', '82.205.222.63', 1389223472, 1389223487, 'IQ', 'Iraq'), +('82.205.222.64', '82.205.222.95', 1389223488, 1389223519, 'A2', 'Satellite Provider'), +('82.205.222.96', '82.205.222.127', 1389223520, 1389223551, 'IR', 'Iran, Islamic Republic of'), +('82.205.222.128', '82.205.222.255', 1389223552, 1389223679, 'SA', 'Saudi Arabia'), +('82.205.223.0', '82.205.224.255', 1389223680, 1389224191, 'DE', 'Germany'), +('82.205.225.0', '82.205.225.255', 1389224192, 1389224447, 'SA', 'Saudi Arabia'), +('82.205.226.0', '82.205.226.63', 1389224448, 1389224511, 'IR', 'Iran, Islamic Republic of'), +('82.205.226.64', '82.205.226.95', 1389224512, 1389224543, 'A2', 'Satellite Provider'), +('82.205.226.96', '82.205.226.111', 1389224544, 1389224559, 'IR', 'Iran, Islamic Republic of'), +('82.205.226.112', '82.205.226.255', 1389224560, 1389224703, 'A2', 'Satellite Provider'), +('82.205.227.0', '82.205.227.255', 1389224704, 1389224959, 'LY', 'Libyan Arab Jamahiriya'), +('82.205.228.0', '82.205.228.255', 1389224960, 1389225215, 'A2', 'Satellite Provider'), +('82.205.229.0', '82.205.229.255', 1389225216, 1389225471, 'SA', 'Saudi Arabia'), +('82.205.230.0', '82.205.230.63', 1389225472, 1389225535, 'IR', 'Iran, Islamic Republic of'), +('82.205.230.64', '82.205.230.95', 1389225536, 1389225567, 'IQ', 'Iraq'), +('82.205.230.96', '82.205.230.255', 1389225568, 1389225727, 'A2', 'Satellite Provider'), +('82.205.231.0', '82.205.231.255', 1389225728, 1389225983, 'IR', 'Iran, Islamic Republic of'), +('82.205.232.0', '82.205.232.255', 1389225984, 1389226239, 'LY', 'Libyan Arab Jamahiriya'), +('82.205.233.0', '82.205.234.255', 1389226240, 1389226751, 'IR', 'Iran, Islamic Republic of'), +('82.205.235.0', '82.205.237.127', 1389226752, 1389227391, 'A2', 'Satellite Provider'), +('82.205.237.128', '82.205.238.255', 1389227392, 1389227775, 'IR', 'Iran, Islamic Republic of'), +('82.205.239.0', '82.205.239.255', 1389227776, 1389228031, 'A2', 'Satellite Provider'), +('82.205.240.0', '82.205.240.15', 1389228032, 1389228047, 'IQ', 'Iraq'), +('82.205.240.16', '82.205.240.31', 1389228048, 1389228063, 'A2', 'Satellite Provider'), +('82.205.240.32', '82.205.240.63', 1389228064, 1389228095, 'IQ', 'Iraq'), +('82.205.240.64', '82.205.240.95', 1389228096, 1389228127, 'LB', 'Lebanon'), +('82.205.240.96', '82.205.240.143', 1389228128, 1389228175, 'IQ', 'Iraq'), +('82.205.240.144', '82.205.240.255', 1389228176, 1389228287, 'A2', 'Satellite Provider'), +('82.205.241.0', '82.205.241.63', 1389228288, 1389228351, 'IQ', 'Iraq'), +('82.205.241.64', '82.205.241.127', 1389228352, 1389228415, 'AE', 'United Arab Emirates'), +('82.205.241.128', '82.205.241.191', 1389228416, 1389228479, 'LB', 'Lebanon'), +('82.205.241.192', '82.205.242.255', 1389228480, 1389228799, 'A2', 'Satellite Provider'), +('82.205.243.0', '82.205.243.63', 1389228800, 1389228863, 'NG', 'Nigeria'), +('82.205.243.64', '82.205.243.71', 1389228864, 1389228871, 'SO', 'Somalia'), +('82.205.243.72', '82.205.243.255', 1389228872, 1389229055, 'A2', 'Satellite Provider'), +('82.205.244.0', '82.205.244.255', 1389229056, 1389229311, 'FR', 'France'), +('82.205.245.0', '82.205.245.255', 1389229312, 1389229567, 'A2', 'Satellite Provider'), +('82.205.246.0', '82.205.246.127', 1389229568, 1389229695, 'AF', 'Afghanistan'), +('82.205.246.128', '82.205.246.255', 1389229696, 1389229823, 'A2', 'Satellite Provider'), +('82.205.247.0', '82.205.247.255', 1389229824, 1389230079, 'DE', 'Germany'), +('82.205.248.0', '82.205.248.15', 1389230080, 1389230095, 'IR', 'Iran, Islamic Republic of'), +('82.205.248.16', '82.205.248.31', 1389230096, 1389230111, 'A2', 'Satellite Provider'), +('82.205.248.32', '82.205.248.63', 1389230112, 1389230143, 'IR', 'Iran, Islamic Republic of'), +('82.205.248.64', '82.205.252.255', 1389230144, 1389231359, 'A2', 'Satellite Provider'), +('82.205.253.0', '82.205.253.255', 1389231360, 1389231615, 'AE', 'United Arab Emirates'), +('82.205.254.0', '82.205.254.255', 1389231616, 1389231871, 'A2', 'Satellite Provider'), +('82.205.255.0', '82.205.255.255', 1389231872, 1389232127, 'SA', 'Saudi Arabia'), +('82.206.0.0', '82.206.0.191', 1389232128, 1389232319, 'DE', 'Germany'), +('82.206.0.192', '82.206.0.199', 1389232320, 1389232327, 'LT', 'Lithuania'), +('82.206.0.200', '82.206.124.255', 1389232328, 1389264127, 'DE', 'Germany'), +('82.206.125.0', '82.206.126.255', 1389264128, 1389264639, 'ES', 'Spain'), +('82.206.127.0', '82.206.128.15', 1389264640, 1389264911, 'US', 'United States'), +('82.206.128.16', '82.206.128.31', 1389264912, 1389264927, 'CD', 'Congo, The Democratic Republic of the'), +('82.206.128.32', '82.206.128.47', 1389264928, 1389264943, 'GB', 'United Kingdom'), +('82.206.128.48', '82.206.128.63', 1389264944, 1389264959, 'GH', 'Ghana'), +('82.206.128.64', '82.206.128.143', 1389264960, 1389265039, 'TZ', 'Tanzania, United Republic of'), +('82.206.128.144', '82.206.128.159', 1389265040, 1389265055, 'A2', 'Satellite Provider'), +('82.206.128.160', '82.206.128.175', 1389265056, 1389265071, 'ZA', 'South Africa'), +('82.206.128.176', '82.206.128.183', 1389265072, 1389265079, 'GB', 'United Kingdom'), +('82.206.128.184', '82.206.128.191', 1389265080, 1389265087, 'NG', 'Nigeria'), +('82.206.128.192', '82.206.128.231', 1389265088, 1389265127, 'A2', 'Satellite Provider'), +('82.206.128.232', '82.206.128.239', 1389265128, 1389265135, 'BH', 'Bahrain'), +('82.206.128.240', '82.206.128.255', 1389265136, 1389265151, 'A2', 'Satellite Provider'), +('82.206.129.0', '82.206.129.15', 1389265152, 1389265167, 'NG', 'Nigeria'), +('82.206.129.16', '82.206.129.31', 1389265168, 1389265183, 'US', 'United States'), +('82.206.129.32', '82.206.129.47', 1389265184, 1389265199, 'ZA', 'South Africa'), +('82.206.129.48', '82.206.129.79', 1389265200, 1389265231, 'ET', 'Ethiopia'), +('82.206.129.80', '82.206.129.87', 1389265232, 1389265239, 'TZ', 'Tanzania, United Republic of'), +('82.206.129.88', '82.206.129.111', 1389265240, 1389265263, 'A2', 'Satellite Provider'), +('82.206.129.112', '82.206.129.127', 1389265264, 1389265279, 'NG', 'Nigeria'), +('82.206.129.128', '82.206.129.255', 1389265280, 1389265407, 'TD', 'Chad'), +('82.206.130.0', '82.206.130.127', 1389265408, 1389265535, 'US', 'United States'), +('82.206.130.128', '82.206.130.128', 1389265536, 1389265536, 'A2', 'Satellite Provider'), +('82.206.130.129', '82.206.130.143', 1389265537, 1389265551, 'US', 'United States'), +('82.206.130.144', '82.206.130.151', 1389265552, 1389265559, 'CA', 'Canada'), +('82.206.130.152', '82.206.130.159', 1389265560, 1389265567, 'LR', 'Liberia'), +('82.206.130.160', '82.206.130.166', 1389265568, 1389265574, 'GM', 'Gambia'), +('82.206.130.167', '82.206.130.167', 1389265575, 1389265575, 'A2', 'Satellite Provider'), +('82.206.130.168', '82.206.130.183', 1389265576, 1389265591, 'SC', 'Seychelles'), +('82.206.130.184', '82.206.130.190', 1389265592, 1389265598, 'CG', 'Congo'), +('82.206.130.191', '82.206.130.191', 1389265599, 1389265599, 'A2', 'Satellite Provider'), +('82.206.130.192', '82.206.130.255', 1389265600, 1389265663, 'SO', 'Somalia'), +('82.206.131.0', '82.206.131.127', 1389265664, 1389265791, 'ZA', 'South Africa'), +('82.206.131.128', '82.206.131.143', 1389265792, 1389265807, 'A2', 'Satellite Provider'), +('82.206.131.144', '82.206.131.159', 1389265808, 1389265823, 'CA', 'Canada'), +('82.206.131.160', '82.206.131.191', 1389265824, 1389265855, 'NG', 'Nigeria'), +('82.206.131.192', '82.206.131.199', 1389265856, 1389265863, 'US', 'United States'), +('82.206.131.200', '82.206.134.31', 1389265864, 1389266463, 'A2', 'Satellite Provider'), +('82.206.134.32', '82.206.134.39', 1389266464, 1389266471, 'CD', 'Congo, The Democratic Republic of the'), +('82.206.134.40', '82.206.134.111', 1389266472, 1389266543, 'A2', 'Satellite Provider'), +('82.206.134.112', '82.206.134.119', 1389266544, 1389266551, 'CD', 'Congo, The Democratic Republic of the'), +('82.206.134.120', '82.206.134.127', 1389266552, 1389266559, 'A2', 'Satellite Provider'), +('82.206.134.128', '82.206.134.137', 1389266560, 1389266569, 'CD', 'Congo, The Democratic Republic of the'), +('82.206.134.138', '82.206.134.143', 1389266570, 1389266575, 'A2', 'Satellite Provider'), +('82.206.134.144', '82.206.134.159', 1389266576, 1389266591, 'NG', 'Nigeria'), +('82.206.134.160', '82.206.134.167', 1389266592, 1389266599, 'A2', 'Satellite Provider'), +('82.206.134.168', '82.206.134.175', 1389266600, 1389266607, 'NG', 'Nigeria'), +('82.206.134.176', '82.206.134.231', 1389266608, 1389266663, 'A2', 'Satellite Provider'), +('82.206.134.232', '82.206.134.255', 1389266664, 1389266687, 'CD', 'Congo, The Democratic Republic of the'), +('82.206.135.0', '82.206.135.7', 1389266688, 1389266695, 'ZA', 'South Africa'), +('82.206.135.8', '82.206.135.255', 1389266696, 1389266943, 'A2', 'Satellite Provider'), +('82.206.136.0', '82.206.136.255', 1389266944, 1389267199, 'KE', 'Kenya'), +('82.206.137.0', '82.206.137.255', 1389267200, 1389267455, 'CD', 'Congo, The Democratic Republic of the'), +('82.206.138.0', '82.206.139.255', 1389267456, 1389267967, 'A2', 'Satellite Provider'), +('82.206.140.0', '82.206.140.128', 1389267968, 1389268096, 'BI', 'Burundi'), +('82.206.140.129', '82.206.140.255', 1389268097, 1389268223, 'A2', 'Satellite Provider'), +('82.206.141.0', '82.206.141.127', 1389268224, 1389268351, 'US', 'United States'), +('82.206.141.128', '82.206.141.255', 1389268352, 1389268479, 'A2', 'Satellite Provider'), +('82.206.142.0', '82.206.142.127', 1389268480, 1389268607, 'US', 'United States'), +('82.206.142.128', '82.206.142.255', 1389268608, 1389268735, 'GB', 'United Kingdom'), +('82.206.143.0', '82.206.143.127', 1389268736, 1389268863, 'A2', 'Satellite Provider'), +('82.206.143.128', '82.206.143.135', 1389268864, 1389268871, 'KE', 'Kenya'), +('82.206.143.136', '82.206.144.31', 1389268872, 1389269023, 'A2', 'Satellite Provider'), +('82.206.144.32', '82.206.144.39', 1389269024, 1389269031, 'CD', 'Congo, The Democratic Republic of the'), +('82.206.144.40', '82.206.144.63', 1389269032, 1389269055, 'A2', 'Satellite Provider'), +('82.206.144.64', '82.206.144.71', 1389269056, 1389269063, 'CD', 'Congo, The Democratic Republic of the'), +('82.206.144.72', '82.206.144.159', 1389269064, 1389269151, 'A2', 'Satellite Provider'), +('82.206.144.160', '82.206.144.167', 1389269152, 1389269159, 'NG', 'Nigeria'), +('82.206.144.168', '82.206.144.191', 1389269160, 1389269183, 'A2', 'Satellite Provider'), +('82.206.144.192', '82.206.144.223', 1389269184, 1389269215, 'NG', 'Nigeria'), +('82.206.144.224', '82.206.144.255', 1389269216, 1389269247, 'A2', 'Satellite Provider'), +('82.206.145.0', '82.206.145.128', 1389269248, 1389269376, 'NG', 'Nigeria'), +('82.206.145.129', '82.206.146.255', 1389269377, 1389269759, 'A2', 'Satellite Provider'), +('82.206.147.0', '82.206.147.127', 1389269760, 1389269887, 'CD', 'Congo, The Democratic Republic of the'), +('82.206.147.128', '82.206.147.255', 1389269888, 1389270015, 'A2', 'Satellite Provider'), +('82.206.148.0', '82.206.148.255', 1389270016, 1389270271, 'CD', 'Congo, The Democratic Republic of the'), +('82.206.149.0', '82.206.151.31', 1389270272, 1389270815, 'A2', 'Satellite Provider'), +('82.206.151.32', '82.206.151.39', 1389270816, 1389270823, 'US', 'United States'), +('82.206.151.40', '82.206.151.255', 1389270824, 1389271039, 'A2', 'Satellite Provider'), +('82.206.152.0', '82.206.152.255', 1389271040, 1389271295, 'CA', 'Canada'), +('82.206.153.0', '82.206.155.255', 1389271296, 1389272063, 'A2', 'Satellite Provider'), +('82.206.156.0', '82.206.156.127', 1389272064, 1389272191, 'NO', 'Norway'), +('82.206.156.128', '82.206.156.159', 1389272192, 1389272223, 'GB', 'United Kingdom'), +('82.206.156.160', '82.206.157.47', 1389272224, 1389272367, 'A2', 'Satellite Provider'), +('82.206.157.48', '82.206.157.63', 1389272368, 1389272383, 'AE', 'United Arab Emirates'), +('82.206.157.64', '82.206.157.127', 1389272384, 1389272447, 'A2', 'Satellite Provider'), +('82.206.157.128', '82.206.157.255', 1389272448, 1389272575, 'GB', 'United Kingdom'), +('82.206.158.0', '82.206.158.255', 1389272576, 1389272831, 'A2', 'Satellite Provider'), +('82.206.159.0', '82.206.159.127', 1389272832, 1389272959, 'ZA', 'South Africa'), +('82.206.159.128', '82.206.159.255', 1389272960, 1389273087, 'FR', 'France'), +('82.206.160.0', '82.206.160.255', 1389273088, 1389273343, 'LB', 'Lebanon'), +('82.206.161.0', '82.206.161.255', 1389273344, 1389273599, 'AE', 'United Arab Emirates'), +('82.206.162.0', '82.206.162.255', 1389273600, 1389273855, 'MG', 'Madagascar'), +('82.206.163.0', '82.206.163.255', 1389273856, 1389274111, 'NG', 'Nigeria'), +('82.206.164.0', '82.206.164.255', 1389274112, 1389274367, 'A2', 'Satellite Provider'), +('82.206.165.0', '82.206.165.15', 1389274368, 1389274383, 'US', 'United States'), +('82.206.165.16', '82.206.165.31', 1389274384, 1389274399, 'SA', 'Saudi Arabia'), +('82.206.165.32', '82.206.165.63', 1389274400, 1389274431, 'GH', 'Ghana'), +('82.206.165.64', '82.206.165.126', 1389274432, 1389274494, 'US', 'United States'), +('82.206.165.127', '82.206.165.127', 1389274495, 1389274495, 'A2', 'Satellite Provider'), +('82.206.165.128', '82.206.166.127', 1389274496, 1389274751, 'ZA', 'South Africa'), +('82.206.166.128', '82.206.166.191', 1389274752, 1389274815, 'CD', 'Congo, The Democratic Republic of the'), +('82.206.166.192', '82.206.166.215', 1389274816, 1389274839, 'LR', 'Liberia'), +('82.206.166.216', '82.206.166.223', 1389274840, 1389274847, 'A2', 'Satellite Provider'), +('82.206.166.224', '82.206.166.255', 1389274848, 1389274879, 'LR', 'Liberia'), +('82.206.167.0', '82.206.167.255', 1389274880, 1389275135, 'AE', 'United Arab Emirates'), +('82.206.168.0', '82.206.168.255', 1389275136, 1389275391, 'GB', 'United Kingdom'), +('82.206.169.0', '82.206.169.79', 1389275392, 1389275471, 'BD', 'Bangladesh'), +('82.206.169.80', '82.206.169.111', 1389275472, 1389275503, 'A2', 'Satellite Provider'), +('82.206.169.112', '82.206.169.119', 1389275504, 1389275511, 'DE', 'Germany'), +('82.206.169.120', '82.206.170.191', 1389275512, 1389275839, 'A2', 'Satellite Provider'), +('82.206.170.192', '82.206.170.254', 1389275840, 1389275902, 'SA', 'Saudi Arabia'), +('82.206.170.255', '82.206.170.255', 1389275903, 1389275903, 'A2', 'Satellite Provider'), +('82.206.171.0', '82.206.172.255', 1389275904, 1389276415, 'US', 'United States'), +('82.206.173.0', '82.206.173.255', 1389276416, 1389276671, 'MX', 'Mexico'), +('82.206.174.0', '82.206.175.127', 1389276672, 1389277055, 'A2', 'Satellite Provider'), +('82.206.175.128', '82.206.175.255', 1389277056, 1389277183, 'MX', 'Mexico'), +('82.206.176.0', '82.206.176.255', 1389277184, 1389277439, 'A2', 'Satellite Provider'), +('82.206.177.0', '82.206.177.127', 1389277440, 1389277567, 'NP', 'Nepal'), +('82.206.177.128', '82.206.177.255', 1389277568, 1389277695, 'A2', 'Satellite Provider'), +('82.206.178.0', '82.206.178.255', 1389277696, 1389277951, 'AE', 'United Arab Emirates'), +('82.206.179.0', '82.206.179.255', 1389277952, 1389278207, 'A2', 'Satellite Provider'), +('82.206.180.0', '82.206.180.255', 1389278208, 1389278463, 'SN', 'Senegal'), +('82.206.181.0', '82.206.181.255', 1389278464, 1389278719, 'MX', 'Mexico'), +('82.206.182.0', '82.206.182.127', 1389278720, 1389278847, 'DE', 'Germany'), +('82.206.182.128', '82.206.182.255', 1389278848, 1389278975, 'NG', 'Nigeria'), +('82.206.183.0', '82.206.183.127', 1389278976, 1389279103, 'MX', 'Mexico'), +('82.206.183.128', '82.206.183.255', 1389279104, 1389279231, 'NG', 'Nigeria'), +('82.206.184.0', '82.206.184.255', 1389279232, 1389279487, 'US', 'United States'), +('82.206.185.0', '82.206.185.127', 1389279488, 1389279615, 'A2', 'Satellite Provider'), +('82.206.185.128', '82.206.185.255', 1389279616, 1389279743, 'NG', 'Nigeria'), +('82.206.186.0', '82.206.186.255', 1389279744, 1389279999, 'LR', 'Liberia'), +('82.206.187.0', '82.206.187.255', 1389280000, 1389280255, 'CI', 'Cote D''Ivoire'), +('82.206.188.0', '82.206.188.255', 1389280256, 1389280511, 'A2', 'Satellite Provider'), +('82.206.189.0', '82.206.189.255', 1389280512, 1389280767, 'FR', 'France'), +('82.206.190.0', '82.206.190.255', 1389280768, 1389281023, 'VG', 'Virgin Islands, British'), +('82.206.191.0', '82.206.191.255', 1389281024, 1389281279, 'A2', 'Satellite Provider'), +('82.206.192.0', '82.206.194.255', 1389281280, 1389282047, 'ZA', 'South Africa'), +('82.206.195.0', '82.206.197.255', 1389282048, 1389282815, 'A2', 'Satellite Provider'), +('82.206.198.0', '82.206.198.127', 1389282816, 1389282943, 'LR', 'Liberia'), +('82.206.198.128', '82.206.198.255', 1389282944, 1389283071, 'SN', 'Senegal'), +('82.206.199.0', '82.206.199.255', 1389283072, 1389283327, 'A2', 'Satellite Provider'), +('82.206.200.0', '82.206.200.255', 1389283328, 1389283583, 'LR', 'Liberia'), +('82.206.201.0', '82.206.201.127', 1389283584, 1389283711, 'A2', 'Satellite Provider'), +('82.206.201.128', '82.206.201.255', 1389283712, 1389283839, 'ZA', 'South Africa'), +('82.206.202.0', '82.206.203.255', 1389283840, 1389284351, 'A2', 'Satellite Provider'), +('82.206.204.0', '82.206.211.255', 1389284352, 1389286399, 'TZ', 'Tanzania, United Republic of'), +('82.206.212.0', '82.206.215.255', 1389286400, 1389287423, 'A2', 'Satellite Provider'), +('82.206.216.0', '82.206.216.127', 1389287424, 1389287551, 'US', 'United States'), +('82.206.216.128', '82.206.216.255', 1389287552, 1389287679, 'A2', 'Satellite Provider'), +('82.206.217.0', '82.206.217.255', 1389287680, 1389287935, 'DK', 'Denmark'), +('82.206.218.0', '82.206.219.255', 1389287936, 1389288447, 'US', 'United States'), +('82.206.220.0', '82.206.223.255', 1389288448, 1389289471, 'GN', 'Guinea'), +('82.206.224.0', '82.206.227.255', 1389289472, 1389290495, 'GB', 'United Kingdom'), +('82.206.228.0', '82.206.228.255', 1389290496, 1389290751, 'US', 'United States'), +('82.206.229.0', '82.206.229.255', 1389290752, 1389291007, 'FR', 'France'), +('82.206.230.0', '82.206.231.255', 1389291008, 1389291519, 'A2', 'Satellite Provider'), +('82.206.232.0', '82.206.233.79', 1389291520, 1389291855, 'US', 'United States'), +('82.206.233.80', '82.206.233.255', 1389291856, 1389292031, 'A2', 'Satellite Provider'), +('82.206.234.0', '82.206.236.255', 1389292032, 1389292799, 'GH', 'Ghana'), +('82.206.237.0', '82.206.237.255', 1389292800, 1389293055, 'MG', 'Madagascar'), +('82.206.238.0', '82.206.238.255', 1389293056, 1389293311, 'US', 'United States'), +('82.206.239.0', '82.206.239.255', 1389293312, 1389293567, 'KE', 'Kenya'), +('82.206.240.0', '82.206.242.255', 1389293568, 1389294335, 'A2', 'Satellite Provider'), +('82.206.243.0', '82.206.244.127', 1389294336, 1389294719, 'US', 'United States'), +('82.206.244.128', '82.206.244.255', 1389294720, 1389294847, 'IQ', 'Iraq'), +('82.206.245.0', '82.206.247.255', 1389294848, 1389295615, 'US', 'United States'), +('82.206.248.0', '82.206.249.15', 1389295616, 1389295887, 'ZA', 'South Africa'), +('82.206.249.16', '82.206.249.63', 1389295888, 1389295935, 'A2', 'Satellite Provider'), +('82.206.249.64', '82.206.249.95', 1389295936, 1389295967, 'SN', 'Senegal'), +('82.206.249.96', '82.206.249.127', 1389295968, 1389295999, 'A2', 'Satellite Provider'), +('82.206.249.128', '82.206.249.191', 1389296000, 1389296063, 'US', 'United States'), +('82.206.249.192', '82.206.250.255', 1389296064, 1389296383, 'A2', 'Satellite Provider'), +('82.206.251.0', '82.206.251.63', 1389296384, 1389296447, 'AD', 'Andorra'), +('82.206.251.64', '82.206.251.255', 1389296448, 1389296639, 'A2', 'Satellite Provider'), +('82.206.252.0', '82.206.255.0', 1389296640, 1389297408, 'US', 'United States'), +('82.206.255.1', '82.206.255.255', 1389297409, 1389297663, 'A2', 'Satellite Provider'), +('82.207.0.0', '82.207.127.255', 1389297664, 1389330431, 'UA', 'Ukraine'), +('82.207.128.0', '82.207.255.255', 1389330432, 1389363199, 'DE', 'Germany'), +('82.208.0.0', '82.208.63.255', 1389363200, 1389379583, 'CZ', 'Czech Republic'), +('82.208.64.0', '82.208.127.255', 1389379584, 1389395967, 'RU', 'Russian Federation'), +('82.208.128.0', '82.208.191.255', 1389395968, 1389412351, 'RO', 'Romania'), +('82.208.192.0', '82.208.255.255', 1389412352, 1389428735, 'RS', 'Serbia'), +('82.209.0.0', '82.209.63.255', 1389428736, 1389445119, 'CZ', 'Czech Republic'), +('82.209.128.0', '82.209.191.255', 1389461504, 1389477887, 'SE', 'Sweden'), +('82.209.192.0', '82.209.255.255', 1389477888, 1389494271, 'BY', 'Belarus'), +('82.210.0.0', '82.210.31.31', 1389494272, 1389502239, 'DE', 'Germany'), +('82.210.31.32', '82.210.31.63', 1389502240, 1389502271, 'CH', 'Switzerland'), +('82.210.31.64', '82.210.39.255', 1389502272, 1389504511, 'DE', 'Germany'), +('82.210.40.0', '82.210.41.255', 1389504512, 1389505023, 'FR', 'France'), +('82.210.42.0', '82.210.42.255', 1389505024, 1389505279, 'DE', 'Germany'), +('82.210.43.0', '82.210.43.255', 1389505280, 1389505535, 'FR', 'France'), +('82.210.44.0', '82.210.63.255', 1389505536, 1389510655, 'DE', 'Germany'), +('82.210.64.0', '82.210.127.255', 1389510656, 1389527039, 'NL', 'Netherlands'), +('82.210.128.0', '82.210.191.255', 1389527040, 1389543423, 'PL', 'Poland'), +('82.210.192.0', '82.210.233.103', 1389543424, 1389554023, 'DE', 'Germany'), +('82.210.233.104', '82.210.233.119', 1389554024, 1389554039, 'FR', 'France'), +('82.210.233.120', '82.210.233.127', 1389554040, 1389554047, 'TR', 'Turkey'), +('82.210.233.128', '82.210.233.167', 1389554048, 1389554087, 'DE', 'Germany'), +('82.210.233.168', '82.210.233.175', 1389554088, 1389554095, 'ES', 'Spain'), +('82.210.233.176', '82.210.233.183', 1389554096, 1389554103, 'DE', 'Germany'), +('82.210.233.184', '82.210.233.191', 1389554104, 1389554111, 'FR', 'France'), +('82.210.233.192', '82.210.233.215', 1389554112, 1389554135, 'IT', 'Italy'), +('82.210.233.216', '82.210.238.63', 1389554136, 1389555263, 'DE', 'Germany'), +('82.210.238.64', '82.210.238.127', 1389555264, 1389555327, 'AT', 'Austria'), +('82.210.238.128', '82.210.244.15', 1389555328, 1389556751, 'DE', 'Germany'), +('82.210.244.16', '82.210.244.23', 1389556752, 1389556759, 'CH', 'Switzerland'), +('82.210.244.24', '82.210.252.255', 1389556760, 1389559039, 'DE', 'Germany'), +('82.210.253.0', '82.210.253.63', 1389559040, 1389559103, 'CH', 'Switzerland'), +('82.210.253.64', '82.210.255.191', 1389559104, 1389559743, 'DE', 'Germany'), +('82.210.255.192', '82.210.255.255', 1389559744, 1389559807, 'CH', 'Switzerland'), +('82.211.0.0', '82.211.11.255', 1389559808, 1389562879, 'DE', 'Germany'), +('82.211.12.0', '82.211.12.255', 1389562880, 1389563135, 'IT', 'Italy'), +('82.211.13.0', '82.211.63.255', 1389563136, 1389576191, 'DE', 'Germany'), +('82.211.64.0', '82.211.127.255', 1389576192, 1389592575, 'GB', 'United Kingdom'), +('82.211.128.0', '82.211.128.255', 1389592576, 1389592831, 'A2', 'Satellite Provider'), +('82.211.129.0', '82.211.129.255', 1389592832, 1389593087, 'CY', 'Cyprus'), +('82.211.130.0', '82.211.191.255', 1389593088, 1389608959, 'A2', 'Satellite Provider'), +('82.211.192.0', '82.211.255.255', 1389608960, 1389625343, 'DK', 'Denmark'), +('82.212.0.0', '82.212.63.255', 1389625344, 1389641727, 'DE', 'Germany'), +('82.212.64.0', '82.212.127.255', 1389641728, 1389658111, 'JO', 'Jordan'), +('82.212.128.0', '82.212.191.255', 1389658112, 1389674495, 'BE', 'Belgium'), +('82.212.192.0', '82.212.255.255', 1389674496, 1389690879, 'DE', 'Germany'), +('82.213.0.0', '82.213.63.255', 1389690880, 1389707263, 'PS', 'Palestinian Territory, Occupied'), +('82.213.64.0', '82.213.127.255', 1389707264, 1389723647, 'IT', 'Italy'), +('82.213.128.0', '82.213.255.255', 1389723648, 1389756415, 'ES', 'Spain'), +('82.214.0.0', '82.214.63.255', 1389756416, 1389772799, 'SE', 'Sweden'), +('82.214.64.0', '82.214.95.255', 1389772800, 1389780991, 'SI', 'Slovenia'), +('82.214.96.0', '82.214.99.255', 1389780992, 1389782015, 'HR', 'Croatia'), +('82.214.100.0', '82.214.103.255', 1389782016, 1389783039, 'SI', 'Slovenia'), +('82.214.104.0', '82.214.104.255', 1389783040, 1389783295, 'BA', 'Bosnia and Herzegovina'), +('82.214.105.0', '82.214.109.255', 1389783296, 1389784575, 'SI', 'Slovenia'), +('82.214.110.0', '82.214.110.255', 1389784576, 1389784831, 'BA', 'Bosnia and Herzegovina'), +('82.214.111.0', '82.214.125.255', 1389784832, 1389788671, 'SI', 'Slovenia'), +('82.214.126.0', '82.214.126.255', 1389788672, 1389788927, 'RS', 'Serbia'), +('82.214.127.0', '82.214.127.255', 1389788928, 1389789183, 'SI', 'Slovenia'), +('82.214.128.0', '82.214.191.255', 1389789184, 1389805567, 'PL', 'Poland'), +('82.214.192.0', '82.214.255.255', 1389805568, 1389821951, 'US', 'United States'), +('82.215.0.0', '82.215.63.255', 1389821952, 1389838335, 'NL', 'Netherlands'), +('82.215.64.0', '82.215.127.255', 1389838336, 1389854719, 'UZ', 'Uzbekistan'), +('82.215.128.0', '82.215.191.255', 1389854720, 1389871103, 'IT', 'Italy'), +('82.215.192.0', '82.215.255.255', 1389871104, 1389887487, 'FI', 'Finland'), +('82.216.0.0', '82.216.255.255', 1389887488, 1389953023, 'FR', 'France'), +('82.217.0.0', '82.217.255.255', 1389953024, 1390018559, 'NL', 'Netherlands'), +('82.218.0.0', '82.218.255.255', 1390018560, 1390084095, 'AT', 'Austria'), +('82.219.0.0', '82.219.255.255', 1390084096, 1390149631, 'GB', 'United Kingdom'), +('82.220.0.0', '82.220.17.15', 1390149632, 1390153999, 'CH', 'Switzerland'), +('82.220.17.16', '82.220.17.31', 1390154000, 1390154015, 'US', 'United States'), +('82.220.17.32', '82.220.255.255', 1390154016, 1390215167, 'CH', 'Switzerland'), +('82.221.0.0', '82.221.255.255', 1390215168, 1390280703, 'IS', 'Iceland'), +('82.222.0.0', '82.222.255.255', 1390280704, 1390346239, 'TR', 'Turkey'), +('82.223.0.0', '82.223.187.255', 1390346240, 1390394367, 'ES', 'Spain'), +('82.223.188.0', '82.223.189.255', 1390394368, 1390394879, 'PT', 'Portugal'), +('82.223.190.0', '82.223.191.255', 1390394880, 1390395391, 'ES', 'Spain'), +('82.223.192.0', '82.223.195.255', 1390395392, 1390396415, 'FR', 'France'), +('82.223.196.0', '82.223.255.255', 1390396416, 1390411775, 'PT', 'Portugal'), +('82.224.0.0', '82.255.255.255', 1390411776, 1392508927, 'FR', 'France'), +('83.0.0.0', '83.31.255.255', 1392508928, 1394606079, 'PL', 'Poland'), +('83.32.0.0', '83.63.255.255', 1394606080, 1396703231, 'ES', 'Spain'), +('83.64.0.0', '83.65.255.255', 1396703232, 1396834303, 'AT', 'Austria'), +('83.66.0.0', '83.66.255.255', 1396834304, 1396899839, 'TR', 'Turkey'), +('83.67.0.0', '83.67.255.255', 1396899840, 1396965375, 'GB', 'United Kingdom'), +('83.68.0.0', '83.68.31.255', 1396965376, 1396973567, 'NL', 'Netherlands'), +('83.68.32.0', '83.68.63.255', 1396973568, 1396981759, 'RU', 'Russian Federation'), +('83.68.64.0', '83.68.95.255', 1396981760, 1396989951, 'PL', 'Poland'), +('83.68.96.0', '83.68.127.255', 1396989952, 1396998143, 'FR', 'France'), +('83.68.128.0', '83.68.159.255', 1396998144, 1397006335, 'AT', 'Austria'), +('83.68.160.0', '83.68.191.255', 1397006336, 1397014527, 'KW', 'Kuwait'), +('83.68.192.0', '83.68.223.255', 1397014528, 1397022719, 'CH', 'Switzerland'), +('83.68.224.0', '83.68.255.255', 1397022720, 1397030911, 'SE', 'Sweden'), +('83.69.0.0', '83.69.31.255', 1397030912, 1397039103, 'RU', 'Russian Federation'), +('83.69.32.0', '83.69.63.255', 1397039104, 1397047295, 'CZ', 'Czech Republic'), +('83.69.64.0', '83.69.127.255', 1397047296, 1397063679, 'RU', 'Russian Federation'), +('83.69.128.0', '83.69.159.255', 1397063680, 1397071871, 'UZ', 'Uzbekistan'), +('83.69.160.0', '83.69.255.255', 1397071872, 1397096447, 'RU', 'Russian Federation'), +('83.70.0.0', '83.71.255.255', 1397096448, 1397227519, 'IE', 'Ireland'), +('83.72.0.0', '83.75.255.255', 1397227520, 1397489663, 'DK', 'Denmark'), +('83.76.0.0', '83.79.255.255', 1397489664, 1397751807, 'CH', 'Switzerland'), +('83.80.0.0', '83.87.255.255', 1397751808, 1398276095, 'NL', 'Netherlands'), +('83.88.0.0', '83.95.255.255', 1398276096, 1398800383, 'DK', 'Denmark'), +('83.96.0.0', '83.96.127.255', 1398800384, 1398833151, 'KW', 'Kuwait'), +('83.96.128.0', '83.96.191.255', 1398833152, 1398849535, 'NL', 'Netherlands'), +('83.96.192.0', '83.96.194.31', 1398849536, 1398850079, 'BE', 'Belgium'), +('83.96.194.32', '83.96.195.255', 1398850080, 1398850559, 'NL', 'Netherlands'), +('83.96.196.0', '83.96.196.127', 1398850560, 1398850687, 'BE', 'Belgium'), +('83.96.196.128', '83.96.196.191', 1398850688, 1398850751, 'NL', 'Netherlands'), +('83.96.196.192', '83.96.198.159', 1398850752, 1398851231, 'BE', 'Belgium'), +('83.96.198.160', '83.96.198.191', 1398851232, 1398851263, 'NL', 'Netherlands'), +('83.96.198.192', '83.96.202.255', 1398851264, 1398852351, 'BE', 'Belgium'), +('83.96.203.0', '83.96.204.255', 1398852352, 1398852863, 'NL', 'Netherlands'), +('83.96.205.0', '83.96.205.255', 1398852864, 1398853119, 'BE', 'Belgium'), +('83.96.206.0', '83.96.255.255', 1398853120, 1398865919, 'NL', 'Netherlands'), +('83.97.0.0', '83.97.7.255', 1398865920, 1398867967, 'DE', 'Germany'), +('83.97.8.0', '83.97.15.255', 1398867968, 1398870015, 'NL', 'Netherlands'), +('83.97.16.0', '83.97.23.255', 1398870016, 1398872063, 'PL', 'Poland'), +('83.97.24.0', '83.97.31.255', 1398872064, 1398874111, 'BG', 'Bulgaria'), +('83.97.32.0', '83.97.39.255', 1398874112, 1398876159, 'GB', 'United Kingdom'), +('83.97.40.0', '83.97.55.255', 1398876160, 1398880255, 'DE', 'Germany'), +('83.97.56.0', '83.97.63.255', 1398880256, 1398882303, 'FR', 'France'), +('83.97.64.0', '83.97.71.255', 1398882304, 1398884351, 'BG', 'Bulgaria'), +('83.97.72.0', '83.97.79.255', 1398884352, 1398886399, 'DE', 'Germany'), +('83.97.80.0', '83.97.87.255', 1398886400, 1398888447, 'CH', 'Switzerland'), +('83.97.88.0', '83.97.95.255', 1398888448, 1398890495, 'GB', 'United Kingdom'), +('83.97.96.0', '83.97.103.255', 1398890496, 1398892543, 'DK', 'Denmark'), +('83.97.104.0', '83.97.111.255', 1398892544, 1398894591, 'UA', 'Ukraine'), +('83.97.112.0', '83.97.119.255', 1398894592, 1398896639, 'DE', 'Germany'), +('83.97.120.0', '83.97.127.255', 1398896640, 1398898687, 'CH', 'Switzerland'), +('83.97.128.0', '83.97.255.255', 1398898688, 1398931455, 'ES', 'Spain'), +('83.98.0.0', '83.98.127.255', 1398931456, 1398964223, 'GB', 'United Kingdom'), +('83.98.128.0', '83.98.133.255', 1398964224, 1398965759, 'NL', 'Netherlands'), +('83.98.134.0', '83.98.134.127', 1398965760, 1398965887, 'CH', 'Switzerland'), +('83.98.134.128', '83.98.142.63', 1398965888, 1398967871, 'NL', 'Netherlands'), +('83.98.142.64', '83.98.142.95', 1398967872, 1398967903, 'IE', 'Ireland'), +('83.98.142.96', '83.98.142.255', 1398967904, 1398968063, 'NL', 'Netherlands'), +('83.98.143.0', '83.98.143.255', 1398968064, 1398968319, 'DE', 'Germany'), +('83.98.144.0', '83.98.159.159', 1398968320, 1398972319, 'NL', 'Netherlands'), +('83.98.159.160', '83.98.159.191', 1398972320, 1398972351, 'US', 'United States'), +('83.98.159.192', '83.98.159.255', 1398972352, 1398972415, 'NL', 'Netherlands'), +('83.98.160.0', '83.98.160.255', 1398972416, 1398972671, 'IE', 'Ireland'), +('83.98.161.0', '83.98.164.255', 1398972672, 1398973695, 'NL', 'Netherlands'), +('83.98.165.0', '83.98.165.255', 1398973696, 1398973951, 'DE', 'Germany'), +('83.98.166.0', '83.98.166.255', 1398973952, 1398974207, 'IE', 'Ireland'), +('83.98.167.0', '83.98.187.255', 1398974208, 1398979583, 'NL', 'Netherlands'), +('83.98.188.0', '83.98.188.255', 1398979584, 1398979839, 'GB', 'United Kingdom'), +('83.98.189.0', '83.98.193.9', 1398979840, 1398980873, 'NL', 'Netherlands'), +('83.98.193.10', '83.98.193.17', 1398980874, 1398980881, 'US', 'United States'), +('83.98.193.18', '83.98.193.19', 1398980882, 1398980883, 'NL', 'Netherlands'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('83.98.193.20', '83.98.193.25', 1398980884, 1398980889, 'US', 'United States'), +('83.98.193.26', '83.98.193.98', 1398980890, 1398980962, 'NL', 'Netherlands'), +('83.98.193.99', '83.98.193.111', 1398980963, 1398980975, 'US', 'United States'), +('83.98.193.112', '83.98.197.255', 1398980976, 1398982143, 'NL', 'Netherlands'), +('83.98.198.0', '83.98.198.255', 1398982144, 1398982399, 'US', 'United States'), +('83.98.199.0', '83.98.202.255', 1398982400, 1398983423, 'NL', 'Netherlands'), +('83.98.203.0', '83.98.203.63', 1398983424, 1398983487, 'GB', 'United Kingdom'), +('83.98.203.64', '83.98.203.95', 1398983488, 1398983519, 'JE', 'Jersey'), +('83.98.203.96', '83.98.203.127', 1398983520, 1398983551, 'GB', 'United Kingdom'), +('83.98.203.128', '83.98.203.255', 1398983552, 1398983679, 'NL', 'Netherlands'), +('83.98.204.0', '83.98.205.255', 1398983680, 1398984191, 'US', 'United States'), +('83.98.206.0', '83.98.255.255', 1398984192, 1398996991, 'NL', 'Netherlands'), +('83.99.0.0', '83.99.127.255', 1398996992, 1399029759, 'LU', 'Luxembourg'), +('83.99.128.0', '83.99.255.255', 1399029760, 1399062527, 'LV', 'Latvia'), +('83.100.0.0', '83.100.127.255', 1399062528, 1399095295, 'FI', 'Finland'), +('83.100.128.0', '83.100.255.255', 1399095296, 1399128063, 'GB', 'United Kingdom'), +('83.101.0.0', '83.101.127.255', 1399128064, 1399160831, 'BE', 'Belgium'), +('83.101.128.0', '83.101.255.255', 1399160832, 1399193599, 'SA', 'Saudi Arabia'), +('83.102.0.0', '83.102.127.255', 1399193600, 1399226367, 'FI', 'Finland'), +('83.102.128.0', '83.102.255.255', 1399226368, 1399259135, 'RU', 'Russian Federation'), +('83.103.0.0', '83.103.127.255', 1399259136, 1399291903, 'IT', 'Italy'), +('83.103.128.0', '83.103.255.255', 1399291904, 1399324671, 'RO', 'Romania'), +('83.104.0.0', '83.107.255.255', 1399324672, 1399586815, 'GB', 'United Kingdom'), +('83.108.0.0', '83.109.255.255', 1399586816, 1399717887, 'NO', 'Norway'), +('83.110.0.0', '83.111.255.255', 1399717888, 1399848959, 'AE', 'United Arab Emirates'), +('83.112.0.0', '83.115.255.255', 1399848960, 1400111103, 'FR', 'France'), +('83.116.0.0', '83.119.255.255', 1400111104, 1400373247, 'NL', 'Netherlands'), +('83.120.0.0', '83.125.59.255', 1400373248, 1400716287, 'DE', 'Germany'), +('83.125.60.0', '83.125.63.255', 1400716288, 1400717311, 'EU', 'Europe'), +('83.125.64.0', '83.125.67.255', 1400717312, 1400718335, 'DE', 'Germany'), +('83.125.68.0', '83.125.69.255', 1400718336, 1400718847, 'EU', 'Europe'), +('83.125.70.0', '83.125.79.255', 1400718848, 1400721407, 'DE', 'Germany'), +('83.125.80.0', '83.125.95.255', 1400721408, 1400725503, 'EU', 'Europe'), +('83.125.96.0', '83.125.116.15', 1400725504, 1400730639, 'DE', 'Germany'), +('83.125.116.16', '83.125.117.255', 1400730640, 1400731135, 'EU', 'Europe'), +('83.125.118.0', '83.125.127.255', 1400731136, 1400733695, 'DE', 'Germany'), +('83.125.128.0', '83.127.255.255', 1400733696, 1400897535, 'EU', 'Europe'), +('83.128.0.0', '83.128.255.255', 1400897536, 1400963071, 'NL', 'Netherlands'), +('83.129.0.0', '83.129.255.255', 1400963072, 1401028607, 'DE', 'Germany'), +('83.130.0.0', '83.130.255.255', 1401028608, 1401094143, 'IL', 'Israel'), +('83.131.0.0', '83.131.255.255', 1401094144, 1401159679, 'HR', 'Croatia'), +('83.132.0.0', '83.132.255.255', 1401159680, 1401225215, 'PT', 'Portugal'), +('83.133.0.0', '83.133.63.255', 1401225216, 1401241599, 'DE', 'Germany'), +('83.133.64.0', '83.133.67.255', 1401241600, 1401242623, 'DK', 'Denmark'), +('83.133.68.0', '83.133.69.255', 1401242624, 1401243135, 'DE', 'Germany'), +('83.133.70.0', '83.133.71.255', 1401243136, 1401243647, 'EU', 'Europe'), +('83.133.72.0', '83.133.73.255', 1401243648, 1401244159, 'DE', 'Germany'), +('83.133.74.0', '83.133.83.255', 1401244160, 1401246719, 'EU', 'Europe'), +('83.133.84.0', '83.133.155.7', 1401246720, 1401264903, 'DE', 'Germany'), +('83.133.155.8', '83.133.155.255', 1401264904, 1401265151, 'EU', 'Europe'), +('83.133.156.0', '83.133.158.255', 1401265152, 1401265919, 'DE', 'Germany'), +('83.133.159.0', '83.133.159.255', 1401265920, 1401266175, 'EU', 'Europe'), +('83.133.160.0', '83.133.177.255', 1401266176, 1401270783, 'DE', 'Germany'), +('83.133.178.0', '83.133.179.255', 1401270784, 1401271295, 'EU', 'Europe'), +('83.133.180.0', '83.133.227.255', 1401271296, 1401283583, 'DE', 'Germany'), +('83.133.228.0', '83.133.239.255', 1401283584, 1401286655, 'EU', 'Europe'), +('83.133.240.0', '83.133.255.255', 1401286656, 1401290751, 'DE', 'Germany'), +('83.134.0.0', '83.134.255.255', 1401290752, 1401356287, 'BE', 'Belgium'), +('83.135.0.0', '83.135.255.255', 1401356288, 1401421823, 'DE', 'Germany'), +('83.136.0.0', '83.136.5.31', 1401421824, 1401423135, 'GB', 'United Kingdom'), +('83.136.5.32', '83.136.5.63', 1401423136, 1401423167, 'IN', 'India'), +('83.136.5.64', '83.136.5.95', 1401423168, 1401423199, 'GB', 'United Kingdom'), +('83.136.5.96', '83.136.5.127', 1401423200, 1401423231, 'US', 'United States'), +('83.136.5.128', '83.136.7.255', 1401423232, 1401423871, 'GB', 'United Kingdom'), +('83.136.8.0', '83.136.8.31', 1401423872, 1401423903, 'AE', 'United Arab Emirates'), +('83.136.8.32', '83.136.8.95', 1401423904, 1401423967, 'GR', 'Greece'), +('83.136.8.96', '83.136.8.127', 1401423968, 1401423999, 'SA', 'Saudi Arabia'), +('83.136.8.128', '83.136.12.255', 1401424000, 1401425151, 'AE', 'United Arab Emirates'), +('83.136.13.0', '83.136.13.255', 1401425152, 1401425407, 'GR', 'Greece'), +('83.136.14.0', '83.136.15.255', 1401425408, 1401425919, 'AE', 'United Arab Emirates'), +('83.136.16.0', '83.136.23.255', 1401425920, 1401427967, 'NL', 'Netherlands'), +('83.136.24.0', '83.136.31.255', 1401427968, 1401430015, 'RU', 'Russian Federation'), +('83.136.32.0', '83.136.39.255', 1401430016, 1401432063, 'AT', 'Austria'), +('83.136.40.0', '83.136.47.255', 1401432064, 1401434111, 'IE', 'Ireland'), +('83.136.48.0', '83.136.55.255', 1401434112, 1401436159, 'RU', 'Russian Federation'), +('83.136.56.0', '83.136.63.255', 1401436160, 1401438207, 'BH', 'Bahrain'), +('83.136.64.0', '83.136.71.255', 1401438208, 1401440255, 'GB', 'United Kingdom'), +('83.136.72.0', '83.136.84.159', 1401440256, 1401443487, 'DE', 'Germany'), +('83.136.84.160', '83.136.84.191', 1401443488, 1401443519, 'GI', 'Gibraltar'), +('83.136.84.192', '83.136.87.255', 1401443520, 1401444351, 'DE', 'Germany'), +('83.136.88.0', '83.136.95.255', 1401444352, 1401446399, 'DK', 'Denmark'), +('83.136.96.0', '83.136.103.255', 1401446400, 1401448447, 'DE', 'Germany'), +('83.136.104.0', '83.136.111.255', 1401448448, 1401450495, 'IT', 'Italy'), +('83.136.112.0', '83.136.119.255', 1401450496, 1401452543, 'RU', 'Russian Federation'), +('83.136.120.0', '83.136.127.255', 1401452544, 1401454591, 'GB', 'United Kingdom'), +('83.136.128.0', '83.136.135.255', 1401454592, 1401456639, 'DE', 'Germany'), +('83.136.136.0', '83.136.143.255', 1401456640, 1401458687, 'LV', 'Latvia'), +('83.136.144.0', '83.136.151.255', 1401458688, 1401460735, 'IT', 'Italy'), +('83.136.152.0', '83.136.159.255', 1401460736, 1401462783, 'PL', 'Poland'), +('83.136.160.0', '83.136.167.255', 1401462784, 1401464831, 'FR', 'France'), +('83.136.168.0', '83.136.175.255', 1401464832, 1401466879, 'IE', 'Ireland'), +('83.136.176.0', '83.136.183.255', 1401466880, 1401468927, 'RS', 'Serbia'), +('83.136.184.0', '83.136.191.255', 1401468928, 1401470975, 'ES', 'Spain'), +('83.136.192.0', '83.136.199.255', 1401470976, 1401473023, 'NL', 'Netherlands'), +('83.136.200.0', '83.136.207.255', 1401473024, 1401475071, 'CZ', 'Czech Republic'), +('83.136.208.0', '83.136.215.255', 1401475072, 1401477119, 'FR', 'France'), +('83.136.216.0', '83.136.223.255', 1401477120, 1401479167, 'BE', 'Belgium'), +('83.136.224.0', '83.136.231.255', 1401479168, 1401481215, 'PL', 'Poland'), +('83.136.232.0', '83.136.247.255', 1401481216, 1401485311, 'RU', 'Russian Federation'), +('83.136.248.0', '83.136.251.15', 1401485312, 1401486095, 'IT', 'Italy'), +('83.136.251.16', '83.136.251.31', 1401486096, 1401486111, 'CH', 'Switzerland'), +('83.136.251.32', '83.136.255.255', 1401486112, 1401487359, 'IT', 'Italy'), +('83.137.0.0', '83.137.7.255', 1401487360, 1401489407, 'GB', 'United Kingdom'), +('83.137.8.0', '83.137.15.255', 1401489408, 1401491455, 'SE', 'Sweden'), +('83.137.16.0', '83.137.23.255', 1401491456, 1401493503, 'NL', 'Netherlands'), +('83.137.24.0', '83.137.31.255', 1401493504, 1401495551, 'CH', 'Switzerland'), +('83.137.32.0', '83.137.39.255', 1401495552, 1401497599, 'DK', 'Denmark'), +('83.137.40.0', '83.137.47.255', 1401497600, 1401499647, 'AT', 'Austria'), +('83.137.48.0', '83.137.55.255', 1401499648, 1401501695, 'RU', 'Russian Federation'), +('83.137.56.0', '83.137.56.95', 1401501696, 1401501791, 'IT', 'Italy'), +('83.137.56.96', '83.137.57.255', 1401501792, 1401502207, 'A2', 'Satellite Provider'), +('83.137.58.0', '83.137.58.255', 1401502208, 1401502463, 'IT', 'Italy'), +('83.137.59.0', '83.137.63.255', 1401502464, 1401503743, 'A2', 'Satellite Provider'), +('83.137.64.0', '83.137.71.255', 1401503744, 1401505791, 'DE', 'Germany'), +('83.137.72.0', '83.137.87.255', 1401505792, 1401509887, 'CH', 'Switzerland'), +('83.137.88.0', '83.137.95.255', 1401509888, 1401511935, 'UA', 'Ukraine'), +('83.137.96.0', '83.137.103.255', 1401511936, 1401513983, 'DE', 'Germany'), +('83.137.104.0', '83.137.111.255', 1401513984, 1401516031, 'IT', 'Italy'), +('83.137.112.0', '83.137.119.255', 1401516032, 1401518079, 'AT', 'Austria'), +('83.137.120.0', '83.137.127.255', 1401518080, 1401520127, 'IT', 'Italy'), +('83.137.128.0', '83.137.135.255', 1401520128, 1401522175, 'GB', 'United Kingdom'), +('83.137.136.0', '83.137.151.255', 1401522176, 1401526271, 'NL', 'Netherlands'), +('83.137.152.0', '83.137.159.255', 1401526272, 1401528319, 'DE', 'Germany'), +('83.137.160.0', '83.137.167.255', 1401528320, 1401530367, 'IT', 'Italy'), +('83.137.168.0', '83.137.175.255', 1401530368, 1401532415, 'DE', 'Germany'), +('83.137.176.0', '83.137.183.255', 1401532416, 1401534463, 'GB', 'United Kingdom'), +('83.137.184.0', '83.137.191.255', 1401534464, 1401536511, 'DE', 'Germany'), +('83.137.192.0', '83.137.199.255', 1401536512, 1401538559, 'NL', 'Netherlands'), +('83.137.200.0', '83.137.207.255', 1401538560, 1401540607, 'NO', 'Norway'), +('83.137.208.0', '83.137.215.255', 1401540608, 1401542655, 'GB', 'United Kingdom'), +('83.137.216.0', '83.137.223.255', 1401542656, 1401544703, 'RU', 'Russian Federation'), +('83.137.224.0', '83.137.231.255', 1401544704, 1401546751, 'GB', 'United Kingdom'), +('83.137.232.0', '83.137.239.255', 1401546752, 1401548799, 'IT', 'Italy'), +('83.137.240.0', '83.137.247.255', 1401548800, 1401550847, 'FR', 'France'), +('83.137.248.0', '83.137.255.255', 1401550848, 1401552895, 'GB', 'United Kingdom'), +('83.138.0.0', '83.138.7.255', 1401552896, 1401554943, 'NL', 'Netherlands'), +('83.138.8.0', '83.138.15.255', 1401554944, 1401556991, 'IE', 'Ireland'), +('83.138.16.0', '83.138.39.255', 1401556992, 1401563135, 'GB', 'United Kingdom'), +('83.138.40.0', '83.138.47.255', 1401563136, 1401565183, 'ES', 'Spain'), +('83.138.48.0', '83.138.55.255', 1401565184, 1401567231, 'RU', 'Russian Federation'), +('83.138.56.0', '83.138.63.255', 1401567232, 1401569279, 'GB', 'United Kingdom'), +('83.138.64.0', '83.138.127.255', 1401569280, 1401585663, 'DE', 'Germany'), +('83.138.128.0', '83.138.164.207', 1401585664, 1401595087, 'GB', 'United Kingdom'), +('83.138.164.208', '83.138.164.215', 1401595088, 1401595095, 'NG', 'Nigeria'), +('83.138.164.216', '83.138.180.191', 1401595096, 1401599167, 'GB', 'United Kingdom'), +('83.138.180.192', '83.138.180.255', 1401599168, 1401599231, 'IE', 'Ireland'), +('83.138.181.0', '83.138.191.255', 1401599232, 1401602047, 'GB', 'United Kingdom'), +('83.138.192.0', '83.138.255.255', 1401602048, 1401618431, 'ES', 'Spain'), +('83.139.0.0', '83.139.63.255', 1401618432, 1401634815, 'AM', 'Armenia'), +('83.139.64.0', '83.139.127.255', 1401634816, 1401651199, 'HR', 'Croatia'), +('83.139.128.0', '83.139.191.255', 1401651200, 1401667583, 'RU', 'Russian Federation'), +('83.139.192.0', '83.139.255.255', 1401667584, 1401683967, 'IT', 'Italy'), +('83.140.0.0', '83.140.1.255', 1401683968, 1401684479, 'SE', 'Sweden'), +('83.140.2.0', '83.140.2.31', 1401684480, 1401684511, 'DK', 'Denmark'), +('83.140.2.32', '83.140.2.63', 1401684512, 1401684543, 'SE', 'Sweden'), +('83.140.2.64', '83.140.2.127', 1401684544, 1401684607, 'DK', 'Denmark'), +('83.140.2.128', '83.140.2.251', 1401684608, 1401684731, 'SE', 'Sweden'), +('83.140.2.252', '83.140.2.255', 1401684732, 1401684735, 'DK', 'Denmark'), +('83.140.3.0', '83.140.3.19', 1401684736, 1401684755, 'NO', 'Norway'), +('83.140.3.20', '83.140.3.63', 1401684756, 1401684799, 'SE', 'Sweden'), +('83.140.3.64', '83.140.3.127', 1401684800, 1401684863, 'NO', 'Norway'), +('83.140.3.128', '83.140.7.255', 1401684864, 1401686015, 'SE', 'Sweden'), +('83.140.8.0', '83.140.8.39', 1401686016, 1401686055, 'GB', 'United Kingdom'), +('83.140.8.40', '83.140.8.63', 1401686056, 1401686079, 'SE', 'Sweden'), +('83.140.8.64', '83.140.8.127', 1401686080, 1401686143, 'GB', 'United Kingdom'), +('83.140.8.128', '83.140.8.251', 1401686144, 1401686267, 'SE', 'Sweden'), +('83.140.8.252', '83.140.8.255', 1401686268, 1401686271, 'GB', 'United Kingdom'), +('83.140.9.0', '83.140.9.15', 1401686272, 1401686287, 'NL', 'Netherlands'), +('83.140.9.16', '83.140.9.63', 1401686288, 1401686335, 'SE', 'Sweden'), +('83.140.9.64', '83.140.9.127', 1401686336, 1401686399, 'NL', 'Netherlands'), +('83.140.9.128', '83.140.9.255', 1401686400, 1401686527, 'SE', 'Sweden'), +('83.140.10.0', '83.140.10.15', 1401686528, 1401686543, 'GB', 'United Kingdom'), +('83.140.10.16', '83.140.10.63', 1401686544, 1401686591, 'SE', 'Sweden'), +('83.140.10.64', '83.140.10.127', 1401686592, 1401686655, 'US', 'United States'), +('83.140.10.128', '83.140.11.127', 1401686656, 1401686911, 'SE', 'Sweden'), +('83.140.11.128', '83.140.11.143', 1401686912, 1401686927, 'DE', 'Germany'), +('83.140.11.144', '83.140.29.127', 1401686928, 1401691519, 'SE', 'Sweden'), +('83.140.29.128', '83.140.29.143', 1401691520, 1401691535, 'DE', 'Germany'), +('83.140.29.144', '83.140.54.23', 1401691536, 1401697815, 'SE', 'Sweden'), +('83.140.54.24', '83.140.54.31', 1401697816, 1401697823, 'DE', 'Germany'), +('83.140.54.32', '83.140.117.127', 1401697824, 1401714047, 'SE', 'Sweden'), +('83.140.117.128', '83.140.117.143', 1401714048, 1401714063, 'FR', 'France'), +('83.140.117.144', '83.140.131.255', 1401714064, 1401717759, 'SE', 'Sweden'), +('83.140.132.0', '83.140.132.255', 1401717760, 1401718015, 'NL', 'Netherlands'), +('83.140.133.0', '83.140.140.127', 1401718016, 1401719935, 'SE', 'Sweden'), +('83.140.140.128', '83.140.140.143', 1401719936, 1401719951, 'DK', 'Denmark'), +('83.140.140.144', '83.140.173.79', 1401719952, 1401728335, 'SE', 'Sweden'), +('83.140.173.80', '83.140.173.95', 1401728336, 1401728351, 'NL', 'Netherlands'), +('83.140.173.96', '83.140.173.175', 1401728352, 1401728431, 'SE', 'Sweden'), +('83.140.173.176', '83.140.173.191', 1401728432, 1401728447, 'NL', 'Netherlands'), +('83.140.173.192', '83.140.229.255', 1401728448, 1401742847, 'SE', 'Sweden'), +('83.140.230.0', '83.140.230.31', 1401742848, 1401742879, 'GB', 'United Kingdom'), +('83.140.230.32', '83.140.230.255', 1401742880, 1401743103, 'SE', 'Sweden'), +('83.140.231.0', '83.140.231.15', 1401743104, 1401743119, 'GB', 'United Kingdom'), +('83.140.231.16', '83.140.241.255', 1401743120, 1401745919, 'SE', 'Sweden'), +('83.140.242.0', '83.140.242.15', 1401745920, 1401745935, 'IT', 'Italy'), +('83.140.242.16', '83.140.242.255', 1401745936, 1401746175, 'SE', 'Sweden'), +('83.140.243.0', '83.140.243.15', 1401746176, 1401746191, 'DK', 'Denmark'), +('83.140.243.16', '83.140.243.39', 1401746192, 1401746215, 'SE', 'Sweden'), +('83.140.243.40', '83.140.243.47', 1401746216, 1401746223, 'GB', 'United Kingdom'), +('83.140.243.48', '83.140.243.255', 1401746224, 1401746431, 'SE', 'Sweden'), +('83.140.244.0', '83.140.244.15', 1401746432, 1401746447, 'NL', 'Netherlands'), +('83.140.244.16', '83.140.244.35', 1401746448, 1401746467, 'SE', 'Sweden'), +('83.140.244.36', '83.140.244.39', 1401746468, 1401746471, 'NL', 'Netherlands'), +('83.140.244.40', '83.140.244.55', 1401746472, 1401746487, 'GB', 'United Kingdom'), +('83.140.244.56', '83.140.244.255', 1401746488, 1401746687, 'SE', 'Sweden'), +('83.140.245.0', '83.140.245.15', 1401746688, 1401746703, 'NO', 'Norway'), +('83.140.245.16', '83.140.245.255', 1401746704, 1401746943, 'SE', 'Sweden'), +('83.140.246.0', '83.140.246.15', 1401746944, 1401746959, 'FR', 'France'), +('83.140.246.16', '83.140.246.255', 1401746960, 1401747199, 'SE', 'Sweden'), +('83.140.247.0', '83.140.247.15', 1401747200, 1401747215, 'IT', 'Italy'), +('83.140.247.16', '83.140.254.143', 1401747216, 1401749135, 'SE', 'Sweden'), +('83.140.254.144', '83.140.254.159', 1401749136, 1401749151, 'DE', 'Germany'), +('83.140.254.160', '83.140.255.255', 1401749152, 1401749503, 'SE', 'Sweden'), +('83.141.0.0', '83.141.13.255', 1401749504, 1401753087, 'DE', 'Germany'), +('83.141.14.0', '83.141.14.255', 1401753088, 1401753343, 'AT', 'Austria'), +('83.141.15.0', '83.141.37.255', 1401753344, 1401759231, 'DE', 'Germany'), +('83.141.38.0', '83.141.38.255', 1401759232, 1401759487, 'GB', 'United Kingdom'), +('83.141.39.0', '83.141.41.255', 1401759488, 1401760255, 'DE', 'Germany'), +('83.141.42.0', '83.141.43.255', 1401760256, 1401760767, 'SK', 'Slovakia'), +('83.141.44.0', '83.141.63.255', 1401760768, 1401765887, 'DE', 'Germany'), +('83.141.64.0', '83.141.117.223', 1401765888, 1401779679, 'IE', 'Ireland'), +('83.141.117.224', '83.141.117.227', 1401779680, 1401779683, 'GB', 'United Kingdom'), +('83.141.117.228', '83.141.127.255', 1401779684, 1401782271, 'IE', 'Ireland'), +('83.141.128.0', '83.141.255.255', 1401782272, 1401815039, 'FR', 'France'), +('83.142.0.0', '83.142.7.255', 1401815040, 1401817087, 'SE', 'Sweden'), +('83.142.8.0', '83.142.15.255', 1401817088, 1401819135, 'RU', 'Russian Federation'), +('83.142.16.0', '83.142.23.255', 1401819136, 1401821183, 'BG', 'Bulgaria'), +('83.142.24.0', '83.142.39.255', 1401821184, 1401825279, 'GB', 'United Kingdom'), +('83.142.40.0', '83.142.47.255', 1401825280, 1401827327, 'PL', 'Poland'), +('83.142.48.0', '83.142.55.255', 1401827328, 1401829375, 'GB', 'United Kingdom'), +('83.142.56.0', '83.142.63.255', 1401829376, 1401831423, 'PL', 'Poland'), +('83.142.64.0', '83.142.71.255', 1401831424, 1401833471, 'GB', 'United Kingdom'), +('83.142.72.0', '83.142.79.255', 1401833472, 1401835519, 'FI', 'Finland'), +('83.142.80.0', '83.142.87.255', 1401835520, 1401837567, 'DE', 'Germany'), +('83.142.88.0', '83.142.95.255', 1401837568, 1401839615, 'CH', 'Switzerland'), +('83.142.96.0', '83.142.103.255', 1401839616, 1401841663, 'NO', 'Norway'), +('83.142.112.0', '83.142.127.255', 1401843712, 1401847807, 'PL', 'Poland'), +('83.142.128.0', '83.142.135.255', 1401847808, 1401849855, 'DE', 'Germany'), +('83.142.136.0', '83.142.143.255', 1401849856, 1401851903, 'PL', 'Poland'), +('83.142.144.0', '83.142.151.255', 1401851904, 1401853951, 'FR', 'France'), +('83.142.152.0', '83.142.159.255', 1401853952, 1401855999, 'PL', 'Poland'), +('83.142.160.0', '83.142.167.255', 1401856000, 1401858047, 'RU', 'Russian Federation'), +('83.142.168.0', '83.142.207.255', 1401858048, 1401868287, 'PL', 'Poland'), +('83.142.208.0', '83.142.215.255', 1401868288, 1401870335, 'UA', 'Ukraine'), +('83.142.216.0', '83.142.223.255', 1401870336, 1401872383, 'PL', 'Poland'), +('83.142.224.0', '83.142.231.255', 1401872384, 1401874431, 'GB', 'United Kingdom'), +('83.142.232.0', '83.142.239.255', 1401874432, 1401876479, 'UA', 'Ukraine'), +('83.142.240.0', '83.142.247.255', 1401876480, 1401878527, 'ES', 'Spain'), +('83.142.248.0', '83.142.255.255', 1401878528, 1401880575, 'MT', 'Malta'), +('83.143.0.0', '83.143.7.255', 1401880576, 1401882623, 'DE', 'Germany'), +('83.143.8.0', '83.143.15.255', 1401882624, 1401884671, 'NG', 'Nigeria'), +('83.143.16.0', '83.143.23.255', 1401884672, 1401886719, 'FR', 'France'), +('83.143.24.0', '83.143.31.255', 1401886720, 1401888767, 'BW', 'Botswana'), +('83.143.40.0', '83.143.47.255', 1401890816, 1401892863, 'PL', 'Poland'), +('83.143.48.0', '83.143.55.255', 1401892864, 1401894911, 'RU', 'Russian Federation'), +('83.143.56.0', '83.143.63.255', 1401894912, 1401896959, 'FI', 'Finland'), +('83.143.64.0', '83.143.71.255', 1401896960, 1401899007, 'RU', 'Russian Federation'), +('83.143.72.0', '83.143.79.255', 1401899008, 1401901055, 'PL', 'Poland'), +('83.143.80.0', '83.143.87.255', 1401901056, 1401903103, 'NO', 'Norway'), +('83.143.88.0', '83.143.95.255', 1401903104, 1401905151, 'FI', 'Finland'), +('83.143.96.0', '83.143.103.255', 1401905152, 1401907199, 'PL', 'Poland'), +('83.143.104.0', '83.143.111.255', 1401907200, 1401909247, 'GR', 'Greece'), +('83.143.112.0', '83.143.119.255', 1401909248, 1401911295, 'NO', 'Norway'), +('83.143.120.0', '83.143.127.255', 1401911296, 1401913343, 'DK', 'Denmark'), +('83.143.128.0', '83.143.143.255', 1401913344, 1401917439, 'PL', 'Poland'), +('83.143.144.0', '83.143.151.255', 1401917440, 1401919487, 'BG', 'Bulgaria'), +('83.143.152.0', '83.143.159.255', 1401919488, 1401921535, 'RU', 'Russian Federation'), +('83.143.160.0', '83.143.167.255', 1401921536, 1401923583, 'PL', 'Poland'), +('83.143.168.0', '83.143.175.255', 1401923584, 1401925631, 'BE', 'Belgium'), +('83.143.176.0', '83.143.183.255', 1401925632, 1401927679, 'BG', 'Bulgaria'), +('83.143.184.0', '83.143.191.255', 1401927680, 1401929727, 'NL', 'Netherlands'), +('83.143.192.0', '83.143.199.255', 1401929728, 1401931775, 'RU', 'Russian Federation'), +('83.143.208.0', '83.143.215.255', 1401933824, 1401935871, 'PL', 'Poland'), +('83.143.216.0', '83.143.223.255', 1401935872, 1401937919, 'FI', 'Finland'), +('83.143.224.0', '83.143.231.255', 1401937920, 1401939967, 'GB', 'United Kingdom'), +('83.143.232.0', '83.143.239.255', 1401939968, 1401942015, 'UA', 'Ukraine'), +('83.143.240.0', '83.143.247.255', 1401942016, 1401944063, 'EU', 'Europe'), +('83.143.248.0', '83.143.255.255', 1401944064, 1401946111, 'BG', 'Bulgaria'), +('83.144.0.0', '83.144.63.255', 1401946112, 1401962495, 'FR', 'France'), +('83.144.64.0', '83.144.127.255', 1401962496, 1401978879, 'PL', 'Poland'), +('83.144.128.0', '83.144.191.255', 1401978880, 1401995263, 'PT', 'Portugal'), +('83.144.192.0', '83.144.255.255', 1401995264, 1402011647, 'CH', 'Switzerland'), +('83.145.0.0', '83.145.55.223', 1402011648, 1402025951, 'SE', 'Sweden'), +('83.145.55.224', '83.145.55.255', 1402025952, 1402025983, 'DK', 'Denmark'), +('83.145.56.0', '83.145.63.255', 1402025984, 1402028031, 'SE', 'Sweden'), +('83.145.64.0', '83.145.127.255', 1402028032, 1402044415, 'FR', 'France'), +('83.145.128.0', '83.145.191.255', 1402044416, 1402060799, 'PL', 'Poland'), +('83.145.192.0', '83.145.195.159', 1402060800, 1402061727, 'FI', 'Finland'), +('83.145.195.160', '83.145.195.167', 1402061728, 1402061735, 'AX', 'Aland Islands'), +('83.145.195.168', '83.145.220.191', 1402061736, 1402068159, 'FI', 'Finland'), +('83.145.220.192', '83.145.220.207', 1402068160, 1402068175, 'AX', 'Aland Islands'), +('83.145.220.208', '83.145.255.255', 1402068176, 1402077183, 'FI', 'Finland'), +('83.146.0.0', '83.146.63.255', 1402077184, 1402093567, 'GB', 'United Kingdom'), +('83.146.64.0', '83.146.127.255', 1402093568, 1402109951, 'RU', 'Russian Federation'), +('83.146.128.0', '83.146.255.255', 1402109952, 1402142719, 'FI', 'Finland'), +('83.147.0.0', '83.147.63.255', 1402142720, 1402159103, 'ES', 'Spain'), +('83.147.64.0', '83.147.127.255', 1402159104, 1402175487, 'IT', 'Italy'), +('83.147.128.0', '83.147.191.255', 1402175488, 1402191871, 'IE', 'Ireland'), +('83.147.192.0', '83.147.255.255', 1402191872, 1402208255, 'IR', 'Iran, Islamic Republic of'), +('83.148.0.0', '83.148.63.255', 1402208256, 1402224639, 'CZ', 'Czech Republic'), +('83.148.64.0', '83.148.127.255', 1402224640, 1402241023, 'BG', 'Bulgaria'), +('83.148.128.0', '83.148.191.255', 1402241024, 1402257407, 'GB', 'United Kingdom'), +('83.148.192.0', '83.148.255.255', 1402257408, 1402273791, 'FI', 'Finland'), +('83.149.0.0', '83.149.12.255', 1402273792, 1402277119, 'RU', 'Russian Federation'), +('83.149.13.0', '83.149.13.255', 1402277120, 1402277375, 'MD', 'Moldova, Republic of'), +('83.149.14.0', '83.149.14.255', 1402277376, 1402277631, 'KG', 'Kyrgyzstan'), +('83.149.15.0', '83.149.15.255', 1402277632, 1402277887, 'TJ', 'Tajikistan'), +('83.149.16.0', '83.149.63.255', 1402277888, 1402290175, 'RU', 'Russian Federation'), +('83.149.64.0', '83.149.127.255', 1402290176, 1402306559, 'NL', 'Netherlands'), +('83.149.128.0', '83.149.191.255', 1402306560, 1402322943, 'IT', 'Italy'), +('83.149.192.0', '83.149.255.255', 1402322944, 1402339327, 'RU', 'Russian Federation'), +('83.150.0.0', '83.150.63.255', 1402339328, 1402355711, 'CH', 'Switzerland'), +('83.150.64.0', '83.150.127.255', 1402355712, 1402372095, 'FI', 'Finland'), +('83.150.128.0', '83.150.191.255', 1402372096, 1402388479, 'SE', 'Sweden'), +('83.150.192.0', '83.150.255.255', 1402388480, 1402404863, 'ES', 'Spain'), +('83.151.0.0', '83.151.15.255', 1402404864, 1402408959, 'RU', 'Russian Federation'), +('83.151.16.0', '83.151.31.255', 1402408960, 1402413055, 'DE', 'Germany'), +('83.151.32.0', '83.151.47.255', 1402413056, 1402417151, 'PL', 'Poland'), +('83.151.48.0', '83.151.63.255', 1402417152, 1402421247, 'DE', 'Germany'), +('83.151.64.0', '83.151.69.255', 1402421248, 1402422783, 'FR', 'France'), +('83.151.70.0', '83.151.70.255', 1402422784, 1402423039, 'LU', 'Luxembourg'), +('83.151.71.0', '83.151.71.255', 1402423040, 1402423295, 'FR', 'France'), +('83.151.72.0', '83.151.73.255', 1402423296, 1402423807, 'BE', 'Belgium'), +('83.151.74.0', '83.151.75.255', 1402423808, 1402424319, 'FR', 'France'), +('83.151.76.0', '83.151.76.255', 1402424320, 1402424575, 'BE', 'Belgium'), +('83.151.77.0', '83.151.77.255', 1402424576, 1402424831, 'FR', 'France'), +('83.151.78.0', '83.151.79.255', 1402424832, 1402425343, 'GB', 'United Kingdom'), +('83.151.80.0', '83.151.80.255', 1402425344, 1402425599, 'DE', 'Germany'), +('83.151.81.0', '83.151.81.255', 1402425600, 1402425855, 'LU', 'Luxembourg'), +('83.151.82.0', '83.151.83.255', 1402425856, 1402426367, 'FR', 'France'), +('83.151.84.0', '83.151.84.255', 1402426368, 1402426623, 'DE', 'Germany'), +('83.151.85.0', '83.151.86.255', 1402426624, 1402427135, 'CH', 'Switzerland'), +('83.151.87.0', '83.151.95.255', 1402427136, 1402429439, 'GB', 'United Kingdom'), +('83.151.96.0', '83.151.103.255', 1402429440, 1402431487, 'US', 'United States'), +('83.151.104.0', '83.151.111.255', 1402431488, 1402433535, 'GB', 'United Kingdom'), +('83.151.112.0', '83.151.113.255', 1402433536, 1402434047, 'FR', 'France'), +('83.151.114.0', '83.151.115.255', 1402434048, 1402434559, 'GB', 'United Kingdom'), +('83.151.116.0', '83.151.116.255', 1402434560, 1402434815, 'US', 'United States'), +('83.151.117.0', '83.151.127.255', 1402434816, 1402437631, 'GB', 'United Kingdom'), +('83.151.128.0', '83.151.191.255', 1402437632, 1402454015, 'DK', 'Denmark'), +('83.151.192.0', '83.151.255.255', 1402454016, 1402470399, 'GB', 'United Kingdom'), +('83.152.0.0', '83.159.255.255', 1402470400, 1402994687, 'FR', 'France'), +('83.160.0.0', '83.163.255.255', 1402994688, 1403256831, 'NL', 'Netherlands'), +('83.164.0.0', '83.164.255.255', 1403256832, 1403322367, 'AT', 'Austria'), +('83.165.0.0', '83.165.255.255', 1403322368, 1403387903, 'ES', 'Spain'), +('83.166.0.0', '83.166.31.255', 1403387904, 1403396095, 'SE', 'Sweden'), +('83.166.32.0', '83.166.47.255', 1403396096, 1403400191, 'EE', 'Estonia'), +('83.166.48.0', '83.166.48.15', 1403400192, 1403400207, 'TR', 'Turkey'), +('83.166.48.16', '83.166.48.23', 1403400208, 1403400215, 'EE', 'Estonia'), +('83.166.48.24', '83.166.48.27', 1403400216, 1403400219, 'US', 'United States'), +('83.166.48.28', '83.166.48.47', 1403400220, 1403400239, 'EE', 'Estonia'), +('83.166.48.48', '83.166.48.63', 1403400240, 1403400255, 'BG', 'Bulgaria'), +('83.166.48.64', '83.166.48.71', 1403400256, 1403400263, 'EE', 'Estonia'), +('83.166.48.72', '83.166.48.79', 1403400264, 1403400271, 'US', 'United States'), +('83.166.48.80', '83.166.63.255', 1403400272, 1403404287, 'EE', 'Estonia'), +('83.166.64.0', '83.166.95.255', 1403404288, 1403412479, 'GB', 'United Kingdom'), +('83.166.96.0', '83.166.127.255', 1403412480, 1403420671, 'RU', 'Russian Federation'), +('83.166.128.0', '83.166.159.255', 1403420672, 1403428863, 'NL', 'Netherlands'), +('83.166.160.0', '83.166.191.255', 1403428864, 1403437055, 'GB', 'United Kingdom'), +('83.166.192.0', '83.166.223.255', 1403437056, 1403445247, 'RO', 'Romania'), +('83.166.224.0', '83.167.31.255', 1403445248, 1403461631, 'RU', 'Russian Federation'), +('83.167.32.0', '83.167.43.215', 1403461632, 1403464663, 'FR', 'France'), +('83.167.43.216', '83.167.43.223', 1403464664, 1403464671, 'BE', 'Belgium'), +('83.167.43.224', '83.167.62.111', 1403464672, 1403469423, 'FR', 'France'), +('83.167.62.112', '83.167.62.119', 1403469424, 1403469431, 'US', 'United States'), +('83.167.62.120', '83.167.63.255', 1403469432, 1403469823, 'FR', 'France'), +('83.167.64.0', '83.167.127.255', 1403469824, 1403486207, 'RU', 'Russian Federation'), +('83.167.128.0', '83.167.159.255', 1403486208, 1403494399, 'FR', 'France'), +('83.167.160.0', '83.167.191.255', 1403494400, 1403502591, 'GB', 'United Kingdom'), +('83.167.192.0', '83.167.223.255', 1403502592, 1403510783, 'NL', 'Netherlands'), +('83.167.224.0', '83.167.255.255', 1403510784, 1403518975, 'CZ', 'Czech Republic'), +('83.168.0.0', '83.168.63.255', 1403518976, 1403535359, 'CY', 'Cyprus'), +('83.168.64.0', '83.168.127.255', 1403535360, 1403551743, 'PL', 'Poland'), +('83.168.128.0', '83.168.191.255', 1403551744, 1403568127, 'SK', 'Slovakia'), +('83.168.192.0', '83.168.255.255', 1403568128, 1403584511, 'SE', 'Sweden'), +('83.169.0.0', '83.169.63.255', 1403584512, 1403600895, 'DE', 'Germany'), +('83.169.64.0', '83.169.127.255', 1403600896, 1403617279, 'FR', 'France'), +('83.169.128.0', '83.169.191.255', 1403617280, 1403633663, 'DE', 'Germany'), +('83.169.192.0', '83.169.255.255', 1403633664, 1403650047, 'RU', 'Russian Federation'), +('83.170.0.0', '83.170.22.255', 1403650048, 1403655935, 'DE', 'Germany'), +('83.170.23.0', '83.170.23.7', 1403655936, 1403655943, 'IR', 'Iran, Islamic Republic of'), +('83.170.23.8', '83.170.25.255', 1403655944, 1403656703, 'DE', 'Germany'), +('83.170.26.0', '83.170.26.255', 1403656704, 1403656959, 'IR', 'Iran, Islamic Republic of'), +('83.170.27.0', '83.170.32.255', 1403656960, 1403658495, 'DE', 'Germany'), +('83.170.33.0', '83.170.33.31', 1403658496, 1403658527, 'IR', 'Iran, Islamic Republic of'), +('83.170.33.32', '83.170.33.63', 1403658528, 1403658559, 'KW', 'Kuwait'), +('83.170.33.64', '83.170.34.95', 1403658560, 1403658847, 'DE', 'Germany'), +('83.170.34.96', '83.170.34.127', 1403658848, 1403658879, 'IR', 'Iran, Islamic Republic of'), +('83.170.34.128', '83.170.34.159', 1403658880, 1403658911, 'DE', 'Germany'), +('83.170.34.160', '83.170.34.223', 1403658912, 1403658975, 'IR', 'Iran, Islamic Republic of'), +('83.170.34.224', '83.170.41.191', 1403658976, 1403660735, 'DE', 'Germany'), +('83.170.41.192', '83.170.41.255', 1403660736, 1403660799, 'IR', 'Iran, Islamic Republic of'), +('83.170.42.0', '83.170.43.127', 1403660800, 1403661183, 'DE', 'Germany'), +('83.170.43.128', '83.170.43.159', 1403661184, 1403661215, 'IR', 'Iran, Islamic Republic of'), +('83.170.43.160', '83.170.43.223', 1403661216, 1403661279, 'AE', 'United Arab Emirates'), +('83.170.43.224', '83.170.43.254', 1403661280, 1403661310, 'IR', 'Iran, Islamic Republic of'), +('83.170.43.255', '83.170.45.63', 1403661311, 1403661631, 'DE', 'Germany'), +('83.170.45.64', '83.170.45.95', 1403661632, 1403661663, 'IR', 'Iran, Islamic Republic of'), +('83.170.45.96', '83.170.45.159', 1403661664, 1403661727, 'DE', 'Germany'), +('83.170.45.160', '83.170.45.191', 1403661728, 1403661759, 'IR', 'Iran, Islamic Republic of'), +('83.170.45.192', '83.170.46.63', 1403661760, 1403661887, 'DE', 'Germany'), +('83.170.46.64', '83.170.46.95', 1403661888, 1403661919, 'IR', 'Iran, Islamic Republic of'), +('83.170.46.96', '83.170.46.127', 1403661920, 1403661951, 'DE', 'Germany'), +('83.170.46.128', '83.170.46.159', 1403661952, 1403661983, 'IR', 'Iran, Islamic Republic of'), +('83.170.46.160', '83.170.46.191', 1403661984, 1403662015, 'DE', 'Germany'), +('83.170.46.192', '83.170.46.223', 1403662016, 1403662047, 'IR', 'Iran, Islamic Republic of'), +('83.170.46.224', '83.170.47.31', 1403662048, 1403662111, 'DE', 'Germany'), +('83.170.47.32', '83.170.47.63', 1403662112, 1403662143, 'IR', 'Iran, Islamic Republic of'), +('83.170.47.64', '83.170.47.95', 1403662144, 1403662175, 'DE', 'Germany'), +('83.170.47.96', '83.170.47.127', 1403662176, 1403662207, 'AE', 'United Arab Emirates'), +('83.170.47.128', '83.170.47.191', 1403662208, 1403662271, 'DE', 'Germany'), +('83.170.47.192', '83.170.47.223', 1403662272, 1403662303, 'AE', 'United Arab Emirates'), +('83.170.47.224', '83.170.48.159', 1403662304, 1403662495, 'DE', 'Germany'), +('83.170.48.160', '83.170.48.191', 1403662496, 1403662527, 'IR', 'Iran, Islamic Republic of'), +('83.170.48.192', '83.170.49.63', 1403662528, 1403662655, 'DE', 'Germany'), +('83.170.49.64', '83.170.49.95', 1403662656, 1403662687, 'IR', 'Iran, Islamic Republic of'), +('83.170.49.96', '83.170.49.223', 1403662688, 1403662815, 'DE', 'Germany'), +('83.170.49.224', '83.170.50.63', 1403662816, 1403662911, 'IR', 'Iran, Islamic Republic of'), +('83.170.50.64', '83.170.50.95', 1403662912, 1403662943, 'DE', 'Germany'), +('83.170.50.96', '83.170.50.127', 1403662944, 1403662975, 'AE', 'United Arab Emirates'), +('83.170.50.128', '83.170.50.191', 1403662976, 1403663039, 'IR', 'Iran, Islamic Republic of'), +('83.170.50.192', '83.170.51.31', 1403663040, 1403663135, 'DE', 'Germany'), +('83.170.51.32', '83.170.51.95', 1403663136, 1403663199, 'AE', 'United Arab Emirates'), +('83.170.51.96', '83.170.51.255', 1403663200, 1403663359, 'DE', 'Germany'), +('83.170.52.0', '83.170.52.127', 1403663360, 1403663487, 'IR', 'Iran, Islamic Republic of'), +('83.170.52.128', '83.170.52.151', 1403663488, 1403663511, 'DE', 'Germany'), +('83.170.52.152', '83.170.52.159', 1403663512, 1403663519, 'IR', 'Iran, Islamic Republic of'), +('83.170.52.160', '83.170.52.167', 1403663520, 1403663527, 'DE', 'Germany'), +('83.170.52.168', '83.170.52.175', 1403663528, 1403663535, 'IQ', 'Iraq'), +('83.170.52.176', '83.170.52.207', 1403663536, 1403663567, 'DE', 'Germany'), +('83.170.52.208', '83.170.52.215', 1403663568, 1403663575, 'AE', 'United Arab Emirates'), +('83.170.52.216', '83.170.52.229', 1403663576, 1403663589, 'DE', 'Germany'), +('83.170.52.230', '83.170.52.230', 1403663590, 1403663590, 'IR', 'Iran, Islamic Republic of'), +('83.170.52.231', '83.170.57.255', 1403663591, 1403664895, 'DE', 'Germany'), +('83.170.58.0', '83.170.58.31', 1403664896, 1403664927, 'TZ', 'Tanzania, United Republic of'), +('83.170.58.32', '83.170.63.255', 1403664928, 1403666431, 'DE', 'Germany'), +('83.170.64.0', '83.170.87.255', 1403666432, 1403672575, 'GB', 'United Kingdom'), +('83.170.88.0', '83.170.88.255', 1403672576, 1403672831, 'US', 'United States'), +('83.170.89.0', '83.170.127.255', 1403672832, 1403682815, 'GB', 'United Kingdom'), +('83.170.128.0', '83.170.151.255', 1403682816, 1403688959, 'A2', 'Satellite Provider'), +('83.170.152.0', '83.170.163.255', 1403688960, 1403692031, 'GB', 'United Kingdom'), +('83.170.164.0', '83.170.191.255', 1403692032, 1403699199, 'A2', 'Satellite Provider'), +('83.170.192.0', '83.170.255.255', 1403699200, 1403715583, 'UA', 'Ukraine'), +('83.171.0.0', '83.171.63.255', 1403715584, 1403731967, 'LT', 'Lithuania'), +('83.171.64.0', '83.171.127.255', 1403731968, 1403748351, 'RU', 'Russian Federation'), +('83.171.128.0', '83.171.191.255', 1403748352, 1403764735, 'DE', 'Germany'), +('83.171.192.0', '83.171.255.255', 1403764736, 1403781119, 'GR', 'Greece'), +('83.172.0.0', '83.172.63.255', 1403781120, 1403797503, 'RU', 'Russian Federation'), +('83.172.64.0', '83.172.127.255', 1403797504, 1403813887, 'SE', 'Sweden'), +('83.172.128.0', '83.172.191.255', 1403813888, 1403830271, 'NL', 'Netherlands'), +('83.172.192.0', '83.172.255.255', 1403830272, 1403846655, 'CH', 'Switzerland'), +('83.173.0.0', '83.173.63.255', 1403846656, 1403863039, 'IS', 'Iceland'), +('83.173.64.0', '83.173.127.255', 1403863040, 1403879423, 'FR', 'France'), +('83.173.128.0', '83.173.191.255', 1403879424, 1403895807, 'ES', 'Spain'), +('83.173.192.0', '83.173.255.255', 1403895808, 1403912191, 'CH', 'Switzerland'), +('83.174.0.0', '83.174.63.255', 1403912192, 1403928575, 'PT', 'Portugal'), +('83.174.64.0', '83.174.127.255', 1403928576, 1403944959, 'SE', 'Sweden'), +('83.174.128.0', '83.174.191.255', 1403944960, 1403961343, 'GR', 'Greece'), +('83.174.192.0', '83.174.255.255', 1403961344, 1403977727, 'RU', 'Russian Federation'), +('83.175.0.0', '83.175.63.255', 1403977728, 1403994111, 'IT', 'Italy'), +('83.175.64.0', '83.175.127.255', 1403994112, 1404010495, 'AT', 'Austria'), +('83.175.128.0', '83.175.191.255', 1404010496, 1404026879, 'PL', 'Poland'), +('83.175.192.0', '83.175.255.255', 1404026880, 1404043263, 'ES', 'Spain'), +('83.176.0.0', '83.176.31.255', 1404043264, 1404051455, 'SE', 'Sweden'), +('83.176.32.0', '83.176.63.255', 1404051456, 1404059647, 'CH', 'Switzerland'), +('83.176.64.0', '83.176.127.255', 1404059648, 1404076031, 'SE', 'Sweden'), +('83.176.128.0', '83.176.159.255', 1404076032, 1404084223, 'DE', 'Germany'), +('83.176.160.0', '83.176.175.255', 1404084224, 1404088319, 'BE', 'Belgium'), +('83.176.176.0', '83.177.111.255', 1404088320, 1404137471, 'SE', 'Sweden'), +('83.177.112.0', '83.177.119.255', 1404137472, 1404139519, 'HU', 'Hungary'), +('83.177.120.0', '83.178.37.255', 1404139520, 1404184063, 'SE', 'Sweden'), +('83.178.38.0', '83.178.39.255', 1404184064, 1404184575, 'NO', 'Norway'), +('83.178.40.0', '83.178.47.255', 1404184576, 1404186623, 'SE', 'Sweden'), +('83.178.48.0', '83.178.51.255', 1404186624, 1404187647, 'NO', 'Norway'), +('83.178.52.0', '83.178.57.255', 1404187648, 1404189183, 'SE', 'Sweden'), +('83.178.58.0', '83.178.59.255', 1404189184, 1404189695, 'EE', 'Estonia'), +('83.178.60.0', '83.178.63.255', 1404189696, 1404190719, 'RU', 'Russian Federation'), +('83.178.64.0', '83.178.95.255', 1404190720, 1404198911, 'SE', 'Sweden'), +('83.178.96.0', '83.178.99.255', 1404198912, 1404199935, 'DK', 'Denmark'), +('83.178.100.0', '83.178.103.255', 1404199936, 1404200959, 'RU', 'Russian Federation'), +('83.178.104.0', '83.178.111.255', 1404200960, 1404203007, 'NL', 'Netherlands'), +('83.178.112.0', '83.178.127.255', 1404203008, 1404207103, 'SE', 'Sweden'), +('83.178.128.0', '83.178.131.255', 1404207104, 1404208127, 'RU', 'Russian Federation'), +('83.178.132.0', '83.178.135.255', 1404208128, 1404209151, 'SE', 'Sweden'), +('83.178.136.0', '83.178.139.255', 1404209152, 1404210175, 'RU', 'Russian Federation'), +('83.178.140.0', '83.178.183.255', 1404210176, 1404221439, 'SE', 'Sweden'), +('83.178.184.0', '83.178.187.255', 1404221440, 1404222463, 'RU', 'Russian Federation'), +('83.178.188.0', '83.178.191.255', 1404222464, 1404223487, 'SE', 'Sweden'), +('83.178.192.0', '83.178.205.255', 1404223488, 1404227071, 'RU', 'Russian Federation'), +('83.178.206.0', '83.178.225.255', 1404227072, 1404232191, 'SE', 'Sweden'), +('83.178.226.0', '83.178.227.255', 1404232192, 1404232703, 'RU', 'Russian Federation'), +('83.178.228.0', '83.178.233.255', 1404232704, 1404234239, 'SE', 'Sweden'), +('83.178.234.0', '83.178.235.255', 1404234240, 1404234751, 'HR', 'Croatia'), +('83.178.236.0', '83.179.255.255', 1404234752, 1404305407, 'SE', 'Sweden'), +('83.180.0.0', '83.180.63.255', 1404305408, 1404321791, 'NL', 'Netherlands'), +('83.180.64.0', '83.180.111.255', 1404321792, 1404334079, 'CH', 'Switzerland'), +('83.180.112.0', '83.180.223.255', 1404334080, 1404362751, 'SE', 'Sweden'), +('83.180.224.0', '83.180.255.255', 1404362752, 1404370943, 'CH', 'Switzerland'), +('83.181.0.0', '83.181.31.255', 1404370944, 1404379135, 'SE', 'Sweden'), +('83.181.32.0', '83.181.47.255', 1404379136, 1404383231, 'AT', 'Austria'), +('83.181.48.0', '83.181.63.255', 1404383232, 1404387327, 'SE', 'Sweden'), +('83.181.64.0', '83.181.95.255', 1404387328, 1404395519, 'DE', 'Germany'), +('83.181.96.0', '83.181.127.255', 1404395520, 1404403711, 'CH', 'Switzerland'), +('83.181.128.0', '83.181.159.255', 1404403712, 1404411903, 'NL', 'Netherlands'), +('83.181.160.0', '83.181.255.255', 1404411904, 1404436479, 'SE', 'Sweden'), +('83.182.0.0', '83.182.255.255', 1404436480, 1404502015, 'BE', 'Belgium'), +('83.183.0.0', '83.185.255.255', 1404502016, 1404698623, 'SE', 'Sweden'), +('83.186.0.0', '83.186.255.255', 1404698624, 1404764159, 'BE', 'Belgium'), +('83.187.0.0', '83.187.147.255', 1404764160, 1404802047, 'SE', 'Sweden'), +('83.187.148.0', '83.187.149.255', 1404802048, 1404802559, 'EE', 'Estonia'), +('83.187.150.0', '83.187.159.255', 1404802560, 1404805119, 'SE', 'Sweden'), +('83.187.160.0', '83.187.191.255', 1404805120, 1404813311, 'AT', 'Austria'), +('83.187.192.0', '83.187.255.255', 1404813312, 1404829695, 'SE', 'Sweden'), +('83.188.0.0', '83.188.159.255', 1404829696, 1404870655, 'RU', 'Russian Federation'), +('83.188.160.0', '83.188.179.255', 1404870656, 1404875775, 'SE', 'Sweden'), +('83.188.180.0', '83.188.183.255', 1404875776, 1404876799, 'LT', 'Lithuania'), +('83.188.184.0', '83.188.255.255', 1404876800, 1404895231, 'SE', 'Sweden'), +('83.189.0.0', '83.189.127.255', 1404895232, 1404927999, 'DE', 'Germany'), +('83.189.128.0', '83.189.175.255', 1404928000, 1404940287, 'CH', 'Switzerland'), +('83.189.176.0', '83.189.223.255', 1404940288, 1404952575, 'SE', 'Sweden'), +('83.189.224.0', '83.189.255.255', 1404952576, 1404960767, 'NL', 'Netherlands'), +('83.190.0.0', '83.191.95.255', 1404960768, 1405050879, 'SE', 'Sweden'), +('83.191.96.0', '83.191.127.255', 1405050880, 1405059071, 'AT', 'Austria'), +('83.191.128.0', '83.191.143.255', 1405059072, 1405063167, 'SE', 'Sweden'), +('83.191.144.0', '83.191.151.255', 1405063168, 1405065215, 'NO', 'Norway'), +('83.191.152.0', '83.191.159.255', 1405065216, 1405067263, 'SE', 'Sweden'), +('83.191.160.0', '83.191.191.255', 1405067264, 1405075455, 'DE', 'Germany'), +('83.191.192.0', '83.191.223.255', 1405075456, 1405083647, 'FR', 'France'), +('83.191.224.0', '83.191.255.255', 1405083648, 1405091839, 'SE', 'Sweden'), +('83.192.0.0', '83.207.255.255', 1405091840, 1406140415, 'FR', 'France'), +('83.208.0.0', '83.208.255.255', 1406140416, 1406205951, 'CZ', 'Czech Republic'), +('83.209.0.0', '83.209.255.255', 1406205952, 1406271487, 'SE', 'Sweden'), +('83.210.0.0', '83.210.255.255', 1406271488, 1406337023, 'IE', 'Ireland'), +('83.211.0.0', '83.211.255.255', 1406337024, 1406402559, 'IT', 'Italy'), +('83.212.0.0', '83.212.255.255', 1406402560, 1406468095, 'GR', 'Greece'), +('83.213.0.0', '83.213.255.255', 1406468096, 1406533631, 'ES', 'Spain'), +('83.214.0.0', '83.214.255.255', 1406533632, 1406599167, 'FR', 'France'), +('83.215.0.0', '83.215.255.255', 1406599168, 1406664703, 'AT', 'Austria'), +('83.216.0.0', '83.216.31.255', 1406664704, 1406672895, 'FI', 'Finland'), +('83.216.32.0', '83.216.63.255', 1406672896, 1406681087, 'HU', 'Hungary'), +('83.216.64.0', '83.216.95.255', 1406681088, 1406689279, 'GB', 'United Kingdom'), +('83.216.96.0', '83.216.127.255', 1406689280, 1406697471, 'SE', 'Sweden'), +('83.216.128.0', '83.216.159.255', 1406697472, 1406705663, 'GB', 'United Kingdom'), +('83.216.160.0', '83.216.171.255', 1406705664, 1406708735, 'IT', 'Italy'), +('83.216.172.0', '83.216.175.255', 1406708736, 1406709759, 'A2', 'Satellite Provider'), +('83.216.176.0', '83.216.176.255', 1406709760, 1406710015, 'IT', 'Italy'), +('83.216.177.0', '83.216.191.255', 1406710016, 1406713855, 'A2', 'Satellite Provider'), +('83.216.192.0', '83.216.195.255', 1406713856, 1406714879, 'AT', 'Austria'), +('83.216.196.0', '83.216.197.255', 1406714880, 1406715391, 'NL', 'Netherlands'), +('83.216.198.0', '83.216.198.127', 1406715392, 1406715519, 'AT', 'Austria'), +('83.216.198.128', '83.216.198.255', 1406715520, 1406715647, 'NL', 'Netherlands'), +('83.216.199.0', '83.216.199.63', 1406715648, 1406715711, 'AT', 'Austria'), +('83.216.199.64', '83.216.201.255', 1406715712, 1406716415, 'NL', 'Netherlands'), +('83.216.202.0', '83.216.202.255', 1406716416, 1406716671, 'AT', 'Austria'), +('83.216.203.0', '83.216.203.255', 1406716672, 1406716927, 'NL', 'Netherlands'), +('83.216.204.0', '83.216.205.255', 1406716928, 1406717439, 'AT', 'Austria'), +('83.216.206.0', '83.216.206.255', 1406717440, 1406717695, 'NL', 'Netherlands'), +('83.216.207.0', '83.216.207.255', 1406717696, 1406717951, 'DE', 'Germany'), +('83.216.208.0', '83.216.215.255', 1406717952, 1406719999, 'NL', 'Netherlands'), +('83.216.216.0', '83.216.219.255', 1406720000, 1406721023, 'AT', 'Austria'), +('83.216.220.0', '83.216.223.255', 1406721024, 1406722047, 'NL', 'Netherlands'), +('83.216.224.0', '83.216.255.255', 1406722048, 1406730239, 'DE', 'Germany'), +('83.217.0.0', '83.217.63.255', 1406730240, 1406746623, 'RU', 'Russian Federation'), +('83.217.64.0', '83.217.65.255', 1406746624, 1406747135, 'NL', 'Netherlands'), +('83.217.66.0', '83.217.67.255', 1406747136, 1406747647, 'BE', 'Belgium'), +('83.217.68.0', '83.217.68.31', 1406747648, 1406747679, 'NL', 'Netherlands'), +('83.217.68.32', '83.217.68.95', 1406747680, 1406747743, 'BE', 'Belgium'), +('83.217.68.96', '83.217.70.127', 1406747744, 1406748287, 'NL', 'Netherlands'), +('83.217.70.128', '83.217.70.159', 1406748288, 1406748319, 'BE', 'Belgium'), +('83.217.70.160', '83.217.76.31', 1406748320, 1406749727, 'NL', 'Netherlands'), +('83.217.76.32', '83.217.76.79', 1406749728, 1406749775, 'BE', 'Belgium'), +('83.217.76.80', '83.217.76.127', 1406749776, 1406749823, 'NL', 'Netherlands'), +('83.217.76.128', '83.217.76.143', 1406749824, 1406749839, 'BE', 'Belgium'), +('83.217.76.144', '83.217.76.223', 1406749840, 1406749919, 'NL', 'Netherlands'), +('83.217.76.224', '83.217.76.255', 1406749920, 1406749951, 'BE', 'Belgium'), +('83.217.77.0', '83.217.78.95', 1406749952, 1406750303, 'NL', 'Netherlands'), +('83.217.78.96', '83.217.78.111', 1406750304, 1406750319, 'BE', 'Belgium'), +('83.217.78.112', '83.217.84.31', 1406750320, 1406751775, 'NL', 'Netherlands'), +('83.217.84.32', '83.217.84.63', 1406751776, 1406751807, 'BE', 'Belgium'), +('83.217.84.64', '83.217.84.159', 1406751808, 1406751903, 'NL', 'Netherlands'), +('83.217.84.160', '83.217.84.223', 1406751904, 1406751967, 'BE', 'Belgium'), +('83.217.84.224', '83.217.86.127', 1406751968, 1406752383, 'NL', 'Netherlands'), +('83.217.86.128', '83.217.86.191', 1406752384, 1406752447, 'BE', 'Belgium'), +('83.217.86.192', '83.217.87.191', 1406752448, 1406752703, 'NL', 'Netherlands'), +('83.217.87.192', '83.217.87.223', 1406752704, 1406752735, 'BE', 'Belgium'), +('83.217.87.224', '83.217.87.239', 1406752736, 1406752751, 'NL', 'Netherlands'), +('83.217.87.240', '83.217.87.255', 1406752752, 1406752767, 'BE', 'Belgium'), +('83.217.88.0', '83.217.88.255', 1406752768, 1406753023, 'NL', 'Netherlands'), +('83.217.89.0', '83.217.89.255', 1406753024, 1406753279, 'GB', 'United Kingdom'), +('83.217.90.0', '83.217.91.255', 1406753280, 1406753791, 'NL', 'Netherlands'), +('83.217.92.0', '83.217.93.0', 1406753792, 1406754048, 'BE', 'Belgium'), +('83.217.93.1', '83.217.93.255', 1406754049, 1406754303, 'NL', 'Netherlands'), +('83.217.94.0', '83.217.94.0', 1406754304, 1406754304, 'BE', 'Belgium'), +('83.217.94.1', '83.217.94.255', 1406754305, 1406754559, 'NL', 'Netherlands'), +('83.217.95.0', '83.217.95.0', 1406754560, 1406754560, 'BE', 'Belgium'), +('83.217.95.1', '83.217.95.255', 1406754561, 1406754815, 'NL', 'Netherlands'), +('83.217.96.0', '83.217.127.255', 1406754816, 1406763007, 'GB', 'United Kingdom'), +('83.217.128.0', '83.217.159.255', 1406763008, 1406771199, 'BE', 'Belgium'), +('83.217.160.0', '83.217.191.255', 1406771200, 1406779391, 'GB', 'United Kingdom'), +('83.217.192.0', '83.217.223.255', 1406779392, 1406787583, 'RU', 'Russian Federation'), +('83.217.224.0', '83.217.255.255', 1406787584, 1406795775, 'AM', 'Armenia'), +('83.218.0.0', '83.218.31.255', 1406795776, 1406803967, 'GB', 'United Kingdom'), +('83.218.32.0', '83.218.63.255', 1406803968, 1406812159, 'DE', 'Germany'), +('83.218.64.0', '83.218.95.255', 1406812160, 1406820351, 'SE', 'Sweden'), +('83.218.96.0', '83.218.159.255', 1406820352, 1406836735, 'GB', 'United Kingdom'), +('83.218.160.0', '83.218.191.255', 1406836736, 1406844927, 'AT', 'Austria'), +('83.218.192.0', '83.218.223.255', 1406844928, 1406853119, 'MD', 'Moldova, Republic of'), +('83.218.224.0', '83.218.255.255', 1406853120, 1406861311, 'UA', 'Ukraine'), +('83.219.0.0', '83.219.31.255', 1406861312, 1406869503, 'RU', 'Russian Federation'), +('83.219.32.0', '83.219.63.255', 1406869504, 1406877695, 'GB', 'United Kingdom'), +('83.219.64.0', '83.219.95.255', 1406877696, 1406885887, 'NL', 'Netherlands'), +('83.219.96.0', '83.219.127.255', 1406885888, 1406894079, 'CH', 'Switzerland'), +('83.219.128.0', '83.219.159.255', 1406894080, 1406902271, 'RU', 'Russian Federation'), +('83.219.160.0', '83.219.191.255', 1406902272, 1406910463, 'AT', 'Austria'), +('83.219.192.0', '83.219.223.255', 1406910464, 1406918655, 'SE', 'Sweden'), +('83.219.224.0', '83.219.253.255', 1406918656, 1406926335, 'RU', 'Russian Federation'), +('83.219.254.0', '83.219.255.255', 1406926336, 1406926847, 'DE', 'Germany'), +('83.220.0.0', '83.220.31.255', 1406926848, 1406935039, 'IT', 'Italy'), +('83.220.32.0', '83.220.95.255', 1406935040, 1406951423, 'RU', 'Russian Federation'), +('83.220.96.0', '83.220.127.255', 1406951424, 1406959615, 'PL', 'Poland'), +('83.220.128.0', '83.220.146.63', 1406959616, 1406964287, 'DE', 'Germany'), +('83.220.146.64', '83.220.146.95', 1406964288, 1406964319, 'CH', 'Switzerland'), +('83.220.146.96', '83.220.147.255', 1406964320, 1406964735, 'DE', 'Germany'), +('83.220.148.0', '83.220.148.191', 1406964736, 1406964927, 'US', 'United States'), +('83.220.148.192', '83.220.148.255', 1406964928, 1406964991, 'DE', 'Germany'), +('83.220.149.0', '83.220.149.15', 1406964992, 1406965007, 'US', 'United States'), +('83.220.149.16', '83.220.155.255', 1406965008, 1406966783, 'DE', 'Germany'), +('83.220.156.0', '83.220.156.3', 1406966784, 1406966787, 'GB', 'United Kingdom'), +('83.220.156.4', '83.220.157.255', 1406966788, 1406967295, 'DE', 'Germany'), +('83.220.158.0', '83.220.158.31', 1406967296, 1406967327, 'GB', 'United Kingdom'), +('83.220.158.32', '83.220.158.47', 1406967328, 1406967343, 'NL', 'Netherlands'), +('83.220.158.48', '83.220.158.51', 1406967344, 1406967347, 'US', 'United States'), +('83.220.158.52', '83.220.159.255', 1406967348, 1406967807, 'DE', 'Germany'), +('83.220.160.0', '83.220.191.255', 1406967808, 1406975999, 'RU', 'Russian Federation'), +('83.220.192.0', '83.220.223.255', 1406976000, 1406984191, 'IE', 'Ireland'), +('83.220.224.0', '83.221.31.255', 1406984192, 1407000575, 'RU', 'Russian Federation'), +('83.221.32.0', '83.221.95.255', 1407000576, 1407016959, 'DE', 'Germany'), +('83.221.96.0', '83.221.127.255', 1407016960, 1407025151, 'IT', 'Italy'), +('83.221.128.0', '83.221.129.255', 1407025152, 1407025663, 'DK', 'Denmark'), +('83.221.130.0', '83.221.130.255', 1407025664, 1407025919, 'US', 'United States'), +('83.221.131.0', '83.221.159.255', 1407025920, 1407033343, 'DK', 'Denmark'), +('83.221.160.0', '83.221.163.255', 1407033344, 1407034367, 'UZ', 'Uzbekistan'), +('83.221.164.0', '83.221.167.255', 1407034368, 1407035391, 'RU', 'Russian Federation'), +('83.221.168.0', '83.221.191.255', 1407035392, 1407041535, 'UZ', 'Uzbekistan'), +('83.221.192.0', '83.221.223.255', 1407041536, 1407049727, 'RU', 'Russian Federation'), +('83.221.224.0', '83.221.255.255', 1407049728, 1407057919, 'DE', 'Germany'), +('83.222.0.0', '83.222.31.255', 1407057920, 1407066111, 'RU', 'Russian Federation'), +('83.222.32.0', '83.222.63.255', 1407066112, 1407074303, 'LU', 'Luxembourg'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('83.222.64.0', '83.222.127.255', 1407074304, 1407090687, 'RU', 'Russian Federation'), +('83.222.128.0', '83.222.159.255', 1407090688, 1407098879, 'CH', 'Switzerland'), +('83.222.160.0', '83.222.191.255', 1407098880, 1407107071, 'BG', 'Bulgaria'), +('83.222.192.0', '83.222.223.255', 1407107072, 1407115263, 'RU', 'Russian Federation'), +('83.222.224.0', '83.222.255.255', 1407115264, 1407123455, 'GB', 'United Kingdom'), +('83.223.0.0', '83.223.31.255', 1407123456, 1407131647, 'SE', 'Sweden'), +('83.223.32.0', '83.223.63.255', 1407131648, 1407139839, 'NL', 'Netherlands'), +('83.223.64.0', '83.223.95.255', 1407139840, 1407148031, 'DE', 'Germany'), +('83.223.96.0', '83.223.127.255', 1407148032, 1407156223, 'GB', 'United Kingdom'), +('83.223.128.0', '83.223.159.255', 1407156224, 1407164415, 'LV', 'Latvia'), +('83.223.160.0', '83.223.191.255', 1407164416, 1407172607, 'PT', 'Portugal'), +('83.223.192.0', '83.223.223.255', 1407172608, 1407180799, 'GB', 'United Kingdom'), +('83.223.224.0', '83.223.255.255', 1407180800, 1407188991, 'RU', 'Russian Federation'), +('83.224.0.0', '83.225.255.255', 1407188992, 1407320063, 'IT', 'Italy'), +('83.226.0.0', '83.227.255.255', 1407320064, 1407451135, 'SE', 'Sweden'), +('83.228.0.0', '83.228.127.255', 1407451136, 1407483903, 'BG', 'Bulgaria'), +('83.228.128.0', '83.228.255.255', 1407483904, 1407516671, 'CH', 'Switzerland'), +('83.229.0.0', '83.229.0.39', 1407516672, 1407516711, 'A2', 'Satellite Provider'), +('83.229.0.40', '83.229.0.63', 1407516712, 1407516735, 'NG', 'Nigeria'), +('83.229.0.64', '83.229.0.71', 1407516736, 1407516743, 'UG', 'Uganda'), +('83.229.0.72', '83.229.0.79', 1407516744, 1407516751, 'LR', 'Liberia'), +('83.229.0.80', '83.229.0.95', 1407516752, 1407516767, 'A2', 'Satellite Provider'), +('83.229.0.96', '83.229.0.103', 1407516768, 1407516775, 'AO', 'Angola'), +('83.229.0.104', '83.229.0.111', 1407516776, 1407516783, 'A2', 'Satellite Provider'), +('83.229.0.112', '83.229.0.119', 1407516784, 1407516791, 'NG', 'Nigeria'), +('83.229.0.120', '83.229.0.127', 1407516792, 1407516799, 'A2', 'Satellite Provider'), +('83.229.0.128', '83.229.0.135', 1407516800, 1407516807, 'GH', 'Ghana'), +('83.229.0.136', '83.229.0.159', 1407516808, 1407516831, 'A2', 'Satellite Provider'), +('83.229.0.160', '83.229.0.183', 1407516832, 1407516855, 'NG', 'Nigeria'), +('83.229.0.184', '83.229.0.191', 1407516856, 1407516863, 'CM', 'Cameroon'), +('83.229.0.192', '83.229.0.199', 1407516864, 1407516871, 'NG', 'Nigeria'), +('83.229.0.200', '83.229.0.207', 1407516872, 1407516879, 'A2', 'Satellite Provider'), +('83.229.0.208', '83.229.0.231', 1407516880, 1407516903, 'NG', 'Nigeria'), +('83.229.0.232', '83.229.0.239', 1407516904, 1407516911, 'A2', 'Satellite Provider'), +('83.229.0.240', '83.229.0.255', 1407516912, 1407516927, 'NG', 'Nigeria'), +('83.229.1.0', '83.229.1.255', 1407516928, 1407517183, 'ZW', 'Zimbabwe'), +('83.229.2.0', '83.229.2.127', 1407517184, 1407517311, 'GB', 'United Kingdom'), +('83.229.2.128', '83.229.2.199', 1407517312, 1407517383, 'A2', 'Satellite Provider'), +('83.229.2.200', '83.229.2.207', 1407517384, 1407517391, 'CD', 'Congo, The Democratic Republic of the'), +('83.229.2.208', '83.229.2.231', 1407517392, 1407517415, 'A2', 'Satellite Provider'), +('83.229.2.232', '83.229.2.255', 1407517416, 1407517439, 'NG', 'Nigeria'), +('83.229.3.0', '83.229.4.127', 1407517440, 1407517823, 'A2', 'Satellite Provider'), +('83.229.4.128', '83.229.4.191', 1407517824, 1407517887, 'NG', 'Nigeria'), +('83.229.4.192', '83.229.4.255', 1407517888, 1407517951, 'A2', 'Satellite Provider'), +('83.229.5.0', '83.229.5.63', 1407517952, 1407518015, 'SL', 'Sierra Leone'), +('83.229.5.64', '83.229.5.79', 1407518016, 1407518031, 'ZA', 'South Africa'), +('83.229.5.80', '83.229.5.87', 1407518032, 1407518039, 'A2', 'Satellite Provider'), +('83.229.5.88', '83.229.5.95', 1407518040, 1407518047, 'CD', 'Congo, The Democratic Republic of the'), +('83.229.5.96', '83.229.5.111', 1407518048, 1407518063, 'NG', 'Nigeria'), +('83.229.5.112', '83.229.5.127', 1407518064, 1407518079, 'A2', 'Satellite Provider'), +('83.229.5.128', '83.229.5.159', 1407518080, 1407518111, 'FR', 'France'), +('83.229.5.160', '83.229.5.183', 1407518112, 1407518135, 'NG', 'Nigeria'), +('83.229.5.184', '83.229.5.191', 1407518136, 1407518143, 'GH', 'Ghana'), +('83.229.5.192', '83.229.5.207', 1407518144, 1407518159, 'ZA', 'South Africa'), +('83.229.5.208', '83.229.5.215', 1407518160, 1407518167, 'NG', 'Nigeria'), +('83.229.5.216', '83.229.5.223', 1407518168, 1407518175, 'CD', 'Congo, The Democratic Republic of the'), +('83.229.5.224', '83.229.5.231', 1407518176, 1407518183, 'GH', 'Ghana'), +('83.229.5.232', '83.229.5.247', 1407518184, 1407518199, 'NG', 'Nigeria'), +('83.229.5.248', '83.229.5.255', 1407518200, 1407518207, 'AE', 'United Arab Emirates'), +('83.229.6.0', '83.229.6.7', 1407518208, 1407518215, 'A2', 'Satellite Provider'), +('83.229.6.8', '83.229.6.15', 1407518216, 1407518223, 'ZA', 'South Africa'), +('83.229.6.16', '83.229.6.23', 1407518224, 1407518231, 'A2', 'Satellite Provider'), +('83.229.6.24', '83.229.6.39', 1407518232, 1407518247, 'NG', 'Nigeria'), +('83.229.6.40', '83.229.6.47', 1407518248, 1407518255, 'A2', 'Satellite Provider'), +('83.229.6.48', '83.229.6.61', 1407518256, 1407518269, 'GH', 'Ghana'), +('83.229.6.62', '83.229.6.127', 1407518270, 1407518335, 'A2', 'Satellite Provider'), +('83.229.6.128', '83.229.6.135', 1407518336, 1407518343, 'CG', 'Congo'), +('83.229.6.136', '83.229.6.143', 1407518344, 1407518351, 'ZA', 'South Africa'), +('83.229.6.144', '83.229.6.151', 1407518352, 1407518359, 'GH', 'Ghana'), +('83.229.6.152', '83.229.6.159', 1407518360, 1407518367, 'NG', 'Nigeria'), +('83.229.6.160', '83.229.6.167', 1407518368, 1407518375, 'ZA', 'South Africa'), +('83.229.6.168', '83.229.6.183', 1407518376, 1407518391, 'NG', 'Nigeria'), +('83.229.6.184', '83.229.7.255', 1407518392, 1407518719, 'A2', 'Satellite Provider'), +('83.229.8.0', '83.229.8.63', 1407518720, 1407518783, 'AO', 'Angola'), +('83.229.8.64', '83.229.8.111', 1407518784, 1407518831, 'A2', 'Satellite Provider'), +('83.229.8.112', '83.229.8.223', 1407518832, 1407518943, 'NG', 'Nigeria'), +('83.229.8.224', '83.229.8.255', 1407518944, 1407518975, 'A2', 'Satellite Provider'), +('83.229.9.0', '83.229.9.23', 1407518976, 1407518999, 'NG', 'Nigeria'), +('83.229.9.24', '83.229.9.31', 1407519000, 1407519007, 'A2', 'Satellite Provider'), +('83.229.9.32', '83.229.9.39', 1407519008, 1407519015, 'NG', 'Nigeria'), +('83.229.9.40', '83.229.9.47', 1407519016, 1407519023, 'AO', 'Angola'), +('83.229.9.48', '83.229.9.55', 1407519024, 1407519031, 'NG', 'Nigeria'), +('83.229.9.56', '83.229.9.63', 1407519032, 1407519039, 'AO', 'Angola'), +('83.229.9.64', '83.229.9.87', 1407519040, 1407519063, 'NG', 'Nigeria'), +('83.229.9.88', '83.229.9.95', 1407519064, 1407519071, 'BJ', 'Benin'), +('83.229.9.96', '83.229.9.103', 1407519072, 1407519079, 'CD', 'Congo, The Democratic Republic of the'), +('83.229.9.104', '83.229.9.119', 1407519080, 1407519095, 'NG', 'Nigeria'), +('83.229.9.120', '83.229.9.127', 1407519096, 1407519103, 'CM', 'Cameroon'), +('83.229.9.128', '83.229.9.135', 1407519104, 1407519111, 'NG', 'Nigeria'), +('83.229.9.136', '83.229.9.159', 1407519112, 1407519135, 'SL', 'Sierra Leone'), +('83.229.9.160', '83.229.9.167', 1407519136, 1407519143, 'NG', 'Nigeria'), +('83.229.9.168', '83.229.9.175', 1407519144, 1407519151, 'AO', 'Angola'), +('83.229.9.176', '83.229.9.183', 1407519152, 1407519159, 'A2', 'Satellite Provider'), +('83.229.9.184', '83.229.9.191', 1407519160, 1407519167, 'AO', 'Angola'), +('83.229.9.192', '83.229.9.199', 1407519168, 1407519175, 'NG', 'Nigeria'), +('83.229.9.200', '83.229.9.207', 1407519176, 1407519183, 'SL', 'Sierra Leone'), +('83.229.9.208', '83.229.9.215', 1407519184, 1407519191, 'A2', 'Satellite Provider'), +('83.229.9.216', '83.229.9.223', 1407519192, 1407519199, 'CD', 'Congo, The Democratic Republic of the'), +('83.229.9.224', '83.229.9.231', 1407519200, 1407519207, 'AO', 'Angola'), +('83.229.9.232', '83.229.9.239', 1407519208, 1407519215, 'TG', 'Togo'), +('83.229.9.240', '83.229.9.247', 1407519216, 1407519223, 'NG', 'Nigeria'), +('83.229.9.248', '83.229.9.255', 1407519224, 1407519231, 'A2', 'Satellite Provider'), +('83.229.10.0', '83.229.11.127', 1407519232, 1407519615, 'NG', 'Nigeria'), +('83.229.11.128', '83.229.14.7', 1407519616, 1407520263, 'A2', 'Satellite Provider'), +('83.229.14.8', '83.229.14.15', 1407520264, 1407520271, 'NG', 'Nigeria'), +('83.229.14.16', '83.229.14.31', 1407520272, 1407520287, 'A2', 'Satellite Provider'), +('83.229.14.32', '83.229.14.39', 1407520288, 1407520295, 'GH', 'Ghana'), +('83.229.14.40', '83.229.14.63', 1407520296, 1407520319, 'NG', 'Nigeria'), +('83.229.14.64', '83.229.14.71', 1407520320, 1407520327, 'A2', 'Satellite Provider'), +('83.229.14.72', '83.229.14.79', 1407520328, 1407520335, 'SL', 'Sierra Leone'), +('83.229.14.80', '83.229.14.87', 1407520336, 1407520343, 'A2', 'Satellite Provider'), +('83.229.14.88', '83.229.14.95', 1407520344, 1407520351, 'NG', 'Nigeria'), +('83.229.14.96', '83.229.14.103', 1407520352, 1407520359, 'A2', 'Satellite Provider'), +('83.229.14.104', '83.229.14.111', 1407520360, 1407520367, 'CD', 'Congo, The Democratic Republic of the'), +('83.229.14.112', '83.229.14.119', 1407520368, 1407520375, 'A2', 'Satellite Provider'), +('83.229.14.120', '83.229.14.141', 1407520376, 1407520397, 'NG', 'Nigeria'), +('83.229.14.142', '83.229.14.183', 1407520398, 1407520439, 'A2', 'Satellite Provider'), +('83.229.14.184', '83.229.14.191', 1407520440, 1407520447, 'CD', 'Congo, The Democratic Republic of the'), +('83.229.14.192', '83.229.14.207', 1407520448, 1407520463, 'CG', 'Congo'), +('83.229.14.208', '83.229.14.255', 1407520464, 1407520511, 'A2', 'Satellite Provider'), +('83.229.15.0', '83.229.15.7', 1407520512, 1407520519, 'ZW', 'Zimbabwe'), +('83.229.15.8', '83.229.15.15', 1407520520, 1407520527, 'A2', 'Satellite Provider'), +('83.229.15.16', '83.229.15.31', 1407520528, 1407520543, 'NG', 'Nigeria'), +('83.229.15.32', '83.229.15.39', 1407520544, 1407520551, 'A2', 'Satellite Provider'), +('83.229.15.40', '83.229.15.47', 1407520552, 1407520559, 'NG', 'Nigeria'), +('83.229.15.48', '83.229.15.55', 1407520560, 1407520567, 'SL', 'Sierra Leone'), +('83.229.15.56', '83.229.15.63', 1407520568, 1407520575, 'NG', 'Nigeria'), +('83.229.15.64', '83.229.15.87', 1407520576, 1407520599, 'A2', 'Satellite Provider'), +('83.229.15.88', '83.229.15.95', 1407520600, 1407520607, 'FR', 'France'), +('83.229.15.96', '83.229.15.103', 1407520608, 1407520615, 'AO', 'Angola'), +('83.229.15.104', '83.229.15.111', 1407520616, 1407520623, 'A2', 'Satellite Provider'), +('83.229.15.112', '83.229.15.119', 1407520624, 1407520631, 'NG', 'Nigeria'), +('83.229.15.120', '83.229.15.127', 1407520632, 1407520639, 'A2', 'Satellite Provider'), +('83.229.15.128', '83.229.15.143', 1407520640, 1407520655, 'NG', 'Nigeria'), +('83.229.15.144', '83.229.15.151', 1407520656, 1407520663, 'GA', 'Gabon'), +('83.229.15.152', '83.229.15.159', 1407520664, 1407520671, 'A2', 'Satellite Provider'), +('83.229.15.160', '83.229.15.167', 1407520672, 1407520679, 'CM', 'Cameroon'), +('83.229.15.168', '83.229.15.183', 1407520680, 1407520695, 'NG', 'Nigeria'), +('83.229.15.184', '83.229.15.191', 1407520696, 1407520703, 'GN', 'Guinea'), +('83.229.15.192', '83.229.15.215', 1407520704, 1407520727, 'NG', 'Nigeria'), +('83.229.15.216', '83.229.15.223', 1407520728, 1407520735, 'AO', 'Angola'), +('83.229.15.224', '83.229.15.231', 1407520736, 1407520743, 'NG', 'Nigeria'), +('83.229.15.232', '83.229.15.239', 1407520744, 1407520751, 'A2', 'Satellite Provider'), +('83.229.15.240', '83.229.15.247', 1407520752, 1407520759, 'CM', 'Cameroon'), +('83.229.15.248', '83.229.15.255', 1407520760, 1407520767, 'CD', 'Congo, The Democratic Republic of the'), +('83.229.16.0', '83.229.17.255', 1407520768, 1407521279, 'NG', 'Nigeria'), +('83.229.18.0', '83.229.20.255', 1407521280, 1407522047, 'A2', 'Satellite Provider'), +('83.229.21.0', '83.229.21.255', 1407522048, 1407522303, 'TZ', 'Tanzania, United Republic of'), +('83.229.22.0', '83.229.23.255', 1407522304, 1407522815, 'NG', 'Nigeria'), +('83.229.24.0', '83.229.24.255', 1407522816, 1407523071, 'ZW', 'Zimbabwe'), +('83.229.25.0', '83.229.25.255', 1407523072, 1407523327, 'TZ', 'Tanzania, United Republic of'), +('83.229.26.0', '83.229.26.15', 1407523328, 1407523343, 'MW', 'Malawi'), +('83.229.26.16', '83.229.26.23', 1407523344, 1407523351, 'NG', 'Nigeria'), +('83.229.26.24', '83.229.26.31', 1407523352, 1407523359, 'TZ', 'Tanzania, United Republic of'), +('83.229.26.32', '83.229.26.39', 1407523360, 1407523367, 'ZW', 'Zimbabwe'), +('83.229.26.40', '83.229.26.47', 1407523368, 1407523375, 'NG', 'Nigeria'), +('83.229.26.48', '83.229.26.63', 1407523376, 1407523391, 'A2', 'Satellite Provider'), +('83.229.26.64', '83.229.26.127', 1407523392, 1407523455, 'ZW', 'Zimbabwe'), +('83.229.26.128', '83.229.26.191', 1407523456, 1407523519, 'MW', 'Malawi'), +('83.229.26.192', '83.229.26.207', 1407523520, 1407523535, 'A2', 'Satellite Provider'), +('83.229.26.208', '83.229.26.223', 1407523536, 1407523551, 'NG', 'Nigeria'), +('83.229.26.224', '83.229.26.231', 1407523552, 1407523559, 'CM', 'Cameroon'), +('83.229.26.232', '83.229.26.247', 1407523560, 1407523575, 'KE', 'Kenya'), +('83.229.26.248', '83.229.26.255', 1407523576, 1407523583, 'MW', 'Malawi'), +('83.229.27.0', '83.229.27.255', 1407523584, 1407523839, 'SO', 'Somalia'), +('83.229.28.0', '83.229.29.255', 1407523840, 1407524351, 'MW', 'Malawi'), +('83.229.30.0', '83.229.30.255', 1407524352, 1407524607, 'GB', 'United Kingdom'), +('83.229.31.0', '83.229.31.255', 1407524608, 1407524863, 'A2', 'Satellite Provider'), +('83.229.32.0', '83.229.43.255', 1407524864, 1407527935, 'MZ', 'Mozambique'), +('83.229.44.0', '83.229.48.63', 1407527936, 1407529023, 'A2', 'Satellite Provider'), +('83.229.48.64', '83.229.48.127', 1407529024, 1407529087, 'NG', 'Nigeria'), +('83.229.48.128', '83.229.48.135', 1407529088, 1407529095, 'TZ', 'Tanzania, United Republic of'), +('83.229.48.136', '83.229.48.143', 1407529096, 1407529103, 'ZW', 'Zimbabwe'), +('83.229.48.144', '83.229.48.151', 1407529104, 1407529111, 'NG', 'Nigeria'), +('83.229.48.152', '83.229.48.159', 1407529112, 1407529119, 'MW', 'Malawi'), +('83.229.48.160', '83.229.48.167', 1407529120, 1407529127, 'A2', 'Satellite Provider'), +('83.229.48.168', '83.229.48.175', 1407529128, 1407529135, 'ZW', 'Zimbabwe'), +('83.229.48.176', '83.229.48.183', 1407529136, 1407529143, 'MW', 'Malawi'), +('83.229.48.184', '83.229.48.191', 1407529144, 1407529151, 'ZW', 'Zimbabwe'), +('83.229.48.192', '83.229.48.223', 1407529152, 1407529183, 'A2', 'Satellite Provider'), +('83.229.48.224', '83.229.48.231', 1407529184, 1407529191, 'NG', 'Nigeria'), +('83.229.48.232', '83.229.48.239', 1407529192, 1407529199, 'MZ', 'Mozambique'), +('83.229.48.240', '83.229.48.247', 1407529200, 1407529207, 'A2', 'Satellite Provider'), +('83.229.48.248', '83.229.48.255', 1407529208, 1407529215, 'NG', 'Nigeria'), +('83.229.49.0', '83.229.55.255', 1407529216, 1407531007, 'A2', 'Satellite Provider'), +('83.229.56.0', '83.229.58.255', 1407531008, 1407531775, 'NG', 'Nigeria'), +('83.229.59.0', '83.229.59.255', 1407531776, 1407532031, 'A2', 'Satellite Provider'), +('83.229.60.0', '83.229.61.255', 1407532032, 1407532543, 'KE', 'Kenya'), +('83.229.62.0', '83.229.62.7', 1407532544, 1407532551, 'UG', 'Uganda'), +('83.229.62.8', '83.229.62.15', 1407532552, 1407532559, 'AO', 'Angola'), +('83.229.62.16', '83.229.62.39', 1407532560, 1407532583, 'A2', 'Satellite Provider'), +('83.229.62.40', '83.229.62.47', 1407532584, 1407532591, 'ZW', 'Zimbabwe'), +('83.229.62.48', '83.229.62.63', 1407532592, 1407532607, 'A2', 'Satellite Provider'), +('83.229.62.64', '83.229.62.71', 1407532608, 1407532615, 'ZW', 'Zimbabwe'), +('83.229.62.72', '83.229.62.79', 1407532616, 1407532623, 'KG', 'Kyrgyzstan'), +('83.229.62.80', '83.229.62.87', 1407532624, 1407532631, 'A2', 'Satellite Provider'), +('83.229.62.88', '83.229.62.95', 1407532632, 1407532639, 'MW', 'Malawi'), +('83.229.62.96', '83.229.62.103', 1407532640, 1407532647, 'TZ', 'Tanzania, United Republic of'), +('83.229.62.104', '83.229.62.119', 1407532648, 1407532663, 'A2', 'Satellite Provider'), +('83.229.62.120', '83.229.62.127', 1407532664, 1407532671, 'TZ', 'Tanzania, United Republic of'), +('83.229.62.128', '83.229.62.255', 1407532672, 1407532799, 'ZW', 'Zimbabwe'), +('83.229.63.0', '83.229.63.127', 1407532800, 1407532927, 'SO', 'Somalia'), +('83.229.63.128', '83.229.63.255', 1407532928, 1407533055, 'A2', 'Satellite Provider'), +('83.229.64.0', '83.229.64.255', 1407533056, 1407533311, 'NG', 'Nigeria'), +('83.229.65.0', '83.229.65.15', 1407533312, 1407533327, 'AO', 'Angola'), +('83.229.65.16', '83.229.65.31', 1407533328, 1407533343, 'A2', 'Satellite Provider'), +('83.229.65.32', '83.229.65.63', 1407533344, 1407533375, 'NG', 'Nigeria'), +('83.229.65.64', '83.229.65.95', 1407533376, 1407533407, 'CD', 'Congo, The Democratic Republic of the'), +('83.229.65.96', '83.229.65.111', 1407533408, 1407533423, 'A2', 'Satellite Provider'), +('83.229.65.112', '83.229.65.255', 1407533424, 1407533567, 'GH', 'Ghana'), +('83.229.66.0', '83.229.66.23', 1407533568, 1407533591, 'NG', 'Nigeria'), +('83.229.66.24', '83.229.66.39', 1407533592, 1407533607, 'A2', 'Satellite Provider'), +('83.229.66.40', '83.229.66.63', 1407533608, 1407533631, 'NG', 'Nigeria'), +('83.229.66.64', '83.229.66.95', 1407533632, 1407533663, 'IQ', 'Iraq'), +('83.229.66.96', '83.229.66.111', 1407533664, 1407533679, 'A2', 'Satellite Provider'), +('83.229.66.112', '83.229.66.127', 1407533680, 1407533695, 'NG', 'Nigeria'), +('83.229.66.128', '83.229.66.143', 1407533696, 1407533711, 'CD', 'Congo, The Democratic Republic of the'), +('83.229.66.144', '83.229.66.151', 1407533712, 1407533719, 'ZW', 'Zimbabwe'), +('83.229.66.152', '83.229.66.159', 1407533720, 1407533727, 'SL', 'Sierra Leone'), +('83.229.66.160', '83.229.66.167', 1407533728, 1407533735, 'A2', 'Satellite Provider'), +('83.229.66.168', '83.229.66.175', 1407533736, 1407533743, 'GN', 'Guinea'), +('83.229.66.176', '83.229.66.183', 1407533744, 1407533751, 'NG', 'Nigeria'), +('83.229.66.184', '83.229.66.191', 1407533752, 1407533759, 'A2', 'Satellite Provider'), +('83.229.66.192', '83.229.66.215', 1407533760, 1407533783, 'NG', 'Nigeria'), +('83.229.66.216', '83.229.66.247', 1407533784, 1407533815, 'A2', 'Satellite Provider'), +('83.229.66.248', '83.229.66.255', 1407533816, 1407533823, 'NG', 'Nigeria'), +('83.229.67.0', '83.229.67.255', 1407533824, 1407534079, 'A2', 'Satellite Provider'), +('83.229.68.0', '83.229.68.255', 1407534080, 1407534335, 'AE', 'United Arab Emirates'), +('83.229.69.0', '83.229.69.7', 1407534336, 1407534343, 'NG', 'Nigeria'), +('83.229.69.8', '83.229.69.23', 1407534344, 1407534359, 'A2', 'Satellite Provider'), +('83.229.69.24', '83.229.69.31', 1407534360, 1407534367, 'LR', 'Liberia'), +('83.229.69.32', '83.229.69.47', 1407534368, 1407534383, 'NG', 'Nigeria'), +('83.229.69.48', '83.229.69.55', 1407534384, 1407534391, 'CD', 'Congo, The Democratic Republic of the'), +('83.229.69.56', '83.229.69.63', 1407534392, 1407534399, 'AO', 'Angola'), +('83.229.69.64', '83.229.69.71', 1407534400, 1407534407, 'NG', 'Nigeria'), +('83.229.69.72', '83.229.69.79', 1407534408, 1407534415, 'CI', 'Cote D''Ivoire'), +('83.229.69.80', '83.229.69.87', 1407534416, 1407534423, 'A2', 'Satellite Provider'), +('83.229.69.88', '83.229.69.95', 1407534424, 1407534431, 'CD', 'Congo, The Democratic Republic of the'), +('83.229.69.96', '83.229.69.103', 1407534432, 1407534439, 'A2', 'Satellite Provider'), +('83.229.69.104', '83.229.69.111', 1407534440, 1407534447, 'CD', 'Congo, The Democratic Republic of the'), +('83.229.69.112', '83.229.69.127', 1407534448, 1407534463, 'NG', 'Nigeria'), +('83.229.69.128', '83.229.69.207', 1407534464, 1407534543, 'A2', 'Satellite Provider'), +('83.229.69.208', '83.229.69.223', 1407534544, 1407534559, 'GH', 'Ghana'), +('83.229.69.224', '83.229.69.231', 1407534560, 1407534567, 'NG', 'Nigeria'), +('83.229.69.232', '83.229.69.239', 1407534568, 1407534575, 'A2', 'Satellite Provider'), +('83.229.69.240', '83.229.69.247', 1407534576, 1407534583, 'CD', 'Congo, The Democratic Republic of the'), +('83.229.69.248', '83.229.69.255', 1407534584, 1407534591, 'A2', 'Satellite Provider'), +('83.229.70.0', '83.229.70.135', 1407534592, 1407534727, 'NG', 'Nigeria'), +('83.229.70.136', '83.229.70.143', 1407534728, 1407534735, 'CI', 'Cote D''Ivoire'), +('83.229.70.144', '83.229.70.183', 1407534736, 1407534775, 'NG', 'Nigeria'), +('83.229.70.184', '83.229.70.191', 1407534776, 1407534783, 'ML', 'Mali'), +('83.229.70.192', '83.229.70.199', 1407534784, 1407534791, 'CD', 'Congo, The Democratic Republic of the'), +('83.229.70.200', '83.229.70.247', 1407534792, 1407534839, 'A2', 'Satellite Provider'), +('83.229.70.248', '83.229.70.255', 1407534840, 1407534847, 'NG', 'Nigeria'), +('83.229.71.0', '83.229.71.255', 1407534848, 1407535103, 'CM', 'Cameroon'), +('83.229.72.0', '83.229.73.255', 1407535104, 1407535615, 'GA', 'Gabon'), +('83.229.74.0', '83.229.75.255', 1407535616, 1407536127, 'CD', 'Congo, The Democratic Republic of the'), +('83.229.76.0', '83.229.77.255', 1407536128, 1407536639, 'GA', 'Gabon'), +('83.229.78.0', '83.229.78.255', 1407536640, 1407536895, 'CD', 'Congo, The Democratic Republic of the'), +('83.229.79.0', '83.229.79.7', 1407536896, 1407536903, 'A2', 'Satellite Provider'), +('83.229.79.8', '83.229.79.23', 1407536904, 1407536919, 'ZW', 'Zimbabwe'), +('83.229.79.24', '83.229.79.39', 1407536920, 1407536935, 'A2', 'Satellite Provider'), +('83.229.79.40', '83.229.79.47', 1407536936, 1407536943, 'NG', 'Nigeria'), +('83.229.79.48', '83.229.79.55', 1407536944, 1407536951, 'AO', 'Angola'), +('83.229.79.56', '83.229.79.71', 1407536952, 1407536967, 'A2', 'Satellite Provider'), +('83.229.79.72', '83.229.79.79', 1407536968, 1407536975, 'NG', 'Nigeria'), +('83.229.79.80', '83.229.79.87', 1407536976, 1407536983, 'A2', 'Satellite Provider'), +('83.229.79.88', '83.229.79.95', 1407536984, 1407536991, 'IQ', 'Iraq'), +('83.229.79.96', '83.229.79.103', 1407536992, 1407536999, 'A2', 'Satellite Provider'), +('83.229.79.104', '83.229.79.111', 1407537000, 1407537007, 'GH', 'Ghana'), +('83.229.79.112', '83.229.79.135', 1407537008, 1407537031, 'A2', 'Satellite Provider'), +('83.229.79.136', '83.229.79.143', 1407537032, 1407537039, 'NG', 'Nigeria'), +('83.229.79.144', '83.229.79.151', 1407537040, 1407537047, 'A2', 'Satellite Provider'), +('83.229.79.152', '83.229.79.159', 1407537048, 1407537055, 'NG', 'Nigeria'), +('83.229.79.160', '83.229.79.175', 1407537056, 1407537071, 'GH', 'Ghana'), +('83.229.79.176', '83.229.79.191', 1407537072, 1407537087, 'NG', 'Nigeria'), +('83.229.79.192', '83.229.79.199', 1407537088, 1407537095, 'GH', 'Ghana'), +('83.229.79.200', '83.229.79.207', 1407537096, 1407537103, 'A2', 'Satellite Provider'), +('83.229.79.208', '83.229.79.215', 1407537104, 1407537111, 'NG', 'Nigeria'), +('83.229.79.216', '83.229.79.223', 1407537112, 1407537119, 'LR', 'Liberia'), +('83.229.79.224', '83.229.79.239', 1407537120, 1407537135, 'A2', 'Satellite Provider'), +('83.229.79.240', '83.229.79.255', 1407537136, 1407537151, 'NG', 'Nigeria'), +('83.229.80.0', '83.229.83.255', 1407537152, 1407538175, 'A2', 'Satellite Provider'), +('83.229.84.0', '83.229.84.255', 1407538176, 1407538431, 'AT', 'Austria'), +('83.229.85.0', '83.229.85.7', 1407538432, 1407538439, 'A2', 'Satellite Provider'), +('83.229.85.8', '83.229.85.15', 1407538440, 1407538447, 'NG', 'Nigeria'), +('83.229.85.16', '83.229.85.31', 1407538448, 1407538463, 'A2', 'Satellite Provider'), +('83.229.85.32', '83.229.85.39', 1407538464, 1407538471, 'ZM', 'Zambia'), +('83.229.85.40', '83.229.85.47', 1407538472, 1407538479, 'NG', 'Nigeria'), +('83.229.85.48', '83.229.85.63', 1407538480, 1407538495, 'A2', 'Satellite Provider'), +('83.229.85.64', '83.229.85.71', 1407538496, 1407538503, 'NG', 'Nigeria'), +('83.229.85.72', '83.229.85.95', 1407538504, 1407538527, 'A2', 'Satellite Provider'), +('83.229.85.96', '83.229.85.111', 1407538528, 1407538543, 'CD', 'Congo, The Democratic Republic of the'), +('83.229.85.112', '83.229.85.127', 1407538544, 1407538559, 'A2', 'Satellite Provider'), +('83.229.85.128', '83.229.85.191', 1407538560, 1407538623, 'CD', 'Congo, The Democratic Republic of the'), +('83.229.85.192', '83.229.85.231', 1407538624, 1407538663, 'A2', 'Satellite Provider'), +('83.229.85.232', '83.229.86.127', 1407538664, 1407538815, 'NG', 'Nigeria'), +('83.229.86.128', '83.229.86.159', 1407538816, 1407538847, 'A2', 'Satellite Provider'), +('83.229.86.160', '83.229.86.175', 1407538848, 1407538863, 'NG', 'Nigeria'), +('83.229.86.176', '83.229.86.191', 1407538864, 1407538879, 'GE', 'Georgia'), +('83.229.86.192', '83.229.86.199', 1407538880, 1407538887, 'A2', 'Satellite Provider'), +('83.229.86.200', '83.229.86.207', 1407538888, 1407538895, 'NG', 'Nigeria'), +('83.229.86.208', '83.229.86.223', 1407538896, 1407538911, 'A2', 'Satellite Provider'), +('83.229.86.224', '83.229.86.231', 1407538912, 1407538919, 'GH', 'Ghana'), +('83.229.86.232', '83.229.86.239', 1407538920, 1407538927, 'A2', 'Satellite Provider'), +('83.229.86.240', '83.229.86.247', 1407538928, 1407538935, 'NG', 'Nigeria'), +('83.229.86.248', '83.229.86.255', 1407538936, 1407538943, 'GH', 'Ghana'), +('83.229.87.0', '83.229.87.15', 1407538944, 1407538959, 'A2', 'Satellite Provider'), +('83.229.87.16', '83.229.87.23', 1407538960, 1407538967, 'NG', 'Nigeria'), +('83.229.87.24', '83.229.87.31', 1407538968, 1407538975, 'CM', 'Cameroon'), +('83.229.87.32', '83.229.87.39', 1407538976, 1407538983, 'NG', 'Nigeria'), +('83.229.87.40', '83.229.87.47', 1407538984, 1407538991, 'SL', 'Sierra Leone'), +('83.229.87.48', '83.229.87.55', 1407538992, 1407538999, 'A2', 'Satellite Provider'), +('83.229.87.56', '83.229.87.63', 1407539000, 1407539007, 'NG', 'Nigeria'), +('83.229.87.64', '83.229.87.111', 1407539008, 1407539055, 'A2', 'Satellite Provider'), +('83.229.87.112', '83.229.87.119', 1407539056, 1407539063, 'NG', 'Nigeria'), +('83.229.87.120', '83.229.87.127', 1407539064, 1407539071, 'A2', 'Satellite Provider'), +('83.229.87.128', '83.229.87.135', 1407539072, 1407539079, 'NG', 'Nigeria'), +('83.229.87.136', '83.229.87.143', 1407539080, 1407539087, 'A2', 'Satellite Provider'), +('83.229.87.144', '83.229.87.151', 1407539088, 1407539095, 'AO', 'Angola'), +('83.229.87.152', '83.229.87.159', 1407539096, 1407539103, 'A2', 'Satellite Provider'), +('83.229.87.160', '83.229.87.167', 1407539104, 1407539111, 'NG', 'Nigeria'), +('83.229.87.168', '83.229.87.175', 1407539112, 1407539119, 'A2', 'Satellite Provider'), +('83.229.87.176', '83.229.87.183', 1407539120, 1407539127, 'LR', 'Liberia'), +('83.229.87.184', '83.229.87.199', 1407539128, 1407539143, 'A2', 'Satellite Provider'), +('83.229.87.200', '83.229.87.207', 1407539144, 1407539151, 'NG', 'Nigeria'), +('83.229.87.208', '83.229.87.223', 1407539152, 1407539167, 'A2', 'Satellite Provider'), +('83.229.87.224', '83.229.87.231', 1407539168, 1407539175, 'TD', 'Chad'), +('83.229.87.232', '83.229.87.239', 1407539176, 1407539183, 'GH', 'Ghana'), +('83.229.87.240', '83.229.87.255', 1407539184, 1407539199, 'NG', 'Nigeria'), +('83.229.88.0', '83.229.88.255', 1407539200, 1407539455, 'GE', 'Georgia'), +('83.229.89.0', '83.229.96.223', 1407539456, 1407541471, 'A2', 'Satellite Provider'), +('83.229.96.224', '83.229.96.247', 1407541472, 1407541495, 'NG', 'Nigeria'), +('83.229.96.248', '83.229.97.31', 1407541496, 1407541535, 'A2', 'Satellite Provider'), +('83.229.97.32', '83.229.97.39', 1407541536, 1407541543, 'CM', 'Cameroon'), +('83.229.97.40', '83.229.97.47', 1407541544, 1407541551, 'A2', 'Satellite Provider'), +('83.229.97.48', '83.229.97.55', 1407541552, 1407541559, 'NG', 'Nigeria'), +('83.229.97.56', '83.229.97.63', 1407541560, 1407541567, 'GH', 'Ghana'), +('83.229.97.64', '83.229.97.199', 1407541568, 1407541703, 'A2', 'Satellite Provider'), +('83.229.97.200', '83.229.97.215', 1407541704, 1407541719, 'NG', 'Nigeria'), +('83.229.97.216', '83.229.97.223', 1407541720, 1407541727, 'A2', 'Satellite Provider'), +('83.229.97.224', '83.229.97.231', 1407541728, 1407541735, 'NG', 'Nigeria'), +('83.229.97.232', '83.229.97.247', 1407541736, 1407541751, 'A2', 'Satellite Provider'), +('83.229.97.248', '83.229.97.255', 1407541752, 1407541759, 'NG', 'Nigeria'), +('83.229.98.0', '83.229.98.127', 1407541760, 1407541887, 'A2', 'Satellite Provider'), +('83.229.98.128', '83.229.99.127', 1407541888, 1407542143, 'NG', 'Nigeria'), +('83.229.99.128', '83.229.100.255', 1407542144, 1407542527, 'A2', 'Satellite Provider'), +('83.229.101.0', '83.229.101.7', 1407542528, 1407542535, 'NG', 'Nigeria'), +('83.229.101.8', '83.229.101.15', 1407542536, 1407542543, 'A2', 'Satellite Provider'), +('83.229.101.16', '83.229.101.23', 1407542544, 1407542551, 'LR', 'Liberia'), +('83.229.101.24', '83.229.101.47', 1407542552, 1407542575, 'A2', 'Satellite Provider'), +('83.229.101.48', '83.229.101.55', 1407542576, 1407542583, 'CD', 'Congo, The Democratic Republic of the'), +('83.229.101.56', '83.229.101.63', 1407542584, 1407542591, 'A2', 'Satellite Provider'), +('83.229.101.64', '83.229.101.71', 1407542592, 1407542599, 'NG', 'Nigeria'), +('83.229.101.72', '83.229.101.79', 1407542600, 1407542607, 'TG', 'Togo'), +('83.229.101.80', '83.229.101.95', 1407542608, 1407542623, 'A2', 'Satellite Provider'), +('83.229.101.96', '83.229.101.103', 1407542624, 1407542631, 'BJ', 'Benin'), +('83.229.101.104', '83.229.101.111', 1407542632, 1407542639, 'NG', 'Nigeria'), +('83.229.101.112', '83.229.101.127', 1407542640, 1407542655, 'A2', 'Satellite Provider'), +('83.229.101.128', '83.229.101.135', 1407542656, 1407542663, 'SL', 'Sierra Leone'), +('83.229.101.136', '83.229.101.143', 1407542664, 1407542671, 'A2', 'Satellite Provider'), +('83.229.101.144', '83.229.101.151', 1407542672, 1407542679, 'CM', 'Cameroon'), +('83.229.101.152', '83.229.101.159', 1407542680, 1407542687, 'NG', 'Nigeria'), +('83.229.101.160', '83.229.101.167', 1407542688, 1407542695, 'CD', 'Congo, The Democratic Republic of the'), +('83.229.101.168', '83.229.101.175', 1407542696, 1407542703, 'NG', 'Nigeria'), +('83.229.101.176', '83.229.101.183', 1407542704, 1407542711, 'CI', 'Cote D''Ivoire'), +('83.229.101.184', '83.229.101.191', 1407542712, 1407542719, 'A2', 'Satellite Provider'), +('83.229.101.192', '83.229.101.207', 1407542720, 1407542735, 'NG', 'Nigeria'), +('83.229.101.208', '83.229.101.239', 1407542736, 1407542767, 'A2', 'Satellite Provider'), +('83.229.101.240', '83.229.101.247', 1407542768, 1407542775, 'GA', 'Gabon'), +('83.229.101.248', '83.229.101.255', 1407542776, 1407542783, 'NG', 'Nigeria'), +('83.229.102.0', '83.229.102.7', 1407542784, 1407542791, 'A2', 'Satellite Provider'), +('83.229.102.8', '83.229.102.15', 1407542792, 1407542799, 'NG', 'Nigeria'), +('83.229.102.16', '83.229.102.47', 1407542800, 1407542831, 'A2', 'Satellite Provider'), +('83.229.102.48', '83.229.102.79', 1407542832, 1407542863, 'NG', 'Nigeria'), +('83.229.102.80', '83.229.102.95', 1407542864, 1407542879, 'A2', 'Satellite Provider'), +('83.229.102.96', '83.229.102.103', 1407542880, 1407542887, 'NG', 'Nigeria'), +('83.229.102.104', '83.229.102.119', 1407542888, 1407542903, 'A2', 'Satellite Provider'), +('83.229.102.120', '83.229.102.127', 1407542904, 1407542911, 'CD', 'Congo, The Democratic Republic of the'), +('83.229.102.128', '83.229.102.255', 1407542912, 1407543039, 'AT', 'Austria'), +('83.229.103.0', '83.229.103.127', 1407543040, 1407543167, 'A2', 'Satellite Provider'), +('83.229.103.128', '83.229.103.143', 1407543168, 1407543183, 'GH', 'Ghana'), +('83.229.103.144', '83.229.103.199', 1407543184, 1407543239, 'NG', 'Nigeria'), +('83.229.103.200', '83.229.103.215', 1407543240, 1407543255, 'A2', 'Satellite Provider'), +('83.229.103.216', '83.229.103.223', 1407543256, 1407543263, 'NG', 'Nigeria'), +('83.229.103.224', '83.229.103.231', 1407543264, 1407543271, 'CD', 'Congo, The Democratic Republic of the'), +('83.229.103.232', '83.229.103.239', 1407543272, 1407543279, 'A2', 'Satellite Provider'), +('83.229.103.240', '83.229.103.247', 1407543280, 1407543287, 'NG', 'Nigeria'), +('83.229.103.248', '83.229.111.255', 1407543288, 1407545343, 'A2', 'Satellite Provider'), +('83.229.112.0', '83.229.115.255', 1407545344, 1407546367, 'SL', 'Sierra Leone'), +('83.229.116.0', '83.229.116.127', 1407546368, 1407546495, 'AE', 'United Arab Emirates'), +('83.229.116.128', '83.229.117.255', 1407546496, 1407546879, 'A2', 'Satellite Provider'), +('83.229.118.0', '83.229.118.255', 1407546880, 1407547135, 'NG', 'Nigeria'), +('83.229.119.0', '83.229.119.7', 1407547136, 1407547143, 'A2', 'Satellite Provider'), +('83.229.119.8', '83.229.119.15', 1407547144, 1407547151, 'GH', 'Ghana'), +('83.229.119.16', '83.229.119.31', 1407547152, 1407547167, 'A2', 'Satellite Provider'), +('83.229.119.32', '83.229.119.39', 1407547168, 1407547175, 'NG', 'Nigeria'), +('83.229.119.40', '83.229.119.47', 1407547176, 1407547183, 'GH', 'Ghana'), +('83.229.119.48', '83.229.119.63', 1407547184, 1407547199, 'NG', 'Nigeria'), +('83.229.119.64', '83.229.119.71', 1407547200, 1407547207, 'AO', 'Angola'), +('83.229.119.72', '83.229.119.79', 1407547208, 1407547215, 'TD', 'Chad'), +('83.229.119.80', '83.229.119.87', 1407547216, 1407547223, 'SL', 'Sierra Leone'), +('83.229.119.88', '83.229.119.95', 1407547224, 1407547231, 'A2', 'Satellite Provider'), +('83.229.119.96', '83.229.119.119', 1407547232, 1407547255, 'SL', 'Sierra Leone'), +('83.229.119.120', '83.229.119.127', 1407547256, 1407547263, 'A2', 'Satellite Provider'), +('83.229.119.128', '83.229.119.135', 1407547264, 1407547271, 'SL', 'Sierra Leone'), +('83.229.119.136', '83.229.119.159', 1407547272, 1407547295, 'NG', 'Nigeria'), +('83.229.119.160', '83.229.119.167', 1407547296, 1407547303, 'A2', 'Satellite Provider'), +('83.229.119.168', '83.229.119.175', 1407547304, 1407547311, 'SL', 'Sierra Leone'), +('83.229.119.176', '83.229.119.191', 1407547312, 1407547327, 'NG', 'Nigeria'), +('83.229.119.192', '83.229.119.199', 1407547328, 1407547335, 'A2', 'Satellite Provider'), +('83.229.119.200', '83.229.119.207', 1407547336, 1407547343, 'CI', 'Cote D''Ivoire'), +('83.229.119.208', '83.229.122.7', 1407547344, 1407547911, 'NG', 'Nigeria'), +('83.229.122.8', '83.229.122.15', 1407547912, 1407547919, 'A2', 'Satellite Provider'), +('83.229.122.16', '83.229.122.23', 1407547920, 1407547927, 'CG', 'Congo'), +('83.229.122.24', '83.229.122.39', 1407547928, 1407547943, 'A2', 'Satellite Provider'), +('83.229.122.40', '83.229.122.47', 1407547944, 1407547951, 'BJ', 'Benin'), +('83.229.122.48', '83.229.122.55', 1407547952, 1407547959, 'LR', 'Liberia'), +('83.229.122.56', '83.229.122.63', 1407547960, 1407547967, 'NG', 'Nigeria'), +('83.229.122.64', '83.229.122.79', 1407547968, 1407547983, 'A2', 'Satellite Provider'), +('83.229.122.80', '83.229.122.95', 1407547984, 1407547999, 'BJ', 'Benin'), +('83.229.122.96', '83.229.122.103', 1407548000, 1407548007, 'NG', 'Nigeria'), +('83.229.122.104', '83.229.122.119', 1407548008, 1407548023, 'A2', 'Satellite Provider'), +('83.229.122.120', '83.229.122.127', 1407548024, 1407548031, 'CD', 'Congo, The Democratic Republic of the'), +('83.229.122.128', '83.229.122.143', 1407548032, 1407548047, 'A2', 'Satellite Provider'), +('83.229.122.144', '83.229.122.151', 1407548048, 1407548055, 'GA', 'Gabon'), +('83.229.122.152', '83.229.122.159', 1407548056, 1407548063, 'NG', 'Nigeria'), +('83.229.122.160', '83.229.122.207', 1407548064, 1407548111, 'A2', 'Satellite Provider'), +('83.229.122.208', '83.229.122.215', 1407548112, 1407548119, 'CI', 'Cote D''Ivoire'), +('83.229.122.216', '83.229.122.223', 1407548120, 1407548127, 'A2', 'Satellite Provider'), +('83.229.122.224', '83.229.122.239', 1407548128, 1407548143, 'CM', 'Cameroon'), +('83.229.122.240', '83.229.122.247', 1407548144, 1407548151, 'A2', 'Satellite Provider'), +('83.229.122.248', '83.229.122.255', 1407548152, 1407548159, 'NG', 'Nigeria'), +('83.229.123.0', '83.229.123.255', 1407548160, 1407548415, 'A2', 'Satellite Provider'), +('83.229.124.0', '83.229.124.127', 1407548416, 1407548543, 'GE', 'Georgia'), +('83.229.124.128', '83.229.126.255', 1407548544, 1407549183, 'A2', 'Satellite Provider'), +('83.229.127.0', '83.229.127.255', 1407549184, 1407549439, 'GE', 'Georgia'), +('83.229.128.0', '83.229.255.255', 1407549440, 1407582207, 'RU', 'Russian Federation'), +('83.230.0.0', '83.230.127.255', 1407582208, 1407614975, 'PL', 'Poland'), +('83.230.128.0', '83.231.127.255', 1407614976, 1407680511, 'ES', 'Spain'), +('83.231.128.0', '83.231.131.255', 1407680512, 1407681535, 'GB', 'United Kingdom'), +('83.231.132.0', '83.231.132.103', 1407681536, 1407681639, 'FR', 'France'), +('83.231.132.104', '83.231.133.191', 1407681640, 1407681983, 'GB', 'United Kingdom'), +('83.231.133.192', '83.231.133.207', 1407681984, 1407681999, 'ES', 'Spain'), +('83.231.133.208', '83.231.137.63', 1407682000, 1407682879, 'GB', 'United Kingdom'), +('83.231.137.64', '83.231.137.95', 1407682880, 1407682911, 'FI', 'Finland'), +('83.231.137.96', '83.231.185.111', 1407682912, 1407695215, 'GB', 'United Kingdom'), +('83.231.185.112', '83.231.185.119', 1407695216, 1407695223, 'ES', 'Spain'), +('83.231.185.120', '83.231.205.47', 1407695224, 1407700271, 'GB', 'United Kingdom'), +('83.231.205.48', '83.231.205.63', 1407700272, 1407700287, 'DE', 'Germany'), +('83.231.205.64', '83.231.211.255', 1407700288, 1407702015, 'GB', 'United Kingdom'), +('83.231.212.0', '83.231.212.255', 1407702016, 1407702271, 'FR', 'France'), +('83.231.213.0', '83.231.214.255', 1407702272, 1407702783, 'GB', 'United Kingdom'), +('83.231.215.0', '83.231.215.127', 1407702784, 1407702911, 'FR', 'France'), +('83.231.215.128', '83.231.215.255', 1407702912, 1407703039, 'GB', 'United Kingdom'), +('83.231.216.0', '83.231.217.111', 1407703040, 1407703407, 'FR', 'France'), +('83.231.217.112', '83.231.217.119', 1407703408, 1407703415, 'GB', 'United Kingdom'), +('83.231.217.120', '83.231.217.159', 1407703416, 1407703455, 'FR', 'France'), +('83.231.217.160', '83.231.217.239', 1407703456, 1407703535, 'GB', 'United Kingdom'), +('83.231.217.240', '83.231.219.47', 1407703536, 1407703855, 'FR', 'France'), +('83.231.219.48', '83.231.219.127', 1407703856, 1407703935, 'GB', 'United Kingdom'), +('83.231.219.128', '83.231.219.191', 1407703936, 1407703999, 'FR', 'France'), +('83.231.219.192', '83.231.219.255', 1407704000, 1407704063, 'GB', 'United Kingdom'), +('83.231.220.0', '83.231.220.63', 1407704064, 1407704127, 'FR', 'France'), +('83.231.220.64', '83.231.220.127', 1407704128, 1407704191, 'GB', 'United Kingdom'), +('83.231.220.128', '83.231.220.255', 1407704192, 1407704319, 'FR', 'France'), +('83.231.221.0', '83.231.224.119', 1407704320, 1407705207, 'GB', 'United Kingdom'), +('83.231.224.120', '83.231.224.127', 1407705208, 1407705215, 'ES', 'Spain'), +('83.231.224.128', '83.231.224.159', 1407705216, 1407705247, 'GB', 'United Kingdom'), +('83.231.224.160', '83.231.224.207', 1407705248, 1407705295, 'ES', 'Spain'), +('83.231.224.208', '83.231.225.255', 1407705296, 1407705599, 'GB', 'United Kingdom'), +('83.231.226.0', '83.231.226.127', 1407705600, 1407705727, 'FR', 'France'), +('83.231.226.128', '83.231.228.255', 1407705728, 1407706367, 'GB', 'United Kingdom'), +('83.231.229.0', '83.231.229.15', 1407706368, 1407706383, 'FR', 'France'), +('83.231.229.16', '83.231.239.255', 1407706384, 1407709183, 'GB', 'United Kingdom'), +('83.231.240.0', '83.231.240.255', 1407709184, 1407709439, 'DE', 'Germany'), +('83.231.241.0', '83.231.243.255', 1407709440, 1407710207, 'GB', 'United Kingdom'), +('83.231.244.0', '83.231.244.31', 1407710208, 1407710239, 'ES', 'Spain'), +('83.231.244.32', '83.231.246.255', 1407710240, 1407710975, 'GB', 'United Kingdom'), +('83.231.247.0', '83.231.247.255', 1407710976, 1407711231, 'FR', 'France'), +('83.231.248.0', '83.231.255.255', 1407711232, 1407713279, 'GB', 'United Kingdom'), +('83.232.0.0', '83.232.255.255', 1407713280, 1407778815, 'NL', 'Netherlands'), +('83.233.0.0', '83.233.181.255', 1407778816, 1407825407, 'SE', 'Sweden'), +('83.233.182.0', '83.233.183.255', 1407825408, 1407825919, 'A1', 'Anonymous Proxy'), +('83.233.184.0', '83.233.247.255', 1407825920, 1407842303, 'SE', 'Sweden'), +('83.233.248.0', '83.233.248.63', 1407842304, 1407842367, 'NO', 'Norway'), +('83.233.248.64', '83.233.255.255', 1407842368, 1407844351, 'SE', 'Sweden'), +('83.234.0.0', '83.234.255.255', 1407844352, 1407909887, 'RU', 'Russian Federation'), +('83.235.0.0', '83.235.255.255', 1407909888, 1407975423, 'GR', 'Greece'), +('83.236.0.0', '83.236.255.255', 1407975424, 1408040959, 'DE', 'Germany'), +('83.237.0.0', '83.237.255.255', 1408040960, 1408106495, 'RU', 'Russian Federation'), +('83.238.0.0', '83.238.255.255', 1408106496, 1408172031, 'PL', 'Poland'), +('83.239.0.0', '83.239.255.255', 1408172032, 1408237567, 'RU', 'Russian Federation'), +('83.240.0.0', '83.240.127.255', 1408237568, 1408270335, 'CZ', 'Czech Republic'), +('83.240.128.0', '83.240.255.255', 1408270336, 1408303103, 'PT', 'Portugal'), +('83.241.0.0', '83.241.127.255', 1408303104, 1408335871, 'LV', 'Latvia'), +('83.241.128.0', '83.241.131.239', 1408335872, 1408336879, 'SE', 'Sweden'), +('83.241.131.240', '83.241.131.247', 1408336880, 1408336887, 'FI', 'Finland'), +('83.241.131.248', '83.241.144.79', 1408336888, 1408340047, 'SE', 'Sweden'), +('83.241.144.80', '83.241.144.87', 1408340048, 1408340055, 'NO', 'Norway'), +('83.241.144.88', '83.241.225.231', 1408340056, 1408360935, 'SE', 'Sweden'), +('83.241.225.232', '83.241.225.239', 1408360936, 1408360943, 'DK', 'Denmark'), +('83.241.225.240', '83.241.225.247', 1408360944, 1408360951, 'SE', 'Sweden'), +('83.241.225.248', '83.241.225.255', 1408360952, 1408360959, 'DK', 'Denmark'), +('83.241.226.0', '83.241.255.255', 1408360960, 1408368639, 'SE', 'Sweden'), +('83.242.0.0', '83.242.31.255', 1408368640, 1408376831, 'NO', 'Norway'), +('83.242.32.0', '83.242.63.255', 1408376832, 1408385023, 'DE', 'Germany'), +('83.242.64.0', '83.242.95.255', 1408385024, 1408393215, 'PL', 'Poland'), +('83.242.96.0', '83.242.127.255', 1408393216, 1408401407, 'NL', 'Netherlands'), +('83.242.128.0', '83.242.255.255', 1408401408, 1408434175, 'RU', 'Russian Federation'), +('83.243.0.0', '83.243.7.255', 1408434176, 1408436223, 'DE', 'Germany'), +('83.243.8.0', '83.243.15.255', 1408436224, 1408438271, 'LU', 'Luxembourg'), +('83.243.16.0', '83.243.23.255', 1408438272, 1408440319, 'FR', 'France'), +('83.243.24.0', '83.243.31.255', 1408440320, 1408442367, 'SE', 'Sweden'), +('83.243.32.0', '83.243.39.255', 1408442368, 1408444415, 'PL', 'Poland'), +('83.243.40.0', '83.243.63.255', 1408444416, 1408450559, 'DE', 'Germany'), +('83.243.64.0', '83.243.79.255', 1408450560, 1408454655, 'RU', 'Russian Federation'), +('83.243.80.0', '83.243.87.255', 1408454656, 1408456703, 'DE', 'Germany'), +('83.243.88.0', '83.243.95.255', 1408456704, 1408458751, 'LV', 'Latvia'), +('83.243.96.0', '83.243.103.255', 1408458752, 1408460799, 'GB', 'United Kingdom'), +('83.243.104.0', '83.243.111.255', 1408460800, 1408462847, 'PL', 'Poland'), +('83.243.112.0', '83.243.119.255', 1408462848, 1408464895, 'DE', 'Germany'), +('83.243.120.0', '83.243.127.255', 1408464896, 1408466943, 'RO', 'Romania'), +('83.243.128.0', '83.243.255.255', 1408466944, 1408499711, 'NO', 'Norway'), +('83.244.0.0', '83.244.127.255', 1408499712, 1408532479, 'PS', 'Palestinian Territory, Occupied'), +('83.244.128.0', '83.245.10.111', 1408532480, 1408567919, 'GB', 'United Kingdom'), +('83.245.10.112', '83.245.10.119', 1408567920, 1408567927, 'IE', 'Ireland'), +('83.245.10.120', '83.245.37.127', 1408567928, 1408574847, 'GB', 'United Kingdom'), +('83.245.37.128', '83.245.37.191', 1408574848, 1408574911, 'IE', 'Ireland'), +('83.245.37.192', '83.245.38.255', 1408574912, 1408575231, 'GB', 'United Kingdom'), +('83.245.39.0', '83.245.39.7', 1408575232, 1408575239, 'IE', 'Ireland'), +('83.245.39.8', '83.245.69.255', 1408575240, 1408583167, 'GB', 'United Kingdom'), +('83.245.70.0', '83.245.71.255', 1408583168, 1408583679, 'IE', 'Ireland'), +('83.245.72.0', '83.245.73.255', 1408583680, 1408584191, 'GB', 'United Kingdom'), +('83.245.74.0', '83.245.75.255', 1408584192, 1408584703, 'IE', 'Ireland'), +('83.245.76.0', '83.245.78.191', 1408584704, 1408585407, 'GB', 'United Kingdom'), +('83.245.78.192', '83.245.78.255', 1408585408, 1408585471, 'IE', 'Ireland'), +('83.245.79.0', '83.245.98.31', 1408585472, 1408590367, 'GB', 'United Kingdom'), +('83.245.98.32', '83.245.98.47', 1408590368, 1408590383, 'IM', 'Isle of Man'), +('83.245.98.48', '83.245.99.255', 1408590384, 1408590847, 'GB', 'United Kingdom'), +('83.245.100.0', '83.245.100.255', 1408590848, 1408591103, 'BE', 'Belgium'), +('83.245.101.0', '83.245.127.255', 1408591104, 1408598015, 'GB', 'United Kingdom'), +('83.245.128.0', '83.245.255.255', 1408598016, 1408630783, 'FI', 'Finland'), +('83.246.0.0', '83.246.15.255', 1408630784, 1408634879, 'RO', 'Romania'), +('83.246.16.0', '83.246.127.255', 1408634880, 1408663551, 'DE', 'Germany'), +('83.246.128.0', '83.246.255.255', 1408663552, 1408696319, 'RU', 'Russian Federation'), +('83.247.0.0', '83.247.127.255', 1408696320, 1408729087, 'NL', 'Netherlands'), +('83.247.128.0', '83.247.255.255', 1408729088, 1408761855, 'ES', 'Spain'), +('83.248.0.0', '83.255.255.255', 1408761856, 1409286143, 'SE', 'Sweden'), +('84.0.0.0', '84.1.41.255', 1409286144, 1409362431, 'HU', 'Hungary'), +('84.1.42.0', '84.1.47.255', 1409362432, 1409363967, 'BG', 'Bulgaria'), +('84.1.48.0', '84.1.239.255', 1409363968, 1409413119, 'HU', 'Hungary'), +('84.1.240.0', '84.1.247.255', 1409413120, 1409415167, 'BG', 'Bulgaria'), +('84.1.248.0', '84.2.50.255', 1409415168, 1409430271, 'HU', 'Hungary'), +('84.2.51.0', '84.2.52.255', 1409430272, 1409430783, 'RO', 'Romania'), +('84.2.53.0', '84.3.255.255', 1409430784, 1409548287, 'HU', 'Hungary'), +('84.4.0.0', '84.7.255.255', 1409548288, 1409810431, 'FR', 'France'), +('84.8.0.0', '84.9.255.255', 1409810432, 1409941503, 'GB', 'United Kingdom'), +('84.10.0.0', '84.10.255.255', 1409941504, 1410007039, 'PL', 'Poland'), +('84.11.0.0', '84.11.1.255', 1410007040, 1410007551, 'DE', 'Germany'), +('84.11.2.0', '84.11.2.255', 1410007552, 1410007807, 'IR', 'Iran, Islamic Republic of'), +('84.11.3.0', '84.11.5.255', 1410007808, 1410008575, 'DE', 'Germany'), +('84.11.6.0', '84.11.6.31', 1410008576, 1410008607, 'AE', 'United Arab Emirates'), +('84.11.6.32', '84.11.6.255', 1410008608, 1410008831, 'DE', 'Germany'), +('84.11.7.0', '84.11.7.79', 1410008832, 1410008911, 'US', 'United States'), +('84.11.7.80', '84.11.8.255', 1410008912, 1410009343, 'DE', 'Germany'), +('84.11.9.0', '84.11.9.135', 1410009344, 1410009479, 'US', 'United States'), +('84.11.9.136', '84.11.9.143', 1410009480, 1410009487, 'DE', 'Germany'), +('84.11.9.144', '84.11.9.191', 1410009488, 1410009535, 'GI', 'Gibraltar'), +('84.11.9.192', '84.11.12.255', 1410009536, 1410010367, 'DE', 'Germany'), +('84.11.13.0', '84.11.13.31', 1410010368, 1410010399, 'IR', 'Iran, Islamic Republic of'), +('84.11.13.32', '84.11.13.63', 1410010400, 1410010431, 'LY', 'Libyan Arab Jamahiriya'), +('84.11.13.64', '84.11.13.175', 1410010432, 1410010543, 'DE', 'Germany'), +('84.11.13.176', '84.11.13.207', 1410010544, 1410010575, 'LY', 'Libyan Arab Jamahiriya'), +('84.11.13.208', '84.11.13.223', 1410010576, 1410010591, 'DE', 'Germany'), +('84.11.13.224', '84.11.13.231', 1410010592, 1410010599, 'LY', 'Libyan Arab Jamahiriya'), +('84.11.13.232', '84.11.13.239', 1410010600, 1410010607, 'IR', 'Iran, Islamic Republic of'), +('84.11.13.240', '84.11.13.255', 1410010608, 1410010623, 'LY', 'Libyan Arab Jamahiriya'), +('84.11.14.0', '84.11.14.63', 1410010624, 1410010687, 'DE', 'Germany'), +('84.11.14.64', '84.11.14.79', 1410010688, 1410010703, 'IR', 'Iran, Islamic Republic of'), +('84.11.14.80', '84.11.14.95', 1410010704, 1410010719, 'DE', 'Germany'), +('84.11.14.96', '84.11.14.127', 1410010720, 1410010751, 'LY', 'Libyan Arab Jamahiriya'), +('84.11.14.128', '84.11.14.199', 1410010752, 1410010823, 'DE', 'Germany'), +('84.11.14.200', '84.11.14.207', 1410010824, 1410010831, 'IR', 'Iran, Islamic Republic of'), +('84.11.14.208', '84.11.14.255', 1410010832, 1410010879, 'DE', 'Germany'), +('84.11.15.0', '84.11.15.255', 1410010880, 1410011135, 'IR', 'Iran, Islamic Republic of'), +('84.11.16.0', '84.11.18.255', 1410011136, 1410011903, 'DE', 'Germany'), +('84.11.19.0', '84.11.19.15', 1410011904, 1410011919, 'US', 'United States'), +('84.11.19.16', '84.11.19.255', 1410011920, 1410012159, 'DE', 'Germany'), +('84.11.20.0', '84.11.20.255', 1410012160, 1410012415, 'IQ', 'Iraq'), +('84.11.21.0', '84.11.23.255', 1410012416, 1410013183, 'DE', 'Germany'), +('84.11.24.0', '84.11.24.255', 1410013184, 1410013439, 'ES', 'Spain'), +('84.11.25.0', '84.11.25.31', 1410013440, 1410013471, 'IR', 'Iran, Islamic Republic of'), +('84.11.25.32', '84.11.25.95', 1410013472, 1410013535, 'AE', 'United Arab Emirates'), +('84.11.25.96', '84.11.25.127', 1410013536, 1410013567, 'IR', 'Iran, Islamic Republic of'), +('84.11.25.128', '84.11.25.191', 1410013568, 1410013631, 'AE', 'United Arab Emirates'), +('84.11.25.192', '84.11.25.223', 1410013632, 1410013663, 'IR', 'Iran, Islamic Republic of'), +('84.11.25.224', '84.11.25.255', 1410013664, 1410013695, 'AE', 'United Arab Emirates'), +('84.11.26.0', '84.11.26.31', 1410013696, 1410013727, 'KW', 'Kuwait'), +('84.11.26.32', '84.11.26.63', 1410013728, 1410013759, 'AE', 'United Arab Emirates'), +('84.11.26.64', '84.11.26.127', 1410013760, 1410013823, 'IR', 'Iran, Islamic Republic of'), +('84.11.26.128', '84.11.26.191', 1410013824, 1410013887, 'AF', 'Afghanistan'), +('84.11.26.192', '84.11.26.223', 1410013888, 1410013919, 'DE', 'Germany'), +('84.11.26.224', '84.11.26.255', 1410013920, 1410013951, 'KW', 'Kuwait'), +('84.11.27.0', '84.11.27.31', 1410013952, 1410013983, 'AE', 'United Arab Emirates'), +('84.11.27.32', '84.11.27.63', 1410013984, 1410014015, 'IR', 'Iran, Islamic Republic of'), +('84.11.27.64', '84.11.27.95', 1410014016, 1410014047, 'KW', 'Kuwait'), +('84.11.27.96', '84.11.27.127', 1410014048, 1410014079, 'AE', 'United Arab Emirates'), +('84.11.27.128', '84.11.27.255', 1410014080, 1410014207, 'DE', 'Germany'), +('84.11.28.0', '84.11.28.31', 1410014208, 1410014239, 'AE', 'United Arab Emirates'), +('84.11.28.32', '84.11.28.127', 1410014240, 1410014335, 'IR', 'Iran, Islamic Republic of'), +('84.11.28.128', '84.11.28.191', 1410014336, 1410014399, 'AE', 'United Arab Emirates'), +('84.11.28.192', '84.11.28.255', 1410014400, 1410014463, 'ES', 'Spain'), +('84.11.29.0', '84.11.29.31', 1410014464, 1410014495, 'KW', 'Kuwait'), +('84.11.29.32', '84.11.29.127', 1410014496, 1410014591, 'IR', 'Iran, Islamic Republic of'), +('84.11.29.128', '84.11.30.165', 1410014592, 1410014885, 'DE', 'Germany'), +('84.11.30.166', '84.11.30.166', 1410014886, 1410014886, 'ES', 'Spain'), +('84.11.30.167', '84.11.30.175', 1410014887, 1410014895, 'DE', 'Germany'), +('84.11.30.176', '84.11.30.207', 1410014896, 1410014927, 'IR', 'Iran, Islamic Republic of'), +('84.11.30.208', '84.11.30.215', 1410014928, 1410014935, 'PA', 'Panama'), +('84.11.30.216', '84.11.30.223', 1410014936, 1410014943, 'IR', 'Iran, Islamic Republic of'), +('84.11.30.224', '84.11.30.231', 1410014944, 1410014951, 'AE', 'United Arab Emirates'), +('84.11.30.232', '84.11.30.246', 1410014952, 1410014966, 'DE', 'Germany'), +('84.11.30.247', '84.11.30.247', 1410014967, 1410014967, 'IR', 'Iran, Islamic Republic of'), +('84.11.30.248', '84.11.30.248', 1410014968, 1410014968, 'DE', 'Germany'), +('84.11.30.249', '84.11.30.249', 1410014969, 1410014969, 'IR', 'Iran, Islamic Republic of'), +('84.11.30.250', '84.11.30.252', 1410014970, 1410014972, 'DE', 'Germany'), +('84.11.30.253', '84.11.30.254', 1410014973, 1410014974, 'AE', 'United Arab Emirates'), +('84.11.30.255', '84.11.31.31', 1410014975, 1410015007, 'DE', 'Germany'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('84.11.31.32', '84.11.31.127', 1410015008, 1410015103, 'IR', 'Iran, Islamic Republic of'), +('84.11.31.128', '84.11.31.159', 1410015104, 1410015135, 'ES', 'Spain'), +('84.11.31.160', '84.11.32.191', 1410015136, 1410015423, 'IR', 'Iran, Islamic Republic of'), +('84.11.32.192', '84.11.32.255', 1410015424, 1410015487, 'AE', 'United Arab Emirates'), +('84.11.33.0', '84.11.33.255', 1410015488, 1410015743, 'AF', 'Afghanistan'), +('84.11.34.0', '84.11.34.127', 1410015744, 1410015871, 'IR', 'Iran, Islamic Republic of'), +('84.11.34.128', '84.11.34.191', 1410015872, 1410015935, 'AE', 'United Arab Emirates'), +('84.11.34.192', '84.11.35.255', 1410015936, 1410016255, 'IR', 'Iran, Islamic Republic of'), +('84.11.36.0', '84.11.36.63', 1410016256, 1410016319, 'AE', 'United Arab Emirates'), +('84.11.36.64', '84.11.36.127', 1410016320, 1410016383, 'ES', 'Spain'), +('84.11.36.128', '84.11.36.159', 1410016384, 1410016415, 'IR', 'Iran, Islamic Republic of'), +('84.11.36.160', '84.11.36.191', 1410016416, 1410016447, 'PA', 'Panama'), +('84.11.36.192', '84.11.37.31', 1410016448, 1410016543, 'IR', 'Iran, Islamic Republic of'), +('84.11.37.32', '84.11.37.63', 1410016544, 1410016575, 'DE', 'Germany'), +('84.11.37.64', '84.11.37.95', 1410016576, 1410016607, 'AE', 'United Arab Emirates'), +('84.11.37.96', '84.11.37.127', 1410016608, 1410016639, 'PA', 'Panama'), +('84.11.37.128', '84.11.37.159', 1410016640, 1410016671, 'IR', 'Iran, Islamic Republic of'), +('84.11.37.160', '84.11.37.191', 1410016672, 1410016703, 'PA', 'Panama'), +('84.11.37.192', '84.11.37.255', 1410016704, 1410016767, 'DE', 'Germany'), +('84.11.38.0', '84.11.38.63', 1410016768, 1410016831, 'IR', 'Iran, Islamic Republic of'), +('84.11.38.64', '84.11.38.95', 1410016832, 1410016863, 'AE', 'United Arab Emirates'), +('84.11.38.96', '84.11.38.127', 1410016864, 1410016895, 'IR', 'Iran, Islamic Republic of'), +('84.11.38.128', '84.11.38.255', 1410016896, 1410017023, 'AE', 'United Arab Emirates'), +('84.11.39.0', '84.11.39.31', 1410017024, 1410017055, 'PA', 'Panama'), +('84.11.39.32', '84.11.39.95', 1410017056, 1410017119, 'IR', 'Iran, Islamic Republic of'), +('84.11.39.96', '84.11.39.255', 1410017120, 1410017279, 'DE', 'Germany'), +('84.11.40.0', '84.11.40.127', 1410017280, 1410017407, 'IR', 'Iran, Islamic Republic of'), +('84.11.40.128', '84.11.41.255', 1410017408, 1410017791, 'DE', 'Germany'), +('84.11.42.0', '84.11.43.31', 1410017792, 1410018079, 'IR', 'Iran, Islamic Republic of'), +('84.11.43.32', '84.11.43.255', 1410018080, 1410018303, 'DE', 'Germany'), +('84.11.44.0', '84.11.44.255', 1410018304, 1410018559, 'AE', 'United Arab Emirates'), +('84.11.45.0', '84.11.45.31', 1410018560, 1410018591, 'DE', 'Germany'), +('84.11.45.32', '84.11.45.47', 1410018592, 1410018607, 'IR', 'Iran, Islamic Republic of'), +('84.11.45.48', '84.11.45.63', 1410018608, 1410018623, 'LY', 'Libyan Arab Jamahiriya'), +('84.11.45.64', '84.11.51.7', 1410018624, 1410020103, 'DE', 'Germany'), +('84.11.51.8', '84.11.51.15', 1410020104, 1410020111, 'US', 'United States'), +('84.11.51.16', '84.11.51.255', 1410020112, 1410020351, 'DE', 'Germany'), +('84.11.52.0', '84.11.53.255', 1410020352, 1410020863, 'US', 'United States'), +('84.11.54.0', '84.11.55.255', 1410020864, 1410021375, 'DE', 'Germany'), +('84.11.56.0', '84.11.56.31', 1410021376, 1410021407, 'IR', 'Iran, Islamic Republic of'), +('84.11.56.32', '84.11.56.255', 1410021408, 1410021631, 'DE', 'Germany'), +('84.11.57.0', '84.11.57.31', 1410021632, 1410021663, 'IR', 'Iran, Islamic Republic of'), +('84.11.57.32', '84.11.57.159', 1410021664, 1410021791, 'DE', 'Germany'), +('84.11.57.160', '84.11.57.191', 1410021792, 1410021823, 'IR', 'Iran, Islamic Republic of'), +('84.11.57.192', '84.11.60.127', 1410021824, 1410022527, 'DE', 'Germany'), +('84.11.60.128', '84.11.60.191', 1410022528, 1410022591, 'AE', 'United Arab Emirates'), +('84.11.60.192', '84.11.60.255', 1410022592, 1410022655, 'IR', 'Iran, Islamic Republic of'), +('84.11.61.0', '84.11.61.255', 1410022656, 1410022911, 'DE', 'Germany'), +('84.11.62.0', '84.11.63.255', 1410022912, 1410023423, 'IR', 'Iran, Islamic Republic of'), +('84.11.64.0', '84.11.66.255', 1410023424, 1410024191, 'DE', 'Germany'), +('84.11.67.0', '84.11.67.31', 1410024192, 1410024223, 'AE', 'United Arab Emirates'), +('84.11.67.32', '84.11.67.95', 1410024224, 1410024287, 'DE', 'Germany'), +('84.11.67.96', '84.11.67.127', 1410024288, 1410024319, 'IR', 'Iran, Islamic Republic of'), +('84.11.67.128', '84.11.67.255', 1410024320, 1410024447, 'DE', 'Germany'), +('84.11.68.0', '84.11.70.127', 1410024448, 1410025087, 'IR', 'Iran, Islamic Republic of'), +('84.11.70.128', '84.11.70.255', 1410025088, 1410025215, 'DE', 'Germany'), +('84.11.71.0', '84.11.71.31', 1410025216, 1410025247, 'ES', 'Spain'), +('84.11.71.32', '84.11.71.63', 1410025248, 1410025279, 'DE', 'Germany'), +('84.11.71.64', '84.11.71.95', 1410025280, 1410025311, 'AE', 'United Arab Emirates'), +('84.11.71.96', '84.11.71.127', 1410025312, 1410025343, 'ES', 'Spain'), +('84.11.71.128', '84.11.71.191', 1410025344, 1410025407, 'IR', 'Iran, Islamic Republic of'), +('84.11.71.192', '84.11.71.223', 1410025408, 1410025439, 'AE', 'United Arab Emirates'), +('84.11.71.224', '84.11.72.31', 1410025440, 1410025503, 'DE', 'Germany'), +('84.11.72.32', '84.11.72.47', 1410025504, 1410025519, 'AE', 'United Arab Emirates'), +('84.11.72.48', '84.11.72.63', 1410025520, 1410025535, 'IR', 'Iran, Islamic Republic of'), +('84.11.72.64', '84.11.72.95', 1410025536, 1410025567, 'ES', 'Spain'), +('84.11.72.96', '84.11.72.127', 1410025568, 1410025599, 'DE', 'Germany'), +('84.11.72.128', '84.11.72.255', 1410025600, 1410025727, 'IR', 'Iran, Islamic Republic of'), +('84.11.73.0', '84.11.73.31', 1410025728, 1410025759, 'AE', 'United Arab Emirates'), +('84.11.73.32', '84.11.73.63', 1410025760, 1410025791, 'DE', 'Germany'), +('84.11.73.64', '84.11.73.95', 1410025792, 1410025823, 'AE', 'United Arab Emirates'), +('84.11.73.96', '84.11.73.127', 1410025824, 1410025855, 'IR', 'Iran, Islamic Republic of'), +('84.11.73.128', '84.11.73.255', 1410025856, 1410025983, 'DE', 'Germany'), +('84.11.74.0', '84.11.74.31', 1410025984, 1410026015, 'IR', 'Iran, Islamic Republic of'), +('84.11.74.32', '84.11.74.63', 1410026016, 1410026047, 'AE', 'United Arab Emirates'), +('84.11.74.64', '84.11.74.127', 1410026048, 1410026111, 'ES', 'Spain'), +('84.11.74.128', '84.11.74.159', 1410026112, 1410026143, 'DE', 'Germany'), +('84.11.74.160', '84.11.74.191', 1410026144, 1410026175, 'IR', 'Iran, Islamic Republic of'), +('84.11.74.192', '84.11.74.223', 1410026176, 1410026207, 'AE', 'United Arab Emirates'), +('84.11.74.224', '84.11.74.255', 1410026208, 1410026239, 'IR', 'Iran, Islamic Republic of'), +('84.11.75.0', '84.11.75.127', 1410026240, 1410026367, 'AE', 'United Arab Emirates'), +('84.11.75.128', '84.11.75.191', 1410026368, 1410026431, 'IR', 'Iran, Islamic Republic of'), +('84.11.75.192', '84.11.75.223', 1410026432, 1410026463, 'DE', 'Germany'), +('84.11.75.224', '84.11.76.255', 1410026464, 1410026751, 'IR', 'Iran, Islamic Republic of'), +('84.11.77.0', '84.11.77.63', 1410026752, 1410026815, 'CA', 'Canada'), +('84.11.77.64', '84.11.77.95', 1410026816, 1410026847, 'DE', 'Germany'), +('84.11.77.96', '84.11.77.159', 1410026848, 1410026911, 'IR', 'Iran, Islamic Republic of'), +('84.11.77.160', '84.11.77.191', 1410026912, 1410026943, 'DE', 'Germany'), +('84.11.77.192', '84.11.77.254', 1410026944, 1410027006, 'IR', 'Iran, Islamic Republic of'), +('84.11.77.255', '84.11.77.255', 1410027007, 1410027007, 'DE', 'Germany'), +('84.11.78.0', '84.11.78.255', 1410027008, 1410027263, 'KW', 'Kuwait'), +('84.11.79.0', '84.11.79.255', 1410027264, 1410027519, 'AF', 'Afghanistan'), +('84.11.80.0', '84.11.80.191', 1410027520, 1410027711, 'DE', 'Germany'), +('84.11.80.192', '84.11.80.255', 1410027712, 1410027775, 'IR', 'Iran, Islamic Republic of'), +('84.11.81.0', '84.11.97.255', 1410027776, 1410032127, 'DE', 'Germany'), +('84.11.98.0', '84.11.101.255', 1410032128, 1410033151, 'IQ', 'Iraq'), +('84.11.102.0', '84.11.109.255', 1410033152, 1410035199, 'DE', 'Germany'), +('84.11.110.0', '84.11.110.31', 1410035200, 1410035231, 'KW', 'Kuwait'), +('84.11.110.32', '84.11.110.63', 1410035232, 1410035263, 'DE', 'Germany'), +('84.11.110.64', '84.11.110.95', 1410035264, 1410035295, 'KW', 'Kuwait'), +('84.11.110.96', '84.11.110.167', 1410035296, 1410035367, 'IR', 'Iran, Islamic Republic of'), +('84.11.110.168', '84.11.112.255', 1410035368, 1410035967, 'DE', 'Germany'), +('84.11.113.0', '84.11.113.95', 1410035968, 1410036063, 'PA', 'Panama'), +('84.11.113.96', '84.11.113.111', 1410036064, 1410036079, 'IQ', 'Iraq'), +('84.11.113.112', '84.11.113.127', 1410036080, 1410036095, 'IR', 'Iran, Islamic Republic of'), +('84.11.113.128', '84.11.113.143', 1410036096, 1410036111, 'IQ', 'Iraq'), +('84.11.113.144', '84.11.113.159', 1410036112, 1410036127, 'PA', 'Panama'), +('84.11.113.160', '84.11.113.175', 1410036128, 1410036143, 'DE', 'Germany'), +('84.11.113.176', '84.11.113.207', 1410036144, 1410036175, 'PA', 'Panama'), +('84.11.113.208', '84.11.113.223', 1410036176, 1410036191, 'DE', 'Germany'), +('84.11.113.224', '84.11.113.255', 1410036192, 1410036223, 'PA', 'Panama'), +('84.11.114.0', '84.11.115.255', 1410036224, 1410036735, 'DE', 'Germany'), +('84.11.116.0', '84.11.116.15', 1410036736, 1410036751, 'PA', 'Panama'), +('84.11.116.16', '84.11.127.255', 1410036752, 1410039807, 'DE', 'Germany'), +('84.11.128.0', '84.11.135.255', 1410039808, 1410041855, 'AE', 'United Arab Emirates'), +('84.11.136.0', '84.11.143.255', 1410041856, 1410043903, 'LB', 'Lebanon'), +('84.11.144.0', '84.11.145.255', 1410043904, 1410044415, 'JO', 'Jordan'), +('84.11.146.0', '84.11.254.255', 1410044416, 1410072319, 'DE', 'Germany'), +('84.11.255.0', '84.11.255.255', 1410072320, 1410072575, 'AE', 'United Arab Emirates'), +('84.12.0.0', '84.13.255.255', 1410072576, 1410203647, 'GB', 'United Kingdom'), +('84.14.0.0', '84.14.35.255', 1410203648, 1410212863, 'FR', 'France'), +('84.14.36.0', '84.14.36.255', 1410212864, 1410213119, 'GB', 'United Kingdom'), +('84.14.37.0', '84.14.42.95', 1410213120, 1410214495, 'FR', 'France'), +('84.14.42.96', '84.14.42.103', 1410214496, 1410214503, 'PT', 'Portugal'), +('84.14.42.104', '84.14.231.15', 1410214504, 1410262799, 'FR', 'France'), +('84.14.231.16', '84.14.231.31', 1410262800, 1410262815, 'DE', 'Germany'), +('84.14.231.32', '84.14.247.159', 1410262816, 1410267039, 'FR', 'France'), +('84.14.247.160', '84.14.247.175', 1410267040, 1410267055, 'ES', 'Spain'), +('84.14.247.176', '84.14.247.191', 1410267056, 1410267071, 'GB', 'United Kingdom'), +('84.14.247.192', '84.14.247.207', 1410267072, 1410267087, 'IT', 'Italy'), +('84.14.247.208', '84.14.255.255', 1410267088, 1410269183, 'FR', 'France'), +('84.15.0.0', '84.15.191.255', 1410269184, 1410318335, 'LT', 'Lithuania'), +('84.15.192.0', '84.15.195.255', 1410318336, 1410319359, 'LV', 'Latvia'), +('84.15.196.0', '84.15.255.255', 1410319360, 1410334719, 'LT', 'Lithuania'), +('84.16.0.0', '84.16.27.255', 1410334720, 1410341887, 'ES', 'Spain'), +('84.16.28.0', '84.16.31.255', 1410341888, 1410342911, 'MA', 'Morocco'), +('84.16.32.0', '84.16.63.255', 1410342912, 1410351103, 'SK', 'Slovakia'), +('84.16.64.0', '84.16.71.143', 1410351104, 1410353039, 'CH', 'Switzerland'), +('84.16.71.144', '84.16.71.151', 1410353040, 1410353047, 'NI', 'Nicaragua'), +('84.16.71.152', '84.16.75.255', 1410353048, 1410354175, 'CH', 'Switzerland'), +('84.16.76.0', '84.16.76.255', 1410354176, 1410354431, 'FR', 'France'), +('84.16.77.0', '84.16.95.255', 1410354432, 1410359295, 'CH', 'Switzerland'), +('84.16.96.0', '84.16.127.255', 1410359296, 1410367487, 'CZ', 'Czech Republic'), +('84.16.128.0', '84.16.159.255', 1410367488, 1410375679, 'RU', 'Russian Federation'), +('84.16.160.0', '84.16.191.255', 1410375680, 1410383871, 'DK', 'Denmark'), +('84.16.192.0', '84.16.223.255', 1410383872, 1410392063, 'NO', 'Norway'), +('84.16.224.0', '84.16.224.255', 1410392064, 1410392319, 'DE', 'Germany'), +('84.16.225.0', '84.16.225.255', 1410392320, 1410392575, 'SG', 'Singapore'), +('84.16.226.0', '84.16.243.255', 1410392576, 1410397183, 'DE', 'Germany'), +('84.16.244.0', '84.16.244.255', 1410397184, 1410397439, 'PL', 'Poland'), +('84.16.245.0', '84.16.252.255', 1410397440, 1410399487, 'DE', 'Germany'), +('84.16.253.0', '84.16.253.255', 1410399488, 1410399743, 'TR', 'Turkey'), +('84.16.254.0', '84.16.255.63', 1410399744, 1410400063, 'DE', 'Germany'), +('84.16.255.64', '84.16.255.127', 1410400064, 1410400127, 'TR', 'Turkey'), +('84.16.255.128', '84.16.255.255', 1410400128, 1410400255, 'DE', 'Germany'), +('84.17.0.0', '84.17.31.255', 1410400256, 1410408447, 'RU', 'Russian Federation'), +('84.17.32.0', '84.17.63.255', 1410408448, 1410416639, 'IT', 'Italy'), +('84.17.64.0', '84.17.95.255', 1410416640, 1410424831, 'TR', 'Turkey'), +('84.17.96.0', '84.17.127.255', 1410424832, 1410433023, 'DE', 'Germany'), +('84.17.128.0', '84.17.159.255', 1410433024, 1410441215, 'BE', 'Belgium'), +('84.17.160.0', '84.17.191.255', 1410441216, 1410449407, 'DE', 'Germany'), +('84.17.192.0', '84.17.223.255', 1410449408, 1410457599, 'SE', 'Sweden'), +('84.17.224.0', '84.17.255.255', 1410457600, 1410465791, 'RU', 'Russian Federation'), +('84.18.0.0', '84.18.31.255', 1410465792, 1410473983, 'ES', 'Spain'), +('84.18.32.0', '84.18.95.255', 1410473984, 1410490367, 'JO', 'Jordan'), +('84.18.96.0', '84.18.127.255', 1410490368, 1410498559, 'RU', 'Russian Federation'), +('84.18.128.0', '84.18.144.147', 1410498560, 1410502803, 'IT', 'Italy'), +('84.18.144.148', '84.18.144.151', 1410502804, 1410502807, 'US', 'United States'), +('84.18.144.152', '84.18.159.255', 1410502808, 1410506751, 'IT', 'Italy'), +('84.18.160.0', '84.18.191.255', 1410506752, 1410514943, 'IE', 'Ireland'), +('84.18.192.0', '84.18.223.255', 1410514944, 1410523135, 'GB', 'United Kingdom'), +('84.18.224.0', '84.18.255.255', 1410523136, 1410531327, 'PT', 'Portugal'), +('84.19.0.0', '84.19.31.255', 1410531328, 1410539519, 'DE', 'Germany'), +('84.19.32.0', '84.19.43.255', 1410539520, 1410542591, 'GB', 'United Kingdom'), +('84.19.44.0', '84.19.45.255', 1410542592, 1410543103, 'IE', 'Ireland'), +('84.19.46.0', '84.19.63.255', 1410543104, 1410547711, 'GB', 'United Kingdom'), +('84.19.64.0', '84.19.95.255', 1410547712, 1410555903, 'CZ', 'Czech Republic'), +('84.19.96.0', '84.19.127.255', 1410555904, 1410564095, 'GB', 'United Kingdom'), +('84.19.128.0', '84.19.159.255', 1410564096, 1410572287, 'SE', 'Sweden'), +('84.19.160.0', '84.19.160.255', 1410572288, 1410572543, 'DE', 'Germany'), +('84.19.161.0', '84.19.161.255', 1410572544, 1410572799, 'RU', 'Russian Federation'), +('84.19.162.0', '84.19.162.63', 1410572800, 1410572863, 'DE', 'Germany'), +('84.19.162.64', '84.19.162.95', 1410572864, 1410572895, 'RU', 'Russian Federation'), +('84.19.162.96', '84.19.164.95', 1410572896, 1410573407, 'DE', 'Germany'), +('84.19.164.96', '84.19.164.127', 1410573408, 1410573439, 'RU', 'Russian Federation'), +('84.19.164.128', '84.19.165.127', 1410573440, 1410573695, 'DE', 'Germany'), +('84.19.165.128', '84.19.165.143', 1410573696, 1410573711, 'RU', 'Russian Federation'), +('84.19.165.144', '84.19.165.191', 1410573712, 1410573759, 'DE', 'Germany'), +('84.19.165.192', '84.19.165.207', 1410573760, 1410573775, 'RU', 'Russian Federation'), +('84.19.165.208', '84.19.169.127', 1410573776, 1410574719, 'DE', 'Germany'), +('84.19.169.128', '84.19.169.135', 1410574720, 1410574727, 'RU', 'Russian Federation'), +('84.19.169.136', '84.19.171.7', 1410574728, 1410575111, 'DE', 'Germany'), +('84.19.171.8', '84.19.171.15', 1410575112, 1410575119, 'IT', 'Italy'), +('84.19.171.16', '84.19.171.191', 1410575120, 1410575295, 'DE', 'Germany'), +('84.19.171.192', '84.19.171.223', 1410575296, 1410575327, 'IT', 'Italy'), +('84.19.171.224', '84.19.171.255', 1410575328, 1410575359, 'SI', 'Slovenia'), +('84.19.172.0', '84.19.172.191', 1410575360, 1410575551, 'DE', 'Germany'), +('84.19.172.192', '84.19.172.255', 1410575552, 1410575615, 'IT', 'Italy'), +('84.19.173.0', '84.19.173.159', 1410575616, 1410575775, 'DE', 'Germany'), +('84.19.173.160', '84.19.173.175', 1410575776, 1410575791, 'RU', 'Russian Federation'), +('84.19.173.176', '84.19.173.191', 1410575792, 1410575807, 'DE', 'Germany'), +('84.19.173.192', '84.19.173.207', 1410575808, 1410575823, 'RU', 'Russian Federation'), +('84.19.173.208', '84.19.173.223', 1410575824, 1410575839, 'BG', 'Bulgaria'), +('84.19.173.224', '84.19.173.239', 1410575840, 1410575855, 'IT', 'Italy'), +('84.19.173.240', '84.19.173.255', 1410575856, 1410575871, 'DE', 'Germany'), +('84.19.174.0', '84.19.174.127', 1410575872, 1410575999, 'IE', 'Ireland'), +('84.19.174.128', '84.19.174.191', 1410576000, 1410576063, 'DE', 'Germany'), +('84.19.174.192', '84.19.174.255', 1410576064, 1410576127, 'IT', 'Italy'), +('84.19.175.0', '84.19.175.127', 1410576128, 1410576255, 'IE', 'Ireland'), +('84.19.175.128', '84.19.175.255', 1410576256, 1410576383, 'IT', 'Italy'), +('84.19.176.0', '84.19.223.255', 1410576384, 1410588671, 'DE', 'Germany'), +('84.19.224.0', '84.19.255.255', 1410588672, 1410596863, 'GB', 'United Kingdom'), +('84.20.0.0', '84.20.3.207', 1410596864, 1410597839, 'ES', 'Spain'), +('84.20.3.208', '84.20.3.223', 1410597840, 1410597855, 'FR', 'France'), +('84.20.3.224', '84.20.31.255', 1410597856, 1410605055, 'ES', 'Spain'), +('84.20.32.0', '84.20.63.255', 1410605056, 1410613247, 'CH', 'Switzerland'), +('84.20.64.0', '84.20.95.255', 1410613248, 1410621439, 'AL', 'Albania'), +('84.20.96.0', '84.20.127.255', 1410621440, 1410629631, 'NO', 'Norway'), +('84.20.128.0', '84.20.149.71', 1410629632, 1410635079, 'FI', 'Finland'), +('84.20.149.72', '84.20.149.79', 1410635080, 1410635087, 'AX', 'Aland Islands'), +('84.20.149.80', '84.20.159.255', 1410635088, 1410637823, 'FI', 'Finland'), +('84.20.160.0', '84.20.191.255', 1410637824, 1410646015, 'AT', 'Austria'), +('84.20.192.0', '84.20.223.255', 1410646016, 1410654207, 'GB', 'United Kingdom'), +('84.20.224.0', '84.20.255.255', 1410654208, 1410662399, 'SI', 'Slovenia'), +('84.21.0.0', '84.21.31.255', 1410662400, 1410670591, 'HU', 'Hungary'), +('84.21.32.0', '84.21.63.255', 1410670592, 1410678783, 'DE', 'Germany'), +('84.21.64.0', '84.21.95.255', 1410678784, 1410686975, 'RU', 'Russian Federation'), +('84.21.96.0', '84.21.127.255', 1410686976, 1410695167, 'CZ', 'Czech Republic'), +('84.21.128.0', '84.21.159.255', 1410695168, 1410703359, 'GB', 'United Kingdom'), +('84.21.160.0', '84.21.191.255', 1410703360, 1410711551, 'ES', 'Spain'), +('84.21.192.0', '84.21.223.255', 1410711552, 1410719743, 'BG', 'Bulgaria'), +('84.21.224.0', '84.21.255.255', 1410719744, 1410727935, 'RU', 'Russian Federation'), +('84.22.0.0', '84.22.31.255', 1410727936, 1410736127, 'BG', 'Bulgaria'), +('84.22.32.0', '84.22.63.255', 1410736128, 1410744319, 'RS', 'Serbia'), +('84.22.64.0', '84.22.64.255', 1410744320, 1410744575, 'FR', 'France'), +('84.22.65.0', '84.22.65.255', 1410744576, 1410744831, 'A2', 'Satellite Provider'), +('84.22.66.0', '84.22.67.135', 1410744832, 1410745223, 'FR', 'France'), +('84.22.67.136', '84.22.67.143', 1410745224, 1410745231, 'AE', 'United Arab Emirates'), +('84.22.67.144', '84.22.67.159', 1410745232, 1410745247, 'FR', 'France'), +('84.22.67.160', '84.22.67.191', 1410745248, 1410745279, 'US', 'United States'), +('84.22.67.192', '84.22.69.255', 1410745280, 1410745855, 'FR', 'France'), +('84.22.70.0', '84.22.95.255', 1410745856, 1410752511, 'A2', 'Satellite Provider'), +('84.22.96.0', '84.22.99.255', 1410752512, 1410753535, 'NL', 'Netherlands'), +('84.22.100.0', '84.22.103.255', 1410753536, 1410754559, 'AQ', 'Antarctica'), +('84.22.104.0', '84.22.105.31', 1410754560, 1410754847, 'DE', 'Germany'), +('84.22.105.32', '84.22.105.63', 1410754848, 1410754879, 'NL', 'Netherlands'), +('84.22.105.64', '84.22.105.255', 1410754880, 1410755071, 'DE', 'Germany'), +('84.22.106.0', '84.22.106.255', 1410755072, 1410755327, 'AQ', 'Antarctica'), +('84.22.107.0', '84.22.107.255', 1410755328, 1410755583, 'DE', 'Germany'), +('84.22.108.0', '84.22.109.255', 1410755584, 1410756095, 'AQ', 'Antarctica'), +('84.22.110.0', '84.22.111.255', 1410756096, 1410756607, 'US', 'United States'), +('84.22.112.0', '84.22.112.0', 1410756608, 1410756608, 'AQ', 'Antarctica'), +('84.22.112.1', '84.22.112.255', 1410756609, 1410756863, 'DE', 'Germany'), +('84.22.113.0', '84.22.113.255', 1410756864, 1410757119, 'AQ', 'Antarctica'), +('84.22.114.0', '84.22.119.255', 1410757120, 1410758655, 'DE', 'Germany'), +('84.22.120.0', '84.22.125.255', 1410758656, 1410760191, 'AQ', 'Antarctica'), +('84.22.126.0', '84.22.126.255', 1410760192, 1410760447, 'DE', 'Germany'), +('84.22.127.0', '84.22.127.235', 1410760448, 1410760683, 'NL', 'Netherlands'), +('84.22.127.236', '84.22.127.239', 1410760684, 1410760687, 'US', 'United States'), +('84.22.127.240', '84.22.127.243', 1410760688, 1410760691, 'NL', 'Netherlands'), +('84.22.127.244', '84.22.127.247', 1410760692, 1410760695, 'DE', 'Germany'), +('84.22.127.248', '84.22.127.251', 1410760696, 1410760699, 'NL', 'Netherlands'), +('84.22.127.252', '84.22.127.255', 1410760700, 1410760703, 'US', 'United States'), +('84.22.128.0', '84.22.159.255', 1410760704, 1410768895, 'RU', 'Russian Federation'), +('84.22.160.0', '84.22.191.255', 1410768896, 1410777087, 'GB', 'United Kingdom'), +('84.22.192.0', '84.22.223.255', 1410777088, 1410785279, 'RU', 'Russian Federation'), +('84.22.224.0', '84.22.255.255', 1410785280, 1410793471, 'SA', 'Saudi Arabia'), +('84.23.0.0', '84.23.31.255', 1410793472, 1410801663, 'GB', 'United Kingdom'), +('84.23.32.0', '84.23.63.255', 1410801664, 1410809855, 'RU', 'Russian Federation'), +('84.23.64.0', '84.23.95.255', 1410809856, 1410818047, 'DE', 'Germany'), +('84.23.96.0', '84.23.127.255', 1410818048, 1410826239, 'SA', 'Saudi Arabia'), +('84.23.128.0', '84.23.159.255', 1410826240, 1410834431, 'SE', 'Sweden'), +('84.23.160.0', '84.23.191.255', 1410834432, 1410842623, 'PL', 'Poland'), +('84.23.192.0', '84.23.223.255', 1410842624, 1410850815, 'PT', 'Portugal'), +('84.23.224.0', '84.23.255.255', 1410850816, 1410859007, 'DE', 'Germany'), +('84.24.0.0', '84.31.255.255', 1410859008, 1411383295, 'NL', 'Netherlands'), +('84.32.0.0', '84.32.255.255', 1411383296, 1411448831, 'LT', 'Lithuania'), +('84.33.0.0', '84.33.9.255', 1411448832, 1411451391, 'IT', 'Italy'), +('84.33.10.0', '84.33.11.255', 1411451392, 1411451903, 'DE', 'Germany'), +('84.33.12.0', '84.33.12.255', 1411451904, 1411452159, 'IT', 'Italy'), +('84.33.13.0', '84.33.13.255', 1411452160, 1411452415, 'DE', 'Germany'), +('84.33.14.0', '84.33.17.255', 1411452416, 1411453439, 'IT', 'Italy'), +('84.33.18.0', '84.33.18.255', 1411453440, 1411453695, 'DE', 'Germany'), +('84.33.19.0', '84.33.23.255', 1411453696, 1411454975, 'IT', 'Italy'), +('84.33.24.0', '84.33.26.255', 1411454976, 1411455743, 'DE', 'Germany'), +('84.33.27.0', '84.33.28.255', 1411455744, 1411456255, 'IT', 'Italy'), +('84.33.29.0', '84.33.29.255', 1411456256, 1411456511, 'DE', 'Germany'), +('84.33.30.0', '84.33.32.255', 1411456512, 1411457279, 'IT', 'Italy'), +('84.33.33.0', '84.33.33.255', 1411457280, 1411457535, 'DE', 'Germany'), +('84.33.34.0', '84.33.63.255', 1411457536, 1411465215, 'IT', 'Italy'), +('84.33.64.0', '84.33.64.255', 1411465216, 1411465471, 'GB', 'United Kingdom'), +('84.33.65.0', '84.33.65.255', 1411465472, 1411465727, 'US', 'United States'), +('84.33.66.0', '84.33.128.255', 1411465728, 1411481855, 'IT', 'Italy'), +('84.33.129.0', '84.33.136.255', 1411481856, 1411483903, 'DE', 'Germany'), +('84.33.137.0', '84.33.202.255', 1411483904, 1411500799, 'IT', 'Italy'), +('84.33.203.0', '84.33.203.255', 1411500800, 1411501055, 'DE', 'Germany'), +('84.33.204.0', '84.33.255.255', 1411501056, 1411514367, 'IT', 'Italy'), +('84.34.0.0', '84.34.255.255', 1411514368, 1411579903, 'FI', 'Finland'), +('84.35.0.0', '84.35.255.255', 1411579904, 1411645439, 'NL', 'Netherlands'), +('84.36.0.0', '84.36.255.255', 1411645440, 1411710975, 'EG', 'Egypt'), +('84.37.0.0', '84.37.24.7', 1411710976, 1411717127, 'FR', 'France'), +('84.37.24.8', '84.37.24.15', 1411717128, 1411717135, 'A2', 'Satellite Provider'), +('84.37.24.16', '84.37.24.63', 1411717136, 1411717183, 'FR', 'France'), +('84.37.24.64', '84.37.24.71', 1411717184, 1411717191, 'A2', 'Satellite Provider'), +('84.37.24.72', '84.37.24.247', 1411717192, 1411717367, 'FR', 'France'), +('84.37.24.248', '84.37.24.255', 1411717368, 1411717375, 'A2', 'Satellite Provider'), +('84.37.25.0', '84.37.100.87', 1411717376, 1411736663, 'FR', 'France'), +('84.37.100.88', '84.37.100.95', 1411736664, 1411736671, 'A2', 'Satellite Provider'), +('84.37.100.96', '84.37.101.247', 1411736672, 1411737079, 'FR', 'France'), +('84.37.101.248', '84.37.101.255', 1411737080, 1411737087, 'A2', 'Satellite Provider'), +('84.37.102.0', '84.37.255.255', 1411737088, 1411776511, 'FR', 'France'), +('84.38.0.0', '84.38.15.255', 1411776512, 1411780607, 'GR', 'Greece'), +('84.38.16.0', '84.38.31.255', 1411780608, 1411784703, 'PL', 'Poland'), +('84.38.32.0', '84.38.47.255', 1411784704, 1411788799, 'GB', 'United Kingdom'), +('84.38.48.0', '84.38.63.255', 1411788800, 1411792895, 'IT', 'Italy'), +('84.38.64.0', '84.38.79.255', 1411792896, 1411796991, 'DE', 'Germany'), +('84.38.80.0', '84.38.111.255', 1411796992, 1411805183, 'PL', 'Poland'), +('84.38.112.0', '84.38.127.255', 1411805184, 1411809279, 'AT', 'Austria'), +('84.38.128.0', '84.38.143.255', 1411809280, 1411813375, 'LV', 'Latvia'), +('84.38.144.0', '84.38.159.255', 1411813376, 1411817471, 'NO', 'Norway'), +('84.38.160.0', '84.38.175.255', 1411817472, 1411821567, 'PL', 'Poland'), +('84.38.176.0', '84.38.191.255', 1411821568, 1411825663, 'CZ', 'Czech Republic'), +('84.38.192.0', '84.38.207.255', 1411825664, 1411829759, 'DE', 'Germany'), +('84.38.208.0', '84.38.223.255', 1411829760, 1411833855, 'PL', 'Poland'), +('84.38.224.0', '84.38.239.255', 1411833856, 1411837951, 'NL', 'Netherlands'), +('84.38.240.0', '84.38.255.255', 1411837952, 1411842047, 'BG', 'Bulgaria'), +('84.39.0.0', '84.39.255.255', 1411842048, 1411907583, 'PT', 'Portugal'), +('84.40.0.0', '84.40.0.255', 1411907584, 1411907839, 'EU', 'Europe'), +('84.40.1.0', '84.40.2.255', 1411907840, 1411908351, 'GB', 'United Kingdom'), +('84.40.3.0', '84.40.3.47', 1411908352, 1411908399, 'EU', 'Europe'), +('84.40.3.48', '84.40.3.127', 1411908400, 1411908479, 'GB', 'United Kingdom'), +('84.40.3.128', '84.40.3.183', 1411908480, 1411908535, 'EU', 'Europe'), +('84.40.3.184', '84.40.3.207', 1411908536, 1411908559, 'GB', 'United Kingdom'), +('84.40.3.208', '84.40.3.211', 1411908560, 1411908563, 'AU', 'Australia'), +('84.40.3.212', '84.40.3.255', 1411908564, 1411908607, 'EU', 'Europe'), +('84.40.4.0', '84.40.6.255', 1411908608, 1411909375, 'GB', 'United Kingdom'), +('84.40.7.0', '84.40.7.255', 1411909376, 1411909631, 'EU', 'Europe'), +('84.40.8.0', '84.40.8.127', 1411909632, 1411909759, 'GB', 'United Kingdom'), +('84.40.8.128', '84.40.8.255', 1411909760, 1411909887, 'EU', 'Europe'), +('84.40.9.0', '84.40.9.255', 1411909888, 1411910143, 'GB', 'United Kingdom'), +('84.40.10.0', '84.40.10.255', 1411910144, 1411910399, 'EU', 'Europe'), +('84.40.11.0', '84.40.11.255', 1411910400, 1411910655, 'GB', 'United Kingdom'), +('84.40.12.0', '84.40.12.255', 1411910656, 1411910911, 'EU', 'Europe'), +('84.40.13.0', '84.40.13.255', 1411910912, 1411911167, 'GB', 'United Kingdom'), +('84.40.14.0', '84.40.14.255', 1411911168, 1411911423, 'EU', 'Europe'), +('84.40.15.0', '84.40.15.15', 1411911424, 1411911439, 'GB', 'United Kingdom'), +('84.40.15.16', '84.40.15.191', 1411911440, 1411911615, 'EU', 'Europe'), +('84.40.15.192', '84.40.15.223', 1411911616, 1411911647, 'GB', 'United Kingdom'), +('84.40.15.224', '84.40.15.255', 1411911648, 1411911679, 'EU', 'Europe'), +('84.40.16.0', '84.40.31.255', 1411911680, 1411915775, 'US', 'United States'), +('84.40.32.0', '84.40.32.63', 1411915776, 1411915839, 'GB', 'United Kingdom'), +('84.40.32.64', '84.40.32.127', 1411915840, 1411915903, 'EU', 'Europe'), +('84.40.32.128', '84.40.32.135', 1411915904, 1411915911, 'GB', 'United Kingdom'), +('84.40.32.136', '84.40.32.159', 1411915912, 1411915935, 'EU', 'Europe'), +('84.40.32.160', '84.40.32.191', 1411915936, 1411915967, 'GB', 'United Kingdom'), +('84.40.32.192', '84.40.32.255', 1411915968, 1411916031, 'EU', 'Europe'), +('84.40.33.0', '84.40.33.63', 1411916032, 1411916095, 'GB', 'United Kingdom'), +('84.40.33.64', '84.40.34.7', 1411916096, 1411916295, 'EU', 'Europe'), +('84.40.34.8', '84.40.34.15', 1411916296, 1411916303, 'GB', 'United Kingdom'), +('84.40.34.16', '84.40.35.255', 1411916304, 1411916799, 'EU', 'Europe'), +('84.40.36.0', '84.40.36.63', 1411916800, 1411916863, 'GB', 'United Kingdom'), +('84.40.36.64', '84.40.38.255', 1411916864, 1411917567, 'EU', 'Europe'), +('84.40.39.0', '84.40.39.71', 1411917568, 1411917639, 'GB', 'United Kingdom'), +('84.40.39.72', '84.40.39.95', 1411917640, 1411917663, 'EU', 'Europe'), +('84.40.39.96', '84.40.39.127', 1411917664, 1411917695, 'GB', 'United Kingdom'), +('84.40.39.128', '84.40.47.255', 1411917696, 1411919871, 'EU', 'Europe'), +('84.40.48.0', '84.40.63.255', 1411919872, 1411923967, 'DE', 'Germany'), +('84.40.64.0', '84.40.127.255', 1411923968, 1411940351, 'EU', 'Europe'), +('84.40.128.0', '84.40.255.255', 1411940352, 1411973119, 'PL', 'Poland'), +('84.41.0.0', '84.41.104.15', 1411973120, 1411999759, 'SI', 'Slovenia'), +('84.41.104.16', '84.41.104.23', 1411999760, 1411999767, 'BA', 'Bosnia and Herzegovina'), +('84.41.104.24', '84.41.104.31', 1411999768, 1411999775, 'SI', 'Slovenia'), +('84.41.104.32', '84.41.104.55', 1411999776, 1411999799, 'BA', 'Bosnia and Herzegovina'), +('84.41.104.56', '84.41.104.63', 1411999800, 1411999807, 'SI', 'Slovenia'), +('84.41.104.64', '84.41.104.79', 1411999808, 1411999823, 'BA', 'Bosnia and Herzegovina'), +('84.41.104.80', '84.41.104.87', 1411999824, 1411999831, 'SI', 'Slovenia'), +('84.41.104.88', '84.41.104.111', 1411999832, 1411999855, 'BA', 'Bosnia and Herzegovina'), +('84.41.104.112', '84.41.104.255', 1411999856, 1411999999, 'SI', 'Slovenia'), +('84.41.105.0', '84.41.107.255', 1412000000, 1412000767, 'BA', 'Bosnia and Herzegovina'), +('84.41.108.0', '84.41.112.15', 1412000768, 1412001807, 'SI', 'Slovenia'), +('84.41.112.16', '84.41.112.63', 1412001808, 1412001855, 'RO', 'Romania'), +('84.41.112.64', '84.41.112.127', 1412001856, 1412001919, 'SI', 'Slovenia'), +('84.41.112.128', '84.41.113.255', 1412001920, 1412002303, 'RO', 'Romania'), +('84.41.114.0', '84.41.114.255', 1412002304, 1412002559, 'SI', 'Slovenia'), +('84.41.115.0', '84.41.115.223', 1412002560, 1412002783, 'MK', 'Macedonia'), +('84.41.115.224', '84.41.115.255', 1412002784, 1412002815, 'SI', 'Slovenia'), +('84.41.116.0', '84.41.116.31', 1412002816, 1412002847, 'BA', 'Bosnia and Herzegovina'), +('84.41.116.32', '84.41.116.47', 1412002848, 1412002863, 'SI', 'Slovenia'), +('84.41.116.48', '84.41.116.95', 1412002864, 1412002911, 'BA', 'Bosnia and Herzegovina'), +('84.41.116.96', '84.41.116.103', 1412002912, 1412002919, 'SI', 'Slovenia'), +('84.41.116.104', '84.41.116.191', 1412002920, 1412003007, 'BA', 'Bosnia and Herzegovina'), +('84.41.116.192', '84.41.116.207', 1412003008, 1412003023, 'SI', 'Slovenia'), +('84.41.116.208', '84.41.116.223', 1412003024, 1412003039, 'BA', 'Bosnia and Herzegovina'), +('84.41.116.224', '84.41.116.239', 1412003040, 1412003055, 'SI', 'Slovenia'), +('84.41.116.240', '84.41.117.47', 1412003056, 1412003119, 'BA', 'Bosnia and Herzegovina'), +('84.41.117.48', '84.41.117.63', 1412003120, 1412003135, 'SI', 'Slovenia'), +('84.41.117.64', '84.41.117.143', 1412003136, 1412003215, 'BA', 'Bosnia and Herzegovina'), +('84.41.117.144', '84.41.117.151', 1412003216, 1412003223, 'SI', 'Slovenia'), +('84.41.117.152', '84.41.117.159', 1412003224, 1412003231, 'BA', 'Bosnia and Herzegovina'), +('84.41.117.160', '84.41.117.175', 1412003232, 1412003247, 'SI', 'Slovenia'), +('84.41.117.176', '84.41.117.191', 1412003248, 1412003263, 'BA', 'Bosnia and Herzegovina'), +('84.41.117.192', '84.41.117.199', 1412003264, 1412003271, 'SI', 'Slovenia'), +('84.41.117.200', '84.41.117.231', 1412003272, 1412003303, 'BA', 'Bosnia and Herzegovina'), +('84.41.117.232', '84.41.118.55', 1412003304, 1412003383, 'SI', 'Slovenia'), +('84.41.118.56', '84.41.118.63', 1412003384, 1412003391, 'BA', 'Bosnia and Herzegovina'), +('84.41.118.64', '84.41.118.71', 1412003392, 1412003399, 'HR', 'Croatia'), +('84.41.118.72', '84.41.118.79', 1412003400, 1412003407, 'BA', 'Bosnia and Herzegovina'), +('84.41.118.80', '84.41.118.95', 1412003408, 1412003423, 'SI', 'Slovenia'), +('84.41.118.96', '84.41.118.199', 1412003424, 1412003527, 'BA', 'Bosnia and Herzegovina'), +('84.41.118.200', '84.41.118.207', 1412003528, 1412003535, 'SI', 'Slovenia'), +('84.41.118.208', '84.41.118.223', 1412003536, 1412003551, 'BA', 'Bosnia and Herzegovina'), +('84.41.118.224', '84.41.118.255', 1412003552, 1412003583, 'SI', 'Slovenia'), +('84.41.119.0', '84.41.119.255', 1412003584, 1412003839, 'BA', 'Bosnia and Herzegovina'), +('84.41.120.0', '84.41.120.7', 1412003840, 1412003847, 'SI', 'Slovenia'), +('84.41.120.8', '84.41.120.63', 1412003848, 1412003903, 'BG', 'Bulgaria'), +('84.41.120.64', '84.41.120.95', 1412003904, 1412003935, 'SI', 'Slovenia'), +('84.41.120.96', '84.41.122.255', 1412003936, 1412004607, 'BG', 'Bulgaria'), +('84.41.123.0', '84.41.127.255', 1412004608, 1412005887, 'SI', 'Slovenia'), +('84.41.128.0', '84.41.255.255', 1412005888, 1412038655, 'NL', 'Netherlands'), +('84.42.0.0', '84.42.127.255', 1412038656, 1412071423, 'RU', 'Russian Federation'), +('84.42.128.0', '84.42.255.255', 1412071424, 1412104191, 'CZ', 'Czech Republic'), +('84.43.0.0', '84.43.127.255', 1412104192, 1412136959, 'GB', 'United Kingdom'), +('84.43.128.0', '84.43.255.255', 1412136960, 1412169727, 'BG', 'Bulgaria'), +('84.44.0.0', '84.44.127.255', 1412169728, 1412202495, 'TR', 'Turkey'), +('84.44.128.0', '84.44.255.255', 1412202496, 1412235263, 'DE', 'Germany'), +('84.45.0.0', '84.45.22.215', 1412235264, 1412241111, 'GB', 'United Kingdom'), +('84.45.22.216', '84.45.22.223', 1412241112, 1412241119, 'NL', 'Netherlands'), +('84.45.22.224', '84.45.86.255', 1412241120, 1412257535, 'GB', 'United Kingdom'), +('84.45.87.0', '84.45.87.79', 1412257536, 1412257615, 'NL', 'Netherlands'), +('84.45.87.80', '84.45.112.87', 1412257616, 1412264023, 'GB', 'United Kingdom'), +('84.45.112.88', '84.45.112.95', 1412264024, 1412264031, 'NL', 'Netherlands'), +('84.45.112.96', '84.45.255.255', 1412264032, 1412300799, 'GB', 'United Kingdom'), +('84.46.0.0', '84.46.127.255', 1412300800, 1412333567, 'DE', 'Germany'), +('84.46.128.0', '84.46.255.255', 1412333568, 1412366335, 'LT', 'Lithuania'), +('84.47.0.0', '84.47.127.255', 1412366336, 1412399103, 'SK', 'Slovakia'), +('84.47.128.0', '84.47.191.255', 1412399104, 1412415487, 'RU', 'Russian Federation'), +('84.47.192.0', '84.47.195.255', 1412415488, 1412416511, 'AE', 'United Arab Emirates'), +('84.47.196.0', '84.47.255.255', 1412416512, 1412431871, 'IR', 'Iran, Islamic Republic of'), +('84.48.0.0', '84.49.255.255', 1412431872, 1412562943, 'NO', 'Norway'), +('84.50.0.0', '84.50.255.255', 1412562944, 1412628479, 'EE', 'Estonia'), +('84.51.0.0', '84.51.51.255', 1412628480, 1412641791, 'TR', 'Turkey'), +('84.51.52.0', '84.51.55.255', 1412641792, 1412642815, 'DE', 'Germany'), +('84.51.56.0', '84.51.63.255', 1412642816, 1412644863, 'TR', 'Turkey'), +('84.51.64.0', '84.51.127.255', 1412644864, 1412661247, 'RU', 'Russian Federation'), +('84.51.128.0', '84.51.191.255', 1412661248, 1412677631, 'GB', 'United Kingdom'), +('84.51.192.0', '84.51.223.255', 1412677632, 1412685823, 'RU', 'Russian Federation'), +('84.51.224.0', '84.51.225.191', 1412685824, 1412686271, 'IE', 'Ireland'), +('84.51.225.192', '84.51.225.255', 1412686272, 1412686335, 'CA', 'Canada'), +('84.51.226.0', '84.51.227.255', 1412686336, 1412686847, 'GB', 'United Kingdom'), +('84.51.228.0', '84.51.236.255', 1412686848, 1412689151, 'IE', 'Ireland'), +('84.51.237.0', '84.51.237.255', 1412689152, 1412689407, 'GB', 'United Kingdom'), +('84.51.238.0', '84.51.241.15', 1412689408, 1412690191, 'IE', 'Ireland'), +('84.51.241.16', '84.51.241.23', 1412690192, 1412690199, 'GB', 'United Kingdom'), +('84.51.241.24', '84.51.255.255', 1412690200, 1412694015, 'IE', 'Ireland'), +('84.52.0.0', '84.52.63.255', 1412694016, 1412710399, 'EE', 'Estonia'), +('84.52.64.0', '84.52.127.255', 1412710400, 1412726783, 'RU', 'Russian Federation'), +('84.52.128.0', '84.52.191.255', 1412726784, 1412743167, 'SI', 'Slovenia'), +('84.52.192.0', '84.53.63.255', 1412743168, 1412775935, 'NO', 'Norway'), +('84.53.64.0', '84.53.80.207', 1412775936, 1412780239, 'NL', 'Netherlands'), +('84.53.80.208', '84.53.80.215', 1412780240, 1412780247, 'GB', 'United Kingdom'), +('84.53.80.216', '84.53.127.255', 1412780248, 1412792319, 'NL', 'Netherlands'), +('84.53.128.0', '84.53.151.255', 1412792320, 1412798463, 'US', 'United States'), +('84.53.152.0', '84.53.159.255', 1412798464, 1412800511, 'EU', 'Europe'), +('84.53.160.0', '84.53.175.255', 1412800512, 1412804607, 'US', 'United States'), +('84.53.176.0', '84.53.191.255', 1412804608, 1412808703, 'EU', 'Europe'), +('84.53.192.0', '84.53.255.255', 1412808704, 1412825087, 'RU', 'Russian Federation'), +('84.54.0.0', '84.54.20.255', 1412825088, 1412830463, 'IQ', 'Iraq'), +('84.54.21.0', '84.54.31.255', 1412830464, 1412833279, 'LB', 'Lebanon'), +('84.54.32.0', '84.54.32.255', 1412833280, 1412833535, 'CI', 'Cote D''Ivoire'), +('84.54.33.0', '84.54.63.255', 1412833536, 1412841471, 'LB', 'Lebanon'), +('84.54.64.0', '84.54.127.255', 1412841472, 1412857855, 'UZ', 'Uzbekistan'), +('84.54.128.0', '84.54.191.255', 1412857856, 1412874239, 'BG', 'Bulgaria'), +('84.54.192.0', '84.54.255.255', 1412874240, 1412890623, 'RU', 'Russian Federation'), +('84.55.0.0', '84.55.63.255', 1412890624, 1412907007, 'LT', 'Lithuania'), +('84.55.64.0', '84.55.127.255', 1412907008, 1412923391, 'SE', 'Sweden'), +('84.55.128.0', '84.55.191.255', 1412923392, 1412939775, 'FR', 'France'), +('84.55.192.0', '84.55.255.255', 1412939776, 1412956159, 'CH', 'Switzerland'), +('84.56.0.0', '84.63.255.255', 1412956160, 1413480447, 'DE', 'Germany'), +('84.64.0.0', '84.71.255.255', 1413480448, 1414004735, 'GB', 'United Kingdom'), +('84.72.0.0', '84.75.255.255', 1414004736, 1414266879, 'CH', 'Switzerland'), +('84.76.0.0', '84.79.255.255', 1414266880, 1414529023, 'ES', 'Spain'), +('84.80.0.0', '84.87.255.255', 1414529024, 1415053311, 'NL', 'Netherlands'), +('84.88.0.0', '84.89.255.255', 1415053312, 1415184383, 'ES', 'Spain'), +('84.90.0.0', '84.91.255.255', 1415184384, 1415315455, 'PT', 'Portugal'), +('84.92.0.0', '84.93.255.255', 1415315456, 1415446527, 'GB', 'United Kingdom'), +('84.94.0.0', '84.95.255.255', 1415446528, 1415577599, 'IL', 'Israel'), +('84.96.0.0', '84.103.255.255', 1415577600, 1416101887, 'FR', 'France'), +('84.104.0.0', '84.107.255.255', 1416101888, 1416364031, 'NL', 'Netherlands'), +('84.108.0.0', '84.111.255.255', 1416364032, 1416626175, 'IL', 'Israel'), +('84.112.0.0', '84.119.255.255', 1416626176, 1417150463, 'AT', 'Austria'), +('84.120.0.0', '84.127.255.255', 1417150464, 1417674751, 'ES', 'Spain'), +('84.128.0.0', '84.191.255.255', 1417674752, 1421869055, 'DE', 'Germany'), +('84.192.0.0', '84.199.255.255', 1421869056, 1422393343, 'BE', 'Belgium'), +('84.200.0.0', '84.200.24.255', 1422393344, 1422399743, 'DE', 'Germany'), +('84.200.25.0', '84.200.25.255', 1422399744, 1422399999, 'IT', 'Italy'), +('84.200.26.0', '84.201.12.255', 1422400000, 1422462207, 'DE', 'Germany'), +('84.201.13.0', '84.201.13.255', 1422462208, 1422462463, 'TR', 'Turkey'), +('84.201.14.0', '84.201.127.255', 1422462464, 1422491647, 'DE', 'Germany'), +('84.201.128.0', '84.201.191.255', 1422491648, 1422508031, 'GB', 'United Kingdom'), +('84.201.192.0', '84.201.207.255', 1422508032, 1422512127, 'BG', 'Bulgaria'), +('84.201.208.0', '84.201.223.255', 1422512128, 1422516223, 'PL', 'Poland'), +('84.201.224.0', '84.201.239.255', 1422516224, 1422520319, 'BY', 'Belarus'), +('84.201.240.0', '84.201.255.255', 1422520320, 1422524415, 'RU', 'Russian Federation'), +('84.202.0.0', '84.202.255.255', 1422524416, 1422589951, 'NO', 'Norway'), +('84.203.0.0', '84.203.255.255', 1422589952, 1422655487, 'IE', 'Ireland'), +('84.204.0.0', '84.204.255.255', 1422655488, 1422721023, 'RU', 'Russian Federation'), +('84.205.0.0', '84.205.31.255', 1422721024, 1422729215, 'PL', 'Poland'), +('84.205.32.0', '84.205.63.255', 1422729216, 1422737407, 'NO', 'Norway'), +('84.205.64.0', '84.205.95.255', 1422737408, 1422745599, 'EU', 'Europe'), +('84.205.96.0', '84.205.127.255', 1422745600, 1422753791, 'EG', 'Egypt'), +('84.205.128.0', '84.205.159.255', 1422753792, 1422761983, 'FR', 'France'), +('84.205.160.0', '84.205.191.255', 1422761984, 1422770175, 'PL', 'Poland'), +('84.205.192.0', '84.205.255.255', 1422770176, 1422786559, 'GR', 'Greece'), +('84.206.0.0', '84.206.255.255', 1422786560, 1422852095, 'HU', 'Hungary'), +('84.207.0.0', '84.207.3.255', 1422852096, 1422853119, 'FR', 'France'), +('84.207.4.0', '84.207.5.255', 1422853120, 1422853631, 'EU', 'Europe'), +('84.207.6.0', '84.207.7.31', 1422853632, 1422853919, 'FR', 'France'), +('84.207.7.32', '84.207.7.255', 1422853920, 1422854143, 'EU', 'Europe'), +('84.207.8.0', '84.207.8.7', 1422854144, 1422854151, 'FR', 'France'), +('84.207.8.8', '84.207.16.127', 1422854152, 1422856319, 'EU', 'Europe'), +('84.207.16.128', '84.207.17.127', 1422856320, 1422856575, 'FR', 'France'), +('84.207.17.128', '84.207.17.255', 1422856576, 1422856703, 'EU', 'Europe'), +('84.207.18.0', '84.207.22.127', 1422856704, 1422857855, 'FR', 'France'), +('84.207.22.128', '84.207.22.191', 1422857856, 1422857919, 'EU', 'Europe'), +('84.207.22.192', '84.207.23.159', 1422857920, 1422858143, 'FR', 'France'), +('84.207.23.160', '84.207.23.255', 1422858144, 1422858239, 'EU', 'Europe'), +('84.207.24.0', '84.207.25.127', 1422858240, 1422858623, 'FR', 'France'), +('84.207.25.128', '84.207.254.255', 1422858624, 1422917375, 'EU', 'Europe'), +('84.207.255.0', '84.207.255.255', 1422917376, 1422917631, 'GB', 'United Kingdom'), +('84.208.0.0', '84.215.255.255', 1422917632, 1423441919, 'NO', 'Norway'), +('84.216.0.0', '84.219.255.255', 1423441920, 1423704063, 'SE', 'Sweden'), +('84.220.0.0', '84.223.255.255', 1423704064, 1423966207, 'IT', 'Italy'), +('84.224.0.0', '84.225.255.255', 1423966208, 1424097279, 'HU', 'Hungary'), +('84.226.0.0', '84.227.255.255', 1424097280, 1424228351, 'CH', 'Switzerland'), +('84.228.0.0', '84.229.255.255', 1424228352, 1424359423, 'IL', 'Israel'), +('84.230.0.0', '84.231.255.255', 1424359424, 1424490495, 'FI', 'Finland'), +('84.232.0.0', '84.232.127.255', 1424490496, 1424523263, 'ES', 'Spain'), +('84.232.128.0', '84.232.255.255', 1424523264, 1424556031, 'RO', 'Romania'), +('84.233.0.0', '84.233.127.255', 1424556032, 1424588799, 'EG', 'Egypt'), +('84.233.128.0', '84.233.128.39', 1424588800, 1424588839, 'DE', 'Germany'), +('84.233.128.40', '84.233.128.47', 1424588840, 1424588847, 'GB', 'United Kingdom'), +('84.233.128.48', '84.233.129.255', 1424588848, 1424589311, 'DE', 'Germany'), +('84.233.130.0', '84.233.130.255', 1424589312, 1424589567, 'FR', 'France'), +('84.233.131.0', '84.233.135.127', 1424589568, 1424590719, 'GB', 'United Kingdom'), +('84.233.135.128', '84.233.135.175', 1424590720, 1424590767, 'SE', 'Sweden'), +('84.233.135.176', '84.233.135.191', 1424590768, 1424590783, 'GB', 'United Kingdom'), +('84.233.135.192', '84.233.135.255', 1424590784, 1424590847, 'CH', 'Switzerland'), +('84.233.136.0', '84.233.138.63', 1424590848, 1424591423, 'SE', 'Sweden'), +('84.233.138.64', '84.233.138.79', 1424591424, 1424591439, 'GB', 'United Kingdom'), +('84.233.138.80', '84.233.138.191', 1424591440, 1424591551, 'SE', 'Sweden'), +('84.233.138.192', '84.233.138.255', 1424591552, 1424591615, 'CZ', 'Czech Republic'), +('84.233.139.0', '84.233.139.127', 1424591616, 1424591743, 'GB', 'United Kingdom'), +('84.233.139.128', '84.233.139.255', 1424591744, 1424591871, 'MT', 'Malta'), +('84.233.140.0', '84.233.142.255', 1424591872, 1424592639, 'GB', 'United Kingdom'), +('84.233.143.0', '84.233.145.255', 1424592640, 1424593407, 'FR', 'France'), +('84.233.146.0', '84.233.146.255', 1424593408, 1424593663, 'DE', 'Germany'), +('84.233.147.0', '84.233.147.63', 1424593664, 1424593727, 'SK', 'Slovakia'), +('84.233.147.64', '84.233.147.127', 1424593728, 1424593791, 'HU', 'Hungary'), +('84.233.147.128', '84.233.147.255', 1424593792, 1424593919, 'DE', 'Germany'), +('84.233.148.0', '84.233.148.47', 1424593920, 1424593967, 'FR', 'France'), +('84.233.148.48', '84.233.148.63', 1424593968, 1424593983, 'GB', 'United Kingdom'), +('84.233.148.64', '84.233.148.135', 1424593984, 1424594055, 'FR', 'France'), +('84.233.148.136', '84.233.148.143', 1424594056, 1424594063, 'IT', 'Italy'), +('84.233.148.144', '84.233.148.255', 1424594064, 1424594175, 'FR', 'France'), +('84.233.149.0', '84.233.153.255', 1424594176, 1424595455, 'GB', 'United Kingdom'), +('84.233.154.0', '84.233.154.119', 1424595456, 1424595575, 'IT', 'Italy'), +('84.233.154.120', '84.233.154.127', 1424595576, 1424595583, 'ES', 'Spain'), +('84.233.154.128', '84.233.154.207', 1424595584, 1424595663, 'IT', 'Italy'), +('84.233.154.208', '84.233.154.215', 1424595664, 1424595671, 'GB', 'United Kingdom'), +('84.233.154.216', '84.233.155.127', 1424595672, 1424595839, 'IT', 'Italy'), +('84.233.155.128', '84.233.155.159', 1424595840, 1424595871, 'GB', 'United Kingdom'), +('84.233.155.160', '84.233.157.255', 1424595872, 1424596479, 'IT', 'Italy'), +('84.233.158.0', '84.233.159.255', 1424596480, 1424596991, 'FR', 'France'), +('84.233.160.0', '84.233.160.255', 1424596992, 1424597247, 'CZ', 'Czech Republic'), +('84.233.161.0', '84.233.161.255', 1424597248, 1424597503, 'GB', 'United Kingdom'), +('84.233.162.0', '84.233.162.255', 1424597504, 1424597759, 'FR', 'France'), +('84.233.163.0', '84.233.163.255', 1424597760, 1424598015, 'IT', 'Italy'), +('84.233.164.0', '84.233.167.255', 1424598016, 1424599039, 'GB', 'United Kingdom'), +('84.233.168.0', '84.233.168.191', 1424599040, 1424599231, 'DK', 'Denmark'), +('84.233.168.192', '84.233.168.207', 1424599232, 1424599247, 'GB', 'United Kingdom'), +('84.233.168.208', '84.233.168.239', 1424599248, 1424599279, 'DK', 'Denmark'), +('84.233.168.240', '84.233.168.255', 1424599280, 1424599295, 'GB', 'United Kingdom'), +('84.233.169.0', '84.233.169.255', 1424599296, 1424599551, 'DK', 'Denmark'), +('84.233.170.0', '84.233.171.47', 1424599552, 1424599855, 'HU', 'Hungary'), +('84.233.171.48', '84.233.171.63', 1424599856, 1424599871, 'GB', 'United Kingdom'), +('84.233.171.64', '84.233.171.67', 1424599872, 1424599875, 'HU', 'Hungary'), +('84.233.171.68', '84.233.171.71', 1424599876, 1424599879, 'GB', 'United Kingdom'), +('84.233.171.72', '84.233.171.79', 1424599880, 1424599887, 'HU', 'Hungary'), +('84.233.171.80', '84.233.171.95', 1424599888, 1424599903, 'GB', 'United Kingdom'), +('84.233.171.96', '84.233.171.143', 1424599904, 1424599951, 'HU', 'Hungary'), +('84.233.171.144', '84.233.171.255', 1424599952, 1424600063, 'GB', 'United Kingdom'), +('84.233.172.0', '84.233.172.255', 1424600064, 1424600319, 'CH', 'Switzerland'), +('84.233.173.0', '84.233.173.255', 1424600320, 1424600575, 'GB', 'United Kingdom'), +('84.233.174.0', '84.233.174.255', 1424600576, 1424600831, 'FR', 'France'), +('84.233.175.0', '84.233.175.255', 1424600832, 1424601087, 'BE', 'Belgium'), +('84.233.176.0', '84.233.176.255', 1424601088, 1424601343, 'GB', 'United Kingdom'), +('84.233.177.0', '84.233.177.255', 1424601344, 1424601599, 'ES', 'Spain'), +('84.233.178.0', '84.233.178.255', 1424601600, 1424601855, 'CH', 'Switzerland'), +('84.233.179.0', '84.233.179.255', 1424601856, 1424602111, 'GB', 'United Kingdom'), +('84.233.180.0', '84.233.181.255', 1424602112, 1424602623, 'DE', 'Germany'), +('84.233.182.0', '84.233.182.255', 1424602624, 1424602879, 'GB', 'United Kingdom'), +('84.233.183.0', '84.233.183.31', 1424602880, 1424602911, 'US', 'United States'), +('84.233.183.32', '84.233.183.47', 1424602912, 1424602927, 'FR', 'France'), +('84.233.183.48', '84.233.183.127', 1424602928, 1424603007, 'US', 'United States'), +('84.233.183.128', '84.233.183.143', 1424603008, 1424603023, 'GB', 'United Kingdom'), +('84.233.183.144', '84.233.183.175', 1424603024, 1424603055, 'US', 'United States'), +('84.233.183.176', '84.233.183.183', 1424603056, 1424603063, 'NL', 'Netherlands'), +('84.233.183.184', '84.233.183.207', 1424603064, 1424603087, 'US', 'United States'), +('84.233.183.208', '84.233.183.255', 1424603088, 1424603135, 'GB', 'United Kingdom'), +('84.233.184.0', '84.233.184.255', 1424603136, 1424603391, 'SK', 'Slovakia'), +('84.233.185.0', '84.233.185.255', 1424603392, 1424603647, 'DE', 'Germany'), +('84.233.186.0', '84.233.186.255', 1424603648, 1424603903, 'GB', 'United Kingdom'), +('84.233.187.0', '84.233.187.255', 1424603904, 1424604159, 'ES', 'Spain'), +('84.233.188.0', '84.233.189.127', 1424604160, 1424604543, 'NL', 'Netherlands'), +('84.233.189.128', '84.233.189.255', 1424604544, 1424604671, 'GB', 'United Kingdom'), +('84.233.190.0', '84.233.190.127', 1424604672, 1424604799, 'NL', 'Netherlands'), +('84.233.190.128', '84.233.190.255', 1424604800, 1424604927, 'GB', 'United Kingdom'), +('84.233.191.0', '84.233.191.191', 1424604928, 1424605119, 'NL', 'Netherlands'), +('84.233.191.192', '84.233.191.223', 1424605120, 1424605151, 'GB', 'United Kingdom'), +('84.233.191.224', '84.233.191.255', 1424605152, 1424605183, 'NL', 'Netherlands'), +('84.233.192.0', '84.233.192.255', 1424605184, 1424605439, 'GB', 'United Kingdom'), +('84.233.193.0', '84.233.193.143', 1424605440, 1424605583, 'BG', 'Bulgaria'), +('84.233.193.144', '84.233.193.191', 1424605584, 1424605631, 'GB', 'United Kingdom'), +('84.233.193.192', '84.233.193.255', 1424605632, 1424605695, 'BG', 'Bulgaria'), +('84.233.194.0', '84.233.194.255', 1424605696, 1424605951, 'NL', 'Netherlands'), +('84.233.195.0', '84.233.195.7', 1424605952, 1424605959, 'CH', 'Switzerland'), +('84.233.195.8', '84.233.195.15', 1424605960, 1424605967, 'GB', 'United Kingdom'), +('84.233.195.16', '84.233.195.63', 1424605968, 1424606015, 'AT', 'Austria'), +('84.233.195.64', '84.233.195.247', 1424606016, 1424606199, 'GB', 'United Kingdom'), +('84.233.195.248', '84.233.195.255', 1424606200, 1424606207, 'AT', 'Austria'), +('84.233.196.0', '84.233.196.247', 1424606208, 1424606455, 'GB', 'United Kingdom'), +('84.233.196.248', '84.233.196.255', 1424606456, 1424606463, 'AT', 'Austria'), +('84.233.197.0', '84.233.197.247', 1424606464, 1424606711, 'GB', 'United Kingdom'), +('84.233.197.248', '84.233.197.255', 1424606712, 1424606719, 'AT', 'Austria'), +('84.233.198.0', '84.233.198.247', 1424606720, 1424606967, 'GB', 'United Kingdom'), +('84.233.198.248', '84.233.198.255', 1424606968, 1424606975, 'AT', 'Austria'), +('84.233.199.0', '84.233.199.127', 1424606976, 1424607103, 'GB', 'United Kingdom'), +('84.233.199.128', '84.233.199.143', 1424607104, 1424607119, 'SK', 'Slovakia'), +('84.233.199.144', '84.233.199.191', 1424607120, 1424607167, 'GB', 'United Kingdom'), +('84.233.199.192', '84.233.199.223', 1424607168, 1424607199, 'SK', 'Slovakia'), +('84.233.199.224', '84.233.199.239', 1424607200, 1424607215, 'GB', 'United Kingdom'), +('84.233.199.240', '84.233.199.255', 1424607216, 1424607231, 'SK', 'Slovakia'), +('84.233.200.0', '84.233.200.255', 1424607232, 1424607487, 'GB', 'United Kingdom'), +('84.233.201.0', '84.233.202.127', 1424607488, 1424607871, 'DE', 'Germany'), +('84.233.202.128', '84.233.203.31', 1424607872, 1424608031, 'GB', 'United Kingdom'), +('84.233.203.32', '84.233.203.127', 1424608032, 1424608127, 'FR', 'France'), +('84.233.203.128', '84.233.204.23', 1424608128, 1424608279, 'GB', 'United Kingdom'), +('84.233.204.24', '84.233.204.127', 1424608280, 1424608383, 'FR', 'France'), +('84.233.204.128', '84.233.204.143', 1424608384, 1424608399, 'ES', 'Spain'), +('84.233.204.144', '84.233.204.255', 1424608400, 1424608511, 'FR', 'France'), +('84.233.205.0', '84.233.205.191', 1424608512, 1424608703, 'ES', 'Spain'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('84.233.205.192', '84.233.205.207', 1424608704, 1424608719, 'GB', 'United Kingdom'), +('84.233.205.208', '84.233.206.255', 1424608720, 1424609023, 'ES', 'Spain'), +('84.233.207.0', '84.233.207.255', 1424609024, 1424609279, 'DE', 'Germany'), +('84.233.208.0', '84.233.208.115', 1424609280, 1424609395, 'CH', 'Switzerland'), +('84.233.208.116', '84.233.208.119', 1424609396, 1424609399, 'GB', 'United Kingdom'), +('84.233.208.120', '84.233.209.255', 1424609400, 1424609791, 'CH', 'Switzerland'), +('84.233.210.0', '84.233.211.255', 1424609792, 1424610303, 'GB', 'United Kingdom'), +('84.233.212.0', '84.233.212.255', 1424610304, 1424610559, 'TZ', 'Tanzania, United Republic of'), +('84.233.213.0', '84.233.213.255', 1424610560, 1424610815, 'PL', 'Poland'), +('84.233.214.0', '84.233.214.255', 1424610816, 1424611071, 'FR', 'France'), +('84.233.215.0', '84.233.215.71', 1424611072, 1424611143, 'BE', 'Belgium'), +('84.233.215.72', '84.233.215.79', 1424611144, 1424611151, 'GB', 'United Kingdom'), +('84.233.215.80', '84.233.215.95', 1424611152, 1424611167, 'BE', 'Belgium'), +('84.233.215.96', '84.233.215.103', 1424611168, 1424611175, 'GB', 'United Kingdom'), +('84.233.215.104', '84.233.215.255', 1424611176, 1424611327, 'BE', 'Belgium'), +('84.233.216.0', '84.233.216.255', 1424611328, 1424611583, 'PL', 'Poland'), +('84.233.217.0', '84.233.218.255', 1424611584, 1424612095, 'GB', 'United Kingdom'), +('84.233.219.0', '84.233.219.135', 1424612096, 1424612231, 'CZ', 'Czech Republic'), +('84.233.219.136', '84.233.219.143', 1424612232, 1424612239, 'CH', 'Switzerland'), +('84.233.219.144', '84.233.219.223', 1424612240, 1424612319, 'CZ', 'Czech Republic'), +('84.233.219.224', '84.233.220.255', 1424612320, 1424612607, 'GB', 'United Kingdom'), +('84.233.221.0', '84.233.221.63', 1424612608, 1424612671, 'AE', 'United Arab Emirates'), +('84.233.221.64', '84.233.221.255', 1424612672, 1424612863, 'GB', 'United Kingdom'), +('84.233.222.0', '84.233.222.255', 1424612864, 1424613119, 'FR', 'France'), +('84.233.223.0', '84.233.223.255', 1424613120, 1424613375, 'GB', 'United Kingdom'), +('84.233.224.0', '84.233.224.255', 1424613376, 1424613631, 'ES', 'Spain'), +('84.233.225.0', '84.233.226.215', 1424613632, 1424614103, 'IT', 'Italy'), +('84.233.226.216', '84.233.226.223', 1424614104, 1424614111, 'GB', 'United Kingdom'), +('84.233.226.224', '84.233.226.247', 1424614112, 1424614135, 'IT', 'Italy'), +('84.233.226.248', '84.233.227.255', 1424614136, 1424614399, 'GB', 'United Kingdom'), +('84.233.228.0', '84.233.228.15', 1424614400, 1424614415, 'FR', 'France'), +('84.233.228.16', '84.233.228.39', 1424614416, 1424614439, 'IT', 'Italy'), +('84.233.228.40', '84.233.228.47', 1424614440, 1424614447, 'GB', 'United Kingdom'), +('84.233.228.48', '84.233.228.255', 1424614448, 1424614655, 'IT', 'Italy'), +('84.233.229.0', '84.233.229.255', 1424614656, 1424614911, 'FR', 'France'), +('84.233.230.0', '84.233.230.255', 1424614912, 1424615167, 'RO', 'Romania'), +('84.233.231.0', '84.233.232.255', 1424615168, 1424615679, 'GB', 'United Kingdom'), +('84.233.233.0', '84.233.233.63', 1424615680, 1424615743, 'IT', 'Italy'), +('84.233.233.64', '84.233.233.255', 1424615744, 1424615935, 'GB', 'United Kingdom'), +('84.233.234.0', '84.233.234.255', 1424615936, 1424616191, 'FR', 'France'), +('84.233.235.0', '84.233.235.255', 1424616192, 1424616447, 'IT', 'Italy'), +('84.233.236.0', '84.233.236.35', 1424616448, 1424616483, 'ES', 'Spain'), +('84.233.236.36', '84.233.236.39', 1424616484, 1424616487, 'GB', 'United Kingdom'), +('84.233.236.40', '84.233.236.159', 1424616488, 1424616607, 'ES', 'Spain'), +('84.233.236.160', '84.233.236.167', 1424616608, 1424616615, 'PT', 'Portugal'), +('84.233.236.168', '84.233.236.191', 1424616616, 1424616639, 'ES', 'Spain'), +('84.233.236.192', '84.233.236.207', 1424616640, 1424616655, 'GB', 'United Kingdom'), +('84.233.236.208', '84.233.236.247', 1424616656, 1424616695, 'ES', 'Spain'), +('84.233.236.248', '84.233.236.255', 1424616696, 1424616703, 'GB', 'United Kingdom'), +('84.233.237.0', '84.233.237.255', 1424616704, 1424616959, 'US', 'United States'), +('84.233.238.0', '84.233.238.255', 1424616960, 1424617215, 'FR', 'France'), +('84.233.239.0', '84.233.239.159', 1424617216, 1424617375, 'IT', 'Italy'), +('84.233.239.160', '84.233.239.175', 1424617376, 1424617391, 'GB', 'United Kingdom'), +('84.233.239.176', '84.233.239.179', 1424617392, 1424617395, 'IT', 'Italy'), +('84.233.239.180', '84.233.239.183', 1424617396, 1424617399, 'GB', 'United Kingdom'), +('84.233.239.184', '84.233.239.191', 1424617400, 1424617407, 'IT', 'Italy'), +('84.233.239.192', '84.233.239.207', 1424617408, 1424617423, 'ES', 'Spain'), +('84.233.239.208', '84.233.239.215', 1424617424, 1424617431, 'GB', 'United Kingdom'), +('84.233.239.216', '84.233.239.223', 1424617432, 1424617439, 'ES', 'Spain'), +('84.233.239.224', '84.233.239.255', 1424617440, 1424617471, 'IT', 'Italy'), +('84.233.240.0', '84.233.240.255', 1424617472, 1424617727, 'US', 'United States'), +('84.233.241.0', '84.233.242.255', 1424617728, 1424618239, 'IT', 'Italy'), +('84.233.243.0', '84.233.243.255', 1424618240, 1424618495, 'NL', 'Netherlands'), +('84.233.244.0', '84.233.244.255', 1424618496, 1424618751, 'GB', 'United Kingdom'), +('84.233.245.0', '84.233.245.255', 1424618752, 1424619007, 'FR', 'France'), +('84.233.246.0', '84.233.248.255', 1424619008, 1424619775, 'IT', 'Italy'), +('84.233.249.0', '84.233.249.35', 1424619776, 1424619811, 'BE', 'Belgium'), +('84.233.249.36', '84.233.249.39', 1424619812, 1424619815, 'GB', 'United Kingdom'), +('84.233.249.40', '84.233.249.47', 1424619816, 1424619823, 'BE', 'Belgium'), +('84.233.249.48', '84.233.249.63', 1424619824, 1424619839, 'GB', 'United Kingdom'), +('84.233.249.64', '84.233.249.255', 1424619840, 1424620031, 'BE', 'Belgium'), +('84.233.250.0', '84.233.253.255', 1424620032, 1424621055, 'GB', 'United Kingdom'), +('84.233.254.0', '84.233.255.255', 1424621056, 1424621567, 'IT', 'Italy'), +('84.234.0.0', '84.234.15.255', 1424621568, 1424625663, 'PL', 'Poland'), +('84.234.16.0', '84.234.31.255', 1424625664, 1424629759, 'GB', 'United Kingdom'), +('84.234.32.0', '84.234.47.255', 1424629760, 1424633855, 'PL', 'Poland'), +('84.234.64.0', '84.234.79.255', 1424637952, 1424642047, 'FI', 'Finland'), +('84.234.80.0', '84.234.95.255', 1424642048, 1424646143, 'DK', 'Denmark'), +('84.234.96.0', '84.234.111.255', 1424646144, 1424650239, 'RO', 'Romania'), +('84.234.112.0', '84.234.127.255', 1424650240, 1424654335, 'PL', 'Poland'), +('84.234.128.0', '84.234.255.255', 1424654336, 1424687103, 'NO', 'Norway'), +('84.235.0.0', '84.235.127.255', 1424687104, 1424719871, 'SA', 'Saudi Arabia'), +('84.235.128.0', '84.235.137.255', 1424719872, 1424722431, 'IE', 'Ireland'), +('84.235.138.0', '84.235.140.255', 1424722432, 1424723199, 'CZ', 'Czech Republic'), +('84.235.141.0', '84.235.146.255', 1424723200, 1424724735, 'DE', 'Germany'), +('84.235.147.0', '84.235.147.255', 1424724736, 1424724991, 'IE', 'Ireland'), +('84.235.148.0', '84.235.155.255', 1424724992, 1424727039, 'GB', 'United Kingdom'), +('84.235.156.0', '84.235.156.255', 1424727040, 1424727295, 'IE', 'Ireland'), +('84.235.157.0', '84.235.157.255', 1424727296, 1424727551, 'SL', 'Sierra Leone'), +('84.235.158.0', '84.235.159.255', 1424727552, 1424728063, 'PL', 'Poland'), +('84.235.160.0', '84.235.160.255', 1424728064, 1424728319, 'IE', 'Ireland'), +('84.235.161.0', '84.235.166.255', 1424728320, 1424729855, 'FR', 'France'), +('84.235.167.0', '84.235.168.255', 1424729856, 1424730367, 'DE', 'Germany'), +('84.235.169.0', '84.235.169.255', 1424730368, 1424730623, 'ES', 'Spain'), +('84.235.170.0', '84.235.170.255', 1424730624, 1424730879, 'GB', 'United Kingdom'), +('84.235.171.0', '84.235.179.255', 1424730880, 1424733183, 'IE', 'Ireland'), +('84.235.180.0', '84.235.182.255', 1424733184, 1424733951, 'NL', 'Netherlands'), +('84.235.183.0', '84.235.187.127', 1424733952, 1424735103, 'SE', 'Sweden'), +('84.235.187.128', '84.235.191.127', 1424735104, 1424736127, 'DE', 'Germany'), +('84.235.191.128', '84.235.192.127', 1424736128, 1424736383, 'AT', 'Austria'), +('84.235.192.128', '84.235.194.127', 1424736384, 1424736895, 'FR', 'France'), +('84.235.194.128', '84.235.195.127', 1424736896, 1424737151, 'DE', 'Germany'), +('84.235.195.128', '84.235.195.255', 1424737152, 1424737279, 'GB', 'United Kingdom'), +('84.235.196.0', '84.235.196.127', 1424737280, 1424737407, 'DK', 'Denmark'), +('84.235.196.128', '84.235.196.255', 1424737408, 1424737535, 'AT', 'Austria'), +('84.235.197.0', '84.235.201.255', 1424737536, 1424738815, 'DE', 'Germany'), +('84.235.202.0', '84.235.204.255', 1424738816, 1424739583, 'SE', 'Sweden'), +('84.235.205.0', '84.235.205.255', 1424739584, 1424739839, 'GB', 'United Kingdom'), +('84.235.206.0', '84.235.208.159', 1424739840, 1424740511, 'DE', 'Germany'), +('84.235.208.160', '84.235.208.199', 1424740512, 1424740551, 'GB', 'United Kingdom'), +('84.235.208.200', '84.235.210.255', 1424740552, 1424741119, 'DE', 'Germany'), +('84.235.211.0', '84.235.211.255', 1424741120, 1424741375, 'IE', 'Ireland'), +('84.235.212.0', '84.235.217.255', 1424741376, 1424742911, 'DE', 'Germany'), +('84.235.218.0', '84.235.218.255', 1424742912, 1424743167, 'IE', 'Ireland'), +('84.235.219.0', '84.235.219.255', 1424743168, 1424743423, 'IT', 'Italy'), +('84.235.220.0', '84.235.221.255', 1424743424, 1424743935, 'DE', 'Germany'), +('84.235.222.0', '84.235.222.255', 1424743936, 1424744191, 'GB', 'United Kingdom'), +('84.235.223.0', '84.235.224.255', 1424744192, 1424744703, 'DE', 'Germany'), +('84.235.225.0', '84.235.225.255', 1424744704, 1424744959, 'GB', 'United Kingdom'), +('84.235.226.0', '84.235.231.255', 1424744960, 1424746495, 'DE', 'Germany'), +('84.235.232.0', '84.235.241.255', 1424746496, 1424749055, 'IE', 'Ireland'), +('84.235.242.0', '84.235.242.255', 1424749056, 1424749311, 'SL', 'Sierra Leone'), +('84.235.243.0', '84.235.245.255', 1424749312, 1424750079, 'DE', 'Germany'), +('84.235.246.0', '84.235.246.255', 1424750080, 1424750335, 'FR', 'France'), +('84.235.247.0', '84.235.247.255', 1424750336, 1424750591, 'GB', 'United Kingdom'), +('84.235.248.0', '84.235.248.255', 1424750592, 1424750847, 'FR', 'France'), +('84.235.249.0', '84.235.249.255', 1424750848, 1424751103, 'IE', 'Ireland'), +('84.235.250.0', '84.235.250.255', 1424751104, 1424751359, 'DE', 'Germany'), +('84.235.251.0', '84.235.251.255', 1424751360, 1424751615, 'AT', 'Austria'), +('84.235.252.0', '84.235.253.255', 1424751616, 1424752127, 'IE', 'Ireland'), +('84.235.254.0', '84.235.254.255', 1424752128, 1424752383, 'DE', 'Germany'), +('84.235.255.0', '84.235.255.255', 1424752384, 1424752639, 'NL', 'Netherlands'), +('84.236.0.0', '84.236.127.255', 1424752640, 1424785407, 'HU', 'Hungary'), +('84.236.128.0', '84.236.255.255', 1424785408, 1424818175, 'ES', 'Spain'), +('84.237.0.0', '84.237.127.255', 1424818176, 1424850943, 'RU', 'Russian Federation'), +('84.237.128.0', '84.237.255.255', 1424850944, 1424883711, 'LV', 'Latvia'), +('84.238.0.0', '84.238.127.255', 1424883712, 1424916479, 'DK', 'Denmark'), +('84.238.128.0', '84.238.255.255', 1424916480, 1424949247, 'BG', 'Bulgaria'), +('84.239.0.0', '84.239.127.255', 1424949248, 1424982015, 'GB', 'United Kingdom'), +('84.239.128.0', '84.239.255.255', 1424982016, 1425014783, 'FI', 'Finland'), +('84.240.0.0', '84.240.63.255', 1425014784, 1425031167, 'LT', 'Lithuania'), +('84.240.64.0', '84.240.127.255', 1425031168, 1425047551, 'FI', 'Finland'), +('84.240.128.0', '84.240.191.255', 1425047552, 1425063935, 'IT', 'Italy'), +('84.240.192.0', '84.240.255.255', 1425063936, 1425080319, 'KZ', 'Kazakstan'), +('84.241.0.0', '84.241.63.255', 1425080320, 1425096703, 'IR', 'Iran, Islamic Republic of'), +('84.241.64.0', '84.241.127.255', 1425096704, 1425113087, 'CH', 'Switzerland'), +('84.241.128.0', '84.241.255.255', 1425113088, 1425145855, 'NL', 'Netherlands'), +('84.242.0.0', '84.242.63.255', 1425145856, 1425162239, 'RU', 'Russian Federation'), +('84.242.64.0', '84.242.127.255', 1425162240, 1425178623, 'CZ', 'Czech Republic'), +('84.242.128.0', '84.242.191.255', 1425178624, 1425195007, 'BG', 'Bulgaria'), +('84.242.192.0', '84.242.255.255', 1425195008, 1425211391, 'RU', 'Russian Federation'), +('84.243.0.0', '84.243.63.255', 1425211392, 1425227775, 'SE', 'Sweden'), +('84.243.64.0', '84.243.127.255', 1425227776, 1425244159, 'RO', 'Romania'), +('84.243.128.0', '84.243.191.255', 1425244160, 1425260543, 'NO', 'Norway'), +('84.243.192.0', '84.243.255.255', 1425260544, 1425276927, 'NL', 'Netherlands'), +('84.244.0.0', '84.244.63.255', 1425276928, 1425293311, 'DE', 'Germany'), +('84.244.64.0', '84.244.127.255', 1425293312, 1425309695, 'CZ', 'Czech Republic'), +('84.244.128.0', '84.244.191.255', 1425309696, 1425326079, 'NL', 'Netherlands'), +('84.244.192.0', '84.244.255.255', 1425326080, 1425342463, 'SE', 'Sweden'), +('84.245.0.0', '84.245.63.255', 1425342464, 1425358847, 'NL', 'Netherlands'), +('84.245.64.0', '84.245.127.255', 1425358848, 1425375231, 'SK', 'Slovakia'), +('84.245.128.0', '84.245.191.255', 1425375232, 1425391615, 'DE', 'Germany'), +('84.245.192.0', '84.245.255.255', 1425391616, 1425407999, 'LV', 'Latvia'), +('84.246.0.0', '84.246.63.255', 1425408000, 1425424383, 'NL', 'Netherlands'), +('84.246.64.0', '84.246.64.159', 1425424384, 1425424543, 'A2', 'Satellite Provider'), +('84.246.64.160', '84.246.64.255', 1425424544, 1425424639, 'DE', 'Germany'), +('84.246.65.0', '84.246.65.255', 1425424640, 1425424895, 'IR', 'Iran, Islamic Republic of'), +('84.246.66.0', '84.246.66.255', 1425424896, 1425425151, 'NE', 'Niger'), +('84.246.67.0', '84.246.68.255', 1425425152, 1425425663, 'DE', 'Germany'), +('84.246.69.0', '84.246.69.255', 1425425664, 1425425919, 'NE', 'Niger'), +('84.246.70.0', '84.246.71.127', 1425425920, 1425426303, 'DE', 'Germany'), +('84.246.71.128', '84.246.71.143', 1425426304, 1425426319, 'IR', 'Iran, Islamic Republic of'), +('84.246.71.144', '84.246.71.167', 1425426320, 1425426343, 'DE', 'Germany'), +('84.246.71.168', '84.246.71.176', 1425426344, 1425426352, 'IR', 'Iran, Islamic Republic of'), +('84.246.71.177', '84.246.71.255', 1425426353, 1425426431, 'DE', 'Germany'), +('84.246.72.0', '84.246.79.255', 1425426432, 1425428479, 'KW', 'Kuwait'), +('84.246.80.0', '84.246.87.255', 1425428480, 1425430527, 'GB', 'United Kingdom'), +('84.246.88.0', '84.246.95.255', 1425430528, 1425432575, 'SE', 'Sweden'), +('84.246.96.0', '84.246.103.255', 1425432576, 1425434623, 'IT', 'Italy'), +('84.246.104.0', '84.246.111.255', 1425434624, 1425436671, 'FR', 'France'), +('84.246.112.0', '84.246.119.255', 1425436672, 1425438719, 'GB', 'United Kingdom'), +('84.246.120.0', '84.246.122.39', 1425438720, 1425439271, 'DE', 'Germany'), +('84.246.122.40', '84.246.122.47', 1425439272, 1425439279, 'CZ', 'Czech Republic'), +('84.246.122.48', '84.246.123.47', 1425439280, 1425439535, 'DE', 'Germany'), +('84.246.123.48', '84.246.123.55', 1425439536, 1425439543, 'CZ', 'Czech Republic'), +('84.246.123.56', '84.246.123.223', 1425439544, 1425439711, 'DE', 'Germany'), +('84.246.123.224', '84.246.123.239', 1425439712, 1425439727, 'CZ', 'Czech Republic'), +('84.246.123.240', '84.246.127.255', 1425439728, 1425440767, 'DE', 'Germany'), +('84.246.128.0', '84.246.135.255', 1425440768, 1425442815, 'SE', 'Sweden'), +('84.246.136.0', '84.246.143.255', 1425442816, 1425444863, 'GB', 'United Kingdom'), +('84.246.144.0', '84.246.145.19', 1425444864, 1425445139, 'IT', 'Italy'), +('84.246.145.20', '84.246.145.21', 1425445140, 1425445141, 'GB', 'United Kingdom'), +('84.246.145.22', '84.246.151.255', 1425445142, 1425446911, 'IT', 'Italy'), +('84.246.152.0', '84.246.159.255', 1425446912, 1425448959, 'GB', 'United Kingdom'), +('84.246.160.0', '84.246.167.255', 1425448960, 1425451007, 'NL', 'Netherlands'), +('84.246.168.0', '84.246.196.95', 1425451008, 1425458271, 'GB', 'United Kingdom'), +('84.246.196.96', '84.246.196.127', 1425458272, 1425458303, 'US', 'United States'), +('84.246.196.128', '84.246.207.255', 1425458304, 1425461247, 'GB', 'United Kingdom'), +('84.246.208.0', '84.246.215.255', 1425461248, 1425463295, 'ES', 'Spain'), +('84.246.216.0', '84.246.230.255', 1425463296, 1425467135, 'FR', 'France'), +('84.246.231.0', '84.246.231.255', 1425467136, 1425467391, 'ES', 'Spain'), +('84.246.232.0', '84.246.239.255', 1425467392, 1425469439, 'CH', 'Switzerland'), +('84.246.240.0', '84.246.247.255', 1425469440, 1425471487, 'DK', 'Denmark'), +('84.246.248.0', '84.246.255.255', 1425471488, 1425473535, 'DE', 'Germany'), +('84.247.0.0', '84.247.127.255', 1425473536, 1425506303, 'RO', 'Romania'), +('84.247.128.0', '84.247.191.255', 1425506304, 1425522687, 'NO', 'Norway'), +('84.247.192.0', '84.247.255.255', 1425522688, 1425539071, 'IT', 'Italy'), +('84.248.0.0', '84.251.255.255', 1425539072, 1425801215, 'FI', 'Finland'), +('84.252.0.0', '84.252.63.255', 1425801216, 1425817599, 'BG', 'Bulgaria'), +('84.252.64.0', '84.252.127.255', 1425817600, 1425833983, 'DE', 'Germany'), +('84.252.128.0', '84.252.191.255', 1425833984, 1425850367, 'RU', 'Russian Federation'), +('84.252.192.0', '84.252.255.255', 1425850368, 1425866751, 'GB', 'United Kingdom'), +('84.253.0.0', '84.253.63.255', 1425866752, 1425883135, 'CH', 'Switzerland'), +('84.253.64.0', '84.253.127.255', 1425883136, 1425899519, 'RU', 'Russian Federation'), +('84.253.128.0', '84.253.191.255', 1425899520, 1425915903, 'IT', 'Italy'), +('84.253.192.0', '84.253.255.255', 1425915904, 1425932287, 'FI', 'Finland'), +('84.254.0.0', '84.254.63.255', 1425932288, 1425948671, 'GR', 'Greece'), +('84.254.64.0', '84.254.127.255', 1425948672, 1425965055, 'DE', 'Germany'), +('84.254.128.0', '84.254.128.44', 1425965056, 1425965100, 'ES', 'Spain'), +('84.254.128.45', '84.254.128.56', 1425965101, 1425965112, 'FR', 'France'), +('84.254.128.57', '84.254.128.60', 1425965113, 1425965116, 'ZA', 'South Africa'), +('84.254.128.61', '84.254.128.64', 1425965117, 1425965120, 'A2', 'Satellite Provider'), +('84.254.128.65', '84.254.128.126', 1425965121, 1425965182, 'IT', 'Italy'), +('84.254.128.127', '84.254.128.127', 1425965183, 1425965183, 'A2', 'Satellite Provider'), +('84.254.128.128', '84.254.129.191', 1425965184, 1425965503, 'IT', 'Italy'), +('84.254.129.192', '84.254.129.255', 1425965504, 1425965567, 'FR', 'France'), +('84.254.130.0', '84.254.130.0', 1425965568, 1425965568, 'A2', 'Satellite Provider'), +('84.254.130.1', '84.254.130.4', 1425965569, 1425965572, 'NG', 'Nigeria'), +('84.254.130.5', '84.254.130.8', 1425965573, 1425965576, 'US', 'United States'), +('84.254.130.9', '84.254.130.12', 1425965577, 1425965580, 'FR', 'France'), +('84.254.130.13', '84.254.130.16', 1425965581, 1425965584, 'BJ', 'Benin'), +('84.254.130.17', '84.254.130.20', 1425965585, 1425965588, 'ES', 'Spain'), +('84.254.130.21', '84.254.130.24', 1425965589, 1425965592, 'A2', 'Satellite Provider'), +('84.254.130.25', '84.254.130.63', 1425965593, 1425965631, 'FR', 'France'), +('84.254.130.64', '84.254.132.0', 1425965632, 1425966080, 'A2', 'Satellite Provider'), +('84.254.132.1', '84.254.132.8', 1425966081, 1425966088, 'DE', 'Germany'), +('84.254.132.9', '84.254.132.24', 1425966089, 1425966104, 'A2', 'Satellite Provider'), +('84.254.132.25', '84.254.132.48', 1425966105, 1425966128, 'DE', 'Germany'), +('84.254.132.49', '84.254.132.64', 1425966129, 1425966144, 'A2', 'Satellite Provider'), +('84.254.132.65', '84.254.132.72', 1425966145, 1425966152, 'DE', 'Germany'), +('84.254.132.73', '84.254.132.128', 1425966153, 1425966208, 'A2', 'Satellite Provider'), +('84.254.132.129', '84.254.132.144', 1425966209, 1425966224, 'DE', 'Germany'), +('84.254.132.145', '84.254.132.159', 1425966225, 1425966239, 'A2', 'Satellite Provider'), +('84.254.132.160', '84.254.132.191', 1425966240, 1425966271, 'IT', 'Italy'), +('84.254.132.192', '84.254.132.255', 1425966272, 1425966335, 'DE', 'Germany'), +('84.254.133.0', '84.254.133.127', 1425966336, 1425966463, 'A2', 'Satellite Provider'), +('84.254.133.128', '84.254.133.191', 1425966464, 1425966527, 'IT', 'Italy'), +('84.254.133.192', '84.254.134.16', 1425966528, 1425966608, 'A2', 'Satellite Provider'), +('84.254.134.17', '84.254.134.32', 1425966609, 1425966624, 'IT', 'Italy'), +('84.254.134.33', '84.254.134.63', 1425966625, 1425966655, 'A2', 'Satellite Provider'), +('84.254.134.64', '84.254.134.127', 1425966656, 1425966719, 'IT', 'Italy'), +('84.254.134.128', '84.254.134.128', 1425966720, 1425966720, 'A2', 'Satellite Provider'), +('84.254.134.129', '84.254.134.136', 1425966721, 1425966728, 'BJ', 'Benin'), +('84.254.134.137', '84.254.134.143', 1425966729, 1425966735, 'A2', 'Satellite Provider'), +('84.254.134.144', '84.254.134.159', 1425966736, 1425966751, 'BJ', 'Benin'), +('84.254.134.160', '84.254.134.192', 1425966752, 1425966784, 'A2', 'Satellite Provider'), +('84.254.134.193', '84.254.134.216', 1425966785, 1425966808, 'BJ', 'Benin'), +('84.254.134.217', '84.254.134.223', 1425966809, 1425966815, 'A2', 'Satellite Provider'), +('84.254.134.224', '84.254.134.255', 1425966816, 1425966847, 'BJ', 'Benin'), +('84.254.135.0', '84.254.135.4', 1425966848, 1425966852, 'A2', 'Satellite Provider'), +('84.254.135.5', '84.254.135.48', 1425966853, 1425966896, 'DE', 'Germany'), +('84.254.135.49', '84.254.135.63', 1425966897, 1425966911, 'A2', 'Satellite Provider'), +('84.254.135.64', '84.254.135.127', 1425966912, 1425966975, 'DE', 'Germany'), +('84.254.135.128', '84.254.135.191', 1425966976, 1425967039, 'IT', 'Italy'), +('84.254.135.192', '84.254.135.255', 1425967040, 1425967103, 'DE', 'Germany'), +('84.254.136.0', '84.254.136.0', 1425967104, 1425967104, 'A2', 'Satellite Provider'), +('84.254.136.1', '84.254.136.16', 1425967105, 1425967120, 'TR', 'Turkey'), +('84.254.136.17', '84.254.136.255', 1425967121, 1425967359, 'IT', 'Italy'), +('84.254.137.0', '84.254.138.127', 1425967360, 1425967743, 'A2', 'Satellite Provider'), +('84.254.138.128', '84.254.138.191', 1425967744, 1425967807, 'IT', 'Italy'), +('84.254.138.192', '84.254.139.4', 1425967808, 1425967876, 'A2', 'Satellite Provider'), +('84.254.139.5', '84.254.139.20', 1425967877, 1425967892, 'DE', 'Germany'), +('84.254.139.21', '84.254.139.24', 1425967893, 1425967896, 'A2', 'Satellite Provider'), +('84.254.139.25', '84.254.139.32', 1425967897, 1425967904, 'DE', 'Germany'), +('84.254.139.33', '84.254.139.40', 1425967905, 1425967912, 'A2', 'Satellite Provider'), +('84.254.139.41', '84.254.139.52', 1425967913, 1425967924, 'DE', 'Germany'), +('84.254.139.53', '84.254.139.56', 1425967925, 1425967928, 'A2', 'Satellite Provider'), +('84.254.139.57', '84.254.139.68', 1425967929, 1425967940, 'DE', 'Germany'), +('84.254.139.69', '84.254.139.95', 1425967941, 1425967967, 'A2', 'Satellite Provider'), +('84.254.139.96', '84.254.139.127', 1425967968, 1425967999, 'IT', 'Italy'), +('84.254.139.128', '84.254.139.255', 1425968000, 1425968127, 'DE', 'Germany'), +('84.254.140.0', '84.254.140.255', 1425968128, 1425968383, 'DZ', 'Algeria'), +('84.254.141.0', '84.254.141.254', 1425968384, 1425968638, 'GB', 'United Kingdom'), +('84.254.141.255', '84.254.142.63', 1425968639, 1425968703, 'A2', 'Satellite Provider'), +('84.254.142.64', '84.254.142.191', 1425968704, 1425968831, 'IT', 'Italy'), +('84.254.142.192', '84.254.142.255', 1425968832, 1425968895, 'A2', 'Satellite Provider'), +('84.254.143.0', '84.254.143.127', 1425968896, 1425969023, 'IT', 'Italy'), +('84.254.143.128', '84.254.144.47', 1425969024, 1425969199, 'A2', 'Satellite Provider'), +('84.254.144.48', '84.254.144.63', 1425969200, 1425969215, 'IT', 'Italy'), +('84.254.144.64', '84.254.144.127', 1425969216, 1425969279, 'A2', 'Satellite Provider'), +('84.254.144.128', '84.254.144.191', 1425969280, 1425969343, 'IT', 'Italy'), +('84.254.144.192', '84.254.144.255', 1425969344, 1425969407, 'A2', 'Satellite Provider'), +('84.254.145.0', '84.254.145.63', 1425969408, 1425969471, 'IT', 'Italy'), +('84.254.145.64', '84.254.145.255', 1425969472, 1425969663, 'A2', 'Satellite Provider'), +('84.254.146.0', '84.254.146.63', 1425969664, 1425969727, 'FR', 'France'), +('84.254.146.64', '84.254.146.127', 1425969728, 1425969791, 'IT', 'Italy'), +('84.254.146.128', '84.254.146.191', 1425969792, 1425969855, 'FR', 'France'), +('84.254.146.192', '84.254.147.63', 1425969856, 1425969983, 'A2', 'Satellite Provider'), +('84.254.147.64', '84.254.147.127', 1425969984, 1425970047, 'IT', 'Italy'), +('84.254.147.128', '84.254.147.191', 1425970048, 1425970111, 'DE', 'Germany'), +('84.254.147.192', '84.254.148.0', 1425970112, 1425970176, 'A2', 'Satellite Provider'), +('84.254.148.1', '84.254.148.4', 1425970177, 1425970180, 'DE', 'Germany'), +('84.254.148.5', '84.254.148.8', 1425970181, 1425970184, 'A2', 'Satellite Provider'), +('84.254.148.9', '84.254.148.12', 1425970185, 1425970188, 'GB', 'United Kingdom'), +('84.254.148.13', '84.254.148.16', 1425970189, 1425970192, 'DE', 'Germany'), +('84.254.148.17', '84.254.148.63', 1425970193, 1425970239, 'GB', 'United Kingdom'), +('84.254.148.64', '84.254.148.127', 1425970240, 1425970303, 'A2', 'Satellite Provider'), +('84.254.148.128', '84.254.148.255', 1425970304, 1425970431, 'IT', 'Italy'), +('84.254.149.0', '84.254.149.63', 1425970432, 1425970495, 'A2', 'Satellite Provider'), +('84.254.149.64', '84.254.149.255', 1425970496, 1425970687, 'IT', 'Italy'), +('84.254.150.0', '84.254.150.0', 1425970688, 1425970688, 'A2', 'Satellite Provider'), +('84.254.150.1', '84.254.150.63', 1425970689, 1425970751, 'DE', 'Germany'), +('84.254.150.64', '84.254.150.255', 1425970752, 1425970943, 'A2', 'Satellite Provider'), +('84.254.151.0', '84.254.151.63', 1425970944, 1425971007, 'IT', 'Italy'), +('84.254.151.64', '84.254.151.127', 1425971008, 1425971071, 'NL', 'Netherlands'), +('84.254.151.128', '84.254.151.255', 1425971072, 1425971199, 'A2', 'Satellite Provider'), +('84.254.152.0', '84.254.152.255', 1425971200, 1425971455, 'NL', 'Netherlands'), +('84.254.153.0', '84.254.153.63', 1425971456, 1425971519, 'A2', 'Satellite Provider'), +('84.254.153.64', '84.254.153.127', 1425971520, 1425971583, 'IT', 'Italy'), +('84.254.153.128', '84.254.153.191', 1425971584, 1425971647, 'A2', 'Satellite Provider'), +('84.254.153.192', '84.254.153.255', 1425971648, 1425971711, 'IT', 'Italy'), +('84.254.154.0', '84.254.154.15', 1425971712, 1425971727, 'AE', 'United Arab Emirates'), +('84.254.154.16', '84.254.154.31', 1425971728, 1425971743, 'US', 'United States'), +('84.254.154.32', '84.254.154.63', 1425971744, 1425971775, 'A2', 'Satellite Provider'), +('84.254.154.64', '84.254.154.127', 1425971776, 1425971839, 'DE', 'Germany'), +('84.254.154.128', '84.254.154.191', 1425971840, 1425971903, 'SE', 'Sweden'), +('84.254.154.192', '84.254.154.255', 1425971904, 1425971967, 'A2', 'Satellite Provider'), +('84.254.155.0', '84.254.155.255', 1425971968, 1425972223, 'IT', 'Italy'), +('84.254.156.0', '84.254.157.191', 1425972224, 1425972671, 'A2', 'Satellite Provider'), +('84.254.157.192', '84.254.157.255', 1425972672, 1425972735, 'IT', 'Italy'), +('84.254.158.0', '84.254.159.191', 1425972736, 1425973183, 'A2', 'Satellite Provider'), +('84.254.159.192', '84.254.159.255', 1425973184, 1425973247, 'IT', 'Italy'), +('84.254.160.0', '84.254.160.0', 1425973248, 1425973248, 'A2', 'Satellite Provider'), +('84.254.160.1', '84.254.160.12', 1425973249, 1425973260, 'PL', 'Poland'), +('84.254.160.13', '84.254.160.16', 1425973261, 1425973264, 'A2', 'Satellite Provider'), +('84.254.160.17', '84.254.160.20', 1425973265, 1425973268, 'DE', 'Germany'), +('84.254.160.21', '84.254.160.24', 1425973269, 1425973272, 'FR', 'France'), +('84.254.160.25', '84.254.160.28', 1425973273, 1425973276, 'PL', 'Poland'), +('84.254.160.29', '84.254.160.32', 1425973277, 1425973280, 'A2', 'Satellite Provider'), +('84.254.160.33', '84.254.160.52', 1425973281, 1425973300, 'PL', 'Poland'), +('84.254.160.53', '84.254.160.60', 1425973301, 1425973308, 'DE', 'Germany'), +('84.254.160.61', '84.254.160.84', 1425973309, 1425973332, 'PL', 'Poland'), +('84.254.160.85', '84.254.160.88', 1425973333, 1425973336, 'DE', 'Germany'), +('84.254.160.89', '84.254.160.191', 1425973337, 1425973439, 'A2', 'Satellite Provider'), +('84.254.160.192', '84.254.160.255', 1425973440, 1425973503, 'PL', 'Poland'), +('84.254.161.0', '84.254.161.255', 1425973504, 1425973759, 'IT', 'Italy'), +('84.254.162.0', '84.254.162.63', 1425973760, 1425973823, 'PL', 'Poland'), +('84.254.162.64', '84.254.162.127', 1425973824, 1425973887, 'IT', 'Italy'), +('84.254.162.128', '84.254.163.127', 1425973888, 1425974143, 'A2', 'Satellite Provider'), +('84.254.163.128', '84.254.163.191', 1425974144, 1425974207, 'IT', 'Italy'), +('84.254.163.192', '84.254.164.191', 1425974208, 1425974463, 'A2', 'Satellite Provider'), +('84.254.164.192', '84.254.164.255', 1425974464, 1425974527, 'IT', 'Italy'), +('84.254.165.0', '84.254.165.255', 1425974528, 1425974783, 'A2', 'Satellite Provider'), +('84.254.166.0', '84.254.166.63', 1425974784, 1425974847, 'IT', 'Italy'), +('84.254.166.64', '84.254.166.127', 1425974848, 1425974911, 'SE', 'Sweden'), +('84.254.166.128', '84.254.166.191', 1425974912, 1425974975, 'A2', 'Satellite Provider'), +('84.254.166.192', '84.254.166.255', 1425974976, 1425975039, 'IT', 'Italy'), +('84.254.167.0', '84.254.167.63', 1425975040, 1425975103, 'A2', 'Satellite Provider'), +('84.254.167.64', '84.254.167.127', 1425975104, 1425975167, 'IT', 'Italy'), +('84.254.167.128', '84.254.168.0', 1425975168, 1425975296, 'A2', 'Satellite Provider'), +('84.254.168.1', '84.254.168.64', 1425975297, 1425975360, 'PE', 'Peru'), +('84.254.168.65', '84.254.168.191', 1425975361, 1425975487, 'A2', 'Satellite Provider'), +('84.254.168.192', '84.254.168.255', 1425975488, 1425975551, 'IT', 'Italy'), +('84.254.169.0', '84.254.169.127', 1425975552, 1425975679, 'FR', 'France'), +('84.254.169.128', '84.254.169.191', 1425975680, 1425975743, 'IT', 'Italy'), +('84.254.169.192', '84.254.169.255', 1425975744, 1425975807, 'A2', 'Satellite Provider'), +('84.254.170.0', '84.254.170.255', 1425975808, 1425976063, 'IT', 'Italy'), +('84.254.171.0', '84.254.171.0', 1425976064, 1425976064, 'A2', 'Satellite Provider'), +('84.254.171.1', '84.254.171.62', 1425976065, 1425976126, 'FR', 'France'), +('84.254.171.63', '84.254.171.63', 1425976127, 1425976127, 'A2', 'Satellite Provider'), +('84.254.171.64', '84.254.171.127', 1425976128, 1425976191, 'IT', 'Italy'), +('84.254.171.128', '84.254.171.191', 1425976192, 1425976255, 'FR', 'France'), +('84.254.171.192', '84.254.171.255', 1425976256, 1425976319, 'IT', 'Italy'), +('84.254.172.0', '84.254.172.0', 1425976320, 1425976320, 'A2', 'Satellite Provider'), +('84.254.172.1', '84.254.172.8', 1425976321, 1425976328, 'FR', 'France'), +('84.254.172.9', '84.254.172.16', 1425976329, 1425976336, 'GB', 'United Kingdom'), +('84.254.172.17', '84.254.172.24', 1425976337, 1425976344, 'A2', 'Satellite Provider'), +('84.254.172.25', '84.254.172.32', 1425976345, 1425976352, 'FR', 'France'), +('84.254.172.33', '84.254.172.48', 1425976353, 1425976368, 'GB', 'United Kingdom'), +('84.254.172.49', '84.254.172.52', 1425976369, 1425976372, 'FR', 'France'), +('84.254.172.53', '84.254.172.60', 1425976373, 1425976380, 'GB', 'United Kingdom'), +('84.254.172.61', '84.254.172.68', 1425976381, 1425976388, 'FR', 'France'), +('84.254.172.69', '84.254.172.72', 1425976389, 1425976392, 'IT', 'Italy'), +('84.254.172.73', '84.254.172.112', 1425976393, 1425976432, 'FR', 'France'), +('84.254.172.113', '84.254.172.120', 1425976433, 1425976440, 'GB', 'United Kingdom'), +('84.254.172.121', '84.254.172.128', 1425976441, 1425976448, 'FR', 'France'), +('84.254.172.129', '84.254.172.144', 1425976449, 1425976464, 'GB', 'United Kingdom'), +('84.254.172.145', '84.254.172.255', 1425976465, 1425976575, 'A2', 'Satellite Provider'), +('84.254.173.0', '84.254.173.254', 1425976576, 1425976830, 'GB', 'United Kingdom'), +('84.254.173.255', '84.254.173.255', 1425976831, 1425976831, 'A2', 'Satellite Provider'), +('84.254.174.0', '84.254.175.254', 1425976832, 1425977342, 'GB', 'United Kingdom'), +('84.254.175.255', '84.254.175.255', 1425977343, 1425977343, 'A2', 'Satellite Provider'), +('84.254.176.0', '84.254.177.255', 1425977344, 1425977855, 'IT', 'Italy'), +('84.254.178.0', '84.254.178.255', 1425977856, 1425978111, 'DE', 'Germany'), +('84.254.179.0', '84.254.179.255', 1425978112, 1425978367, 'BG', 'Bulgaria'), +('84.254.180.0', '84.254.180.0', 1425978368, 1425978368, 'A2', 'Satellite Provider'), +('84.254.180.1', '84.254.180.20', 1425978369, 1425978388, 'IT', 'Italy'), +('84.254.180.21', '84.254.180.21', 1425978389, 1425978389, 'A2', 'Satellite Provider'), +('84.254.180.22', '84.254.180.127', 1425978390, 1425978495, 'IT', 'Italy'), +('84.254.180.128', '84.254.180.191', 1425978496, 1425978559, 'A2', 'Satellite Provider'), +('84.254.180.192', '84.254.180.255', 1425978560, 1425978623, 'IT', 'Italy'), +('84.254.181.0', '84.254.181.0', 1425978624, 1425978624, 'A2', 'Satellite Provider'), +('84.254.181.1', '84.254.181.255', 1425978625, 1425978879, 'IT', 'Italy'), +('84.254.182.0', '84.254.182.191', 1425978880, 1425979071, 'A2', 'Satellite Provider'), +('84.254.182.192', '84.254.182.255', 1425979072, 1425979135, 'IT', 'Italy'), +('84.254.183.0', '84.254.183.191', 1425979136, 1425979327, 'A2', 'Satellite Provider'), +('84.254.183.192', '84.254.183.255', 1425979328, 1425979391, 'IT', 'Italy'), +('84.254.184.0', '84.254.184.0', 1425979392, 1425979392, 'A2', 'Satellite Provider'), +('84.254.184.1', '84.254.184.8', 1425979393, 1425979400, 'DE', 'Germany'), +('84.254.184.9', '84.254.184.20', 1425979401, 1425979412, 'A2', 'Satellite Provider'), +('84.254.184.21', '84.254.184.24', 1425979413, 1425979416, 'DE', 'Germany'), +('84.254.184.25', '84.254.184.44', 1425979417, 1425979436, 'A2', 'Satellite Provider'), +('84.254.184.45', '84.254.184.64', 1425979437, 1425979456, 'DE', 'Germany'), +('84.254.184.65', '84.254.184.68', 1425979457, 1425979460, 'A2', 'Satellite Provider'), +('84.254.184.69', '84.254.184.72', 1425979461, 1425979464, 'DE', 'Germany'), +('84.254.184.73', '84.254.184.80', 1425979465, 1425979472, 'A2', 'Satellite Provider'), +('84.254.184.81', '84.254.184.84', 1425979473, 1425979476, 'DE', 'Germany'), +('84.254.184.85', '84.254.184.88', 1425979477, 1425979480, 'A2', 'Satellite Provider'), +('84.254.184.89', '84.254.184.96', 1425979481, 1425979488, 'DE', 'Germany'), +('84.254.184.97', '84.254.184.111', 1425979489, 1425979503, 'A2', 'Satellite Provider'), +('84.254.184.112', '84.254.184.127', 1425979504, 1425979519, 'IT', 'Italy'), +('84.254.184.128', '84.254.184.191', 1425979520, 1425979583, 'DE', 'Germany'), +('84.254.184.192', '84.254.185.4', 1425979584, 1425979652, 'A2', 'Satellite Provider'), +('84.254.185.5', '84.254.185.8', 1425979653, 1425979656, 'AE', 'United Arab Emirates'), +('84.254.185.9', '84.254.185.12', 1425979657, 1425979660, 'A2', 'Satellite Provider'), +('84.254.185.13', '84.254.185.44', 1425979661, 1425979692, 'AE', 'United Arab Emirates'), +('84.254.185.45', '84.254.185.56', 1425979693, 1425979704, 'A2', 'Satellite Provider'), +('84.254.185.57', '84.254.185.60', 1425979705, 1425979708, 'AE', 'United Arab Emirates'), +('84.254.185.61', '84.254.185.63', 1425979709, 1425979711, 'A2', 'Satellite Provider'), +('84.254.185.64', '84.254.185.127', 1425979712, 1425979775, 'DE', 'Germany'), +('84.254.185.128', '84.254.185.191', 1425979776, 1425979839, 'US', 'United States'), +('84.254.185.192', '84.254.185.255', 1425979840, 1425979903, 'IT', 'Italy'), +('84.254.186.0', '84.254.186.0', 1425979904, 1425979904, 'A2', 'Satellite Provider'), +('84.254.186.1', '84.254.186.64', 1425979905, 1425979968, 'AE', 'United Arab Emirates'), +('84.254.186.65', '84.254.186.72', 1425979969, 1425979976, 'A2', 'Satellite Provider'), +('84.254.186.73', '84.254.186.80', 1425979977, 1425979984, 'FR', 'France'), +('84.254.186.81', '84.254.186.94', 1425979985, 1425979998, 'IT', 'Italy'), +('84.254.186.95', '84.254.186.95', 1425979999, 1425979999, 'A2', 'Satellite Provider'), +('84.254.186.96', '84.254.186.127', 1425980000, 1425980031, 'US', 'United States'), +('84.254.186.128', '84.254.186.191', 1425980032, 1425980095, 'DE', 'Germany'), +('84.254.186.192', '84.254.186.255', 1425980096, 1425980159, 'AE', 'United Arab Emirates'), +('84.254.187.0', '84.254.187.127', 1425980160, 1425980287, 'IT', 'Italy'), +('84.254.187.128', '84.254.187.191', 1425980288, 1425980351, 'A2', 'Satellite Provider'), +('84.254.187.192', '84.254.187.255', 1425980352, 1425980415, 'IT', 'Italy'), +('84.254.188.0', '84.254.191.191', 1425980416, 1425981375, 'A2', 'Satellite Provider'), +('84.254.191.192', '84.254.191.255', 1425981376, 1425981439, 'IT', 'Italy'), +('84.254.192.0', '84.254.255.255', 1425981440, 1425997823, 'RU', 'Russian Federation'), +('84.255.0.0', '84.255.63.255', 1425997824, 1426014207, 'MT', 'Malta'), +('84.255.64.0', '84.255.127.255', 1426014208, 1426030591, 'DK', 'Denmark'), +('84.255.128.0', '84.255.191.255', 1426030592, 1426046975, 'BH', 'Bahrain'), +('84.255.192.0', '84.255.255.255', 1426046976, 1426063359, 'SI', 'Slovenia'), +('85.0.0.0', '85.7.255.255', 1426063360, 1426587647, 'CH', 'Switzerland'), +('85.8.0.0', '85.8.63.255', 1426587648, 1426604031, 'SE', 'Sweden'), +('85.8.64.0', '85.8.127.255', 1426604032, 1426620415, 'DE', 'Germany'), +('85.8.128.0', '85.8.255.255', 1426620416, 1426653183, 'GB', 'United Kingdom'), +('85.9.0.0', '85.9.63.255', 1426653184, 1426669567, 'RO', 'Romania'), +('85.9.64.0', '85.9.127.255', 1426669568, 1426685951, 'IR', 'Iran, Islamic Republic of'), +('85.9.128.0', '85.9.191.255', 1426685952, 1426702335, 'TJ', 'Tajikistan'), +('85.9.192.0', '85.9.194.255', 1426702336, 1426703103, 'LV', 'Latvia'), +('85.9.195.0', '85.9.195.63', 1426703104, 1426703167, 'RU', 'Russian Federation'), +('85.9.195.64', '85.9.255.255', 1426703168, 1426718719, 'LV', 'Latvia'), +('85.10.0.0', '85.10.47.255', 1426718720, 1426731007, 'SI', 'Slovenia'), +('85.10.48.0', '85.10.63.255', 1426731008, 1426735103, 'HR', 'Croatia'), +('85.10.64.0', '85.10.127.255', 1426735104, 1426751487, 'BE', 'Belgium'), +('85.10.128.0', '85.10.191.255', 1426751488, 1426767871, 'FR', 'France'), +('85.10.192.0', '85.10.255.255', 1426767872, 1426784255, 'DE', 'Germany'), +('85.11.0.0', '85.11.63.255', 1426784256, 1426800639, 'SE', 'Sweden'), +('85.11.64.0', '85.11.127.255', 1426800640, 1426817023, 'PL', 'Poland'), +('85.11.128.0', '85.11.191.255', 1426817024, 1426833407, 'BG', 'Bulgaria'), +('85.11.192.0', '85.11.255.255', 1426833408, 1426849791, 'SE', 'Sweden'), +('85.12.0.0', '85.12.1.255', 1426849792, 1426850303, 'NL', 'Netherlands'), +('85.12.2.0', '85.12.2.31', 1426850304, 1426850335, 'SE', 'Sweden'), +('85.12.2.32', '85.12.2.63', 1426850336, 1426850367, 'GB', 'United Kingdom'), +('85.12.2.64', '85.12.2.159', 1426850368, 1426850463, 'NL', 'Netherlands'), +('85.12.2.160', '85.12.2.191', 1426850464, 1426850495, 'GB', 'United Kingdom'), +('85.12.2.192', '85.12.6.191', 1426850496, 1426851519, 'NL', 'Netherlands'), +('85.12.6.192', '85.12.6.255', 1426851520, 1426851583, 'PA', 'Panama'), +('85.12.7.0', '85.12.7.255', 1426851584, 1426851839, 'NL', 'Netherlands'), +('85.12.8.0', '85.12.8.255', 1426851840, 1426852095, 'SE', 'Sweden'), +('85.12.9.0', '85.12.10.0', 1426852096, 1426852352, 'NL', 'Netherlands'), +('85.12.10.1', '85.12.10.7', 1426852353, 1426852359, 'RU', 'Russian Federation'), +('85.12.10.8', '85.12.10.15', 1426852360, 1426852367, 'SE', 'Sweden'), +('85.12.10.16', '85.12.10.23', 1426852368, 1426852375, 'NL', 'Netherlands'), +('85.12.10.24', '85.12.10.31', 1426852376, 1426852383, 'US', 'United States'), +('85.12.10.32', '85.12.10.191', 1426852384, 1426852543, 'GB', 'United Kingdom'), +('85.12.10.192', '85.12.22.255', 1426852544, 1426855679, 'NL', 'Netherlands'), +('85.12.23.0', '85.12.23.127', 1426855680, 1426855807, 'PA', 'Panama'), +('85.12.23.128', '85.12.23.255', 1426855808, 1426855935, 'AN', 'Netherlands Antilles'), +('85.12.24.0', '85.12.30.0', 1426855936, 1426857472, 'NL', 'Netherlands'), +('85.12.30.1', '85.12.30.28', 1426857473, 1426857500, 'ES', 'Spain'), +('85.12.30.29', '85.12.36.255', 1426857501, 1426859263, 'NL', 'Netherlands'), +('85.12.37.0', '85.12.37.255', 1426859264, 1426859519, 'RU', 'Russian Federation'), +('85.12.38.0', '85.12.57.127', 1426859520, 1426864511, 'NL', 'Netherlands'), +('85.12.57.128', '85.12.57.255', 1426864512, 1426864639, 'PA', 'Panama'), +('85.12.58.0', '85.12.58.255', 1426864640, 1426864895, 'FR', 'France'), +('85.12.59.0', '85.12.59.255', 1426864896, 1426865151, 'NL', 'Netherlands'), +('85.12.60.0', '85.12.60.255', 1426865152, 1426865407, 'BE', 'Belgium'), +('85.12.61.0', '85.12.61.255', 1426865408, 1426865663, 'NL', 'Netherlands'), +('85.12.62.0', '85.12.62.255', 1426865664, 1426865919, 'BE', 'Belgium'), +('85.12.63.0', '85.12.63.255', 1426865920, 1426866175, 'ES', 'Spain'), +('85.12.64.0', '85.12.127.255', 1426866176, 1426882559, 'GB', 'United Kingdom'), +('85.12.128.0', '85.12.191.255', 1426882560, 1426898943, 'FR', 'France'), +('85.12.192.0', '85.12.255.255', 1426898944, 1426915327, 'RU', 'Russian Federation'), +('85.13.0.0', '85.13.63.255', 1426915328, 1426931711, 'AT', 'Austria'), +('85.13.64.0', '85.13.127.255', 1426931712, 1426948095, 'CZ', 'Czech Republic'), +('85.13.128.0', '85.13.191.255', 1426948096, 1426964479, 'DE', 'Germany'), +('85.13.192.0', '85.13.255.255', 1426964480, 1426980863, 'GB', 'United Kingdom'), +('85.14.0.0', '85.14.63.255', 1426980864, 1426997247, 'BG', 'Bulgaria'), +('85.14.64.0', '85.14.127.255', 1426997248, 1427013631, 'PL', 'Poland'), +('85.14.128.0', '85.14.191.255', 1427013632, 1427030015, 'FR', 'France'), +('85.14.192.0', '85.14.198.127', 1427030016, 1427031679, 'DE', 'Germany'), +('85.14.198.128', '85.14.198.191', 1427031680, 1427031743, 'AT', 'Austria'), +('85.14.198.192', '85.14.198.255', 1427031744, 1427031807, 'DE', 'Germany'), +('85.14.199.0', '85.14.199.255', 1427031808, 1427032063, 'AT', 'Austria'), +('85.14.200.0', '85.14.212.255', 1427032064, 1427035391, 'DE', 'Germany'), +('85.14.213.0', '85.14.213.127', 1427035392, 1427035519, 'GB', 'United Kingdom'), +('85.14.213.128', '85.14.255.255', 1427035520, 1427046399, 'DE', 'Germany'), +('85.15.0.0', '85.15.63.255', 1427046400, 1427062783, 'IR', 'Iran, Islamic Republic of'), +('85.15.64.0', '85.15.191.255', 1427062784, 1427095551, 'RU', 'Russian Federation'), +('85.15.192.0', '85.15.255.255', 1427095552, 1427111935, 'LV', 'Latvia'), +('85.16.0.0', '85.16.255.255', 1427111936, 1427177471, 'DE', 'Germany'), +('85.17.0.0', '85.17.193.255', 1427177472, 1427227135, 'NL', 'Netherlands'), +('85.17.194.0', '85.17.195.255', 1427227136, 1427227647, 'US', 'United States'), +('85.17.196.0', '85.17.197.63', 1427227648, 1427227967, 'NL', 'Netherlands'), +('85.17.197.64', '85.17.197.71', 1427227968, 1427227975, 'GB', 'United Kingdom'), +('85.17.197.72', '85.17.197.79', 1427227976, 1427227983, 'DE', 'Germany'), +('85.17.197.80', '85.17.197.87', 1427227984, 1427227991, 'IT', 'Italy'), +('85.17.197.88', '85.17.197.95', 1427227992, 1427227999, 'ES', 'Spain'), +('85.17.197.96', '85.17.197.103', 1427228000, 1427228007, 'PL', 'Poland'), +('85.17.197.104', '85.17.197.111', 1427228008, 1427228015, 'RU', 'Russian Federation'), +('85.17.197.112', '85.17.197.119', 1427228016, 1427228023, 'FR', 'France'), +('85.17.197.120', '85.17.255.255', 1427228024, 1427243007, 'NL', 'Netherlands'), +('85.18.0.0', '85.18.255.255', 1427243008, 1427308543, 'IT', 'Italy'), +('85.19.0.0', '85.19.255.255', 1427308544, 1427374079, 'NO', 'Norway'), +('85.20.0.0', '85.20.255.255', 1427374080, 1427439615, 'IT', 'Italy'), +('85.21.0.0', '85.21.255.255', 1427439616, 1427505151, 'RU', 'Russian Federation'), +('85.22.0.0', '85.22.255.255', 1427505152, 1427570687, 'DE', 'Germany'), +('85.23.0.0', '85.23.255.255', 1427570688, 1427636223, 'FI', 'Finland'), +('85.24.0.0', '85.24.127.255', 1427636224, 1427668991, 'DK', 'Denmark'), +('85.24.128.0', '85.24.255.255', 1427668992, 1427701759, 'SE', 'Sweden'), +('85.25.0.0', '85.25.84.127', 1427701760, 1427723391, 'DE', 'Germany'), +('85.25.84.128', '85.25.84.255', 1427723392, 1427723519, 'LI', 'Liechtenstein'), +('85.25.85.0', '85.25.103.255', 1427723520, 1427728383, 'DE', 'Germany'), +('85.25.104.0', '85.25.104.31', 1427728384, 1427728415, 'US', 'United States'), +('85.25.104.32', '85.25.164.255', 1427728416, 1427743999, 'DE', 'Germany'), +('85.25.165.0', '85.25.165.31', 1427744000, 1427744031, 'FI', 'Finland'), +('85.25.165.32', '85.25.165.255', 1427744032, 1427744255, 'DE', 'Germany'), +('85.25.166.0', '85.25.166.31', 1427744256, 1427744287, 'US', 'United States'), +('85.25.166.32', '85.25.168.95', 1427744288, 1427744863, 'DE', 'Germany'), +('85.25.168.96', '85.25.168.127', 1427744864, 1427744895, 'TR', 'Turkey'), +('85.25.168.128', '85.25.173.255', 1427744896, 1427746303, 'DE', 'Germany'), +('85.25.174.0', '85.25.174.31', 1427746304, 1427746335, 'SE', 'Sweden'), +('85.25.174.32', '85.25.182.95', 1427746336, 1427748447, 'DE', 'Germany'), +('85.25.182.96', '85.25.182.127', 1427748448, 1427748479, 'TR', 'Turkey'), +('85.25.182.128', '85.25.191.255', 1427748480, 1427750911, 'DE', 'Germany'), +('85.25.192.0', '85.25.223.255', 1427750912, 1427759103, 'NL', 'Netherlands'), +('85.25.224.0', '85.25.227.31', 1427759104, 1427759903, 'DE', 'Germany'), +('85.25.227.32', '85.25.227.63', 1427759904, 1427759935, 'CH', 'Switzerland'), +('85.25.227.64', '85.25.228.63', 1427759936, 1427760191, 'DE', 'Germany'), +('85.25.228.64', '85.25.228.95', 1427760192, 1427760223, 'TR', 'Turkey'), +('85.25.228.96', '85.25.228.255', 1427760224, 1427760383, 'DE', 'Germany'), +('85.25.229.0', '85.25.229.31', 1427760384, 1427760415, 'TR', 'Turkey'), +('85.25.229.32', '85.25.230.159', 1427760416, 1427760799, 'DE', 'Germany'), +('85.25.230.160', '85.25.230.191', 1427760800, 1427760831, 'NL', 'Netherlands'), +('85.25.230.192', '85.25.231.31', 1427760832, 1427760927, 'DE', 'Germany'), +('85.25.231.32', '85.25.231.63', 1427760928, 1427760959, 'HU', 'Hungary'), +('85.25.231.64', '85.25.231.95', 1427760960, 1427760991, 'CZ', 'Czech Republic'), +('85.25.231.96', '85.25.231.127', 1427760992, 1427761023, 'DE', 'Germany'), +('85.25.231.128', '85.25.231.159', 1427761024, 1427761055, 'CR', 'Costa Rica'), +('85.25.231.160', '85.25.255.255', 1427761056, 1427767295, 'DE', 'Germany'), +('85.26.0.0', '85.26.127.255', 1427767296, 1427800063, 'BE', 'Belgium'), +('85.26.128.0', '85.26.219.255', 1427800064, 1427823615, 'RU', 'Russian Federation'), +('85.26.220.0', '85.26.223.255', 1427823616, 1427824639, 'KG', 'Kyrgyzstan'), +('85.26.224.0', '85.26.251.255', 1427824640, 1427831807, 'RU', 'Russian Federation'), +('85.26.252.0', '85.26.255.255', 1427831808, 1427832831, 'MD', 'Moldova, Republic of'), +('85.27.0.0', '85.27.127.255', 1427832832, 1427865599, 'BE', 'Belgium'), +('85.27.128.0', '85.27.255.255', 1427865600, 1427898367, 'DK', 'Denmark'), +('85.28.0.0', '85.28.63.255', 1427898368, 1427914751, 'RU', 'Russian Federation'), +('85.28.64.0', '85.28.127.255', 1427914752, 1427931135, 'BE', 'Belgium'), +('85.28.128.0', '85.28.191.255', 1427931136, 1427947519, 'PL', 'Poland'), +('85.28.192.0', '85.28.255.255', 1427947520, 1427963903, 'RU', 'Russian Federation'), +('85.29.0.0', '85.29.63.255', 1427963904, 1427980287, 'TR', 'Turkey'), +('85.29.64.0', '85.29.127.255', 1427980288, 1427996671, 'FI', 'Finland'), +('85.29.128.0', '85.29.191.255', 1427996672, 1428013055, 'KZ', 'Kazakstan'), +('85.29.192.0', '85.29.255.255', 1428013056, 1428029439, 'EE', 'Estonia'), +('85.30.0.0', '85.30.63.255', 1428029440, 1428045823, 'GR', 'Greece'), +('85.30.64.0', '85.30.127.255', 1428045824, 1428062207, 'MK', 'Macedonia'), +('85.30.128.0', '85.30.191.255', 1428062208, 1428078591, 'SE', 'Sweden'), +('85.30.192.0', '85.30.255.255', 1428078592, 1428094975, 'RU', 'Russian Federation'), +('85.31.0.0', '85.31.4.31', 1428094976, 1428096031, 'AT', 'Austria'), +('85.31.4.32', '85.31.4.39', 1428096032, 1428096039, 'CH', 'Switzerland'), +('85.31.4.40', '85.31.31.255', 1428096040, 1428103167, 'AT', 'Austria'), +('85.31.32.0', '85.31.95.255', 1428103168, 1428119551, 'GB', 'United Kingdom'), +('85.31.96.0', '85.31.103.255', 1428119552, 1428121599, 'LV', 'Latvia'), +('85.31.104.0', '85.31.111.255', 1428121600, 1428123647, 'FR', 'France'), +('85.31.112.0', '85.31.124.255', 1428123648, 1428126975, 'RU', 'Russian Federation'), +('85.31.125.0', '85.31.125.255', 1428126976, 1428127231, 'TR', 'Turkey'), +('85.31.126.0', '85.31.127.255', 1428127232, 1428127743, 'RU', 'Russian Federation'), +('85.31.128.0', '85.31.135.255', 1428127744, 1428129791, 'ES', 'Spain'), +('85.31.136.0', '85.31.143.255', 1428129792, 1428131839, 'GB', 'United Kingdom'), +('85.31.144.0', '85.31.151.255', 1428131840, 1428133887, 'FR', 'France'), +('85.31.152.0', '85.31.159.255', 1428133888, 1428135935, 'LI', 'Liechtenstein'), +('85.31.160.0', '85.31.167.255', 1428135936, 1428137983, 'IT', 'Italy'), +('85.31.168.0', '85.31.175.255', 1428137984, 1428140031, 'GB', 'United Kingdom'), +('85.31.176.0', '85.31.183.255', 1428140032, 1428142079, 'RU', 'Russian Federation'), +('85.31.184.0', '85.31.191.255', 1428142080, 1428144127, 'DE', 'Germany'), +('85.31.192.0', '85.31.204.159', 1428144128, 1428147359, 'FR', 'France'), +('85.31.204.160', '85.31.204.175', 1428147360, 1428147375, 'IT', 'Italy'), +('85.31.204.176', '85.31.204.191', 1428147376, 1428147391, 'ES', 'Spain'), +('85.31.204.192', '85.31.206.63', 1428147392, 1428147775, 'FR', 'France'), +('85.31.206.64', '85.31.206.71', 1428147776, 1428147783, 'CH', 'Switzerland'), +('85.31.206.72', '85.31.206.135', 1428147784, 1428147847, 'FR', 'France'), +('85.31.206.136', '85.31.206.143', 1428147848, 1428147855, 'DK', 'Denmark'), +('85.31.206.144', '85.31.206.159', 1428147856, 1428147871, 'US', 'United States'), +('85.31.206.160', '85.31.206.191', 1428147872, 1428147903, 'GB', 'United Kingdom'), +('85.31.206.192', '85.31.207.159', 1428147904, 1428148127, 'FR', 'France'), +('85.31.207.160', '85.31.207.167', 1428148128, 1428148135, 'IL', 'Israel'), +('85.31.207.168', '85.31.207.175', 1428148136, 1428148143, 'BE', 'Belgium'), +('85.31.207.176', '85.31.207.183', 1428148144, 1428148151, 'DE', 'Germany'), +('85.31.207.184', '85.31.207.191', 1428148152, 1428148159, 'NL', 'Netherlands'), +('85.31.207.192', '85.31.207.199', 1428148160, 1428148167, 'SE', 'Sweden'), +('85.31.207.200', '85.31.207.207', 1428148168, 1428148175, 'FR', 'France'), +('85.31.207.208', '85.31.207.223', 1428148176, 1428148191, 'CH', 'Switzerland'), +('85.31.207.224', '85.31.223.255', 1428148192, 1428152319, 'FR', 'France'), +('85.31.224.0', '85.31.255.255', 1428152320, 1428160511, 'PL', 'Poland'), +('85.32.0.0', '85.47.255.255', 1428160512, 1429209087, 'IT', 'Italy'), +('85.48.0.0', '85.63.255.255', 1429209088, 1430257663, 'ES', 'Spain'), +('85.64.0.0', '85.65.255.255', 1430257664, 1430388735, 'IL', 'Israel'), +('85.66.0.0', '85.67.255.255', 1430388736, 1430519807, 'HU', 'Hungary'), +('85.68.0.0', '85.69.255.255', 1430519808, 1430650879, 'FR', 'France'), +('85.70.0.0', '85.71.255.255', 1430650880, 1430781951, 'CZ', 'Czech Republic'), +('85.72.0.0', '85.75.255.255', 1430781952, 1431044095, 'GR', 'Greece'), +('85.76.0.0', '85.79.255.255', 1431044096, 1431306239, 'FI', 'Finland'), +('85.80.0.0', '85.83.255.255', 1431306240, 1431568383, 'DK', 'Denmark'), +('85.84.0.0', '85.87.255.255', 1431568384, 1431830527, 'ES', 'Spain'), +('85.88.0.0', '85.88.9.0', 1431830528, 1431832832, 'DE', 'Germany'), +('85.88.9.1', '85.88.9.14', 1431832833, 1431832846, 'AT', 'Austria'), +('85.88.9.15', '85.88.27.240', 1431832847, 1431837680, 'DE', 'Germany'), +('85.88.27.241', '85.88.27.254', 1431837681, 1431837694, 'AT', 'Austria'), +('85.88.27.255', '85.88.31.255', 1431837695, 1431838719, 'DE', 'Germany'), +('85.88.32.0', '85.88.33.31', 1431838720, 1431839007, 'BE', 'Belgium'), +('85.88.33.32', '85.88.33.63', 1431839008, 1431839039, 'DE', 'Germany'), +('85.88.33.64', '85.88.63.255', 1431839040, 1431846911, 'BE', 'Belgium'), +('85.88.64.0', '85.88.95.255', 1431846912, 1431855103, 'NO', 'Norway'), +('85.88.96.0', '85.88.127.255', 1431855104, 1431863295, 'NL', 'Netherlands'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('85.88.128.0', '85.88.129.7', 1431863296, 1431863559, 'GB', 'United Kingdom'), +('85.88.129.8', '85.88.129.215', 1431863560, 1431863767, 'PT', 'Portugal'), +('85.88.129.216', '85.88.129.223', 1431863768, 1431863775, 'GB', 'United Kingdom'), +('85.88.129.224', '85.88.130.55', 1431863776, 1431863863, 'PT', 'Portugal'), +('85.88.130.56', '85.88.130.63', 1431863864, 1431863871, 'GB', 'United Kingdom'), +('85.88.130.64', '85.88.131.87', 1431863872, 1431864151, 'PT', 'Portugal'), +('85.88.131.88', '85.88.131.95', 1431864152, 1431864159, 'GB', 'United Kingdom'), +('85.88.131.96', '85.88.131.127', 1431864160, 1431864191, 'PT', 'Portugal'), +('85.88.131.128', '85.88.131.143', 1431864192, 1431864207, 'GB', 'United Kingdom'), +('85.88.131.144', '85.88.131.223', 1431864208, 1431864287, 'PT', 'Portugal'), +('85.88.131.224', '85.88.131.231', 1431864288, 1431864295, 'GB', 'United Kingdom'), +('85.88.131.232', '85.88.132.39', 1431864296, 1431864359, 'PT', 'Portugal'), +('85.88.132.40', '85.88.132.47', 1431864360, 1431864367, 'GB', 'United Kingdom'), +('85.88.132.48', '85.88.132.87', 1431864368, 1431864407, 'PT', 'Portugal'), +('85.88.132.88', '85.88.132.95', 1431864408, 1431864415, 'GB', 'United Kingdom'), +('85.88.132.96', '85.88.132.135', 1431864416, 1431864455, 'PT', 'Portugal'), +('85.88.132.136', '85.88.132.143', 1431864456, 1431864463, 'GB', 'United Kingdom'), +('85.88.132.144', '85.88.132.151', 1431864464, 1431864471, 'PT', 'Portugal'), +('85.88.132.152', '85.88.132.159', 1431864472, 1431864479, 'GB', 'United Kingdom'), +('85.88.132.160', '85.88.133.47', 1431864480, 1431864623, 'PT', 'Portugal'), +('85.88.133.48', '85.88.133.55', 1431864624, 1431864631, 'GB', 'United Kingdom'), +('85.88.133.56', '85.88.133.95', 1431864632, 1431864671, 'PT', 'Portugal'), +('85.88.133.96', '85.88.133.103', 1431864672, 1431864679, 'GB', 'United Kingdom'), +('85.88.133.104', '85.88.133.167', 1431864680, 1431864743, 'PT', 'Portugal'), +('85.88.133.168', '85.88.133.175', 1431864744, 1431864751, 'GB', 'United Kingdom'), +('85.88.133.176', '85.88.133.199', 1431864752, 1431864775, 'PT', 'Portugal'), +('85.88.133.200', '85.88.133.215', 1431864776, 1431864791, 'GB', 'United Kingdom'), +('85.88.133.216', '85.88.133.231', 1431864792, 1431864807, 'PT', 'Portugal'), +('85.88.133.232', '85.88.133.239', 1431864808, 1431864815, 'GB', 'United Kingdom'), +('85.88.133.240', '85.88.134.55', 1431864816, 1431864887, 'PT', 'Portugal'), +('85.88.134.56', '85.88.134.63', 1431864888, 1431864895, 'GB', 'United Kingdom'), +('85.88.134.64', '85.88.134.87', 1431864896, 1431864919, 'PT', 'Portugal'), +('85.88.134.88', '85.88.134.95', 1431864920, 1431864927, 'GB', 'United Kingdom'), +('85.88.134.96', '85.88.135.23', 1431864928, 1431865111, 'PT', 'Portugal'), +('85.88.135.24', '85.88.135.31', 1431865112, 1431865119, 'GB', 'United Kingdom'), +('85.88.135.32', '85.88.135.175', 1431865120, 1431865263, 'PT', 'Portugal'), +('85.88.135.176', '85.88.135.191', 1431865264, 1431865279, 'GB', 'United Kingdom'), +('85.88.135.192', '85.88.135.215', 1431865280, 1431865303, 'PT', 'Portugal'), +('85.88.135.216', '85.88.135.239', 1431865304, 1431865327, 'GB', 'United Kingdom'), +('85.88.135.240', '85.88.135.247', 1431865328, 1431865335, 'PT', 'Portugal'), +('85.88.135.248', '85.88.135.255', 1431865336, 1431865343, 'ES', 'Spain'), +('85.88.136.0', '85.88.136.255', 1431865344, 1431865599, 'PT', 'Portugal'), +('85.88.137.0', '85.88.137.31', 1431865600, 1431865631, 'GB', 'United Kingdom'), +('85.88.137.32', '85.88.137.47', 1431865632, 1431865647, 'ES', 'Spain'), +('85.88.137.48', '85.88.137.55', 1431865648, 1431865655, 'GB', 'United Kingdom'), +('85.88.137.56', '85.88.137.63', 1431865656, 1431865663, 'PT', 'Portugal'), +('85.88.137.64', '85.88.137.79', 1431865664, 1431865679, 'ES', 'Spain'), +('85.88.137.80', '85.88.137.95', 1431865680, 1431865695, 'GB', 'United Kingdom'), +('85.88.137.96', '85.88.137.111', 1431865696, 1431865711, 'PT', 'Portugal'), +('85.88.137.112', '85.88.137.119', 1431865712, 1431865719, 'ES', 'Spain'), +('85.88.137.120', '85.88.137.127', 1431865720, 1431865727, 'GB', 'United Kingdom'), +('85.88.137.128', '85.88.137.143', 1431865728, 1431865743, 'PT', 'Portugal'), +('85.88.137.144', '85.88.137.159', 1431865744, 1431865759, 'GB', 'United Kingdom'), +('85.88.137.160', '85.88.137.199', 1431865760, 1431865799, 'PT', 'Portugal'), +('85.88.137.200', '85.88.137.207', 1431865800, 1431865807, 'GB', 'United Kingdom'), +('85.88.137.208', '85.88.137.223', 1431865808, 1431865823, 'PT', 'Portugal'), +('85.88.137.224', '85.88.137.231', 1431865824, 1431865831, 'GB', 'United Kingdom'), +('85.88.137.232', '85.88.138.151', 1431865832, 1431866007, 'PT', 'Portugal'), +('85.88.138.152', '85.88.138.159', 1431866008, 1431866015, 'GB', 'United Kingdom'), +('85.88.138.160', '85.88.138.207', 1431866016, 1431866063, 'PT', 'Portugal'), +('85.88.138.208', '85.88.138.239', 1431866064, 1431866095, 'GB', 'United Kingdom'), +('85.88.138.240', '85.88.138.247', 1431866096, 1431866103, 'PT', 'Portugal'), +('85.88.138.248', '85.88.143.255', 1431866104, 1431867391, 'GB', 'United Kingdom'), +('85.88.144.0', '85.88.144.255', 1431867392, 1431867647, 'PT', 'Portugal'), +('85.88.145.0', '85.88.159.255', 1431867648, 1431871487, 'GB', 'United Kingdom'), +('85.88.160.0', '85.88.191.255', 1431871488, 1431879679, 'RU', 'Russian Federation'), +('85.88.192.0', '85.88.223.255', 1431879680, 1431887871, 'IT', 'Italy'), +('85.88.224.0', '85.88.255.255', 1431887872, 1431896063, 'GB', 'United Kingdom'), +('85.89.0.0', '85.89.31.255', 1431896064, 1431904255, 'NO', 'Norway'), +('85.89.32.0', '85.89.63.255', 1431904256, 1431912447, 'EE', 'Estonia'), +('85.89.64.0', '85.89.95.255', 1431912448, 1431920639, 'SE', 'Sweden'), +('85.89.96.0', '85.89.127.255', 1431920640, 1431928831, 'RU', 'Russian Federation'), +('85.89.128.0', '85.89.159.255', 1431928832, 1431937023, 'IT', 'Italy'), +('85.89.160.0', '85.89.191.255', 1431937024, 1431945215, 'PL', 'Poland'), +('85.89.192.0', '85.89.223.255', 1431945216, 1431953407, 'NO', 'Norway'), +('85.89.224.0', '85.89.255.255', 1431953408, 1431961599, 'DK', 'Denmark'), +('85.90.0.0', '85.90.31.255', 1431961600, 1431969791, 'CH', 'Switzerland'), +('85.90.32.0', '85.90.63.255', 1431969792, 1431977983, 'GB', 'United Kingdom'), +('85.90.64.0', '85.90.95.255', 1431977984, 1431986175, 'NL', 'Netherlands'), +('85.90.96.0', '85.90.127.255', 1431986176, 1431994367, 'RU', 'Russian Federation'), +('85.90.128.0', '85.90.159.255', 1431994368, 1432002559, 'AT', 'Austria'), +('85.90.160.0', '85.90.191.255', 1432002560, 1432010751, 'HU', 'Hungary'), +('85.90.192.0', '85.90.223.255', 1432010752, 1432018943, 'UA', 'Ukraine'), +('85.90.224.0', '85.90.241.255', 1432018944, 1432023551, 'GB', 'United Kingdom'), +('85.90.242.0', '85.90.242.15', 1432023552, 1432023567, 'BG', 'Bulgaria'), +('85.90.242.16', '85.90.255.255', 1432023568, 1432027135, 'GB', 'United Kingdom'), +('85.91.0.0', '85.91.31.255', 1432027136, 1432035327, 'IE', 'Ireland'), +('85.91.32.0', '85.91.63.255', 1432035328, 1432043519, 'GB', 'United Kingdom'), +('85.91.64.0', '85.91.95.255', 1432043520, 1432051711, 'ES', 'Spain'), +('85.91.96.0', '85.91.127.255', 1432051712, 1432059903, 'RU', 'Russian Federation'), +('85.91.128.0', '85.91.159.255', 1432059904, 1432068095, 'BG', 'Bulgaria'), +('85.91.160.0', '85.91.191.255', 1432068096, 1432076287, 'BE', 'Belgium'), +('85.91.192.0', '85.91.223.255', 1432076288, 1432084479, 'RU', 'Russian Federation'), +('85.91.224.0', '85.91.255.255', 1432084480, 1432092671, 'GB', 'United Kingdom'), +('85.92.0.0', '85.92.31.255', 1432092672, 1432100863, 'RU', 'Russian Federation'), +('85.92.32.0', '85.92.63.255', 1432100864, 1432109055, 'CZ', 'Czech Republic'), +('85.92.64.0', '85.92.95.255', 1432109056, 1432117247, 'GB', 'United Kingdom'), +('85.92.96.0', '85.92.127.255', 1432117248, 1432125439, 'CY', 'Cyprus'), +('85.92.128.0', '85.92.135.255', 1432125440, 1432127487, 'NL', 'Netherlands'), +('85.92.136.0', '85.92.136.63', 1432127488, 1432127551, 'BE', 'Belgium'), +('85.92.136.64', '85.92.151.255', 1432127552, 1432131583, 'NL', 'Netherlands'), +('85.92.152.0', '85.92.159.255', 1432131584, 1432133631, 'PH', 'Philippines'), +('85.92.160.0', '85.92.223.255', 1432133632, 1432150015, 'GB', 'United Kingdom'), +('85.92.224.0', '85.92.255.255', 1432150016, 1432158207, 'BA', 'Bosnia and Herzegovina'), +('85.93.0.0', '85.93.0.255', 1432158208, 1432158463, 'CH', 'Switzerland'), +('85.93.1.0', '85.93.5.255', 1432158464, 1432159743, 'DE', 'Germany'), +('85.93.6.0', '85.93.6.127', 1432159744, 1432159871, 'PL', 'Poland'), +('85.93.6.128', '85.93.7.255', 1432159872, 1432160255, 'DE', 'Germany'), +('85.93.8.0', '85.93.8.255', 1432160256, 1432160511, 'CH', 'Switzerland'), +('85.93.9.0', '85.93.27.127', 1432160512, 1432165247, 'DE', 'Germany'), +('85.93.27.128', '85.93.27.255', 1432165248, 1432165375, 'PL', 'Poland'), +('85.93.28.0', '85.93.30.255', 1432165376, 1432166143, 'DE', 'Germany'), +('85.93.31.0', '85.93.31.255', 1432166144, 1432166399, 'CH', 'Switzerland'), +('85.93.32.0', '85.93.63.255', 1432166400, 1432174591, 'RU', 'Russian Federation'), +('85.93.64.0', '85.93.95.255', 1432174592, 1432182783, 'DE', 'Germany'), +('85.93.96.0', '85.93.127.255', 1432182784, 1432190975, 'CZ', 'Czech Republic'), +('85.93.128.0', '85.93.159.255', 1432190976, 1432199167, 'RU', 'Russian Federation'), +('85.93.160.0', '85.93.191.255', 1432199168, 1432207359, 'CZ', 'Czech Republic'), +('85.93.192.0', '85.93.223.255', 1432207360, 1432215551, 'LU', 'Luxembourg'), +('85.93.224.0', '85.93.255.255', 1432215552, 1432223743, 'NO', 'Norway'), +('85.94.0.0', '85.94.63.255', 1432223744, 1432240127, 'RU', 'Russian Federation'), +('85.94.64.0', '85.94.95.255', 1432240128, 1432248319, 'HR', 'Croatia'), +('85.94.96.0', '85.94.127.255', 1432248320, 1432256511, 'ME', 'Montenegro'), +('85.94.128.0', '85.94.159.255', 1432256512, 1432264703, 'BA', 'Bosnia and Herzegovina'), +('85.94.160.0', '85.94.191.255', 1432264704, 1432272895, 'AD', 'Andorra'), +('85.94.192.0', '85.94.223.255', 1432272896, 1432281087, 'IT', 'Italy'), +('85.94.224.0', '85.94.255.255', 1432281088, 1432289279, 'LU', 'Luxembourg'), +('85.95.0.0', '85.95.31.255', 1432289280, 1432297471, 'GB', 'United Kingdom'), +('85.95.32.0', '85.95.63.255', 1432297472, 1432305663, 'NO', 'Norway'), +('85.95.64.0', '85.95.95.255', 1432305664, 1432313855, 'BG', 'Bulgaria'), +('85.95.96.0', '85.95.127.255', 1432313856, 1432322047, 'GB', 'United Kingdom'), +('85.95.128.0', '85.95.191.255', 1432322048, 1432338431, 'RU', 'Russian Federation'), +('85.95.192.0', '85.95.223.255', 1432338432, 1432346623, 'FR', 'France'), +('85.95.224.0', '85.95.224.255', 1432346624, 1432346879, 'DE', 'Germany'), +('85.95.225.0', '85.95.225.255', 1432346880, 1432347135, 'AE', 'United Arab Emirates'), +('85.95.226.0', '85.95.247.255', 1432347136, 1432352767, 'DE', 'Germany'), +('85.95.248.0', '85.95.249.255', 1432352768, 1432353279, 'AE', 'United Arab Emirates'), +('85.95.250.0', '85.95.251.255', 1432353280, 1432353791, 'DE', 'Germany'), +('85.95.252.0', '85.111.255.255', 1432353792, 1433403391, 'TR', 'Turkey'), +('85.112.0.0', '85.112.16.223', 1433403392, 1433407711, 'ES', 'Spain'), +('85.112.16.224', '85.112.18.255', 1433407712, 1433408255, 'NL', 'Netherlands'), +('85.112.19.0', '85.112.21.255', 1433408256, 1433409023, 'ES', 'Spain'), +('85.112.22.0', '85.112.22.255', 1433409024, 1433409279, 'NL', 'Netherlands'), +('85.112.23.0', '85.112.23.255', 1433409280, 1433409535, 'ES', 'Spain'), +('85.112.24.0', '85.112.24.255', 1433409536, 1433409791, 'NL', 'Netherlands'), +('85.112.25.0', '85.112.31.255', 1433409792, 1433411583, 'ES', 'Spain'), +('85.112.32.0', '85.112.63.255', 1433411584, 1433419775, 'RU', 'Russian Federation'), +('85.112.64.0', '85.112.95.255', 1433419776, 1433427967, 'LB', 'Lebanon'), +('85.112.96.0', '85.112.127.255', 1433427968, 1433436159, 'RU', 'Russian Federation'), +('85.112.128.0', '85.112.159.255', 1433436160, 1433444351, 'NO', 'Norway'), +('85.112.160.0', '85.112.191.255', 1433444352, 1433452543, 'SE', 'Sweden'), +('85.112.192.0', '85.112.223.255', 1433452544, 1433460735, 'PL', 'Poland'), +('85.112.224.0', '85.112.255.255', 1433460736, 1433468927, 'DE', 'Germany'), +('85.113.0.0', '85.113.31.255', 1433468928, 1433477119, 'KG', 'Kyrgyzstan'), +('85.113.32.0', '85.113.63.255', 1433477120, 1433485311, 'RU', 'Russian Federation'), +('85.113.64.0', '85.113.95.255', 1433485312, 1433493503, 'GB', 'United Kingdom'), +('85.113.96.0', '85.113.127.255', 1433493504, 1433501695, 'PS', 'Palestinian Territory, Occupied'), +('85.113.128.0', '85.113.159.255', 1433501696, 1433509887, 'RU', 'Russian Federation'), +('85.113.160.0', '85.113.191.255', 1433509888, 1433518079, 'NO', 'Norway'), +('85.113.192.0', '85.113.223.255', 1433518080, 1433526271, 'RU', 'Russian Federation'), +('85.113.224.0', '85.113.255.255', 1433526272, 1433534463, 'NL', 'Netherlands'), +('85.114.0.0', '85.114.31.255', 1433534464, 1433542655, 'RU', 'Russian Federation'), +('85.114.32.0', '85.114.63.255', 1433542656, 1433550847, 'HR', 'Croatia'), +('85.114.64.0', '85.114.95.255', 1433550848, 1433559039, 'RU', 'Russian Federation'), +('85.114.96.0', '85.114.127.255', 1433559040, 1433567231, 'PS', 'Palestinian Territory, Occupied'), +('85.114.128.0', '85.114.159.255', 1433567232, 1433575423, 'DE', 'Germany'), +('85.114.160.0', '85.114.191.255', 1433575424, 1433583615, 'RU', 'Russian Federation'), +('85.114.192.0', '85.114.223.255', 1433583616, 1433591807, 'UA', 'Ukraine'), +('85.114.224.0', '85.114.255.255', 1433591808, 1433599999, 'GE', 'Georgia'), +('85.115.0.0', '85.115.8.255', 1433600000, 1433602303, 'DE', 'Germany'), +('85.115.9.0', '85.115.9.15', 1433602304, 1433602319, 'LU', 'Luxembourg'), +('85.115.9.16', '85.115.31.255', 1433602320, 1433608191, 'DE', 'Germany'), +('85.115.32.0', '85.115.34.255', 1433608192, 1433608959, 'GB', 'United Kingdom'), +('85.115.35.0', '85.115.35.255', 1433608960, 1433609215, 'DE', 'Germany'), +('85.115.36.0', '85.115.37.255', 1433609216, 1433609727, 'GB', 'United Kingdom'), +('85.115.38.0', '85.115.39.255', 1433609728, 1433610239, 'CH', 'Switzerland'), +('85.115.40.0', '85.115.47.255', 1433610240, 1433612287, 'US', 'United States'), +('85.115.48.0', '85.115.55.255', 1433612288, 1433614335, 'GB', 'United Kingdom'), +('85.115.56.0', '85.115.59.255', 1433614336, 1433615359, 'DE', 'Germany'), +('85.115.60.0', '85.115.61.255', 1433615360, 1433615871, 'FR', 'France'), +('85.115.62.0', '85.115.63.255', 1433615872, 1433616383, 'GB', 'United Kingdom'), +('85.115.64.0', '85.115.95.255', 1433616384, 1433624575, 'AE', 'United Arab Emirates'), +('85.115.96.0', '85.115.127.255', 1433624576, 1433632767, 'LV', 'Latvia'), +('85.115.128.0', '85.115.159.255', 1433632768, 1433640959, 'GI', 'Gibraltar'), +('85.115.160.0', '85.115.191.255', 1433640960, 1433649151, 'RU', 'Russian Federation'), +('85.115.192.0', '85.115.223.255', 1433649152, 1433657343, 'KG', 'Kyrgyzstan'), +('85.115.224.0', '85.115.255.255', 1433657344, 1433665535, 'RU', 'Russian Federation'), +('85.116.0.0', '85.116.31.255', 1433665536, 1433673727, 'GB', 'United Kingdom'), +('85.116.32.0', '85.116.63.255', 1433673728, 1433681919, 'FR', 'France'), +('85.116.64.0', '85.116.95.255', 1433681920, 1433690111, 'IS', 'Iceland'), +('85.116.96.0', '85.116.127.255', 1433690112, 1433698303, 'RU', 'Russian Federation'), +('85.116.128.0', '85.116.159.255', 1433698304, 1433706495, 'IT', 'Italy'), +('85.116.160.0', '85.116.191.255', 1433706496, 1433714687, 'GB', 'United Kingdom'), +('85.116.192.0', '85.116.219.87', 1433714688, 1433721687, 'DE', 'Germany'), +('85.116.219.88', '85.116.219.95', 1433721688, 1433721695, 'US', 'United States'), +('85.116.219.96', '85.116.223.255', 1433721696, 1433722879, 'DE', 'Germany'), +('85.116.224.0', '85.116.255.255', 1433722880, 1433731071, 'IT', 'Italy'), +('85.117.0.0', '85.117.31.255', 1433731072, 1433739263, 'PL', 'Poland'), +('85.117.32.0', '85.117.63.255', 1433739264, 1433747455, 'GE', 'Georgia'), +('85.117.64.0', '85.117.95.255', 1433747456, 1433755647, 'RU', 'Russian Federation'), +('85.117.96.0', '85.117.127.255', 1433755648, 1433763839, 'EE', 'Estonia'), +('85.117.128.0', '85.117.135.255', 1433763840, 1433765887, 'CZ', 'Czech Republic'), +('85.117.136.0', '85.117.139.255', 1433765888, 1433766911, 'DE', 'Germany'), +('85.117.140.0', '85.117.151.255', 1433766912, 1433769983, 'RU', 'Russian Federation'), +('85.117.152.0', '85.117.155.255', 1433769984, 1433771007, 'SK', 'Slovakia'), +('85.117.156.0', '85.117.159.255', 1433771008, 1433772031, 'RU', 'Russian Federation'), +('85.117.160.0', '85.117.223.255', 1433772032, 1433788415, 'SE', 'Sweden'), +('85.117.224.0', '85.117.255.255', 1433788416, 1433796607, 'UZ', 'Uzbekistan'), +('85.118.0.0', '85.118.31.255', 1433796608, 1433804799, 'GB', 'United Kingdom'), +('85.118.32.0', '85.118.63.255', 1433804800, 1433812991, 'FR', 'France'), +('85.118.64.0', '85.118.91.255', 1433812992, 1433820159, 'BG', 'Bulgaria'), +('85.118.92.0', '85.118.95.255', 1433820160, 1433821183, 'HR', 'Croatia'), +('85.118.96.0', '85.118.127.255', 1433821184, 1433829375, 'GE', 'Georgia'), +('85.118.128.0', '85.118.143.255', 1433829376, 1433833471, 'RU', 'Russian Federation'), +('85.118.144.0', '85.118.151.255', 1433833472, 1433835519, 'IT', 'Italy'), +('85.118.152.0', '85.118.159.255', 1433835520, 1433837567, 'GB', 'United Kingdom'), +('85.118.160.0', '85.118.167.255', 1433837568, 1433839615, 'DE', 'Germany'), +('85.118.168.0', '85.118.175.255', 1433839616, 1433841663, 'GB', 'United Kingdom'), +('85.118.176.0', '85.118.183.255', 1433841664, 1433843711, 'RU', 'Russian Federation'), +('85.118.184.0', '85.118.184.31', 1433843712, 1433843743, 'SE', 'Sweden'), +('85.118.184.32', '85.118.184.63', 1433843744, 1433843775, 'NL', 'Netherlands'), +('85.118.184.64', '85.118.184.127', 1433843776, 1433843839, 'SE', 'Sweden'), +('85.118.184.128', '85.118.184.255', 1433843840, 1433843967, 'NL', 'Netherlands'), +('85.118.185.0', '85.118.185.15', 1433843968, 1433843983, 'RS', 'Serbia'), +('85.118.185.16', '85.118.191.255', 1433843984, 1433845759, 'NL', 'Netherlands'), +('85.118.192.0', '85.118.199.255', 1433845760, 1433847807, 'BG', 'Bulgaria'), +('85.118.200.0', '85.118.207.255', 1433847808, 1433849855, 'SE', 'Sweden'), +('85.118.208.0', '85.118.215.255', 1433849856, 1433851903, 'BE', 'Belgium'), +('85.118.216.0', '85.118.223.255', 1433851904, 1433853951, 'CH', 'Switzerland'), +('85.118.224.0', '85.118.231.255', 1433853952, 1433855999, 'RU', 'Russian Federation'), +('85.118.232.0', '85.118.239.255', 1433856000, 1433858047, 'GB', 'United Kingdom'), +('85.118.240.0', '85.118.247.255', 1433858048, 1433860095, 'ES', 'Spain'), +('85.118.248.0', '85.118.255.255', 1433860096, 1433862143, 'BA', 'Bosnia and Herzegovina'), +('85.119.0.0', '85.119.3.127', 1433862144, 1433863039, 'CH', 'Switzerland'), +('85.119.3.128', '85.119.3.255', 1433863040, 1433863167, 'US', 'United States'), +('85.119.4.0', '85.119.7.255', 1433863168, 1433864191, 'CH', 'Switzerland'), +('85.119.8.0', '85.119.15.255', 1433864192, 1433866239, 'HU', 'Hungary'), +('85.119.16.0', '85.119.17.127', 1433866240, 1433866623, 'NL', 'Netherlands'), +('85.119.17.128', '85.119.31.255', 1433866624, 1433870335, 'GB', 'United Kingdom'), +('85.119.32.0', '85.119.39.255', 1433870336, 1433872383, 'TR', 'Turkey'), +('85.119.40.0', '85.119.47.255', 1433872384, 1433874431, 'IT', 'Italy'), +('85.119.48.0', '85.119.55.255', 1433874432, 1433876479, 'NL', 'Netherlands'), +('85.119.56.0', '85.119.63.255', 1433876480, 1433878527, 'GB', 'United Kingdom'), +('85.119.64.0', '85.119.71.255', 1433878528, 1433880575, 'TR', 'Turkey'), +('85.119.72.0', '85.119.79.255', 1433880576, 1433882623, 'RU', 'Russian Federation'), +('85.119.80.0', '85.119.87.255', 1433882624, 1433884671, 'FR', 'France'), +('85.119.88.0', '85.119.95.255', 1433884672, 1433886719, 'CZ', 'Czech Republic'), +('85.119.96.0', '85.119.103.255', 1433886720, 1433888767, 'GB', 'United Kingdom'), +('85.119.104.0', '85.119.111.255', 1433888768, 1433890815, 'SA', 'Saudi Arabia'), +('85.119.112.0', '85.119.119.255', 1433890816, 1433892863, 'GB', 'United Kingdom'), +('85.119.120.0', '85.119.127.255', 1433892864, 1433894911, 'MT', 'Malta'), +('85.119.128.0', '85.119.135.255', 1433894912, 1433896959, 'SE', 'Sweden'), +('85.119.136.0', '85.119.143.255', 1433896960, 1433899007, 'NO', 'Norway'), +('85.119.144.0', '85.119.151.255', 1433899008, 1433901055, 'RU', 'Russian Federation'), +('85.119.152.0', '85.119.167.255', 1433901056, 1433905151, 'DE', 'Germany'), +('85.119.168.0', '85.119.175.255', 1433905152, 1433907199, 'FR', 'France'), +('85.119.176.0', '85.119.183.255', 1433907200, 1433909247, 'IT', 'Italy'), +('85.119.184.0', '85.119.191.255', 1433909248, 1433911295, 'BE', 'Belgium'), +('85.119.192.0', '85.119.199.255', 1433911296, 1433913343, 'ES', 'Spain'), +('85.119.200.0', '85.119.205.255', 1433913344, 1433914879, 'DE', 'Germany'), +('85.119.206.0', '85.119.206.255', 1433914880, 1433915135, 'NL', 'Netherlands'), +('85.119.207.0', '85.119.215.255', 1433915136, 1433917439, 'DE', 'Germany'), +('85.119.216.0', '85.119.223.255', 1433917440, 1433919487, 'BE', 'Belgium'), +('85.119.224.0', '85.119.231.255', 1433919488, 1433921535, 'GB', 'United Kingdom'), +('85.119.232.0', '85.119.239.255', 1433921536, 1433923583, 'CH', 'Switzerland'), +('85.119.240.0', '85.119.240.127', 1433923584, 1433923711, 'BE', 'Belgium'), +('85.119.240.128', '85.119.243.127', 1433923712, 1433924479, 'NL', 'Netherlands'), +('85.119.243.128', '85.119.247.255', 1433924480, 1433925631, 'BE', 'Belgium'), +('85.119.248.0', '85.119.255.255', 1433925632, 1433927679, 'GB', 'United Kingdom'), +('85.120.0.0', '85.123.255.255', 1433927680, 1434189823, 'RO', 'Romania'), +('85.124.0.0', '85.127.255.255', 1434189824, 1434451967, 'AT', 'Austria'), +('85.128.0.0', '85.128.255.255', 1434451968, 1434517503, 'PL', 'Poland'), +('85.129.0.0', '85.129.127.255', 1434517504, 1434550271, 'DK', 'Denmark'), +('85.129.128.0', '85.129.255.255', 1434550272, 1434583039, 'SA', 'Saudi Arabia'), +('85.130.0.0', '85.130.127.255', 1434583040, 1434615807, 'BG', 'Bulgaria'), +('85.130.128.0', '85.130.255.255', 1434615808, 1434648575, 'IL', 'Israel'), +('85.131.0.0', '85.131.127.255', 1434648576, 1434681343, 'FI', 'Finland'), +('85.131.128.0', '85.131.128.255', 1434681344, 1434681599, 'DE', 'Germany'), +('85.131.129.0', '85.131.131.255', 1434681600, 1434682367, 'NL', 'Netherlands'), +('85.131.132.0', '85.131.132.255', 1434682368, 1434682623, 'DE', 'Germany'), +('85.131.133.0', '85.131.135.255', 1434682624, 1434683391, 'NL', 'Netherlands'), +('85.131.136.0', '85.131.137.255', 1434683392, 1434683903, 'DE', 'Germany'), +('85.131.138.0', '85.131.140.255', 1434683904, 1434684671, 'NL', 'Netherlands'), +('85.131.141.0', '85.131.143.255', 1434684672, 1434685439, 'DE', 'Germany'), +('85.131.144.0', '85.131.150.255', 1434685440, 1434687231, 'NL', 'Netherlands'), +('85.131.151.0', '85.131.151.127', 1434687232, 1434687359, 'DE', 'Germany'), +('85.131.151.128', '85.131.151.255', 1434687360, 1434687487, 'NL', 'Netherlands'), +('85.131.152.0', '85.131.152.143', 1434687488, 1434687631, 'DE', 'Germany'), +('85.131.152.144', '85.131.152.191', 1434687632, 1434687679, 'NL', 'Netherlands'), +('85.131.152.192', '85.131.154.223', 1434687680, 1434688223, 'DE', 'Germany'), +('85.131.154.224', '85.131.154.255', 1434688224, 1434688255, 'NL', 'Netherlands'), +('85.131.155.0', '85.131.194.127', 1434688256, 1434698367, 'DE', 'Germany'), +('85.131.194.128', '85.131.194.159', 1434698368, 1434698399, 'NL', 'Netherlands'), +('85.131.194.160', '85.131.215.127', 1434698400, 1434703743, 'DE', 'Germany'), +('85.131.215.128', '85.131.215.255', 1434703744, 1434703871, 'NL', 'Netherlands'), +('85.131.216.0', '85.131.222.255', 1434703872, 1434705663, 'DE', 'Germany'), +('85.131.223.0', '85.131.223.15', 1434705664, 1434705679, 'NL', 'Netherlands'), +('85.131.223.16', '85.131.223.31', 1434705680, 1434705695, 'DE', 'Germany'), +('85.131.223.32', '85.131.223.255', 1434705696, 1434705919, 'NL', 'Netherlands'), +('85.131.224.0', '85.131.233.255', 1434705920, 1434708479, 'DE', 'Germany'), +('85.131.234.0', '85.131.234.255', 1434708480, 1434708735, 'NL', 'Netherlands'), +('85.131.235.0', '85.131.242.63', 1434708736, 1434710591, 'DE', 'Germany'), +('85.131.242.64', '85.131.242.255', 1434710592, 1434710783, 'NL', 'Netherlands'), +('85.131.243.0', '85.131.254.255', 1434710784, 1434713855, 'DE', 'Germany'), +('85.131.255.0', '85.131.255.255', 1434713856, 1434714111, 'NL', 'Netherlands'), +('85.132.0.0', '85.132.127.255', 1434714112, 1434746879, 'AZ', 'Azerbaijan'), +('85.132.128.0', '85.132.255.255', 1434746880, 1434779647, 'CZ', 'Czech Republic'), +('85.133.0.0', '85.133.127.255', 1434779648, 1434812415, 'GB', 'United Kingdom'), +('85.133.128.0', '85.133.255.255', 1434812416, 1434845183, 'IR', 'Iran, Islamic Republic of'), +('85.134.0.0', '85.134.127.255', 1434845184, 1434877951, 'FI', 'Finland'), +('85.134.128.0', '85.134.255.255', 1434877952, 1434910719, 'IE', 'Ireland'), +('85.135.0.0', '85.135.127.255', 1434910720, 1434943487, 'CZ', 'Czech Republic'), +('85.135.128.0', '85.135.255.255', 1434943488, 1434976255, 'SK', 'Slovakia'), +('85.136.0.0', '85.137.255.255', 1434976256, 1435107327, 'ES', 'Spain'), +('85.138.0.0', '85.139.255.255', 1435107328, 1435238399, 'PT', 'Portugal'), +('85.140.0.0', '85.143.255.255', 1435238400, 1435500543, 'RU', 'Russian Federation'), +('85.144.0.0', '85.151.255.255', 1435500544, 1436024831, 'NL', 'Netherlands'), +('85.152.0.0', '85.152.255.255', 1436024832, 1436090367, 'ES', 'Spain'), +('85.153.0.0', '85.153.255.255', 1436090368, 1436155903, 'TR', 'Turkey'), +('85.154.0.0', '85.154.255.255', 1436155904, 1436221439, 'OM', 'Oman'), +('85.155.0.0', '85.155.255.255', 1436221440, 1436286975, 'ES', 'Spain'), +('85.156.0.0', '85.157.255.255', 1436286976, 1436418047, 'FI', 'Finland'), +('85.158.0.0', '85.158.7.255', 1436418048, 1436420095, 'DE', 'Germany'), +('85.158.8.0', '85.158.15.255', 1436420096, 1436422143, 'GB', 'United Kingdom'), +('85.158.16.0', '85.158.23.255', 1436422144, 1436424191, 'FR', 'France'), +('85.158.24.0', '85.158.31.255', 1436424192, 1436426239, 'CH', 'Switzerland'), +('85.158.32.0', '85.158.39.255', 1436426240, 1436428287, 'BA', 'Bosnia and Herzegovina'), +('85.158.40.0', '85.158.47.255', 1436428288, 1436430335, 'GB', 'United Kingdom'), +('85.158.48.0', '85.158.55.255', 1436430336, 1436432383, 'RU', 'Russian Federation'), +('85.158.56.0', '85.158.71.255', 1436432384, 1436436479, 'GB', 'United Kingdom'), +('85.158.72.0', '85.158.79.255', 1436436480, 1436438527, 'LV', 'Latvia'), +('85.158.80.0', '85.158.87.255', 1436438528, 1436440575, 'IT', 'Italy'), +('85.158.88.0', '85.158.95.255', 1436440576, 1436442623, 'RU', 'Russian Federation'), +('85.158.96.0', '85.158.103.255', 1436442624, 1436444671, 'TR', 'Turkey'), +('85.158.104.0', '85.158.111.127', 1436444672, 1436446591, 'BE', 'Belgium'), +('85.158.111.128', '85.158.111.191', 1436446592, 1436446655, 'NL', 'Netherlands'), +('85.158.111.192', '85.158.111.255', 1436446656, 1436446719, 'BE', 'Belgium'), +('85.158.112.0', '85.158.127.255', 1436446720, 1436450815, 'FR', 'France'), +('85.158.128.0', '85.158.135.255', 1436450816, 1436452863, 'BH', 'Bahrain'), +('85.158.136.0', '85.158.136.255', 1436452864, 1436453119, 'NL', 'Netherlands'), +('85.158.137.0', '85.158.138.255', 1436453120, 1436453631, 'DE', 'Germany'), +('85.158.139.0', '85.158.139.255', 1436453632, 1436453887, 'NL', 'Netherlands'), +('85.158.140.0', '85.158.141.255', 1436453888, 1436454399, 'GB', 'United Kingdom'), +('85.158.142.0', '85.158.142.255', 1436454400, 1436454655, 'NL', 'Netherlands'), +('85.158.143.0', '85.158.143.255', 1436454656, 1436454911, 'DE', 'Germany'), +('85.158.144.0', '85.158.151.255', 1436454912, 1436456959, 'AZ', 'Azerbaijan'), +('85.158.152.0', '85.158.159.255', 1436456960, 1436459007, 'GB', 'United Kingdom'), +('85.158.160.0', '85.158.167.255', 1436459008, 1436461055, 'NL', 'Netherlands'), +('85.158.168.0', '85.158.175.255', 1436461056, 1436463103, 'ES', 'Spain'), +('85.158.176.0', '85.158.183.255', 1436463104, 1436465151, 'DE', 'Germany'), +('85.158.184.0', '85.158.191.255', 1436465152, 1436467199, 'RU', 'Russian Federation'), +('85.158.192.0', '85.158.199.255', 1436467200, 1436469247, 'DE', 'Germany'), +('85.158.200.0', '85.158.207.255', 1436469248, 1436471295, 'NL', 'Netherlands'), +('85.158.208.0', '85.158.208.255', 1436471296, 1436471551, 'BE', 'Belgium'), +('85.158.209.0', '85.158.209.63', 1436471552, 1436471615, 'NL', 'Netherlands'), +('85.158.209.64', '85.158.209.127', 1436471616, 1436471679, 'FR', 'France'), +('85.158.209.128', '85.158.209.191', 1436471680, 1436471743, 'BE', 'Belgium'), +('85.158.209.192', '85.158.209.255', 1436471744, 1436471807, 'BR', 'Brazil'), +('85.158.210.0', '85.158.215.255', 1436471808, 1436473343, 'BE', 'Belgium'), +('85.158.216.0', '85.158.223.255', 1436473344, 1436475391, 'RO', 'Romania'), +('85.158.224.0', '85.158.231.255', 1436475392, 1436477439, 'AT', 'Austria'), +('85.158.232.0', '85.158.247.255', 1436477440, 1436481535, 'CH', 'Switzerland'), +('85.158.248.0', '85.158.255.255', 1436481536, 1436483583, 'NL', 'Netherlands'), +('85.159.0.0', '85.159.7.255', 1436483584, 1436485631, 'UA', 'Ukraine'), +('85.159.8.0', '85.159.15.47', 1436485632, 1436487471, 'DE', 'Germany'), +('85.159.15.48', '85.159.15.63', 1436487472, 1436487487, 'AT', 'Austria'), +('85.159.15.64', '85.159.15.199', 1436487488, 1436487623, 'DE', 'Germany'), +('85.159.15.200', '85.159.15.207', 1436487624, 1436487631, 'AT', 'Austria'), +('85.159.15.208', '85.159.15.255', 1436487632, 1436487679, 'DE', 'Germany'), +('85.159.16.0', '85.159.23.255', 1436487680, 1436489727, 'IE', 'Ireland'), +('85.159.24.0', '85.159.31.255', 1436489728, 1436491775, 'KZ', 'Kazakstan'), +('85.159.32.0', '85.159.47.255', 1436491776, 1436495871, 'RU', 'Russian Federation'), +('85.159.48.0', '85.159.55.255', 1436495872, 1436497919, 'HU', 'Hungary'), +('85.159.56.0', '85.159.63.255', 1436497920, 1436499967, 'GB', 'United Kingdom'), +('85.159.64.0', '85.159.79.255', 1436499968, 1436504063, 'TR', 'Turkey'), +('85.159.80.0', '85.159.95.255', 1436504064, 1436508159, 'GB', 'United Kingdom'), +('85.159.96.0', '85.159.103.255', 1436508160, 1436510207, 'NL', 'Netherlands'), +('85.159.104.0', '85.159.111.255', 1436510208, 1436512255, 'SK', 'Slovakia'), +('85.159.112.0', '85.159.119.255', 1436512256, 1436514303, 'NL', 'Netherlands'), +('85.159.120.0', '85.159.127.255', 1436514304, 1436516351, 'GI', 'Gibraltar'), +('85.159.128.0', '85.159.143.255', 1436516352, 1436520447, 'GB', 'United Kingdom'), +('85.159.144.0', '85.159.151.255', 1436520448, 1436522495, 'IT', 'Italy'), +('85.159.152.0', '85.159.159.255', 1436522496, 1436524543, 'GB', 'United Kingdom'), +('85.159.160.0', '85.159.167.255', 1436524544, 1436526591, 'IL', 'Israel'), +('85.159.168.0', '85.159.175.255', 1436526592, 1436528639, 'GB', 'United Kingdom'), +('85.159.176.0', '85.159.183.255', 1436528640, 1436530687, 'IT', 'Italy'), +('85.159.184.0', '85.159.191.255', 1436530688, 1436532735, 'GB', 'United Kingdom'), +('85.159.192.0', '85.159.204.31', 1436532736, 1436535839, 'IT', 'Italy'), +('85.159.204.32', '85.159.204.47', 1436535840, 1436535855, 'ET', 'Ethiopia'), +('85.159.204.48', '85.159.204.135', 1436535856, 1436535943, 'IT', 'Italy'), +('85.159.204.136', '85.159.204.143', 1436535944, 1436535951, 'ET', 'Ethiopia'), +('85.159.204.144', '85.159.204.191', 1436535952, 1436535999, 'IT', 'Italy'), +('85.159.204.192', '85.159.204.199', 1436536000, 1436536007, 'MO', 'Macau'), +('85.159.204.200', '85.159.207.255', 1436536008, 1436536831, 'IT', 'Italy'), +('85.159.208.0', '85.159.215.255', 1436536832, 1436538879, 'GB', 'United Kingdom'), +('85.159.216.0', '85.159.223.255', 1436538880, 1436540927, 'JO', 'Jordan'), +('85.159.224.0', '85.159.231.255', 1436540928, 1436542975, 'RU', 'Russian Federation'), +('85.159.232.0', '85.159.239.255', 1436542976, 1436545023, 'NL', 'Netherlands'), +('85.159.240.0', '85.159.247.255', 1436545024, 1436547071, 'DE', 'Germany'), +('85.159.248.0', '85.159.255.255', 1436547072, 1436549119, 'GB', 'United Kingdom'), +('85.160.0.0', '85.163.255.255', 1436549120, 1436811263, 'CZ', 'Czech Republic'), +('85.164.0.0', '85.167.255.255', 1436811264, 1437073407, 'NO', 'Norway'), +('85.168.0.0', '85.171.255.255', 1437073408, 1437335551, 'FR', 'France'), +('85.172.0.0', '85.175.255.255', 1437335552, 1437597695, 'RU', 'Russian Federation'), +('85.176.0.0', '85.183.255.255', 1437597696, 1438121983, 'DE', 'Germany'), +('85.184.0.0', '85.184.19.255', 1438121984, 1438127103, 'NL', 'Netherlands'), +('85.184.20.0', '85.184.20.255', 1438127104, 1438127359, 'GB', 'United Kingdom'), +('85.184.21.0', '85.184.79.255', 1438127360, 1438142463, 'NL', 'Netherlands'), +('85.184.80.0', '85.184.80.255', 1438142464, 1438142719, 'GB', 'United Kingdom'), +('85.184.81.0', '85.184.255.255', 1438142720, 1438187519, 'NL', 'Netherlands'), +('85.185.0.0', '85.185.255.255', 1438187520, 1438253055, 'IR', 'Iran, Islamic Republic of'), +('85.186.0.0', '85.186.255.255', 1438253056, 1438318591, 'RO', 'Romania'), +('85.187.0.0', '85.187.255.255', 1438318592, 1438384127, 'BG', 'Bulgaria'), +('85.188.0.0', '85.188.63.255', 1438384128, 1438400511, 'FI', 'Finland'), +('85.188.64.0', '85.188.191.255', 1438400512, 1438433279, 'SE', 'Sweden'), +('85.188.192.0', '85.189.255.255', 1438433280, 1438515199, 'GB', 'United Kingdom'), +('85.190.0.0', '85.190.14.223', 1438515200, 1438519007, 'DE', 'Germany'), +('85.190.14.224', '85.190.14.255', 1438519008, 1438519039, 'SI', 'Slovenia'), +('85.190.15.0', '85.190.31.255', 1438519040, 1438523391, 'DE', 'Germany'), +('85.190.32.0', '85.190.38.19', 1438523392, 1438524947, 'NL', 'Netherlands'), +('85.190.38.20', '85.190.38.23', 1438524948, 1438524951, 'DE', 'Germany'), +('85.190.38.24', '85.190.39.151', 1438524952, 1438525335, 'NL', 'Netherlands'), +('85.190.39.152', '85.190.39.159', 1438525336, 1438525343, 'DE', 'Germany'), +('85.190.39.160', '85.190.40.95', 1438525344, 1438525535, 'NL', 'Netherlands'), +('85.190.40.96', '85.190.40.255', 1438525536, 1438525695, 'DE', 'Germany'), +('85.190.41.0', '85.190.44.255', 1438525696, 1438526719, 'NL', 'Netherlands'), +('85.190.45.0', '85.190.255.255', 1438526720, 1438580735, 'DE', 'Germany'), +('85.191.0.0', '85.191.255.255', 1438580736, 1438646271, 'NL', 'Netherlands'), +('85.192.0.0', '85.192.63.255', 1438646272, 1438662655, 'RU', 'Russian Federation'), +('85.192.64.0', '85.192.127.255', 1438662656, 1438679039, 'ES', 'Spain'), +('85.192.128.0', '85.192.191.255', 1438679040, 1438695423, 'RU', 'Russian Federation'), +('85.192.192.0', '85.192.255.255', 1438695424, 1438711807, 'FR', 'France'), +('85.193.0.0', '85.193.63.255', 1438711808, 1438728191, 'CZ', 'Czech Republic'), +('85.193.64.0', '85.193.127.255', 1438728192, 1438744575, 'RU', 'Russian Federation'), +('85.193.128.0', '85.193.191.255', 1438744576, 1438760959, 'AT', 'Austria'), +('85.193.192.0', '85.193.255.255', 1438760960, 1438777343, 'PL', 'Poland'), +('85.194.0.0', '85.194.63.255', 1438777344, 1438793727, 'SE', 'Sweden'), +('85.194.64.0', '85.194.127.255', 1438793728, 1438810111, 'SA', 'Saudi Arabia'), +('85.194.128.0', '85.194.191.255', 1438810112, 1438826495, 'SE', 'Sweden'), +('85.194.192.0', '85.194.255.255', 1438826496, 1438842879, 'FI', 'Finland'), +('85.195.0.0', '85.195.63.255', 1438842880, 1438859263, 'SE', 'Sweden'), +('85.195.64.0', '85.195.73.255', 1438859264, 1438861823, 'DE', 'Germany'), +('85.195.74.0', '85.195.74.255', 1438861824, 1438862079, 'CH', 'Switzerland'), +('85.195.75.0', '85.195.123.43', 1438862080, 1438874411, 'DE', 'Germany'), +('85.195.123.44', '85.195.123.45', 1438874412, 1438874413, 'GB', 'United Kingdom'), +('85.195.123.46', '85.195.123.255', 1438874414, 1438874623, 'DE', 'Germany'), +('85.195.124.0', '85.195.124.23', 1438874624, 1438874647, 'GB', 'United Kingdom'), +('85.195.124.24', '85.195.126.87', 1438874648, 1438875223, 'DE', 'Germany'), +('85.195.126.88', '85.195.126.119', 1438875224, 1438875255, 'GB', 'United Kingdom'), +('85.195.126.120', '85.195.126.121', 1438875256, 1438875257, 'CH', 'Switzerland'), +('85.195.126.122', '85.195.127.255', 1438875258, 1438875647, 'DE', 'Germany'), +('85.195.128.0', '85.195.129.255', 1438875648, 1438876159, 'RU', 'Russian Federation'), +('85.195.130.0', '85.195.130.255', 1438876160, 1438876415, 'LB', 'Lebanon'), +('85.195.131.0', '85.195.132.255', 1438876416, 1438876927, 'RU', 'Russian Federation'), +('85.195.133.0', '85.195.133.255', 1438876928, 1438877183, 'SE', 'Sweden'), +('85.195.134.0', '85.195.134.255', 1438877184, 1438877439, 'LT', 'Lithuania'), +('85.195.135.0', '85.195.135.255', 1438877440, 1438877695, 'RU', 'Russian Federation'), +('85.195.136.0', '85.195.136.255', 1438877696, 1438877951, 'LT', 'Lithuania'), +('85.195.137.0', '85.195.139.255', 1438877952, 1438878719, 'LB', 'Lebanon'), +('85.195.140.0', '85.195.140.255', 1438878720, 1438878975, 'LT', 'Lithuania'), +('85.195.141.0', '85.195.146.255', 1438878976, 1438880511, 'RU', 'Russian Federation'), +('85.195.147.0', '85.195.147.255', 1438880512, 1438880767, 'LT', 'Lithuania'), +('85.195.148.0', '85.195.151.255', 1438880768, 1438881791, 'LB', 'Lebanon'), +('85.195.152.0', '85.195.153.255', 1438881792, 1438882303, 'RU', 'Russian Federation'), +('85.195.154.0', '85.195.154.255', 1438882304, 1438882559, 'LT', 'Lithuania'), +('85.195.155.0', '85.195.158.255', 1438882560, 1438883583, 'RU', 'Russian Federation'), +('85.195.159.0', '85.195.159.255', 1438883584, 1438883839, 'AM', 'Armenia'), +('85.195.160.0', '85.195.161.255', 1438883840, 1438884351, 'RU', 'Russian Federation'), +('85.195.162.0', '85.195.162.255', 1438884352, 1438884607, 'LB', 'Lebanon'), +('85.195.163.0', '85.195.163.255', 1438884608, 1438884863, 'IQ', 'Iraq'), +('85.195.164.0', '85.195.167.255', 1438884864, 1438885887, 'RU', 'Russian Federation'), +('85.195.168.0', '85.195.183.255', 1438885888, 1438889983, 'LT', 'Lithuania'), +('85.195.184.0', '85.195.184.255', 1438889984, 1438890239, 'LB', 'Lebanon'), +('85.195.185.0', '85.195.185.255', 1438890240, 1438890495, 'RU', 'Russian Federation'), +('85.195.186.0', '85.195.186.255', 1438890496, 1438890751, 'IQ', 'Iraq'), +('85.195.187.0', '85.195.191.255', 1438890752, 1438892031, 'RU', 'Russian Federation'), +('85.195.192.0', '85.195.192.255', 1438892032, 1438892287, 'US', 'United States'), +('85.195.193.0', '85.195.223.255', 1438892288, 1438900223, 'AQ', 'Antarctica'), +('85.195.224.0', '85.195.239.255', 1438900224, 1438904319, 'US', 'United States'), +('85.195.240.0', '85.195.240.255', 1438904320, 1438904575, 'CH', 'Switzerland'), +('85.195.241.0', '85.195.255.255', 1438904576, 1438908415, 'US', 'United States'), +('85.196.0.0', '85.196.63.255', 1438908416, 1438924799, 'GR', 'Greece'), +('85.196.64.0', '85.196.127.255', 1438924800, 1438941183, 'NO', 'Norway'), +('85.196.128.0', '85.196.191.255', 1438941184, 1438957567, 'BG', 'Bulgaria'), +('85.196.192.0', '85.196.255.255', 1438957568, 1438973951, 'EE', 'Estonia'), +('85.197.0.0', '85.197.78.255', 1438973952, 1438994175, 'DE', 'Germany'), +('85.197.79.0', '85.197.79.255', 1438994176, 1438994431, 'SE', 'Sweden'), +('85.197.80.0', '85.197.80.187', 1438994432, 1438994619, 'DE', 'Germany'), +('85.197.80.188', '85.197.80.191', 1438994620, 1438994623, 'SE', 'Sweden'), +('85.197.80.192', '85.197.81.63', 1438994624, 1438994751, 'DE', 'Germany'), +('85.197.81.64', '85.197.81.71', 1438994752, 1438994759, 'GB', 'United Kingdom'), +('85.197.81.72', '85.197.81.75', 1438994760, 1438994763, 'SE', 'Sweden'), +('85.197.81.76', '85.197.82.95', 1438994764, 1438995039, 'DE', 'Germany'), +('85.197.82.96', '85.197.82.103', 1438995040, 1438995047, 'GB', 'United Kingdom'), +('85.197.82.104', '85.197.82.123', 1438995048, 1438995067, 'DE', 'Germany'), +('85.197.82.124', '85.197.82.127', 1438995068, 1438995071, 'SE', 'Sweden'), +('85.197.82.128', '85.197.98.58', 1438995072, 1438999098, 'DE', 'Germany'), +('85.197.98.59', '85.197.98.63', 1438999099, 1438999103, 'CH', 'Switzerland'), +('85.197.98.64', '85.197.98.127', 1438999104, 1438999167, 'DE', 'Germany'), +('85.197.98.128', '85.197.98.145', 1438999168, 1438999185, 'IT', 'Italy'), +('85.197.98.146', '85.197.98.221', 1438999186, 1438999261, 'DE', 'Germany'), +('85.197.98.222', '85.197.98.255', 1438999262, 1438999295, 'NL', 'Netherlands'), +('85.197.99.0', '85.197.99.179', 1438999296, 1438999475, 'DE', 'Germany'), +('85.197.99.180', '85.197.99.191', 1438999476, 1438999487, 'PT', 'Portugal'), +('85.197.99.192', '85.197.99.221', 1438999488, 1438999517, 'DE', 'Germany'), +('85.197.99.222', '85.197.99.222', 1438999518, 1438999518, 'CH', 'Switzerland'), +('85.197.99.223', '85.197.99.237', 1438999519, 1438999533, 'DE', 'Germany'), +('85.197.99.238', '85.197.99.238', 1438999534, 1438999534, 'CH', 'Switzerland'), +('85.197.99.239', '85.197.100.239', 1438999535, 1438999791, 'DE', 'Germany'), +('85.197.100.240', '85.197.100.255', 1438999792, 1438999807, 'GB', 'United Kingdom'), +('85.197.101.0', '85.197.103.255', 1438999808, 1439000575, 'DE', 'Germany'), +('85.197.104.0', '85.197.104.255', 1439000576, 1439000831, 'NL', 'Netherlands'), +('85.197.105.0', '85.197.105.7', 1439000832, 1439000839, 'DE', 'Germany'), +('85.197.105.8', '85.197.111.255', 1439000840, 1439002623, 'NL', 'Netherlands'), +('85.197.112.0', '85.197.127.103', 1439002624, 1439006567, 'DE', 'Germany'), +('85.197.127.104', '85.197.127.111', 1439006568, 1439006575, 'AT', 'Austria'), +('85.197.127.112', '85.197.127.207', 1439006576, 1439006671, 'DE', 'Germany'), +('85.197.127.208', '85.197.127.211', 1439006672, 1439006675, 'PL', 'Poland'), +('85.197.127.212', '85.197.127.255', 1439006676, 1439006719, 'DE', 'Germany'), +('85.197.128.0', '85.197.191.255', 1439006720, 1439023103, 'SE', 'Sweden'), +('85.197.192.0', '85.197.255.255', 1439023104, 1439039487, 'IS', 'Iceland'), +('85.198.0.0', '85.198.63.255', 1439039488, 1439055871, 'IR', 'Iran, Islamic Republic of'), +('85.198.64.0', '85.198.127.255', 1439055872, 1439072255, 'RU', 'Russian Federation'), +('85.198.128.0', '85.198.191.255', 1439072256, 1439088639, 'UA', 'Ukraine'), +('85.198.192.0', '85.198.255.255', 1439088640, 1439105023, 'PL', 'Poland'), +('85.199.0.0', '85.199.63.255', 1439105024, 1439121407, 'AT', 'Austria'), +('85.199.64.0', '85.199.191.255', 1439121408, 1439154175, 'DE', 'Germany'), +('85.199.192.0', '85.199.255.255', 1439154176, 1439170559, 'GB', 'United Kingdom'), +('85.200.0.0', '85.200.255.255', 1439170560, 1439236095, 'NO', 'Norway'), +('85.201.0.0', '85.201.255.255', 1439236096, 1439301631, 'BE', 'Belgium'), +('85.202.0.0', '85.202.15.255', 1439301632, 1439305727, 'RU', 'Russian Federation'), +('85.202.16.0', '85.202.31.255', 1439305728, 1439309823, 'DK', 'Denmark'), +('85.202.32.0', '85.202.63.255', 1439309824, 1439318015, 'PL', 'Poland'), +('85.202.64.0', '85.202.79.255', 1439318016, 1439322111, 'DK', 'Denmark'), +('85.202.80.0', '85.202.95.255', 1439322112, 1439326207, 'RO', 'Romania'), +('85.202.96.0', '85.202.111.255', 1439326208, 1439330303, 'PL', 'Poland'), +('85.202.112.0', '85.202.143.255', 1439330304, 1439338495, 'RU', 'Russian Federation'), +('85.202.144.0', '85.202.159.255', 1439338496, 1439342591, 'PL', 'Poland'), +('85.202.160.0', '85.202.175.255', 1439342592, 1439346687, 'UA', 'Ukraine'), +('85.202.176.0', '85.202.191.255', 1439346688, 1439350783, 'RU', 'Russian Federation'), +('85.202.192.0', '85.202.207.255', 1439350784, 1439354879, 'UA', 'Ukraine'), +('85.202.208.0', '85.202.223.255', 1439354880, 1439358975, 'PL', 'Poland'), +('85.202.224.0', '85.202.255.255', 1439358976, 1439367167, 'RU', 'Russian Federation'), +('85.203.0.0', '85.203.32.15', 1439367168, 1439375375, 'NL', 'Netherlands'), +('85.203.32.16', '85.203.62.255', 1439375376, 1439383295, 'DE', 'Germany'), +('85.203.63.0', '85.203.255.255', 1439383296, 1439432703, 'NL', 'Netherlands'), +('85.204.0.0', '85.204.255.255', 1439432704, 1439498239, 'RO', 'Romania'), +('85.205.0.0', '85.205.18.255', 1439498240, 1439503103, 'DE', 'Germany'), +('85.205.19.0', '85.205.22.255', 1439503104, 1439504127, 'GB', 'United Kingdom'), +('85.205.23.0', '85.205.23.255', 1439504128, 1439504383, 'DE', 'Germany'), +('85.205.24.0', '85.205.63.255', 1439504384, 1439514623, 'GB', 'United Kingdom'), +('85.205.64.0', '85.205.71.255', 1439514624, 1439516671, 'IT', 'Italy'), +('85.205.72.0', '85.205.74.255', 1439516672, 1439517439, 'DE', 'Germany'), +('85.205.75.0', '85.205.75.255', 1439517440, 1439517695, 'GB', 'United Kingdom'), +('85.205.76.0', '85.205.77.255', 1439517696, 1439518207, 'DE', 'Germany'), +('85.205.78.0', '85.205.79.255', 1439518208, 1439518719, 'IT', 'Italy'), +('85.205.80.0', '85.205.87.255', 1439518720, 1439520767, 'GB', 'United Kingdom'), +('85.205.88.0', '85.205.95.255', 1439520768, 1439522815, 'DE', 'Germany'), +('85.205.96.0', '85.205.119.255', 1439522816, 1439528959, 'GB', 'United Kingdom'), +('85.205.120.0', '85.205.120.255', 1439528960, 1439529215, 'DE', 'Germany'), +('85.205.121.0', '85.205.121.255', 1439529216, 1439529471, 'GB', 'United Kingdom'), +('85.205.122.0', '85.205.122.127', 1439529472, 1439529599, 'DE', 'Germany'), +('85.205.122.128', '85.205.123.255', 1439529600, 1439529983, 'GB', 'United Kingdom'), +('85.205.124.0', '85.205.124.255', 1439529984, 1439530239, 'EG', 'Egypt'), +('85.205.125.0', '85.205.143.255', 1439530240, 1439535103, 'DE', 'Germany'), +('85.205.144.0', '85.205.155.255', 1439535104, 1439538175, 'IT', 'Italy'), +('85.205.156.0', '85.205.157.255', 1439538176, 1439538687, 'GB', 'United Kingdom'), +('85.205.158.0', '85.205.159.255', 1439538688, 1439539199, 'IT', 'Italy'), +('85.205.160.0', '85.205.199.255', 1439539200, 1439549439, 'DE', 'Germany'), +('85.205.200.0', '85.205.207.255', 1439549440, 1439551487, 'IT', 'Italy'), +('85.205.208.0', '85.205.224.255', 1439551488, 1439555839, 'DE', 'Germany'), +('85.205.225.0', '85.205.225.255', 1439555840, 1439556095, 'GB', 'United Kingdom'), +('85.205.226.0', '85.205.227.255', 1439556096, 1439556607, 'IT', 'Italy'), +('85.205.228.0', '85.205.229.255', 1439556608, 1439557119, 'DE', 'Germany'), +('85.205.230.0', '85.205.230.255', 1439557120, 1439557375, 'GB', 'United Kingdom'), +('85.205.231.0', '85.205.232.255', 1439557376, 1439557887, 'DE', 'Germany'), +('85.205.233.0', '85.205.233.255', 1439557888, 1439558143, 'GB', 'United Kingdom'), +('85.205.234.0', '85.205.236.255', 1439558144, 1439558911, 'IT', 'Italy'), +('85.205.237.0', '85.205.238.255', 1439558912, 1439559423, 'GB', 'United Kingdom'), +('85.205.239.0', '85.205.241.255', 1439559424, 1439560191, 'DE', 'Germany'), +('85.205.242.0', '85.205.242.255', 1439560192, 1439560447, 'IT', 'Italy'), +('85.205.243.0', '85.205.243.255', 1439560448, 1439560703, 'GB', 'United Kingdom'), +('85.205.244.0', '85.205.245.255', 1439560704, 1439561215, 'IT', 'Italy'), +('85.205.246.0', '85.205.247.255', 1439561216, 1439561727, 'DE', 'Germany'), +('85.205.248.0', '85.205.249.255', 1439561728, 1439562239, 'GB', 'United Kingdom'), +('85.205.250.0', '85.205.251.255', 1439562240, 1439562751, 'IE', 'Ireland'), +('85.205.252.0', '85.205.252.127', 1439562752, 1439562879, 'DE', 'Germany'), +('85.205.252.128', '85.205.253.255', 1439562880, 1439563263, 'GB', 'United Kingdom'), +('85.205.254.0', '85.205.255.255', 1439563264, 1439563775, 'DE', 'Germany'), +('85.206.0.0', '85.206.255.255', 1439563776, 1439629311, 'LT', 'Lithuania'), +('85.207.0.0', '85.207.255.255', 1439629312, 1439694847, 'CZ', 'Czech Republic'), +('85.208.0.0', '85.209.255.255', 1439694848, 1439825919, 'SA', 'Saudi Arabia'), +('85.210.0.0', '85.211.255.255', 1439825920, 1439956991, 'GB', 'United Kingdom'), +('85.212.0.0', '85.216.127.255', 1439956992, 1440251903, 'DE', 'Germany'), +('85.216.128.0', '85.216.255.255', 1440251904, 1440284671, 'SK', 'Slovakia'), +('85.217.0.0', '85.217.127.255', 1440284672, 1440317439, 'FI', 'Finland'), +('85.217.128.0', '85.217.255.255', 1440317440, 1440350207, 'BG', 'Bulgaria'), +('85.218.0.0', '85.218.127.255', 1440350208, 1440382975, 'CH', 'Switzerland'), +('85.218.128.0', '85.218.255.255', 1440382976, 1440415743, 'DK', 'Denmark'), +('85.219.0.0', '85.219.127.255', 1440415744, 1440448511, 'ES', 'Spain'), +('85.219.128.0', '85.219.255.255', 1440448512, 1440481279, 'PL', 'Poland'), +('85.220.0.0', '85.220.127.255', 1440481280, 1440514047, 'IS', 'Iceland'), +('85.220.128.0', '85.220.255.255', 1440514048, 1440546815, 'DE', 'Germany'), +('85.221.0.0', '85.221.127.255', 1440546816, 1440579583, 'NO', 'Norway'), +('85.221.128.0', '85.222.127.255', 1440579584, 1440645119, 'PL', 'Poland'), +('85.222.128.0', '85.222.255.255', 1440645120, 1440677887, 'RS', 'Serbia'), +('85.223.0.0', '85.223.127.255', 1440677888, 1440710655, 'NL', 'Netherlands'), +('85.223.128.0', '85.223.255.255', 1440710656, 1440743423, 'UA', 'Ukraine'), +('85.224.0.0', '85.231.255.255', 1440743424, 1441267711, 'SE', 'Sweden'), +('85.232.0.0', '85.232.31.255', 1441267712, 1441275903, 'DE', 'Germany'), +('85.232.32.0', '85.232.63.255', 1441275904, 1441284095, 'GB', 'United Kingdom'), +('85.232.64.0', '85.232.95.255', 1441284096, 1441292287, 'AT', 'Austria'), +('85.232.96.0', '85.232.127.255', 1441292288, 1441300479, 'RU', 'Russian Federation'), +('85.232.128.0', '85.232.159.255', 1441300480, 1441308671, 'LT', 'Lithuania'), +('85.232.160.0', '85.232.191.255', 1441308672, 1441316863, 'CH', 'Switzerland'), +('85.232.192.0', '85.232.223.255', 1441316864, 1441325055, 'MT', 'Malta'), +('85.232.224.0', '85.232.255.255', 1441325056, 1441333247, 'PL', 'Poland'), +('85.233.0.0', '85.233.63.255', 1441333248, 1441349631, 'DE', 'Germany'), +('85.233.64.0', '85.233.95.255', 1441349632, 1441357823, 'RU', 'Russian Federation'), +('85.233.96.0', '85.233.127.255', 1441357824, 1441366015, 'AT', 'Austria'), +('85.233.128.0', '85.233.159.255', 1441366016, 1441374207, 'RU', 'Russian Federation'), +('85.233.160.0', '85.233.191.255', 1441374208, 1441382399, 'GB', 'United Kingdom'), +('85.233.192.0', '85.233.200.63', 1441382400, 1441384511, 'FR', 'France'), +('85.233.200.64', '85.233.200.95', 1441384512, 1441384543, 'US', 'United States'), +('85.233.200.96', '85.233.200.143', 1441384544, 1441384591, 'FR', 'France'), +('85.233.200.144', '85.233.200.151', 1441384592, 1441384599, 'AU', 'Australia'), +('85.233.200.152', '85.233.200.159', 1441384600, 1441384607, 'FR', 'France'), +('85.233.200.160', '85.233.200.191', 1441384608, 1441384639, 'CN', 'China'), +('85.233.200.192', '85.233.202.143', 1441384640, 1441385103, 'FR', 'France'), +('85.233.202.144', '85.233.202.159', 1441385104, 1441385119, 'ES', 'Spain'), +('85.233.202.160', '85.233.206.127', 1441385120, 1441386111, 'FR', 'France'), +('85.233.206.128', '85.233.206.255', 1441386112, 1441386239, 'IL', 'Israel'), +('85.233.207.0', '85.233.223.255', 1441386240, 1441390591, 'FR', 'France'), +('85.233.224.0', '85.233.255.255', 1441390592, 1441398783, 'DK', 'Denmark'), +('85.234.0.0', '85.234.63.255', 1441398784, 1441415167, 'RU', 'Russian Federation'), +('85.234.64.0', '85.234.95.255', 1441415168, 1441423359, 'GB', 'United Kingdom'), +('85.234.96.0', '85.234.127.255', 1441423360, 1441431551, 'RU', 'Russian Federation'), +('85.234.128.0', '85.234.159.255', 1441431552, 1441439743, 'GB', 'United Kingdom'), +('85.234.160.0', '85.234.191.255', 1441439744, 1441447935, 'LV', 'Latvia'), +('85.234.192.0', '85.234.223.255', 1441447936, 1441456127, 'BE', 'Belgium'), +('85.234.224.0', '85.234.255.255', 1441456128, 1441464319, 'NL', 'Netherlands'), +('85.235.0.0', '85.235.16.255', 1441464320, 1441468671, 'SE', 'Sweden'), +('85.235.17.0', '85.235.24.255', 1441468672, 1441470719, 'DK', 'Denmark'), +('85.235.25.0', '85.235.31.255', 1441470720, 1441472511, 'SE', 'Sweden'), +('85.235.32.0', '85.235.63.255', 1441472512, 1441480703, 'RU', 'Russian Federation'), +('85.235.64.0', '85.235.95.255', 1441480704, 1441488895, 'TR', 'Turkey'), +('85.235.96.0', '85.235.108.255', 1441488896, 1441492223, 'GB', 'United Kingdom'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('85.235.109.0', '85.235.109.255', 1441492224, 1441492479, 'BE', 'Belgium'), +('85.235.110.0', '85.235.127.255', 1441492480, 1441497087, 'GB', 'United Kingdom'), +('85.235.128.0', '85.235.159.255', 1441497088, 1441505279, 'IT', 'Italy'), +('85.235.160.0', '85.235.223.255', 1441505280, 1441521663, 'RU', 'Russian Federation'), +('85.235.224.0', '85.235.255.255', 1441521664, 1441529855, 'DK', 'Denmark'), +('85.236.0.0', '85.236.31.255', 1441529856, 1441538047, 'RU', 'Russian Federation'), +('85.236.32.0', '85.236.51.63', 1441538048, 1441542975, 'DE', 'Germany'), +('85.236.51.64', '85.236.51.127', 1441542976, 1441543039, 'AT', 'Austria'), +('85.236.51.128', '85.236.51.239', 1441543040, 1441543151, 'DE', 'Germany'), +('85.236.51.240', '85.236.51.255', 1441543152, 1441543167, 'LI', 'Liechtenstein'), +('85.236.52.0', '85.236.53.143', 1441543168, 1441543567, 'DE', 'Germany'), +('85.236.53.144', '85.236.53.159', 1441543568, 1441543583, 'CH', 'Switzerland'), +('85.236.53.160', '85.236.55.127', 1441543584, 1441544063, 'DE', 'Germany'), +('85.236.55.128', '85.236.55.191', 1441544064, 1441544127, 'TR', 'Turkey'), +('85.236.55.192', '85.236.55.207', 1441544128, 1441544143, 'DE', 'Germany'), +('85.236.55.208', '85.236.55.223', 1441544144, 1441544159, 'CH', 'Switzerland'), +('85.236.55.224', '85.236.61.63', 1441544160, 1441545535, 'DE', 'Germany'), +('85.236.61.64', '85.236.61.127', 1441545536, 1441545599, 'AT', 'Austria'), +('85.236.61.128', '85.236.63.255', 1441545600, 1441546239, 'DE', 'Germany'), +('85.236.64.0', '85.236.95.255', 1441546240, 1441554431, 'DK', 'Denmark'), +('85.236.96.0', '85.236.96.255', 1441554432, 1441554687, 'GB', 'United Kingdom'), +('85.236.97.0', '85.236.97.255', 1441554688, 1441554943, 'NL', 'Netherlands'), +('85.236.98.0', '85.236.108.255', 1441554944, 1441557759, 'GB', 'United Kingdom'), +('85.236.109.0', '85.236.109.255', 1441557760, 1441558015, 'NL', 'Netherlands'), +('85.236.110.0', '85.236.127.255', 1441558016, 1441562623, 'GB', 'United Kingdom'), +('85.236.128.0', '85.236.135.255', 1441562624, 1441564671, 'OM', 'Oman'), +('85.236.136.0', '85.236.143.255', 1441564672, 1441566719, 'PK', 'Pakistan'), +('85.236.144.0', '85.236.159.255', 1441566720, 1441570815, 'IR', 'Iran, Islamic Republic of'), +('85.236.160.0', '85.236.191.255', 1441570816, 1441579007, 'RU', 'Russian Federation'), +('85.236.192.0', '85.236.207.127', 1441579008, 1441582975, 'DE', 'Germany'), +('85.236.207.128', '85.236.207.255', 1441582976, 1441583103, 'US', 'United States'), +('85.236.208.0', '85.236.223.255', 1441583104, 1441587199, 'DE', 'Germany'), +('85.236.224.0', '85.236.253.255', 1441587200, 1441594879, 'AT', 'Austria'), +('85.236.254.0', '85.236.254.255', 1441594880, 1441595135, 'DE', 'Germany'), +('85.236.255.0', '85.237.2.255', 1441595136, 1441596159, 'AT', 'Austria'), +('85.237.3.0', '85.237.28.255', 1441596160, 1441602815, 'SK', 'Slovakia'), +('85.237.29.0', '85.237.29.255', 1441602816, 1441603071, 'AT', 'Austria'), +('85.237.30.0', '85.237.31.255', 1441603072, 1441603583, 'SK', 'Slovakia'), +('85.237.32.0', '85.237.63.255', 1441603584, 1441611775, 'RU', 'Russian Federation'), +('85.237.64.0', '85.237.95.255', 1441611776, 1441619967, 'DE', 'Germany'), +('85.237.96.0', '85.237.97.47', 1441619968, 1441620271, 'FR', 'France'), +('85.237.97.48', '85.237.97.63', 1441620272, 1441620287, 'ES', 'Spain'), +('85.237.97.64', '85.237.97.183', 1441620288, 1441620407, 'FR', 'France'), +('85.237.97.184', '85.237.97.187', 1441620408, 1441620411, 'ES', 'Spain'), +('85.237.97.188', '85.237.127.255', 1441620412, 1441628159, 'FR', 'France'), +('85.237.128.0', '85.237.159.255', 1441628160, 1441636351, 'SA', 'Saudi Arabia'), +('85.237.160.0', '85.237.191.255', 1441636352, 1441644543, 'PL', 'Poland'), +('85.237.192.0', '85.237.223.255', 1441644544, 1441652735, 'GB', 'United Kingdom'), +('85.237.224.0', '85.237.255.255', 1441652736, 1441660927, 'SK', 'Slovakia'), +('85.238.0.0', '85.238.31.255', 1441660928, 1441669119, 'ES', 'Spain'), +('85.238.32.0', '85.238.63.255', 1441669120, 1441677311, 'GE', 'Georgia'), +('85.238.64.0', '85.238.95.255', 1441677312, 1441685503, 'HU', 'Hungary'), +('85.238.96.0', '85.238.127.255', 1441685504, 1441693695, 'UA', 'Ukraine'), +('85.238.128.0', '85.238.131.255', 1441693696, 1441694719, 'BR', 'Brazil'), +('85.238.132.0', '85.238.135.255', 1441694720, 1441695743, 'DE', 'Germany'), +('85.238.136.0', '85.238.139.255', 1441695744, 1441696767, 'US', 'United States'), +('85.238.140.0', '85.238.143.255', 1441696768, 1441697791, 'SG', 'Singapore'), +('85.238.144.0', '85.238.147.255', 1441697792, 1441698815, 'US', 'United States'), +('85.238.148.0', '85.238.159.255', 1441698816, 1441701887, 'DE', 'Germany'), +('85.238.160.0', '85.238.191.255', 1441701888, 1441710079, 'AT', 'Austria'), +('85.238.192.0', '85.238.223.255', 1441710080, 1441718271, 'SE', 'Sweden'), +('85.238.224.0', '85.238.255.255', 1441718272, 1441726463, 'DE', 'Germany'), +('85.239.0.0', '85.239.9.255', 1441726464, 1441729023, 'KW', 'Kuwait'), +('85.239.10.0', '85.239.11.255', 1441729024, 1441729535, 'SG', 'Singapore'), +('85.239.12.0', '85.239.31.255', 1441729536, 1441734655, 'KW', 'Kuwait'), +('85.239.32.0', '85.239.63.255', 1441734656, 1441742847, 'RU', 'Russian Federation'), +('85.239.64.0', '85.239.95.255', 1441742848, 1441751039, 'CZ', 'Czech Republic'), +('85.239.96.0', '85.239.127.255', 1441751040, 1441759231, 'DE', 'Germany'), +('85.239.128.0', '85.239.159.255', 1441759232, 1441767423, 'BG', 'Bulgaria'), +('85.239.160.0', '85.239.191.255', 1441767424, 1441775615, 'IT', 'Italy'), +('85.239.192.0', '85.239.223.255', 1441775616, 1441783807, 'ES', 'Spain'), +('85.239.224.0', '85.239.255.255', 1441783808, 1441791999, 'CZ', 'Czech Republic'), +('85.240.0.0', '85.247.255.255', 1441792000, 1442316287, 'PT', 'Portugal'), +('85.248.0.0', '85.248.1.39', 1442316288, 1442316583, 'SK', 'Slovakia'), +('85.248.1.40', '85.248.1.47', 1442316584, 1442316591, 'DE', 'Germany'), +('85.248.1.48', '85.248.20.47', 1442316592, 1442321455, 'SK', 'Slovakia'), +('85.248.20.48', '85.248.20.55', 1442321456, 1442321463, 'DE', 'Germany'), +('85.248.20.56', '85.248.64.255', 1442321464, 1442332927, 'SK', 'Slovakia'), +('85.248.65.0', '85.248.65.127', 1442332928, 1442333055, 'BE', 'Belgium'), +('85.248.65.128', '85.248.255.255', 1442333056, 1442381823, 'SK', 'Slovakia'), +('85.249.0.0', '85.249.255.255', 1442381824, 1442447359, 'RU', 'Russian Federation'), +('85.250.0.0', '85.250.255.255', 1442447360, 1442512895, 'IL', 'Israel'), +('85.251.0.0', '85.251.255.255', 1442512896, 1442578431, 'ES', 'Spain'), +('85.252.0.0', '85.252.255.255', 1442578432, 1442643967, 'NO', 'Norway'), +('85.253.0.0', '85.253.255.255', 1442643968, 1442709503, 'EE', 'Estonia'), +('85.254.0.0', '85.254.255.255', 1442709504, 1442775039, 'LV', 'Latvia'), +('85.255.0.0', '85.255.15.255', 1442775040, 1442779135, 'PL', 'Poland'), +('85.255.16.0', '85.255.31.255', 1442779136, 1442783231, 'DE', 'Germany'), +('85.255.32.0', '85.255.47.255', 1442783232, 1442787327, 'NO', 'Norway'), +('85.255.48.0', '85.255.63.255', 1442787328, 1442791423, 'LT', 'Lithuania'), +('85.255.64.0', '85.255.79.255', 1442791424, 1442795519, 'LV', 'Latvia'), +('85.255.80.0', '85.255.95.255', 1442795520, 1442799615, 'DE', 'Germany'), +('85.255.96.0', '85.255.111.255', 1442799616, 1442803711, 'LT', 'Lithuania'), +('85.255.112.0', '85.255.127.255', 1442803712, 1442807807, 'UA', 'Ukraine'), +('85.255.128.0', '85.255.143.255', 1442807808, 1442811903, 'BG', 'Bulgaria'), +('85.255.144.0', '85.255.159.255', 1442811904, 1442815999, 'AT', 'Austria'), +('85.255.160.0', '85.255.175.255', 1442816000, 1442820095, 'BG', 'Bulgaria'), +('85.255.176.0', '85.255.191.255', 1442820096, 1442824191, 'PL', 'Poland'), +('85.255.192.0', '85.255.207.255', 1442824192, 1442828287, 'BE', 'Belgium'), +('85.255.208.0', '85.255.223.255', 1442828288, 1442832383, 'NL', 'Netherlands'), +('85.255.224.0', '85.255.239.255', 1442832384, 1442836479, 'GB', 'United Kingdom'), +('85.255.240.0', '85.255.255.255', 1442836480, 1442840575, 'PL', 'Poland'), +('86.0.0.0', '86.31.255.255', 1442840576, 1444937727, 'GB', 'United Kingdom'), +('86.32.0.0', '86.33.255.255', 1444937728, 1445068799, 'AT', 'Austria'), +('86.34.0.0', '86.35.255.255', 1445068800, 1445199871, 'RO', 'Romania'), +('86.36.0.0', '86.37.255.255', 1445199872, 1445330943, 'QA', 'Qatar'), +('86.38.0.0', '86.38.255.255', 1445330944, 1445396479, 'LT', 'Lithuania'), +('86.39.0.0', '86.39.128.63', 1445396480, 1445429311, 'NL', 'Netherlands'), +('86.39.128.64', '86.39.132.31', 1445429312, 1445430303, 'BE', 'Belgium'), +('86.39.132.32', '86.39.136.255', 1445430304, 1445431551, 'NL', 'Netherlands'), +('86.39.137.0', '86.39.137.95', 1445431552, 1445431647, 'BE', 'Belgium'), +('86.39.137.96', '86.39.137.127', 1445431648, 1445431679, 'NL', 'Netherlands'), +('86.39.137.128', '86.39.137.255', 1445431680, 1445431807, 'BE', 'Belgium'), +('86.39.138.0', '86.39.145.255', 1445431808, 1445433855, 'NL', 'Netherlands'), +('86.39.146.0', '86.39.146.31', 1445433856, 1445433887, 'BE', 'Belgium'), +('86.39.146.32', '86.39.147.255', 1445433888, 1445434367, 'NL', 'Netherlands'), +('86.39.148.0', '86.39.148.31', 1445434368, 1445434399, 'BE', 'Belgium'), +('86.39.148.32', '86.39.148.159', 1445434400, 1445434527, 'NL', 'Netherlands'), +('86.39.148.160', '86.39.148.191', 1445434528, 1445434559, 'BE', 'Belgium'), +('86.39.148.192', '86.39.152.3', 1445434560, 1445435395, 'NL', 'Netherlands'), +('86.39.152.4', '86.39.152.7', 1445435396, 1445435399, 'BE', 'Belgium'), +('86.39.152.8', '86.39.152.31', 1445435400, 1445435423, 'NL', 'Netherlands'), +('86.39.152.32', '86.39.152.39', 1445435424, 1445435431, 'BE', 'Belgium'), +('86.39.152.40', '86.39.152.255', 1445435432, 1445435647, 'NL', 'Netherlands'), +('86.39.153.0', '86.39.153.255', 1445435648, 1445435903, 'BE', 'Belgium'), +('86.39.154.0', '86.39.154.63', 1445435904, 1445435967, 'NL', 'Netherlands'), +('86.39.154.64', '86.39.154.95', 1445435968, 1445435999, 'BE', 'Belgium'), +('86.39.154.96', '86.39.154.127', 1445436000, 1445436031, 'NL', 'Netherlands'), +('86.39.154.128', '86.39.154.159', 1445436032, 1445436063, 'BE', 'Belgium'), +('86.39.154.160', '86.39.155.127', 1445436064, 1445436287, 'NL', 'Netherlands'), +('86.39.155.128', '86.39.156.15', 1445436288, 1445436431, 'BE', 'Belgium'), +('86.39.156.16', '86.39.156.47', 1445436432, 1445436463, 'NL', 'Netherlands'), +('86.39.156.48', '86.39.156.95', 1445436464, 1445436511, 'BE', 'Belgium'), +('86.39.156.96', '86.39.157.127', 1445436512, 1445436799, 'NL', 'Netherlands'), +('86.39.157.128', '86.39.157.191', 1445436800, 1445436863, 'BE', 'Belgium'), +('86.39.157.192', '86.39.157.223', 1445436864, 1445436895, 'NL', 'Netherlands'), +('86.39.157.224', '86.39.157.255', 1445436896, 1445436927, 'BE', 'Belgium'), +('86.39.158.0', '86.39.158.31', 1445436928, 1445436959, 'NL', 'Netherlands'), +('86.39.158.32', '86.39.158.254', 1445436960, 1445437182, 'BE', 'Belgium'), +('86.39.158.255', '86.39.159.127', 1445437183, 1445437311, 'NL', 'Netherlands'), +('86.39.159.128', '86.39.159.135', 1445437312, 1445437319, 'BE', 'Belgium'), +('86.39.159.136', '86.39.255.255', 1445437320, 1445462015, 'NL', 'Netherlands'), +('86.40.0.0', '86.47.255.255', 1445462016, 1445986303, 'IE', 'Ireland'), +('86.48.0.0', '86.48.255.255', 1445986304, 1446051839, 'DK', 'Denmark'), +('86.49.0.0', '86.49.255.255', 1446051840, 1446117375, 'CZ', 'Czech Republic'), +('86.50.0.0', '86.50.255.255', 1446117376, 1446182911, 'FI', 'Finland'), +('86.51.0.0', '86.51.255.255', 1446182912, 1446248447, 'SA', 'Saudi Arabia'), +('86.52.0.0', '86.52.255.255', 1446248448, 1446313983, 'DK', 'Denmark'), +('86.53.0.0', '86.54.255.255', 1446313984, 1446445055, 'GB', 'United Kingdom'), +('86.55.0.0', '86.55.255.255', 1446445056, 1446510591, 'RO', 'Romania'), +('86.56.0.0', '86.56.127.255', 1446510592, 1446543359, 'DE', 'Germany'), +('86.56.128.0', '86.56.255.255', 1446543360, 1446576127, 'AT', 'Austria'), +('86.57.0.0', '86.57.127.255', 1446576128, 1446608895, 'LV', 'Latvia'), +('86.57.128.0', '86.57.255.255', 1446608896, 1446641663, 'BY', 'Belarus'), +('86.58.0.0', '86.58.127.255', 1446641664, 1446674431, 'SI', 'Slovenia'), +('86.58.128.0', '86.58.255.231', 1446674432, 1446707175, 'DK', 'Denmark'), +('86.58.255.232', '86.58.255.235', 1446707176, 1446707179, 'NO', 'Norway'), +('86.58.255.236', '86.58.255.239', 1446707180, 1446707183, 'FI', 'Finland'), +('86.58.255.240', '86.58.255.255', 1446707184, 1446707199, 'DK', 'Denmark'), +('86.59.0.0', '86.59.127.255', 1446707200, 1446739967, 'AT', 'Austria'), +('86.59.128.0', '86.59.223.255', 1446739968, 1446764543, 'RU', 'Russian Federation'), +('86.59.224.0', '86.59.225.255', 1446764544, 1446765055, 'CZ', 'Czech Republic'), +('86.59.226.0', '86.59.255.255', 1446765056, 1446772735, 'RU', 'Russian Federation'), +('86.60.0.0', '86.60.127.255', 1446772736, 1446805503, 'SA', 'Saudi Arabia'), +('86.60.128.0', '86.60.255.255', 1446805504, 1446838271, 'FI', 'Finland'), +('86.61.0.0', '86.61.92.255', 1446838272, 1446862079, 'SI', 'Slovenia'), +('86.61.93.0', '86.61.94.255', 1446862080, 1446862591, 'HR', 'Croatia'), +('86.61.95.0', '86.61.127.255', 1446862592, 1446871039, 'SI', 'Slovenia'), +('86.61.128.0', '86.61.255.255', 1446871040, 1446903807, 'CZ', 'Czech Republic'), +('86.62.0.0', '86.62.0.255', 1446903808, 1446904063, 'AE', 'United Arab Emirates'), +('86.62.1.0', '86.62.1.7', 1446904064, 1446904071, 'A2', 'Satellite Provider'), +('86.62.1.8', '86.62.1.15', 1446904072, 1446904079, 'CY', 'Cyprus'), +('86.62.1.16', '86.62.1.31', 1446904080, 1446904095, 'BH', 'Bahrain'), +('86.62.1.32', '86.62.1.47', 1446904096, 1446904111, 'SA', 'Saudi Arabia'), +('86.62.1.48', '86.62.1.55', 1446904112, 1446904119, 'BH', 'Bahrain'), +('86.62.1.56', '86.62.1.63', 1446904120, 1446904127, 'A2', 'Satellite Provider'), +('86.62.1.64', '86.62.1.71', 1446904128, 1446904135, 'SA', 'Saudi Arabia'), +('86.62.1.72', '86.62.1.79', 1446904136, 1446904143, 'IQ', 'Iraq'), +('86.62.1.80', '86.62.1.87', 1446904144, 1446904151, 'SA', 'Saudi Arabia'), +('86.62.1.88', '86.62.1.95', 1446904152, 1446904159, 'IR', 'Iran, Islamic Republic of'), +('86.62.1.96', '86.62.1.103', 1446904160, 1446904167, 'ES', 'Spain'), +('86.62.1.104', '86.62.1.111', 1446904168, 1446904175, 'IQ', 'Iraq'), +('86.62.1.112', '86.62.3.255', 1446904176, 1446904831, 'A2', 'Satellite Provider'), +('86.62.4.0', '86.62.4.3', 1446904832, 1446904835, 'LY', 'Libyan Arab Jamahiriya'), +('86.62.4.4', '86.62.63.255', 1446904836, 1446920191, 'A2', 'Satellite Provider'), +('86.62.64.0', '86.62.127.255', 1446920192, 1446936575, 'RU', 'Russian Federation'), +('86.62.128.0', '86.62.191.255', 1446936576, 1446952959, 'NO', 'Norway'), +('86.62.192.0', '86.62.255.255', 1446952960, 1446969343, 'QA', 'Qatar'), +('86.63.0.0', '86.63.63.255', 1446969344, 1446985727, 'GB', 'United Kingdom'), +('86.63.64.0', '86.63.159.255', 1446985728, 1447010303, 'PL', 'Poland'), +('86.63.160.0', '86.63.191.255', 1447010304, 1447018495, 'LV', 'Latvia'), +('86.63.192.0', '86.63.193.255', 1447018496, 1447019007, 'CZ', 'Czech Republic'), +('86.63.194.0', '86.63.194.15', 1447019008, 1447019023, 'BZ', 'Belize'), +('86.63.194.16', '86.63.223.255', 1447019024, 1447026687, 'CZ', 'Czech Republic'), +('86.63.224.0', '86.66.13.95', 1447026688, 1447169375, 'FR', 'France'), +('86.66.13.96', '86.66.13.111', 1447169376, 1447169391, 'TN', 'Tunisia'), +('86.66.13.112', '86.79.255.255', 1447169392, 1448083455, 'FR', 'France'), +('86.80.0.0', '86.95.255.255', 1448083456, 1449132031, 'NL', 'Netherlands'), +('86.96.0.0', '86.99.255.255', 1449132032, 1449394175, 'AE', 'United Arab Emirates'), +('86.100.0.0', '86.100.255.255', 1449394176, 1449459711, 'LT', 'Lithuania'), +('86.101.0.0', '86.101.255.255', 1449459712, 1449525247, 'HU', 'Hungary'), +('86.102.0.0', '86.102.255.255', 1449525248, 1449590783, 'RU', 'Russian Federation'), +('86.103.0.0', '86.103.255.255', 1449590784, 1449656319, 'DE', 'Germany'), +('86.104.0.0', '86.104.239.255', 1449656320, 1449717759, 'RO', 'Romania'), +('86.104.240.0', '86.104.243.255', 1449717760, 1449718783, 'MD', 'Moldova, Republic of'), +('86.104.244.0', '86.106.207.255', 1449718784, 1449840639, 'RO', 'Romania'), +('86.106.208.0', '86.106.255.255', 1449840640, 1449852927, 'MD', 'Moldova, Republic of'), +('86.107.0.0', '86.107.255.255', 1449852928, 1449918463, 'RO', 'Romania'), +('86.108.0.0', '86.108.127.255', 1449918464, 1449951231, 'JO', 'Jordan'), +('86.108.128.0', '86.108.255.255', 1449951232, 1449983999, 'TR', 'Turkey'), +('86.109.0.0', '86.109.31.255', 1449984000, 1449992191, 'NL', 'Netherlands'), +('86.109.32.0', '86.109.63.255', 1449992192, 1450000383, 'IR', 'Iran, Islamic Republic of'), +('86.109.64.0', '86.109.95.255', 1450000384, 1450008575, 'HU', 'Hungary'), +('86.109.96.0', '86.109.127.255', 1450008576, 1450016767, 'ES', 'Spain'), +('86.109.128.0', '86.109.159.255', 1450016768, 1450024959, 'IT', 'Italy'), +('86.109.160.0', '86.109.191.255', 1450024960, 1450033151, 'ES', 'Spain'), +('86.109.192.0', '86.109.223.255', 1450033152, 1450041343, 'RU', 'Russian Federation'), +('86.109.224.0', '86.109.255.255', 1450041344, 1450049535, 'DE', 'Germany'), +('86.110.0.0', '86.110.31.255', 1450049536, 1450057727, 'RU', 'Russian Federation'), +('86.110.32.0', '86.110.63.255', 1450057728, 1450065919, 'EE', 'Estonia'), +('86.110.64.0', '86.110.95.255', 1450065920, 1450074111, 'DE', 'Germany'), +('86.110.96.0', '86.110.127.255', 1450074112, 1450082303, 'RU', 'Russian Federation'), +('86.110.128.0', '86.110.140.7', 1450082304, 1450085383, 'A2', 'Satellite Provider'), +('86.110.140.8', '86.110.140.183', 1450085384, 1450085559, 'IT', 'Italy'), +('86.110.140.184', '86.110.140.191', 1450085560, 1450085567, 'A2', 'Satellite Provider'), +('86.110.140.192', '86.110.140.231', 1450085568, 1450085607, 'IT', 'Italy'), +('86.110.140.232', '86.110.141.187', 1450085608, 1450085819, 'A2', 'Satellite Provider'), +('86.110.141.188', '86.110.141.255', 1450085820, 1450085887, 'IT', 'Italy'), +('86.110.142.0', '86.110.159.255', 1450085888, 1450090495, 'A2', 'Satellite Provider'), +('86.110.160.0', '86.110.223.255', 1450090496, 1450106879, 'RU', 'Russian Federation'), +('86.110.224.0', '86.110.255.255', 1450106880, 1450115071, 'SK', 'Slovakia'), +('86.111.0.0', '86.111.31.255', 1450115072, 1450123263, 'RU', 'Russian Federation'), +('86.111.32.0', '86.111.63.255', 1450123264, 1450131455, 'AT', 'Austria'), +('86.111.64.0', '86.111.95.255', 1450131456, 1450139647, 'UA', 'Ukraine'), +('86.111.96.0', '86.111.127.255', 1450139648, 1450147839, 'PL', 'Poland'), +('86.111.128.0', '86.111.159.255', 1450147840, 1450156031, 'RU', 'Russian Federation'), +('86.111.160.0', '86.111.191.255', 1450156032, 1450164223, 'GB', 'United Kingdom'), +('86.111.192.0', '86.111.199.255', 1450164224, 1450166271, 'SA', 'Saudi Arabia'), +('86.111.200.0', '86.111.207.255', 1450166272, 1450168319, 'PL', 'Poland'), +('86.111.208.0', '86.111.215.255', 1450168320, 1450170367, 'EU', 'Europe'), +('86.111.216.0', '86.111.223.255', 1450170368, 1450172415, 'GB', 'United Kingdom'), +('86.111.224.0', '86.111.231.255', 1450172416, 1450174463, 'UA', 'Ukraine'), +('86.111.232.0', '86.111.239.255', 1450174464, 1450176511, 'DE', 'Germany'), +('86.111.240.0', '86.111.247.255', 1450176512, 1450178559, 'PL', 'Poland'), +('86.111.248.0', '86.111.255.255', 1450178560, 1450180607, 'DE', 'Germany'), +('86.112.0.0', '86.113.255.255', 1450180608, 1450311679, 'GB', 'United Kingdom'), +('86.114.0.0', '86.115.255.255', 1450311680, 1450442751, 'FI', 'Finland'), +('86.116.0.0', '86.119.255.255', 1450442752, 1450704895, 'CH', 'Switzerland'), +('86.120.0.0', '86.127.39.255', 1450704896, 1451173887, 'RO', 'Romania'), +('86.127.40.0', '86.127.47.255', 1451173888, 1451175935, 'HU', 'Hungary'), +('86.127.48.0', '86.127.255.255', 1451175936, 1451229183, 'RO', 'Romania'), +('86.128.0.0', '86.191.255.255', 1451229184, 1455423487, 'GB', 'United Kingdom'), +('86.192.0.0', '86.255.255.255', 1455423488, 1459617791, 'FR', 'France'), +('87.0.0.0', '87.31.255.255', 1459617792, 1461714943, 'IT', 'Italy'), +('87.32.0.0', '87.47.255.255', 1461714944, 1462763519, 'IE', 'Ireland'), +('87.48.0.0', '87.63.255.255', 1462763520, 1463812095, 'DK', 'Denmark'), +('87.64.0.0', '87.67.255.255', 1463812096, 1464074239, 'BE', 'Belgium'), +('87.68.0.0', '87.71.255.255', 1464074240, 1464336383, 'IL', 'Israel'), +('87.72.0.0', '87.73.255.255', 1464336384, 1464467455, 'DK', 'Denmark'), +('87.74.0.0', '87.75.255.255', 1464467456, 1464598527, 'GB', 'United Kingdom'), +('87.76.0.0', '87.76.255.255', 1464598528, 1464664063, 'NL', 'Netherlands'), +('87.77.0.0', '87.79.25.255', 1464664064, 1464801791, 'DE', 'Germany'), +('87.79.26.0', '87.79.26.63', 1464801792, 1464801855, 'GB', 'United Kingdom'), +('87.79.26.64', '87.79.255.255', 1464801856, 1464860671, 'DE', 'Germany'), +('87.80.0.0', '87.87.255.255', 1464860672, 1465384959, 'GB', 'United Kingdom'), +('87.88.0.0', '87.91.255.255', 1465384960, 1465647103, 'FR', 'France'), +('87.92.0.0', '87.95.255.255', 1465647104, 1465909247, 'FI', 'Finland'), +('87.96.0.0', '87.96.127.255', 1465909248, 1465942015, 'PL', 'Poland'), +('87.96.128.0', '87.96.255.255', 1465942016, 1465974783, 'SE', 'Sweden'), +('87.97.0.0', '87.97.127.255', 1465974784, 1466007551, 'HU', 'Hungary'), +('87.97.128.0', '87.97.255.255', 1466007552, 1466040319, 'BG', 'Bulgaria'), +('87.98.0.0', '87.98.127.255', 1466040320, 1466073087, 'EE', 'Estonia'), +('87.98.128.0', '87.98.223.255', 1466073088, 1466097663, 'FR', 'France'), +('87.98.224.0', '87.98.231.255', 1466097664, 1466099711, 'ES', 'Spain'), +('87.98.232.0', '87.98.239.255', 1466099712, 1466101759, 'PL', 'Poland'), +('87.98.240.0', '87.98.247.255', 1466101760, 1466103807, 'DE', 'Germany'), +('87.98.248.0', '87.98.250.255', 1466103808, 1466104575, 'GB', 'United Kingdom'), +('87.98.251.0', '87.98.251.255', 1466104576, 1466104831, 'FR', 'France'), +('87.98.252.0', '87.98.253.255', 1466104832, 1466105343, 'BE', 'Belgium'), +('87.98.254.0', '87.98.255.255', 1466105344, 1466105855, 'GB', 'United Kingdom'), +('87.99.0.0', '87.99.63.255', 1466105856, 1466122239, 'PL', 'Poland'), +('87.99.64.0', '87.99.95.255', 1466122240, 1466130431, 'LV', 'Latvia'), +('87.99.96.0', '87.99.127.255', 1466130432, 1466138623, 'PL', 'Poland'), +('87.99.128.0', '87.99.255.255', 1466138624, 1466171391, 'SE', 'Sweden'), +('87.100.0.0', '87.100.127.255', 1466171392, 1466204159, 'FR', 'France'), +('87.100.128.0', '87.100.255.255', 1466204160, 1466236927, 'FI', 'Finland'), +('87.101.0.0', '87.101.15.255', 1466236928, 1466241023, 'NL', 'Netherlands'), +('87.101.16.0', '87.101.47.255', 1466241024, 1466249215, 'PL', 'Poland'), +('87.101.48.0', '87.101.63.255', 1466249216, 1466253311, 'GR', 'Greece'), +('87.101.64.0', '87.101.79.255', 1466253312, 1466257407, 'PL', 'Poland'), +('87.101.80.0', '87.101.95.255', 1466257408, 1466261503, 'GR', 'Greece'), +('87.101.96.0', '87.101.111.255', 1466261504, 1466265599, 'GB', 'United Kingdom'), +('87.101.112.0', '87.101.127.255', 1466265600, 1466269695, 'HU', 'Hungary'), +('87.101.128.0', '87.101.255.255', 1466269696, 1466302463, 'SA', 'Saudi Arabia'), +('87.102.0.0', '87.102.127.255', 1466302464, 1466335231, 'GB', 'United Kingdom'), +('87.102.128.0', '87.102.255.255', 1466335232, 1466367999, 'CH', 'Switzerland'), +('87.103.0.0', '87.103.127.255', 1466368000, 1466400767, 'PT', 'Portugal'), +('87.103.128.0', '87.103.255.255', 1466400768, 1466433535, 'RU', 'Russian Federation'), +('87.104.0.0', '87.104.255.255', 1466433536, 1466499071, 'DK', 'Denmark'), +('87.105.0.0', '87.105.255.255', 1466499072, 1466564607, 'PL', 'Poland'), +('87.106.0.0', '87.106.95.255', 1466564608, 1466589183, 'DE', 'Germany'), +('87.106.96.0', '87.106.99.255', 1466589184, 1466590207, 'FR', 'France'), +('87.106.100.0', '87.106.107.255', 1466590208, 1466592255, 'GB', 'United Kingdom'), +('87.106.108.0', '87.106.108.255', 1466592256, 1466592511, 'FR', 'France'), +('87.106.109.0', '87.106.109.255', 1466592512, 1466592767, 'GB', 'United Kingdom'), +('87.106.110.0', '87.106.111.255', 1466592768, 1466593279, 'FR', 'France'), +('87.106.112.0', '87.106.164.255', 1466593280, 1466606847, 'DE', 'Germany'), +('87.106.165.0', '87.106.165.255', 1466606848, 1466607103, 'FR', 'France'), +('87.106.166.0', '87.106.191.255', 1466607104, 1466613759, 'DE', 'Germany'), +('87.106.192.0', '87.106.199.255', 1466613760, 1466615807, 'ES', 'Spain'), +('87.106.200.0', '87.106.202.255', 1466615808, 1466616575, 'GB', 'United Kingdom'), +('87.106.203.0', '87.106.205.255', 1466616576, 1466617343, 'ES', 'Spain'), +('87.106.206.0', '87.106.206.127', 1466617344, 1466617471, 'FR', 'France'), +('87.106.206.128', '87.106.206.255', 1466617472, 1466617599, 'GB', 'United Kingdom'), +('87.106.207.0', '87.106.207.255', 1466617600, 1466617855, 'ES', 'Spain'), +('87.106.208.0', '87.106.255.255', 1466617856, 1466630143, 'DE', 'Germany'), +('87.107.0.0', '87.107.255.255', 1466630144, 1466695679, 'IR', 'Iran, Islamic Republic of'), +('87.108.0.0', '87.108.255.255', 1466695680, 1466761215, 'FI', 'Finland'), +('87.109.0.0', '87.109.255.255', 1466761216, 1466826751, 'SA', 'Saudi Arabia'), +('87.110.0.0', '87.110.232.255', 1466826752, 1466886399, 'LV', 'Latvia'), +('87.110.233.0', '87.110.233.255', 1466886400, 1466886655, 'LT', 'Lithuania'), +('87.110.234.0', '87.110.255.255', 1466886656, 1466892287, 'LV', 'Latvia'), +('87.111.0.0', '87.111.255.255', 1466892288, 1466957823, 'ES', 'Spain'), +('87.112.0.0', '87.115.255.255', 1466957824, 1467219967, 'GB', 'United Kingdom'), +('87.116.0.0', '87.116.63.255', 1467219968, 1467236351, 'DK', 'Denmark'), +('87.116.64.0', '87.116.127.255', 1467236352, 1467252735, 'BG', 'Bulgaria'), +('87.116.128.0', '87.116.191.255', 1467252736, 1467269119, 'RS', 'Serbia'), +('87.116.192.0', '87.116.255.255', 1467269120, 1467285503, 'PL', 'Poland'), +('87.117.0.0', '87.117.63.255', 1467285504, 1467301887, 'RU', 'Russian Federation'), +('87.117.64.0', '87.117.127.255', 1467301888, 1467318271, 'GB', 'United Kingdom'), +('87.117.128.0', '87.117.191.255', 1467318272, 1467334655, 'RU', 'Russian Federation'), +('87.117.192.0', '87.117.228.255', 1467334656, 1467344127, 'GB', 'United Kingdom'), +('87.117.229.0', '87.117.229.255', 1467344128, 1467344383, 'CA', 'Canada'), +('87.117.230.0', '87.117.255.255', 1467344384, 1467351039, 'GB', 'United Kingdom'), +('87.118.0.0', '87.118.63.255', 1467351040, 1467367423, 'NO', 'Norway'), +('87.118.64.0', '87.118.64.191', 1467367424, 1467367615, 'DE', 'Germany'), +('87.118.64.192', '87.118.64.223', 1467367616, 1467367647, 'SE', 'Sweden'), +('87.118.64.224', '87.118.64.255', 1467367648, 1467367679, 'DE', 'Germany'), +('87.118.65.0', '87.118.65.15', 1467367680, 1467367695, 'IT', 'Italy'), +('87.118.65.16', '87.118.65.191', 1467367696, 1467367871, 'DE', 'Germany'), +('87.118.65.192', '87.118.65.223', 1467367872, 1467367903, 'SE', 'Sweden'), +('87.118.65.224', '87.118.65.255', 1467367904, 1467367935, 'DE', 'Germany'), +('87.118.66.0', '87.118.66.255', 1467367936, 1467368191, 'SI', 'Slovenia'), +('87.118.67.0', '87.118.67.127', 1467368192, 1467368319, 'DK', 'Denmark'), +('87.118.67.128', '87.118.67.255', 1467368320, 1467368447, 'DE', 'Germany'), +('87.118.68.0', '87.118.71.255', 1467368448, 1467369471, 'RU', 'Russian Federation'), +('87.118.72.0', '87.118.72.127', 1467369472, 1467369599, 'DE', 'Germany'), +('87.118.72.128', '87.118.72.191', 1467369600, 1467369663, 'IT', 'Italy'), +('87.118.72.192', '87.118.72.255', 1467369664, 1467369727, 'AT', 'Austria'), +('87.118.73.0', '87.118.73.31', 1467369728, 1467369759, 'DE', 'Germany'), +('87.118.73.32', '87.118.73.63', 1467369760, 1467369791, 'HR', 'Croatia'), +('87.118.73.64', '87.118.73.127', 1467369792, 1467369855, 'SE', 'Sweden'), +('87.118.73.128', '87.118.73.159', 1467369856, 1467369887, 'GB', 'United Kingdom'), +('87.118.73.160', '87.118.73.175', 1467369888, 1467369903, 'RU', 'Russian Federation'), +('87.118.73.176', '87.118.73.191', 1467369904, 1467369919, 'DE', 'Germany'), +('87.118.73.192', '87.118.73.223', 1467369920, 1467369951, 'RU', 'Russian Federation'), +('87.118.73.224', '87.118.75.255', 1467369952, 1467370495, 'DE', 'Germany'), +('87.118.76.0', '87.118.77.255', 1467370496, 1467371007, 'IE', 'Ireland'), +('87.118.78.0', '87.118.80.255', 1467371008, 1467371775, 'DE', 'Germany'), +('87.118.81.0', '87.118.81.255', 1467371776, 1467372031, 'RU', 'Russian Federation'), +('87.118.82.0', '87.118.127.255', 1467372032, 1467383807, 'DE', 'Germany'), +('87.118.128.0', '87.118.191.255', 1467383808, 1467400191, 'BG', 'Bulgaria'), +('87.118.192.0', '87.118.255.255', 1467400192, 1467416575, 'RU', 'Russian Federation'), +('87.119.0.0', '87.119.63.255', 1467416576, 1467432959, 'PL', 'Poland'), +('87.119.64.0', '87.119.127.255', 1467432960, 1467449343, 'BG', 'Bulgaria'), +('87.119.128.0', '87.119.159.255', 1467449344, 1467457535, 'SI', 'Slovenia'), +('87.119.160.0', '87.119.191.255', 1467457536, 1467465727, 'EE', 'Estonia'), +('87.119.192.0', '87.119.192.31', 1467465728, 1467465759, 'NL', 'Netherlands'), +('87.119.192.32', '87.119.192.63', 1467465760, 1467465791, 'AT', 'Austria'), +('87.119.192.64', '87.119.192.71', 1467465792, 1467465799, 'NL', 'Netherlands'), +('87.119.192.72', '87.119.192.79', 1467465800, 1467465807, 'AT', 'Austria'), +('87.119.192.80', '87.119.192.95', 1467465808, 1467465823, 'NL', 'Netherlands'), +('87.119.192.96', '87.119.192.127', 1467465824, 1467465855, 'AT', 'Austria'), +('87.119.192.128', '87.119.193.31', 1467465856, 1467466015, 'NL', 'Netherlands'), +('87.119.193.32', '87.119.193.39', 1467466016, 1467466023, 'DE', 'Germany'), +('87.119.193.40', '87.119.193.47', 1467466024, 1467466031, 'AT', 'Austria'), +('87.119.193.48', '87.119.193.127', 1467466032, 1467466111, 'NL', 'Netherlands'), +('87.119.193.128', '87.119.193.159', 1467466112, 1467466143, 'DE', 'Germany'), +('87.119.193.160', '87.119.193.191', 1467466144, 1467466175, 'NL', 'Netherlands'), +('87.119.193.192', '87.119.193.207', 1467466176, 1467466191, 'DE', 'Germany'), +('87.119.193.208', '87.119.193.223', 1467466192, 1467466207, 'NL', 'Netherlands'), +('87.119.193.224', '87.119.194.31', 1467466208, 1467466271, 'DE', 'Germany'), +('87.119.194.32', '87.119.195.255', 1467466272, 1467466751, 'NL', 'Netherlands'), +('87.119.196.0', '87.119.197.63', 1467466752, 1467467071, 'DE', 'Germany'), +('87.119.197.64', '87.119.197.95', 1467467072, 1467467103, 'CH', 'Switzerland'), +('87.119.197.96', '87.119.200.127', 1467467104, 1467467903, 'DE', 'Germany'), +('87.119.200.128', '87.119.200.255', 1467467904, 1467468031, 'CH', 'Switzerland'), +('87.119.201.0', '87.119.201.79', 1467468032, 1467468111, 'DE', 'Germany'), +('87.119.201.80', '87.119.201.87', 1467468112, 1467468119, 'BR', 'Brazil'), +('87.119.201.88', '87.119.223.255', 1467468120, 1467473919, 'DE', 'Germany'), +('87.119.224.0', '87.119.255.255', 1467473920, 1467482111, 'RU', 'Russian Federation'), +('87.120.0.0', '87.121.255.255', 1467482112, 1467613183, 'BG', 'Bulgaria'), +('87.122.0.0', '87.123.255.255', 1467613184, 1467744255, 'DE', 'Germany'), +('87.124.0.0', '87.125.255.255', 1467744256, 1467875327, 'GB', 'United Kingdom'), +('87.126.0.0', '87.126.255.255', 1467875328, 1467940863, 'BG', 'Bulgaria'), +('87.127.0.0', '87.127.255.255', 1467940864, 1468006399, 'GB', 'United Kingdom'), +('87.128.0.0', '87.191.255.255', 1468006400, 1472200703, 'DE', 'Germany'), +('87.192.0.0', '87.192.100.159', 1472200704, 1472226463, 'IE', 'Ireland'), +('87.192.100.160', '87.192.100.175', 1472226464, 1472226479, 'GB', 'United Kingdom'), +('87.192.100.176', '87.192.228.135', 1472226480, 1472259207, 'IE', 'Ireland'), +('87.192.228.136', '87.192.228.159', 1472259208, 1472259231, 'GB', 'United Kingdom'), +('87.192.228.160', '87.192.228.175', 1472259232, 1472259247, 'IE', 'Ireland'), +('87.192.228.176', '87.192.228.183', 1472259248, 1472259255, 'GB', 'United Kingdom'), +('87.192.228.184', '87.192.250.95', 1472259256, 1472264799, 'IE', 'Ireland'), +('87.192.250.96', '87.192.250.103', 1472264800, 1472264807, 'GB', 'United Kingdom'), +('87.192.250.104', '87.192.255.255', 1472264808, 1472266239, 'IE', 'Ireland'), +('87.193.0.0', '87.193.255.255', 1472266240, 1472331775, 'DE', 'Germany'), +('87.194.0.0', '87.194.255.255', 1472331776, 1472397311, 'GB', 'United Kingdom'), +('87.195.0.0', '87.195.255.255', 1472397312, 1472462847, 'NL', 'Netherlands'), +('87.196.0.0', '87.196.255.255', 1472462848, 1472528383, 'PT', 'Portugal'), +('87.197.0.0', '87.197.255.255', 1472528384, 1472593919, 'SK', 'Slovakia'), +('87.198.0.0', '87.198.255.255', 1472593920, 1472659455, 'IE', 'Ireland'), +('87.199.0.0', '87.199.255.255', 1472659456, 1472724991, 'PL', 'Poland'), +('87.200.0.0', '87.201.255.255', 1472724992, 1472856063, 'AE', 'United Arab Emirates'), +('87.202.0.0', '87.203.255.255', 1472856064, 1472987135, 'GR', 'Greece'), +('87.204.0.0', '87.207.255.255', 1472987136, 1473249279, 'PL', 'Poland'), +('87.208.0.0', '87.215.63.255', 1473249280, 1473724415, 'NL', 'Netherlands'), +('87.215.64.0', '87.215.127.255', 1473724416, 1473740799, 'BE', 'Belgium'), +('87.215.128.0', '87.215.255.255', 1473740800, 1473773567, 'NL', 'Netherlands'), +('87.216.0.0', '87.223.255.255', 1473773568, 1474297855, 'ES', 'Spain'), +('87.224.0.0', '87.224.127.255', 1474297856, 1474330623, 'GB', 'United Kingdom'), +('87.224.128.0', '87.225.127.255', 1474330624, 1474396159, 'RU', 'Russian Federation'), +('87.225.128.0', '87.225.255.255', 1474396160, 1474428927, 'DE', 'Germany'), +('87.226.0.0', '87.226.127.255', 1474428928, 1474461695, 'LV', 'Latvia'), +('87.226.128.0', '87.226.255.255', 1474461696, 1474494463, 'RU', 'Russian Federation'), +('87.227.0.0', '87.227.127.255', 1474494464, 1474527231, 'SE', 'Sweden'), +('87.227.128.0', '87.227.255.255', 1474527232, 1474559999, 'BG', 'Bulgaria'), +('87.228.0.0', '87.228.127.255', 1474560000, 1474592767, 'RU', 'Russian Federation'), +('87.228.128.0', '87.228.255.255', 1474592768, 1474625535, 'CY', 'Cyprus'), +('87.229.0.0', '87.229.127.255', 1474625536, 1474658303, 'HU', 'Hungary'), +('87.229.128.0', '87.229.255.255', 1474658304, 1474691071, 'RU', 'Russian Federation'), +('87.230.0.0', '87.230.127.255', 1474691072, 1474723839, 'DE', 'Germany'), +('87.230.128.0', '87.230.255.255', 1474723840, 1474756607, 'SA', 'Saudi Arabia'), +('87.231.0.0', '87.231.255.255', 1474756608, 1474822143, 'FR', 'France'), +('87.232.0.0', '87.232.255.255', 1474822144, 1474887679, 'IE', 'Ireland'), +('87.233.0.0', '87.233.255.255', 1474887680, 1474953215, 'NL', 'Netherlands'), +('87.234.0.0', '87.234.51.201', 1474953216, 1474966473, 'DE', 'Germany'), +('87.234.51.202', '87.234.51.202', 1474966474, 1474966474, 'A2', 'Satellite Provider'), +('87.234.51.203', '87.234.255.255', 1474966475, 1475018751, 'DE', 'Germany'), +('87.235.0.0', '87.235.255.255', 1475018752, 1475084287, 'ES', 'Spain'), +('87.236.0.0', '87.236.7.255', 1475084288, 1475086335, 'NL', 'Netherlands'), +('87.236.8.0', '87.236.31.255', 1475086336, 1475092479, 'RU', 'Russian Federation'), +('87.236.32.0', '87.236.39.255', 1475092480, 1475094527, 'CY', 'Cyprus'), +('87.236.40.0', '87.236.47.255', 1475094528, 1475096575, 'RU', 'Russian Federation'), +('87.236.48.0', '87.236.55.255', 1475096576, 1475098623, 'BH', 'Bahrain'), +('87.236.56.0', '87.236.67.255', 1475098624, 1475101695, 'GB', 'United Kingdom'), +('87.236.68.0', '87.236.69.255', 1475101696, 1475102207, 'ZA', 'South Africa'), +('87.236.70.0', '87.236.71.255', 1475102208, 1475102719, 'GB', 'United Kingdom'), +('87.236.72.0', '87.236.79.255', 1475102720, 1475104767, 'FR', 'France'), +('87.236.80.0', '87.236.87.255', 1475104768, 1475106815, 'RU', 'Russian Federation'), +('87.236.88.0', '87.236.95.255', 1475106816, 1475108863, 'GB', 'United Kingdom'), +('87.236.96.0', '87.236.103.255', 1475108864, 1475110911, 'NL', 'Netherlands'), +('87.236.104.0', '87.236.111.255', 1475110912, 1475112959, 'DE', 'Germany'), +('87.236.112.0', '87.236.119.255', 1475112960, 1475115007, 'MT', 'Malta'), +('87.236.120.0', '87.236.127.255', 1475115008, 1475117055, 'KW', 'Kuwait'), +('87.236.128.0', '87.236.135.255', 1475117056, 1475119103, 'GB', 'United Kingdom'), +('87.236.136.0', '87.236.143.255', 1475119104, 1475121151, 'BH', 'Bahrain'), +('87.236.144.0', '87.236.146.255', 1475121152, 1475121919, 'GB', 'United Kingdom'), +('87.236.147.0', '87.236.147.255', 1475121920, 1475122175, 'US', 'United States'), +('87.236.148.0', '87.236.151.255', 1475122176, 1475123199, 'GB', 'United Kingdom'), +('87.236.152.0', '87.236.159.255', 1475123200, 1475125247, 'FI', 'Finland'), +('87.236.160.0', '87.236.167.255', 1475125248, 1475127295, 'NO', 'Norway'), +('87.236.168.0', '87.236.175.255', 1475127296, 1475129343, 'FI', 'Finland'), +('87.236.176.0', '87.236.183.255', 1475129344, 1475131391, 'BE', 'Belgium'), +('87.236.184.0', '87.236.191.255', 1475131392, 1475133439, 'RU', 'Russian Federation'), +('87.236.192.0', '87.236.199.255', 1475133440, 1475135487, 'CZ', 'Czech Republic'), +('87.236.200.0', '87.236.207.255', 1475135488, 1475137535, 'CH', 'Switzerland'), +('87.236.208.0', '87.236.215.255', 1475137536, 1475139583, 'SE', 'Sweden'), +('87.236.216.0', '87.236.223.255', 1475139584, 1475141631, 'BE', 'Belgium'), +('87.236.224.0', '87.236.231.255', 1475141632, 1475143679, 'UA', 'Ukraine'), +('87.236.232.0', '87.236.239.255', 1475143680, 1475145727, 'JO', 'Jordan'), +('87.236.240.0', '87.236.247.255', 1475145728, 1475147775, 'ES', 'Spain'), +('87.236.248.0', '87.236.255.255', 1475147776, 1475149823, 'GB', 'United Kingdom'), +('87.237.0.0', '87.237.7.255', 1475149824, 1475151871, 'NL', 'Netherlands'), +('87.237.8.0', '87.237.15.255', 1475151872, 1475153919, 'BE', 'Belgium'), +('87.237.16.0', '87.237.23.255', 1475153920, 1475155967, 'GB', 'United Kingdom'), +('87.237.24.0', '87.237.31.255', 1475155968, 1475158015, 'NL', 'Netherlands'), +('87.237.32.0', '87.237.39.255', 1475158016, 1475160063, 'IS', 'Iceland'), +('87.237.40.0', '87.237.47.255', 1475160064, 1475162111, 'RU', 'Russian Federation'), +('87.237.48.0', '87.237.79.255', 1475162112, 1475170303, 'GB', 'United Kingdom'), +('87.237.80.0', '87.237.87.255', 1475170304, 1475172351, 'ES', 'Spain'), +('87.237.88.0', '87.237.95.255', 1475172352, 1475174399, 'DE', 'Germany'), +('87.237.96.0', '87.237.98.135', 1475174400, 1475175047, 'NL', 'Netherlands'), +('87.237.98.136', '87.237.98.143', 1475175048, 1475175055, 'US', 'United States'), +('87.237.98.144', '87.237.103.255', 1475175056, 1475176447, 'NL', 'Netherlands'), +('87.237.104.0', '87.237.111.255', 1475176448, 1475178495, 'RO', 'Romania'), +('87.237.112.0', '87.237.119.255', 1475178496, 1475180543, 'RU', 'Russian Federation'), +('87.237.120.0', '87.237.135.255', 1475180544, 1475184639, 'DE', 'Germany'), +('87.237.136.0', '87.237.143.255', 1475184640, 1475186687, 'RU', 'Russian Federation'), +('87.237.144.0', '87.237.151.255', 1475186688, 1475188735, 'ES', 'Spain'), +('87.237.152.0', '87.237.159.255', 1475188736, 1475190783, 'SE', 'Sweden'), +('87.237.160.0', '87.237.167.255', 1475190784, 1475192831, 'GB', 'United Kingdom'), +('87.237.168.0', '87.237.175.255', 1475192832, 1475194879, 'CH', 'Switzerland'), +('87.237.176.0', '87.237.183.255', 1475194880, 1475196927, 'DE', 'Germany'), +('87.237.184.0', '87.237.184.143', 1475196928, 1475197071, 'FR', 'France'), +('87.237.184.144', '87.237.184.151', 1475197072, 1475197079, 'DZ', 'Algeria'), +('87.237.184.152', '87.237.187.95', 1475197080, 1475197791, 'FR', 'France'), +('87.237.187.96', '87.237.187.111', 1475197792, 1475197807, 'ES', 'Spain'), +('87.237.187.112', '87.237.191.255', 1475197808, 1475198975, 'FR', 'France'), +('87.237.192.0', '87.237.199.255', 1475198976, 1475201023, 'BH', 'Bahrain'), +('87.237.200.0', '87.237.207.255', 1475201024, 1475203071, 'RS', 'Serbia'), +('87.237.208.0', '87.237.215.255', 1475203072, 1475205119, 'SE', 'Sweden'), +('87.237.216.0', '87.237.218.255', 1475205120, 1475205887, 'DE', 'Germany'), +('87.237.219.0', '87.237.219.255', 1475205888, 1475206143, 'US', 'United States'), +('87.237.220.0', '87.237.220.63', 1475206144, 1475206207, 'JP', 'Japan'), +('87.237.220.64', '87.237.220.127', 1475206208, 1475206271, 'US', 'United States'), +('87.237.220.128', '87.237.220.239', 1475206272, 1475206383, 'DE', 'Germany'), +('87.237.220.240', '87.237.220.255', 1475206384, 1475206399, 'NL', 'Netherlands'), +('87.237.221.0', '87.237.221.255', 1475206400, 1475206655, 'HK', 'Hong Kong'), +('87.237.222.0', '87.237.222.255', 1475206656, 1475206911, 'DE', 'Germany'), +('87.237.223.0', '87.237.223.15', 1475206912, 1475206927, 'NL', 'Netherlands'), +('87.237.223.16', '87.237.223.31', 1475206928, 1475206943, 'FR', 'France'), +('87.237.223.32', '87.237.223.47', 1475206944, 1475206959, 'PT', 'Portugal'), +('87.237.223.48', '87.237.223.63', 1475206960, 1475206975, 'GB', 'United Kingdom'), +('87.237.223.64', '87.237.223.79', 1475206976, 1475206991, 'IT', 'Italy'), +('87.237.223.80', '87.237.223.95', 1475206992, 1475207007, 'SE', 'Sweden'), +('87.237.223.96', '87.237.223.111', 1475207008, 1475207023, 'RU', 'Russian Federation'), +('87.237.223.112', '87.237.223.127', 1475207024, 1475207039, 'ES', 'Spain'), +('87.237.223.128', '87.237.223.143', 1475207040, 1475207055, 'AU', 'Australia'), +('87.237.223.144', '87.237.223.159', 1475207056, 1475207071, 'KR', 'Korea, Republic of'), +('87.237.223.160', '87.237.223.175', 1475207072, 1475207087, 'CH', 'Switzerland'), +('87.237.223.176', '87.237.223.191', 1475207088, 1475207103, 'JP', 'Japan'), +('87.237.223.192', '87.237.223.223', 1475207104, 1475207135, 'KR', 'Korea, Republic of'), +('87.237.223.224', '87.237.223.235', 1475207136, 1475207147, 'DE', 'Germany'), +('87.237.223.236', '87.237.223.255', 1475207148, 1475207167, 'US', 'United States'), +('87.237.224.0', '87.237.224.95', 1475207168, 1475207263, 'AE', 'United Arab Emirates'), +('87.237.224.96', '87.237.224.127', 1475207264, 1475207295, 'US', 'United States'), +('87.237.224.128', '87.237.224.255', 1475207296, 1475207423, 'AE', 'United Arab Emirates'), +('87.237.225.0', '87.237.225.255', 1475207424, 1475207679, 'GR', 'Greece'), +('87.237.226.0', '87.237.227.255', 1475207680, 1475208191, 'SA', 'Saudi Arabia'), +('87.237.228.0', '87.237.231.255', 1475208192, 1475209215, 'AE', 'United Arab Emirates'), +('87.237.232.0', '87.237.239.255', 1475209216, 1475211263, 'UZ', 'Uzbekistan'), +('87.237.240.0', '87.237.247.255', 1475211264, 1475213311, 'DE', 'Germany'), +('87.237.248.0', '87.237.255.255', 1475213312, 1475215359, 'FR', 'France'), +('87.238.0.0', '87.238.31.255', 1475215360, 1475223551, 'IT', 'Italy'), +('87.238.32.0', '87.238.55.255', 1475223552, 1475229695, 'NO', 'Norway'), +('87.238.56.0', '87.238.56.63', 1475229696, 1475229759, 'SE', 'Sweden'), +('87.238.56.64', '87.238.56.255', 1475229760, 1475229951, 'NO', 'Norway'), +('87.238.57.0', '87.238.57.15', 1475229952, 1475229967, 'SE', 'Sweden'), +('87.238.57.16', '87.238.71.255', 1475229968, 1475233791, 'NO', 'Norway'), +('87.238.72.0', '87.238.73.255', 1475233792, 1475234303, 'GB', 'United Kingdom'), +('87.238.74.0', '87.238.74.255', 1475234304, 1475234559, 'IE', 'Ireland'), +('87.238.75.0', '87.238.79.255', 1475234560, 1475235839, 'GB', 'United Kingdom'), +('87.238.80.0', '87.238.87.255', 1475235840, 1475237887, 'IE', 'Ireland'), +('87.238.88.0', '87.238.95.255', 1475237888, 1475239935, 'ES', 'Spain'), +('87.238.96.0', '87.238.103.255', 1475239936, 1475241983, 'RU', 'Russian Federation'), +('87.238.104.0', '87.238.111.255', 1475241984, 1475244031, 'MC', 'Monaco'), +('87.238.112.0', '87.238.113.255', 1475244032, 1475244543, 'DE', 'Germany'), +('87.238.114.0', '87.238.114.255', 1475244544, 1475244799, 'RU', 'Russian Federation'), +('87.238.115.0', '87.238.115.255', 1475244800, 1475245055, 'DE', 'Germany'), +('87.238.116.0', '87.238.116.127', 1475245056, 1475245183, 'IR', 'Iran, Islamic Republic of'), +('87.238.116.128', '87.238.116.159', 1475245184, 1475245215, 'IQ', 'Iraq'), +('87.238.116.160', '87.238.116.255', 1475245216, 1475245311, 'DE', 'Germany'), +('87.238.117.0', '87.238.117.255', 1475245312, 1475245567, 'CV', 'Cape Verde'), +('87.238.118.0', '87.238.119.254', 1475245568, 1475246078, 'SA', 'Saudi Arabia'), +('87.238.119.255', '87.238.119.255', 1475246079, 1475246079, 'DE', 'Germany'), +('87.238.120.0', '87.238.127.255', 1475246080, 1475248127, 'CH', 'Switzerland'), +('87.238.128.0', '87.238.135.255', 1475248128, 1475250175, 'JO', 'Jordan'), +('87.238.136.0', '87.238.143.255', 1475250176, 1475252223, 'DE', 'Germany'), +('87.238.144.0', '87.238.151.255', 1475252224, 1475254271, 'FR', 'France'), +('87.238.152.0', '87.238.159.255', 1475254272, 1475256319, 'UA', 'Ukraine'), +('87.238.160.0', '87.238.163.32', 1475256320, 1475257120, 'BE', 'Belgium'), +('87.238.163.33', '87.238.163.33', 1475257121, 1475257121, 'NL', 'Netherlands'), +('87.238.163.34', '87.238.163.48', 1475257122, 1475257136, 'BE', 'Belgium'), +('87.238.163.49', '87.238.163.49', 1475257137, 1475257137, 'FR', 'France'), +('87.238.163.50', '87.238.163.187', 1475257138, 1475257275, 'BE', 'Belgium'), +('87.238.163.188', '87.238.163.188', 1475257276, 1475257276, 'NL', 'Netherlands'), +('87.238.163.189', '87.238.163.189', 1475257277, 1475257277, 'GB', 'United Kingdom'), +('87.238.163.190', '87.238.163.190', 1475257278, 1475257278, 'BE', 'Belgium'), +('87.238.163.191', '87.238.163.192', 1475257279, 1475257280, 'GB', 'United Kingdom'), +('87.238.163.193', '87.238.163.194', 1475257281, 1475257282, 'NL', 'Netherlands'), +('87.238.163.195', '87.238.163.198', 1475257283, 1475257286, 'BE', 'Belgium'), +('87.238.163.199', '87.238.163.199', 1475257287, 1475257287, 'NL', 'Netherlands'), +('87.238.163.200', '87.238.163.202', 1475257288, 1475257290, 'BE', 'Belgium'), +('87.238.163.203', '87.238.163.203', 1475257291, 1475257291, 'DE', 'Germany'), +('87.238.163.204', '87.238.163.207', 1475257292, 1475257295, 'BE', 'Belgium'), +('87.238.163.208', '87.238.163.208', 1475257296, 1475257296, 'GB', 'United Kingdom'), +('87.238.163.209', '87.238.163.209', 1475257297, 1475257297, 'NL', 'Netherlands'), +('87.238.163.210', '87.238.163.210', 1475257298, 1475257298, 'BE', 'Belgium'), +('87.238.163.211', '87.238.163.211', 1475257299, 1475257299, 'ES', 'Spain'), +('87.238.163.212', '87.238.163.212', 1475257300, 1475257300, 'GB', 'United Kingdom'), +('87.238.163.213', '87.238.167.63', 1475257301, 1475258175, 'BE', 'Belgium'), +('87.238.167.64', '87.238.167.95', 1475258176, 1475258207, 'NL', 'Netherlands'), +('87.238.167.96', '87.238.167.127', 1475258208, 1475258239, 'DE', 'Germany'), +('87.238.167.128', '87.238.167.255', 1475258240, 1475258367, 'BE', 'Belgium'), +('87.238.168.0', '87.238.175.255', 1475258368, 1475260415, 'NL', 'Netherlands'), +('87.238.176.0', '87.238.183.255', 1475260416, 1475262463, 'FR', 'France'), +('87.238.184.0', '87.238.199.255', 1475262464, 1475266559, 'DE', 'Germany'), +('87.238.200.0', '87.238.207.255', 1475266560, 1475268607, 'GB', 'United Kingdom'), +('87.238.208.0', '87.238.215.255', 1475268608, 1475270655, 'RS', 'Serbia'), +('87.238.216.0', '87.238.223.255', 1475270656, 1475272703, 'GB', 'United Kingdom'), +('87.238.224.0', '87.238.231.255', 1475272704, 1475274751, 'BE', 'Belgium'), +('87.238.232.0', '87.238.239.255', 1475274752, 1475276799, 'IT', 'Italy'), +('87.238.240.0', '87.238.247.255', 1475276800, 1475278847, 'ES', 'Spain'), +('87.238.248.0', '87.238.255.255', 1475278848, 1475280895, 'DK', 'Denmark'), +('87.239.0.0', '87.239.7.255', 1475280896, 1475282943, 'PL', 'Poland'), +('87.239.8.0', '87.239.15.255', 1475282944, 1475284991, 'NL', 'Netherlands'), +('87.239.16.0', '87.239.23.255', 1475284992, 1475287039, 'GB', 'United Kingdom'), +('87.239.24.0', '87.239.31.255', 1475287040, 1475289087, 'RU', 'Russian Federation'), +('87.239.40.0', '87.239.47.255', 1475291136, 1475293183, 'PL', 'Poland'), +('87.239.48.0', '87.239.55.255', 1475293184, 1475295231, 'GB', 'United Kingdom'), +('87.239.56.0', '87.239.63.255', 1475295232, 1475297279, 'PL', 'Poland'), +('87.239.64.0', '87.239.71.255', 1475297280, 1475299327, 'DK', 'Denmark'), +('87.239.72.0', '87.239.79.255', 1475299328, 1475301375, 'PL', 'Poland'), +('87.239.80.0', '87.239.87.255', 1475301376, 1475303423, 'LT', 'Lithuania'), +('87.239.88.0', '87.239.95.255', 1475303424, 1475305471, 'PL', 'Poland'), +('87.239.96.0', '87.239.103.255', 1475305472, 1475307519, 'NL', 'Netherlands'), +('87.239.104.0', '87.239.111.255', 1475307520, 1475309567, 'RU', 'Russian Federation'), +('87.239.112.0', '87.239.119.255', 1475309568, 1475311615, 'LT', 'Lithuania'), +('87.239.120.0', '87.239.127.255', 1475311616, 1475313663, 'FI', 'Finland'), +('87.239.128.0', '87.239.143.255', 1475313664, 1475317759, 'DE', 'Germany'), +('87.239.144.0', '87.239.151.255', 1475317760, 1475319807, 'RU', 'Russian Federation'), +('87.239.152.0', '87.239.159.255', 1475319808, 1475321855, 'BG', 'Bulgaria'), +('87.239.160.0', '87.239.167.255', 1475321856, 1475323903, 'RO', 'Romania'), +('87.239.168.0', '87.239.183.255', 1475323904, 1475327999, 'PL', 'Poland'), +('87.239.184.0', '87.239.191.255', 1475328000, 1475330047, 'NL', 'Netherlands'), +('87.239.192.0', '87.239.199.255', 1475330048, 1475332095, 'PL', 'Poland'), +('87.239.200.0', '87.239.207.255', 1475332096, 1475334143, 'LI', 'Liechtenstein'), +('87.239.208.0', '87.239.215.255', 1475334144, 1475336191, 'CH', 'Switzerland'), +('87.239.216.0', '87.239.223.255', 1475336192, 1475338239, 'PL', 'Poland'), +('87.239.224.0', '87.239.231.255', 1475338240, 1475340287, 'RO', 'Romania'), +('87.239.232.0', '87.239.239.255', 1475340288, 1475342335, 'GR', 'Greece'), +('87.239.240.0', '87.239.247.255', 1475342336, 1475344383, 'PL', 'Poland'), +('87.239.248.0', '87.239.255.255', 1475344384, 1475346431, 'RO', 'Romania'), +('87.240.0.0', '87.240.63.255', 1475346432, 1475362815, 'RU', 'Russian Federation'), +('87.240.64.0', '87.240.127.255', 1475362816, 1475379199, 'FR', 'France'), +('87.240.128.0', '87.240.191.255', 1475379200, 1475395583, 'GB', 'United Kingdom'), +('87.240.192.0', '87.240.255.255', 1475395584, 1475411967, 'LU', 'Luxembourg'), +('87.241.0.0', '87.241.1.247', 1475411968, 1475412471, 'IT', 'Italy'), +('87.241.1.248', '87.241.1.255', 1475412472, 1475412479, 'ES', 'Spain'), +('87.241.2.0', '87.241.11.143', 1475412480, 1475414927, 'IT', 'Italy'), +('87.241.11.144', '87.241.11.151', 1475414928, 1475414935, 'GB', 'United Kingdom'), +('87.241.11.152', '87.241.36.55', 1475414936, 1475421239, 'IT', 'Italy'), +('87.241.36.56', '87.241.36.63', 1475421240, 1475421247, 'FR', 'France'), +('87.241.36.64', '87.241.63.255', 1475421248, 1475428351, 'IT', 'Italy'), +('87.241.64.0', '87.241.127.255', 1475428352, 1475444735, 'SE', 'Sweden'), +('87.241.128.0', '87.241.191.255', 1475444736, 1475461119, 'AM', 'Armenia'), +('87.241.192.0', '87.241.255.255', 1475461120, 1475477503, 'RU', 'Russian Federation'), +('87.242.0.0', '87.242.63.255', 1475477504, 1475493887, 'HU', 'Hungary'), +('87.242.64.0', '87.242.127.255', 1475493888, 1475510271, 'RU', 'Russian Federation'), +('87.242.128.0', '87.242.255.255', 1475510272, 1475543039, 'GB', 'United Kingdom'), +('87.243.0.0', '87.243.63.255', 1475543040, 1475559423, 'DE', 'Germany'), +('87.243.64.0', '87.243.127.255', 1475559424, 1475575807, 'GR', 'Greece'), +('87.243.128.0', '87.243.191.255', 1475575808, 1475592191, 'AT', 'Austria'), +('87.243.192.0', '87.243.255.255', 1475592192, 1475608575, 'GB', 'United Kingdom'), +('87.244.0.0', '87.244.63.255', 1475608576, 1475624959, 'RU', 'Russian Federation'), +('87.244.64.0', '87.244.73.255', 1475624960, 1475627519, 'JE', 'Jersey'), +('87.244.74.0', '87.244.74.142', 1475627520, 1475627662, 'GB', 'United Kingdom'), +('87.244.74.143', '87.244.74.143', 1475627663, 1475627663, 'JE', 'Jersey'), +('87.244.74.144', '87.244.74.168', 1475627664, 1475627688, 'GB', 'United Kingdom'), +('87.244.74.169', '87.244.74.175', 1475627689, 1475627695, 'JE', 'Jersey'), +('87.244.74.176', '87.244.74.255', 1475627696, 1475627775, 'GB', 'United Kingdom'), +('87.244.75.0', '87.244.93.255', 1475627776, 1475632639, 'JE', 'Jersey'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('87.244.94.0', '87.244.94.255', 1475632640, 1475632895, 'GB', 'United Kingdom'), +('87.244.95.0', '87.244.100.255', 1475632896, 1475634431, 'JE', 'Jersey'), +('87.244.101.0', '87.244.101.63', 1475634432, 1475634495, 'GB', 'United Kingdom'), +('87.244.101.64', '87.244.101.127', 1475634496, 1475634559, 'JE', 'Jersey'), +('87.244.101.128', '87.244.102.31', 1475634560, 1475634719, 'GB', 'United Kingdom'), +('87.244.102.32', '87.244.102.39', 1475634720, 1475634727, 'JE', 'Jersey'), +('87.244.102.40', '87.244.102.47', 1475634728, 1475634735, 'GB', 'United Kingdom'), +('87.244.102.48', '87.244.102.63', 1475634736, 1475634751, 'JE', 'Jersey'), +('87.244.102.64', '87.244.102.71', 1475634752, 1475634759, 'GB', 'United Kingdom'), +('87.244.102.72', '87.244.102.255', 1475634760, 1475634943, 'JE', 'Jersey'), +('87.244.103.0', '87.244.103.255', 1475634944, 1475635199, 'GB', 'United Kingdom'), +('87.244.104.0', '87.244.107.255', 1475635200, 1475636223, 'JE', 'Jersey'), +('87.244.108.0', '87.244.108.159', 1475636224, 1475636383, 'GB', 'United Kingdom'), +('87.244.108.160', '87.244.108.255', 1475636384, 1475636479, 'JE', 'Jersey'), +('87.244.109.0', '87.244.112.231', 1475636480, 1475637479, 'GB', 'United Kingdom'), +('87.244.112.232', '87.244.112.239', 1475637480, 1475637487, 'JE', 'Jersey'), +('87.244.112.240', '87.244.112.255', 1475637488, 1475637503, 'GB', 'United Kingdom'), +('87.244.113.0', '87.244.118.255', 1475637504, 1475639039, 'JE', 'Jersey'), +('87.244.119.0', '87.244.119.119', 1475639040, 1475639159, 'GB', 'United Kingdom'), +('87.244.119.120', '87.244.119.127', 1475639160, 1475639167, 'JE', 'Jersey'), +('87.244.119.128', '87.244.119.142', 1475639168, 1475639182, 'GB', 'United Kingdom'), +('87.244.119.143', '87.244.119.143', 1475639183, 1475639183, 'JE', 'Jersey'), +('87.244.119.144', '87.244.119.159', 1475639184, 1475639199, 'GB', 'United Kingdom'), +('87.244.119.160', '87.244.119.167', 1475639200, 1475639207, 'JE', 'Jersey'), +('87.244.119.168', '87.244.119.176', 1475639208, 1475639216, 'GB', 'United Kingdom'), +('87.244.119.177', '87.244.119.183', 1475639217, 1475639223, 'JE', 'Jersey'), +('87.244.119.184', '87.244.119.223', 1475639224, 1475639263, 'GB', 'United Kingdom'), +('87.244.119.224', '87.244.119.231', 1475639264, 1475639271, 'BB', 'Barbados'), +('87.244.119.232', '87.244.119.247', 1475639272, 1475639287, 'GB', 'United Kingdom'), +('87.244.119.248', '87.244.119.255', 1475639288, 1475639295, 'JE', 'Jersey'), +('87.244.120.0', '87.244.120.47', 1475639296, 1475639343, 'GB', 'United Kingdom'), +('87.244.120.48', '87.244.120.55', 1475639344, 1475639351, 'JE', 'Jersey'), +('87.244.120.56', '87.244.121.43', 1475639352, 1475639595, 'GB', 'United Kingdom'), +('87.244.121.44', '87.244.121.47', 1475639596, 1475639599, 'JE', 'Jersey'), +('87.244.121.48', '87.244.121.175', 1475639600, 1475639727, 'GB', 'United Kingdom'), +('87.244.121.176', '87.244.127.255', 1475639728, 1475641343, 'JE', 'Jersey'), +('87.244.128.0', '87.244.191.255', 1475641344, 1475657727, 'UA', 'Ukraine'), +('87.244.192.0', '87.244.217.135', 1475657728, 1475664263, 'SK', 'Slovakia'), +('87.244.217.136', '87.244.217.143', 1475664264, 1475664271, 'UA', 'Ukraine'), +('87.244.217.144', '87.244.255.255', 1475664272, 1475674111, 'SK', 'Slovakia'), +('87.245.0.0', '87.245.63.255', 1475674112, 1475690495, 'DE', 'Germany'), +('87.245.64.0', '87.245.127.255', 1475690496, 1475706879, 'CH', 'Switzerland'), +('87.245.128.0', '87.245.191.255', 1475706880, 1475723263, 'RU', 'Russian Federation'), +('87.245.192.0', '87.245.199.255', 1475723264, 1475725311, 'GB', 'United Kingdom'), +('87.245.200.0', '87.245.202.127', 1475725312, 1475725951, 'RU', 'Russian Federation'), +('87.245.202.128', '87.245.215.255', 1475725952, 1475729407, 'GB', 'United Kingdom'), +('87.245.216.0', '87.245.223.255', 1475729408, 1475731455, 'UA', 'Ukraine'), +('87.245.224.0', '87.245.255.255', 1475731456, 1475739647, 'GB', 'United Kingdom'), +('87.246.0.0', '87.246.63.255', 1475739648, 1475756031, 'BG', 'Bulgaria'), +('87.246.64.0', '87.246.127.255', 1475756032, 1475772415, 'GB', 'United Kingdom'), +('87.246.128.0', '87.246.191.255', 1475772416, 1475788799, 'LV', 'Latvia'), +('87.246.192.0', '87.246.255.255', 1475788800, 1475805183, 'PL', 'Poland'), +('87.247.0.0', '87.247.63.255', 1475805184, 1475821567, 'KZ', 'Kazakstan'), +('87.247.64.0', '87.247.127.255', 1475821568, 1475837951, 'LT', 'Lithuania'), +('87.247.128.0', '87.247.159.255', 1475837952, 1475846143, 'GB', 'United Kingdom'), +('87.247.160.0', '87.247.191.255', 1475846144, 1475854335, 'IR', 'Iran, Islamic Republic of'), +('87.247.192.0', '87.247.223.255', 1475854336, 1475862527, 'AT', 'Austria'), +('87.247.224.0', '87.247.239.255', 1475862528, 1475866623, 'IT', 'Italy'), +('87.247.240.0', '87.247.247.255', 1475866624, 1475868671, 'GB', 'United Kingdom'), +('87.247.248.0', '87.247.255.255', 1475868672, 1475870719, 'BG', 'Bulgaria'), +('87.248.0.0', '87.248.31.255', 1475870720, 1475878911, 'NO', 'Norway'), +('87.248.32.0', '87.248.63.255', 1475878912, 1475887103, 'IT', 'Italy'), +('87.248.64.0', '87.248.95.255', 1475887104, 1475895295, 'PL', 'Poland'), +('87.248.96.0', '87.248.96.255', 1475895296, 1475895551, 'GB', 'United Kingdom'), +('87.248.97.0', '87.248.103.255', 1475895552, 1475897343, 'IE', 'Ireland'), +('87.248.104.0', '87.248.113.255', 1475897344, 1475899903, 'GB', 'United Kingdom'), +('87.248.114.0', '87.248.119.255', 1475899904, 1475901439, 'IE', 'Ireland'), +('87.248.120.0', '87.248.127.255', 1475901440, 1475903487, 'CH', 'Switzerland'), +('87.248.128.0', '87.248.159.255', 1475903488, 1475911679, 'IR', 'Iran, Islamic Republic of'), +('87.248.160.0', '87.248.191.255', 1475911680, 1475919871, 'MD', 'Moldova, Republic of'), +('87.248.192.0', '87.248.223.255', 1475919872, 1475928063, 'FR', 'France'), +('87.248.224.0', '87.249.63.255', 1475928064, 1475952639, 'RU', 'Russian Federation'), +('87.249.64.0', '87.249.65.255', 1475952640, 1475953151, 'AE', 'United Arab Emirates'), +('87.249.66.0', '87.249.73.255', 1475953152, 1475955199, 'GB', 'United Kingdom'), +('87.249.74.0', '87.249.76.127', 1475955200, 1475955839, 'NG', 'Nigeria'), +('87.249.76.128', '87.249.76.255', 1475955840, 1475955967, 'GH', 'Ghana'), +('87.249.77.0', '87.249.77.255', 1475955968, 1475956223, 'GB', 'United Kingdom'), +('87.249.78.0', '87.249.79.127', 1475956224, 1475956607, 'NG', 'Nigeria'), +('87.249.79.128', '87.249.79.255', 1475956608, 1475956735, 'GH', 'Ghana'), +('87.249.80.0', '87.249.82.255', 1475956736, 1475957503, 'GB', 'United Kingdom'), +('87.249.83.0', '87.249.83.255', 1475957504, 1475957759, 'IN', 'India'), +('87.249.84.0', '87.249.84.255', 1475957760, 1475958015, 'AF', 'Afghanistan'), +('87.249.85.0', '87.249.88.255', 1475958016, 1475959039, 'GB', 'United Kingdom'), +('87.249.89.0', '87.249.89.7', 1475959040, 1475959047, 'US', 'United States'), +('87.249.89.8', '87.249.95.255', 1475959048, 1475960831, 'GB', 'United Kingdom'), +('87.249.96.0', '87.249.127.255', 1475960832, 1475969023, 'NL', 'Netherlands'), +('87.249.128.0', '87.249.159.255', 1475969024, 1475977215, 'CZ', 'Czech Republic'), +('87.249.160.0', '87.249.191.255', 1475977216, 1475985407, 'SE', 'Sweden'), +('87.249.192.0', '87.249.223.255', 1475985408, 1475993599, 'PL', 'Poland'), +('87.249.224.0', '87.250.31.255', 1475993600, 1476009983, 'RU', 'Russian Federation'), +('87.250.32.0', '87.250.63.255', 1476009984, 1476018175, 'RS', 'Serbia'), +('87.250.64.0', '87.250.95.255', 1476018176, 1476026367, 'IT', 'Italy'), +('87.250.96.0', '87.250.127.255', 1476026368, 1476034559, 'BA', 'Bosnia and Herzegovina'), +('87.250.128.0', '87.250.159.255', 1476034560, 1476042751, 'NL', 'Netherlands'), +('87.250.160.0', '87.250.191.255', 1476042752, 1476050943, 'PL', 'Poland'), +('87.250.192.0', '87.250.255.255', 1476050944, 1476067327, 'RU', 'Russian Federation'), +('87.251.0.0', '87.251.31.255', 1476067328, 1476075519, 'TR', 'Turkey'), +('87.251.32.0', '87.251.63.255', 1476075520, 1476083711, 'NL', 'Netherlands'), +('87.251.64.0', '87.251.191.255', 1476083712, 1476116479, 'RU', 'Russian Federation'), +('87.251.192.0', '87.251.223.255', 1476116480, 1476124671, 'SE', 'Sweden'), +('87.251.224.0', '87.251.255.255', 1476124672, 1476132863, 'PL', 'Poland'), +('87.252.0.0', '87.252.31.255', 1476132864, 1476141055, 'FR', 'France'), +('87.252.32.0', '87.252.63.255', 1476141056, 1476149247, 'GB', 'United Kingdom'), +('87.252.64.0', '87.252.95.255', 1476149248, 1476157439, 'NO', 'Norway'), +('87.252.96.0', '87.252.126.255', 1476157440, 1476165375, 'BH', 'Bahrain'), +('87.252.127.0', '87.252.127.255', 1476165376, 1476165631, 'JO', 'Jordan'), +('87.252.128.0', '87.252.159.255', 1476165632, 1476173823, 'HR', 'Croatia'), +('87.252.160.0', '87.252.191.255', 1476173824, 1476182015, 'BG', 'Bulgaria'), +('87.252.192.0', '87.252.223.255', 1476182016, 1476190207, 'IE', 'Ireland'), +('87.252.224.0', '87.252.255.255', 1476190208, 1476198399, 'BY', 'Belarus'), +('87.253.0.0', '87.253.31.255', 1476198400, 1476206591, 'RU', 'Russian Federation'), +('87.253.32.0', '87.253.63.255', 1476206592, 1476214783, 'GE', 'Georgia'), +('87.253.64.0', '87.253.95.255', 1476214784, 1476222975, 'SE', 'Sweden'), +('87.253.96.0', '87.253.127.255', 1476222976, 1476231167, 'IT', 'Italy'), +('87.253.128.0', '87.253.159.255', 1476231168, 1476239359, 'NL', 'Netherlands'), +('87.253.160.0', '87.253.191.255', 1476239360, 1476247551, 'DE', 'Germany'), +('87.253.192.0', '87.253.255.255', 1476247552, 1476263935, 'RU', 'Russian Federation'), +('87.254.0.0', '87.254.31.255', 1476263936, 1476272127, 'GB', 'United Kingdom'), +('87.254.32.0', '87.254.63.255', 1476272128, 1476280319, 'NO', 'Norway'), +('87.254.64.0', '87.254.95.255', 1476280320, 1476288511, 'IM', 'Isle of Man'), +('87.254.96.0', '87.254.127.255', 1476288512, 1476296703, 'LU', 'Luxembourg'), +('87.254.128.0', '87.254.159.255', 1476296704, 1476304895, 'RU', 'Russian Federation'), +('87.254.160.0', '87.254.191.255', 1476304896, 1476313087, 'BG', 'Bulgaria'), +('87.254.192.0', '87.254.199.255', 1476313088, 1476315135, 'FI', 'Finland'), +('87.254.200.0', '87.254.203.255', 1476315136, 1476316159, 'US', 'United States'), +('87.254.204.0', '87.254.223.255', 1476316160, 1476321279, 'FI', 'Finland'), +('87.254.224.0', '87.254.255.255', 1476321280, 1476329471, 'MC', 'Monaco'), +('87.255.0.0', '87.255.31.255', 1476329472, 1476337663, 'RU', 'Russian Federation'), +('87.255.32.0', '87.255.63.255', 1476337664, 1476345855, 'NL', 'Netherlands'), +('87.255.64.0', '87.255.95.255', 1476345856, 1476354047, 'MD', 'Moldova, Republic of'), +('87.255.96.0', '87.255.107.255', 1476354048, 1476357119, 'KE', 'Kenya'), +('87.255.108.0', '87.255.111.255', 1476357120, 1476358143, 'EU', 'Europe'), +('87.255.112.0', '87.255.127.255', 1476358144, 1476362239, 'KE', 'Kenya'), +('87.255.128.0', '87.255.159.255', 1476362240, 1476370431, 'FR', 'France'), +('87.255.160.0', '87.255.191.255', 1476370432, 1476378623, 'SE', 'Sweden'), +('87.255.192.0', '87.255.223.255', 1476378624, 1476386815, 'KZ', 'Kazakstan'), +('87.255.224.0', '87.255.255.255', 1476386816, 1476395007, 'RU', 'Russian Federation'), +('88.0.0.0', '88.31.255.255', 1476395008, 1478492159, 'ES', 'Spain'), +('88.32.0.0', '88.63.255.255', 1478492160, 1480589311, 'IT', 'Italy'), +('88.64.0.0', '88.79.255.255', 1480589312, 1481637887, 'DE', 'Germany'), +('88.80.0.0', '88.80.31.255', 1481637888, 1481646079, 'SE', 'Sweden'), +('88.80.32.0', '88.80.63.255', 1481646080, 1481654271, 'RU', 'Russian Federation'), +('88.80.64.0', '88.80.95.255', 1481654272, 1481662463, 'IT', 'Italy'), +('88.80.96.0', '88.80.159.255', 1481662464, 1481678847, 'BG', 'Bulgaria'), +('88.80.160.0', '88.80.163.127', 1481678848, 1481679743, 'SE', 'Sweden'), +('88.80.163.128', '88.80.163.159', 1481679744, 1481679775, 'GB', 'United Kingdom'), +('88.80.163.160', '88.80.166.255', 1481679776, 1481680639, 'SE', 'Sweden'), +('88.80.167.0', '88.80.167.3', 1481680640, 1481680643, 'GB', 'United Kingdom'), +('88.80.167.4', '88.80.191.255', 1481680644, 1481687039, 'SE', 'Sweden'), +('88.80.192.0', '88.80.205.223', 1481687040, 1481690591, 'DE', 'Germany'), +('88.80.205.224', '88.80.205.255', 1481690592, 1481690623, 'MA', 'Morocco'), +('88.80.206.0', '88.80.223.255', 1481690624, 1481695231, 'DE', 'Germany'), +('88.80.224.0', '88.80.255.255', 1481695232, 1481703423, 'SK', 'Slovakia'), +('88.81.0.0', '88.81.31.255', 1481703424, 1481711615, 'SA', 'Saudi Arabia'), +('88.81.32.0', '88.81.63.255', 1481711616, 1481719807, 'AT', 'Austria'), +('88.81.64.0', '88.81.95.255', 1481719808, 1481727999, 'CZ', 'Czech Republic'), +('88.81.96.0', '88.81.127.255', 1481728000, 1481736191, 'IE', 'Ireland'), +('88.81.128.0', '88.81.153.255', 1481736192, 1481742847, 'GG', 'Guernsey'), +('88.81.154.0', '88.81.155.255', 1481742848, 1481743359, 'GB', 'United Kingdom'), +('88.81.156.0', '88.81.156.255', 1481743360, 1481743615, 'GG', 'Guernsey'), +('88.81.157.0', '88.81.157.255', 1481743616, 1481743871, 'GB', 'United Kingdom'), +('88.81.158.0', '88.81.159.255', 1481743872, 1481744383, 'GG', 'Guernsey'), +('88.81.160.0', '88.81.191.255', 1481744384, 1481752575, 'IT', 'Italy'), +('88.81.192.0', '88.81.223.255', 1481752576, 1481760767, 'RU', 'Russian Federation'), +('88.81.224.0', '88.81.255.255', 1481760768, 1481768959, 'UA', 'Ukraine'), +('88.82.0.0', '88.82.31.255', 1481768960, 1481777151, 'GB', 'United Kingdom'), +('88.82.32.0', '88.82.63.255', 1481777152, 1481785343, 'BE', 'Belgium'), +('88.82.64.0', '88.82.95.255', 1481785344, 1481793535, 'RU', 'Russian Federation'), +('88.82.96.0', '88.82.127.255', 1481793536, 1481801727, 'LI', 'Liechtenstein'), +('88.82.128.0', '88.82.159.255', 1481801728, 1481809919, 'GB', 'United Kingdom'), +('88.82.160.0', '88.82.191.255', 1481809920, 1481818111, 'RU', 'Russian Federation'), +('88.82.192.0', '88.82.223.255', 1481818112, 1481826303, 'ES', 'Spain'), +('88.82.224.0', '88.82.255.255', 1481826304, 1481834495, 'DE', 'Germany'), +('88.83.0.0', '88.83.31.255', 1481834496, 1481842687, 'GL', 'Greenland'), +('88.83.32.0', '88.83.63.255', 1481842688, 1481850879, 'SE', 'Sweden'), +('88.83.64.0', '88.83.95.255', 1481850880, 1481859071, 'DK', 'Denmark'), +('88.83.96.0', '88.83.127.255', 1481859072, 1481867263, 'GB', 'United Kingdom'), +('88.83.128.0', '88.83.159.255', 1481867264, 1481875455, 'SE', 'Sweden'), +('88.83.160.0', '88.83.191.255', 1481875456, 1481883647, 'CZ', 'Czech Republic'), +('88.83.192.0', '88.83.223.255', 1481883648, 1481891839, 'RU', 'Russian Federation'), +('88.83.224.0', '88.83.228.255', 1481891840, 1481893119, 'CZ', 'Czech Republic'), +('88.83.229.0', '88.83.229.255', 1481893120, 1481893375, 'SK', 'Slovakia'), +('88.83.230.0', '88.83.230.255', 1481893376, 1481893631, 'CZ', 'Czech Republic'), +('88.83.231.0', '88.83.231.255', 1481893632, 1481893887, 'SK', 'Slovakia'), +('88.83.232.0', '88.83.255.255', 1481893888, 1481900031, 'CZ', 'Czech Republic'), +('88.84.0.0', '88.84.31.255', 1481900032, 1481908223, 'CH', 'Switzerland'), +('88.84.32.0', '88.84.63.255', 1481908224, 1481916415, 'NO', 'Norway'), +('88.84.64.0', '88.84.95.255', 1481916416, 1481924607, 'ES', 'Spain'), +('88.84.96.0', '88.84.127.255', 1481924608, 1481932799, 'SA', 'Saudi Arabia'), +('88.84.128.0', '88.84.159.255', 1481932800, 1481940991, 'DE', 'Germany'), +('88.84.160.0', '88.84.191.255', 1481940992, 1481949183, 'NO', 'Norway'), +('88.84.192.0', '88.84.223.255', 1481949184, 1481957375, 'RU', 'Russian Federation'), +('88.84.224.0', '88.84.255.255', 1481957376, 1481965567, 'SE', 'Sweden'), +('88.85.0.0', '88.85.31.255', 1481965568, 1481973759, 'CH', 'Switzerland'), +('88.85.32.0', '88.85.63.255', 1481973760, 1481981951, 'FO', 'Faroe Islands'), +('88.85.64.0', '88.85.72.127', 1481981952, 1481984127, 'NL', 'Netherlands'), +('88.85.72.128', '88.85.72.255', 1481984128, 1481984255, 'PA', 'Panama'), +('88.85.73.0', '88.85.73.127', 1481984256, 1481984383, 'NL', 'Netherlands'), +('88.85.73.128', '88.85.73.255', 1481984384, 1481984511, 'GI', 'Gibraltar'), +('88.85.74.0', '88.85.74.127', 1481984512, 1481984639, 'CY', 'Cyprus'), +('88.85.74.128', '88.85.75.255', 1481984640, 1481985023, 'NL', 'Netherlands'), +('88.85.76.0', '88.85.76.255', 1481985024, 1481985279, 'MT', 'Malta'), +('88.85.77.0', '88.85.87.127', 1481985280, 1481987967, 'NL', 'Netherlands'), +('88.85.87.128', '88.85.87.191', 1481987968, 1481988031, 'PA', 'Panama'), +('88.85.87.192', '88.85.87.255', 1481988032, 1481988095, 'NL', 'Netherlands'), +('88.85.88.0', '88.85.88.63', 1481988096, 1481988159, 'GI', 'Gibraltar'), +('88.85.88.64', '88.85.88.71', 1481988160, 1481988167, 'RU', 'Russian Federation'), +('88.85.88.72', '88.85.88.223', 1481988168, 1481988319, 'NL', 'Netherlands'), +('88.85.88.224', '88.85.88.239', 1481988320, 1481988335, 'BZ', 'Belize'), +('88.85.88.240', '88.85.88.255', 1481988336, 1481988351, 'NL', 'Netherlands'), +('88.85.89.0', '88.85.89.255', 1481988352, 1481988607, 'GB', 'United Kingdom'), +('88.85.90.0', '88.85.95.255', 1481988608, 1481990143, 'NL', 'Netherlands'), +('88.85.96.0', '88.85.127.255', 1481990144, 1481998335, 'MK', 'Macedonia'), +('88.85.128.0', '88.85.159.255', 1481998336, 1482006527, 'FI', 'Finland'), +('88.85.160.0', '88.85.223.255', 1482006528, 1482022911, 'RU', 'Russian Federation'), +('88.85.224.0', '88.85.255.255', 1482022912, 1482031103, 'SA', 'Saudi Arabia'), +('88.86.0.0', '88.86.31.255', 1482031104, 1482039295, 'SY', 'Syrian Arab Republic'), +('88.86.32.0', '88.86.63.255', 1482039296, 1482047487, 'SE', 'Sweden'), +('88.86.64.0', '88.86.95.255', 1482047488, 1482055679, 'RU', 'Russian Federation'), +('88.86.96.0', '88.86.127.255', 1482055680, 1482063871, 'CZ', 'Czech Republic'), +('88.86.128.0', '88.86.159.255', 1482063872, 1482072063, 'FI', 'Finland'), +('88.86.160.0', '88.86.175.255', 1482072064, 1482076159, 'IT', 'Italy'), +('88.86.176.0', '88.86.176.63', 1482076160, 1482076223, 'CH', 'Switzerland'), +('88.86.176.64', '88.86.176.223', 1482076224, 1482076383, 'IT', 'Italy'), +('88.86.176.224', '88.86.176.255', 1482076384, 1482076415, 'MT', 'Malta'), +('88.86.177.0', '88.86.191.255', 1482076416, 1482080255, 'IT', 'Italy'), +('88.86.192.0', '88.86.223.255', 1482080256, 1482088447, 'RU', 'Russian Federation'), +('88.86.224.0', '88.86.255.255', 1482088448, 1482096639, 'FR', 'France'), +('88.87.0.0', '88.87.31.255', 1482096640, 1482104831, 'BG', 'Bulgaria'), +('88.87.32.0', '88.87.63.255', 1482104832, 1482113023, 'NO', 'Norway'), +('88.87.64.0', '88.87.95.255', 1482113024, 1482121215, 'RU', 'Russian Federation'), +('88.87.96.0', '88.87.119.19', 1482121216, 1482127123, 'IT', 'Italy'), +('88.87.119.20', '88.87.119.23', 1482127124, 1482127127, 'TR', 'Turkey'), +('88.87.119.24', '88.87.127.255', 1482127128, 1482129407, 'IT', 'Italy'), +('88.87.128.0', '88.87.159.255', 1482129408, 1482137599, 'ES', 'Spain'), +('88.87.160.0', '88.87.191.255', 1482137600, 1482145791, 'IE', 'Ireland'), +('88.87.192.0', '88.87.223.255', 1482145792, 1482153983, 'ES', 'Spain'), +('88.87.224.0', '88.87.255.255', 1482153984, 1482162175, 'HU', 'Hungary'), +('88.88.0.0', '88.95.255.255', 1482162176, 1482686463, 'NO', 'Norway'), +('88.96.0.0', '88.99.255.255', 1482686464, 1482948607, 'GB', 'United Kingdom'), +('88.100.0.0', '88.103.255.255', 1482948608, 1483210751, 'CZ', 'Czech Republic'), +('88.104.0.0', '88.111.255.255', 1483210752, 1483735039, 'GB', 'United Kingdom'), +('88.112.0.0', '88.115.255.255', 1483735040, 1483997183, 'FI', 'Finland'), +('88.116.0.0', '88.116.160.79', 1483997184, 1484038223, 'AT', 'Austria'), +('88.116.160.80', '88.116.160.83', 1484038224, 1484038227, 'A2', 'Satellite Provider'), +('88.116.160.84', '88.116.160.99', 1484038228, 1484038243, 'AT', 'Austria'), +('88.116.160.100', '88.116.160.103', 1484038244, 1484038247, 'A2', 'Satellite Provider'), +('88.116.160.104', '88.116.160.107', 1484038248, 1484038251, 'AT', 'Austria'), +('88.116.160.108', '88.116.160.111', 1484038252, 1484038255, 'A2', 'Satellite Provider'), +('88.116.160.112', '88.116.160.247', 1484038256, 1484038391, 'AT', 'Austria'), +('88.116.160.248', '88.116.160.255', 1484038392, 1484038399, 'A2', 'Satellite Provider'), +('88.116.161.0', '88.117.255.255', 1484038400, 1484128255, 'AT', 'Austria'), +('88.118.0.0', '88.119.255.255', 1484128256, 1484259327, 'LT', 'Lithuania'), +('88.120.0.0', '88.127.255.255', 1484259328, 1484783615, 'FR', 'France'), +('88.128.0.0', '88.128.255.255', 1484783616, 1484849151, 'DE', 'Germany'), +('88.129.0.0', '88.129.255.255', 1484849152, 1484914687, 'SE', 'Sweden'), +('88.130.0.0', '88.130.255.255', 1484914688, 1484980223, 'DE', 'Germany'), +('88.131.0.0', '88.131.255.255', 1484980224, 1485045759, 'SE', 'Sweden'), +('88.132.0.0', '88.132.255.255', 1485045760, 1485111295, 'HU', 'Hungary'), +('88.133.0.0', '88.134.255.255', 1485111296, 1485242367, 'DE', 'Germany'), +('88.135.0.0', '88.135.255.255', 1485242368, 1485307903, 'GB', 'United Kingdom'), +('88.136.0.0', '88.143.255.255', 1485307904, 1485832191, 'FR', 'France'), +('88.144.0.0', '88.145.255.255', 1485832192, 1485963263, 'GB', 'United Kingdom'), +('88.146.0.0', '88.146.255.255', 1485963264, 1486028799, 'CZ', 'Czech Republic'), +('88.147.0.0', '88.147.127.255', 1486028800, 1486061567, 'BE', 'Belgium'), +('88.147.128.0', '88.147.255.255', 1486061568, 1486094335, 'RU', 'Russian Federation'), +('88.148.0.0', '88.148.127.255', 1486094336, 1486127103, 'ES', 'Spain'), +('88.148.128.0', '88.148.255.255', 1486127104, 1486159871, 'FI', 'Finland'), +('88.149.0.0', '88.149.127.255', 1486159872, 1486192639, 'IS', 'Iceland'), +('88.149.128.0', '88.149.202.103', 1486192640, 1486211687, 'IT', 'Italy'), +('88.149.202.104', '88.149.202.111', 1486211688, 1486211695, 'GB', 'United Kingdom'), +('88.149.202.112', '88.149.255.255', 1486211696, 1486225407, 'IT', 'Italy'), +('88.150.0.0', '88.150.127.255', 1486225408, 1486258175, 'DE', 'Germany'), +('88.150.128.0', '88.150.255.255', 1486258176, 1486290943, 'RS', 'Serbia'), +('88.151.0.0', '88.151.0.15', 1486290944, 1486290959, 'IE', 'Ireland'), +('88.151.0.16', '88.151.0.127', 1486290960, 1486291071, 'GB', 'United Kingdom'), +('88.151.0.128', '88.151.0.159', 1486291072, 1486291103, 'IE', 'Ireland'), +('88.151.0.160', '88.151.0.255', 1486291104, 1486291199, 'GB', 'United Kingdom'), +('88.151.1.0', '88.151.1.15', 1486291200, 1486291215, 'IE', 'Ireland'), +('88.151.1.16', '88.151.1.255', 1486291216, 1486291455, 'GB', 'United Kingdom'), +('88.151.2.0', '88.151.2.31', 1486291456, 1486291487, 'IE', 'Ireland'), +('88.151.2.32', '88.151.7.255', 1486291488, 1486292991, 'GB', 'United Kingdom'), +('88.151.8.0', '88.151.15.255', 1486292992, 1486295039, 'RU', 'Russian Federation'), +('88.151.16.0', '88.151.23.255', 1486295040, 1486297087, 'ES', 'Spain'), +('88.151.24.0', '88.151.31.255', 1486297088, 1486299135, 'IE', 'Ireland'), +('88.151.32.0', '88.151.39.255', 1486299136, 1486301183, 'NL', 'Netherlands'), +('88.151.40.0', '88.151.42.255', 1486301184, 1486301951, 'DK', 'Denmark'), +('88.151.43.0', '88.151.45.255', 1486301952, 1486302719, 'SE', 'Sweden'), +('88.151.46.0', '88.151.46.143', 1486302720, 1486302863, 'DK', 'Denmark'), +('88.151.46.144', '88.151.46.159', 1486302864, 1486302879, 'SE', 'Sweden'), +('88.151.46.160', '88.151.47.255', 1486302880, 1486303231, 'DK', 'Denmark'), +('88.151.48.0', '88.151.54.255', 1486303232, 1486305023, 'IS', 'Iceland'), +('88.151.55.0', '88.151.55.255', 1486305024, 1486305279, 'GB', 'United Kingdom'), +('88.151.56.0', '88.151.63.255', 1486305280, 1486307327, 'NO', 'Norway'), +('88.151.64.0', '88.151.71.255', 1486307328, 1486309375, 'DE', 'Germany'), +('88.151.72.0', '88.151.79.255', 1486309376, 1486311423, 'AT', 'Austria'), +('88.151.80.0', '88.151.87.255', 1486311424, 1486313471, 'IE', 'Ireland'), +('88.151.88.0', '88.151.103.255', 1486313472, 1486317567, 'HU', 'Hungary'), +('88.151.104.0', '88.151.114.255', 1486317568, 1486320383, 'RU', 'Russian Federation'), +('88.151.115.0', '88.151.115.255', 1486320384, 1486320639, 'US', 'United States'), +('88.151.116.0', '88.151.119.255', 1486320640, 1486321663, 'RU', 'Russian Federation'), +('88.151.120.0', '88.151.120.159', 1486321664, 1486321823, 'EU', 'Europe'), +('88.151.120.160', '88.151.120.191', 1486321824, 1486321855, 'US', 'United States'), +('88.151.120.192', '88.151.120.223', 1486321856, 1486321887, 'NL', 'Netherlands'), +('88.151.120.224', '88.151.120.255', 1486321888, 1486321919, 'US', 'United States'), +('88.151.121.0', '88.151.125.255', 1486321920, 1486323199, 'EU', 'Europe'), +('88.151.126.0', '88.151.126.15', 1486323200, 1486323215, 'GU', 'Guam'), +('88.151.126.16', '88.151.126.31', 1486323216, 1486323231, 'NL', 'Netherlands'), +('88.151.126.32', '88.151.126.39', 1486323232, 1486323239, 'GB', 'United Kingdom'), +('88.151.126.40', '88.151.127.255', 1486323240, 1486323711, 'EU', 'Europe'), +('88.151.128.0', '88.151.135.255', 1486323712, 1486325759, 'RU', 'Russian Federation'), +('88.151.136.0', '88.151.143.255', 1486325760, 1486327807, 'SA', 'Saudi Arabia'), +('88.151.144.0', '88.151.151.255', 1486327808, 1486329855, 'GB', 'United Kingdom'), +('88.151.152.0', '88.151.159.255', 1486329856, 1486331903, 'FR', 'France'), +('88.151.160.0', '88.151.160.15', 1486331904, 1486331919, 'NL', 'Netherlands'), +('88.151.160.16', '88.151.167.255', 1486331920, 1486333951, 'NO', 'Norway'), +('88.151.168.0', '88.151.175.255', 1486333952, 1486335999, 'SE', 'Sweden'), +('88.151.176.0', '88.151.183.255', 1486336000, 1486338047, 'KZ', 'Kazakstan'), +('88.151.184.0', '88.151.191.255', 1486338048, 1486340095, 'RU', 'Russian Federation'), +('88.151.192.0', '88.151.199.255', 1486340096, 1486342143, 'AZ', 'Azerbaijan'), +('88.151.200.0', '88.151.207.255', 1486342144, 1486344191, 'RU', 'Russian Federation'), +('88.151.208.0', '88.151.215.255', 1486344192, 1486346239, 'NO', 'Norway'), +('88.151.216.0', '88.151.223.255', 1486346240, 1486348287, 'GB', 'United Kingdom'), +('88.151.224.0', '88.151.231.255', 1486348288, 1486350335, 'US', 'United States'), +('88.151.232.0', '88.151.239.255', 1486350336, 1486352383, 'TR', 'Turkey'), +('88.151.240.0', '88.151.244.127', 1486352384, 1486353535, 'BE', 'Belgium'), +('88.151.244.128', '88.151.244.255', 1486353536, 1486353663, 'NL', 'Netherlands'), +('88.151.245.0', '88.151.247.255', 1486353664, 1486354431, 'BE', 'Belgium'), +('88.151.248.0', '88.151.255.255', 1486354432, 1486356479, 'RU', 'Russian Federation'), +('88.152.0.0', '88.153.255.255', 1486356480, 1486487551, 'DE', 'Germany'), +('88.154.0.0', '88.155.255.255', 1486487552, 1486618623, 'UA', 'Ukraine'), +('88.156.0.0', '88.156.255.255', 1486618624, 1486684159, 'PL', 'Poland'), +('88.157.0.0', '88.157.255.255', 1486684160, 1486749695, 'PT', 'Portugal'), +('88.158.0.0', '88.158.255.255', 1486749696, 1486815231, 'RO', 'Romania'), +('88.159.0.0', '88.159.255.255', 1486815232, 1486880767, 'NL', 'Netherlands'), +('88.160.0.0', '88.191.255.255', 1486880768, 1488977919, 'FR', 'France'), +('88.192.0.0', '88.195.255.255', 1488977920, 1489240063, 'FI', 'Finland'), +('88.196.0.0', '88.196.255.255', 1489240064, 1489305599, 'EE', 'Estonia'), +('88.197.0.0', '88.197.127.255', 1489305600, 1489338367, 'GR', 'Greece'), +('88.197.128.0', '88.197.255.255', 1489338368, 1489371135, 'BE', 'Belgium'), +('88.198.0.0', '88.198.255.255', 1489371136, 1489436671, 'DE', 'Germany'), +('88.199.0.0', '88.199.255.255', 1489436672, 1489502207, 'PL', 'Poland'), +('88.200.0.0', '88.200.127.255', 1489502208, 1489534975, 'SI', 'Slovenia'), +('88.200.128.0', '88.200.255.255', 1489534976, 1489567743, 'RU', 'Russian Federation'), +('88.201.0.0', '88.201.127.255', 1489567744, 1489600511, 'BH', 'Bahrain'), +('88.201.128.0', '88.201.255.255', 1489600512, 1489633279, 'RU', 'Russian Federation'), +('88.202.0.0', '88.202.7.255', 1489633280, 1489635327, 'IT', 'Italy'), +('88.202.8.0', '88.202.9.254', 1489635328, 1489635838, 'GB', 'United Kingdom'), +('88.202.9.255', '88.202.9.255', 1489635839, 1489635839, 'A2', 'Satellite Provider'), +('88.202.10.0', '88.202.13.255', 1489635840, 1489636863, 'IT', 'Italy'), +('88.202.14.0', '88.202.14.255', 1489636864, 1489637119, 'FR', 'France'), +('88.202.15.0', '88.202.17.255', 1489637120, 1489637887, 'IT', 'Italy'), +('88.202.18.0', '88.202.19.255', 1489637888, 1489638399, 'GB', 'United Kingdom'), +('88.202.20.0', '88.202.20.255', 1489638400, 1489638655, 'IT', 'Italy'), +('88.202.21.0', '88.202.21.255', 1489638656, 1489638911, 'FR', 'France'), +('88.202.22.0', '88.202.28.255', 1489638912, 1489640703, 'IT', 'Italy'), +('88.202.29.0', '88.202.29.255', 1489640704, 1489640959, 'FR', 'France'), +('88.202.30.0', '88.202.35.255', 1489640960, 1489642495, 'IT', 'Italy'), +('88.202.36.0', '88.202.36.255', 1489642496, 1489642751, 'FR', 'France'), +('88.202.37.0', '88.202.43.255', 1489642752, 1489644543, 'IT', 'Italy'), +('88.202.44.0', '88.202.45.255', 1489644544, 1489645055, 'GB', 'United Kingdom'), +('88.202.46.0', '88.202.47.255', 1489645056, 1489645567, 'IT', 'Italy'), +('88.202.48.0', '88.202.50.255', 1489645568, 1489646335, 'GB', 'United Kingdom'), +('88.202.51.0', '88.202.51.255', 1489646336, 1489646591, 'A2', 'Satellite Provider'), +('88.202.52.0', '88.202.52.255', 1489646592, 1489646847, 'GB', 'United Kingdom'), +('88.202.53.0', '88.202.53.255', 1489646848, 1489647103, 'IT', 'Italy'), +('88.202.54.0', '88.202.54.255', 1489647104, 1489647359, 'GB', 'United Kingdom'), +('88.202.55.0', '88.202.59.255', 1489647360, 1489648639, 'IT', 'Italy'), +('88.202.60.0', '88.202.60.255', 1489648640, 1489648895, 'GB', 'United Kingdom'), +('88.202.61.0', '88.202.62.255', 1489648896, 1489649407, 'IT', 'Italy'), +('88.202.63.0', '88.202.67.255', 1489649408, 1489650687, 'FR', 'France'), +('88.202.68.0', '88.202.69.255', 1489650688, 1489651199, 'A2', 'Satellite Provider'), +('88.202.70.0', '88.202.79.255', 1489651200, 1489653759, 'IT', 'Italy'), +('88.202.80.0', '88.202.95.255', 1489653760, 1489657855, 'A2', 'Satellite Provider'), +('88.202.96.0', '88.202.111.255', 1489657856, 1489661951, 'IT', 'Italy'), +('88.202.112.0', '88.202.114.255', 1489661952, 1489662719, 'GB', 'United Kingdom'), +('88.202.115.0', '88.202.115.255', 1489662720, 1489662975, 'ZA', 'South Africa'), +('88.202.116.0', '88.202.117.255', 1489662976, 1489663487, 'FR', 'France'), +('88.202.118.0', '88.202.119.255', 1489663488, 1489663999, 'ES', 'Spain'), +('88.202.120.0', '88.202.121.255', 1489664000, 1489664511, 'LY', 'Libyan Arab Jamahiriya'), +('88.202.122.0', '88.202.123.255', 1489664512, 1489665023, 'A2', 'Satellite Provider'), +('88.202.124.0', '88.202.124.255', 1489665024, 1489665279, 'ZA', 'South Africa'), +('88.202.125.0', '88.202.127.255', 1489665280, 1489666047, 'IT', 'Italy'), +('88.202.128.0', '88.202.255.255', 1489666048, 1489698815, 'GB', 'United Kingdom'), +('88.203.0.0', '88.203.127.255', 1489698816, 1489731583, 'MT', 'Malta'), +('88.203.128.0', '88.203.255.255', 1489731584, 1489764351, 'BG', 'Bulgaria'), +('88.204.0.0', '88.204.127.255', 1489764352, 1489797119, 'RU', 'Russian Federation'), +('88.204.128.0', '88.204.255.255', 1489797120, 1489829887, 'KZ', 'Kazakstan'), +('88.205.0.0', '88.205.127.255', 1489829888, 1489862655, 'DE', 'Germany'), +('88.205.128.0', '88.206.127.255', 1489862656, 1489928191, 'RU', 'Russian Federation'), +('88.206.128.0', '88.206.255.255', 1489928192, 1489960959, 'SE', 'Sweden'), +('88.207.0.0', '88.207.127.255', 1489960960, 1489993727, 'HR', 'Croatia'), +('88.207.128.0', '88.207.255.255', 1489993728, 1490026495, 'LU', 'Luxembourg'), +('88.208.0.0', '88.208.7.255', 1490026496, 1490028543, 'US', 'United States'), +('88.208.8.0', '88.208.9.255', 1490028544, 1490029055, 'UA', 'Ukraine'), +('88.208.10.0', '88.208.55.255', 1490029056, 1490040831, 'NL', 'Netherlands'), +('88.208.56.0', '88.208.59.255', 1490040832, 1490041855, 'UA', 'Ukraine'), +('88.208.60.0', '88.208.91.87', 1490041856, 1490049879, 'CZ', 'Czech Republic'), +('88.208.91.88', '88.208.91.95', 1490049880, 1490049887, 'AT', 'Austria'), +('88.208.91.96', '88.208.91.127', 1490049888, 1490049919, 'CZ', 'Czech Republic'), +('88.208.91.128', '88.208.91.191', 1490049920, 1490049983, 'PL', 'Poland'), +('88.208.91.192', '88.208.91.239', 1490049984, 1490050031, 'CZ', 'Czech Republic'), +('88.208.91.240', '88.208.91.255', 1490050032, 1490050047, 'SK', 'Slovakia'), +('88.208.92.0', '88.208.104.255', 1490050048, 1490053375, 'CZ', 'Czech Republic'), +('88.208.105.0', '88.208.107.255', 1490053376, 1490054143, 'PL', 'Poland'), +('88.208.108.0', '88.208.127.255', 1490054144, 1490059263, 'CZ', 'Czech Republic'), +('88.208.128.0', '88.208.191.255', 1490059264, 1490075647, 'DE', 'Germany'), +('88.208.192.0', '88.208.255.255', 1490075648, 1490092031, 'GB', 'United Kingdom'), +('88.209.0.0', '88.209.63.255', 1490092032, 1490108415, 'DE', 'Germany'), +('88.209.64.0', '88.209.83.255', 1490108416, 1490113535, 'MC', 'Monaco'), +('88.209.84.0', '88.209.85.255', 1490113536, 1490114047, 'FR', 'France'), +('88.209.86.0', '88.209.87.255', 1490114048, 1490114559, 'MC', 'Monaco'), +('88.209.88.0', '88.209.125.255', 1490114560, 1490124287, 'FR', 'France'), +('88.209.126.0', '88.209.127.255', 1490124288, 1490124799, 'MC', 'Monaco'), +('88.209.128.0', '88.209.255.255', 1490124800, 1490157567, 'HU', 'Hungary'), +('88.210.0.0', '88.210.63.255', 1490157568, 1490173951, 'RU', 'Russian Federation'), +('88.210.64.0', '88.210.127.255', 1490173952, 1490190335, 'PT', 'Portugal'), +('88.210.128.0', '88.210.151.255', 1490190336, 1490196479, 'GB', 'United Kingdom'), +('88.210.152.0', '88.210.152.255', 1490196480, 1490196735, 'AL', 'Albania'), +('88.210.153.0', '88.210.153.255', 1490196736, 1490196991, 'CZ', 'Czech Republic'), +('88.210.154.0', '88.210.154.255', 1490196992, 1490197247, 'IE', 'Ireland'), +('88.210.155.0', '88.210.191.255', 1490197248, 1490206719, 'GB', 'United Kingdom'), +('88.210.192.0', '88.210.255.255', 1490206720, 1490223103, 'GE', 'Georgia'), +('88.211.0.0', '88.211.127.255', 1490223104, 1490255871, 'GB', 'United Kingdom'), +('88.211.128.0', '88.211.191.255', 1490255872, 1490272255, 'NL', 'Netherlands'), +('88.211.192.0', '88.211.255.255', 1490272256, 1490288639, 'GB', 'United Kingdom'), +('88.212.0.0', '88.212.63.255', 1490288640, 1490305023, 'SK', 'Slovakia'), +('88.212.64.0', '88.212.127.255', 1490305024, 1490321407, 'DK', 'Denmark'), +('88.212.128.0', '88.212.191.255', 1490321408, 1490337791, 'GB', 'United Kingdom'), +('88.212.192.0', '88.212.255.255', 1490337792, 1490354175, 'RU', 'Russian Federation'), +('88.213.0.0', '88.213.127.255', 1490354176, 1490386943, 'SA', 'Saudi Arabia'), +('88.213.128.0', '88.213.191.255', 1490386944, 1490403327, 'IT', 'Italy'), +('88.213.192.0', '88.213.255.255', 1490403328, 1490419711, 'BG', 'Bulgaria'), +('88.214.0.0', '88.214.63.255', 1490419712, 1490436095, 'DE', 'Germany'), +('88.214.64.0', '88.214.127.255', 1490436096, 1490452479, 'UA', 'Ukraine'), +('88.214.128.0', '88.214.191.255', 1490452480, 1490468863, 'PT', 'Portugal'), +('88.214.192.0', '88.214.205.255', 1490468864, 1490472447, 'GB', 'United Kingdom'), +('88.214.206.0', '88.214.206.255', 1490472448, 1490472703, 'US', 'United States'), +('88.214.207.0', '88.214.211.255', 1490472704, 1490473983, 'GB', 'United Kingdom'), +('88.214.212.0', '88.214.212.255', 1490473984, 1490474239, 'US', 'United States'), +('88.214.213.0', '88.214.251.255', 1490474240, 1490484223, 'GB', 'United Kingdom'), +('88.214.252.0', '88.214.252.255', 1490484224, 1490484479, 'US', 'United States'), +('88.214.253.0', '88.215.63.255', 1490484480, 1490501631, 'GB', 'United Kingdom'), +('88.215.64.0', '88.215.127.255', 1490501632, 1490518015, 'DE', 'Germany'), +('88.215.128.0', '88.215.191.255', 1490518016, 1490534399, 'RU', 'Russian Federation'), +('88.215.192.0', '88.215.255.255', 1490534400, 1490550783, 'DE', 'Germany'), +('88.216.0.0', '88.216.255.255', 1490550784, 1490616319, 'LT', 'Lithuania'), +('88.217.0.0', '88.217.255.255', 1490616320, 1490681855, 'DE', 'Germany'), +('88.218.0.0', '88.218.255.255', 1490681856, 1490747391, 'GR', 'Greece'), +('88.219.0.0', '88.219.255.255', 1490747392, 1490812927, 'FR', 'France'), +('88.220.0.0', '88.220.255.255', 1490812928, 1490878463, 'PL', 'Poland'), +('88.221.0.0', '88.221.3.255', 1490878464, 1490879487, 'DE', 'Germany'), +('88.221.4.0', '88.221.7.255', 1490879488, 1490880511, 'US', 'United States'), +('88.221.8.0', '88.221.11.255', 1490880512, 1490881535, 'FR', 'France'), +('88.221.12.0', '88.221.15.255', 1490881536, 1490882559, 'EU', 'Europe'), +('88.221.16.0', '88.221.19.255', 1490882560, 1490883583, 'US', 'United States'), +('88.221.20.0', '88.221.27.255', 1490883584, 1490885631, 'EU', 'Europe'), +('88.221.28.0', '88.221.31.255', 1490885632, 1490886655, 'US', 'United States'), +('88.221.32.0', '88.221.99.255', 1490886656, 1490904063, 'EU', 'Europe'), +('88.221.100.0', '88.221.103.255', 1490904064, 1490905087, 'US', 'United States'), +('88.221.104.0', '88.221.119.255', 1490905088, 1490909183, 'EU', 'Europe'), +('88.221.120.0', '88.221.123.255', 1490909184, 1490910207, 'US', 'United States'), +('88.221.124.0', '88.221.135.255', 1490910208, 1490913279, 'EU', 'Europe'), +('88.221.136.0', '88.221.143.255', 1490913280, 1490915327, 'US', 'United States'), +('88.221.144.0', '88.221.151.255', 1490915328, 1490917375, 'IT', 'Italy'), +('88.221.152.0', '88.221.159.255', 1490917376, 1490919423, 'IL', 'Israel'), +('88.221.160.0', '88.221.191.255', 1490919424, 1490927615, 'EU', 'Europe'), +('88.221.192.0', '88.221.199.255', 1490927616, 1490929663, 'FR', 'France'), +('88.221.200.0', '88.221.207.255', 1490929664, 1490931711, 'EU', 'Europe'), +('88.221.208.0', '88.221.215.255', 1490931712, 1490933759, 'DE', 'Germany'), +('88.221.216.0', '88.221.218.255', 1490933760, 1490934527, 'EU', 'Europe'), +('88.221.219.0', '88.221.219.255', 1490934528, 1490934783, 'IL', 'Israel'), +('88.221.220.0', '88.221.220.255', 1490934784, 1490935039, 'EU', 'Europe'), +('88.221.221.0', '88.221.221.255', 1490935040, 1490935295, 'ES', 'Spain'), +('88.221.222.0', '88.221.255.255', 1490935296, 1490943999, 'EU', 'Europe'), +('88.222.0.0', '88.223.255.255', 1490944000, 1491075071, 'LT', 'Lithuania'), +('88.224.0.0', '88.255.255.255', 1491075072, 1493172223, 'TR', 'Turkey'), +('89.2.0.0', '89.3.255.255', 1493303296, 1493434367, 'FR', 'France'), +('89.4.0.0', '89.5.255.255', 1493434368, 1493565439, 'SA', 'Saudi Arabia'), +('89.6.0.0', '89.7.255.255', 1493565440, 1493696511, 'ES', 'Spain'), +('89.8.0.0', '89.11.255.255', 1493696512, 1493958655, 'NO', 'Norway'), +('89.12.0.0', '89.15.255.255', 1493958656, 1494220799, 'DE', 'Germany'), +('89.16.0.0', '89.16.31.255', 1494220800, 1494228991, 'FR', 'France'), +('89.16.32.0', '89.16.63.255', 1494228992, 1494237183, 'RU', 'Russian Federation'), +('89.16.64.0', '89.16.95.255', 1494237184, 1494245375, 'IE', 'Ireland'), +('89.16.96.0', '89.16.127.255', 1494245376, 1494253567, 'RU', 'Russian Federation'), +('89.16.128.0', '89.16.159.255', 1494253568, 1494261759, 'DE', 'Germany'), +('89.16.160.0', '89.16.191.255', 1494261760, 1494269951, 'GB', 'United Kingdom'), +('89.16.192.0', '89.16.223.255', 1494269952, 1494278143, 'AT', 'Austria'), +('89.16.224.0', '89.16.255.255', 1494278144, 1494286335, 'GB', 'United Kingdom'), +('89.17.0.0', '89.17.31.255', 1494286336, 1494294527, 'HR', 'Croatia'), +('89.17.32.0', '89.17.63.255', 1494294528, 1494302719, 'RU', 'Russian Federation'), +('89.17.64.0', '89.17.95.255', 1494302720, 1494310911, 'FI', 'Finland'), +('89.17.96.0', '89.17.127.255', 1494310912, 1494319103, 'LB', 'Lebanon'), +('89.17.128.0', '89.17.159.255', 1494319104, 1494327295, 'MT', 'Malta'), +('89.17.160.0', '89.17.191.255', 1494327296, 1494335487, 'IT', 'Italy'), +('89.17.192.0', '89.17.223.255', 1494335488, 1494343679, 'ES', 'Spain'), +('89.17.224.0', '89.17.255.255', 1494343680, 1494351871, 'PL', 'Poland'), +('89.18.0.0', '89.18.31.255', 1494351872, 1494360063, 'RO', 'Romania'), +('89.18.32.0', '89.18.63.255', 1494360064, 1494368255, 'HR', 'Croatia'), +('89.18.64.0', '89.18.95.255', 1494368256, 1494376447, 'IE', 'Ireland'), +('89.18.96.0', '89.18.127.255', 1494376448, 1494384639, 'SE', 'Sweden'), +('89.18.128.0', '89.18.159.255', 1494384640, 1494392831, 'RU', 'Russian Federation'), +('89.18.160.0', '89.18.185.255', 1494392832, 1494399487, 'NL', 'Netherlands'), +('89.18.186.0', '89.18.186.255', 1494399488, 1494399743, 'US', 'United States'), +('89.18.187.0', '89.18.191.255', 1494399744, 1494401023, 'NL', 'Netherlands'), +('89.18.192.0', '89.18.223.255', 1494401024, 1494409215, 'LV', 'Latvia'), +('89.18.224.0', '89.18.255.255', 1494409216, 1494417407, 'FI', 'Finland'), +('89.19.0.0', '89.19.31.255', 1494417408, 1494425599, 'TR', 'Turkey'), +('89.19.32.0', '89.19.63.255', 1494425600, 1494433791, 'RU', 'Russian Federation'), +('89.19.64.0', '89.19.95.255', 1494433792, 1494441983, 'IE', 'Ireland'), +('89.19.96.0', '89.19.127.255', 1494441984, 1494450175, 'UA', 'Ukraine'), +('89.19.128.0', '89.19.159.255', 1494450176, 1494458367, 'DK', 'Denmark'), +('89.19.160.0', '89.19.223.255', 1494458368, 1494474751, 'RU', 'Russian Federation'), +('89.19.224.0', '89.19.234.159', 1494474752, 1494477471, 'DE', 'Germany'), +('89.19.234.160', '89.19.234.191', 1494477472, 1494477503, 'IL', 'Israel'), +('89.19.234.192', '89.19.255.255', 1494477504, 1494482943, 'DE', 'Germany'), +('89.20.0.0', '89.20.63.255', 1494482944, 1494499327, 'RU', 'Russian Federation'), +('89.20.64.0', '89.20.95.255', 1494499328, 1494507519, 'NL', 'Netherlands'), +('89.20.96.0', '89.20.159.255', 1494507520, 1494523903, 'RU', 'Russian Federation'), +('89.20.160.0', '89.20.191.255', 1494523904, 1494532095, 'NL', 'Netherlands'), +('89.20.192.0', '89.20.223.255', 1494532096, 1494540287, 'GB', 'United Kingdom'), +('89.20.224.0', '89.20.255.255', 1494540288, 1494548479, 'NO', 'Norway'), +('89.21.0.0', '89.21.31.255', 1494548480, 1494556671, 'GB', 'United Kingdom'), +('89.21.32.0', '89.21.63.255', 1494556672, 1494564863, 'DE', 'Germany'), +('89.21.64.0', '89.21.95.255', 1494564864, 1494573055, 'UA', 'Ukraine'), +('89.21.96.0', '89.21.127.255', 1494573056, 1494581247, 'RO', 'Romania'), +('89.21.128.0', '89.21.159.255', 1494581248, 1494589439, 'RU', 'Russian Federation'), +('89.21.160.0', '89.21.160.15', 1494589440, 1494589455, 'NL', 'Netherlands'), +('89.21.160.16', '89.21.160.31', 1494589456, 1494589471, 'NA', 'Namibia'), +('89.21.160.32', '89.21.160.71', 1494589472, 1494589511, 'NL', 'Netherlands'), +('89.21.160.72', '89.21.160.255', 1494589512, 1494589695, 'NA', 'Namibia'), +('89.21.161.0', '89.21.161.27', 1494589696, 1494589723, 'IQ', 'Iraq'), +('89.21.161.28', '89.21.186.255', 1494589724, 1494596351, 'NA', 'Namibia'), +('89.21.187.0', '89.21.187.255', 1494596352, 1494596607, 'US', 'United States'), +('89.21.188.0', '89.21.189.255', 1494596608, 1494597119, 'NA', 'Namibia'), +('89.21.190.0', '89.21.190.255', 1494597120, 1494597375, 'US', 'United States'), +('89.21.191.0', '89.21.191.255', 1494597376, 1494597631, 'NA', 'Namibia'), +('89.21.192.0', '89.21.223.255', 1494597632, 1494605823, 'RU', 'Russian Federation'), +('89.21.224.0', '89.21.255.255', 1494605824, 1494614015, 'GB', 'United Kingdom'), +('89.24.0.0', '89.24.255.255', 1494745088, 1494810623, 'CZ', 'Czech Republic'), +('89.25.0.0', '89.25.127.255', 1494810624, 1494843391, 'BG', 'Bulgaria'), +('89.25.128.0', '89.25.255.255', 1494843392, 1494876159, 'PL', 'Poland'), +('89.26.0.0', '89.26.127.255', 1494876160, 1494908927, 'AT', 'Austria'), +('89.26.128.0', '89.26.255.255', 1494908928, 1494941695, 'PT', 'Portugal'), +('89.27.0.0', '89.27.127.255', 1494941696, 1494974463, 'FI', 'Finland'), +('89.27.128.0', '89.27.255.255', 1494974464, 1495007231, 'DE', 'Germany'), +('89.28.0.0', '89.28.127.255', 1495007232, 1495039999, 'MD', 'Moldova, Republic of'), +('89.28.128.0', '89.28.135.255', 1495040000, 1495042047, 'KZ', 'Kazakstan'), +('89.28.136.0', '89.28.143.255', 1495042048, 1495044095, 'DE', 'Germany'), +('89.28.144.0', '89.28.151.255', 1495044096, 1495046143, 'FR', 'France'), +('89.28.152.0', '89.28.159.255', 1495046144, 1495048191, 'BH', 'Bahrain'), +('89.28.160.0', '89.28.167.255', 1495048192, 1495050239, 'RU', 'Russian Federation'), +('89.28.168.0', '89.28.175.255', 1495050240, 1495052287, 'GB', 'United Kingdom'), +('89.28.176.0', '89.28.183.255', 1495052288, 1495054335, 'IE', 'Ireland'), +('89.28.184.0', '89.28.191.255', 1495054336, 1495056383, 'GB', 'United Kingdom'), +('89.28.192.0', '89.28.199.255', 1495056384, 1495058431, 'RU', 'Russian Federation'), +('89.28.200.0', '89.28.207.255', 1495058432, 1495060479, 'UA', 'Ukraine'), +('89.28.208.0', '89.28.215.255', 1495060480, 1495062527, 'GB', 'United Kingdom'), +('89.28.216.0', '89.28.223.255', 1495062528, 1495064575, 'JO', 'Jordan'), +('89.28.224.0', '89.28.231.255', 1495064576, 1495066623, 'DE', 'Germany'), +('89.28.232.0', '89.28.239.255', 1495066624, 1495068671, 'GB', 'United Kingdom'), +('89.28.240.0', '89.28.247.255', 1495068672, 1495070719, 'DE', 'Germany'), +('89.28.248.0', '89.28.255.255', 1495070720, 1495072767, 'RU', 'Russian Federation'), +('89.29.0.0', '89.29.127.255', 1495072768, 1495105535, 'CZ', 'Czech Republic'), +('89.29.128.0', '89.29.255.255', 1495105536, 1495138303, 'ES', 'Spain'), +('89.30.0.0', '89.30.3.255', 1495138304, 1495139327, 'FR', 'France'), +('89.30.4.0', '89.30.4.255', 1495139328, 1495139583, 'EU', 'Europe'), +('89.30.5.0', '89.30.5.7', 1495139584, 1495139591, 'GB', 'United Kingdom'), +('89.30.5.8', '89.30.5.127', 1495139592, 1495139711, 'EU', 'Europe'), +('89.30.5.128', '89.30.5.255', 1495139712, 1495139839, 'GB', 'United Kingdom'), +('89.30.6.0', '89.30.6.255', 1495139840, 1495140095, 'ES', 'Spain'), +('89.30.7.0', '89.30.7.255', 1495140096, 1495140351, 'EU', 'Europe'), +('89.30.8.0', '89.30.48.255', 1495140352, 1495150847, 'FR', 'France'), +('89.30.49.0', '89.30.49.255', 1495150848, 1495151103, 'GB', 'United Kingdom'), +('89.30.50.0', '89.30.50.255', 1495151104, 1495151359, 'NL', 'Netherlands'), +('89.30.51.0', '89.30.63.255', 1495151360, 1495154687, 'FR', 'France'), +('89.30.64.0', '89.30.93.255', 1495154688, 1495162367, 'EU', 'Europe'), +('89.30.94.0', '89.30.95.255', 1495162368, 1495162879, 'US', 'United States'), +('89.30.96.0', '89.30.99.255', 1495162880, 1495163903, 'FR', 'France'), +('89.30.100.0', '89.30.101.255', 1495163904, 1495164415, 'EU', 'Europe'), +('89.30.102.0', '89.30.102.255', 1495164416, 1495164671, 'FR', 'France'), +('89.30.103.0', '89.30.103.255', 1495164672, 1495164927, 'EU', 'Europe'), +('89.30.104.0', '89.30.104.127', 1495164928, 1495165055, 'FR', 'France'), +('89.30.104.128', '89.30.104.255', 1495165056, 1495165183, 'EU', 'Europe'), +('89.30.105.0', '89.30.105.15', 1495165184, 1495165199, 'FR', 'France'), +('89.30.105.16', '89.30.105.23', 1495165200, 1495165207, 'EU', 'Europe'), +('89.30.105.24', '89.30.105.31', 1495165208, 1495165215, 'ES', 'Spain'), +('89.30.105.32', '89.30.105.255', 1495165216, 1495165439, 'EU', 'Europe'), +('89.30.106.0', '89.30.117.127', 1495165440, 1495168383, 'FR', 'France'), +('89.30.117.128', '89.30.117.255', 1495168384, 1495168511, 'EU', 'Europe'), +('89.30.118.0', '89.30.118.255', 1495168512, 1495168767, 'FR', 'France'), +('89.30.119.0', '89.30.119.255', 1495168768, 1495169023, 'GB', 'United Kingdom'), +('89.30.120.0', '89.30.124.31', 1495169024, 1495170079, 'FR', 'France'), +('89.30.124.32', '89.30.124.111', 1495170080, 1495170159, 'EU', 'Europe'), +('89.30.124.112', '89.30.124.127', 1495170160, 1495170175, 'FR', 'France'), +('89.30.124.128', '89.30.124.255', 1495170176, 1495170303, 'EU', 'Europe'), +('89.30.125.0', '89.30.125.31', 1495170304, 1495170335, 'FR', 'France'), +('89.30.125.32', '89.30.125.255', 1495170336, 1495170559, 'EU', 'Europe'), +('89.30.126.0', '89.30.126.255', 1495170560, 1495170815, 'FR', 'France'), +('89.30.127.0', '89.30.127.255', 1495170816, 1495171071, 'GB', 'United Kingdom'), +('89.30.128.0', '89.30.255.255', 1495171072, 1495203839, 'NL', 'Netherlands'), +('89.31.0.0', '89.31.7.255', 1495203840, 1495205887, 'DE', 'Germany'), +('89.31.8.0', '89.31.15.255', 1495205888, 1495207935, 'CZ', 'Czech Republic'), +('89.31.16.0', '89.31.23.255', 1495207936, 1495209983, 'RU', 'Russian Federation'), +('89.31.24.0', '89.31.31.255', 1495209984, 1495212031, 'KZ', 'Kazakstan'), +('89.31.32.0', '89.31.39.255', 1495212032, 1495214079, 'DE', 'Germany'), +('89.31.40.0', '89.31.47.255', 1495214080, 1495216127, 'CZ', 'Czech Republic'), +('89.31.48.0', '89.31.55.255', 1495216128, 1495218175, 'GB', 'United Kingdom'), +('89.31.56.0', '89.31.63.255', 1495218176, 1495220223, 'IT', 'Italy'), +('89.31.64.0', '89.31.71.255', 1495220224, 1495222271, 'PL', 'Poland'), +('89.31.72.0', '89.31.79.255', 1495222272, 1495224319, 'IT', 'Italy'), +('89.31.80.0', '89.31.95.255', 1495224320, 1495228415, 'RU', 'Russian Federation'), +('89.31.96.0', '89.31.103.255', 1495228416, 1495230463, 'NL', 'Netherlands'), +('89.31.104.0', '89.31.119.255', 1495230464, 1495234559, 'RU', 'Russian Federation'), +('89.31.120.0', '89.31.127.255', 1495234560, 1495236607, 'CH', 'Switzerland'), +('89.31.128.0', '89.31.130.127', 1495236608, 1495237247, 'AT', 'Austria'), +('89.31.130.128', '89.31.130.135', 1495237248, 1495237255, 'EU', 'Europe'), +('89.31.130.136', '89.31.130.151', 1495237256, 1495237271, 'AT', 'Austria'), +('89.31.130.152', '89.31.130.255', 1495237272, 1495237375, 'EU', 'Europe'), +('89.31.131.0', '89.31.132.79', 1495237376, 1495237711, 'AT', 'Austria'), +('89.31.132.80', '89.31.132.95', 1495237712, 1495237727, 'NL', 'Netherlands'), +('89.31.132.96', '89.31.132.99', 1495237728, 1495237731, 'AT', 'Austria'), +('89.31.132.100', '89.31.132.255', 1495237732, 1495237887, 'EU', 'Europe'), +('89.31.133.0', '89.31.134.63', 1495237888, 1495238207, 'AT', 'Austria'), +('89.31.134.64', '89.31.134.255', 1495238208, 1495238399, 'EU', 'Europe'), +('89.31.135.0', '89.31.135.255', 1495238400, 1495238655, 'AT', 'Austria'), +('89.31.136.0', '89.31.143.255', 1495238656, 1495240703, 'DE', 'Germany'), +('89.31.144.0', '89.31.144.47', 1495240704, 1495240751, 'FR', 'France'), +('89.31.144.48', '89.31.144.55', 1495240752, 1495240759, 'BE', 'Belgium'), +('89.31.144.56', '89.31.144.63', 1495240760, 1495240767, 'CH', 'Switzerland'), +('89.31.144.64', '89.31.151.255', 1495240768, 1495242751, 'FR', 'France'), +('89.31.152.0', '89.31.159.255', 1495242752, 1495244799, 'MK', 'Macedonia'), +('89.31.160.0', '89.31.167.255', 1495244800, 1495246847, 'CZ', 'Czech Republic'), +('89.31.168.0', '89.31.175.255', 1495246848, 1495248895, 'IE', 'Ireland'), +('89.31.176.0', '89.31.183.255', 1495248896, 1495250943, 'GR', 'Greece'), +('89.31.184.0', '89.31.191.255', 1495250944, 1495252991, 'RU', 'Russian Federation'), +('89.31.192.0', '89.31.199.255', 1495252992, 1495255039, 'BH', 'Bahrain'), +('89.31.200.0', '89.31.207.255', 1495255040, 1495257087, 'IT', 'Italy'), +('89.31.208.0', '89.31.215.255', 1495257088, 1495259135, 'GB', 'United Kingdom'), +('89.31.216.0', '89.31.223.255', 1495259136, 1495261183, 'BE', 'Belgium'), +('89.31.224.0', '89.31.231.255', 1495261184, 1495263231, 'PT', 'Portugal'), +('89.31.232.0', '89.31.239.255', 1495263232, 1495265279, 'GB', 'United Kingdom'), +('89.31.240.0', '89.31.241.255', 1495265280, 1495265791, 'DE', 'Germany'), +('89.31.242.0', '89.31.247.255', 1495265792, 1495267327, 'RU', 'Russian Federation'), +('89.31.248.0', '89.31.255.255', 1495267328, 1495269375, 'SE', 'Sweden'), +('89.32.0.0', '89.32.223.255', 1495269376, 1495326719, 'RO', 'Romania'), +('89.32.224.0', '89.32.239.255', 1495326720, 1495330815, 'MD', 'Moldova, Republic of'), +('89.32.240.0', '89.32.255.255', 1495330816, 1495334911, 'RO', 'Romania'), +('89.33.0.0', '89.33.3.255', 1495334912, 1495335935, 'MD', 'Moldova, Republic of'), +('89.33.4.0', '89.33.253.255', 1495335936, 1495399935, 'RO', 'Romania'), +('89.33.254.0', '89.33.254.255', 1495399936, 1495400191, 'MD', 'Moldova, Republic of'), +('89.33.255.0', '89.37.103.255', 1495400192, 1495623679, 'RO', 'Romania'), +('89.37.104.0', '89.37.104.255', 1495623680, 1495623935, 'MD', 'Moldova, Republic of'), +('89.37.105.0', '89.37.197.255', 1495623936, 1495647743, 'RO', 'Romania'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('89.37.198.0', '89.37.199.255', 1495647744, 1495648255, 'MD', 'Moldova, Republic of'), +('89.37.200.0', '89.39.95.255', 1495648256, 1495752703, 'RO', 'Romania'), +('89.39.96.0', '89.39.103.255', 1495752704, 1495754751, 'ES', 'Spain'), +('89.39.104.0', '89.40.31.255', 1495754752, 1495801855, 'RO', 'Romania'), +('89.40.32.0', '89.40.35.255', 1495801856, 1495802879, 'GB', 'United Kingdom'), +('89.40.36.0', '89.41.63.255', 1495802880, 1495875583, 'RO', 'Romania'), +('89.41.64.0', '89.41.127.255', 1495875584, 1495891967, 'MD', 'Moldova, Republic of'), +('89.41.128.0', '89.42.47.255', 1495891968, 1495937023, 'RO', 'Romania'), +('89.42.48.0', '89.42.49.255', 1495937024, 1495937535, 'ES', 'Spain'), +('89.42.50.0', '89.44.87.255', 1495937536, 1496078335, 'RO', 'Romania'), +('89.44.88.0', '89.44.91.255', 1496078336, 1496079359, 'MD', 'Moldova, Republic of'), +('89.44.92.0', '89.44.255.255', 1496079360, 1496121343, 'RO', 'Romania'), +('89.45.0.0', '89.45.3.255', 1496121344, 1496122367, 'MD', 'Moldova, Republic of'), +('89.45.4.0', '89.45.224.255', 1496122368, 1496178943, 'RO', 'Romania'), +('89.45.225.0', '89.45.225.255', 1496178944, 1496179199, 'AE', 'United Arab Emirates'), +('89.45.226.0', '89.47.255.255', 1496179200, 1496317951, 'RO', 'Romania'), +('89.48.0.0', '89.63.255.255', 1496317952, 1497366527, 'DE', 'Germany'), +('89.64.0.0', '89.79.255.255', 1497366528, 1498415103, 'PL', 'Poland'), +('89.80.0.0', '89.95.255.255', 1498415104, 1499463679, 'FR', 'France'), +('89.96.0.0', '89.97.255.255', 1499463680, 1499594751, 'IT', 'Italy'), +('89.98.0.0', '89.99.255.255', 1499594752, 1499725823, 'NL', 'Netherlands'), +('89.100.0.0', '89.101.255.255', 1499725824, 1499856895, 'IE', 'Ireland'), +('89.102.0.0', '89.103.255.255', 1499856896, 1499987967, 'CZ', 'Czech Republic'), +('89.104.0.0', '89.104.31.255', 1499987968, 1499996159, 'AT', 'Austria'), +('89.104.32.0', '89.104.63.255', 1499996160, 1500004351, 'GB', 'United Kingdom'), +('89.104.64.0', '89.104.127.255', 1500004352, 1500020735, 'RU', 'Russian Federation'), +('89.104.128.0', '89.104.159.255', 1500020736, 1500028927, 'IS', 'Iceland'), +('89.104.160.0', '89.104.191.255', 1500028928, 1500037119, 'NL', 'Netherlands'), +('89.104.192.0', '89.104.223.255', 1500037120, 1500045311, 'DK', 'Denmark'), +('89.104.224.0', '89.105.31.255', 1500045312, 1500061695, 'GB', 'United Kingdom'), +('89.105.32.0', '89.105.32.255', 1500061696, 1500061951, 'EU', 'Europe'), +('89.105.33.0', '89.105.33.95', 1500061952, 1500062047, 'NO', 'Norway'), +('89.105.33.96', '89.105.47.255', 1500062048, 1500065791, 'EU', 'Europe'), +('89.105.48.0', '89.105.49.255', 1500065792, 1500066303, 'NO', 'Norway'), +('89.105.50.0', '89.105.63.255', 1500066304, 1500069887, 'EU', 'Europe'), +('89.105.64.0', '89.105.95.255', 1500069888, 1500078079, 'IT', 'Italy'), +('89.105.96.0', '89.105.127.255', 1500078080, 1500086271, 'GB', 'United Kingdom'), +('89.105.128.0', '89.105.159.255', 1500086272, 1500094463, 'RU', 'Russian Federation'), +('89.105.160.0', '89.105.191.255', 1500094464, 1500102655, 'AT', 'Austria'), +('89.105.192.0', '89.105.196.255', 1500102656, 1500103935, 'NL', 'Netherlands'), +('89.105.197.0', '89.105.197.31', 1500103936, 1500103967, 'VG', 'Virgin Islands, British'), +('89.105.197.32', '89.105.197.127', 1500103968, 1500104063, 'NL', 'Netherlands'), +('89.105.197.128', '89.105.197.135', 1500104064, 1500104071, 'DE', 'Germany'), +('89.105.197.136', '89.105.223.255', 1500104072, 1500110847, 'NL', 'Netherlands'), +('89.105.224.0', '89.105.255.255', 1500110848, 1500119039, 'UA', 'Ukraine'), +('89.106.0.0', '89.106.31.255', 1500119040, 1500127231, 'TR', 'Turkey'), +('89.106.32.0', '89.106.63.255', 1500127232, 1500135423, 'RU', 'Russian Federation'), +('89.106.64.0', '89.106.64.131', 1500135424, 1500135555, 'DE', 'Germany'), +('89.106.64.132', '89.106.64.135', 1500135556, 1500135559, 'CH', 'Switzerland'), +('89.106.64.136', '89.106.84.16', 1500135560, 1500140560, 'DE', 'Germany'), +('89.106.84.17', '89.106.84.20', 1500140561, 1500140564, 'AT', 'Austria'), +('89.106.84.21', '89.106.84.24', 1500140565, 1500140568, 'CH', 'Switzerland'), +('89.106.84.25', '89.106.95.255', 1500140569, 1500143615, 'DE', 'Germany'), +('89.106.96.0', '89.106.127.255', 1500143616, 1500151807, 'BG', 'Bulgaria'), +('89.106.128.0', '89.106.135.255', 1500151808, 1500153855, 'GB', 'United Kingdom'), +('89.106.136.0', '89.106.143.255', 1500153856, 1500155903, 'IE', 'Ireland'), +('89.106.144.0', '89.106.151.255', 1500155904, 1500157951, 'GB', 'United Kingdom'), +('89.106.152.0', '89.106.159.255', 1500157952, 1500159999, 'DE', 'Germany'), +('89.106.160.0', '89.106.167.255', 1500160000, 1500162047, 'NL', 'Netherlands'), +('89.106.168.0', '89.106.175.255', 1500162048, 1500164095, 'RU', 'Russian Federation'), +('89.106.176.0', '89.106.183.255', 1500164096, 1500166143, 'GB', 'United Kingdom'), +('89.106.184.0', '89.106.191.255', 1500166144, 1500168191, 'FR', 'France'), +('89.106.192.0', '89.106.199.255', 1500168192, 1500170239, 'RU', 'Russian Federation'), +('89.106.200.0', '89.106.207.255', 1500170240, 1500172287, 'LU', 'Luxembourg'), +('89.106.208.0', '89.106.215.255', 1500172288, 1500174335, 'AT', 'Austria'), +('89.106.216.0', '89.106.223.255', 1500174336, 1500176383, 'DE', 'Germany'), +('89.106.224.0', '89.106.231.255', 1500176384, 1500178431, 'GB', 'United Kingdom'), +('89.106.232.0', '89.106.239.255', 1500178432, 1500180479, 'KZ', 'Kazakstan'), +('89.106.240.0', '89.106.240.139', 1500180480, 1500180619, 'NL', 'Netherlands'), +('89.106.240.140', '89.106.243.255', 1500180620, 1500181503, 'BE', 'Belgium'), +('89.106.244.0', '89.106.247.255', 1500181504, 1500182527, 'NL', 'Netherlands'), +('89.106.248.0', '89.106.255.255', 1500182528, 1500184575, 'RU', 'Russian Federation'), +('89.107.0.0', '89.107.7.255', 1500184576, 1500186623, 'GB', 'United Kingdom'), +('89.107.8.0', '89.107.15.255', 1500186624, 1500188671, 'KW', 'Kuwait'), +('89.107.16.0', '89.107.23.255', 1500188672, 1500190719, 'GB', 'United Kingdom'), +('89.107.24.0', '89.107.39.255', 1500190720, 1500194815, 'RU', 'Russian Federation'), +('89.107.40.0', '89.107.47.255', 1500194816, 1500196863, 'GB', 'United Kingdom'), +('89.107.48.0', '89.107.55.255', 1500196864, 1500198911, 'ES', 'Spain'), +('89.107.56.0', '89.107.63.255', 1500198912, 1500200959, 'GB', 'United Kingdom'), +('89.107.64.0', '89.107.71.255', 1500200960, 1500203007, 'DE', 'Germany'), +('89.107.72.0', '89.107.79.255', 1500203008, 1500205055, 'GB', 'United Kingdom'), +('89.107.80.0', '89.107.87.255', 1500205056, 1500207103, 'RU', 'Russian Federation'), +('89.107.88.0', '89.107.95.255', 1500207104, 1500209151, 'IT', 'Italy'), +('89.107.96.0', '89.107.103.255', 1500209152, 1500211199, 'KZ', 'Kazakstan'), +('89.107.104.0', '89.107.105.255', 1500211200, 1500211711, 'RU', 'Russian Federation'), +('89.107.106.0', '89.107.107.255', 1500211712, 1500212223, 'JO', 'Jordan'), +('89.107.108.0', '89.107.127.255', 1500212224, 1500217343, 'RU', 'Russian Federation'), +('89.107.128.0', '89.107.128.255', 1500217344, 1500217599, 'CZ', 'Czech Republic'), +('89.107.129.0', '89.107.130.255', 1500217600, 1500218111, 'DE', 'Germany'), +('89.107.131.0', '89.107.131.255', 1500218112, 1500218367, 'CZ', 'Czech Republic'), +('89.107.132.0', '89.107.135.255', 1500218368, 1500219391, 'DE', 'Germany'), +('89.107.136.0', '89.107.143.255', 1500219392, 1500221439, 'FR', 'France'), +('89.107.144.0', '89.107.151.255', 1500221440, 1500223487, 'SK', 'Slovakia'), +('89.107.152.0', '89.107.159.255', 1500223488, 1500225535, 'PL', 'Poland'), +('89.107.160.0', '89.107.167.255', 1500225536, 1500227583, 'DE', 'Germany'), +('89.107.168.0', '89.107.175.255', 1500227584, 1500229631, 'FR', 'France'), +('89.107.176.0', '89.107.183.255', 1500229632, 1500231679, 'ES', 'Spain'), +('89.107.184.0', '89.107.191.255', 1500231680, 1500233727, 'DE', 'Germany'), +('89.107.192.0', '89.107.207.255', 1500233728, 1500237823, 'RU', 'Russian Federation'), +('89.107.208.0', '89.107.223.255', 1500237824, 1500241919, 'SE', 'Sweden'), +('89.107.224.0', '89.107.228.64', 1500241920, 1500243008, 'TR', 'Turkey'), +('89.107.228.65', '89.107.228.94', 1500243009, 1500243038, 'GB', 'United Kingdom'), +('89.107.228.95', '89.107.231.255', 1500243039, 1500243967, 'TR', 'Turkey'), +('89.107.232.0', '89.107.239.255', 1500243968, 1500246015, 'GB', 'United Kingdom'), +('89.107.240.0', '89.107.247.255', 1500246016, 1500248063, 'ES', 'Spain'), +('89.107.248.0', '89.107.255.255', 1500248064, 1500250111, 'HU', 'Hungary'), +('89.108.0.0', '89.108.63.255', 1500250112, 1500266495, 'SA', 'Saudi Arabia'), +('89.108.64.0', '89.108.127.255', 1500266496, 1500282879, 'RU', 'Russian Federation'), +('89.108.128.0', '89.108.191.255', 1500282880, 1500299263, 'LB', 'Lebanon'), +('89.108.192.0', '89.108.255.255', 1500299264, 1500315647, 'PL', 'Poland'), +('89.109.0.0', '89.109.63.255', 1500315648, 1500332031, 'RU', 'Russian Federation'), +('89.109.64.0', '89.109.127.255', 1500332032, 1500348415, 'PT', 'Portugal'), +('89.109.128.0', '89.110.127.255', 1500348416, 1500413951, 'RU', 'Russian Federation'), +('89.110.128.0', '89.110.191.255', 1500413952, 1500430335, 'DE', 'Germany'), +('89.110.192.0', '89.110.255.255', 1500430336, 1500446719, 'RS', 'Serbia'), +('89.111.0.0', '89.111.63.255', 1500446720, 1500463103, 'LV', 'Latvia'), +('89.111.64.0', '89.111.127.255', 1500463104, 1500479487, 'CZ', 'Czech Republic'), +('89.111.128.0', '89.111.191.255', 1500479488, 1500495871, 'RU', 'Russian Federation'), +('89.111.192.0', '89.111.255.255', 1500495872, 1500512255, 'BA', 'Bosnia and Herzegovina'), +('89.112.0.0', '89.113.255.255', 1500512256, 1500643327, 'RU', 'Russian Federation'), +('89.114.0.0', '89.115.255.255', 1500643328, 1500774399, 'RO', 'Romania'), +('89.116.0.0', '89.117.255.255', 1500774400, 1500905471, 'LT', 'Lithuania'), +('89.118.0.0', '89.119.255.255', 1500905472, 1501036543, 'IT', 'Italy'), +('89.120.0.0', '89.123.255.255', 1501036544, 1501298687, 'RO', 'Romania'), +('89.124.0.0', '89.127.255.255', 1501298688, 1501560831, 'IE', 'Ireland'), +('89.128.0.0', '89.131.255.255', 1501560832, 1501822975, 'ES', 'Spain'), +('89.132.0.0', '89.135.255.255', 1501822976, 1502085119, 'HU', 'Hungary'), +('89.136.0.0', '89.137.255.255', 1502085120, 1502216191, 'RO', 'Romania'), +('89.138.0.0', '89.139.255.255', 1502216192, 1502347263, 'IL', 'Israel'), +('89.140.0.0', '89.141.255.255', 1502347264, 1502478335, 'ES', 'Spain'), +('89.142.0.0', '89.143.255.255', 1502478336, 1502609407, 'SI', 'Slovenia'), +('89.144.0.0', '89.144.2.255', 1502609408, 1502610175, 'AT', 'Austria'), +('89.144.3.0', '89.144.63.255', 1502610176, 1502625791, 'DE', 'Germany'), +('89.144.64.0', '89.144.127.255', 1502625792, 1502642175, 'SA', 'Saudi Arabia'), +('89.144.128.0', '89.144.191.255', 1502642176, 1502658559, 'IR', 'Iran, Islamic Republic of'), +('89.144.192.0', '89.144.255.255', 1502658560, 1502674943, 'AT', 'Austria'), +('89.145.0.0', '89.145.63.255', 1502674944, 1502691327, 'DE', 'Germany'), +('89.145.64.0', '89.145.68.63', 1502691328, 1502692415, 'GB', 'United Kingdom'), +('89.145.68.64', '89.145.68.127', 1502692416, 1502692479, 'ES', 'Spain'), +('89.145.68.128', '89.145.127.255', 1502692480, 1502707711, 'GB', 'United Kingdom'), +('89.145.128.0', '89.145.191.255', 1502707712, 1502724095, 'RU', 'Russian Federation'), +('89.145.192.0', '89.145.255.255', 1502724096, 1502740479, 'GB', 'United Kingdom'), +('89.146.0.0', '89.146.63.255', 1502740480, 1502756863, 'NL', 'Netherlands'), +('89.146.64.0', '89.146.127.255', 1502756864, 1502773247, 'UZ', 'Uzbekistan'), +('89.146.128.0', '89.146.191.255', 1502773248, 1502789631, 'BA', 'Bosnia and Herzegovina'), +('89.146.192.0', '89.146.199.127', 1502789632, 1502791551, 'DE', 'Germany'), +('89.146.199.128', '89.146.199.255', 1502791552, 1502791679, 'PL', 'Poland'), +('89.146.200.0', '89.146.207.31', 1502791680, 1502793503, 'DE', 'Germany'), +('89.146.207.32', '89.146.207.39', 1502793504, 1502793511, 'NL', 'Netherlands'), +('89.146.207.40', '89.146.209.255', 1502793512, 1502794239, 'DE', 'Germany'), +('89.146.210.0', '89.146.210.255', 1502794240, 1502794495, 'NL', 'Netherlands'), +('89.146.211.0', '89.146.255.255', 1502794496, 1502806015, 'DE', 'Germany'), +('89.147.0.0', '89.147.63.255', 1502806016, 1502822399, 'SA', 'Saudi Arabia'), +('89.147.64.0', '89.147.127.255', 1502822400, 1502838783, 'HU', 'Hungary'), +('89.147.128.0', '89.147.191.255', 1502838784, 1502855167, 'SE', 'Sweden'), +('89.147.192.0', '89.147.255.255', 1502855168, 1502871551, 'AZ', 'Azerbaijan'), +('89.148.0.0', '89.148.63.255', 1502871552, 1502887935, 'BH', 'Bahrain'), +('89.148.64.0', '89.148.127.255', 1502887936, 1502904319, 'HU', 'Hungary'), +('89.148.128.0', '89.148.191.255', 1502904320, 1502920703, 'IT', 'Italy'), +('89.148.192.0', '89.148.255.255', 1502920704, 1502937087, 'RU', 'Russian Federation'), +('89.149.0.0', '89.149.63.255', 1502937088, 1502953471, 'RO', 'Romania'), +('89.149.64.0', '89.149.127.255', 1502953472, 1502969855, 'MD', 'Moldova, Republic of'), +('89.149.128.0', '89.149.148.255', 1502969856, 1502975231, 'US', 'United States'), +('89.149.149.0', '89.149.149.15', 1502975232, 1502975247, 'GB', 'United Kingdom'), +('89.149.149.16', '89.149.149.31', 1502975248, 1502975263, 'IE', 'Ireland'), +('89.149.149.32', '89.149.149.79', 1502975264, 1502975311, 'GB', 'United Kingdom'), +('89.149.149.80', '89.149.149.87', 1502975312, 1502975319, 'IE', 'Ireland'), +('89.149.149.88', '89.149.149.95', 1502975320, 1502975327, 'GB', 'United Kingdom'), +('89.149.149.96', '89.149.149.143', 1502975328, 1502975375, 'IE', 'Ireland'), +('89.149.149.144', '89.149.149.151', 1502975376, 1502975383, 'GB', 'United Kingdom'), +('89.149.149.152', '89.149.149.159', 1502975384, 1502975391, 'ES', 'Spain'), +('89.149.149.160', '89.149.149.223', 1502975392, 1502975455, 'GB', 'United Kingdom'), +('89.149.149.224', '89.149.149.255', 1502975456, 1502975487, 'IE', 'Ireland'), +('89.149.150.0', '89.149.150.255', 1502975488, 1502975743, 'ES', 'Spain'), +('89.149.151.0', '89.149.151.31', 1502975744, 1502975775, 'IE', 'Ireland'), +('89.149.151.32', '89.149.151.255', 1502975776, 1502975999, 'GB', 'United Kingdom'), +('89.149.152.0', '89.149.156.31', 1502976000, 1502977055, 'US', 'United States'), +('89.149.156.32', '89.149.164.31', 1502977056, 1502979103, 'GB', 'United Kingdom'), +('89.149.164.32', '89.149.164.39', 1502979104, 1502979111, 'ES', 'Spain'), +('89.149.164.40', '89.149.164.47', 1502979112, 1502979119, 'GB', 'United Kingdom'), +('89.149.164.48', '89.149.164.143', 1502979120, 1502979215, 'ES', 'Spain'), +('89.149.164.144', '89.149.167.255', 1502979216, 1502980095, 'GB', 'United Kingdom'), +('89.149.168.0', '89.149.168.63', 1502980096, 1502980159, 'US', 'United States'), +('89.149.168.64', '89.149.168.255', 1502980160, 1502980351, 'GB', 'United Kingdom'), +('89.149.169.0', '89.149.171.7', 1502980352, 1502980871, 'US', 'United States'), +('89.149.171.8', '89.149.171.255', 1502980872, 1502981119, 'GB', 'United Kingdom'), +('89.149.172.0', '89.149.174.255', 1502981120, 1502981887, 'US', 'United States'), +('89.149.175.0', '89.149.175.255', 1502981888, 1502982143, 'NL', 'Netherlands'), +('89.149.176.0', '89.149.178.255', 1502982144, 1502982911, 'DE', 'Germany'), +('89.149.179.0', '89.149.181.255', 1502982912, 1502983679, 'GB', 'United Kingdom'), +('89.149.182.0', '89.149.192.15', 1502983680, 1502986255, 'DE', 'Germany'), +('89.149.192.16', '89.149.192.255', 1502986256, 1502986495, 'TR', 'Turkey'), +('89.149.193.0', '89.149.193.15', 1502986496, 1502986511, 'DE', 'Germany'), +('89.149.193.16', '89.149.193.255', 1502986512, 1502986751, 'PL', 'Poland'), +('89.149.194.0', '89.149.197.255', 1502986752, 1502987775, 'DE', 'Germany'), +('89.149.198.0', '89.149.198.255', 1502987776, 1502988031, 'TR', 'Turkey'), +('89.149.199.0', '89.149.202.255', 1502988032, 1502989055, 'DE', 'Germany'), +('89.149.203.0', '89.149.204.255', 1502989056, 1502989567, 'TR', 'Turkey'), +('89.149.205.0', '89.149.209.255', 1502989568, 1502990847, 'DE', 'Germany'), +('89.149.210.0', '89.149.210.255', 1502990848, 1502991103, 'PL', 'Poland'), +('89.149.211.0', '89.149.211.255', 1502991104, 1502991359, 'DE', 'Germany'), +('89.149.212.0', '89.149.212.255', 1502991360, 1502991615, 'PL', 'Poland'), +('89.149.213.0', '89.149.221.255', 1502991616, 1502993919, 'DE', 'Germany'), +('89.149.222.0', '89.149.223.255', 1502993920, 1502994431, 'PL', 'Poland'), +('89.149.224.0', '89.149.224.255', 1502994432, 1502994687, 'DE', 'Germany'), +('89.149.225.0', '89.149.225.255', 1502994688, 1502994943, 'PL', 'Poland'), +('89.149.226.0', '89.149.229.255', 1502994944, 1502995967, 'DE', 'Germany'), +('89.149.230.0', '89.149.231.255', 1502995968, 1502996479, 'PL', 'Poland'), +('89.149.232.0', '89.149.232.255', 1502996480, 1502996735, 'DE', 'Germany'), +('89.149.233.0', '89.149.234.255', 1502996736, 1502997247, 'PL', 'Poland'), +('89.149.235.0', '89.149.235.255', 1502997248, 1502997503, 'LT', 'Lithuania'), +('89.149.236.0', '89.149.236.255', 1502997504, 1502997759, 'CN', 'China'), +('89.149.237.0', '89.149.245.255', 1502997760, 1503000063, 'DE', 'Germany'), +('89.149.246.0', '89.149.246.255', 1503000064, 1503000319, 'PL', 'Poland'), +('89.149.247.0', '89.149.248.255', 1503000320, 1503000831, 'DE', 'Germany'), +('89.149.249.0', '89.149.250.255', 1503000832, 1503001343, 'PL', 'Poland'), +('89.149.251.0', '89.149.255.255', 1503001344, 1503002623, 'DE', 'Germany'), +('89.150.0.0', '89.150.63.255', 1503002624, 1503019007, 'GE', 'Georgia'), +('89.150.64.0', '89.150.191.255', 1503019008, 1503051775, 'DK', 'Denmark'), +('89.150.192.0', '89.150.255.255', 1503051776, 1503068159, 'SE', 'Sweden'), +('89.151.0.0', '89.151.63.255', 1503068160, 1503084543, 'PL', 'Poland'), +('89.151.64.0', '89.151.127.255', 1503084544, 1503100927, 'GB', 'United Kingdom'), +('89.151.128.0', '89.151.191.255', 1503100928, 1503117311, 'RU', 'Russian Federation'), +('89.151.192.0', '89.151.255.255', 1503117312, 1503133695, 'NO', 'Norway'), +('89.152.0.0', '89.155.255.255', 1503133696, 1503395839, 'PT', 'Portugal'), +('89.156.0.0', '89.159.255.255', 1503395840, 1503657983, 'FR', 'France'), +('89.160.0.0', '89.160.127.255', 1503657984, 1503690751, 'SE', 'Sweden'), +('89.160.128.0', '89.160.255.255', 1503690752, 1503723519, 'IS', 'Iceland'), +('89.161.0.0', '89.161.255.255', 1503723520, 1503789055, 'PL', 'Poland'), +('89.162.0.0', '89.162.127.255', 1503789056, 1503821823, 'NO', 'Norway'), +('89.162.128.0', '89.162.255.255', 1503821824, 1503854591, 'UA', 'Ukraine'), +('89.163.0.0', '89.163.127.255', 1503854592, 1503887359, 'RU', 'Russian Federation'), +('89.163.128.0', '89.163.188.255', 1503887360, 1503902975, 'DE', 'Germany'), +('89.163.189.0', '89.163.189.255', 1503902976, 1503903231, 'FI', 'Finland'), +('89.163.190.0', '89.163.209.255', 1503903232, 1503908351, 'DE', 'Germany'), +('89.163.210.0', '89.163.213.255', 1503908352, 1503909375, 'IT', 'Italy'), +('89.163.214.0', '89.163.255.255', 1503909376, 1503920127, 'DE', 'Germany'), +('89.164.0.0', '89.164.255.255', 1503920128, 1503985663, 'HR', 'Croatia'), +('89.165.0.0', '89.165.127.255', 1503985664, 1504018431, 'IR', 'Iran, Islamic Republic of'), +('89.165.128.0', '89.165.255.255', 1504018432, 1504051199, 'RO', 'Romania'), +('89.166.0.0', '89.166.127.255', 1504051200, 1504083967, 'FI', 'Finland'), +('89.166.128.0', '89.166.255.255', 1504083968, 1504116735, 'DE', 'Germany'), +('89.167.0.0', '89.167.127.255', 1504116736, 1504149503, 'PL', 'Poland'), +('89.167.128.0', '89.167.138.63', 1504149504, 1504152127, 'GB', 'United Kingdom'), +('89.167.138.64', '89.167.138.127', 1504152128, 1504152191, 'IE', 'Ireland'), +('89.167.138.128', '89.167.139.127', 1504152192, 1504152447, 'GB', 'United Kingdom'), +('89.167.139.128', '89.167.139.255', 1504152448, 1504152575, 'IE', 'Ireland'), +('89.167.140.0', '89.167.144.255', 1504152576, 1504153855, 'GB', 'United Kingdom'), +('89.167.145.0', '89.167.145.255', 1504153856, 1504154111, 'IE', 'Ireland'), +('89.167.146.0', '89.167.147.255', 1504154112, 1504154623, 'GB', 'United Kingdom'), +('89.167.148.0', '89.167.151.255', 1504154624, 1504155647, 'IE', 'Ireland'), +('89.167.152.0', '89.167.156.255', 1504155648, 1504156927, 'GB', 'United Kingdom'), +('89.167.157.0', '89.167.157.255', 1504156928, 1504157183, 'IE', 'Ireland'), +('89.167.158.0', '89.167.169.255', 1504157184, 1504160255, 'GB', 'United Kingdom'), +('89.167.170.0', '89.167.172.255', 1504160256, 1504161023, 'IE', 'Ireland'), +('89.167.173.0', '89.167.173.255', 1504161024, 1504161279, 'GB', 'United Kingdom'), +('89.167.174.0', '89.167.174.255', 1504161280, 1504161535, 'IE', 'Ireland'), +('89.167.175.0', '89.167.186.255', 1504161536, 1504164607, 'GB', 'United Kingdom'), +('89.167.187.0', '89.167.187.255', 1504164608, 1504164863, 'IE', 'Ireland'), +('89.167.188.0', '89.167.207.255', 1504164864, 1504169983, 'GB', 'United Kingdom'), +('89.167.208.0', '89.167.208.255', 1504169984, 1504170239, 'IE', 'Ireland'), +('89.167.209.0', '89.167.211.255', 1504170240, 1504171007, 'GB', 'United Kingdom'), +('89.167.212.0', '89.167.212.255', 1504171008, 1504171263, 'PT', 'Portugal'), +('89.167.213.0', '89.167.214.255', 1504171264, 1504171775, 'GB', 'United Kingdom'), +('89.167.215.0', '89.167.215.255', 1504171776, 1504172031, 'US', 'United States'), +('89.167.216.0', '89.167.219.255', 1504172032, 1504173055, 'GB', 'United Kingdom'), +('89.167.220.0', '89.167.220.255', 1504173056, 1504173311, 'IE', 'Ireland'), +('89.167.221.0', '89.167.225.255', 1504173312, 1504174591, 'GB', 'United Kingdom'), +('89.167.226.0', '89.167.227.255', 1504174592, 1504175103, 'IE', 'Ireland'), +('89.167.228.0', '89.167.229.255', 1504175104, 1504175615, 'GB', 'United Kingdom'), +('89.167.230.0', '89.167.230.255', 1504175616, 1504175871, 'IE', 'Ireland'), +('89.167.231.0', '89.167.232.255', 1504175872, 1504176383, 'GB', 'United Kingdom'), +('89.167.233.0', '89.167.233.255', 1504176384, 1504176639, 'IE', 'Ireland'), +('89.167.234.0', '89.167.240.255', 1504176640, 1504178431, 'GB', 'United Kingdom'), +('89.167.241.0', '89.167.241.255', 1504178432, 1504178687, 'IE', 'Ireland'), +('89.167.242.0', '89.168.255.255', 1504178688, 1504247807, 'GB', 'United Kingdom'), +('89.169.0.0', '89.169.255.255', 1504247808, 1504313343, 'RU', 'Russian Federation'), +('89.170.0.0', '89.170.255.255', 1504313344, 1504378879, 'FR', 'France'), +('89.171.0.0', '89.171.255.255', 1504378880, 1504444415, 'PL', 'Poland'), +('89.172.0.0', '89.172.255.255', 1504444416, 1504509951, 'HR', 'Croatia'), +('89.173.0.0', '89.173.255.255', 1504509952, 1504575487, 'SK', 'Slovakia'), +('89.174.0.0', '89.174.255.255', 1504575488, 1504641023, 'PL', 'Poland'), +('89.175.0.0', '89.175.255.255', 1504641024, 1504706559, 'RU', 'Russian Federation'), +('89.176.0.0', '89.177.255.255', 1504706560, 1504837631, 'CZ', 'Czech Republic'), +('89.178.0.0', '89.179.255.255', 1504837632, 1504968703, 'RU', 'Russian Federation'), +('89.180.0.0', '89.181.255.255', 1504968704, 1505099775, 'PT', 'Portugal'), +('89.182.0.0', '89.183.255.255', 1505099776, 1505230847, 'DE', 'Germany'), +('89.184.0.0', '89.184.31.255', 1505230848, 1505239039, 'RU', 'Russian Federation'), +('89.184.32.0', '89.184.63.255', 1505239040, 1505247231, 'IE', 'Ireland'), +('89.184.64.0', '89.184.95.255', 1505247232, 1505255423, 'UA', 'Ukraine'), +('89.184.96.0', '89.184.127.255', 1505255424, 1505263615, 'IT', 'Italy'), +('89.184.128.0', '89.184.159.255', 1505263616, 1505271807, 'DK', 'Denmark'), +('89.184.160.0', '89.184.164.255', 1505271808, 1505273087, 'NL', 'Netherlands'), +('89.184.165.0', '89.184.165.7', 1505273088, 1505273095, 'NZ', 'New Zealand'), +('89.184.165.8', '89.184.191.255', 1505273096, 1505279999, 'NL', 'Netherlands'), +('89.184.192.0', '89.184.255.255', 1505280000, 1505296383, 'RU', 'Russian Federation'), +('89.185.0.0', '89.185.31.255', 1505296384, 1505304575, 'UA', 'Ukraine'), +('89.185.32.0', '89.185.37.22', 1505304576, 1505305878, 'FR', 'France'), +('89.185.37.23', '89.185.37.23', 1505305879, 1505305879, 'US', 'United States'), +('89.185.37.24', '89.185.38.191', 1505305880, 1505306303, 'FR', 'France'), +('89.185.38.192', '89.185.38.207', 1505306304, 1505306319, 'ES', 'Spain'), +('89.185.38.208', '89.185.38.223', 1505306320, 1505306335, 'DE', 'Germany'), +('89.185.38.224', '89.185.38.239', 1505306336, 1505306351, 'GB', 'United Kingdom'), +('89.185.38.240', '89.185.38.255', 1505306352, 1505306367, 'IT', 'Italy'), +('89.185.39.0', '89.185.51.127', 1505306368, 1505309567, 'FR', 'France'), +('89.185.51.128', '89.185.51.159', 1505309568, 1505309599, 'IT', 'Italy'), +('89.185.51.160', '89.185.63.255', 1505309600, 1505312767, 'FR', 'France'), +('89.185.64.0', '89.185.95.255', 1505312768, 1505320959, 'RU', 'Russian Federation'), +('89.185.96.0', '89.185.127.255', 1505320960, 1505329151, 'AT', 'Austria'), +('89.185.128.0', '89.185.159.255', 1505329152, 1505337343, 'GB', 'United Kingdom'), +('89.185.160.0', '89.185.191.255', 1505337344, 1505345535, 'FR', 'France'), +('89.185.192.0', '89.185.223.255', 1505345536, 1505353727, 'MK', 'Macedonia'), +('89.185.224.0', '89.185.247.47', 1505353728, 1505359663, 'CZ', 'Czech Republic'), +('89.185.247.48', '89.185.247.55', 1505359664, 1505359671, 'SK', 'Slovakia'), +('89.185.247.56', '89.185.247.59', 1505359672, 1505359675, 'CZ', 'Czech Republic'), +('89.185.247.60', '89.185.247.63', 1505359676, 1505359679, 'SK', 'Slovakia'), +('89.185.247.64', '89.185.247.143', 1505359680, 1505359759, 'CZ', 'Czech Republic'), +('89.185.247.144', '89.185.247.159', 1505359760, 1505359775, 'SK', 'Slovakia'), +('89.185.247.160', '89.185.255.255', 1505359776, 1505361919, 'CZ', 'Czech Republic'), +('89.186.0.0', '89.186.31.255', 1505361920, 1505370111, 'PL', 'Poland'), +('89.186.32.0', '89.186.63.255', 1505370112, 1505378303, 'SM', 'San Marino'), +('89.186.64.0', '89.186.95.255', 1505378304, 1505386495, 'IT', 'Italy'), +('89.186.96.0', '89.186.127.255', 1505386496, 1505394687, 'HU', 'Hungary'), +('89.186.128.0', '89.186.159.255', 1505394688, 1505402879, 'DE', 'Germany'), +('89.186.160.0', '89.186.191.255', 1505402880, 1505411071, 'DK', 'Denmark'), +('89.186.192.0', '89.186.223.255', 1505411072, 1505419263, 'BG', 'Bulgaria'), +('89.186.224.0', '89.186.255.255', 1505419264, 1505427455, 'RU', 'Russian Federation'), +('89.187.0.0', '89.187.31.255', 1505427456, 1505435647, 'UA', 'Ukraine'), +('89.187.32.0', '89.187.63.255', 1505435648, 1505443839, 'MD', 'Moldova, Republic of'), +('89.187.64.0', '89.187.105.31', 1505443840, 1505454367, 'GB', 'United Kingdom'), +('89.187.105.32', '89.187.105.39', 1505454368, 1505454375, 'US', 'United States'), +('89.187.105.40', '89.187.105.47', 1505454376, 1505454383, 'GB', 'United Kingdom'), +('89.187.105.48', '89.187.105.55', 1505454384, 1505454391, 'US', 'United States'), +('89.187.105.56', '89.187.105.63', 1505454392, 1505454399, 'SG', 'Singapore'), +('89.187.105.64', '89.187.105.127', 1505454400, 1505454463, 'GB', 'United Kingdom'), +('89.187.105.128', '89.187.105.159', 1505454464, 1505454495, 'AU', 'Australia'), +('89.187.105.160', '89.187.105.175', 1505454496, 1505454511, 'GB', 'United Kingdom'), +('89.187.105.176', '89.187.105.191', 1505454512, 1505454527, 'DE', 'Germany'), +('89.187.105.192', '89.187.105.207', 1505454528, 1505454543, 'NZ', 'New Zealand'), +('89.187.105.208', '89.187.107.63', 1505454544, 1505454911, 'GB', 'United Kingdom'), +('89.187.107.64', '89.187.107.95', 1505454912, 1505454943, 'CZ', 'Czech Republic'), +('89.187.107.96', '89.187.107.127', 1505454944, 1505454975, 'GB', 'United Kingdom'), +('89.187.107.128', '89.187.107.254', 1505454976, 1505455102, 'US', 'United States'), +('89.187.107.255', '89.187.111.255', 1505455103, 1505456127, 'GB', 'United Kingdom'), +('89.187.112.0', '89.187.112.127', 1505456128, 1505456255, 'US', 'United States'), +('89.187.112.128', '89.187.113.255', 1505456256, 1505456639, 'GB', 'United Kingdom'), +('89.187.114.0', '89.187.114.255', 1505456640, 1505456895, 'US', 'United States'), +('89.187.115.0', '89.187.127.255', 1505456896, 1505460223, 'GB', 'United Kingdom'), +('89.187.128.0', '89.187.191.255', 1505460224, 1505476607, 'CZ', 'Czech Republic'), +('89.187.192.0', '89.187.223.255', 1505476608, 1505484799, 'RU', 'Russian Federation'), +('89.187.224.0', '89.187.255.255', 1505484800, 1505492991, 'PL', 'Poland'), +('89.188.0.0', '89.188.31.255', 1505492992, 1505501183, 'NL', 'Netherlands'), +('89.188.32.0', '89.188.47.255', 1505501184, 1505505279, 'ME', 'Montenegro'), +('89.188.48.0', '89.188.63.255', 1505505280, 1505509375, 'RS', 'Serbia'), +('89.188.64.0', '89.188.95.255', 1505509376, 1505517567, 'SA', 'Saudi Arabia'), +('89.188.96.0', '89.188.127.255', 1505517568, 1505525759, 'RU', 'Russian Federation'), +('89.188.128.0', '89.188.159.255', 1505525760, 1505533951, 'IT', 'Italy'), +('89.188.160.0', '89.188.191.255', 1505533952, 1505542143, 'RU', 'Russian Federation'), +('89.188.192.0', '89.188.223.255', 1505542144, 1505550335, 'PL', 'Poland'), +('89.188.224.0', '89.189.31.255', 1505550336, 1505566719, 'RU', 'Russian Federation'), +('89.189.32.0', '89.189.63.255', 1505566720, 1505574911, 'IT', 'Italy'), +('89.189.64.0', '89.189.95.255', 1505574912, 1505583103, 'YE', 'Yemen'), +('89.189.96.0', '89.189.127.255', 1505583104, 1505591295, 'HU', 'Hungary'), +('89.189.128.0', '89.189.191.255', 1505591296, 1505607679, 'RU', 'Russian Federation'), +('89.189.192.0', '89.189.223.255', 1505607680, 1505615871, 'SE', 'Sweden'), +('89.189.224.0', '89.189.255.255', 1505615872, 1505624063, 'SA', 'Saudi Arabia'), +('89.190.0.0', '89.190.31.255', 1505624064, 1505632255, 'FI', 'Finland'), +('89.190.32.0', '89.190.95.255', 1505632256, 1505648639, 'CZ', 'Czech Republic'), +('89.190.96.0', '89.190.127.255', 1505648640, 1505656831, 'LT', 'Lithuania'), +('89.190.128.0', '89.190.159.255', 1505656832, 1505665023, 'BH', 'Bahrain'), +('89.190.160.0', '89.190.172.167', 1505665024, 1505668263, 'IT', 'Italy'), +('89.190.172.168', '89.190.172.171', 1505668264, 1505668267, 'DE', 'Germany'), +('89.190.172.172', '89.190.181.215', 1505668268, 1505670615, 'IT', 'Italy'), +('89.190.181.216', '89.190.181.223', 1505670616, 1505670623, 'US', 'United States'), +('89.190.181.224', '89.190.191.255', 1505670624, 1505673215, 'IT', 'Italy'), +('89.190.192.0', '89.190.223.255', 1505673216, 1505681407, 'BG', 'Bulgaria'), +('89.190.224.0', '89.190.255.255', 1505681408, 1505689599, 'RU', 'Russian Federation'), +('89.191.0.0', '89.191.31.255', 1505689600, 1505697791, 'NO', 'Norway'), +('89.191.32.0', '89.191.63.255', 1505697792, 1505705983, 'IE', 'Ireland'), +('89.191.64.0', '89.191.95.255', 1505705984, 1505714175, 'DE', 'Germany'), +('89.191.96.0', '89.191.127.255', 1505714176, 1505722367, 'LV', 'Latvia'), +('89.191.128.0', '89.191.191.255', 1505722368, 1505738751, 'PL', 'Poland'), +('89.191.192.0', '89.191.219.175', 1505738752, 1505745839, 'GB', 'United Kingdom'), +('89.191.219.176', '89.191.219.191', 1505745840, 1505745855, 'IL', 'Israel'), +('89.191.219.192', '89.191.219.223', 1505745856, 1505745887, 'GB', 'United Kingdom'), +('89.191.219.224', '89.191.219.239', 1505745888, 1505745903, 'IL', 'Israel'), +('89.191.219.240', '89.191.223.255', 1505745904, 1505746943, 'GB', 'United Kingdom'), +('89.191.224.0', '89.191.255.255', 1505746944, 1505755135, 'RU', 'Russian Federation'), +('89.192.0.0', '89.195.255.255', 1505755136, 1506017279, 'GB', 'United Kingdom'), +('89.196.0.0', '89.199.255.255', 1506017280, 1506279423, 'DE', 'Germany'), +('89.200.0.0', '89.200.127.255', 1506279424, 1506312191, 'NL', 'Netherlands'), +('89.200.128.0', '89.200.143.255', 1506312192, 1506316287, 'GB', 'United Kingdom'), +('89.200.144.0', '89.200.167.255', 1506316288, 1506322431, 'PL', 'Poland'), +('89.200.168.0', '89.200.175.255', 1506322432, 1506324479, 'DE', 'Germany'), +('89.200.176.0', '89.200.191.255', 1506324480, 1506328575, 'RU', 'Russian Federation'), +('89.200.192.0', '89.200.199.255', 1506328576, 1506330623, 'FI', 'Finland'), +('89.200.200.0', '89.200.207.255', 1506330624, 1506332671, 'NL', 'Netherlands'), +('89.200.208.0', '89.200.215.255', 1506332672, 1506334719, 'PL', 'Poland'), +('89.200.216.0', '89.200.223.255', 1506334720, 1506336767, 'GB', 'United Kingdom'), +('89.200.224.0', '89.200.231.255', 1506336768, 1506338815, 'PL', 'Poland'), +('89.200.232.0', '89.200.239.255', 1506338816, 1506340863, 'UA', 'Ukraine'), +('89.200.240.0', '89.200.247.255', 1506340864, 1506342911, 'RO', 'Romania'), +('89.200.248.0', '89.200.255.255', 1506342912, 1506344959, 'UA', 'Ukraine'), +('89.201.0.0', '89.201.127.255', 1506344960, 1506377727, 'LV', 'Latvia'), +('89.201.128.0', '89.201.255.255', 1506377728, 1506410495, 'HR', 'Croatia'), +('89.202.0.0', '89.202.67.15', 1506410496, 1506427663, 'DE', 'Germany'), +('89.202.67.16', '89.202.67.31', 1506427664, 1506427679, 'GB', 'United Kingdom'), +('89.202.67.32', '89.202.69.63', 1506427680, 1506428223, 'DE', 'Germany'), +('89.202.69.64', '89.202.69.79', 1506428224, 1506428239, 'US', 'United States'), +('89.202.69.80', '89.202.110.127', 1506428240, 1506438783, 'DE', 'Germany'), +('89.202.110.128', '89.202.110.143', 1506438784, 1506438799, 'KR', 'Korea, Republic of'), +('89.202.110.144', '89.202.110.255', 1506438800, 1506438911, 'DE', 'Germany'), +('89.202.111.0', '89.202.111.127', 1506438912, 1506439039, 'US', 'United States'), +('89.202.111.128', '89.202.114.255', 1506439040, 1506439935, 'DE', 'Germany'), +('89.202.115.0', '89.202.115.255', 1506439936, 1506440191, 'US', 'United States'), +('89.202.116.0', '89.202.116.255', 1506440192, 1506440447, 'DE', 'Germany'), +('89.202.117.0', '89.202.117.127', 1506440448, 1506440575, 'US', 'United States'), +('89.202.117.128', '89.202.117.255', 1506440576, 1506440703, 'DE', 'Germany'), +('89.202.118.0', '89.202.118.7', 1506440704, 1506440711, 'US', 'United States'), +('89.202.118.8', '89.202.118.15', 1506440712, 1506440719, 'FR', 'France'), +('89.202.118.16', '89.202.118.31', 1506440720, 1506440735, 'US', 'United States'), +('89.202.118.32', '89.202.118.63', 1506440736, 1506440767, 'GB', 'United Kingdom'), +('89.202.118.64', '89.202.118.95', 1506440768, 1506440799, 'US', 'United States'), +('89.202.118.96', '89.202.118.127', 1506440800, 1506440831, 'DE', 'Germany'), +('89.202.118.128', '89.202.118.255', 1506440832, 1506440959, 'US', 'United States'), +('89.202.119.0', '89.202.119.31', 1506440960, 1506440991, 'FR', 'France'), +('89.202.119.32', '89.202.119.39', 1506440992, 1506440999, 'US', 'United States'), +('89.202.119.40', '89.202.119.47', 1506441000, 1506441007, 'GB', 'United Kingdom'), +('89.202.119.48', '89.202.119.63', 1506441008, 1506441023, 'US', 'United States'), +('89.202.119.64', '89.202.119.127', 1506441024, 1506441087, 'HK', 'Hong Kong'), +('89.202.119.128', '89.202.119.255', 1506441088, 1506441215, 'CA', 'Canada'), +('89.202.120.0', '89.202.120.127', 1506441216, 1506441343, 'US', 'United States'), +('89.202.120.128', '89.202.120.191', 1506441344, 1506441407, 'HK', 'Hong Kong'), +('89.202.120.192', '89.202.121.23', 1506441408, 1506441495, 'DE', 'Germany'), +('89.202.121.24', '89.202.121.31', 1506441496, 1506441503, 'GB', 'United Kingdom'), +('89.202.121.32', '89.202.121.63', 1506441504, 1506441535, 'US', 'United States'), +('89.202.121.64', '89.202.121.127', 1506441536, 1506441599, 'DE', 'Germany'), +('89.202.121.128', '89.202.121.159', 1506441600, 1506441631, 'US', 'United States'), +('89.202.121.160', '89.202.121.183', 1506441632, 1506441655, 'DE', 'Germany'), +('89.202.121.184', '89.202.121.191', 1506441656, 1506441663, 'GB', 'United Kingdom'), +('89.202.121.192', '89.202.121.199', 1506441664, 1506441671, 'NL', 'Netherlands'), +('89.202.121.200', '89.202.121.207', 1506441672, 1506441679, 'CA', 'Canada'), +('89.202.121.208', '89.202.121.223', 1506441680, 1506441695, 'DE', 'Germany'), +('89.202.121.224', '89.202.121.255', 1506441696, 1506441727, 'CA', 'Canada'), +('89.202.122.0', '89.202.123.255', 1506441728, 1506442239, 'MU', 'Mauritius'), +('89.202.124.0', '89.202.124.143', 1506442240, 1506442383, 'US', 'United States'), +('89.202.124.144', '89.202.124.159', 1506442384, 1506442399, 'GB', 'United Kingdom'), +('89.202.124.160', '89.202.124.175', 1506442400, 1506442415, 'FR', 'France'), +('89.202.124.176', '89.202.124.187', 1506442416, 1506442427, 'US', 'United States'), +('89.202.124.188', '89.202.124.191', 1506442428, 1506442431, 'DE', 'Germany'), +('89.202.124.192', '89.202.124.223', 1506442432, 1506442463, 'HK', 'Hong Kong'), +('89.202.124.224', '89.202.125.127', 1506442464, 1506442623, 'DE', 'Germany'), +('89.202.125.128', '89.202.125.159', 1506442624, 1506442655, 'GB', 'United Kingdom'), +('89.202.125.160', '89.202.125.191', 1506442656, 1506442687, 'US', 'United States'), +('89.202.125.192', '89.202.125.207', 1506442688, 1506442703, 'GB', 'United Kingdom'), +('89.202.125.208', '89.202.125.215', 1506442704, 1506442711, 'US', 'United States'), +('89.202.125.216', '89.202.125.219', 1506442712, 1506442715, 'NL', 'Netherlands'), +('89.202.125.220', '89.202.125.223', 1506442716, 1506442719, 'US', 'United States'), +('89.202.125.224', '89.202.125.239', 1506442720, 1506442735, 'GB', 'United Kingdom'), +('89.202.125.240', '89.202.125.247', 1506442736, 1506442743, 'DE', 'Germany'), +('89.202.125.248', '89.202.125.255', 1506442744, 1506442751, 'US', 'United States'), +('89.202.126.0', '89.202.126.127', 1506442752, 1506442879, 'DE', 'Germany'), +('89.202.126.128', '89.202.126.159', 1506442880, 1506442911, 'GB', 'United Kingdom'), +('89.202.126.160', '89.202.126.167', 1506442912, 1506442919, 'DE', 'Germany'), +('89.202.126.168', '89.202.126.171', 1506442920, 1506442923, 'GB', 'United Kingdom'), +('89.202.126.172', '89.202.126.175', 1506442924, 1506442927, 'NL', 'Netherlands'), +('89.202.126.176', '89.202.126.223', 1506442928, 1506442975, 'US', 'United States'), +('89.202.126.224', '89.202.126.239', 1506442976, 1506442991, 'DE', 'Germany'), +('89.202.126.240', '89.202.126.247', 1506442992, 1506442999, 'GB', 'United Kingdom'), +('89.202.126.248', '89.202.126.251', 1506443000, 1506443003, 'IE', 'Ireland'), +('89.202.126.252', '89.202.127.143', 1506443004, 1506443151, 'DE', 'Germany'), +('89.202.127.144', '89.202.127.151', 1506443152, 1506443159, 'US', 'United States'), +('89.202.127.152', '89.202.127.159', 1506443160, 1506443167, 'DE', 'Germany'), +('89.202.127.160', '89.202.127.175', 1506443168, 1506443183, 'NL', 'Netherlands'), +('89.202.127.176', '89.202.127.191', 1506443184, 1506443199, 'DE', 'Germany'), +('89.202.127.192', '89.202.127.255', 1506443200, 1506443263, 'US', 'United States'), +('89.202.128.0', '89.202.131.255', 1506443264, 1506444287, 'GB', 'United Kingdom'), +('89.202.132.0', '89.202.135.255', 1506444288, 1506445311, 'DE', 'Germany'), +('89.202.136.0', '89.202.136.207', 1506445312, 1506445519, 'FR', 'France'), +('89.202.136.208', '89.202.136.215', 1506445520, 1506445527, 'GB', 'United Kingdom'), +('89.202.136.216', '89.202.137.135', 1506445528, 1506445703, 'FR', 'France'), +('89.202.137.136', '89.202.137.143', 1506445704, 1506445711, 'NL', 'Netherlands'), +('89.202.137.144', '89.202.137.151', 1506445712, 1506445719, 'GB', 'United Kingdom'), +('89.202.137.152', '89.202.137.223', 1506445720, 1506445791, 'FR', 'France'), +('89.202.137.224', '89.202.137.239', 1506445792, 1506445807, 'GB', 'United Kingdom'), +('89.202.137.240', '89.202.139.255', 1506445808, 1506446335, 'FR', 'France'), +('89.202.140.0', '89.202.143.255', 1506446336, 1506447359, 'NL', 'Netherlands'), +('89.202.144.0', '89.202.147.255', 1506447360, 1506448383, 'IT', 'Italy'), +('89.202.148.0', '89.202.148.255', 1506448384, 1506448639, 'AT', 'Austria'), +('89.202.149.0', '89.202.149.7', 1506448640, 1506448647, 'GB', 'United Kingdom'), +('89.202.149.8', '89.202.149.23', 1506448648, 1506448663, 'AT', 'Austria'), +('89.202.149.24', '89.202.149.31', 1506448664, 1506448671, 'GB', 'United Kingdom'), +('89.202.149.32', '89.202.149.79', 1506448672, 1506448719, 'AT', 'Austria'), +('89.202.149.80', '89.202.149.87', 1506448720, 1506448727, 'GB', 'United Kingdom'), +('89.202.149.88', '89.202.149.95', 1506448728, 1506448735, 'AT', 'Austria'), +('89.202.149.96', '89.202.149.255', 1506448736, 1506448895, 'GB', 'United Kingdom'), +('89.202.150.0', '89.202.151.15', 1506448896, 1506449167, 'BE', 'Belgium'), +('89.202.151.16', '89.202.151.19', 1506449168, 1506449171, 'GB', 'United Kingdom'), +('89.202.151.20', '89.202.151.239', 1506449172, 1506449391, 'BE', 'Belgium'), +('89.202.151.240', '89.202.151.255', 1506449392, 1506449407, 'GB', 'United Kingdom'), +('89.202.152.0', '89.202.152.255', 1506449408, 1506449663, 'NL', 'Netherlands'), +('89.202.153.0', '89.202.153.255', 1506449664, 1506449919, 'SK', 'Slovakia'), +('89.202.154.0', '89.202.154.7', 1506449920, 1506449927, 'CH', 'Switzerland'), +('89.202.154.8', '89.202.154.31', 1506449928, 1506449951, 'GB', 'United Kingdom'), +('89.202.154.32', '89.202.155.255', 1506449952, 1506450431, 'CH', 'Switzerland'), +('89.202.156.0', '89.202.157.79', 1506450432, 1506450767, 'CZ', 'Czech Republic'), +('89.202.157.80', '89.202.157.159', 1506450768, 1506450847, 'GB', 'United Kingdom'), +('89.202.157.160', '89.202.157.255', 1506450848, 1506450943, 'CZ', 'Czech Republic'), +('89.202.158.0', '89.202.158.63', 1506450944, 1506451007, 'DK', 'Denmark'), +('89.202.158.64', '89.202.158.255', 1506451008, 1506451199, 'GB', 'United Kingdom'), +('89.202.159.0', '89.202.161.183', 1506451200, 1506451895, 'ES', 'Spain'), +('89.202.161.184', '89.202.161.191', 1506451896, 1506451903, 'GB', 'United Kingdom'), +('89.202.161.192', '89.202.162.31', 1506451904, 1506451999, 'ES', 'Spain'), +('89.202.162.32', '89.202.162.63', 1506452000, 1506452031, 'GB', 'United Kingdom'), +('89.202.162.64', '89.202.162.255', 1506452032, 1506452223, 'ES', 'Spain'), +('89.202.163.0', '89.202.163.255', 1506452224, 1506452479, 'GB', 'United Kingdom'), +('89.202.164.0', '89.202.164.255', 1506452480, 1506452735, 'US', 'United States'), +('89.202.165.0', '89.202.165.31', 1506452736, 1506452767, 'RO', 'Romania'), +('89.202.165.32', '89.202.165.255', 1506452768, 1506452991, 'GB', 'United Kingdom'), +('89.202.166.0', '89.202.166.255', 1506452992, 1506453247, 'AT', 'Austria'), +('89.202.167.0', '89.202.167.143', 1506453248, 1506453391, 'SE', 'Sweden'), +('89.202.167.144', '89.202.167.151', 1506453392, 1506453399, 'ES', 'Spain'), +('89.202.167.152', '89.202.167.191', 1506453400, 1506453439, 'SE', 'Sweden'), +('89.202.167.192', '89.202.167.255', 1506453440, 1506453503, 'GB', 'United Kingdom'), +('89.202.168.0', '89.202.168.255', 1506453504, 1506453759, 'DE', 'Germany'), +('89.202.169.0', '89.202.169.255', 1506453760, 1506454015, 'FR', 'France'), +('89.202.170.0', '89.202.170.255', 1506454016, 1506454271, 'GB', 'United Kingdom'), +('89.202.171.0', '89.202.171.255', 1506454272, 1506454527, 'ES', 'Spain'), +('89.202.172.0', '89.202.173.255', 1506454528, 1506455039, 'US', 'United States'), +('89.202.174.0', '89.202.174.255', 1506455040, 1506455295, 'GB', 'United Kingdom'), +('89.202.175.0', '89.202.175.255', 1506455296, 1506455551, 'IT', 'Italy'), +('89.202.176.0', '89.202.176.255', 1506455552, 1506455807, 'US', 'United States'), +('89.202.177.0', '89.202.177.255', 1506455808, 1506456063, 'AE', 'United Arab Emirates'), +('89.202.178.0', '89.202.178.255', 1506456064, 1506456319, 'HU', 'Hungary'), +('89.202.179.0', '89.202.179.255', 1506456320, 1506456575, 'IT', 'Italy'), +('89.202.180.0', '89.202.180.255', 1506456576, 1506456831, 'GB', 'United Kingdom'), +('89.202.181.0', '89.202.181.255', 1506456832, 1506457087, 'IT', 'Italy'), +('89.202.182.0', '89.202.186.127', 1506457088, 1506458239, 'GB', 'United Kingdom'), +('89.202.186.128', '89.202.187.255', 1506458240, 1506458623, 'CH', 'Switzerland'), +('89.202.188.0', '89.202.189.255', 1506458624, 1506459135, 'GB', 'United Kingdom'), +('89.202.190.0', '89.202.191.255', 1506459136, 1506459647, 'BE', 'Belgium'), +('89.202.192.0', '89.202.194.179', 1506459648, 1506460339, 'FR', 'France'), +('89.202.194.180', '89.202.194.183', 1506460340, 1506460343, 'GB', 'United Kingdom'), +('89.202.194.184', '89.202.195.255', 1506460344, 1506460671, 'FR', 'France'), +('89.202.196.0', '89.202.196.255', 1506460672, 1506460927, 'AT', 'Austria'), +('89.202.197.0', '89.202.198.127', 1506460928, 1506461311, 'IT', 'Italy'), +('89.202.198.128', '89.202.198.143', 1506461312, 1506461327, 'FR', 'France'), +('89.202.198.144', '89.202.198.167', 1506461328, 1506461351, 'IT', 'Italy'), +('89.202.198.168', '89.202.198.175', 1506461352, 1506461359, 'FR', 'France'), +('89.202.198.176', '89.202.199.255', 1506461360, 1506461695, 'IT', 'Italy'), +('89.202.200.0', '89.202.201.255', 1506461696, 1506462207, 'FR', 'France'), +('89.202.202.0', '89.202.202.255', 1506462208, 1506462463, 'ES', 'Spain'), +('89.202.203.0', '89.202.203.143', 1506462464, 1506462607, 'FR', 'France'), +('89.202.203.144', '89.202.203.159', 1506462608, 1506462623, 'A2', 'Satellite Provider'), +('89.202.203.160', '89.202.203.255', 1506462624, 1506462719, 'FR', 'France'), +('89.202.204.0', '89.202.205.255', 1506462720, 1506463231, 'IT', 'Italy'), +('89.202.206.0', '89.202.206.255', 1506463232, 1506463487, 'SE', 'Sweden'), +('89.202.207.0', '89.202.208.255', 1506463488, 1506463999, 'DE', 'Germany'), +('89.202.209.0', '89.202.211.255', 1506464000, 1506464767, 'GB', 'United Kingdom'), +('89.202.212.0', '89.202.212.63', 1506464768, 1506464831, 'NL', 'Netherlands'), +('89.202.212.64', '89.202.212.127', 1506464832, 1506464895, 'GB', 'United Kingdom'), +('89.202.212.128', '89.202.213.63', 1506464896, 1506465087, 'NL', 'Netherlands'), +('89.202.213.64', '89.202.213.127', 1506465088, 1506465151, 'DE', 'Germany'), +('89.202.213.128', '89.202.213.255', 1506465152, 1506465279, 'NL', 'Netherlands'), +('89.202.214.0', '89.202.215.255', 1506465280, 1506465791, 'GB', 'United Kingdom'), +('89.202.216.0', '89.202.216.255', 1506465792, 1506466047, 'DE', 'Germany'), +('89.202.217.0', '89.202.217.255', 1506466048, 1506466303, 'BE', 'Belgium'), +('89.202.218.0', '89.202.218.255', 1506466304, 1506466559, 'DE', 'Germany'), +('89.202.219.0', '89.202.220.255', 1506466560, 1506467071, 'GB', 'United Kingdom'), +('89.202.221.0', '89.202.221.255', 1506467072, 1506467327, 'DE', 'Germany'), +('89.202.222.0', '89.202.222.255', 1506467328, 1506467583, 'GB', 'United Kingdom'), +('89.202.223.0', '89.202.225.255', 1506467584, 1506468351, 'IT', 'Italy'), +('89.202.226.0', '89.202.226.255', 1506468352, 1506468607, 'GB', 'United Kingdom'), +('89.202.227.0', '89.202.227.255', 1506468608, 1506468863, 'TZ', 'Tanzania, United Republic of'), +('89.202.228.0', '89.202.230.7', 1506468864, 1506469383, 'IT', 'Italy'), +('89.202.230.8', '89.202.230.15', 1506469384, 1506469391, 'GB', 'United Kingdom'), +('89.202.230.16', '89.202.230.95', 1506469392, 1506469471, 'IT', 'Italy'), +('89.202.230.96', '89.202.230.127', 1506469472, 1506469503, 'GB', 'United Kingdom'), +('89.202.230.128', '89.202.232.255', 1506469504, 1506470143, 'IT', 'Italy'), +('89.202.233.0', '89.202.233.255', 1506470144, 1506470399, 'GB', 'United Kingdom'), +('89.202.234.0', '89.202.234.255', 1506470400, 1506470655, 'DE', 'Germany'), +('89.202.235.0', '89.202.238.255', 1506470656, 1506471679, 'IT', 'Italy'), +('89.202.239.0', '89.202.239.255', 1506471680, 1506471935, 'GB', 'United Kingdom'), +('89.202.240.0', '89.202.240.39', 1506471936, 1506471975, 'NL', 'Netherlands'), +('89.202.240.40', '89.202.240.255', 1506471976, 1506472191, 'GB', 'United Kingdom'), +('89.202.241.0', '89.202.241.255', 1506472192, 1506472447, 'IT', 'Italy'), +('89.202.242.0', '89.202.243.255', 1506472448, 1506472959, 'GB', 'United Kingdom'), +('89.202.244.0', '89.202.244.255', 1506472960, 1506473215, 'IT', 'Italy'), +('89.202.245.0', '89.202.245.255', 1506473216, 1506473471, 'GB', 'United Kingdom'), +('89.202.246.0', '89.202.249.31', 1506473472, 1506474271, 'IT', 'Italy'), +('89.202.249.32', '89.202.249.63', 1506474272, 1506474303, 'SE', 'Sweden'), +('89.202.249.64', '89.202.249.255', 1506474304, 1506474495, 'IT', 'Italy'), +('89.202.250.0', '89.202.250.255', 1506474496, 1506474751, 'FR', 'France'), +('89.202.251.0', '89.202.253.255', 1506474752, 1506475519, 'IT', 'Italy'), +('89.202.254.0', '89.202.255.255', 1506475520, 1506476031, 'AT', 'Austria'), +('89.203.0.0', '89.203.127.255', 1506476032, 1506508799, 'KW', 'Kuwait'), +('89.203.128.0', '89.203.255.255', 1506508800, 1506541567, 'CZ', 'Czech Republic'), +('89.204.0.0', '89.204.127.255', 1506541568, 1506574335, 'RU', 'Russian Federation'), +('89.204.128.0', '89.204.159.255', 1506574336, 1506582527, 'DE', 'Germany'), +('89.204.160.0', '89.204.255.255', 1506582528, 1506607103, 'IE', 'Ireland'), +('89.205.0.0', '89.205.127.255', 1506607104, 1506639871, 'MK', 'Macedonia'), +('89.205.128.0', '89.205.255.255', 1506639872, 1506672639, 'NL', 'Netherlands'), +('89.206.0.0', '89.206.63.255', 1506672640, 1506689023, 'PL', 'Poland'), +('89.206.64.0', '89.206.127.255', 1506689024, 1506705407, 'CH', 'Switzerland'), +('89.206.128.0', '89.207.7.255', 1506705408, 1506740223, 'GB', 'United Kingdom'), +('89.207.8.0', '89.207.15.255', 1506740224, 1506742271, 'FI', 'Finland'), +('89.207.16.0', '89.207.19.127', 1506742272, 1506743167, 'SE', 'Sweden'), +('89.207.19.128', '89.207.19.143', 1506743168, 1506743183, 'DE', 'Germany'), +('89.207.19.144', '89.207.19.159', 1506743184, 1506743199, 'FR', 'France'), +('89.207.19.160', '89.207.19.175', 1506743200, 1506743215, 'IE', 'Ireland'), +('89.207.19.176', '89.207.19.192', 1506743216, 1506743232, 'GB', 'United Kingdom'), +('89.207.19.193', '89.207.23.255', 1506743233, 1506744319, 'SE', 'Sweden'), +('89.207.24.0', '89.207.31.255', 1506744320, 1506746367, 'NL', 'Netherlands'), +('89.207.32.0', '89.207.47.255', 1506746368, 1506750463, 'RU', 'Russian Federation'), +('89.207.48.0', '89.207.55.255', 1506750464, 1506752511, 'GB', 'United Kingdom'), +('89.207.56.0', '89.207.63.255', 1506752512, 1506754559, 'IE', 'Ireland'), +('89.207.64.0', '89.207.79.255', 1506754560, 1506758655, 'RU', 'Russian Federation'), +('89.207.80.0', '89.207.87.255', 1506758656, 1506760703, 'IT', 'Italy'), +('89.207.88.0', '89.207.103.255', 1506760704, 1506764799, 'RU', 'Russian Federation'), +('89.207.104.0', '89.207.111.255', 1506764800, 1506766847, 'IT', 'Italy'), +('89.207.112.0', '89.207.112.55', 1506766848, 1506766903, 'NO', 'Norway'), +('89.207.112.56', '89.207.119.255', 1506766904, 1506768895, 'GE', 'Georgia'), +('89.207.120.0', '89.207.127.255', 1506768896, 1506770943, 'AT', 'Austria'), +('89.207.128.0', '89.207.135.255', 1506770944, 1506772991, 'NL', 'Netherlands'), +('89.207.136.0', '89.207.143.255', 1506772992, 1506775039, 'GB', 'United Kingdom'), +('89.207.144.0', '89.207.151.255', 1506775040, 1506777087, 'AT', 'Austria'), +('89.207.152.0', '89.207.169.255', 1506777088, 1506781695, 'GB', 'United Kingdom'), +('89.207.170.0', '89.207.170.255', 1506781696, 1506781951, 'IE', 'Ireland'), +('89.207.171.0', '89.207.175.255', 1506781952, 1506783231, 'GB', 'United Kingdom'), +('89.207.176.0', '89.207.183.255', 1506783232, 1506785279, 'RU', 'Russian Federation'), +('89.207.184.0', '89.207.191.255', 1506785280, 1506787327, 'UA', 'Ukraine'), +('89.207.192.0', '89.207.199.255', 1506787328, 1506789375, 'KW', 'Kuwait'), +('89.207.200.0', '89.207.207.255', 1506789376, 1506791423, 'DE', 'Germany'), +('89.207.208.0', '89.207.215.255', 1506791424, 1506793471, 'GB', 'United Kingdom'), +('89.207.216.0', '89.207.223.255', 1506793472, 1506795519, 'RU', 'Russian Federation'), +('89.207.224.0', '89.207.231.255', 1506795520, 1506797567, 'IE', 'Ireland'), +('89.207.232.0', '89.207.239.255', 1506797568, 1506799615, 'ES', 'Spain'), +('89.207.240.0', '89.207.247.255', 1506799616, 1506801663, 'LV', 'Latvia'), +('89.207.248.0', '89.207.253.191', 1506801664, 1506803135, 'DE', 'Germany'), +('89.207.253.192', '89.207.253.207', 1506803136, 1506803151, 'CH', 'Switzerland'), +('89.207.253.208', '89.207.255.255', 1506803152, 1506803711, 'DE', 'Germany'), +('89.208.0.0', '89.208.255.255', 1506803712, 1506869247, 'RU', 'Russian Federation'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('89.209.0.0', '89.209.255.255', 1506869248, 1506934783, 'UA', 'Ukraine'), +('89.210.0.0', '89.210.255.255', 1506934784, 1507000319, 'GR', 'Greece'), +('89.211.0.0', '89.211.255.255', 1507000320, 1507065855, 'QA', 'Qatar'), +('89.212.0.0', '89.212.255.255', 1507065856, 1507131391, 'SI', 'Slovenia'), +('89.213.0.0', '89.213.255.255', 1507131392, 1507196927, 'GB', 'United Kingdom'), +('89.214.0.0', '89.214.255.255', 1507196928, 1507262463, 'PT', 'Portugal'), +('89.215.0.0', '89.215.255.255', 1507262464, 1507327999, 'BG', 'Bulgaria'), +('89.216.0.0', '89.216.34.255', 1507328000, 1507336959, 'RS', 'Serbia'), +('89.216.35.0', '89.216.36.255', 1507336960, 1507337471, 'SR', 'Suriname'), +('89.216.37.0', '89.216.255.255', 1507337472, 1507393535, 'RS', 'Serbia'), +('89.217.0.0', '89.217.255.255', 1507393536, 1507459071, 'CH', 'Switzerland'), +('89.218.0.0', '89.218.255.255', 1507459072, 1507524607, 'KZ', 'Kazakstan'), +('89.219.0.0', '89.219.255.255', 1507524608, 1507590143, 'EE', 'Estonia'), +('89.220.0.0', '89.220.255.255', 1507590144, 1507655679, 'NL', 'Netherlands'), +('89.221.0.0', '89.221.13.95', 1507655680, 1507659103, 'DE', 'Germany'), +('89.221.13.96', '89.221.13.111', 1507659104, 1507659119, 'TR', 'Turkey'), +('89.221.13.112', '89.221.15.255', 1507659120, 1507659775, 'DE', 'Germany'), +('89.221.16.0', '89.221.31.255', 1507659776, 1507663871, 'RU', 'Russian Federation'), +('89.221.32.0', '89.221.32.255', 1507663872, 1507664127, 'IT', 'Italy'), +('89.221.33.0', '89.221.33.255', 1507664128, 1507664383, 'GR', 'Greece'), +('89.221.34.0', '89.221.35.127', 1507664384, 1507664767, 'DE', 'Germany'), +('89.221.35.128', '89.221.35.255', 1507664768, 1507664895, 'US', 'United States'), +('89.221.36.0', '89.221.37.255', 1507664896, 1507665407, 'GR', 'Greece'), +('89.221.38.0', '89.221.38.255', 1507665408, 1507665663, 'IT', 'Italy'), +('89.221.39.0', '89.221.41.255', 1507665664, 1507666431, 'US', 'United States'), +('89.221.42.0', '89.221.42.127', 1507666432, 1507666559, 'GR', 'Greece'), +('89.221.42.128', '89.221.42.159', 1507666560, 1507666591, 'FR', 'France'), +('89.221.42.160', '89.221.42.191', 1507666592, 1507666623, 'GR', 'Greece'), +('89.221.42.192', '89.221.42.255', 1507666624, 1507666687, 'IT', 'Italy'), +('89.221.43.0', '89.221.43.255', 1507666688, 1507666943, 'GB', 'United Kingdom'), +('89.221.44.0', '89.221.45.255', 1507666944, 1507667455, 'IT', 'Italy'), +('89.221.46.0', '89.221.46.255', 1507667456, 1507667711, 'DE', 'Germany'), +('89.221.47.0', '89.221.47.255', 1507667712, 1507667967, 'US', 'United States'), +('89.221.48.0', '89.221.63.255', 1507667968, 1507672063, 'RU', 'Russian Federation'), +('89.221.64.0', '89.221.79.255', 1507672064, 1507676159, 'EE', 'Estonia'), +('89.221.80.0', '89.221.95.255', 1507676160, 1507680255, 'IR', 'Iran, Islamic Republic of'), +('89.221.96.0', '89.221.111.255', 1507680256, 1507684351, 'NO', 'Norway'), +('89.221.112.0', '89.221.127.255', 1507684352, 1507688447, 'LV', 'Latvia'), +('89.221.128.0', '89.221.159.255', 1507688448, 1507696639, 'IT', 'Italy'), +('89.221.160.0', '89.221.175.255', 1507696640, 1507700735, 'DK', 'Denmark'), +('89.221.176.0', '89.221.191.255', 1507700736, 1507704831, 'NL', 'Netherlands'), +('89.221.192.0', '89.221.207.255', 1507704832, 1507708927, 'RU', 'Russian Federation'), +('89.221.208.0', '89.221.223.255', 1507708928, 1507713023, 'CZ', 'Czech Republic'), +('89.221.224.0', '89.221.239.255', 1507713024, 1507717119, 'RU', 'Russian Federation'), +('89.221.240.0', '89.221.241.255', 1507717120, 1507717631, 'SE', 'Sweden'), +('89.221.242.0', '89.221.246.255', 1507717632, 1507718911, 'NO', 'Norway'), +('89.221.247.0', '89.221.255.255', 1507718912, 1507721215, 'SE', 'Sweden'), +('89.222.0.0', '89.222.127.255', 1507721216, 1507753983, 'GB', 'United Kingdom'), +('89.222.128.0', '89.223.127.255', 1507753984, 1507819519, 'RU', 'Russian Federation'), +('89.223.128.0', '89.223.255.255', 1507819520, 1507852287, 'HU', 'Hungary'), +('89.224.0.0', '89.227.255.255', 1507852288, 1508114431, 'FR', 'France'), +('89.228.0.0', '89.231.255.255', 1508114432, 1508376575, 'PL', 'Poland'), +('89.232.0.0', '89.232.63.255', 1508376576, 1508392959, 'GE', 'Georgia'), +('89.232.64.0', '89.232.255.255', 1508392960, 1508442111, 'RU', 'Russian Federation'), +('89.233.0.0', '89.233.63.255', 1508442112, 1508458495, 'DK', 'Denmark'), +('89.233.64.0', '89.233.127.255', 1508458496, 1508474879, 'RU', 'Russian Federation'), +('89.233.128.0', '89.233.145.31', 1508474880, 1508479263, 'CZ', 'Czech Republic'), +('89.233.145.32', '89.233.145.63', 1508479264, 1508479295, 'GB', 'United Kingdom'), +('89.233.145.64', '89.233.173.63', 1508479296, 1508486463, 'CZ', 'Czech Republic'), +('89.233.173.64', '89.233.173.127', 1508486464, 1508486527, 'DE', 'Germany'), +('89.233.173.128', '89.233.191.255', 1508486528, 1508491263, 'CZ', 'Czech Republic'), +('89.233.192.0', '89.233.255.255', 1508491264, 1508507647, 'SE', 'Sweden'), +('89.234.0.0', '89.234.25.15', 1508507648, 1508514063, 'GB', 'United Kingdom'), +('89.234.25.16', '89.234.25.23', 1508514064, 1508514071, 'A2', 'Satellite Provider'), +('89.234.25.24', '89.234.54.63', 1508514072, 1508521535, 'GB', 'United Kingdom'), +('89.234.54.64', '89.234.54.79', 1508521536, 1508521551, 'IE', 'Ireland'), +('89.234.54.80', '89.234.63.255', 1508521552, 1508524031, 'GB', 'United Kingdom'), +('89.234.64.0', '89.234.127.255', 1508524032, 1508540415, 'IE', 'Ireland'), +('89.234.128.0', '89.234.191.255', 1508540416, 1508556799, 'FR', 'France'), +('89.234.192.0', '89.234.255.255', 1508556800, 1508573183, 'PL', 'Poland'), +('89.235.0.0', '89.235.0.71', 1508573184, 1508573255, 'CZ', 'Czech Republic'), +('89.235.0.72', '89.235.0.75', 1508573256, 1508573259, 'SK', 'Slovakia'), +('89.235.0.76', '89.235.63.255', 1508573260, 1508589567, 'CZ', 'Czech Republic'), +('89.235.64.0', '89.235.127.255', 1508589568, 1508605951, 'IR', 'Iran, Islamic Republic of'), +('89.235.128.0', '89.235.191.255', 1508605952, 1508622335, 'RU', 'Russian Federation'), +('89.235.192.0', '89.235.255.255', 1508622336, 1508638719, 'EE', 'Estonia'), +('89.236.0.0', '89.236.1.255', 1508638720, 1508639231, 'SE', 'Sweden'), +('89.236.2.0', '89.236.7.255', 1508639232, 1508640767, 'DK', 'Denmark'), +('89.236.8.0', '89.236.9.255', 1508640768, 1508641279, 'SE', 'Sweden'), +('89.236.10.0', '89.236.10.255', 1508641280, 1508641535, 'DK', 'Denmark'), +('89.236.11.0', '89.236.13.127', 1508641536, 1508642175, 'SE', 'Sweden'), +('89.236.13.128', '89.236.13.255', 1508642176, 1508642303, 'DK', 'Denmark'), +('89.236.14.0', '89.236.14.255', 1508642304, 1508642559, 'SE', 'Sweden'), +('89.236.15.0', '89.236.15.255', 1508642560, 1508642815, 'DK', 'Denmark'), +('89.236.16.0', '89.236.31.255', 1508642816, 1508646911, 'SE', 'Sweden'), +('89.236.32.0', '89.236.32.15', 1508646912, 1508646927, 'DK', 'Denmark'), +('89.236.32.16', '89.236.37.255', 1508646928, 1508648447, 'SE', 'Sweden'), +('89.236.38.0', '89.236.38.255', 1508648448, 1508648703, 'DK', 'Denmark'), +('89.236.39.0', '89.236.47.255', 1508648704, 1508651007, 'SE', 'Sweden'), +('89.236.48.0', '89.236.48.127', 1508651008, 1508651135, 'DK', 'Denmark'), +('89.236.48.128', '89.236.53.255', 1508651136, 1508652543, 'SE', 'Sweden'), +('89.236.54.0', '89.236.59.255', 1508652544, 1508654079, 'DK', 'Denmark'), +('89.236.60.0', '89.236.63.255', 1508654080, 1508655103, 'SE', 'Sweden'), +('89.236.64.0', '89.236.127.255', 1508655104, 1508671487, 'FI', 'Finland'), +('89.236.128.0', '89.236.191.255', 1508671488, 1508687871, 'CH', 'Switzerland'), +('89.236.192.0', '89.236.255.255', 1508687872, 1508704255, 'UZ', 'Uzbekistan'), +('89.237.0.0', '89.237.63.255', 1508704256, 1508720639, 'RU', 'Russian Federation'), +('89.237.64.0', '89.237.127.255', 1508720640, 1508737023, 'FR', 'France'), +('89.237.128.0', '89.237.191.255', 1508737024, 1508753407, 'SA', 'Saudi Arabia'), +('89.237.192.0', '89.237.255.255', 1508753408, 1508769791, 'KG', 'Kyrgyzstan'), +('89.238.0.0', '89.238.63.255', 1508769792, 1508786175, 'PL', 'Poland'), +('89.238.64.0', '89.238.67.255', 1508786176, 1508787199, 'DE', 'Germany'), +('89.238.68.0', '89.238.68.255', 1508787200, 1508787455, 'ES', 'Spain'), +('89.238.69.0', '89.238.71.63', 1508787456, 1508788031, 'DE', 'Germany'), +('89.238.71.64', '89.238.71.95', 1508788032, 1508788063, 'BE', 'Belgium'), +('89.238.71.96', '89.238.127.255', 1508788064, 1508802559, 'DE', 'Germany'), +('89.238.128.0', '89.238.136.175', 1508802560, 1508804783, 'GB', 'United Kingdom'), +('89.238.136.176', '89.238.136.183', 1508804784, 1508804791, 'DE', 'Germany'), +('89.238.136.184', '89.238.137.255', 1508804792, 1508805119, 'GB', 'United Kingdom'), +('89.238.138.0', '89.238.138.255', 1508805120, 1508805375, 'NL', 'Netherlands'), +('89.238.139.0', '89.238.191.255', 1508805376, 1508818943, 'GB', 'United Kingdom'), +('89.238.192.0', '89.238.255.255', 1508818944, 1508835327, 'RO', 'Romania'), +('89.239.0.0', '89.239.63.255', 1508835328, 1508851711, 'CZ', 'Czech Republic'), +('89.239.64.0', '89.239.127.255', 1508851712, 1508868095, 'PL', 'Poland'), +('89.239.128.0', '89.239.191.255', 1508868096, 1508884479, 'RU', 'Russian Federation'), +('89.239.192.0', '89.239.255.255', 1508884480, 1508900863, 'DK', 'Denmark'), +('89.240.0.0', '89.243.255.255', 1508900864, 1509163007, 'GB', 'United Kingdom'), +('89.244.0.0', '89.247.255.255', 1509163008, 1509425151, 'DE', 'Germany'), +('89.248.0.0', '89.248.15.255', 1509425152, 1509429247, 'NO', 'Norway'), +('89.248.16.0', '89.248.31.255', 1509429248, 1509433343, 'GB', 'United Kingdom'), +('89.248.32.0', '89.248.47.255', 1509433344, 1509437439, 'CH', 'Switzerland'), +('89.248.48.0', '89.248.79.255', 1509437440, 1509445631, 'GB', 'United Kingdom'), +('89.248.80.0', '89.248.95.255', 1509445632, 1509449727, 'LV', 'Latvia'), +('89.248.96.0', '89.248.111.255', 1509449728, 1509453823, 'ES', 'Spain'), +('89.248.112.0', '89.248.127.255', 1509453824, 1509457919, 'RU', 'Russian Federation'), +('89.248.128.0', '89.248.143.255', 1509457920, 1509462015, 'GB', 'United Kingdom'), +('89.248.144.0', '89.248.157.255', 1509462016, 1509465599, 'LI', 'Liechtenstein'), +('89.248.158.0', '89.248.159.255', 1509465600, 1509466111, 'CH', 'Switzerland'), +('89.248.160.0', '89.248.160.190', 1509466112, 1509466302, 'NL', 'Netherlands'), +('89.248.160.191', '89.248.160.254', 1509466303, 1509466366, 'BZ', 'Belize'), +('89.248.160.255', '89.248.162.255', 1509466367, 1509466879, 'NL', 'Netherlands'), +('89.248.163.0', '89.248.163.31', 1509466880, 1509466911, 'IN', 'India'), +('89.248.163.32', '89.248.163.175', 1509466912, 1509467055, 'NL', 'Netherlands'), +('89.248.163.176', '89.248.163.223', 1509467056, 1509467103, 'SE', 'Sweden'), +('89.248.163.224', '89.248.165.7', 1509467104, 1509467399, 'NL', 'Netherlands'), +('89.248.165.8', '89.248.165.15', 1509467400, 1509467407, 'PL', 'Poland'), +('89.248.165.16', '89.248.165.31', 1509467408, 1509467423, 'NL', 'Netherlands'), +('89.248.165.32', '89.248.165.63', 1509467424, 1509467455, 'PL', 'Poland'), +('89.248.165.64', '89.248.165.95', 1509467456, 1509467487, 'NL', 'Netherlands'), +('89.248.165.96', '89.248.165.127', 1509467488, 1509467519, 'PL', 'Poland'), +('89.248.165.128', '89.248.165.191', 1509467520, 1509467583, 'BE', 'Belgium'), +('89.248.165.192', '89.248.166.191', 1509467584, 1509467839, 'NL', 'Netherlands'), +('89.248.166.192', '89.248.166.223', 1509467840, 1509467871, 'PL', 'Poland'), +('89.248.166.224', '89.248.172.255', 1509467872, 1509469439, 'NL', 'Netherlands'), +('89.248.173.0', '89.248.173.127', 1509469440, 1509469567, 'SE', 'Sweden'), +('89.248.173.128', '89.248.174.191', 1509469568, 1509469887, 'NL', 'Netherlands'), +('89.248.174.192', '89.248.174.223', 1509469888, 1509469919, 'MY', 'Malaysia'), +('89.248.174.224', '89.248.174.255', 1509469920, 1509469951, 'NL', 'Netherlands'), +('89.248.175.0', '89.248.175.127', 1509469952, 1509470079, 'RU', 'Russian Federation'), +('89.248.175.128', '89.248.175.255', 1509470080, 1509470207, 'NL', 'Netherlands'), +('89.248.176.0', '89.248.207.255', 1509470208, 1509478399, 'RU', 'Russian Federation'), +('89.248.208.0', '89.248.223.255', 1509478400, 1509482495, 'FR', 'France'), +('89.248.224.0', '89.248.239.255', 1509482496, 1509486591, 'RU', 'Russian Federation'), +('89.248.240.0', '89.248.255.255', 1509486592, 1509490687, 'CZ', 'Czech Republic'), +('89.249.0.0', '89.249.15.255', 1509490688, 1509494783, 'DK', 'Denmark'), +('89.249.16.0', '89.249.31.255', 1509494784, 1509498879, 'RU', 'Russian Federation'), +('89.249.32.0', '89.249.33.255', 1509498880, 1509499391, 'CH', 'Switzerland'), +('89.249.34.0', '89.249.38.255', 1509499392, 1509500671, 'DE', 'Germany'), +('89.249.39.0', '89.249.39.255', 1509500672, 1509500927, 'CH', 'Switzerland'), +('89.249.40.0', '89.249.40.223', 1509500928, 1509501151, 'DE', 'Germany'), +('89.249.40.224', '89.249.40.231', 1509501152, 1509501159, 'GB', 'United Kingdom'), +('89.249.40.232', '89.249.47.255', 1509501160, 1509502975, 'CH', 'Switzerland'), +('89.249.48.0', '89.249.63.255', 1509502976, 1509507071, 'RU', 'Russian Federation'), +('89.249.64.0', '89.249.79.255', 1509507072, 1509511167, 'GB', 'United Kingdom'), +('89.249.80.0', '89.249.95.255', 1509511168, 1509515263, 'LT', 'Lithuania'), +('89.249.96.0', '89.249.111.255', 1509515264, 1509519359, 'HR', 'Croatia'), +('89.249.112.0', '89.249.159.255', 1509519360, 1509531647, 'RU', 'Russian Federation'), +('89.249.160.0', '89.249.175.255', 1509531648, 1509535743, 'GB', 'United Kingdom'), +('89.249.176.0', '89.249.191.255', 1509535744, 1509539839, 'RU', 'Russian Federation'), +('89.249.192.0', '89.249.207.255', 1509539840, 1509543935, 'AM', 'Armenia'), +('89.249.208.0', '89.249.223.255', 1509543936, 1509548031, 'LB', 'Lebanon'), +('89.249.224.0', '89.250.31.255', 1509548032, 1509564415, 'RU', 'Russian Federation'), +('89.250.32.0', '89.250.47.255', 1509564416, 1509568511, 'GB', 'United Kingdom'), +('89.250.48.0', '89.250.63.255', 1509568512, 1509572607, 'FI', 'Finland'), +('89.250.64.0', '89.250.79.255', 1509572608, 1509576703, 'NL', 'Netherlands'), +('89.250.80.0', '89.250.95.255', 1509576704, 1509580799, 'KZ', 'Kazakstan'), +('89.250.96.0', '89.250.111.255', 1509580800, 1509584895, 'CZ', 'Czech Republic'), +('89.250.112.0', '89.250.125.255', 1509584896, 1509588479, 'NO', 'Norway'), +('89.250.126.0', '89.250.126.127', 1509588480, 1509588607, 'GB', 'United Kingdom'), +('89.250.126.128', '89.250.127.15', 1509588608, 1509588751, 'NO', 'Norway'), +('89.250.127.16', '89.250.127.31', 1509588752, 1509588767, 'GB', 'United Kingdom'), +('89.250.127.32', '89.250.127.255', 1509588768, 1509588991, 'NO', 'Norway'), +('89.250.128.0', '89.250.143.255', 1509588992, 1509593087, 'DE', 'Germany'), +('89.250.144.0', '89.250.175.255', 1509593088, 1509601279, 'RU', 'Russian Federation'), +('89.250.176.0', '89.250.191.255', 1509601280, 1509605375, 'NL', 'Netherlands'), +('89.250.192.0', '89.250.207.255', 1509605376, 1509609471, 'PL', 'Poland'), +('89.250.208.0', '89.250.239.255', 1509609472, 1509617663, 'RU', 'Russian Federation'), +('89.250.240.0', '89.250.255.255', 1509617664, 1509621759, 'CZ', 'Czech Republic'), +('89.251.0.0', '89.251.9.255', 1509621760, 1509624319, 'NL', 'Netherlands'), +('89.251.10.0', '89.251.11.255', 1509624320, 1509624831, 'US', 'United States'), +('89.251.12.0', '89.251.15.255', 1509624832, 1509625855, 'NL', 'Netherlands'), +('89.251.16.0', '89.251.31.255', 1509625856, 1509629951, 'UA', 'Ukraine'), +('89.251.32.0', '89.251.47.255', 1509629952, 1509634047, 'HU', 'Hungary'), +('89.251.48.0', '89.251.63.255', 1509634048, 1509638143, 'FR', 'France'), +('89.251.64.0', '89.251.79.255', 1509638144, 1509642239, 'RU', 'Russian Federation'), +('89.251.80.0', '89.251.88.63', 1509642240, 1509644351, 'KW', 'Kuwait'), +('89.251.88.64', '89.251.88.95', 1509644352, 1509644383, 'GB', 'United Kingdom'), +('89.251.88.96', '89.251.95.255', 1509644384, 1509646335, 'KW', 'Kuwait'), +('89.251.96.0', '89.251.111.255', 1509646336, 1509650431, 'RU', 'Russian Federation'), +('89.251.112.0', '89.251.127.255', 1509650432, 1509654527, 'GB', 'United Kingdom'), +('89.251.128.0', '89.251.143.255', 1509654528, 1509658623, 'DE', 'Germany'), +('89.251.144.0', '89.251.175.255', 1509658624, 1509666815, 'RU', 'Russian Federation'), +('89.251.176.0', '89.251.191.255', 1509666816, 1509670911, 'IT', 'Italy'), +('89.251.192.0', '89.251.207.255', 1509670912, 1509675007, 'GB', 'United Kingdom'), +('89.251.208.0', '89.251.223.255', 1509675008, 1509679103, 'NO', 'Norway'), +('89.251.224.0', '89.251.239.255', 1509679104, 1509683199, 'ES', 'Spain'), +('89.251.240.0', '89.251.255.255', 1509683200, 1509687295, 'CH', 'Switzerland'), +('89.252.0.0', '89.252.63.255', 1509687296, 1509703679, 'UA', 'Ukraine'), +('89.252.64.0', '89.252.127.255', 1509703680, 1509720063, 'RU', 'Russian Federation'), +('89.252.128.0', '89.252.191.255', 1509720064, 1509736447, 'TR', 'Turkey'), +('89.252.192.0', '89.252.255.255', 1509736448, 1509752831, 'BG', 'Bulgaria'), +('89.253.0.0', '89.253.63.255', 1509752832, 1509769215, 'RU', 'Russian Federation'), +('89.253.64.0', '89.253.127.255', 1509769216, 1509785599, 'SE', 'Sweden'), +('89.253.128.0', '89.253.191.255', 1509785600, 1509801983, 'BG', 'Bulgaria'), +('89.253.192.0', '89.253.255.255', 1509801984, 1509818367, 'RU', 'Russian Federation'), +('89.254.0.0', '89.254.127.255', 1509818368, 1509851135, 'NO', 'Norway'), +('89.254.128.0', '89.254.191.255', 1509851136, 1509867519, 'LV', 'Latvia'), +('89.254.192.0', '89.254.255.255', 1509867520, 1509883903, 'RU', 'Russian Federation'), +('89.255.0.0', '89.255.63.255', 1509883904, 1509900287, 'NL', 'Netherlands'), +('89.255.64.0', '89.255.127.255', 1509900288, 1509916671, 'RU', 'Russian Federation'), +('89.255.128.0', '89.255.191.255', 1509916672, 1509933055, 'GB', 'United Kingdom'), +('89.255.192.0', '89.255.255.255', 1509933056, 1509949439, 'US', 'United States'), +('90.0.0.0', '90.84.48.255', 1509949440, 1515467007, 'FR', 'France'), +('90.84.49.0', '90.84.49.255', 1515467008, 1515467263, 'ES', 'Spain'), +('90.84.50.0', '90.84.127.255', 1515467264, 1515487231, 'FR', 'France'), +('90.84.128.0', '90.84.128.127', 1515487232, 1515487359, 'HK', 'Hong Kong'), +('90.84.128.128', '90.84.130.255', 1515487360, 1515487999, 'FR', 'France'), +('90.84.131.0', '90.84.131.255', 1515488000, 1515488255, 'HK', 'Hong Kong'), +('90.84.132.0', '90.84.254.255', 1515488256, 1515519743, 'FR', 'France'), +('90.84.255.0', '90.84.255.127', 1515519744, 1515519871, 'ES', 'Spain'), +('90.84.255.128', '90.127.255.255', 1515519872, 1518338047, 'FR', 'France'), +('90.128.0.0', '90.128.127.255', 1518338048, 1518370815, 'DE', 'Germany'), +('90.128.128.0', '90.128.255.255', 1518370816, 1518403583, 'NL', 'Netherlands'), +('90.129.0.0', '90.129.63.255', 1518403584, 1518419967, 'LU', 'Luxembourg'), +('90.129.64.0', '90.129.127.255', 1518419968, 1518436351, 'PL', 'Poland'), +('90.129.128.0', '90.129.131.255', 1518436352, 1518437375, 'BE', 'Belgium'), +('90.129.132.0', '90.129.191.255', 1518437376, 1518452735, 'SE', 'Sweden'), +('90.129.192.0', '90.129.223.255', 1518452736, 1518460927, 'AT', 'Austria'), +('90.129.224.0', '90.129.255.255', 1518460928, 1518469119, 'PL', 'Poland'), +('90.130.0.0', '90.130.127.255', 1518469120, 1518501887, 'SE', 'Sweden'), +('90.130.128.0', '90.130.131.255', 1518501888, 1518502911, 'EE', 'Estonia'), +('90.130.132.0', '90.130.135.255', 1518502912, 1518503935, 'SE', 'Sweden'), +('90.130.136.0', '90.130.139.255', 1518503936, 1518504959, 'LT', 'Lithuania'), +('90.130.140.0', '90.130.143.255', 1518504960, 1518505983, 'SE', 'Sweden'), +('90.130.144.0', '90.130.151.255', 1518505984, 1518508031, 'LT', 'Lithuania'), +('90.130.152.0', '90.130.159.255', 1518508032, 1518510079, 'SE', 'Sweden'), +('90.130.160.0', '90.130.175.255', 1518510080, 1518514175, 'LV', 'Latvia'), +('90.130.176.0', '90.132.255.255', 1518514176, 1518665727, 'SE', 'Sweden'), +('90.133.0.0', '90.133.239.255', 1518665728, 1518727167, 'RU', 'Russian Federation'), +('90.133.240.0', '90.133.255.255', 1518727168, 1518731263, 'SE', 'Sweden'), +('90.134.0.0', '90.136.255.255', 1518731264, 1518927871, 'DE', 'Germany'), +('90.137.0.0', '90.137.63.255', 1518927872, 1518944255, 'RU', 'Russian Federation'), +('90.137.64.0', '90.137.131.255', 1518944256, 1518961663, 'SE', 'Sweden'), +('90.137.132.0', '90.137.133.255', 1518961664, 1518962175, 'EE', 'Estonia'), +('90.137.134.0', '90.137.135.255', 1518962176, 1518962687, 'LV', 'Latvia'), +('90.137.136.0', '90.137.143.255', 1518962688, 1518964735, 'NO', 'Norway'), +('90.137.144.0', '90.137.151.255', 1518964736, 1518966783, 'HR', 'Croatia'), +('90.137.152.0', '90.137.255.255', 1518966784, 1518993407, 'SE', 'Sweden'), +('90.138.0.0', '90.139.255.255', 1518993408, 1519124479, 'RU', 'Russian Federation'), +('90.140.0.0', '90.141.127.255', 1519124480, 1519222783, 'PL', 'Poland'), +('90.141.128.0', '90.142.255.255', 1519222784, 1519321087, 'SE', 'Sweden'), +('90.143.0.0', '90.143.255.255', 1519321088, 1519386623, 'RU', 'Russian Federation'), +('90.144.0.0', '90.144.255.255', 1519386624, 1519452159, 'FR', 'France'), +('90.145.0.0', '90.145.255.255', 1519452160, 1519517695, 'NL', 'Netherlands'), +('90.146.0.0', '90.146.255.255', 1519517696, 1519583231, 'AT', 'Austria'), +('90.147.0.0', '90.147.255.255', 1519583232, 1519648767, 'IT', 'Italy'), +('90.148.0.0', '90.148.255.255', 1519648768, 1519714303, 'SA', 'Saudi Arabia'), +('90.149.0.0', '90.149.255.255', 1519714304, 1519779839, 'NO', 'Norway'), +('90.150.0.0', '90.151.255.255', 1519779840, 1519910911, 'RU', 'Russian Federation'), +('90.152.0.0', '90.152.63.255', 1519910912, 1519927295, 'GB', 'United Kingdom'), +('90.152.64.0', '90.152.64.15', 1519927296, 1519927311, 'FR', 'France'), +('90.152.64.16', '90.152.64.23', 1519927312, 1519927319, 'BE', 'Belgium'), +('90.152.64.24', '90.152.64.31', 1519927320, 1519927327, 'FR', 'France'), +('90.152.64.32', '90.152.64.39', 1519927328, 1519927335, 'ES', 'Spain'), +('90.152.64.40', '90.152.64.47', 1519927336, 1519927343, 'CH', 'Switzerland'), +('90.152.64.48', '90.152.64.55', 1519927344, 1519927351, 'AT', 'Austria'), +('90.152.64.56', '90.152.64.79', 1519927352, 1519927375, 'NL', 'Netherlands'), +('90.152.64.80', '90.152.64.87', 1519927376, 1519927383, 'CH', 'Switzerland'), +('90.152.64.88', '90.152.64.103', 1519927384, 1519927399, 'NL', 'Netherlands'), +('90.152.64.104', '90.152.64.111', 1519927400, 1519927407, 'FR', 'France'), +('90.152.64.112', '90.152.64.119', 1519927408, 1519927415, 'AT', 'Austria'), +('90.152.64.120', '90.152.64.127', 1519927416, 1519927423, 'BE', 'Belgium'), +('90.152.64.128', '90.152.64.135', 1519927424, 1519927431, 'LU', 'Luxembourg'), +('90.152.64.136', '90.152.64.143', 1519927432, 1519927439, 'NL', 'Netherlands'), +('90.152.64.144', '90.152.64.151', 1519927440, 1519927447, 'CH', 'Switzerland'), +('90.152.64.152', '90.152.64.167', 1519927448, 1519927463, 'FR', 'France'), +('90.152.64.168', '90.152.64.175', 1519927464, 1519927471, 'IT', 'Italy'), +('90.152.64.176', '90.152.64.183', 1519927472, 1519927479, 'NL', 'Netherlands'), +('90.152.64.184', '90.152.64.207', 1519927480, 1519927503, 'FR', 'France'), +('90.152.64.208', '90.152.64.215', 1519927504, 1519927511, 'NL', 'Netherlands'), +('90.152.64.216', '90.152.64.231', 1519927512, 1519927527, 'ES', 'Spain'), +('90.152.64.232', '90.152.64.239', 1519927528, 1519927535, 'NL', 'Netherlands'), +('90.152.64.240', '90.152.64.247', 1519927536, 1519927543, 'FR', 'France'), +('90.152.64.248', '90.152.64.255', 1519927544, 1519927551, 'IE', 'Ireland'), +('90.152.65.0', '90.152.65.7', 1519927552, 1519927559, 'SE', 'Sweden'), +('90.152.65.8', '90.152.65.15', 1519927560, 1519927567, 'IT', 'Italy'), +('90.152.65.16', '90.152.65.23', 1519927568, 1519927575, 'GB', 'United Kingdom'), +('90.152.65.24', '90.152.65.31', 1519927576, 1519927583, 'FR', 'France'), +('90.152.65.32', '90.152.65.39', 1519927584, 1519927591, 'AT', 'Austria'), +('90.152.65.40', '90.152.65.55', 1519927592, 1519927607, 'BE', 'Belgium'), +('90.152.65.56', '90.152.65.63', 1519927608, 1519927615, 'FR', 'France'), +('90.152.65.64', '90.152.65.79', 1519927616, 1519927631, 'NL', 'Netherlands'), +('90.152.65.80', '90.152.65.87', 1519927632, 1519927639, 'CH', 'Switzerland'), +('90.152.65.88', '90.152.65.95', 1519927640, 1519927647, 'BE', 'Belgium'), +('90.152.65.96', '90.152.65.103', 1519927648, 1519927655, 'FR', 'France'), +('90.152.65.104', '90.152.65.111', 1519927656, 1519927663, 'NL', 'Netherlands'), +('90.152.65.112', '90.152.65.119', 1519927664, 1519927671, 'IT', 'Italy'), +('90.152.65.120', '90.152.65.127', 1519927672, 1519927679, 'FI', 'Finland'), +('90.152.65.128', '90.152.65.135', 1519927680, 1519927687, 'IE', 'Ireland'), +('90.152.65.136', '90.152.65.143', 1519927688, 1519927695, 'IT', 'Italy'), +('90.152.65.144', '90.152.65.167', 1519927696, 1519927719, 'NL', 'Netherlands'), +('90.152.65.168', '90.152.65.175', 1519927720, 1519927727, 'ES', 'Spain'), +('90.152.65.176', '90.152.65.183', 1519927728, 1519927735, 'FR', 'France'), +('90.152.65.184', '90.152.65.191', 1519927736, 1519927743, 'NL', 'Netherlands'), +('90.152.65.192', '90.152.65.199', 1519927744, 1519927751, 'ES', 'Spain'), +('90.152.65.200', '90.152.65.207', 1519927752, 1519927759, 'IT', 'Italy'), +('90.152.65.208', '90.152.65.215', 1519927760, 1519927767, 'ES', 'Spain'), +('90.152.65.216', '90.152.65.223', 1519927768, 1519927775, 'NL', 'Netherlands'), +('90.152.65.224', '90.152.65.231', 1519927776, 1519927783, 'FR', 'France'), +('90.152.65.232', '90.152.66.15', 1519927784, 1519927823, 'GB', 'United Kingdom'), +('90.152.66.16', '90.152.66.23', 1519927824, 1519927831, 'BE', 'Belgium'), +('90.152.66.24', '90.152.66.47', 1519927832, 1519927855, 'GB', 'United Kingdom'), +('90.152.66.48', '90.152.66.55', 1519927856, 1519927863, 'DK', 'Denmark'), +('90.152.66.56', '90.152.66.63', 1519927864, 1519927871, 'FI', 'Finland'), +('90.152.66.64', '90.152.66.71', 1519927872, 1519927879, 'NL', 'Netherlands'), +('90.152.66.72', '90.152.66.87', 1519927880, 1519927895, 'GB', 'United Kingdom'), +('90.152.66.88', '90.152.66.95', 1519927896, 1519927903, 'NL', 'Netherlands'), +('90.152.66.96', '90.152.67.55', 1519927904, 1519928119, 'GB', 'United Kingdom'), +('90.152.67.56', '90.152.67.79', 1519928120, 1519928143, 'NO', 'Norway'), +('90.152.67.80', '90.152.67.87', 1519928144, 1519928151, 'NL', 'Netherlands'), +('90.152.67.88', '90.152.67.119', 1519928152, 1519928183, 'DK', 'Denmark'), +('90.152.67.120', '90.152.67.127', 1519928184, 1519928191, 'GB', 'United Kingdom'), +('90.152.67.128', '90.152.67.135', 1519928192, 1519928199, 'SE', 'Sweden'), +('90.152.67.136', '90.152.67.183', 1519928200, 1519928247, 'GB', 'United Kingdom'), +('90.152.67.184', '90.152.67.191', 1519928248, 1519928255, 'DK', 'Denmark'), +('90.152.67.192', '90.152.71.191', 1519928256, 1519929279, 'GB', 'United Kingdom'), +('90.152.71.192', '90.152.71.199', 1519929280, 1519929287, 'NL', 'Netherlands'), +('90.152.71.200', '90.152.71.255', 1519929288, 1519929343, 'GB', 'United Kingdom'), +('90.152.72.0', '90.152.72.127', 1519929344, 1519929471, 'NL', 'Netherlands'), +('90.152.72.128', '90.152.72.159', 1519929472, 1519929503, 'FI', 'Finland'), +('90.152.72.160', '90.152.72.223', 1519929504, 1519929567, 'NL', 'Netherlands'), +('90.152.72.224', '90.152.72.255', 1519929568, 1519929599, 'FI', 'Finland'), +('90.152.73.0', '90.152.73.159', 1519929600, 1519929759, 'NL', 'Netherlands'), +('90.152.73.160', '90.152.73.191', 1519929760, 1519929791, 'CZ', 'Czech Republic'), +('90.152.73.192', '90.152.73.192', 1519929792, 1519929792, 'GB', 'United Kingdom'), +('90.152.73.193', '90.152.73.223', 1519929793, 1519929823, 'SE', 'Sweden'), +('90.152.73.224', '90.152.73.255', 1519929824, 1519929855, 'DK', 'Denmark'), +('90.152.74.0', '90.152.74.95', 1519929856, 1519929951, 'SE', 'Sweden'), +('90.152.74.96', '90.152.74.255', 1519929952, 1519930111, 'BE', 'Belgium'), +('90.152.75.0', '90.152.75.95', 1519930112, 1519930207, 'NL', 'Netherlands'), +('90.152.75.96', '90.152.75.127', 1519930208, 1519930239, 'BE', 'Belgium'), +('90.152.75.128', '90.152.75.159', 1519930240, 1519930271, 'NL', 'Netherlands'), +('90.152.75.160', '90.152.75.223', 1519930272, 1519930335, 'DK', 'Denmark'), +('90.152.75.224', '90.152.75.255', 1519930336, 1519930367, 'SE', 'Sweden'), +('90.152.76.0', '90.152.76.31', 1519930368, 1519930399, 'DK', 'Denmark'), +('90.152.76.32', '90.152.76.159', 1519930400, 1519930527, 'NL', 'Netherlands'), +('90.152.76.160', '90.152.76.191', 1519930528, 1519930559, 'NO', 'Norway'), +('90.152.76.192', '90.152.76.223', 1519930560, 1519930591, 'SE', 'Sweden'), +('90.152.76.224', '90.152.77.31', 1519930592, 1519930655, 'NO', 'Norway'), +('90.152.77.32', '90.152.77.127', 1519930656, 1519930751, 'NL', 'Netherlands'), +('90.152.77.128', '90.152.77.159', 1519930752, 1519930783, 'BE', 'Belgium'), +('90.152.77.160', '90.152.78.31', 1519930784, 1519930911, 'NL', 'Netherlands'), +('90.152.78.32', '90.152.78.63', 1519930912, 1519930943, 'CZ', 'Czech Republic'), +('90.152.78.64', '90.152.78.95', 1519930944, 1519930975, 'BE', 'Belgium'), +('90.152.78.96', '90.152.78.127', 1519930976, 1519931007, 'NL', 'Netherlands'), +('90.152.78.128', '90.152.78.159', 1519931008, 1519931039, 'BE', 'Belgium'), +('90.152.78.160', '90.152.78.191', 1519931040, 1519931071, 'DK', 'Denmark'), +('90.152.78.192', '90.152.78.223', 1519931072, 1519931103, 'NO', 'Norway'), +('90.152.78.224', '90.152.78.255', 1519931104, 1519931135, 'SE', 'Sweden'), +('90.152.79.0', '90.152.79.95', 1519931136, 1519931231, 'NL', 'Netherlands'), +('90.152.79.96', '90.152.79.127', 1519931232, 1519931263, 'NO', 'Norway'), +('90.152.79.128', '90.152.79.223', 1519931264, 1519931359, 'GB', 'United Kingdom'), +('90.152.79.224', '90.152.79.239', 1519931360, 1519931375, 'BE', 'Belgium'), +('90.152.79.240', '90.152.79.255', 1519931376, 1519931391, 'GB', 'United Kingdom'), +('90.152.80.0', '90.152.91.255', 1519931392, 1519934463, 'NL', 'Netherlands'), +('90.152.92.0', '90.152.93.255', 1519934464, 1519934975, 'GB', 'United Kingdom'), +('90.152.94.0', '90.152.95.255', 1519934976, 1519935487, 'NL', 'Netherlands'), +('90.152.96.0', '90.152.96.127', 1519935488, 1519935615, 'FR', 'France'), +('90.152.96.128', '90.152.96.255', 1519935616, 1519935743, 'NL', 'Netherlands'), +('90.152.97.0', '90.152.97.191', 1519935744, 1519935935, 'FI', 'Finland'), +('90.152.97.192', '90.152.98.191', 1519935936, 1519936191, 'BE', 'Belgium'), +('90.152.98.192', '90.152.98.255', 1519936192, 1519936255, 'DK', 'Denmark'), +('90.152.99.0', '90.152.99.127', 1519936256, 1519936383, 'NL', 'Netherlands'), +('90.152.99.128', '90.152.99.191', 1519936384, 1519936447, 'BE', 'Belgium'), +('90.152.99.192', '90.152.99.255', 1519936448, 1519936511, 'NO', 'Norway'), +('90.152.100.0', '90.152.100.63', 1519936512, 1519936575, 'SK', 'Slovakia'), +('90.152.100.64', '90.152.100.255', 1519936576, 1519936767, 'DK', 'Denmark'), +('90.152.101.0', '90.152.101.127', 1519936768, 1519936895, 'SE', 'Sweden'), +('90.152.101.128', '90.152.101.255', 1519936896, 1519937023, 'BE', 'Belgium'), +('90.152.102.0', '90.152.102.255', 1519937024, 1519937279, 'DK', 'Denmark'), +('90.152.103.0', '90.152.103.63', 1519937280, 1519937343, 'NL', 'Netherlands'), +('90.152.103.64', '90.152.103.127', 1519937344, 1519937407, 'SE', 'Sweden'), +('90.152.103.128', '90.152.103.191', 1519937408, 1519937471, 'NO', 'Norway'), +('90.152.103.192', '90.152.103.255', 1519937472, 1519937535, 'GB', 'United Kingdom'), +('90.152.104.0', '90.152.104.191', 1519937536, 1519937727, 'NL', 'Netherlands'), +('90.152.104.192', '90.152.107.255', 1519937728, 1519938559, 'GB', 'United Kingdom'), +('90.152.108.0', '90.152.111.255', 1519938560, 1519939583, 'NL', 'Netherlands'), +('90.152.112.0', '90.152.112.31', 1519939584, 1519939615, 'NO', 'Norway'), +('90.152.112.32', '90.152.112.63', 1519939616, 1519939647, 'NL', 'Netherlands'), +('90.152.112.64', '90.152.112.95', 1519939648, 1519939679, 'SE', 'Sweden'), +('90.152.112.96', '90.152.112.127', 1519939680, 1519939711, 'SK', 'Slovakia'), +('90.152.112.128', '90.152.112.159', 1519939712, 1519939743, 'NL', 'Netherlands'), +('90.152.112.160', '90.152.112.223', 1519939744, 1519939807, 'BE', 'Belgium'), +('90.152.112.224', '90.152.112.255', 1519939808, 1519939839, 'NL', 'Netherlands'), +('90.152.113.0', '90.152.113.255', 1519939840, 1519940095, 'GB', 'United Kingdom'), +('90.152.114.0', '90.152.114.63', 1519940096, 1519940159, 'NL', 'Netherlands'), +('90.152.114.64', '90.152.114.95', 1519940160, 1519940191, 'FI', 'Finland'), +('90.152.114.96', '90.152.114.127', 1519940192, 1519940223, 'SE', 'Sweden'), +('90.152.114.128', '90.152.127.255', 1519940224, 1519943679, 'GB', 'United Kingdom'), +('90.152.128.0', '90.152.255.255', 1519943680, 1519976447, 'AT', 'Austria'), +('90.153.0.0', '90.153.127.255', 1519976448, 1520009215, 'DE', 'Germany'), +('90.153.128.0', '90.153.255.255', 1520009216, 1520041983, 'SY', 'Syrian Arab Republic'), +('90.154.0.0', '90.154.127.255', 1520041984, 1520074751, 'RU', 'Russian Federation'), +('90.154.128.0', '90.154.223.255', 1520074752, 1520099327, 'BG', 'Bulgaria'), +('90.154.224.0', '90.154.224.255', 1520099328, 1520099583, 'A2', 'Satellite Provider'), +('90.154.225.0', '90.154.255.255', 1520099584, 1520107519, 'BG', 'Bulgaria'), +('90.155.0.0', '90.155.127.255', 1520107520, 1520140287, 'GB', 'United Kingdom'), +('90.155.128.0', '90.155.255.255', 1520140288, 1520173055, 'RU', 'Russian Federation'), +('90.156.0.0', '90.156.127.255', 1520173056, 1520205823, 'PL', 'Poland'), +('90.156.128.0', '90.156.223.255', 1520205824, 1520230399, 'RU', 'Russian Federation'), +('90.156.224.0', '90.156.225.255', 1520230400, 1520230911, 'NL', 'Netherlands'), +('90.156.226.0', '90.156.227.255', 1520230912, 1520231423, 'RU', 'Russian Federation'), +('90.156.228.0', '90.156.230.255', 1520231424, 1520232191, 'NL', 'Netherlands'), +('90.156.231.0', '90.156.231.255', 1520232192, 1520232447, 'RU', 'Russian Federation'), +('90.156.232.0', '90.156.235.255', 1520232448, 1520233471, 'NL', 'Netherlands'), +('90.156.236.0', '90.157.127.255', 1520233472, 1520271359, 'RU', 'Russian Federation'), +('90.157.128.0', '90.157.255.255', 1520271360, 1520304127, 'SI', 'Slovenia'), +('90.158.0.0', '90.159.255.255', 1520304128, 1520435199, 'TR', 'Turkey'), +('90.160.0.0', '90.175.255.255', 1520435200, 1521483775, 'ES', 'Spain'), +('90.176.0.0', '90.183.255.255', 1521483776, 1522008063, 'CZ', 'Czech Republic'), +('90.184.0.0', '90.185.255.255', 1522008064, 1522139135, 'DK', 'Denmark'), +('90.186.0.0', '90.187.255.255', 1522139136, 1522270207, 'DE', 'Germany'), +('90.188.0.0', '90.189.255.255', 1522270208, 1522401279, 'RU', 'Russian Federation'), +('90.190.0.0', '90.191.255.255', 1522401280, 1522532351, 'EE', 'Estonia'), +('90.192.0.0', '90.223.255.255', 1522532352, 1524629503, 'GB', 'United Kingdom'), +('90.224.0.0', '90.239.255.255', 1524629504, 1525678079, 'SE', 'Sweden'), +('90.240.0.0', '90.255.255.255', 1525678080, 1526726655, 'GB', 'United Kingdom'), +('91.0.0.0', '91.67.255.255', 1526726656, 1531183103, 'DE', 'Germany'), +('91.68.0.0', '91.71.255.255', 1531183104, 1531445247, 'FR', 'France'), +('91.72.0.0', '91.75.255.255', 1531445248, 1531707391, 'AE', 'United Arab Emirates'), +('91.76.0.0', '91.79.255.255', 1531707392, 1531969535, 'RU', 'Russian Federation'), +('91.80.0.0', '91.81.255.255', 1531969536, 1532100607, 'IT', 'Italy'), +('91.82.0.0', '91.83.255.255', 1532100608, 1532231679, 'HU', 'Hungary'), +('91.84.0.0', '91.85.255.255', 1532231680, 1532362751, 'GB', 'United Kingdom'), +('91.86.0.0', '91.87.255.255', 1532362752, 1532493823, 'BE', 'Belgium'), +('91.88.0.0', '91.88.255.255', 1532493824, 1532559359, 'FR', 'France'), +('91.89.0.0', '91.89.255.255', 1532559360, 1532624895, 'DE', 'Germany'), +('91.90.0.0', '91.90.7.255', 1532624896, 1532626943, 'ES', 'Spain'), +('91.90.8.0', '91.90.23.255', 1532626944, 1532631039, 'UA', 'Ukraine'), +('91.90.24.0', '91.90.31.255', 1532631040, 1532633087, 'SE', 'Sweden'), +('91.90.32.0', '91.90.39.255', 1532633088, 1532635135, 'RU', 'Russian Federation'), +('91.90.40.0', '91.90.47.255', 1532635136, 1532637183, 'NO', 'Norway'), +('91.90.48.0', '91.90.55.255', 1532637184, 1532639231, 'FI', 'Finland'), +('91.90.56.0', '91.90.63.255', 1532639232, 1532641279, 'PL', 'Poland'), +('91.90.64.0', '91.90.71.255', 1532641280, 1532643327, 'NO', 'Norway'), +('91.90.72.0', '91.90.79.255', 1532643328, 1532645375, 'PL', 'Poland'), +('91.90.80.0', '91.90.87.255', 1532645376, 1532647423, 'RU', 'Russian Federation'), +('91.90.88.0', '91.90.95.255', 1532647424, 1532649471, 'PL', 'Poland'), +('91.90.96.0', '91.90.103.255', 1532649472, 1532651519, 'FR', 'France'), +('91.90.104.0', '91.90.111.255', 1532651520, 1532653567, 'NO', 'Norway'), +('91.90.112.0', '91.90.119.255', 1532653568, 1532655615, 'PL', 'Poland'), +('91.90.120.0', '91.90.127.255', 1532655616, 1532657663, 'RO', 'Romania'), +('91.90.128.0', '91.90.143.255', 1532657664, 1532661759, 'IL', 'Israel'), +('91.90.144.0', '91.90.159.255', 1532661760, 1532665855, 'DE', 'Germany'), +('91.90.160.0', '91.90.191.255', 1532665856, 1532674047, 'PL', 'Poland'), +('91.90.192.0', '91.90.223.255', 1532674048, 1532682239, 'UA', 'Ukraine'), +('91.90.224.0', '91.90.255.255', 1532682240, 1532690431, 'LV', 'Latvia'), +('91.91.0.0', '91.91.255.255', 1532690432, 1532755967, 'FR', 'France'), +('91.92.0.0', '91.92.255.255', 1532755968, 1532821503, 'BG', 'Bulgaria'), +('91.93.0.0', '91.93.255.255', 1532821504, 1532887039, 'TR', 'Turkey'), +('91.94.0.0', '91.94.255.255', 1532887040, 1532952575, 'PL', 'Poland'), +('91.95.0.0', '91.95.255.255', 1532952576, 1533018111, 'SE', 'Sweden'), +('91.96.0.0', '91.97.255.255', 1533018112, 1533149183, 'DE', 'Germany'), +('91.98.0.0', '91.99.255.255', 1533149184, 1533280255, 'IR', 'Iran, Islamic Republic of'), +('91.100.0.0', '91.101.255.255', 1533280256, 1533411327, 'DK', 'Denmark'), +('91.102.0.0', '91.102.7.255', 1533411328, 1533413375, 'GB', 'United Kingdom'), +('91.102.8.0', '91.102.15.255', 1533413376, 1533415423, 'NO', 'Norway'), +('91.102.16.0', '91.102.23.255', 1533415424, 1533417471, 'SA', 'Saudi Arabia'), +('91.102.24.0', '91.102.31.255', 1533417472, 1533419519, 'NO', 'Norway'), +('91.102.32.0', '91.102.32.255', 1533419520, 1533419775, 'KW', 'Kuwait'), +('91.102.33.0', '91.102.33.255', 1533419776, 1533420031, 'SA', 'Saudi Arabia'), +('91.102.34.0', '91.102.34.255', 1533420032, 1533420287, 'KW', 'Kuwait'), +('91.102.35.0', '91.102.35.255', 1533420288, 1533420543, 'AE', 'United Arab Emirates'), +('91.102.36.0', '91.102.39.255', 1533420544, 1533421567, 'KW', 'Kuwait'), +('91.102.40.0', '91.102.47.255', 1533421568, 1533423615, 'NL', 'Netherlands'), +('91.102.48.0', '91.102.55.255', 1533423616, 1533425663, 'IT', 'Italy'), +('91.102.56.0', '91.102.66.255', 1533425664, 1533428479, 'GB', 'United Kingdom'), +('91.102.67.0', '91.102.67.255', 1533428480, 1533428735, 'US', 'United States'), +('91.102.68.0', '91.102.71.255', 1533428736, 1533429759, 'GB', 'United Kingdom'), +('91.102.72.0', '91.102.79.255', 1533429760, 1533431807, 'IT', 'Italy'), +('91.102.80.0', '91.102.87.255', 1533431808, 1533433855, 'IE', 'Ireland'), +('91.102.88.0', '91.102.95.255', 1533433856, 1533435903, 'DK', 'Denmark'), +('91.102.96.0', '91.102.103.255', 1533435904, 1533437951, 'CZ', 'Czech Republic'), +('91.102.104.0', '91.102.111.255', 1533437952, 1533439999, 'RU', 'Russian Federation'), +('91.102.112.0', '91.102.117.239', 1533440000, 1533441519, 'PL', 'Poland'), +('91.102.117.240', '91.102.117.255', 1533441520, 1533441535, 'CH', 'Switzerland'), +('91.102.118.0', '91.102.119.255', 1533441536, 1533442047, 'PL', 'Poland'), +('91.102.120.0', '91.102.127.255', 1533442048, 1533444095, 'AE', 'United Arab Emirates'), +('91.102.128.0', '91.102.135.255', 1533444096, 1533446143, 'IT', 'Italy'), +('91.102.136.0', '91.102.143.255', 1533446144, 1533448191, 'DE', 'Germany'), +('91.102.144.0', '91.102.151.255', 1533448192, 1533450239, 'KW', 'Kuwait'), +('91.102.152.0', '91.102.159.255', 1533450240, 1533452287, 'RU', 'Russian Federation'), +('91.102.160.0', '91.102.167.255', 1533452288, 1533454335, 'TR', 'Turkey'), +('91.102.168.0', '91.102.175.255', 1533454336, 1533456383, 'RS', 'Serbia'), +('91.102.176.0', '91.102.183.255', 1533456384, 1533458431, 'UA', 'Ukraine'), +('91.102.184.0', '91.102.191.255', 1533458432, 1533460479, 'GB', 'United Kingdom'), +('91.102.192.0', '91.102.199.255', 1533460480, 1533462527, 'NL', 'Netherlands'), +('91.102.200.0', '91.102.207.255', 1533462528, 1533464575, 'RU', 'Russian Federation'), +('91.102.208.0', '91.102.215.255', 1533464576, 1533466623, 'NL', 'Netherlands'), +('91.102.216.0', '91.102.223.255', 1533466624, 1533468671, 'RU', 'Russian Federation'), +('91.102.224.0', '91.102.231.255', 1533468672, 1533470719, 'RS', 'Serbia'), +('91.102.232.0', '91.102.239.255', 1533470720, 1533472767, 'KW', 'Kuwait'), +('91.102.240.0', '91.102.247.255', 1533472768, 1533474815, 'ES', 'Spain'), +('91.102.248.0', '91.102.255.255', 1533474816, 1533476863, 'FR', 'France'), +('91.103.0.0', '91.103.7.255', 1533476864, 1533478911, 'IE', 'Ireland'), +('91.103.8.0', '91.103.15.255', 1533478912, 1533480959, 'RS', 'Serbia'), +('91.103.16.0', '91.103.23.255', 1533480960, 1533483007, 'NL', 'Netherlands'), +('91.103.24.0', '91.103.31.255', 1533483008, 1533485055, 'AM', 'Armenia'), +('91.103.32.0', '91.103.33.255', 1533485056, 1533485567, 'GB', 'United Kingdom'), +('91.103.34.0', '91.103.34.255', 1533485568, 1533485823, 'DE', 'Germany'), +('91.103.35.0', '91.103.36.255', 1533485824, 1533486335, 'SE', 'Sweden'), +('91.103.37.0', '91.103.37.255', 1533486336, 1533486591, 'NO', 'Norway'), +('91.103.38.0', '91.103.38.255', 1533486592, 1533486847, 'DK', 'Denmark'), +('91.103.39.0', '91.103.39.255', 1533486848, 1533487103, 'FI', 'Finland'), +('91.103.40.0', '91.103.40.255', 1533487104, 1533487359, 'FR', 'France'), +('91.103.41.0', '91.103.41.255', 1533487360, 1533487615, 'US', 'United States'), +('91.103.42.0', '91.103.42.255', 1533487616, 1533487871, 'JP', 'Japan'), +('91.103.43.0', '91.103.47.255', 1533487872, 1533489151, 'FR', 'France'), +('91.103.48.0', '91.103.55.255', 1533489152, 1533491199, 'IT', 'Italy'), +('91.103.56.0', '91.103.63.255', 1533491200, 1533493247, 'AM', 'Armenia'), +('91.103.64.0', '91.103.87.255', 1533493248, 1533499391, 'RU', 'Russian Federation'), +('91.103.88.0', '91.103.95.255', 1533499392, 1533501439, 'MT', 'Malta'), +('91.103.96.0', '91.103.103.255', 1533501440, 1533503487, 'LT', 'Lithuania'), +('91.103.104.0', '91.103.111.255', 1533503488, 1533505535, 'RU', 'Russian Federation'), +('91.103.112.0', '91.103.119.255', 1533505536, 1533507583, 'DE', 'Germany'), +('91.103.120.0', '91.103.127.255', 1533507584, 1533509631, 'UA', 'Ukraine'), +('91.103.128.0', '91.103.135.255', 1533509632, 1533511679, 'GB', 'United Kingdom'), +('91.103.136.0', '91.103.138.191', 1533511680, 1533512383, 'FR', 'France'), +('91.103.138.192', '91.103.138.255', 1533512384, 1533512447, 'DE', 'Germany'), +('91.103.139.0', '91.103.141.255', 1533512448, 1533513215, 'FR', 'France'), +('91.103.142.0', '91.103.142.255', 1533513216, 1533513471, 'GB', 'United Kingdom'), +('91.103.143.0', '91.103.143.255', 1533513472, 1533513727, 'DE', 'Germany'), +('91.103.144.0', '91.103.151.255', 1533513728, 1533515775, 'KW', 'Kuwait'), +('91.103.152.0', '91.103.159.255', 1533515776, 1533517823, 'RU', 'Russian Federation'), +('91.103.160.0', '91.103.167.255', 1533517824, 1533519871, 'CZ', 'Czech Republic'), +('91.103.168.0', '91.103.191.255', 1533519872, 1533526015, 'GB', 'United Kingdom'), +('91.103.192.0', '91.103.215.255', 1533526016, 1533532159, 'RU', 'Russian Federation'), +('91.103.216.0', '91.103.223.255', 1533532160, 1533534207, 'GB', 'United Kingdom'), +('91.103.224.0', '91.103.231.255', 1533534208, 1533536255, 'RU', 'Russian Federation'), +('91.103.232.0', '91.103.239.255', 1533536256, 1533538303, 'FR', 'France'), +('91.103.240.0', '91.103.247.255', 1533538304, 1533540351, 'DE', 'Germany'), +('91.103.248.0', '91.103.255.255', 1533540352, 1533542399, 'AT', 'Austria'), +('91.104.0.0', '91.111.255.255', 1533542400, 1534066687, 'GB', 'United Kingdom'), +('91.112.0.0', '91.112.243.255', 1534066688, 1534129151, 'AT', 'Austria'), +('91.112.244.0', '91.112.244.255', 1534129152, 1534129407, 'A2', 'Satellite Provider'), +('91.112.245.0', '91.115.255.255', 1534129408, 1534328831, 'AT', 'Austria'), +('91.116.0.0', '91.117.255.255', 1534328832, 1534459903, 'ES', 'Spain'), +('91.118.0.0', '91.119.255.255', 1534459904, 1534590975, 'AT', 'Austria'), +('91.120.0.0', '91.120.255.255', 1534590976, 1534656511, 'HU', 'Hungary'), +('91.121.0.0', '91.121.215.255', 1534656512, 1534711807, 'FR', 'France'), +('91.121.216.0', '91.121.219.255', 1534711808, 1534712831, 'BE', 'Belgium'), +('91.121.220.0', '91.121.223.255', 1534712832, 1534713855, 'FR', 'France'), +('91.121.224.0', '91.121.224.31', 1534713856, 1534713887, 'PL', 'Poland'), +('91.121.224.32', '91.121.224.47', 1534713888, 1534713903, 'FR', 'France'), +('91.121.224.48', '91.121.224.63', 1534713904, 1534713919, 'BE', 'Belgium'), +('91.121.224.64', '91.121.224.127', 1534713920, 1534713983, 'FR', 'France'), +('91.121.224.128', '91.121.224.143', 1534713984, 1534713999, 'PL', 'Poland'), +('91.121.224.144', '91.121.224.159', 1534714000, 1534714015, 'FR', 'France'), +('91.121.224.160', '91.121.224.175', 1534714016, 1534714031, 'DE', 'Germany'), +('91.121.224.176', '91.121.224.191', 1534714032, 1534714047, 'BE', 'Belgium'), +('91.121.224.192', '91.121.224.207', 1534714048, 1534714063, 'FR', 'France'), +('91.121.224.208', '91.121.224.223', 1534714064, 1534714079, 'ES', 'Spain'), +('91.121.224.224', '91.121.224.255', 1534714080, 1534714111, 'BE', 'Belgium'), +('91.121.225.0', '91.121.225.15', 1534714112, 1534714127, 'ES', 'Spain'), +('91.121.225.16', '91.121.225.31', 1534714128, 1534714143, 'BE', 'Belgium'), +('91.121.225.32', '91.121.225.111', 1534714144, 1534714223, 'FR', 'France'), +('91.121.225.112', '91.121.225.127', 1534714224, 1534714239, 'ES', 'Spain'), +('91.121.225.128', '91.121.225.143', 1534714240, 1534714255, 'FR', 'France'), +('91.121.225.144', '91.121.225.159', 1534714256, 1534714271, 'DE', 'Germany'), +('91.121.225.160', '91.121.225.191', 1534714272, 1534714303, 'FR', 'France'), +('91.121.225.192', '91.121.225.207', 1534714304, 1534714319, 'PL', 'Poland'), +('91.121.225.208', '91.121.225.223', 1534714320, 1534714335, 'FR', 'France'), +('91.121.225.224', '91.121.225.239', 1534714336, 1534714351, 'ES', 'Spain'), +('91.121.225.240', '91.121.225.255', 1534714352, 1534714367, 'CH', 'Switzerland'), +('91.121.226.0', '91.121.226.15', 1534714368, 1534714383, 'ES', 'Spain'), +('91.121.226.16', '91.121.226.31', 1534714384, 1534714399, 'FR', 'France'), +('91.121.226.32', '91.121.226.47', 1534714400, 1534714415, 'ES', 'Spain'), +('91.121.226.48', '91.121.226.63', 1534714416, 1534714431, 'GB', 'United Kingdom'), +('91.121.226.64', '91.121.226.79', 1534714432, 1534714447, 'FR', 'France'), +('91.121.226.80', '91.121.226.95', 1534714448, 1534714463, 'DE', 'Germany'), +('91.121.226.96', '91.121.226.127', 1534714464, 1534714495, 'GB', 'United Kingdom'), +('91.121.226.128', '91.121.226.143', 1534714496, 1534714511, 'FR', 'France'), +('91.121.226.144', '91.121.226.159', 1534714512, 1534714527, 'PL', 'Poland'), +('91.121.226.160', '91.121.226.191', 1534714528, 1534714559, 'FR', 'France'), +('91.121.226.192', '91.121.226.207', 1534714560, 1534714575, 'BE', 'Belgium'), +('91.121.226.208', '91.121.227.79', 1534714576, 1534714703, 'FR', 'France'), +('91.121.227.80', '91.121.227.95', 1534714704, 1534714719, 'CH', 'Switzerland'), +('91.121.227.96', '91.121.227.127', 1534714720, 1534714751, 'BE', 'Belgium'), +('91.121.227.128', '91.121.227.143', 1534714752, 1534714767, 'DE', 'Germany'), +('91.121.227.144', '91.121.227.159', 1534714768, 1534714783, 'FR', 'France'), +('91.121.227.160', '91.121.227.175', 1534714784, 1534714799, 'PL', 'Poland'), +('91.121.227.176', '91.121.227.255', 1534714800, 1534714879, 'FR', 'France'), +('91.121.228.0', '91.121.228.15', 1534714880, 1534714895, 'PL', 'Poland'), +('91.121.228.16', '91.121.228.31', 1534714896, 1534714911, 'FR', 'France'), +('91.121.228.32', '91.121.228.47', 1534714912, 1534714927, 'DE', 'Germany'), +('91.121.228.48', '91.121.228.159', 1534714928, 1534715039, 'FR', 'France'), +('91.121.228.160', '91.121.228.175', 1534715040, 1534715055, 'GB', 'United Kingdom'), +('91.121.228.176', '91.121.228.191', 1534715056, 1534715071, 'PL', 'Poland'), +('91.121.228.192', '91.121.228.255', 1534715072, 1534715135, 'FR', 'France'), +('91.121.229.0', '91.121.229.15', 1534715136, 1534715151, 'PL', 'Poland'), +('91.121.229.16', '91.121.229.31', 1534715152, 1534715167, 'FR', 'France'), +('91.121.229.32', '91.121.229.47', 1534715168, 1534715183, 'GB', 'United Kingdom'), +('91.121.229.48', '91.121.229.127', 1534715184, 1534715263, 'FR', 'France'), +('91.121.229.128', '91.121.229.143', 1534715264, 1534715279, 'ES', 'Spain'), +('91.121.229.144', '91.121.229.159', 1534715280, 1534715295, 'FR', 'France'), +('91.121.229.160', '91.121.229.191', 1534715296, 1534715327, 'ES', 'Spain'), +('91.121.229.192', '91.121.229.239', 1534715328, 1534715375, 'FR', 'France'), +('91.121.229.240', '91.121.229.255', 1534715376, 1534715391, 'ES', 'Spain'), +('91.121.230.0', '91.121.230.15', 1534715392, 1534715407, 'PL', 'Poland'), +('91.121.230.16', '91.121.230.31', 1534715408, 1534715423, 'ES', 'Spain'), +('91.121.230.32', '91.121.230.95', 1534715424, 1534715487, 'FR', 'France'), +('91.121.230.96', '91.121.230.111', 1534715488, 1534715503, 'ES', 'Spain'), +('91.121.230.112', '91.121.230.127', 1534715504, 1534715519, 'CH', 'Switzerland'), +('91.121.230.128', '91.121.230.159', 1534715520, 1534715551, 'FR', 'France'), +('91.121.230.160', '91.121.230.207', 1534715552, 1534715599, 'ES', 'Spain'), +('91.121.230.208', '91.121.230.223', 1534715600, 1534715615, 'BE', 'Belgium'), +('91.121.230.224', '91.121.230.239', 1534715616, 1534715631, 'FR', 'France'), +('91.121.230.240', '91.121.230.255', 1534715632, 1534715647, 'ES', 'Spain'), +('91.121.231.0', '91.121.231.15', 1534715648, 1534715663, 'PL', 'Poland'), +('91.121.231.16', '91.121.231.31', 1534715664, 1534715679, 'ES', 'Spain'), +('91.121.231.32', '91.121.231.95', 1534715680, 1534715743, 'FR', 'France'), +('91.121.231.96', '91.121.231.111', 1534715744, 1534715759, 'PL', 'Poland'), +('91.121.231.112', '91.121.231.159', 1534715760, 1534715807, 'ES', 'Spain'), +('91.121.231.160', '91.121.231.191', 1534715808, 1534715839, 'PL', 'Poland'), +('91.121.231.192', '91.121.231.223', 1534715840, 1534715871, 'FR', 'France'), +('91.121.231.224', '91.121.231.239', 1534715872, 1534715887, 'DE', 'Germany'), +('91.121.231.240', '91.121.232.15', 1534715888, 1534715919, 'FR', 'France'), +('91.121.232.16', '91.121.232.31', 1534715920, 1534715935, 'ES', 'Spain'), +('91.121.232.32', '91.121.232.143', 1534715936, 1534716047, 'FR', 'France'), +('91.121.232.144', '91.121.232.159', 1534716048, 1534716063, 'GB', 'United Kingdom'), +('91.121.232.160', '91.121.233.15', 1534716064, 1534716175, 'FR', 'France'), +('91.121.233.16', '91.121.233.31', 1534716176, 1534716191, 'GB', 'United Kingdom'), +('91.121.233.32', '91.121.233.79', 1534716192, 1534716239, 'FR', 'France'), +('91.121.233.80', '91.121.233.95', 1534716240, 1534716255, 'GB', 'United Kingdom'), +('91.121.233.96', '91.121.234.47', 1534716256, 1534716463, 'FR', 'France'), +('91.121.234.48', '91.121.234.63', 1534716464, 1534716479, 'BE', 'Belgium'), +('91.121.234.64', '91.121.234.95', 1534716480, 1534716511, 'FR', 'France'), +('91.121.234.96', '91.121.234.111', 1534716512, 1534716527, 'DE', 'Germany'), +('91.121.234.112', '91.121.234.127', 1534716528, 1534716543, 'FR', 'France'), +('91.121.234.128', '91.121.234.143', 1534716544, 1534716559, 'GB', 'United Kingdom'), +('91.121.234.144', '91.121.234.175', 1534716560, 1534716591, 'FR', 'France'), +('91.121.234.176', '91.121.234.191', 1534716592, 1534716607, 'PL', 'Poland'), +('91.121.234.192', '91.121.234.255', 1534716608, 1534716671, 'FR', 'France'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('91.121.235.0', '91.121.235.15', 1534716672, 1534716687, 'PL', 'Poland'), +('91.121.235.16', '91.121.235.31', 1534716688, 1534716703, 'FR', 'France'), +('91.121.235.32', '91.121.235.63', 1534716704, 1534716735, 'ES', 'Spain'), +('91.121.235.64', '91.121.235.207', 1534716736, 1534716879, 'FR', 'France'), +('91.121.235.208', '91.121.235.223', 1534716880, 1534716895, 'BE', 'Belgium'), +('91.121.235.224', '91.121.235.255', 1534716896, 1534716927, 'FR', 'France'), +('91.121.236.0', '91.121.236.15', 1534716928, 1534716943, 'DE', 'Germany'), +('91.121.236.16', '91.121.236.63', 1534716944, 1534716991, 'FR', 'France'), +('91.121.236.64', '91.121.236.79', 1534716992, 1534717007, 'DE', 'Germany'), +('91.121.236.80', '91.121.236.95', 1534717008, 1534717023, 'FR', 'France'), +('91.121.236.96', '91.121.236.127', 1534717024, 1534717055, 'PL', 'Poland'), +('91.121.236.128', '91.121.236.143', 1534717056, 1534717071, 'ES', 'Spain'), +('91.121.236.144', '91.121.236.191', 1534717072, 1534717119, 'FR', 'France'), +('91.121.236.192', '91.121.236.207', 1534717120, 1534717135, 'IT', 'Italy'), +('91.121.236.208', '91.121.237.31', 1534717136, 1534717215, 'FR', 'France'), +('91.121.237.32', '91.121.237.47', 1534717216, 1534717231, 'PL', 'Poland'), +('91.121.237.48', '91.121.237.79', 1534717232, 1534717263, 'FR', 'France'), +('91.121.237.80', '91.121.237.95', 1534717264, 1534717279, 'ES', 'Spain'), +('91.121.237.96', '91.121.237.127', 1534717280, 1534717311, 'FR', 'France'), +('91.121.237.128', '91.121.237.143', 1534717312, 1534717327, 'BE', 'Belgium'), +('91.121.237.144', '91.121.237.159', 1534717328, 1534717343, 'FR', 'France'), +('91.121.237.160', '91.121.237.175', 1534717344, 1534717359, 'GB', 'United Kingdom'), +('91.121.237.176', '91.121.237.191', 1534717360, 1534717375, 'DE', 'Germany'), +('91.121.237.192', '91.121.238.63', 1534717376, 1534717503, 'FR', 'France'), +('91.121.238.64', '91.121.238.79', 1534717504, 1534717519, 'DE', 'Germany'), +('91.121.238.80', '91.121.238.95', 1534717520, 1534717535, 'FR', 'France'), +('91.121.238.96', '91.121.238.111', 1534717536, 1534717551, 'DE', 'Germany'), +('91.121.238.112', '91.121.238.127', 1534717552, 1534717567, 'FR', 'France'), +('91.121.238.128', '91.121.238.143', 1534717568, 1534717583, 'PL', 'Poland'), +('91.121.238.144', '91.121.238.223', 1534717584, 1534717663, 'FR', 'France'), +('91.121.238.224', '91.121.238.239', 1534717664, 1534717679, 'GB', 'United Kingdom'), +('91.121.238.240', '91.121.238.255', 1534717680, 1534717695, 'FR', 'France'), +('91.121.239.0', '91.121.239.63', 1534717696, 1534717759, 'PL', 'Poland'), +('91.121.239.64', '91.121.239.143', 1534717760, 1534717839, 'ES', 'Spain'), +('91.121.239.144', '91.121.239.159', 1534717840, 1534717855, 'GB', 'United Kingdom'), +('91.121.239.160', '91.121.239.175', 1534717856, 1534717871, 'DE', 'Germany'), +('91.121.239.176', '91.121.239.223', 1534717872, 1534717919, 'FR', 'France'), +('91.121.239.224', '91.121.239.239', 1534717920, 1534717935, 'ES', 'Spain'), +('91.121.239.240', '91.121.239.255', 1534717936, 1534717951, 'FR', 'France'), +('91.121.240.0', '91.121.240.15', 1534717952, 1534717967, 'BE', 'Belgium'), +('91.121.240.16', '91.121.240.31', 1534717968, 1534717983, 'IT', 'Italy'), +('91.121.240.32', '91.121.240.63', 1534717984, 1534718015, 'FR', 'France'), +('91.121.240.64', '91.121.240.79', 1534718016, 1534718031, 'BE', 'Belgium'), +('91.121.240.80', '91.121.240.111', 1534718032, 1534718063, 'FR', 'France'), +('91.121.240.112', '91.121.240.143', 1534718064, 1534718095, 'ES', 'Spain'), +('91.121.240.144', '91.121.240.175', 1534718096, 1534718127, 'FR', 'France'), +('91.121.240.176', '91.121.240.191', 1534718128, 1534718143, 'ES', 'Spain'), +('91.121.240.192', '91.121.240.255', 1534718144, 1534718207, 'FR', 'France'), +('91.121.241.0', '91.121.241.63', 1534718208, 1534718271, 'ES', 'Spain'), +('91.121.241.64', '91.121.241.191', 1534718272, 1534718399, 'FR', 'France'), +('91.121.241.192', '91.121.241.207', 1534718400, 1534718415, 'ES', 'Spain'), +('91.121.241.208', '91.121.241.223', 1534718416, 1534718431, 'FR', 'France'), +('91.121.241.224', '91.121.241.239', 1534718432, 1534718447, 'GB', 'United Kingdom'), +('91.121.241.240', '91.121.242.95', 1534718448, 1534718559, 'FR', 'France'), +('91.121.242.96', '91.121.242.111', 1534718560, 1534718575, 'BE', 'Belgium'), +('91.121.242.112', '91.121.243.31', 1534718576, 1534718751, 'FR', 'France'), +('91.121.243.32', '91.121.243.47', 1534718752, 1534718767, 'GB', 'United Kingdom'), +('91.121.243.48', '91.121.243.63', 1534718768, 1534718783, 'ES', 'Spain'), +('91.121.243.64', '91.121.243.79', 1534718784, 1534718799, 'FR', 'France'), +('91.121.243.80', '91.121.243.95', 1534718800, 1534718815, 'ES', 'Spain'), +('91.121.243.96', '91.121.243.127', 1534718816, 1534718847, 'GB', 'United Kingdom'), +('91.121.243.128', '91.121.243.191', 1534718848, 1534718911, 'FR', 'France'), +('91.121.243.192', '91.121.243.207', 1534718912, 1534718927, 'IT', 'Italy'), +('91.121.243.208', '91.121.243.223', 1534718928, 1534718943, 'FR', 'France'), +('91.121.243.224', '91.121.243.239', 1534718944, 1534718959, 'PL', 'Poland'), +('91.121.243.240', '91.121.243.255', 1534718960, 1534718975, 'ES', 'Spain'), +('91.121.244.0', '91.121.244.63', 1534718976, 1534719039, 'FR', 'France'), +('91.121.244.64', '91.121.244.191', 1534719040, 1534719167, 'BE', 'Belgium'), +('91.121.244.192', '91.121.244.239', 1534719168, 1534719215, 'PL', 'Poland'), +('91.121.244.240', '91.121.245.79', 1534719216, 1534719311, 'FR', 'France'), +('91.121.245.80', '91.121.245.95', 1534719312, 1534719327, 'GB', 'United Kingdom'), +('91.121.245.96', '91.121.245.143', 1534719328, 1534719375, 'FR', 'France'), +('91.121.245.144', '91.121.245.159', 1534719376, 1534719391, 'ES', 'Spain'), +('91.121.245.160', '91.121.245.191', 1534719392, 1534719423, 'FR', 'France'), +('91.121.245.192', '91.121.245.223', 1534719424, 1534719455, 'ES', 'Spain'), +('91.121.245.224', '91.121.245.239', 1534719456, 1534719471, 'FR', 'France'), +('91.121.245.240', '91.121.245.255', 1534719472, 1534719487, 'GB', 'United Kingdom'), +('91.121.246.0', '91.121.246.159', 1534719488, 1534719647, 'FR', 'France'), +('91.121.246.160', '91.121.246.175', 1534719648, 1534719663, 'GB', 'United Kingdom'), +('91.121.246.176', '91.121.246.191', 1534719664, 1534719679, 'PL', 'Poland'), +('91.121.246.192', '91.121.246.207', 1534719680, 1534719695, 'GB', 'United Kingdom'), +('91.121.246.208', '91.121.247.15', 1534719696, 1534719759, 'FR', 'France'), +('91.121.247.16', '91.121.247.31', 1534719760, 1534719775, 'IT', 'Italy'), +('91.121.247.32', '91.121.247.63', 1534719776, 1534719807, 'FR', 'France'), +('91.121.247.64', '91.121.247.95', 1534719808, 1534719839, 'GB', 'United Kingdom'), +('91.121.247.96', '91.121.247.127', 1534719840, 1534719871, 'FR', 'France'), +('91.121.247.128', '91.121.247.143', 1534719872, 1534719887, 'PL', 'Poland'), +('91.121.247.144', '91.121.247.207', 1534719888, 1534719951, 'FR', 'France'), +('91.121.247.208', '91.121.247.223', 1534719952, 1534719967, 'GB', 'United Kingdom'), +('91.121.247.224', '91.121.247.255', 1534719968, 1534719999, 'FR', 'France'), +('91.121.248.0', '91.121.248.15', 1534720000, 1534720015, 'PL', 'Poland'), +('91.121.248.16', '91.121.248.31', 1534720016, 1534720031, 'GB', 'United Kingdom'), +('91.121.248.32', '91.121.248.47', 1534720032, 1534720047, 'DE', 'Germany'), +('91.121.248.48', '91.121.248.63', 1534720048, 1534720063, 'ES', 'Spain'), +('91.121.248.64', '91.121.248.79', 1534720064, 1534720079, 'IT', 'Italy'), +('91.121.248.80', '91.121.248.95', 1534720080, 1534720095, 'GB', 'United Kingdom'), +('91.121.248.96', '91.121.248.111', 1534720096, 1534720111, 'FR', 'France'), +('91.121.248.112', '91.121.248.127', 1534720112, 1534720127, 'ES', 'Spain'), +('91.121.248.128', '91.121.248.207', 1534720128, 1534720207, 'FR', 'France'), +('91.121.248.208', '91.121.248.223', 1534720208, 1534720223, 'GB', 'United Kingdom'), +('91.121.248.224', '91.121.248.239', 1534720224, 1534720239, 'FR', 'France'), +('91.121.248.240', '91.121.248.255', 1534720240, 1534720255, 'BE', 'Belgium'), +('91.121.249.0', '91.121.249.31', 1534720256, 1534720287, 'PL', 'Poland'), +('91.121.249.32', '91.121.249.143', 1534720288, 1534720399, 'FR', 'France'), +('91.121.249.144', '91.121.249.159', 1534720400, 1534720415, 'GB', 'United Kingdom'), +('91.121.249.160', '91.121.249.191', 1534720416, 1534720447, 'FR', 'France'), +('91.121.249.192', '91.121.249.207', 1534720448, 1534720463, 'GB', 'United Kingdom'), +('91.121.249.208', '91.121.249.223', 1534720464, 1534720479, 'FR', 'France'), +('91.121.249.224', '91.121.249.239', 1534720480, 1534720495, 'GB', 'United Kingdom'), +('91.121.249.240', '91.121.249.255', 1534720496, 1534720511, 'PL', 'Poland'), +('91.121.250.0', '91.121.250.63', 1534720512, 1534720575, 'FR', 'France'), +('91.121.250.64', '91.121.250.79', 1534720576, 1534720591, 'ES', 'Spain'), +('91.121.250.80', '91.121.250.95', 1534720592, 1534720607, 'CH', 'Switzerland'), +('91.121.250.96', '91.121.250.127', 1534720608, 1534720639, 'FR', 'France'), +('91.121.250.128', '91.121.250.143', 1534720640, 1534720655, 'GB', 'United Kingdom'), +('91.121.250.144', '91.121.250.159', 1534720656, 1534720671, 'PL', 'Poland'), +('91.121.250.160', '91.121.250.191', 1534720672, 1534720703, 'FR', 'France'), +('91.121.250.192', '91.121.250.223', 1534720704, 1534720735, 'PL', 'Poland'), +('91.121.250.224', '91.121.250.239', 1534720736, 1534720751, 'FR', 'France'), +('91.121.250.240', '91.121.250.255', 1534720752, 1534720767, 'GB', 'United Kingdom'), +('91.121.251.0', '91.121.251.15', 1534720768, 1534720783, 'ES', 'Spain'), +('91.121.251.16', '91.121.251.31', 1534720784, 1534720799, 'BE', 'Belgium'), +('91.121.251.32', '91.121.251.47', 1534720800, 1534720815, 'PL', 'Poland'), +('91.121.251.48', '91.121.251.63', 1534720816, 1534720831, 'FR', 'France'), +('91.121.251.64', '91.121.251.95', 1534720832, 1534720863, 'PL', 'Poland'), +('91.121.251.96', '91.121.251.191', 1534720864, 1534720959, 'FR', 'France'), +('91.121.251.192', '91.121.251.207', 1534720960, 1534720975, 'ES', 'Spain'), +('91.121.251.208', '91.121.252.95', 1534720976, 1534721119, 'FR', 'France'), +('91.121.252.96', '91.121.252.111', 1534721120, 1534721135, 'IT', 'Italy'), +('91.121.252.112', '91.121.252.207', 1534721136, 1534721231, 'FR', 'France'), +('91.121.252.208', '91.121.252.223', 1534721232, 1534721247, 'DE', 'Germany'), +('91.121.252.224', '91.121.252.239', 1534721248, 1534721263, 'FR', 'France'), +('91.121.252.240', '91.121.252.255', 1534721264, 1534721279, 'ES', 'Spain'), +('91.121.253.0', '91.121.253.31', 1534721280, 1534721311, 'FR', 'France'), +('91.121.253.32', '91.121.253.47', 1534721312, 1534721327, 'ES', 'Spain'), +('91.121.253.48', '91.121.253.63', 1534721328, 1534721343, 'FR', 'France'), +('91.121.253.64', '91.121.253.79', 1534721344, 1534721359, 'ES', 'Spain'), +('91.121.253.80', '91.121.253.95', 1534721360, 1534721375, 'FR', 'France'), +('91.121.253.96', '91.121.253.111', 1534721376, 1534721391, 'ES', 'Spain'), +('91.121.253.112', '91.121.253.127', 1534721392, 1534721407, 'GB', 'United Kingdom'), +('91.121.253.128', '91.121.253.159', 1534721408, 1534721439, 'DE', 'Germany'), +('91.121.253.160', '91.121.253.175', 1534721440, 1534721455, 'BE', 'Belgium'), +('91.121.253.176', '91.121.253.223', 1534721456, 1534721503, 'FR', 'France'), +('91.121.253.224', '91.121.253.239', 1534721504, 1534721519, 'CH', 'Switzerland'), +('91.121.253.240', '91.121.253.255', 1534721520, 1534721535, 'DE', 'Germany'), +('91.121.254.0', '91.121.254.31', 1534721536, 1534721567, 'FR', 'France'), +('91.121.254.32', '91.121.254.47', 1534721568, 1534721583, 'GB', 'United Kingdom'), +('91.121.254.48', '91.121.254.79', 1534721584, 1534721615, 'FR', 'France'), +('91.121.254.80', '91.121.254.111', 1534721616, 1534721647, 'GB', 'United Kingdom'), +('91.121.254.112', '91.121.254.127', 1534721648, 1534721663, 'CH', 'Switzerland'), +('91.121.254.128', '91.121.254.143', 1534721664, 1534721679, 'ES', 'Spain'), +('91.121.254.144', '91.121.254.223', 1534721680, 1534721759, 'FR', 'France'), +('91.121.254.224', '91.121.254.239', 1534721760, 1534721775, 'GB', 'United Kingdom'), +('91.121.254.240', '91.121.254.255', 1534721776, 1534721791, 'ES', 'Spain'), +('91.121.255.0', '91.121.255.15', 1534721792, 1534721807, 'BE', 'Belgium'), +('91.121.255.16', '91.121.255.63', 1534721808, 1534721855, 'FR', 'France'), +('91.121.255.64', '91.121.255.95', 1534721856, 1534721887, 'ES', 'Spain'), +('91.121.255.96', '91.121.255.111', 1534721888, 1534721903, 'FR', 'France'), +('91.121.255.112', '91.121.255.127', 1534721904, 1534721919, 'DE', 'Germany'), +('91.121.255.128', '91.121.255.143', 1534721920, 1534721935, 'FR', 'France'), +('91.121.255.144', '91.121.255.159', 1534721936, 1534721951, 'PL', 'Poland'), +('91.121.255.160', '91.121.255.191', 1534721952, 1534721983, 'FR', 'France'), +('91.121.255.192', '91.121.255.207', 1534721984, 1534721999, 'PL', 'Poland'), +('91.121.255.208', '91.121.255.223', 1534722000, 1534722015, 'FR', 'France'), +('91.121.255.224', '91.121.255.239', 1534722016, 1534722031, 'ES', 'Spain'), +('91.121.255.240', '91.121.255.255', 1534722032, 1534722047, 'BE', 'Belgium'), +('91.122.0.0', '91.122.255.255', 1534722048, 1534787583, 'RU', 'Russian Federation'), +('91.123.0.0', '91.123.15.255', 1534787584, 1534791679, 'RO', 'Romania'), +('91.123.16.0', '91.123.31.255', 1534791680, 1534795775, 'RU', 'Russian Federation'), +('91.123.32.0', '91.123.63.255', 1534795776, 1534803967, 'NO', 'Norway'), +('91.123.64.0', '91.123.79.255', 1534803968, 1534808063, 'LV', 'Latvia'), +('91.123.80.0', '91.123.95.255', 1534808064, 1534812159, 'RU', 'Russian Federation'), +('91.123.96.0', '91.123.111.255', 1534812160, 1534816255, 'CH', 'Switzerland'), +('91.123.112.0', '91.123.127.255', 1534816256, 1534820351, 'FR', 'France'), +('91.123.128.0', '91.123.143.255', 1534820352, 1534824447, 'FI', 'Finland'), +('91.123.144.0', '91.123.159.255', 1534824448, 1534828543, 'UA', 'Ukraine'), +('91.123.160.0', '91.123.191.255', 1534828544, 1534836735, 'PL', 'Poland'), +('91.123.192.0', '91.123.207.255', 1534836736, 1534840831, 'SE', 'Sweden'), +('91.123.208.0', '91.123.223.255', 1534840832, 1534844927, 'PL', 'Poland'), +('91.123.224.0', '91.123.239.255', 1534844928, 1534849023, 'IE', 'Ireland'), +('91.123.240.0', '91.123.255.255', 1534849024, 1534853119, 'NL', 'Netherlands'), +('91.124.0.0', '91.124.255.255', 1534853120, 1534918655, 'UA', 'Ukraine'), +('91.125.0.0', '91.125.255.255', 1534918656, 1534984191, 'GB', 'United Kingdom'), +('91.126.0.0', '91.126.132.247', 1534984192, 1535018231, 'SE', 'Sweden'), +('91.126.132.248', '91.126.132.255', 1535018232, 1535018239, 'ES', 'Spain'), +('91.126.133.0', '91.126.133.247', 1535018240, 1535018487, 'SE', 'Sweden'), +('91.126.133.248', '91.126.133.255', 1535018488, 1535018495, 'ES', 'Spain'), +('91.126.134.0', '91.126.134.247', 1535018496, 1535018743, 'SE', 'Sweden'), +('91.126.134.248', '91.126.134.255', 1535018744, 1535018751, 'ES', 'Spain'), +('91.126.135.0', '91.126.135.219', 1535018752, 1535018971, 'SE', 'Sweden'), +('91.126.135.220', '91.126.137.255', 1535018972, 1535019519, 'ES', 'Spain'), +('91.126.138.0', '91.126.191.255', 1535019520, 1535033343, 'SE', 'Sweden'), +('91.126.192.0', '91.126.231.255', 1535033344, 1535043583, 'ES', 'Spain'), +('91.126.232.0', '91.126.255.255', 1535043584, 1535049727, 'SE', 'Sweden'), +('91.127.0.0', '91.127.255.255', 1535049728, 1535115263, 'SK', 'Slovakia'), +('91.128.0.0', '91.131.255.255', 1535115264, 1535377407, 'AT', 'Austria'), +('91.132.0.0', '91.132.255.255', 1535377408, 1535442943, 'GR', 'Greece'), +('91.133.0.0', '91.133.255.255', 1535442944, 1535508479, 'FI', 'Finland'), +('91.134.0.0', '91.134.255.255', 1535508480, 1535574015, 'BG', 'Bulgaria'), +('91.135.0.0', '91.135.15.255', 1535574016, 1535578111, 'GB', 'United Kingdom'), +('91.135.16.0', '91.135.31.255', 1535578112, 1535582207, 'LV', 'Latvia'), +('91.135.32.0', '91.135.63.255', 1535582208, 1535590399, 'NO', 'Norway'), +('91.135.64.0', '91.135.79.255', 1535590400, 1535594495, 'CH', 'Switzerland'), +('91.135.80.0', '91.135.95.255', 1535594496, 1535598591, 'LV', 'Latvia'), +('91.135.96.0', '91.135.111.255', 1535598592, 1535602687, 'IL', 'Israel'), +('91.135.112.0', '91.135.127.255', 1535602688, 1535606783, 'HU', 'Hungary'), +('91.135.128.0', '91.135.143.255', 1535606784, 1535610879, 'NO', 'Norway'), +('91.135.144.0', '91.135.159.255', 1535610880, 1535614975, 'RU', 'Russian Federation'), +('91.135.160.0', '91.135.175.255', 1535614976, 1535619071, 'AT', 'Austria'), +('91.135.176.0', '91.135.191.255', 1535619072, 1535623167, 'FR', 'France'), +('91.135.192.0', '91.135.207.255', 1535623168, 1535627263, 'KZ', 'Kazakstan'), +('91.135.208.0', '91.135.223.255', 1535627264, 1535631359, 'RU', 'Russian Federation'), +('91.135.224.0', '91.135.239.255', 1535631360, 1535635455, 'GB', 'United Kingdom'), +('91.135.240.0', '91.135.255.255', 1535635456, 1535639551, 'AZ', 'Azerbaijan'), +('91.136.0.0', '91.136.127.255', 1535639552, 1535672319, 'GB', 'United Kingdom'), +('91.136.128.0', '91.136.255.255', 1535672320, 1535705087, 'DE', 'Germany'), +('91.137.0.0', '91.137.127.255', 1535705088, 1535737855, 'CH', 'Switzerland'), +('91.137.128.0', '91.137.252.255', 1535737856, 1535769855, 'HU', 'Hungary'), +('91.137.253.0', '91.137.255.255', 1535769856, 1535770623, 'SR', 'Suriname'), +('91.138.0.0', '91.138.127.255', 1535770624, 1535803391, 'CH', 'Switzerland'), +('91.138.128.0', '91.138.255.255', 1535803392, 1535836159, 'GR', 'Greece'), +('91.139.0.0', '91.139.127.255', 1535836160, 1535868927, 'HU', 'Hungary'), +('91.139.128.0', '91.139.255.255', 1535868928, 1535901695, 'BG', 'Bulgaria'), +('91.140.0.0', '91.140.127.255', 1535901696, 1535934463, 'GR', 'Greece'), +('91.140.128.0', '91.140.255.255', 1535934464, 1535967231, 'KW', 'Kuwait'), +('91.141.0.0', '91.141.127.255', 1535967232, 1535999999, 'AT', 'Austria'), +('91.141.128.0', '91.141.255.255', 1536000000, 1536032767, 'NL', 'Netherlands'), +('91.142.0.0', '91.142.15.255', 1536032768, 1536036863, 'LV', 'Latvia'), +('91.142.16.0', '91.142.31.255', 1536036864, 1536040959, 'AT', 'Austria'), +('91.142.32.0', '91.142.47.255', 1536040960, 1536045055, 'GB', 'United Kingdom'), +('91.142.48.0', '91.142.49.127', 1536045056, 1536045439, 'DE', 'Germany'), +('91.142.49.128', '91.142.49.255', 1536045440, 1536045567, 'A2', 'Satellite Provider'), +('91.142.50.0', '91.142.51.255', 1536045568, 1536046079, 'IQ', 'Iraq'), +('91.142.52.0', '91.142.53.255', 1536046080, 1536046591, 'A2', 'Satellite Provider'), +('91.142.54.0', '91.142.54.255', 1536046592, 1536046847, 'IQ', 'Iraq'), +('91.142.55.0', '91.142.55.127', 1536046848, 1536046975, 'A2', 'Satellite Provider'), +('91.142.55.128', '91.142.55.191', 1536046976, 1536047039, 'SA', 'Saudi Arabia'), +('91.142.55.192', '91.142.55.255', 1536047040, 1536047103, 'IQ', 'Iraq'), +('91.142.56.0', '91.142.57.255', 1536047104, 1536047615, 'LB', 'Lebanon'), +('91.142.58.0', '91.142.58.255', 1536047616, 1536047871, 'IQ', 'Iraq'), +('91.142.59.0', '91.142.59.127', 1536047872, 1536047999, 'A2', 'Satellite Provider'), +('91.142.59.128', '91.142.59.255', 1536048000, 1536048127, 'SA', 'Saudi Arabia'), +('91.142.60.0', '91.142.60.127', 1536048128, 1536048255, 'AE', 'United Arab Emirates'), +('91.142.60.128', '91.142.60.191', 1536048256, 1536048319, 'A2', 'Satellite Provider'), +('91.142.60.192', '91.142.60.255', 1536048320, 1536048383, 'IQ', 'Iraq'), +('91.142.61.0', '91.142.61.255', 1536048384, 1536048639, 'A2', 'Satellite Provider'), +('91.142.62.0', '91.142.62.31', 1536048640, 1536048671, 'FR', 'France'), +('91.142.62.32', '91.142.62.63', 1536048672, 1536048703, 'LU', 'Luxembourg'), +('91.142.62.64', '91.142.62.79', 1536048704, 1536048719, 'IQ', 'Iraq'), +('91.142.62.80', '91.142.62.80', 1536048720, 1536048720, 'LB', 'Lebanon'), +('91.142.62.81', '91.142.63.255', 1536048721, 1536049151, 'A2', 'Satellite Provider'), +('91.142.64.0', '91.142.79.255', 1536049152, 1536053247, 'NL', 'Netherlands'), +('91.142.80.0', '91.142.95.255', 1536053248, 1536057343, 'RU', 'Russian Federation'), +('91.142.96.0', '91.142.111.255', 1536057344, 1536061439, 'IE', 'Ireland'), +('91.142.112.0', '91.142.127.255', 1536061440, 1536065535, 'SE', 'Sweden'), +('91.142.128.0', '91.142.143.255', 1536065536, 1536069631, 'LU', 'Luxembourg'), +('91.142.144.0', '91.142.159.255', 1536069632, 1536073727, 'RU', 'Russian Federation'), +('91.142.160.0', '91.142.175.255', 1536073728, 1536077823, 'UA', 'Ukraine'), +('91.142.176.0', '91.142.191.255', 1536077824, 1536081919, 'SE', 'Sweden'), +('91.142.192.0', '91.142.207.255', 1536081920, 1536086015, 'PL', 'Poland'), +('91.142.208.0', '91.142.223.255', 1536086016, 1536090111, 'ES', 'Spain'), +('91.142.224.0', '91.142.239.255', 1536090112, 1536094207, 'IE', 'Ireland'), +('91.142.240.0', '91.142.255.255', 1536094208, 1536098303, 'NL', 'Netherlands'), +('91.143.0.0', '91.143.63.255', 1536098304, 1536114687, 'RU', 'Russian Federation'), +('91.143.64.0', '91.143.79.255', 1536114688, 1536118783, 'GB', 'United Kingdom'), +('91.143.80.0', '91.143.95.255', 1536118784, 1536122879, 'DE', 'Germany'), +('91.143.96.0', '91.143.111.255', 1536122880, 1536126975, 'AT', 'Austria'), +('91.143.112.0', '91.143.127.255', 1536126976, 1536131071, 'DK', 'Denmark'), +('91.143.128.0', '91.143.175.255', 1536131072, 1536143359, 'RU', 'Russian Federation'), +('91.143.176.0', '91.143.191.255', 1536143360, 1536147455, 'GB', 'United Kingdom'), +('91.143.192.0', '91.143.207.255', 1536147456, 1536151551, 'IT', 'Italy'), +('91.143.208.0', '91.143.223.255', 1536151552, 1536155647, 'RS', 'Serbia'), +('91.143.224.0', '91.143.239.255', 1536155648, 1536159743, 'IL', 'Israel'), +('91.143.240.0', '91.143.255.255', 1536159744, 1536163839, 'DE', 'Germany'), +('91.144.0.0', '91.144.63.255', 1536163840, 1536180223, 'SY', 'Syrian Arab Republic'), +('91.144.64.0', '91.144.127.255', 1536180224, 1536196607, 'HU', 'Hungary'), +('91.144.128.0', '91.144.191.255', 1536196608, 1536212991, 'RU', 'Russian Federation'), +('91.144.192.0', '91.144.255.255', 1536212992, 1536229375, 'DK', 'Denmark'), +('91.145.0.0', '91.145.63.255', 1536229376, 1536245759, 'SE', 'Sweden'), +('91.145.64.0', '91.145.127.255', 1536245760, 1536262143, 'FI', 'Finland'), +('91.145.128.0', '91.145.191.255', 1536262144, 1536278527, 'PL', 'Poland'), +('91.145.192.0', '91.145.255.255', 1536278528, 1536294911, 'UA', 'Ukraine'), +('91.146.0.0', '91.146.127.255', 1536294912, 1536327679, 'RU', 'Russian Federation'), +('91.146.128.0', '91.146.191.255', 1536327680, 1536344063, 'HU', 'Hungary'), +('91.146.192.0', '91.146.255.255', 1536344064, 1536360447, 'PL', 'Poland'), +('91.147.0.0', '91.147.63.255', 1536360448, 1536376831, 'RU', 'Russian Federation'), +('91.147.64.0', '91.147.127.255', 1536376832, 1536393215, 'KZ', 'Kazakstan'), +('91.147.128.0', '91.147.191.255', 1536393216, 1536409599, 'SA', 'Saudi Arabia'), +('91.147.192.0', '91.147.255.255', 1536409600, 1536425983, 'HU', 'Hungary'), +('91.148.0.0', '91.148.63.255', 1536425984, 1536442367, 'SK', 'Slovakia'), +('91.148.64.0', '91.148.127.255', 1536442368, 1536458751, 'RS', 'Serbia'), +('91.148.128.0', '91.148.191.255', 1536458752, 1536475135, 'BG', 'Bulgaria'), +('91.148.192.0', '91.148.255.255', 1536475136, 1536491519, 'NL', 'Netherlands'), +('91.149.0.0', '91.149.31.255', 1536491520, 1536499711, 'NO', 'Norway'), +('91.149.32.0', '91.149.47.255', 1536499712, 1536503807, 'SE', 'Sweden'), +('91.149.48.0', '91.149.63.255', 1536503808, 1536507903, 'NO', 'Norway'), +('91.149.64.0', '91.149.127.255', 1536507904, 1536524287, 'RU', 'Russian Federation'), +('91.149.128.0', '91.149.191.255', 1536524288, 1536540671, 'BY', 'Belarus'), +('91.149.192.0', '91.149.255.255', 1536540672, 1536557055, 'PL', 'Poland'), +('91.150.0.0', '91.150.63.255', 1536557056, 1536573439, 'FI', 'Finland'), +('91.150.64.0', '91.150.127.255', 1536573440, 1536589823, 'RS', 'Serbia'), +('91.150.128.0', '91.150.223.255', 1536589824, 1536614399, 'PL', 'Poland'), +('91.150.224.0', '91.150.255.255', 1536614400, 1536622591, 'DK', 'Denmark'), +('91.151.0.0', '91.151.15.255', 1536622592, 1536626687, 'GB', 'United Kingdom'), +('91.151.16.0', '91.151.31.255', 1536626688, 1536630783, 'IT', 'Italy'), +('91.151.32.0', '91.151.47.255', 1536630784, 1536634879, 'RU', 'Russian Federation'), +('91.151.48.0', '91.151.79.255', 1536634880, 1536643071, 'FR', 'France'), +('91.151.80.0', '91.151.95.255', 1536643072, 1536647167, 'TR', 'Turkey'), +('91.151.96.0', '91.151.97.10', 1536647168, 1536647434, 'ES', 'Spain'), +('91.151.97.11', '91.151.97.11', 1536647435, 1536647435, 'PT', 'Portugal'), +('91.151.97.12', '91.151.111.255', 1536647436, 1536651263, 'ES', 'Spain'), +('91.151.112.0', '91.151.127.255', 1536651264, 1536655359, 'FR', 'France'), +('91.151.128.0', '91.151.143.255', 1536655360, 1536659455, 'GE', 'Georgia'), +('91.151.144.0', '91.151.145.31', 1536659456, 1536659743, 'DE', 'Germany'), +('91.151.145.32', '91.151.145.39', 1536659744, 1536659751, 'IQ', 'Iraq'), +('91.151.145.40', '91.151.145.47', 1536659752, 1536659759, 'NG', 'Nigeria'), +('91.151.145.48', '91.151.145.63', 1536659760, 1536659775, 'BI', 'Burundi'), +('91.151.145.64', '91.151.145.95', 1536659776, 1536659807, 'IQ', 'Iraq'), +('91.151.145.96', '91.151.145.111', 1536659808, 1536659823, 'SD', 'Sudan'), +('91.151.145.112', '91.151.145.127', 1536659824, 1536659839, 'IQ', 'Iraq'), +('91.151.145.128', '91.151.145.223', 1536659840, 1536659935, 'DE', 'Germany'), +('91.151.145.224', '91.151.145.255', 1536659936, 1536659967, 'MR', 'Mauritania'), +('91.151.146.0', '91.151.146.7', 1536659968, 1536659975, 'EG', 'Egypt'), +('91.151.146.8', '91.151.146.23', 1536659976, 1536659991, 'DE', 'Germany'), +('91.151.146.24', '91.151.146.35', 1536659992, 1536660003, 'EG', 'Egypt'), +('91.151.146.36', '91.151.146.39', 1536660004, 1536660007, 'SO', 'Somalia'), +('91.151.146.40', '91.151.146.47', 1536660008, 1536660015, 'DE', 'Germany'), +('91.151.146.48', '91.151.146.51', 1536660016, 1536660019, 'KW', 'Kuwait'), +('91.151.146.52', '91.151.146.55', 1536660020, 1536660023, 'DE', 'Germany'), +('91.151.146.56', '91.151.146.63', 1536660024, 1536660031, 'IR', 'Iran, Islamic Republic of'), +('91.151.146.64', '91.151.146.71', 1536660032, 1536660039, 'MR', 'Mauritania'), +('91.151.146.72', '91.151.146.255', 1536660040, 1536660223, 'DE', 'Germany'), +('91.151.147.0', '91.151.148.255', 1536660224, 1536660735, 'AE', 'United Arab Emirates'), +('91.151.149.0', '91.151.149.255', 1536660736, 1536660991, 'SA', 'Saudi Arabia'), +('91.151.150.0', '91.151.153.255', 1536660992, 1536662015, 'MR', 'Mauritania'), +('91.151.154.0', '91.151.154.255', 1536662016, 1536662271, 'AE', 'United Arab Emirates'), +('91.151.155.0', '91.151.155.31', 1536662272, 1536662303, 'SO', 'Somalia'), +('91.151.155.32', '91.151.155.39', 1536662304, 1536662311, 'IR', 'Iran, Islamic Republic of'), +('91.151.155.40', '91.151.155.63', 1536662312, 1536662335, 'LB', 'Lebanon'), +('91.151.155.64', '91.151.155.79', 1536662336, 1536662351, 'AE', 'United Arab Emirates'), +('91.151.155.80', '91.151.155.87', 1536662352, 1536662359, 'TD', 'Chad'), +('91.151.155.88', '91.151.155.95', 1536662360, 1536662367, 'IR', 'Iran, Islamic Republic of'), +('91.151.155.96', '91.151.155.127', 1536662368, 1536662399, 'IQ', 'Iraq'), +('91.151.155.128', '91.151.155.159', 1536662400, 1536662431, 'DE', 'Germany'), +('91.151.155.160', '91.151.155.255', 1536662432, 1536662527, 'IQ', 'Iraq'), +('91.151.156.0', '91.151.156.255', 1536662528, 1536662783, 'AE', 'United Arab Emirates'), +('91.151.157.0', '91.151.157.255', 1536662784, 1536663039, 'SA', 'Saudi Arabia'), +('91.151.158.0', '91.151.158.255', 1536663040, 1536663295, 'AE', 'United Arab Emirates'), +('91.151.159.0', '91.151.159.23', 1536663296, 1536663319, 'DE', 'Germany'), +('91.151.159.24', '91.151.159.31', 1536663320, 1536663327, 'LB', 'Lebanon'), +('91.151.159.32', '91.151.159.39', 1536663328, 1536663335, 'CV', 'Cape Verde'), +('91.151.159.40', '91.151.159.63', 1536663336, 1536663359, 'DE', 'Germany'), +('91.151.159.64', '91.151.159.95', 1536663360, 1536663391, 'IQ', 'Iraq'), +('91.151.159.96', '91.151.159.127', 1536663392, 1536663423, 'DE', 'Germany'), +('91.151.159.128', '91.151.159.255', 1536663424, 1536663551, 'KW', 'Kuwait'), +('91.151.160.0', '91.151.175.255', 1536663552, 1536667647, 'SA', 'Saudi Arabia'), +('91.151.176.0', '91.151.207.255', 1536667648, 1536675839, 'RU', 'Russian Federation'), +('91.151.208.0', '91.151.223.255', 1536675840, 1536679935, 'GB', 'United Kingdom'), +('91.151.224.0', '91.151.239.255', 1536679936, 1536684031, 'LB', 'Lebanon'), +('91.151.240.0', '91.151.255.255', 1536684032, 1536688127, 'RU', 'Russian Federation'), +('91.152.0.0', '91.159.255.255', 1536688128, 1537212415, 'FI', 'Finland'), +('91.160.0.0', '91.175.255.255', 1537212416, 1538260991, 'FR', 'France'), +('91.176.0.0', '91.183.255.255', 1538260992, 1538785279, 'BE', 'Belgium'), +('91.184.0.0', '91.184.31.255', 1538785280, 1538793471, 'NL', 'Netherlands'), +('91.184.32.0', '91.184.47.255', 1538793472, 1538797567, 'DE', 'Germany'), +('91.184.48.0', '91.184.55.191', 1538797568, 1538799551, 'NL', 'Netherlands'), +('91.184.55.192', '91.184.55.255', 1538799552, 1538799615, 'DE', 'Germany'), +('91.184.56.0', '91.184.63.255', 1538799616, 1538801663, 'NL', 'Netherlands'), +('91.184.64.0', '91.184.95.255', 1538801664, 1538809855, 'IR', 'Iran, Islamic Republic of'), +('91.184.96.0', '91.184.127.255', 1538809856, 1538818047, 'GE', 'Georgia'), +('91.184.128.0', '91.184.159.255', 1538818048, 1538826239, 'NO', 'Norway'), +('91.184.160.0', '91.184.191.255', 1538826240, 1538834431, 'DE', 'Germany'), +('91.184.192.0', '91.184.223.255', 1538834432, 1538842623, 'CY', 'Cyprus'), +('91.184.224.0', '91.184.255.255', 1538842624, 1538850815, 'RU', 'Russian Federation'), +('91.185.0.0', '91.185.31.255', 1538850816, 1538859007, 'KZ', 'Kazakstan'), +('91.185.32.0', '91.185.95.255', 1538859008, 1538875391, 'RU', 'Russian Federation'), +('91.185.96.0', '91.185.127.255', 1538875392, 1538883583, 'RS', 'Serbia'), +('91.185.128.0', '91.185.159.255', 1538883584, 1538891775, 'BE', 'Belgium'), +('91.185.160.0', '91.185.191.255', 1538891776, 1538899967, 'DE', 'Germany'), +('91.185.192.0', '91.185.196.175', 1538899968, 1538901167, 'SI', 'Slovenia'), +('91.185.196.176', '91.185.196.183', 1538901168, 1538901175, 'IT', 'Italy'), +('91.185.196.184', '91.185.200.47', 1538901176, 1538902063, 'SI', 'Slovenia'), +('91.185.200.48', '91.185.200.63', 1538902064, 1538902079, 'NZ', 'New Zealand'), +('91.185.200.64', '91.185.223.255', 1538902080, 1538908159, 'SI', 'Slovenia'), +('91.185.224.0', '91.185.255.255', 1538908160, 1538916351, 'RU', 'Russian Federation'), +('91.186.0.0', '91.186.31.255', 1538916352, 1538924543, 'GB', 'United Kingdom'), +('91.186.32.0', '91.186.63.255', 1538924544, 1538932735, 'DE', 'Germany'), +('91.186.64.0', '91.186.95.255', 1538932736, 1538940927, 'NO', 'Norway'), +('91.186.96.0', '91.186.127.255', 1538940928, 1538949119, 'RU', 'Russian Federation'), +('91.186.128.0', '91.186.159.255', 1538949120, 1538957311, 'AT', 'Austria'), +('91.186.160.0', '91.186.176.127', 1538957312, 1538961535, 'DE', 'Germany'), +('91.186.176.128', '91.186.176.191', 1538961536, 1538961599, 'IT', 'Italy'), +('91.186.176.192', '91.186.191.255', 1538961600, 1538965503, 'DE', 'Germany'), +('91.186.192.0', '91.186.223.255', 1538965504, 1538973695, 'IR', 'Iran, Islamic Republic of'), +('91.186.224.0', '91.186.255.255', 1538973696, 1538981887, 'JO', 'Jordan'), +('91.187.0.0', '91.187.31.255', 1538981888, 1538990079, 'BY', 'Belarus'), +('91.187.32.0', '91.187.63.255', 1538990080, 1538998271, 'CZ', 'Czech Republic'), +('91.187.64.0', '91.187.95.255', 1538998272, 1539006463, 'AD', 'Andorra'), +('91.187.96.0', '91.187.159.255', 1539006464, 1539022847, 'RS', 'Serbia'), +('91.187.160.0', '91.187.191.255', 1539022848, 1539031039, 'LT', 'Lithuania'), +('91.187.192.0', '91.187.223.255', 1539031040, 1539039231, 'IT', 'Italy'), +('91.187.224.0', '91.187.255.255', 1539039232, 1539047423, 'PL', 'Poland'), +('91.188.0.0', '91.188.3.255', 1539047424, 1539048447, 'IT', 'Italy'), +('91.188.4.0', '91.188.4.7', 1539048448, 1539048455, 'LY', 'Libyan Arab Jamahiriya'), +('91.188.4.8', '91.188.4.15', 1539048456, 1539048463, 'IT', 'Italy'), +('91.188.4.16', '91.188.4.23', 1539048464, 1539048471, 'AT', 'Austria'), +('91.188.4.24', '91.188.4.63', 1539048472, 1539048511, 'IT', 'Italy'), +('91.188.4.64', '91.188.4.71', 1539048512, 1539048519, 'LY', 'Libyan Arab Jamahiriya'), +('91.188.4.72', '91.188.4.95', 1539048520, 1539048543, 'IT', 'Italy'), +('91.188.4.96', '91.188.4.127', 1539048544, 1539048575, 'LY', 'Libyan Arab Jamahiriya'), +('91.188.4.128', '91.188.4.191', 1539048576, 1539048639, 'IT', 'Italy'), +('91.188.4.192', '91.188.4.239', 1539048640, 1539048687, 'IQ', 'Iraq'), +('91.188.4.240', '91.188.4.255', 1539048688, 1539048703, 'IT', 'Italy'), +('91.188.5.0', '91.188.5.255', 1539048704, 1539048959, 'A2', 'Satellite Provider'), +('91.188.6.0', '91.188.6.255', 1539048960, 1539049215, 'IT', 'Italy'), +('91.188.7.0', '91.188.7.7', 1539049216, 1539049223, 'LY', 'Libyan Arab Jamahiriya'), +('91.188.7.8', '91.188.7.15', 1539049224, 1539049231, 'IQ', 'Iraq'), +('91.188.7.16', '91.188.7.23', 1539049232, 1539049239, 'LY', 'Libyan Arab Jamahiriya'), +('91.188.7.24', '91.188.7.39', 1539049240, 1539049255, 'IT', 'Italy'), +('91.188.7.40', '91.188.7.47', 1539049256, 1539049263, 'LY', 'Libyan Arab Jamahiriya'), +('91.188.7.48', '91.188.7.63', 1539049264, 1539049279, 'IT', 'Italy'), +('91.188.7.64', '91.188.7.79', 1539049280, 1539049295, 'LY', 'Libyan Arab Jamahiriya'), +('91.188.7.80', '91.188.7.95', 1539049296, 1539049311, 'GL', 'Greenland'), +('91.188.7.96', '91.188.7.119', 1539049312, 1539049335, 'LY', 'Libyan Arab Jamahiriya'), +('91.188.7.120', '91.188.11.127', 1539049336, 1539050367, 'IT', 'Italy'), +('91.188.11.128', '91.188.11.135', 1539050368, 1539050375, 'FR', 'France'), +('91.188.11.136', '91.188.11.143', 1539050376, 1539050383, 'IT', 'Italy'), +('91.188.11.144', '91.188.11.159', 1539050384, 1539050399, 'FR', 'France'), +('91.188.11.160', '91.188.11.167', 1539050400, 1539050407, 'IT', 'Italy'), +('91.188.11.168', '91.188.11.175', 1539050408, 1539050415, 'AL', 'Albania'), +('91.188.11.176', '91.188.31.111', 1539050416, 1539055471, 'IT', 'Italy'), +('91.188.31.112', '91.188.31.127', 1539055472, 1539055487, 'FR', 'France'), +('91.188.31.128', '91.188.31.255', 1539055488, 1539055615, 'IT', 'Italy'), +('91.188.32.0', '91.188.63.255', 1539055616, 1539063807, 'LV', 'Latvia'), +('91.188.64.0', '91.188.95.255', 1539063808, 1539071999, 'FR', 'France'), +('91.188.96.0', '91.188.127.255', 1539072000, 1539080191, 'PL', 'Poland'), +('91.188.128.0', '91.188.159.255', 1539080192, 1539088383, 'UZ', 'Uzbekistan'), +('91.188.160.0', '91.188.191.255', 1539088384, 1539096575, 'RU', 'Russian Federation'), +('91.188.192.0', '91.188.255.255', 1539096576, 1539112959, 'TR', 'Turkey'), +('91.189.0.0', '91.189.7.255', 1539112960, 1539115007, 'PL', 'Poland'), +('91.189.8.0', '91.189.15.255', 1539115008, 1539117055, 'CH', 'Switzerland'), +('91.189.16.0', '91.189.39.255', 1539117056, 1539123199, 'PL', 'Poland'), +('91.189.40.0', '91.189.47.255', 1539123200, 1539125247, 'SE', 'Sweden'), +('91.189.48.0', '91.189.55.255', 1539125248, 1539127295, 'RU', 'Russian Federation'), +('91.189.56.0', '91.189.63.255', 1539127296, 1539129343, 'PL', 'Poland'), +('91.189.64.0', '91.189.71.255', 1539129344, 1539131391, 'IE', 'Ireland'), +('91.189.72.0', '91.189.79.255', 1539131392, 1539133439, 'PL', 'Poland'), +('91.189.80.0', '91.189.87.255', 1539133440, 1539135487, 'RU', 'Russian Federation'), +('91.189.88.0', '91.189.95.255', 1539135488, 1539137535, 'GB', 'United Kingdom'), +('91.189.96.0', '91.189.103.255', 1539137536, 1539139583, 'NL', 'Netherlands'), +('91.189.104.0', '91.189.111.255', 1539139584, 1539141631, 'FR', 'France'), +('91.189.112.0', '91.189.119.255', 1539141632, 1539143679, 'RU', 'Russian Federation'), +('91.189.120.0', '91.189.127.255', 1539143680, 1539145727, 'NO', 'Norway'), +('91.189.128.0', '91.189.135.255', 1539145728, 1539147775, 'UA', 'Ukraine'), +('91.189.136.0', '91.189.143.255', 1539147776, 1539149823, 'PL', 'Poland'), +('91.189.144.0', '91.189.151.255', 1539149824, 1539151871, 'GB', 'United Kingdom'), +('91.189.152.0', '91.189.167.255', 1539151872, 1539155967, 'RU', 'Russian Federation'), +('91.189.168.0', '91.189.183.255', 1539155968, 1539160063, 'NO', 'Norway'), +('91.189.184.0', '91.189.191.255', 1539160064, 1539162111, 'RU', 'Russian Federation'), +('91.189.192.0', '91.189.199.255', 1539162112, 1539164159, 'DE', 'Germany'), +('91.189.200.0', '91.189.207.255', 1539164160, 1539166207, 'DK', 'Denmark'), +('91.189.208.0', '91.189.215.255', 1539166208, 1539168255, 'FI', 'Finland'), +('91.189.216.0', '91.189.223.255', 1539168256, 1539170303, 'PL', 'Poland'), +('91.189.224.0', '91.189.231.255', 1539170304, 1539172351, 'NL', 'Netherlands'), +('91.189.232.0', '91.189.247.255', 1539172352, 1539176447, 'RU', 'Russian Federation'), +('91.189.248.0', '91.189.255.255', 1539176448, 1539178495, 'PL', 'Poland'), +('91.190.0.0', '91.190.31.255', 1539178496, 1539186687, 'CH', 'Switzerland'), +('91.190.32.0', '91.190.63.255', 1539186688, 1539194879, 'LV', 'Latvia'), +('91.190.64.0', '91.190.95.255', 1539194880, 1539203071, 'RU', 'Russian Federation'), +('91.190.96.0', '91.190.111.255', 1539203072, 1539207167, 'NL', 'Netherlands'), +('91.190.112.0', '91.190.127.255', 1539207168, 1539211263, 'RU', 'Russian Federation'), +('91.190.128.0', '91.190.129.7', 1539211264, 1539211527, 'CZ', 'Czech Republic'), +('91.190.129.8', '91.190.129.11', 1539211528, 1539211531, 'GB', 'United Kingdom'), +('91.190.129.12', '91.190.129.255', 1539211532, 1539211775, 'CZ', 'Czech Republic'), +('91.190.130.0', '91.190.130.255', 1539211776, 1539212031, 'DE', 'Germany'), +('91.190.131.0', '91.190.131.255', 1539212032, 1539212287, 'CZ', 'Czech Republic'), +('91.190.132.0', '91.190.132.255', 1539212288, 1539212543, 'DE', 'Germany'), +('91.190.133.0', '91.190.135.255', 1539212544, 1539213311, 'CZ', 'Czech Republic'), +('91.190.136.0', '91.190.143.255', 1539213312, 1539215359, 'SE', 'Sweden'), +('91.190.144.0', '91.190.159.255', 1539215360, 1539219455, 'DE', 'Germany'), +('91.190.160.0', '91.190.167.255', 1539219456, 1539221503, 'DK', 'Denmark'), +('91.190.168.0', '91.190.171.15', 1539221504, 1539222287, 'FR', 'France'), +('91.190.171.16', '91.190.171.31', 1539222288, 1539222303, 'HK', 'Hong Kong'), +('91.190.171.32', '91.190.175.255', 1539222304, 1539223551, 'FR', 'France'), +('91.190.176.0', '91.190.183.255', 1539223552, 1539225599, 'DE', 'Germany'), +('91.190.184.0', '91.190.191.255', 1539225600, 1539227647, 'HU', 'Hungary'), +('91.190.192.0', '91.190.199.255', 1539227648, 1539229695, 'KW', 'Kuwait'), +('91.190.200.0', '91.190.207.255', 1539229696, 1539231743, 'DE', 'Germany'), +('91.190.208.0', '91.190.215.255', 1539231744, 1539233791, 'BE', 'Belgium'), +('91.190.216.0', '91.190.223.255', 1539233792, 1539235839, 'GR', 'Greece'), +('91.190.224.0', '91.190.231.255', 1539235840, 1539237887, 'DE', 'Germany'), +('91.190.232.0', '91.190.239.255', 1539237888, 1539239935, 'RU', 'Russian Federation'), +('91.190.240.0', '91.190.255.255', 1539239936, 1539244031, 'DE', 'Germany'), +('91.191.0.0', '91.191.63.255', 1539244032, 1539260415, 'BA', 'Bosnia and Herzegovina'), +('91.191.64.0', '91.191.127.255', 1539260416, 1539276799, 'SK', 'Slovakia'), +('91.191.128.0', '91.191.143.255', 1539276800, 1539280895, 'SE', 'Sweden'), +('91.191.144.0', '91.191.159.255', 1539280896, 1539284991, 'FR', 'France'), +('91.191.160.0', '91.191.167.255', 1539284992, 1539287039, 'DE', 'Germany'), +('91.191.168.0', '91.191.175.255', 1539287040, 1539289087, 'TR', 'Turkey'), +('91.191.176.0', '91.191.191.255', 1539289088, 1539293183, 'RU', 'Russian Federation'), +('91.191.192.0', '91.191.207.255', 1539293184, 1539297279, 'AZ', 'Azerbaijan'), +('91.191.208.0', '91.191.223.255', 1539297280, 1539301375, 'BG', 'Bulgaria'), +('91.191.224.0', '91.191.255.255', 1539301376, 1539309567, 'RU', 'Russian Federation'), +('91.192.0.0', '91.192.3.255', 1539309568, 1539310591, 'PL', 'Poland'), +('91.192.4.0', '91.192.7.255', 1539310592, 1539311615, 'UA', 'Ukraine'), +('91.192.8.0', '91.192.11.255', 1539311616, 1539312639, 'NL', 'Netherlands'), +('91.192.12.0', '91.192.15.255', 1539312640, 1539313663, 'DE', 'Germany'), +('91.192.16.0', '91.192.19.255', 1539313664, 1539314687, 'GB', 'United Kingdom'), +('91.192.20.0', '91.192.23.255', 1539314688, 1539315711, 'RU', 'Russian Federation'), +('91.192.24.0', '91.192.27.255', 1539315712, 1539316735, 'UA', 'Ukraine'), +('91.192.28.0', '91.192.31.255', 1539316736, 1539317759, 'SE', 'Sweden'), +('91.192.32.0', '91.192.35.255', 1539317760, 1539318783, 'RU', 'Russian Federation'), +('91.192.36.0', '91.192.39.255', 1539318784, 1539319807, 'NL', 'Netherlands'), +('91.192.40.0', '91.192.43.255', 1539319808, 1539320831, 'DE', 'Germany'), +('91.192.44.0', '91.192.47.255', 1539320832, 1539321855, 'UA', 'Ukraine'), +('91.192.48.0', '91.192.51.255', 1539321856, 1539322879, 'EG', 'Egypt'), +('91.192.52.0', '91.192.55.255', 1539322880, 1539323903, 'EU', 'Europe'), +('91.192.56.0', '91.192.59.255', 1539323904, 1539324927, 'PL', 'Poland'), +('91.192.60.0', '91.192.63.255', 1539324928, 1539325951, 'RU', 'Russian Federation'), +('91.192.64.0', '91.192.67.255', 1539325952, 1539326975, 'KG', 'Kyrgyzstan'), +('91.192.68.0', '91.192.75.255', 1539326976, 1539329023, 'RU', 'Russian Federation'), +('91.192.76.0', '91.192.79.255', 1539329024, 1539330047, 'PL', 'Poland'), +('91.192.80.0', '91.192.83.255', 1539330048, 1539331071, 'RU', 'Russian Federation'), +('91.192.84.0', '91.192.87.255', 1539331072, 1539332095, 'UA', 'Ukraine'), +('91.192.88.0', '91.192.91.255', 1539332096, 1539333119, 'PL', 'Poland'), +('91.192.92.0', '91.192.99.255', 1539333120, 1539335167, 'RU', 'Russian Federation'), +('91.192.100.0', '91.192.103.255', 1539335168, 1539336191, 'CH', 'Switzerland'), +('91.192.104.0', '91.192.105.255', 1539336192, 1539336703, 'UA', 'Ukraine'), +('91.192.106.0', '91.192.107.255', 1539336704, 1539337215, 'EE', 'Estonia'), +('91.192.108.0', '91.192.111.255', 1539337216, 1539338239, 'ES', 'Spain'), +('91.192.112.0', '91.192.115.255', 1539338240, 1539339263, 'RU', 'Russian Federation'), +('91.192.116.0', '91.192.119.255', 1539339264, 1539340287, 'NL', 'Netherlands'), +('91.192.120.0', '91.192.123.255', 1539340288, 1539341311, 'PL', 'Poland'), +('91.192.124.0', '91.192.127.255', 1539341312, 1539342335, 'IT', 'Italy'), +('91.192.128.0', '91.192.139.255', 1539342336, 1539345407, 'UA', 'Ukraine'), +('91.192.140.0', '91.192.143.255', 1539345408, 1539346431, 'RO', 'Romania'), +('91.192.144.0', '91.192.147.255', 1539346432, 1539347455, 'PL', 'Poland'), +('91.192.148.0', '91.192.151.255', 1539347456, 1539348479, 'RU', 'Russian Federation'), +('91.192.152.0', '91.192.163.255', 1539348480, 1539351551, 'UA', 'Ukraine'), +('91.192.164.0', '91.192.167.255', 1539351552, 1539352575, 'PL', 'Poland'), +('91.192.168.0', '91.192.175.255', 1539352576, 1539354623, 'RU', 'Russian Federation'), +('91.192.176.0', '91.192.179.255', 1539354624, 1539355647, 'PL', 'Poland'), +('91.192.180.0', '91.192.187.255', 1539355648, 1539357695, 'UA', 'Ukraine'), +('91.192.188.0', '91.192.191.255', 1539357696, 1539358719, 'RU', 'Russian Federation'), +('91.192.192.0', '91.192.195.255', 1539358720, 1539359743, 'GB', 'United Kingdom'), +('91.192.196.0', '91.192.199.255', 1539359744, 1539360767, 'PL', 'Poland'), +('91.192.200.0', '91.192.203.255', 1539360768, 1539361791, 'IL', 'Israel'), +('91.192.204.0', '91.192.207.255', 1539361792, 1539362815, 'PL', 'Poland'), +('91.192.208.0', '91.192.211.255', 1539362816, 1539363839, 'GB', 'United Kingdom'), +('91.192.212.0', '91.192.215.255', 1539363840, 1539364863, 'DK', 'Denmark'), +('91.192.216.0', '91.192.219.255', 1539364864, 1539365887, 'UA', 'Ukraine'), +('91.192.220.0', '91.192.223.255', 1539365888, 1539366911, 'NO', 'Norway'), +('91.192.224.0', '91.192.231.255', 1539366912, 1539368959, 'PL', 'Poland'), +('91.192.232.0', '91.192.235.255', 1539368960, 1539369983, 'GB', 'United Kingdom'), +('91.192.236.0', '91.192.239.255', 1539369984, 1539371007, 'BG', 'Bulgaria'), +('91.192.240.0', '91.192.247.255', 1539371008, 1539373055, 'RU', 'Russian Federation'), +('91.192.248.0', '91.192.251.255', 1539373056, 1539374079, 'PL', 'Poland'), +('91.192.252.0', '91.192.255.255', 1539374080, 1539375103, 'SE', 'Sweden'), +('91.193.0.0', '91.193.3.255', 1539375104, 1539376127, 'NO', 'Norway'), +('91.193.4.0', '91.193.7.255', 1539376128, 1539377151, 'IL', 'Israel'), +('91.193.8.0', '91.193.11.255', 1539377152, 1539378175, 'UA', 'Ukraine'), +('91.193.12.0', '91.193.15.255', 1539378176, 1539379199, 'PL', 'Poland'), +('91.193.16.0', '91.193.19.255', 1539379200, 1539380223, 'EU', 'Europe'), +('91.193.20.0', '91.193.23.255', 1539380224, 1539381247, 'CH', 'Switzerland'), +('91.193.24.0', '91.193.27.255', 1539381248, 1539382271, 'RS', 'Serbia'), +('91.193.28.0', '91.193.31.255', 1539382272, 1539383295, 'PL', 'Poland'), +('91.193.32.0', '91.193.35.255', 1539383296, 1539384319, 'UA', 'Ukraine'), +('91.193.36.0', '91.193.39.255', 1539384320, 1539385343, 'RU', 'Russian Federation'), +('91.193.40.0', '91.193.41.255', 1539385344, 1539385855, 'PL', 'Poland'), +('91.193.42.0', '91.193.43.255', 1539385856, 1539386367, 'BE', 'Belgium'), +('91.193.44.0', '91.193.47.255', 1539386368, 1539387391, 'IT', 'Italy'), +('91.193.48.0', '91.193.51.255', 1539387392, 1539388415, 'IL', 'Israel'), +('91.193.52.0', '91.193.55.255', 1539388416, 1539389439, 'PL', 'Poland'), +('91.193.56.0', '91.193.57.255', 1539389440, 1539389951, 'FR', 'France'), +('91.193.58.0', '91.193.59.255', 1539389952, 1539390463, 'RU', 'Russian Federation'), +('91.193.60.0', '91.193.63.255', 1539390464, 1539391487, 'RO', 'Romania'), +('91.193.64.0', '91.193.67.255', 1539391488, 1539392511, 'LV', 'Latvia'), +('91.193.68.0', '91.193.71.255', 1539392512, 1539393535, 'UA', 'Ukraine'), +('91.193.72.0', '91.193.75.255', 1539393536, 1539394559, 'RU', 'Russian Federation'), +('91.193.76.0', '91.193.83.255', 1539394560, 1539396607, 'UA', 'Ukraine'), +('91.193.84.0', '91.193.87.255', 1539396608, 1539397631, 'PL', 'Poland'), +('91.193.88.0', '91.193.89.255', 1539397632, 1539398143, 'RU', 'Russian Federation'), +('91.193.90.0', '91.193.91.255', 1539398144, 1539398655, 'PL', 'Poland'), +('91.193.92.0', '91.193.95.255', 1539398656, 1539399679, 'ES', 'Spain'), +('91.193.96.0', '91.193.103.255', 1539399680, 1539401727, 'PL', 'Poland'), +('91.193.104.0', '91.193.107.255', 1539401728, 1539402751, 'UA', 'Ukraine'), +('91.193.110.0', '91.193.111.255', 1539403264, 1539403775, 'RU', 'Russian Federation'), +('91.193.112.0', '91.193.115.255', 1539403776, 1539404799, 'GR', 'Greece'), +('91.193.116.0', '91.193.119.255', 1539404800, 1539405823, 'LV', 'Latvia'), +('91.193.120.0', '91.193.123.255', 1539405824, 1539406847, 'PL', 'Poland'), +('91.193.124.0', '91.193.127.255', 1539406848, 1539407871, 'UA', 'Ukraine'), +('91.193.128.0', '91.193.131.255', 1539407872, 1539408895, 'DE', 'Germany'), +('91.193.132.0', '91.193.135.255', 1539408896, 1539409919, 'CZ', 'Czech Republic'), +('91.193.136.0', '91.193.139.255', 1539409920, 1539410943, 'DK', 'Denmark'), +('91.193.140.0', '91.193.143.255', 1539410944, 1539411967, 'RU', 'Russian Federation'), +('91.193.144.0', '91.193.147.255', 1539411968, 1539412991, 'PL', 'Poland'), +('91.193.148.0', '91.193.151.255', 1539412992, 1539414015, 'RU', 'Russian Federation'), +('91.193.152.0', '91.193.155.255', 1539414016, 1539415039, 'UA', 'Ukraine'), +('91.193.156.0', '91.193.159.255', 1539415040, 1539416063, 'BG', 'Bulgaria'), +('91.193.160.0', '91.193.163.255', 1539416064, 1539417087, 'PL', 'Poland'), +('91.193.164.0', '91.193.167.255', 1539417088, 1539418111, 'UA', 'Ukraine'), +('91.193.168.0', '91.193.171.255', 1539418112, 1539419135, 'RU', 'Russian Federation'), +('91.193.172.0', '91.193.175.255', 1539419136, 1539420159, 'UA', 'Ukraine'), +('91.193.176.0', '91.193.179.255', 1539420160, 1539421183, 'RU', 'Russian Federation'), +('91.193.180.0', '91.193.183.255', 1539421184, 1539422207, 'GB', 'United Kingdom'), +('91.193.184.0', '91.193.187.255', 1539422208, 1539423231, 'PL', 'Poland'), +('91.193.188.0', '91.193.191.255', 1539423232, 1539424255, 'IE', 'Ireland'), +('91.193.192.0', '91.193.195.255', 1539424256, 1539425279, 'RU', 'Russian Federation'), +('91.193.196.0', '91.193.199.255', 1539425280, 1539426303, 'PL', 'Poland'), +('91.193.200.0', '91.193.203.255', 1539426304, 1539427327, 'BG', 'Bulgaria'), +('91.193.204.0', '91.193.207.255', 1539427328, 1539428351, 'UA', 'Ukraine'), +('91.193.208.0', '91.193.211.255', 1539428352, 1539429375, 'PL', 'Poland'), +('91.193.212.0', '91.193.231.255', 1539429376, 1539434495, 'RU', 'Russian Federation'), +('91.193.232.0', '91.193.235.255', 1539434496, 1539435519, 'UA', 'Ukraine'), +('91.193.236.0', '91.193.243.255', 1539435520, 1539437567, 'RU', 'Russian Federation'), +('91.193.244.0', '91.193.251.255', 1539437568, 1539439615, 'GB', 'United Kingdom'), +('91.193.252.0', '91.193.255.255', 1539439616, 1539440639, 'UA', 'Ukraine'), +('91.194.0.0', '91.194.3.255', 1539440640, 1539441663, 'RU', 'Russian Federation'), +('91.194.4.0', '91.194.5.255', 1539441664, 1539442175, 'US', 'United States'), +('91.194.6.0', '91.194.7.255', 1539442176, 1539442687, 'DE', 'Germany'), +('91.194.8.0', '91.194.9.255', 1539442688, 1539443199, 'NL', 'Netherlands'), +('91.194.10.0', '91.194.13.255', 1539443200, 1539444223, 'RU', 'Russian Federation'), +('91.194.14.0', '91.194.15.255', 1539444224, 1539444735, 'FR', 'France'), +('91.194.16.0', '91.194.17.255', 1539444736, 1539445247, 'RU', 'Russian Federation'), +('91.194.18.0', '91.194.19.255', 1539445248, 1539445759, 'PL', 'Poland'), +('91.194.20.0', '91.194.21.255', 1539445760, 1539446271, 'FI', 'Finland'), +('91.194.22.0', '91.194.23.255', 1539446272, 1539446783, 'SE', 'Sweden'), +('91.194.24.0', '91.194.25.255', 1539446784, 1539447295, 'RU', 'Russian Federation'), +('91.194.26.0', '91.194.27.255', 1539447296, 1539447807, 'SE', 'Sweden'), +('91.194.28.0', '91.194.31.255', 1539447808, 1539448831, 'RO', 'Romania'), +('91.194.32.0', '91.194.33.255', 1539448832, 1539449343, 'AT', 'Austria'), +('91.194.34.0', '91.194.35.255', 1539449344, 1539449855, 'UA', 'Ukraine'), +('91.194.36.0', '91.194.37.255', 1539449856, 1539450367, 'DK', 'Denmark'), +('91.194.38.0', '91.194.39.255', 1539450368, 1539450879, 'SE', 'Sweden'), +('91.194.42.0', '91.194.45.255', 1539451392, 1539452415, 'RO', 'Romania'), +('91.194.46.0', '91.194.47.255', 1539452416, 1539452927, 'GB', 'United Kingdom'), +('91.194.48.0', '91.194.49.255', 1539452928, 1539453439, 'CH', 'Switzerland'), +('91.194.50.0', '91.194.51.255', 1539453440, 1539453951, 'UA', 'Ukraine'), +('91.194.52.0', '91.194.53.255', 1539453952, 1539454463, 'GB', 'United Kingdom'), +('91.194.54.0', '91.194.55.255', 1539454464, 1539454975, 'RU', 'Russian Federation'), +('91.194.56.0', '91.194.57.255', 1539454976, 1539455487, 'UA', 'Ukraine'), +('91.194.58.0', '91.194.59.255', 1539455488, 1539455999, 'RU', 'Russian Federation'), +('91.194.60.0', '91.194.61.255', 1539456000, 1539456511, 'FR', 'France'), +('91.194.62.0', '91.194.63.255', 1539456512, 1539457023, 'ES', 'Spain'), +('91.194.64.0', '91.194.65.255', 1539457024, 1539457535, 'RU', 'Russian Federation'), +('91.194.66.0', '91.194.67.255', 1539457536, 1539458047, 'SE', 'Sweden'), +('91.194.68.0', '91.194.71.255', 1539458048, 1539459071, 'GB', 'United Kingdom'), +('91.194.72.0', '91.194.73.255', 1539459072, 1539459583, 'UA', 'Ukraine'), +('91.194.74.0', '91.194.75.255', 1539459584, 1539460095, 'GB', 'United Kingdom'), +('91.194.76.0', '91.194.77.255', 1539460096, 1539460607, 'LV', 'Latvia'), +('91.194.78.0', '91.194.81.255', 1539460608, 1539461631, 'UA', 'Ukraine'), +('91.194.82.0', '91.194.83.255', 1539461632, 1539462143, 'RS', 'Serbia'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('91.194.84.0', '91.194.85.255', 1539462144, 1539462655, 'DE', 'Germany'), +('91.194.86.0', '91.194.87.255', 1539462656, 1539463167, 'BE', 'Belgium'), +('91.194.88.0', '91.194.89.255', 1539463168, 1539463679, 'UA', 'Ukraine'), +('91.194.90.0', '91.194.91.255', 1539463680, 1539464191, 'DE', 'Germany'), +('91.194.92.0', '91.194.93.255', 1539464192, 1539464703, 'RO', 'Romania'), +('91.194.94.0', '91.194.95.255', 1539464704, 1539465215, 'DK', 'Denmark'), +('91.194.96.0', '91.194.101.255', 1539465216, 1539466751, 'FR', 'France'), +('91.194.102.0', '91.194.103.255', 1539466752, 1539467263, 'KW', 'Kuwait'), +('91.194.104.0', '91.194.105.255', 1539467264, 1539467775, 'RU', 'Russian Federation'), +('91.194.106.0', '91.194.107.255', 1539467776, 1539468287, 'PL', 'Poland'), +('91.194.108.0', '91.194.109.255', 1539468288, 1539468799, 'DE', 'Germany'), +('91.194.110.0', '91.194.113.255', 1539468800, 1539469823, 'RU', 'Russian Federation'), +('91.194.114.0', '91.194.115.255', 1539469824, 1539470335, 'IL', 'Israel'), +('91.194.116.0', '91.194.117.255', 1539470336, 1539470847, 'GB', 'United Kingdom'), +('91.194.118.0', '91.194.119.255', 1539470848, 1539471359, 'SE', 'Sweden'), +('91.194.120.0', '91.194.121.255', 1539471360, 1539471871, 'RU', 'Russian Federation'), +('91.194.122.0', '91.194.123.255', 1539471872, 1539472383, 'PL', 'Poland'), +('91.194.124.0', '91.194.125.255', 1539472384, 1539472895, 'UA', 'Ukraine'), +('91.194.126.0', '91.194.127.255', 1539472896, 1539473407, 'GB', 'United Kingdom'), +('91.194.128.0', '91.194.129.255', 1539473408, 1539473919, 'FR', 'France'), +('91.194.130.0', '91.194.131.255', 1539473920, 1539474431, 'KW', 'Kuwait'), +('91.194.132.0', '91.194.133.255', 1539474432, 1539474943, 'DE', 'Germany'), +('91.194.134.0', '91.194.135.255', 1539474944, 1539475455, 'UA', 'Ukraine'), +('91.194.136.0', '91.194.137.255', 1539475456, 1539475967, 'NL', 'Netherlands'), +('91.194.138.0', '91.194.139.255', 1539475968, 1539476479, 'PL', 'Poland'), +('91.194.140.0', '91.194.141.255', 1539476480, 1539476991, 'CZ', 'Czech Republic'), +('91.194.142.0', '91.194.143.255', 1539476992, 1539477503, 'IT', 'Italy'), +('91.194.144.0', '91.194.145.255', 1539477504, 1539478015, 'PL', 'Poland'), +('91.194.146.0', '91.194.147.255', 1539478016, 1539478527, 'CH', 'Switzerland'), +('91.194.148.0', '91.194.149.255', 1539478528, 1539479039, 'RO', 'Romania'), +('91.194.150.0', '91.194.151.255', 1539479040, 1539479551, 'DK', 'Denmark'), +('91.194.152.0', '91.194.153.255', 1539479552, 1539480063, 'GB', 'United Kingdom'), +('91.194.154.0', '91.194.155.255', 1539480064, 1539480575, 'DK', 'Denmark'), +('91.194.156.0', '91.194.157.255', 1539480576, 1539481087, 'PL', 'Poland'), +('91.194.158.0', '91.194.159.255', 1539481088, 1539481599, 'GB', 'United Kingdom'), +('91.194.160.0', '91.194.161.255', 1539481600, 1539482111, 'RU', 'Russian Federation'), +('91.194.162.0', '91.194.163.255', 1539482112, 1539482623, 'UA', 'Ukraine'), +('91.194.164.0', '91.194.165.255', 1539482624, 1539483135, 'RU', 'Russian Federation'), +('91.194.166.0', '91.194.167.255', 1539483136, 1539483647, 'ES', 'Spain'), +('91.194.168.0', '91.194.169.255', 1539483648, 1539484159, 'NL', 'Netherlands'), +('91.194.170.0', '91.194.171.255', 1539484160, 1539484671, 'GB', 'United Kingdom'), +('91.194.172.0', '91.194.175.255', 1539484672, 1539485695, 'RU', 'Russian Federation'), +('91.194.176.0', '91.194.177.255', 1539485696, 1539486207, 'RO', 'Romania'), +('91.194.178.0', '91.194.179.255', 1539486208, 1539486719, 'FR', 'France'), +('91.194.180.0', '91.194.181.255', 1539486720, 1539487231, 'DE', 'Germany'), +('91.194.182.0', '91.194.185.255', 1539487232, 1539488255, 'RU', 'Russian Federation'), +('91.194.186.0', '91.194.187.255', 1539488256, 1539488767, 'SE', 'Sweden'), +('91.194.188.0', '91.194.189.255', 1539488768, 1539489279, 'PL', 'Poland'), +('91.194.190.0', '91.194.195.255', 1539489280, 1539490815, 'RU', 'Russian Federation'), +('91.194.196.0', '91.194.197.255', 1539490816, 1539491327, 'CH', 'Switzerland'), +('91.194.198.0', '91.194.199.255', 1539491328, 1539491839, 'PL', 'Poland'), +('91.194.200.0', '91.194.201.255', 1539491840, 1539492351, 'RU', 'Russian Federation'), +('91.194.202.0', '91.194.203.255', 1539492352, 1539492863, 'BE', 'Belgium'), +('91.194.204.0', '91.194.205.255', 1539492864, 1539493375, 'KR', 'Korea, Republic of'), +('91.194.206.0', '91.194.207.255', 1539493376, 1539493887, 'RU', 'Russian Federation'), +('91.194.208.0', '91.194.209.255', 1539493888, 1539494399, 'FR', 'France'), +('91.194.210.0', '91.194.211.255', 1539494400, 1539494911, 'PL', 'Poland'), +('91.194.212.0', '91.194.213.255', 1539494912, 1539495423, 'RU', 'Russian Federation'), +('91.194.214.0', '91.194.215.255', 1539495424, 1539495935, 'UA', 'Ukraine'), +('91.194.216.0', '91.194.217.255', 1539495936, 1539496447, 'RS', 'Serbia'), +('91.194.218.0', '91.194.219.255', 1539496448, 1539496959, 'NL', 'Netherlands'), +('91.194.220.0', '91.194.221.255', 1539496960, 1539497471, 'GB', 'United Kingdom'), +('91.194.222.0', '91.194.223.255', 1539497472, 1539497983, 'DE', 'Germany'), +('91.194.224.0', '91.194.225.255', 1539497984, 1539498495, 'NL', 'Netherlands'), +('91.194.226.0', '91.194.227.255', 1539498496, 1539499007, 'RU', 'Russian Federation'), +('91.194.228.0', '91.194.229.255', 1539499008, 1539499519, 'PL', 'Poland'), +('91.194.230.0', '91.194.233.255', 1539499520, 1539500543, 'DE', 'Germany'), +('91.194.234.0', '91.194.235.255', 1539500544, 1539501055, 'RO', 'Romania'), +('91.194.236.0', '91.194.237.255', 1539501056, 1539501567, 'BE', 'Belgium'), +('91.194.238.0', '91.194.239.255', 1539501568, 1539502079, 'UA', 'Ukraine'), +('91.194.240.0', '91.194.241.255', 1539502080, 1539502591, 'PL', 'Poland'), +('91.194.242.0', '91.194.243.255', 1539502592, 1539503103, 'HR', 'Croatia'), +('91.194.244.0', '91.194.247.255', 1539503104, 1539504127, 'RU', 'Russian Federation'), +('91.194.248.0', '91.194.249.255', 1539504128, 1539504639, 'AT', 'Austria'), +('91.194.250.0', '91.194.251.255', 1539504640, 1539505151, 'UA', 'Ukraine'), +('91.194.252.0', '91.194.255.255', 1539505152, 1539506175, 'RU', 'Russian Federation'), +('91.195.0.0', '91.195.1.255', 1539506176, 1539506687, 'NL', 'Netherlands'), +('91.195.4.0', '91.195.7.255', 1539507200, 1539508223, 'RO', 'Romania'), +('91.195.8.0', '91.195.9.255', 1539508224, 1539508735, 'NO', 'Norway'), +('91.195.10.0', '91.195.13.255', 1539508736, 1539509759, 'UA', 'Ukraine'), +('91.195.14.0', '91.195.15.255', 1539509760, 1539510271, 'RO', 'Romania'), +('91.195.16.0', '91.195.17.255', 1539510272, 1539510783, 'RU', 'Russian Federation'), +('91.195.18.0', '91.195.19.255', 1539510784, 1539511295, 'LU', 'Luxembourg'), +('91.195.20.0', '91.195.21.255', 1539511296, 1539511807, 'UA', 'Ukraine'), +('91.195.22.0', '91.195.23.255', 1539511808, 1539512319, 'RU', 'Russian Federation'), +('91.195.24.0', '91.195.25.255', 1539512320, 1539512831, 'BG', 'Bulgaria'), +('91.195.26.0', '91.195.27.255', 1539512832, 1539513343, 'PL', 'Poland'), +('91.195.28.0', '91.195.29.255', 1539513344, 1539513855, 'RO', 'Romania'), +('91.195.30.0', '91.195.31.255', 1539513856, 1539514367, 'RU', 'Russian Federation'), +('91.195.32.0', '91.195.33.255', 1539514368, 1539514879, 'SE', 'Sweden'), +('91.195.34.0', '91.195.35.255', 1539514880, 1539515391, 'ES', 'Spain'), +('91.195.36.0', '91.195.37.255', 1539515392, 1539515903, 'FR', 'France'), +('91.195.38.0', '91.195.39.255', 1539515904, 1539516415, 'RS', 'Serbia'), +('91.195.40.0', '91.195.41.255', 1539516416, 1539516927, 'AT', 'Austria'), +('91.195.42.0', '91.195.43.255', 1539516928, 1539517439, 'PL', 'Poland'), +('91.195.44.0', '91.195.45.255', 1539517440, 1539517951, 'RO', 'Romania'), +('91.195.46.0', '91.195.47.255', 1539517952, 1539518463, 'GB', 'United Kingdom'), +('91.195.48.0', '91.195.49.255', 1539518464, 1539518975, 'DE', 'Germany'), +('91.195.50.0', '91.195.51.255', 1539518976, 1539519487, 'RU', 'Russian Federation'), +('91.195.52.0', '91.195.53.255', 1539519488, 1539519999, 'UA', 'Ukraine'), +('91.195.54.0', '91.195.55.255', 1539520000, 1539520511, 'DE', 'Germany'), +('91.195.56.0', '91.195.57.255', 1539520512, 1539521023, 'PL', 'Poland'), +('91.195.58.0', '91.195.59.255', 1539521024, 1539521535, 'DK', 'Denmark'), +('91.195.60.0', '91.195.61.255', 1539521536, 1539522047, 'RU', 'Russian Federation'), +('91.195.62.0', '91.195.63.255', 1539522048, 1539522559, 'RO', 'Romania'), +('91.195.64.0', '91.195.65.255', 1539522560, 1539523071, 'RU', 'Russian Federation'), +('91.195.66.0', '91.195.67.255', 1539523072, 1539523583, 'RO', 'Romania'), +('91.195.68.0', '91.195.69.255', 1539523584, 1539524095, 'UA', 'Ukraine'), +('91.195.70.0', '91.195.71.255', 1539524096, 1539524607, 'GR', 'Greece'), +('91.195.72.0', '91.195.73.255', 1539524608, 1539525119, 'FR', 'France'), +('91.195.74.0', '91.195.75.255', 1539525120, 1539525631, 'UA', 'Ukraine'), +('91.195.76.0', '91.195.77.255', 1539525632, 1539526143, 'SE', 'Sweden'), +('91.195.78.0', '91.195.79.255', 1539526144, 1539526655, 'DE', 'Germany'), +('91.195.80.0', '91.195.81.255', 1539526656, 1539527167, 'NL', 'Netherlands'), +('91.195.82.0', '91.195.83.255', 1539527168, 1539527679, 'GB', 'United Kingdom'), +('91.195.84.0', '91.195.85.255', 1539527680, 1539528191, 'RO', 'Romania'), +('91.195.86.0', '91.195.87.255', 1539528192, 1539528703, 'UA', 'Ukraine'), +('91.195.88.0', '91.195.89.255', 1539528704, 1539529215, 'SA', 'Saudi Arabia'), +('91.195.90.0', '91.195.91.255', 1539529216, 1539529727, 'UA', 'Ukraine'), +('91.195.92.0', '91.195.93.255', 1539529728, 1539530239, 'PL', 'Poland'), +('91.195.94.0', '91.195.95.255', 1539530240, 1539530751, 'AT', 'Austria'), +('91.195.96.0', '91.195.97.255', 1539530752, 1539531263, 'UA', 'Ukraine'), +('91.195.98.0', '91.195.99.255', 1539531264, 1539531775, 'RO', 'Romania'), +('91.195.100.0', '91.195.103.255', 1539531776, 1539532799, 'RU', 'Russian Federation'), +('91.195.104.0', '91.195.105.255', 1539532800, 1539533311, 'DE', 'Germany'), +('91.195.106.0', '91.195.107.255', 1539533312, 1539533823, 'CZ', 'Czech Republic'), +('91.195.108.0', '91.195.109.255', 1539533824, 1539534335, 'PL', 'Poland'), +('91.195.110.0', '91.195.111.255', 1539534336, 1539534847, 'RU', 'Russian Federation'), +('91.195.112.0', '91.195.113.255', 1539534848, 1539535359, 'GB', 'United Kingdom'), +('91.195.114.0', '91.195.115.255', 1539535360, 1539535871, 'RU', 'Russian Federation'), +('91.195.116.0', '91.195.117.255', 1539535872, 1539536383, 'AT', 'Austria'), +('91.195.118.0', '91.195.119.255', 1539536384, 1539536895, 'NL', 'Netherlands'), +('91.195.120.0', '91.195.121.255', 1539536896, 1539537407, 'UA', 'Ukraine'), +('91.195.122.0', '91.195.123.255', 1539537408, 1539537919, 'GB', 'United Kingdom'), +('91.195.124.0', '91.195.133.255', 1539537920, 1539540479, 'RU', 'Russian Federation'), +('91.195.134.0', '91.195.135.255', 1539540480, 1539540991, 'PL', 'Poland'), +('91.195.136.0', '91.195.137.255', 1539540992, 1539541503, 'RU', 'Russian Federation'), +('91.195.138.0', '91.195.139.255', 1539541504, 1539542015, 'TR', 'Turkey'), +('91.195.140.0', '91.195.141.255', 1539542016, 1539542527, 'DE', 'Germany'), +('91.195.142.0', '91.195.143.255', 1539542528, 1539543039, 'CH', 'Switzerland'), +('91.195.144.0', '91.195.145.255', 1539543040, 1539543551, 'RO', 'Romania'), +('91.195.146.0', '91.195.147.255', 1539543552, 1539544063, 'SI', 'Slovenia'), +('91.195.148.0', '91.195.149.255', 1539544064, 1539544575, 'RU', 'Russian Federation'), +('91.195.150.0', '91.195.151.255', 1539544576, 1539545087, 'CH', 'Switzerland'), +('91.195.152.0', '91.195.153.255', 1539545088, 1539545599, 'GR', 'Greece'), +('91.195.154.0', '91.195.155.255', 1539545600, 1539546111, 'SE', 'Sweden'), +('91.195.156.0', '91.195.157.255', 1539546112, 1539546623, 'UA', 'Ukraine'), +('91.195.158.0', '91.195.159.255', 1539546624, 1539547135, 'PL', 'Poland'), +('91.195.160.0', '91.195.161.255', 1539547136, 1539547647, 'NL', 'Netherlands'), +('91.195.162.0', '91.195.163.255', 1539547648, 1539548159, 'IL', 'Israel'), +('91.195.164.0', '91.195.165.255', 1539548160, 1539548671, 'FR', 'France'), +('91.195.166.0', '91.195.167.255', 1539548672, 1539549183, 'EU', 'Europe'), +('91.195.168.0', '91.195.169.255', 1539549184, 1539549695, 'GB', 'United Kingdom'), +('91.195.170.0', '91.195.171.255', 1539549696, 1539550207, 'RU', 'Russian Federation'), +('91.195.172.0', '91.195.173.255', 1539550208, 1539550719, 'UA', 'Ukraine'), +('91.195.174.0', '91.195.175.255', 1539550720, 1539551231, 'ES', 'Spain'), +('91.195.176.0', '91.195.177.255', 1539551232, 1539551743, 'RS', 'Serbia'), +('91.195.178.0', '91.195.179.255', 1539551744, 1539552255, 'RU', 'Russian Federation'), +('91.195.180.0', '91.195.181.255', 1539552256, 1539552767, 'RO', 'Romania'), +('91.195.182.0', '91.195.183.255', 1539552768, 1539553279, 'GB', 'United Kingdom'), +('91.195.184.0', '91.195.185.255', 1539553280, 1539553791, 'UA', 'Ukraine'), +('91.195.186.0', '91.195.187.255', 1539553792, 1539554303, 'GB', 'United Kingdom'), +('91.195.188.0', '91.195.189.255', 1539554304, 1539554815, 'CH', 'Switzerland'), +('91.195.190.0', '91.195.191.255', 1539554816, 1539555327, 'PL', 'Poland'), +('91.195.192.0', '91.195.193.255', 1539555328, 1539555839, 'GB', 'United Kingdom'), +('91.195.194.0', '91.195.197.255', 1539555840, 1539556863, 'RO', 'Romania'), +('91.195.198.0', '91.195.199.255', 1539556864, 1539557375, 'AT', 'Austria'), +('91.195.200.0', '91.195.201.255', 1539557376, 1539557887, 'NL', 'Netherlands'), +('91.195.202.0', '91.195.203.255', 1539557888, 1539558399, 'CZ', 'Czech Republic'), +('91.195.204.0', '91.195.205.255', 1539558400, 1539558911, 'RU', 'Russian Federation'), +('91.195.206.0', '91.195.207.255', 1539558912, 1539559423, 'FR', 'France'), +('91.195.208.0', '91.195.211.255', 1539559424, 1539560447, 'RU', 'Russian Federation'), +('91.195.212.0', '91.195.213.255', 1539560448, 1539560959, 'GB', 'United Kingdom'), +('91.195.214.0', '91.195.215.255', 1539560960, 1539561471, 'UA', 'Ukraine'), +('91.195.216.0', '91.195.217.255', 1539561472, 1539561983, 'RO', 'Romania'), +('91.195.218.0', '91.195.221.255', 1539561984, 1539563007, 'DE', 'Germany'), +('91.195.222.0', '91.195.223.255', 1539563008, 1539563519, 'RU', 'Russian Federation'), +('91.195.224.0', '91.195.225.255', 1539563520, 1539564031, 'SE', 'Sweden'), +('91.195.226.0', '91.195.227.255', 1539564032, 1539564543, 'KZ', 'Kazakstan'), +('91.195.228.0', '91.195.229.255', 1539564544, 1539565055, 'GB', 'United Kingdom'), +('91.195.230.0', '91.195.231.255', 1539565056, 1539565567, 'UA', 'Ukraine'), +('91.195.232.0', '91.195.233.255', 1539565568, 1539566079, 'PL', 'Poland'), +('91.195.234.0', '91.195.237.255', 1539566080, 1539567103, 'NL', 'Netherlands'), +('91.195.238.0', '91.195.239.255', 1539567104, 1539567615, 'CH', 'Switzerland'), +('91.195.240.0', '91.195.241.255', 1539567616, 1539568127, 'DE', 'Germany'), +('91.195.242.0', '91.195.243.255', 1539568128, 1539568639, 'NL', 'Netherlands'), +('91.195.244.0', '91.195.245.255', 1539568640, 1539569151, 'UA', 'Ukraine'), +('91.195.246.0', '91.195.247.255', 1539569152, 1539569663, 'EE', 'Estonia'), +('91.195.248.0', '91.195.249.255', 1539569664, 1539570175, 'UA', 'Ukraine'), +('91.195.250.0', '91.195.251.255', 1539570176, 1539570687, 'PL', 'Poland'), +('91.195.252.0', '91.195.255.255', 1539570688, 1539571711, 'RU', 'Russian Federation'), +('91.196.0.0', '91.196.3.255', 1539571712, 1539572735, 'UA', 'Ukraine'), +('91.196.4.0', '91.196.7.255', 1539572736, 1539573759, 'RU', 'Russian Federation'), +('91.196.8.0', '91.196.15.255', 1539573760, 1539575807, 'PL', 'Poland'), +('91.196.16.0', '91.196.19.255', 1539575808, 1539576831, 'LV', 'Latvia'), +('91.196.20.0', '91.196.23.255', 1539576832, 1539577855, 'GB', 'United Kingdom'), +('91.196.24.0', '91.196.27.255', 1539577856, 1539578879, 'RU', 'Russian Federation'), +('91.196.28.0', '91.196.31.255', 1539578880, 1539579903, 'PL', 'Poland'), +('91.196.32.0', '91.196.35.255', 1539579904, 1539580927, 'RU', 'Russian Federation'), +('91.196.36.0', '91.196.39.255', 1539580928, 1539581951, 'AM', 'Armenia'), +('91.196.40.0', '91.196.43.255', 1539581952, 1539582975, 'RU', 'Russian Federation'), +('91.196.44.0', '91.196.47.255', 1539582976, 1539583999, 'RO', 'Romania'), +('91.196.48.0', '91.196.51.255', 1539584000, 1539585023, 'PL', 'Poland'), +('91.196.52.0', '91.196.55.255', 1539585024, 1539586047, 'UA', 'Ukraine'), +('91.196.56.0', '91.196.59.255', 1539586048, 1539587071, 'PL', 'Poland'), +('91.196.60.0', '91.196.63.255', 1539587072, 1539588095, 'UA', 'Ukraine'), +('91.196.64.0', '91.196.67.255', 1539588096, 1539589119, 'BG', 'Bulgaria'), +('91.196.68.0', '91.196.71.255', 1539589120, 1539590143, 'GB', 'United Kingdom'), +('91.196.72.0', '91.196.75.255', 1539590144, 1539591167, 'RU', 'Russian Federation'), +('91.196.76.0', '91.196.79.255', 1539591168, 1539592191, 'UZ', 'Uzbekistan'), +('91.196.80.0', '91.196.83.255', 1539592192, 1539593215, 'UA', 'Ukraine'), +('91.196.84.0', '91.196.87.255', 1539593216, 1539594239, 'IL', 'Israel'), +('91.196.88.0', '91.196.103.255', 1539594240, 1539598335, 'UA', 'Ukraine'), +('91.196.104.0', '91.196.107.255', 1539598336, 1539599359, 'NL', 'Netherlands'), +('91.196.108.0', '91.196.111.255', 1539599360, 1539600383, 'PL', 'Poland'), +('91.196.112.0', '91.196.115.255', 1539600384, 1539601407, 'HU', 'Hungary'), +('91.196.116.0', '91.196.119.255', 1539601408, 1539602431, 'GB', 'United Kingdom'), +('91.196.120.0', '91.196.123.255', 1539602432, 1539603455, 'UA', 'Ukraine'), +('91.196.124.0', '91.196.127.255', 1539603456, 1539604479, 'BG', 'Bulgaria'), +('91.196.128.0', '91.196.131.255', 1539604480, 1539605503, 'ES', 'Spain'), +('91.196.132.0', '91.196.135.255', 1539605504, 1539606527, 'UA', 'Ukraine'), +('91.196.136.0', '91.196.139.255', 1539606528, 1539607551, 'RU', 'Russian Federation'), +('91.196.140.0', '91.196.147.255', 1539607552, 1539609599, 'DE', 'Germany'), +('91.196.148.0', '91.196.151.255', 1539609600, 1539610623, 'UA', 'Ukraine'), +('91.196.152.0', '91.196.155.255', 1539610624, 1539611647, 'RU', 'Russian Federation'), +('91.196.156.0', '91.196.167.255', 1539611648, 1539614719, 'UA', 'Ukraine'), +('91.196.168.0', '91.196.171.255', 1539614720, 1539615743, 'NL', 'Netherlands'), +('91.196.172.0', '91.196.175.255', 1539615744, 1539616767, 'DK', 'Denmark'), +('91.196.176.0', '91.196.179.255', 1539616768, 1539617791, 'UA', 'Ukraine'), +('91.196.180.0', '91.196.183.255', 1539617792, 1539618815, 'FR', 'France'), +('91.196.184.0', '91.196.187.255', 1539618816, 1539619839, 'GB', 'United Kingdom'), +('91.196.188.0', '91.196.191.255', 1539619840, 1539620863, 'RU', 'Russian Federation'), +('91.196.192.0', '91.196.207.255', 1539620864, 1539624959, 'UA', 'Ukraine'), +('91.196.208.0', '91.196.211.255', 1539624960, 1539625983, 'RU', 'Russian Federation'), +('91.196.212.0', '91.196.215.255', 1539625984, 1539627007, 'PL', 'Poland'), +('91.196.216.0', '91.196.219.255', 1539627008, 1539628031, 'RU', 'Russian Federation'), +('91.196.220.0', '91.196.223.255', 1539628032, 1539629055, 'UA', 'Ukraine'), +('91.196.224.0', '91.196.227.255', 1539629056, 1539630079, 'BG', 'Bulgaria'), +('91.196.228.0', '91.196.231.255', 1539630080, 1539631103, 'UA', 'Ukraine'), +('91.196.232.0', '91.196.235.255', 1539631104, 1539632127, 'CN', 'China'), +('91.196.236.0', '91.196.239.255', 1539632128, 1539633151, 'RU', 'Russian Federation'), +('91.196.240.0', '91.196.243.255', 1539633152, 1539634175, 'SE', 'Sweden'), +('91.196.244.0', '91.197.3.255', 1539634176, 1539638271, 'RU', 'Russian Federation'), +('91.197.4.0', '91.197.7.255', 1539638272, 1539639295, 'UA', 'Ukraine'), +('91.197.8.0', '91.197.11.255', 1539639296, 1539640319, 'RU', 'Russian Federation'), +('91.197.12.0', '91.197.15.255', 1539640320, 1539641343, 'PL', 'Poland'), +('91.197.16.0', '91.197.19.255', 1539641344, 1539642367, 'UA', 'Ukraine'), +('91.197.20.0', '91.197.23.255', 1539642368, 1539643391, 'RU', 'Russian Federation'), +('91.197.24.0', '91.197.27.255', 1539643392, 1539644415, 'UA', 'Ukraine'), +('91.197.28.0', '91.197.31.255', 1539644416, 1539645439, 'DE', 'Germany'), +('91.197.32.0', '91.197.35.255', 1539645440, 1539646463, 'GB', 'United Kingdom'), +('91.197.36.0', '91.197.39.255', 1539646464, 1539647487, 'IE', 'Ireland'), +('91.197.40.0', '91.197.43.255', 1539647488, 1539648511, 'RU', 'Russian Federation'), +('91.197.44.0', '91.197.51.255', 1539648512, 1539650559, 'UA', 'Ukraine'), +('91.197.52.0', '91.197.55.255', 1539650560, 1539651583, 'RU', 'Russian Federation'), +('91.197.56.0', '91.197.59.255', 1539651584, 1539652607, 'UA', 'Ukraine'), +('91.197.60.0', '91.197.63.255', 1539652608, 1539653631, 'IL', 'Israel'), +('91.197.64.0', '91.197.71.255', 1539653632, 1539655679, 'RU', 'Russian Federation'), +('91.197.72.0', '91.197.75.255', 1539655680, 1539656703, 'NL', 'Netherlands'), +('91.197.76.0', '91.197.79.255', 1539656704, 1539657727, 'RU', 'Russian Federation'), +('91.197.80.0', '91.197.83.255', 1539657728, 1539658751, 'UA', 'Ukraine'), +('91.197.84.0', '91.197.87.255', 1539658752, 1539659775, 'FI', 'Finland'), +('91.197.88.0', '91.197.91.255', 1539659776, 1539660799, 'PL', 'Poland'), +('91.197.92.0', '91.197.95.255', 1539660800, 1539661823, 'GB', 'United Kingdom'), +('91.197.96.0', '91.197.99.255', 1539661824, 1539662847, 'RU', 'Russian Federation'), +('91.197.100.0', '91.197.103.255', 1539662848, 1539663871, 'IL', 'Israel'), +('91.197.104.0', '91.197.107.255', 1539663872, 1539664895, 'RU', 'Russian Federation'), +('91.197.108.0', '91.197.111.255', 1539664896, 1539665919, 'BE', 'Belgium'), +('91.197.112.0', '91.197.115.255', 1539665920, 1539666943, 'RU', 'Russian Federation'), +('91.197.116.0', '91.197.119.255', 1539666944, 1539667967, 'CZ', 'Czech Republic'), +('91.197.120.0', '91.197.123.255', 1539667968, 1539668991, 'UA', 'Ukraine'), +('91.197.124.0', '91.197.127.255', 1539668992, 1539670015, 'RU', 'Russian Federation'), +('91.197.128.0', '91.197.135.255', 1539670016, 1539672063, 'UA', 'Ukraine'), +('91.197.136.0', '91.197.139.255', 1539672064, 1539673087, 'FR', 'France'), +('91.197.140.0', '91.197.143.255', 1539673088, 1539674111, 'GB', 'United Kingdom'), +('91.197.144.0', '91.197.147.255', 1539674112, 1539675135, 'UA', 'Ukraine'), +('91.197.148.0', '91.197.155.255', 1539675136, 1539677183, 'PL', 'Poland'), +('91.197.156.0', '91.197.159.255', 1539677184, 1539678207, 'UA', 'Ukraine'), +('91.197.160.0', '91.197.163.255', 1539678208, 1539679231, 'RU', 'Russian Federation'), +('91.197.164.0', '91.197.167.255', 1539679232, 1539680255, 'FR', 'France'), +('91.197.168.0', '91.197.171.255', 1539680256, 1539681279, 'UA', 'Ukraine'), +('91.197.172.0', '91.197.183.255', 1539681280, 1539684351, 'RU', 'Russian Federation'), +('91.197.184.0', '91.197.187.255', 1539684352, 1539685375, 'UA', 'Ukraine'), +('91.197.188.0', '91.197.199.255', 1539685376, 1539688447, 'RU', 'Russian Federation'), +('91.197.200.0', '91.197.203.255', 1539688448, 1539689471, 'SA', 'Saudi Arabia'), +('91.197.204.0', '91.197.207.255', 1539689472, 1539690495, 'RU', 'Russian Federation'), +('91.197.208.0', '91.197.211.255', 1539690496, 1539691519, 'FI', 'Finland'), +('91.197.212.0', '91.197.215.255', 1539691520, 1539692543, 'RU', 'Russian Federation'), +('91.197.216.0', '91.197.223.255', 1539692544, 1539694591, 'UA', 'Ukraine'), +('91.197.224.0', '91.197.227.255', 1539694592, 1539695615, 'PL', 'Poland'), +('91.197.228.0', '91.197.231.255', 1539695616, 1539696639, 'GB', 'United Kingdom'), +('91.197.232.0', '91.197.235.255', 1539696640, 1539697663, 'RU', 'Russian Federation'), +('91.197.236.0', '91.197.239.255', 1539697664, 1539698687, 'UA', 'Ukraine'), +('91.197.240.0', '91.197.243.255', 1539698688, 1539699711, 'GE', 'Georgia'), +('91.197.244.0', '91.197.247.255', 1539699712, 1539700735, 'RO', 'Romania'), +('91.197.248.0', '91.197.251.255', 1539700736, 1539701759, 'DK', 'Denmark'), +('91.197.252.0', '91.197.255.255', 1539701760, 1539702783, 'UA', 'Ukraine'), +('91.198.0.0', '91.198.0.255', 1539702784, 1539703039, 'SI', 'Slovenia'), +('91.198.1.0', '91.198.1.255', 1539703040, 1539703295, 'UA', 'Ukraine'), +('91.198.2.0', '91.198.2.255', 1539703296, 1539703551, 'DE', 'Germany'), +('91.198.3.0', '91.198.4.255', 1539703552, 1539704063, 'GB', 'United Kingdom'), +('91.198.5.0', '91.198.5.255', 1539704064, 1539704319, 'IL', 'Israel'), +('91.198.6.0', '91.198.6.255', 1539704320, 1539704575, 'CH', 'Switzerland'), +('91.198.7.0', '91.198.7.255', 1539704576, 1539704831, 'HU', 'Hungary'), +('91.198.8.0', '91.198.8.255', 1539704832, 1539705087, 'CH', 'Switzerland'), +('91.198.9.0', '91.198.9.255', 1539705088, 1539705343, 'GB', 'United Kingdom'), +('91.198.10.0', '91.198.10.255', 1539705344, 1539705599, 'UA', 'Ukraine'), +('91.198.11.0', '91.198.12.255', 1539705600, 1539706111, 'CH', 'Switzerland'), +('91.198.13.0', '91.198.13.255', 1539706112, 1539706367, 'GB', 'United Kingdom'), +('91.198.14.0', '91.198.14.255', 1539706368, 1539706623, 'RU', 'Russian Federation'), +('91.198.15.0', '91.198.16.255', 1539706624, 1539707135, 'PL', 'Poland'), +('91.198.17.0', '91.198.17.255', 1539707136, 1539707391, 'LT', 'Lithuania'), +('91.198.18.0', '91.198.18.255', 1539707392, 1539707647, 'GB', 'United Kingdom'), +('91.198.19.0', '91.198.19.255', 1539707648, 1539707903, 'RO', 'Romania'), +('91.198.20.0', '91.198.20.255', 1539707904, 1539708159, 'UA', 'Ukraine'), +('91.198.21.0', '91.198.21.255', 1539708160, 1539708415, 'DE', 'Germany'), +('91.198.22.0', '91.198.22.255', 1539708416, 1539708671, 'GB', 'United Kingdom'), +('91.198.23.0', '91.198.23.255', 1539708672, 1539708927, 'RO', 'Romania'), +('91.198.24.0', '91.198.24.255', 1539708928, 1539709183, 'IE', 'Ireland'), +('91.198.25.0', '91.198.25.255', 1539709184, 1539709439, 'AT', 'Austria'), +('91.198.26.0', '91.198.26.255', 1539709440, 1539709695, 'BE', 'Belgium'), +('91.198.27.0', '91.198.27.255', 1539709696, 1539709951, 'NL', 'Netherlands'), +('91.198.28.0', '91.198.28.255', 1539709952, 1539710207, 'DE', 'Germany'), +('91.198.29.0', '91.198.29.255', 1539710208, 1539710463, 'GB', 'United Kingdom'), +('91.198.30.0', '91.198.30.255', 1539710464, 1539710719, 'FR', 'France'), +('91.198.31.0', '91.198.31.255', 1539710720, 1539710975, 'UA', 'Ukraine'), +('91.198.32.0', '91.198.32.255', 1539710976, 1539711231, 'DE', 'Germany'), +('91.198.33.0', '91.198.33.255', 1539711232, 1539711487, 'RU', 'Russian Federation'), +('91.198.34.0', '91.198.34.255', 1539711488, 1539711743, 'UA', 'Ukraine'), +('91.198.35.0', '91.198.35.255', 1539711744, 1539711999, 'DE', 'Germany'), +('91.198.36.0', '91.198.36.255', 1539712000, 1539712255, 'UA', 'Ukraine'), +('91.198.37.0', '91.198.37.255', 1539712256, 1539712511, 'NL', 'Netherlands'), +('91.198.38.0', '91.198.38.255', 1539712512, 1539712767, 'RU', 'Russian Federation'), +('91.198.39.0', '91.198.39.255', 1539712768, 1539713023, 'RO', 'Romania'), +('91.198.40.0', '91.198.40.255', 1539713024, 1539713279, 'UA', 'Ukraine'), +('91.198.41.0', '91.198.41.255', 1539713280, 1539713535, 'FR', 'France'), +('91.198.42.0', '91.198.42.255', 1539713536, 1539713791, 'DK', 'Denmark'), +('91.198.43.0', '91.198.43.255', 1539713792, 1539714047, 'DE', 'Germany'), +('91.198.44.0', '91.198.44.255', 1539714048, 1539714303, 'FR', 'France'), +('91.198.45.0', '91.198.45.255', 1539714304, 1539714559, 'AT', 'Austria'), +('91.198.46.0', '91.198.46.255', 1539714560, 1539714815, 'RU', 'Russian Federation'), +('91.198.47.0', '91.198.47.255', 1539714816, 1539715071, 'PT', 'Portugal'), +('91.198.48.0', '91.198.48.255', 1539715072, 1539715327, 'SE', 'Sweden'), +('91.198.49.0', '91.198.49.255', 1539715328, 1539715583, 'TR', 'Turkey'), +('91.198.50.0', '91.198.50.255', 1539715584, 1539715839, 'UA', 'Ukraine'), +('91.198.51.0', '91.198.51.255', 1539715840, 1539716095, 'RU', 'Russian Federation'), +('91.198.52.0', '91.198.52.255', 1539716096, 1539716351, 'SI', 'Slovenia'), +('91.198.53.0', '91.198.53.255', 1539716352, 1539716607, 'PL', 'Poland'), +('91.198.54.0', '91.198.54.255', 1539716608, 1539716863, 'RU', 'Russian Federation'), +('91.198.55.0', '91.198.56.255', 1539716864, 1539717375, 'PL', 'Poland'), +('91.198.57.0', '91.198.57.255', 1539717376, 1539717631, 'DE', 'Germany'), +('91.198.58.0', '91.198.58.255', 1539717632, 1539717887, 'CH', 'Switzerland'), +('91.198.59.0', '91.198.59.255', 1539717888, 1539718143, 'MK', 'Macedonia'), +('91.198.60.0', '91.198.60.255', 1539718144, 1539718399, 'DE', 'Germany'), +('91.198.61.0', '91.198.61.255', 1539718400, 1539718655, 'TR', 'Turkey'), +('91.198.62.0', '91.198.62.255', 1539718656, 1539718911, 'SA', 'Saudi Arabia'), +('91.198.63.0', '91.198.63.255', 1539718912, 1539719167, 'KZ', 'Kazakstan'), +('91.198.64.0', '91.198.64.255', 1539719168, 1539719423, 'IE', 'Ireland'), +('91.198.65.0', '91.198.65.255', 1539719424, 1539719679, 'PL', 'Poland'), +('91.198.66.0', '91.198.66.255', 1539719680, 1539719935, 'IE', 'Ireland'), +('91.198.67.0', '91.198.67.255', 1539719936, 1539720191, 'DE', 'Germany'), +('91.198.68.0', '91.198.69.255', 1539720192, 1539720703, 'RU', 'Russian Federation'), +('91.198.70.0', '91.198.70.255', 1539720704, 1539720959, 'IL', 'Israel'), +('91.198.71.0', '91.198.71.255', 1539720960, 1539721215, 'RU', 'Russian Federation'), +('91.198.72.0', '91.198.73.255', 1539721216, 1539721727, 'CH', 'Switzerland'), +('91.198.74.0', '91.198.74.255', 1539721728, 1539721983, 'PL', 'Poland'), +('91.198.75.0', '91.198.75.255', 1539721984, 1539722239, 'RU', 'Russian Federation'), +('91.198.76.0', '91.198.76.255', 1539722240, 1539722495, 'PL', 'Poland'), +('91.198.77.0', '91.198.77.255', 1539722496, 1539722751, 'GB', 'United Kingdom'), +('91.198.78.0', '91.198.78.255', 1539722752, 1539723007, 'DE', 'Germany'), +('91.198.79.0', '91.198.79.255', 1539723008, 1539723263, 'CH', 'Switzerland'), +('91.198.80.0', '91.198.80.255', 1539723264, 1539723519, 'PL', 'Poland'), +('91.198.81.0', '91.198.81.255', 1539723520, 1539723775, 'GB', 'United Kingdom'), +('91.198.82.0', '91.198.82.255', 1539723776, 1539724031, 'DE', 'Germany'), +('91.198.83.0', '91.198.83.255', 1539724032, 1539724287, 'UA', 'Ukraine'), +('91.198.84.0', '91.198.84.255', 1539724288, 1539724543, 'IT', 'Italy'), +('91.198.85.0', '91.198.85.255', 1539724544, 1539724799, 'RU', 'Russian Federation'), +('91.198.86.0', '91.198.86.255', 1539724800, 1539725055, 'UA', 'Ukraine'), +('91.198.87.0', '91.198.87.255', 1539725056, 1539725311, 'NL', 'Netherlands'), +('91.198.88.0', '91.198.88.255', 1539725312, 1539725567, 'FR', 'France'), +('91.198.89.0', '91.198.89.255', 1539725568, 1539725823, 'PL', 'Poland'), +('91.198.90.0', '91.198.90.255', 1539725824, 1539726079, 'PT', 'Portugal'), +('91.198.91.0', '91.198.91.255', 1539726080, 1539726335, 'RU', 'Russian Federation'), +('91.198.92.0', '91.198.92.255', 1539726336, 1539726591, 'SE', 'Sweden'), +('91.198.93.0', '91.198.93.255', 1539726592, 1539726847, 'AT', 'Austria'), +('91.198.94.0', '91.198.94.255', 1539726848, 1539727103, 'PL', 'Poland'), +('91.198.95.0', '91.198.95.255', 1539727104, 1539727359, 'SE', 'Sweden'), +('91.198.96.0', '91.198.96.255', 1539727360, 1539727615, 'SI', 'Slovenia'), +('91.198.97.0', '91.198.97.255', 1539727616, 1539727871, 'PL', 'Poland'), +('91.198.98.0', '91.198.98.255', 1539727872, 1539728127, 'RU', 'Russian Federation'), +('91.198.99.0', '91.198.99.255', 1539728128, 1539728383, 'BE', 'Belgium'), +('91.198.100.0', '91.198.100.255', 1539728384, 1539728639, 'PL', 'Poland'), +('91.198.101.0', '91.198.101.255', 1539728640, 1539728895, 'UA', 'Ukraine'), +('91.198.102.0', '91.198.102.255', 1539728896, 1539729151, 'SA', 'Saudi Arabia'), +('91.198.103.0', '91.198.103.255', 1539729152, 1539729407, 'NL', 'Netherlands'), +('91.198.104.0', '91.198.104.255', 1539729408, 1539729663, 'RU', 'Russian Federation'), +('91.198.105.0', '91.198.105.255', 1539729664, 1539729919, 'FR', 'France'), +('91.198.106.0', '91.198.106.255', 1539729920, 1539730175, 'NL', 'Netherlands'), +('91.198.107.0', '91.198.107.255', 1539730176, 1539730431, 'GB', 'United Kingdom'), +('91.198.108.0', '91.198.108.255', 1539730432, 1539730687, 'GR', 'Greece'), +('91.198.109.0', '91.198.109.255', 1539730688, 1539730943, 'UA', 'Ukraine'), +('91.198.110.0', '91.198.111.255', 1539730944, 1539731455, 'PL', 'Poland'), +('91.198.112.0', '91.198.112.255', 1539731456, 1539731711, 'SI', 'Slovenia'), +('91.198.113.0', '91.198.114.255', 1539731712, 1539732223, 'DE', 'Germany'), +('91.198.115.0', '91.198.115.255', 1539732224, 1539732479, 'FR', 'France'), +('91.198.116.0', '91.198.116.255', 1539732480, 1539732735, 'UA', 'Ukraine'), +('91.198.117.0', '91.198.117.255', 1539732736, 1539732991, 'DK', 'Denmark'), +('91.198.118.0', '91.198.118.255', 1539732992, 1539733247, 'PL', 'Poland'), +('91.198.119.0', '91.198.119.255', 1539733248, 1539733503, 'BG', 'Bulgaria'), +('91.198.120.0', '91.198.120.255', 1539733504, 1539733759, 'FI', 'Finland'), +('91.198.121.0', '91.198.121.255', 1539733760, 1539734015, 'PL', 'Poland'), +('91.198.122.0', '91.198.122.255', 1539734016, 1539734271, 'FR', 'France'), +('91.198.123.0', '91.198.123.255', 1539734272, 1539734527, 'NO', 'Norway'), +('91.198.124.0', '91.198.124.255', 1539734528, 1539734783, 'TR', 'Turkey'), +('91.198.125.0', '91.198.125.255', 1539734784, 1539735039, 'DE', 'Germany'), +('91.198.126.0', '91.198.126.255', 1539735040, 1539735295, 'BE', 'Belgium'), +('91.198.127.0', '91.198.127.255', 1539735296, 1539735551, 'DE', 'Germany'), +('91.198.128.0', '91.198.128.255', 1539735552, 1539735807, 'AT', 'Austria'), +('91.198.129.0', '91.198.129.255', 1539735808, 1539736063, 'IL', 'Israel'), +('91.198.130.0', '91.198.130.255', 1539736064, 1539736319, 'RU', 'Russian Federation'), +('91.198.131.0', '91.198.131.255', 1539736320, 1539736575, 'HU', 'Hungary'), +('91.198.132.0', '91.198.132.255', 1539736576, 1539736831, 'BG', 'Bulgaria'), +('91.198.133.0', '91.198.133.255', 1539736832, 1539737087, 'UA', 'Ukraine'), +('91.198.134.0', '91.198.134.255', 1539737088, 1539737343, 'KW', 'Kuwait'), +('91.198.135.0', '91.198.135.255', 1539737344, 1539737599, 'RU', 'Russian Federation'), +('91.198.136.0', '91.198.136.255', 1539737600, 1539737855, 'RO', 'Romania'), +('91.198.137.0', '91.198.137.255', 1539737856, 1539738111, 'RU', 'Russian Federation'), +('91.198.138.0', '91.198.138.255', 1539738112, 1539738367, 'DK', 'Denmark'), +('91.198.139.0', '91.198.139.255', 1539738368, 1539738623, 'DE', 'Germany'), +('91.198.140.0', '91.198.140.255', 1539738624, 1539738879, 'UA', 'Ukraine'), +('91.198.141.0', '91.198.141.255', 1539738880, 1539739135, 'NL', 'Netherlands'), +('91.198.142.0', '91.198.142.255', 1539739136, 1539739391, 'AT', 'Austria'), +('91.198.143.0', '91.198.143.255', 1539739392, 1539739647, 'UA', 'Ukraine'), +('91.198.144.0', '91.198.144.255', 1539739648, 1539739903, 'DK', 'Denmark'), +('91.198.145.0', '91.198.146.255', 1539739904, 1539740415, 'PL', 'Poland'), +('91.198.147.0', '91.198.147.255', 1539740416, 1539740671, 'RO', 'Romania'), +('91.198.148.0', '91.198.148.255', 1539740672, 1539740927, 'AT', 'Austria'), +('91.198.149.0', '91.198.149.255', 1539740928, 1539741183, 'RU', 'Russian Federation'), +('91.198.150.0', '91.198.150.255', 1539741184, 1539741439, 'PL', 'Poland'), +('91.198.151.0', '91.198.151.255', 1539741440, 1539741695, 'NL', 'Netherlands'), +('91.198.152.0', '91.198.152.255', 1539741696, 1539741951, 'DE', 'Germany'), +('91.198.153.0', '91.198.153.255', 1539741952, 1539742207, 'UA', 'Ukraine'), +('91.198.154.0', '91.198.154.255', 1539742208, 1539742463, 'CH', 'Switzerland'), +('91.198.155.0', '91.198.155.255', 1539742464, 1539742719, 'RU', 'Russian Federation'), +('91.198.156.0', '91.198.156.255', 1539742720, 1539742975, 'LV', 'Latvia'), +('91.198.157.0', '91.198.157.255', 1539742976, 1539743231, 'DE', 'Germany'), +('91.198.158.0', '91.198.158.255', 1539743232, 1539743487, 'GR', 'Greece'), +('91.198.159.0', '91.198.159.255', 1539743488, 1539743743, 'FR', 'France'), +('91.198.160.0', '91.198.160.255', 1539743744, 1539743999, 'RO', 'Romania'), +('91.198.161.0', '91.198.161.255', 1539744000, 1539744255, 'HR', 'Croatia'), +('91.198.162.0', '91.198.162.255', 1539744256, 1539744511, 'RO', 'Romania'), +('91.198.163.0', '91.198.163.255', 1539744512, 1539744767, 'DE', 'Germany'), +('91.198.164.0', '91.198.164.255', 1539744768, 1539745023, 'SE', 'Sweden'), +('91.198.165.0', '91.198.166.255', 1539745024, 1539745535, 'GB', 'United Kingdom'), +('91.198.167.0', '91.198.167.255', 1539745536, 1539745791, 'CH', 'Switzerland'), +('91.198.168.0', '91.198.169.255', 1539745792, 1539746303, 'DK', 'Denmark'), +('91.198.170.0', '91.198.171.255', 1539746304, 1539746815, 'RU', 'Russian Federation'), +('91.198.172.0', '91.198.172.255', 1539746816, 1539747071, 'DK', 'Denmark'), +('91.198.173.0', '91.198.173.255', 1539747072, 1539747327, 'CH', 'Switzerland'), +('91.198.174.0', '91.198.174.255', 1539747328, 1539747583, 'NL', 'Netherlands'), +('91.198.175.0', '91.198.175.255', 1539747584, 1539747839, 'UA', 'Ukraine'), +('91.198.176.0', '91.198.176.255', 1539747840, 1539748095, 'NO', 'Norway'), +('91.198.177.0', '91.198.177.255', 1539748096, 1539748351, 'PL', 'Poland'), +('91.198.178.0', '91.198.178.255', 1539748352, 1539748607, 'NL', 'Netherlands'), +('91.198.179.0', '91.198.179.255', 1539748608, 1539748863, 'PL', 'Poland'), +('91.198.180.0', '91.198.180.255', 1539748864, 1539749119, 'GB', 'United Kingdom'), +('91.198.181.0', '91.198.181.255', 1539749120, 1539749375, 'BG', 'Bulgaria'), +('91.198.182.0', '91.198.182.255', 1539749376, 1539749631, 'PT', 'Portugal'), +('91.198.183.0', '91.198.183.255', 1539749632, 1539749887, 'GR', 'Greece'), +('91.198.184.0', '91.198.184.255', 1539749888, 1539750143, 'RU', 'Russian Federation'), +('91.198.185.0', '91.198.185.255', 1539750144, 1539750399, 'TR', 'Turkey'), +('91.198.186.0', '91.198.186.255', 1539750400, 1539750655, 'PL', 'Poland'), +('91.198.187.0', '91.198.187.255', 1539750656, 1539750911, 'DE', 'Germany'), +('91.198.188.0', '91.198.188.255', 1539750912, 1539751167, 'UA', 'Ukraine'), +('91.198.189.0', '91.198.189.255', 1539751168, 1539751423, 'TR', 'Turkey'), +('91.198.190.0', '91.198.190.255', 1539751424, 1539751679, 'SI', 'Slovenia'), +('91.198.191.0', '91.198.191.255', 1539751680, 1539751935, 'FR', 'France'), +('91.198.192.0', '91.198.192.255', 1539751936, 1539752191, 'DE', 'Germany'), +('91.198.193.0', '91.198.193.255', 1539752192, 1539752447, 'SE', 'Sweden'), +('91.198.194.0', '91.198.194.255', 1539752448, 1539752703, 'PL', 'Poland'), +('91.198.195.0', '91.198.195.255', 1539752704, 1539752959, 'AT', 'Austria'), +('91.198.196.0', '91.198.196.255', 1539752960, 1539753215, 'RO', 'Romania'), +('91.198.197.0', '91.198.197.255', 1539753216, 1539753471, 'DE', 'Germany'), +('91.198.198.0', '91.198.198.255', 1539753472, 1539753727, 'HU', 'Hungary'), +('91.198.199.0', '91.198.200.255', 1539753728, 1539754239, 'FR', 'France'), +('91.198.201.0', '91.198.201.255', 1539754240, 1539754495, 'NO', 'Norway'), +('91.198.202.0', '91.198.202.255', 1539754496, 1539754751, 'SE', 'Sweden'), +('91.198.203.0', '91.198.203.255', 1539754752, 1539755007, 'BE', 'Belgium'), +('91.198.204.0', '91.198.204.255', 1539755008, 1539755263, 'DK', 'Denmark'), +('91.198.205.0', '91.198.205.255', 1539755264, 1539755519, 'IL', 'Israel'), +('91.198.206.0', '91.198.206.255', 1539755520, 1539755775, 'EE', 'Estonia'), +('91.198.207.0', '91.198.207.255', 1539755776, 1539756031, 'MT', 'Malta'), +('91.198.208.0', '91.198.209.255', 1539756032, 1539756543, 'PL', 'Poland'), +('91.198.210.0', '91.198.210.255', 1539756544, 1539756799, 'DE', 'Germany'), +('91.198.211.0', '91.198.211.255', 1539756800, 1539757055, 'BE', 'Belgium'), +('91.198.212.0', '91.198.212.255', 1539757056, 1539757311, 'RU', 'Russian Federation'), +('91.198.213.0', '91.198.213.255', 1539757312, 1539757567, 'GB', 'United Kingdom'), +('91.198.214.0', '91.198.214.255', 1539757568, 1539757823, 'SI', 'Slovenia'), +('91.198.215.0', '91.198.215.255', 1539757824, 1539758079, 'UA', 'Ukraine'), +('91.198.216.0', '91.198.216.255', 1539758080, 1539758335, 'HR', 'Croatia'), +('91.198.217.0', '91.198.217.255', 1539758336, 1539758591, 'DE', 'Germany'), +('91.198.218.0', '91.198.218.255', 1539758592, 1539758847, 'NL', 'Netherlands'), +('91.198.219.0', '91.198.219.255', 1539758848, 1539759103, 'BA', 'Bosnia and Herzegovina'), +('91.198.220.0', '91.198.220.255', 1539759104, 1539759359, 'DK', 'Denmark'), +('91.198.221.0', '91.198.221.255', 1539759360, 1539759615, 'RU', 'Russian Federation'), +('91.198.222.0', '91.198.222.255', 1539759616, 1539759871, 'PL', 'Poland'), +('91.198.223.0', '91.198.223.255', 1539759872, 1539760127, 'SE', 'Sweden'), +('91.198.224.0', '91.198.224.255', 1539760128, 1539760383, 'DE', 'Germany'), +('91.198.225.0', '91.198.225.255', 1539760384, 1539760639, 'RU', 'Russian Federation'), +('91.198.226.0', '91.198.226.255', 1539760640, 1539760895, 'PL', 'Poland'), +('91.198.227.0', '91.198.227.255', 1539760896, 1539761151, 'DK', 'Denmark'), +('91.198.228.0', '91.198.228.255', 1539761152, 1539761407, 'DE', 'Germany'), +('91.198.229.0', '91.198.229.255', 1539761408, 1539761663, 'CH', 'Switzerland'), +('91.198.230.0', '91.198.230.255', 1539761664, 1539761919, 'PL', 'Poland'), +('91.198.231.0', '91.198.231.255', 1539761920, 1539762175, 'RU', 'Russian Federation'), +('91.198.232.0', '91.198.232.255', 1539762176, 1539762431, 'PL', 'Poland'), +('91.198.233.0', '91.198.233.255', 1539762432, 1539762687, 'UA', 'Ukraine'), +('91.198.234.0', '91.198.234.255', 1539762688, 1539762943, 'PL', 'Poland'), +('91.198.235.0', '91.198.235.255', 1539762944, 1539763199, 'UA', 'Ukraine'), +('91.198.236.0', '91.198.236.255', 1539763200, 1539763455, 'MD', 'Moldova, Republic of'), +('91.198.237.0', '91.198.237.255', 1539763456, 1539763711, 'DK', 'Denmark'), +('91.198.238.0', '91.198.238.255', 1539763712, 1539763967, 'DE', 'Germany'), +('91.198.239.0', '91.198.239.255', 1539763968, 1539764223, 'PT', 'Portugal'), +('91.198.240.0', '91.198.240.255', 1539764224, 1539764479, 'AT', 'Austria'), +('91.198.241.0', '91.198.241.255', 1539764480, 1539764735, 'GB', 'United Kingdom'), +('91.198.242.0', '91.198.242.255', 1539764736, 1539764991, 'RO', 'Romania'), +('91.198.243.0', '91.198.243.255', 1539764992, 1539765247, 'BE', 'Belgium'), +('91.198.244.0', '91.198.244.255', 1539765248, 1539765503, 'IE', 'Ireland'), +('91.198.245.0', '91.198.246.255', 1539765504, 1539766015, 'PL', 'Poland'), +('91.198.247.0', '91.198.247.255', 1539766016, 1539766271, 'AM', 'Armenia'), +('91.198.248.0', '91.198.248.255', 1539766272, 1539766527, 'PL', 'Poland'), +('91.198.249.0', '91.198.249.255', 1539766528, 1539766783, 'UA', 'Ukraine'), +('91.198.250.0', '91.198.250.255', 1539766784, 1539767039, 'DE', 'Germany'), +('91.198.251.0', '91.198.251.255', 1539767040, 1539767295, 'SA', 'Saudi Arabia'), +('91.198.252.0', '91.198.252.255', 1539767296, 1539767551, 'DK', 'Denmark'), +('91.198.253.0', '91.198.253.255', 1539767552, 1539767807, 'DE', 'Germany'), +('91.198.254.0', '91.198.254.255', 1539767808, 1539768063, 'IL', 'Israel'), +('91.198.255.0', '91.198.255.255', 1539768064, 1539768319, 'GB', 'United Kingdom'), +('91.199.0.0', '91.199.0.255', 1539768320, 1539768575, 'FR', 'France'), +('91.199.1.0', '91.199.1.255', 1539768576, 1539768831, 'GB', 'United Kingdom'), +('91.199.2.0', '91.199.2.255', 1539768832, 1539769087, 'IT', 'Italy'), +('91.199.3.0', '91.199.4.255', 1539769088, 1539769599, 'BE', 'Belgium'), +('91.199.5.0', '91.199.5.255', 1539769600, 1539769855, 'AT', 'Austria'), +('91.199.6.0', '91.199.6.255', 1539769856, 1539770111, 'FR', 'France'), +('91.199.7.0', '91.199.7.255', 1539770112, 1539770367, 'GR', 'Greece'), +('91.199.8.0', '91.199.8.255', 1539770368, 1539770623, 'DE', 'Germany'), +('91.199.9.0', '91.199.9.255', 1539770624, 1539770879, 'FR', 'France'), +('91.199.10.0', '91.199.10.255', 1539770880, 1539771135, 'RU', 'Russian Federation'), +('91.199.11.0', '91.199.11.255', 1539771136, 1539771391, 'FR', 'France'), +('91.199.12.0', '91.199.12.255', 1539771392, 1539771647, 'PL', 'Poland'), +('91.199.13.0', '91.199.13.255', 1539771648, 1539771903, 'UA', 'Ukraine'), +('91.199.14.0', '91.199.14.255', 1539771904, 1539772159, 'RU', 'Russian Federation'), +('91.199.15.0', '91.199.15.255', 1539772160, 1539772415, 'BE', 'Belgium'), +('91.199.16.0', '91.199.16.255', 1539772416, 1539772671, 'RU', 'Russian Federation'), +('91.199.17.0', '91.199.17.255', 1539772672, 1539772927, 'RS', 'Serbia'), +('91.199.18.0', '91.199.18.255', 1539772928, 1539773183, 'RU', 'Russian Federation'), +('91.199.19.0', '91.199.19.255', 1539773184, 1539773439, 'GB', 'United Kingdom'), +('91.199.20.0', '91.199.20.255', 1539773440, 1539773695, 'KZ', 'Kazakstan'), +('91.199.21.0', '91.199.21.255', 1539773696, 1539773951, 'DE', 'Germany'), +('91.199.22.0', '91.199.22.255', 1539773952, 1539774207, 'PL', 'Poland'), +('91.199.23.0', '91.199.23.255', 1539774208, 1539774463, 'SI', 'Slovenia'), +('91.199.24.0', '91.199.24.255', 1539774464, 1539774719, 'RU', 'Russian Federation'), +('91.199.25.0', '91.199.25.255', 1539774720, 1539774975, 'PL', 'Poland'), +('91.199.26.0', '91.199.26.255', 1539774976, 1539775231, 'RU', 'Russian Federation'), +('91.199.27.0', '91.199.27.255', 1539775232, 1539775487, 'CH', 'Switzerland'), +('91.199.28.0', '91.199.28.255', 1539775488, 1539775743, 'UA', 'Ukraine'), +('91.199.29.0', '91.199.29.255', 1539775744, 1539775999, 'IL', 'Israel'), +('91.199.30.0', '91.199.30.255', 1539776000, 1539776255, 'PL', 'Poland'), +('91.199.31.0', '91.199.31.255', 1539776256, 1539776511, 'SK', 'Slovakia'), +('91.199.32.0', '91.199.32.255', 1539776512, 1539776767, 'HU', 'Hungary'), +('91.199.33.0', '91.199.33.255', 1539776768, 1539777023, 'UA', 'Ukraine'), +('91.199.34.0', '91.199.34.255', 1539777024, 1539777279, 'RU', 'Russian Federation'), +('91.199.35.0', '91.199.35.255', 1539777280, 1539777535, 'UA', 'Ukraine'), +('91.199.36.0', '91.199.36.255', 1539777536, 1539777791, 'BG', 'Bulgaria'), +('91.199.37.0', '91.199.37.255', 1539777792, 1539778047, 'UA', 'Ukraine'), +('91.199.38.0', '91.199.38.255', 1539778048, 1539778303, 'AM', 'Armenia'), +('91.199.39.0', '91.199.39.255', 1539778304, 1539778559, 'LB', 'Lebanon'), +('91.199.40.0', '91.199.40.255', 1539778560, 1539778815, 'RU', 'Russian Federation'), +('91.199.41.0', '91.199.41.255', 1539778816, 1539779071, 'RO', 'Romania'), +('91.199.42.0', '91.199.42.255', 1539779072, 1539779327, 'GB', 'United Kingdom'), +('91.199.43.0', '91.199.43.255', 1539779328, 1539779583, 'CH', 'Switzerland'), +('91.199.44.0', '91.199.44.255', 1539779584, 1539779839, 'PL', 'Poland'), +('91.199.45.0', '91.199.45.255', 1539779840, 1539780095, 'NL', 'Netherlands'), +('91.199.46.0', '91.199.46.255', 1539780096, 1539780351, 'RU', 'Russian Federation'), +('91.199.47.0', '91.199.47.255', 1539780352, 1539780607, 'AT', 'Austria'), +('91.199.48.0', '91.199.48.255', 1539780608, 1539780863, 'PL', 'Poland'), +('91.199.49.0', '91.199.49.255', 1539780864, 1539781119, 'RO', 'Romania'), +('91.199.50.0', '91.199.50.255', 1539781120, 1539781375, 'NL', 'Netherlands'), +('91.199.51.0', '91.199.51.255', 1539781376, 1539781631, 'GB', 'United Kingdom'), +('91.199.52.0', '91.199.52.255', 1539781632, 1539781887, 'HU', 'Hungary'), +('91.199.53.0', '91.199.53.255', 1539781888, 1539782143, 'IL', 'Israel'), +('91.199.54.0', '91.199.54.255', 1539782144, 1539782399, 'UA', 'Ukraine'), +('91.199.55.0', '91.199.55.255', 1539782400, 1539782655, 'LT', 'Lithuania'), +('91.199.56.0', '91.199.56.255', 1539782656, 1539782911, 'GI', 'Gibraltar'), +('91.199.57.0', '91.199.57.255', 1539782912, 1539783167, 'PL', 'Poland'), +('91.199.58.0', '91.199.59.255', 1539783168, 1539783679, 'NL', 'Netherlands'), +('91.199.60.0', '91.199.60.255', 1539783680, 1539783935, 'DE', 'Germany'), +('91.199.61.0', '91.199.61.255', 1539783936, 1539784191, 'SI', 'Slovenia'), +('91.199.62.0', '91.199.62.255', 1539784192, 1539784447, 'RU', 'Russian Federation'), +('91.199.63.0', '91.199.63.255', 1539784448, 1539784703, 'NO', 'Norway'), +('91.199.64.0', '91.199.64.255', 1539784704, 1539784959, 'SE', 'Sweden'), +('91.199.65.0', '91.199.65.255', 1539784960, 1539785215, 'DE', 'Germany'), +('91.199.66.0', '91.199.66.255', 1539785216, 1539785471, 'CH', 'Switzerland'), +('91.199.67.0', '91.199.67.255', 1539785472, 1539785727, 'RU', 'Russian Federation'), +('91.199.68.0', '91.199.68.255', 1539785728, 1539785983, 'SE', 'Sweden'), +('91.199.69.0', '91.199.69.255', 1539785984, 1539786239, 'IL', 'Israel'), +('91.199.70.0', '91.199.70.255', 1539786240, 1539786495, 'AT', 'Austria'), +('91.199.71.0', '91.199.71.255', 1539786496, 1539786751, 'GB', 'United Kingdom'), +('91.199.72.0', '91.199.72.255', 1539786752, 1539787007, 'HU', 'Hungary'), +('91.199.73.0', '91.199.73.255', 1539787008, 1539787263, 'TR', 'Turkey'), +('91.199.74.0', '91.199.74.255', 1539787264, 1539787519, 'IE', 'Ireland'), +('91.199.75.0', '91.199.75.255', 1539787520, 1539787775, 'UA', 'Ukraine'), +('91.199.76.0', '91.199.76.255', 1539787776, 1539788031, 'CH', 'Switzerland'), +('91.199.77.0', '91.199.77.255', 1539788032, 1539788287, 'HR', 'Croatia'), +('91.199.78.0', '91.199.78.255', 1539788288, 1539788543, 'GB', 'United Kingdom'), +('91.199.79.0', '91.199.79.255', 1539788544, 1539788799, 'HR', 'Croatia'), +('91.199.80.0', '91.199.80.255', 1539788800, 1539789055, 'IL', 'Israel'), +('91.199.81.0', '91.199.81.255', 1539789056, 1539789311, 'RU', 'Russian Federation'), +('91.199.82.0', '91.199.82.255', 1539789312, 1539789567, 'UA', 'Ukraine'), +('91.199.83.0', '91.199.83.255', 1539789568, 1539789823, 'DE', 'Germany'), +('91.199.84.0', '91.199.84.255', 1539789824, 1539790079, 'NL', 'Netherlands'), +('91.199.85.0', '91.199.85.255', 1539790080, 1539790335, 'CH', 'Switzerland'), +('91.199.86.0', '91.199.86.255', 1539790336, 1539790591, 'LV', 'Latvia'), +('91.199.87.0', '91.199.87.255', 1539790592, 1539790847, 'PL', 'Poland'), +('91.199.88.0', '91.199.88.255', 1539790848, 1539791103, 'DE', 'Germany'), +('91.199.89.0', '91.199.89.255', 1539791104, 1539791359, 'PL', 'Poland'), +('91.199.90.0', '91.199.90.255', 1539791360, 1539791615, 'RU', 'Russian Federation'), +('91.199.91.0', '91.199.93.255', 1539791616, 1539792383, 'UA', 'Ukraine'), +('91.199.94.0', '91.199.94.255', 1539792384, 1539792639, 'IL', 'Israel'), +('91.199.95.0', '91.199.95.255', 1539792640, 1539792895, 'PL', 'Poland'), +('91.199.96.0', '91.199.96.255', 1539792896, 1539793151, 'GR', 'Greece'), +('91.199.97.0', '91.199.97.255', 1539793152, 1539793407, 'PL', 'Poland'), +('91.199.98.0', '91.199.98.255', 1539793408, 1539793663, 'CH', 'Switzerland'), +('91.199.99.0', '91.199.100.255', 1539793664, 1539794175, 'IL', 'Israel'), +('91.199.101.0', '91.199.101.255', 1539794176, 1539794431, 'PL', 'Poland'), +('91.199.102.0', '91.199.102.255', 1539794432, 1539794687, 'DK', 'Denmark'), +('91.199.103.0', '91.199.103.255', 1539794688, 1539794943, 'FR', 'France'), +('91.199.104.0', '91.199.104.255', 1539794944, 1539795199, 'RO', 'Romania'), +('91.199.105.0', '91.199.105.255', 1539795200, 1539795455, 'PL', 'Poland'), +('91.199.106.0', '91.199.106.255', 1539795456, 1539795711, 'UA', 'Ukraine'), +('91.199.107.0', '91.199.107.255', 1539795712, 1539795967, 'SA', 'Saudi Arabia'), +('91.199.108.0', '91.199.108.255', 1539795968, 1539796223, 'NL', 'Netherlands'), +('91.199.109.0', '91.199.109.255', 1539796224, 1539796479, 'MC', 'Monaco'), +('91.199.110.0', '91.199.110.255', 1539796480, 1539796735, 'GB', 'United Kingdom'), +('91.199.111.0', '91.199.111.255', 1539796736, 1539796991, 'TR', 'Turkey'), +('91.199.112.0', '91.199.112.255', 1539796992, 1539797247, 'CY', 'Cyprus'), +('91.199.113.0', '91.199.113.255', 1539797248, 1539797503, 'DK', 'Denmark'), +('91.199.114.0', '91.199.114.255', 1539797504, 1539797759, 'RU', 'Russian Federation'), +('91.199.115.0', '91.199.115.255', 1539797760, 1539798015, 'UA', 'Ukraine'), +('91.199.116.0', '91.199.116.255', 1539798016, 1539798271, 'HU', 'Hungary'), +('91.199.117.0', '91.199.117.255', 1539798272, 1539798527, 'PL', 'Poland'), +('91.199.118.0', '91.199.118.255', 1539798528, 1539798783, 'GB', 'United Kingdom'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('91.199.119.0', '91.199.119.255', 1539798784, 1539799039, 'IL', 'Israel'), +('91.199.120.0', '91.199.120.255', 1539799040, 1539799295, 'ES', 'Spain'), +('91.199.121.0', '91.199.121.255', 1539799296, 1539799551, 'DK', 'Denmark'), +('91.199.122.0', '91.199.122.255', 1539799552, 1539799807, 'ES', 'Spain'), +('91.199.123.0', '91.199.123.255', 1539799808, 1539800063, 'RO', 'Romania'), +('91.199.124.0', '91.199.124.255', 1539800064, 1539800319, 'SI', 'Slovenia'), +('91.199.125.0', '91.199.125.255', 1539800320, 1539800575, 'GB', 'United Kingdom'), +('91.199.126.0', '91.199.126.255', 1539800576, 1539800831, 'LV', 'Latvia'), +('91.199.127.0', '91.199.127.255', 1539800832, 1539801087, 'PL', 'Poland'), +('91.199.128.0', '91.199.128.255', 1539801088, 1539801343, 'BG', 'Bulgaria'), +('91.199.129.0', '91.199.130.255', 1539801344, 1539801855, 'GB', 'United Kingdom'), +('91.199.131.0', '91.199.131.255', 1539801856, 1539802111, 'SI', 'Slovenia'), +('91.199.132.0', '91.199.132.255', 1539802112, 1539802367, 'PL', 'Poland'), +('91.199.133.0', '91.199.133.255', 1539802368, 1539802623, 'RO', 'Romania'), +('91.199.134.0', '91.199.134.255', 1539802624, 1539802879, 'IS', 'Iceland'), +('91.199.135.0', '91.199.135.255', 1539802880, 1539803135, 'NL', 'Netherlands'), +('91.199.136.0', '91.199.136.255', 1539803136, 1539803391, 'GB', 'United Kingdom'), +('91.199.137.0', '91.199.137.255', 1539803392, 1539803647, 'NL', 'Netherlands'), +('91.199.138.0', '91.199.139.255', 1539803648, 1539804159, 'UA', 'Ukraine'), +('91.199.140.0', '91.199.141.255', 1539804160, 1539804671, 'PL', 'Poland'), +('91.199.142.0', '91.199.142.255', 1539804672, 1539804927, 'SI', 'Slovenia'), +('91.199.143.0', '91.199.144.255', 1539804928, 1539805439, 'UA', 'Ukraine'), +('91.199.145.0', '91.199.145.255', 1539805440, 1539805695, 'AT', 'Austria'), +('91.199.146.0', '91.199.146.255', 1539805696, 1539805951, 'CH', 'Switzerland'), +('91.199.147.0', '91.199.147.255', 1539805952, 1539806207, 'RU', 'Russian Federation'), +('91.199.148.0', '91.199.148.255', 1539806208, 1539806463, 'FI', 'Finland'), +('91.199.149.0', '91.199.149.255', 1539806464, 1539806719, 'RU', 'Russian Federation'), +('91.199.150.0', '91.199.150.255', 1539806720, 1539806975, 'BG', 'Bulgaria'), +('91.199.151.0', '91.199.151.255', 1539806976, 1539807231, 'GB', 'United Kingdom'), +('91.199.152.0', '91.199.152.255', 1539807232, 1539807487, 'FR', 'France'), +('91.199.153.0', '91.199.154.255', 1539807488, 1539807999, 'GB', 'United Kingdom'), +('91.199.155.0', '91.199.155.255', 1539808000, 1539808255, 'HU', 'Hungary'), +('91.199.156.0', '91.199.156.255', 1539808256, 1539808511, 'RU', 'Russian Federation'), +('91.199.157.0', '91.199.157.255', 1539808512, 1539808767, 'RO', 'Romania'), +('91.199.158.0', '91.199.158.255', 1539808768, 1539809023, 'DE', 'Germany'), +('91.199.159.0', '91.199.159.255', 1539809024, 1539809279, 'GB', 'United Kingdom'), +('91.199.160.0', '91.199.160.255', 1539809280, 1539809535, 'EU', 'Europe'), +('91.199.161.0', '91.199.161.255', 1539809536, 1539809791, 'SI', 'Slovenia'), +('91.199.162.0', '91.199.162.255', 1539809792, 1539810047, 'DE', 'Germany'), +('91.199.163.0', '91.199.163.255', 1539810048, 1539810303, 'UA', 'Ukraine'), +('91.199.164.0', '91.199.164.255', 1539810304, 1539810559, 'CZ', 'Czech Republic'), +('91.199.165.0', '91.199.165.255', 1539810560, 1539810815, 'DE', 'Germany'), +('91.199.166.0', '91.199.166.255', 1539810816, 1539811071, 'TR', 'Turkey'), +('91.199.167.0', '91.199.167.255', 1539811072, 1539811327, 'NL', 'Netherlands'), +('91.199.168.0', '91.199.168.255', 1539811328, 1539811583, 'CZ', 'Czech Republic'), +('91.199.169.0', '91.199.169.255', 1539811584, 1539811839, 'DE', 'Germany'), +('91.199.170.0', '91.199.170.255', 1539811840, 1539812095, 'SE', 'Sweden'), +('91.199.171.0', '91.199.171.255', 1539812096, 1539812351, 'RU', 'Russian Federation'), +('91.199.172.0', '91.199.172.255', 1539812352, 1539812607, 'CH', 'Switzerland'), +('91.199.173.0', '91.199.173.255', 1539812608, 1539812863, 'IT', 'Italy'), +('91.199.174.0', '91.199.174.255', 1539812864, 1539813119, 'SI', 'Slovenia'), +('91.199.175.0', '91.199.175.255', 1539813120, 1539813375, 'AT', 'Austria'), +('91.199.176.0', '91.199.176.255', 1539813376, 1539813631, 'PL', 'Poland'), +('91.199.177.0', '91.199.177.255', 1539813632, 1539813887, 'NL', 'Netherlands'), +('91.199.178.0', '91.199.178.255', 1539813888, 1539814143, 'RU', 'Russian Federation'), +('91.199.179.0', '91.199.179.255', 1539814144, 1539814399, 'NL', 'Netherlands'), +('91.199.180.0', '91.199.181.255', 1539814400, 1539814911, 'GB', 'United Kingdom'), +('91.199.182.0', '91.199.182.255', 1539814912, 1539815167, 'UA', 'Ukraine'), +('91.199.183.0', '91.199.183.255', 1539815168, 1539815423, 'GB', 'United Kingdom'), +('91.199.184.0', '91.199.185.255', 1539815424, 1539815935, 'RU', 'Russian Federation'), +('91.199.186.0', '91.199.186.255', 1539815936, 1539816191, 'CH', 'Switzerland'), +('91.199.187.0', '91.199.187.255', 1539816192, 1539816447, 'SA', 'Saudi Arabia'), +('91.199.188.0', '91.199.188.255', 1539816448, 1539816703, 'UA', 'Ukraine'), +('91.199.189.0', '91.199.189.255', 1539816704, 1539816959, 'RU', 'Russian Federation'), +('91.199.190.0', '91.199.190.255', 1539816960, 1539817215, 'DK', 'Denmark'), +('91.199.191.0', '91.199.191.255', 1539817216, 1539817471, 'TR', 'Turkey'), +('91.199.192.0', '91.199.192.255', 1539817472, 1539817727, 'DE', 'Germany'), +('91.199.193.0', '91.199.193.255', 1539817728, 1539817983, 'PL', 'Poland'), +('91.199.194.0', '91.199.194.255', 1539817984, 1539818239, 'UA', 'Ukraine'), +('91.199.195.0', '91.199.195.255', 1539818240, 1539818495, 'NO', 'Norway'), +('91.199.196.0', '91.199.197.255', 1539818496, 1539819007, 'RU', 'Russian Federation'), +('91.199.198.0', '91.199.198.255', 1539819008, 1539819263, 'CH', 'Switzerland'), +('91.199.199.0', '91.199.199.255', 1539819264, 1539819519, 'RO', 'Romania'), +('91.199.200.0', '91.199.200.255', 1539819520, 1539819775, 'AT', 'Austria'), +('91.199.201.0', '91.199.201.255', 1539819776, 1539820031, 'SI', 'Slovenia'), +('91.199.202.0', '91.199.202.255', 1539820032, 1539820287, 'VG', 'Virgin Islands, British'), +('91.199.203.0', '91.199.203.255', 1539820288, 1539820543, 'PL', 'Poland'), +('91.199.204.0', '91.199.204.255', 1539820544, 1539820799, 'ES', 'Spain'), +('91.199.205.0', '91.199.205.255', 1539820800, 1539821055, 'RU', 'Russian Federation'), +('91.199.206.0', '91.199.206.255', 1539821056, 1539821311, 'UA', 'Ukraine'), +('91.199.207.0', '91.199.207.255', 1539821312, 1539821567, 'CZ', 'Czech Republic'), +('91.199.208.0', '91.199.208.255', 1539821568, 1539821823, 'DK', 'Denmark'), +('91.199.209.0', '91.199.209.255', 1539821824, 1539822079, 'DE', 'Germany'), +('91.199.210.0', '91.199.210.255', 1539822080, 1539822335, 'RO', 'Romania'), +('91.199.211.0', '91.199.211.255', 1539822336, 1539822591, 'RU', 'Russian Federation'), +('91.199.212.0', '91.199.212.255', 1539822592, 1539822847, 'GB', 'United Kingdom'), +('91.199.213.0', '91.199.213.255', 1539822848, 1539823103, 'IE', 'Ireland'), +('91.199.214.0', '91.199.214.255', 1539823104, 1539823359, 'DE', 'Germany'), +('91.199.215.0', '91.199.215.255', 1539823360, 1539823615, 'CY', 'Cyprus'), +('91.199.216.0', '91.199.216.255', 1539823616, 1539823871, 'RO', 'Romania'), +('91.199.217.0', '91.199.217.255', 1539823872, 1539824127, 'DK', 'Denmark'), +('91.199.218.0', '91.199.218.255', 1539824128, 1539824383, 'CH', 'Switzerland'), +('91.199.219.0', '91.199.219.255', 1539824384, 1539824639, 'NL', 'Netherlands'), +('91.199.220.0', '91.199.220.255', 1539824640, 1539824895, 'HU', 'Hungary'), +('91.199.221.0', '91.199.221.255', 1539824896, 1539825151, 'UZ', 'Uzbekistan'), +('91.199.222.0', '91.199.222.255', 1539825152, 1539825407, 'UA', 'Ukraine'), +('91.199.223.0', '91.199.224.255', 1539825408, 1539825919, 'RU', 'Russian Federation'), +('91.199.225.0', '91.199.225.255', 1539825920, 1539826175, 'DE', 'Germany'), +('91.199.226.0', '91.199.226.255', 1539826176, 1539826431, 'AM', 'Armenia'), +('91.199.227.0', '91.199.227.255', 1539826432, 1539826687, 'BE', 'Belgium'), +('91.199.228.0', '91.199.228.255', 1539826688, 1539826943, 'CH', 'Switzerland'), +('91.199.229.0', '91.199.229.255', 1539826944, 1539827199, 'DE', 'Germany'), +('91.199.230.0', '91.199.230.255', 1539827200, 1539827455, 'RU', 'Russian Federation'), +('91.199.231.0', '91.199.231.255', 1539827456, 1539827711, 'MK', 'Macedonia'), +('91.199.232.0', '91.199.232.255', 1539827712, 1539827967, 'RU', 'Russian Federation'), +('91.199.233.0', '91.199.234.255', 1539827968, 1539828479, 'FR', 'France'), +('91.199.235.0', '91.199.235.255', 1539828480, 1539828735, 'SI', 'Slovenia'), +('91.199.236.0', '91.199.236.255', 1539828736, 1539828991, 'NL', 'Netherlands'), +('91.199.237.0', '91.199.237.255', 1539828992, 1539829247, 'BG', 'Bulgaria'), +('91.199.238.0', '91.199.238.255', 1539829248, 1539829503, 'SE', 'Sweden'), +('91.199.239.0', '91.199.239.255', 1539829504, 1539829759, 'DE', 'Germany'), +('91.199.240.0', '91.199.240.255', 1539829760, 1539830015, 'PL', 'Poland'), +('91.199.241.0', '91.199.241.255', 1539830016, 1539830271, 'DE', 'Germany'), +('91.199.242.0', '91.199.242.255', 1539830272, 1539830527, 'FR', 'France'), +('91.199.243.0', '91.199.243.255', 1539830528, 1539830783, 'RO', 'Romania'), +('91.199.244.0', '91.199.244.255', 1539830784, 1539831039, 'RU', 'Russian Federation'), +('91.199.245.0', '91.199.245.255', 1539831040, 1539831295, 'UA', 'Ukraine'), +('91.199.246.0', '91.199.246.255', 1539831296, 1539831551, 'PL', 'Poland'), +('91.199.247.0', '91.199.247.255', 1539831552, 1539831807, 'DE', 'Germany'), +('91.199.248.0', '91.199.248.255', 1539831808, 1539832063, 'RU', 'Russian Federation'), +('91.199.249.0', '91.199.249.255', 1539832064, 1539832319, 'GB', 'United Kingdom'), +('91.199.250.0', '91.199.250.255', 1539832320, 1539832575, 'PL', 'Poland'), +('91.199.251.0', '91.199.251.255', 1539832576, 1539832831, 'RU', 'Russian Federation'), +('91.199.252.0', '91.199.252.255', 1539832832, 1539833087, 'GB', 'United Kingdom'), +('91.199.253.0', '91.199.253.255', 1539833088, 1539833343, 'RU', 'Russian Federation'), +('91.199.254.0', '91.199.255.255', 1539833344, 1539833855, 'FR', 'France'), +('91.200.0.0', '91.200.15.255', 1539833856, 1539837951, 'UA', 'Ukraine'), +('91.200.16.0', '91.200.19.255', 1539837952, 1539838975, 'NL', 'Netherlands'), +('91.200.20.0', '91.200.23.255', 1539838976, 1539839999, 'GR', 'Greece'), +('91.200.24.0', '91.200.27.255', 1539840000, 1539841023, 'PL', 'Poland'), +('91.200.28.0', '91.200.31.255', 1539841024, 1539842047, 'RU', 'Russian Federation'), +('91.200.32.0', '91.200.39.255', 1539842048, 1539844095, 'PL', 'Poland'), +('91.200.40.0', '91.200.47.255', 1539844096, 1539846143, 'UA', 'Ukraine'), +('91.200.48.0', '91.200.51.255', 1539846144, 1539847167, 'NL', 'Netherlands'), +('91.200.52.0', '91.200.59.255', 1539847168, 1539849215, 'UA', 'Ukraine'), +('91.200.60.0', '91.200.63.255', 1539849216, 1539850239, 'RU', 'Russian Federation'), +('91.200.64.0', '91.200.67.255', 1539850240, 1539851263, 'LV', 'Latvia'), +('91.200.68.0', '91.200.71.255', 1539851264, 1539852287, 'PL', 'Poland'), +('91.200.72.0', '91.200.75.255', 1539852288, 1539853311, 'UA', 'Ukraine'), +('91.200.76.0', '91.200.79.255', 1539853312, 1539854335, 'PL', 'Poland'), +('91.200.80.0', '91.200.83.255', 1539854336, 1539855359, 'UA', 'Ukraine'), +('91.200.84.0', '91.200.87.255', 1539855360, 1539856383, 'RU', 'Russian Federation'), +('91.200.88.0', '91.200.91.255', 1539856384, 1539857407, 'UA', 'Ukraine'), +('91.200.92.0', '91.200.95.255', 1539857408, 1539858431, 'PL', 'Poland'), +('91.200.96.0', '91.200.99.255', 1539858432, 1539859455, 'RO', 'Romania'), +('91.200.100.0', '91.200.103.255', 1539859456, 1539860479, 'DE', 'Germany'), +('91.200.104.0', '91.200.107.255', 1539860480, 1539861503, 'UA', 'Ukraine'), +('91.200.108.0', '91.200.111.255', 1539861504, 1539862527, 'DE', 'Germany'), +('91.200.112.0', '91.200.115.255', 1539862528, 1539863551, 'UA', 'Ukraine'), +('91.200.116.0', '91.200.119.255', 1539863552, 1539864575, 'MD', 'Moldova, Republic of'), +('91.200.120.0', '91.200.123.255', 1539864576, 1539865599, 'RO', 'Romania'), +('91.200.124.0', '91.200.127.255', 1539865600, 1539866623, 'UA', 'Ukraine'), +('91.200.128.0', '91.200.131.255', 1539866624, 1539867647, 'IT', 'Italy'), +('91.200.132.0', '91.200.139.255', 1539867648, 1539869695, 'UA', 'Ukraine'), +('91.200.140.0', '91.200.143.255', 1539869696, 1539870719, 'ES', 'Spain'), +('91.200.144.0', '91.200.147.255', 1539870720, 1539871743, 'IL', 'Israel'), +('91.200.148.0', '91.200.151.255', 1539871744, 1539872767, 'ES', 'Spain'), +('91.200.152.0', '91.200.155.255', 1539872768, 1539873791, 'SE', 'Sweden'), +('91.200.156.0', '91.200.167.255', 1539873792, 1539876863, 'UA', 'Ukraine'), +('91.200.168.0', '91.200.171.255', 1539876864, 1539877887, 'ES', 'Spain'), +('91.200.172.0', '91.200.175.255', 1539877888, 1539878911, 'PL', 'Poland'), +('91.200.176.0', '91.200.183.255', 1539878912, 1539880959, 'UA', 'Ukraine'), +('91.200.184.0', '91.200.187.255', 1539880960, 1539881983, 'PL', 'Poland'), +('91.200.188.0', '91.200.195.255', 1539881984, 1539884031, 'UA', 'Ukraine'), +('91.200.196.0', '91.200.199.255', 1539884032, 1539885055, 'MT', 'Malta'), +('91.200.200.0', '91.200.203.255', 1539885056, 1539886079, 'UA', 'Ukraine'), +('91.200.204.0', '91.200.207.255', 1539886080, 1539887103, 'FR', 'France'), +('91.200.208.0', '91.200.211.255', 1539887104, 1539888127, 'IT', 'Italy'), +('91.200.212.0', '91.200.215.255', 1539888128, 1539889151, 'UA', 'Ukraine'), +('91.200.216.0', '91.200.219.255', 1539889152, 1539890175, 'RU', 'Russian Federation'), +('91.200.220.0', '91.200.223.255', 1539890176, 1539891199, 'UA', 'Ukraine'), +('91.200.224.0', '91.200.231.255', 1539891200, 1539893247, 'RU', 'Russian Federation'), +('91.200.232.0', '91.200.235.255', 1539893248, 1539894271, 'UA', 'Ukraine'), +('91.200.236.0', '91.200.239.255', 1539894272, 1539895295, 'PL', 'Poland'), +('91.200.240.0', '91.200.255.255', 1539895296, 1539899391, 'UA', 'Ukraine'), +('91.201.0.0', '91.201.3.255', 1539899392, 1539900415, 'RU', 'Russian Federation'), +('91.201.4.0', '91.201.7.255', 1539900416, 1539901439, 'UA', 'Ukraine'), +('91.201.8.0', '91.201.11.255', 1539901440, 1539902463, 'RU', 'Russian Federation'), +('91.201.12.0', '91.201.15.255', 1539902464, 1539903487, 'LV', 'Latvia'), +('91.201.16.0', '91.201.19.255', 1539903488, 1539904511, 'PL', 'Poland'), +('91.201.20.0', '91.201.23.255', 1539904512, 1539905535, 'CZ', 'Czech Republic'), +('91.201.24.0', '91.201.43.255', 1539905536, 1539910655, 'UA', 'Ukraine'), +('91.201.44.0', '91.201.47.255', 1539910656, 1539911679, 'PL', 'Poland'), +('91.201.48.0', '91.201.55.255', 1539911680, 1539913727, 'RU', 'Russian Federation'), +('91.201.56.0', '91.201.59.255', 1539913728, 1539914751, 'CH', 'Switzerland'), +('91.201.60.0', '91.201.63.255', 1539914752, 1539915775, 'SE', 'Sweden'), +('91.201.68.0', '91.201.71.255', 1539916800, 1539917823, 'UA', 'Ukraine'), +('91.201.72.0', '91.201.75.255', 1539917824, 1539918847, 'RU', 'Russian Federation'), +('91.201.76.0', '91.201.83.255', 1539918848, 1539920895, 'RO', 'Romania'), +('91.201.84.0', '91.201.87.255', 1539920896, 1539921919, 'UA', 'Ukraine'), +('91.201.88.0', '91.201.91.255', 1539921920, 1539922943, 'PL', 'Poland'), +('91.201.92.0', '91.201.95.255', 1539922944, 1539923967, 'SE', 'Sweden'), +('91.201.96.0', '91.201.99.255', 1539923968, 1539924991, 'RU', 'Russian Federation'), +('91.201.100.0', '91.201.103.255', 1539924992, 1539926015, 'DE', 'Germany'), +('91.201.104.0', '91.201.107.255', 1539926016, 1539927039, 'RU', 'Russian Federation'), +('91.201.108.0', '91.201.111.255', 1539927040, 1539928063, 'UA', 'Ukraine'), +('91.201.112.0', '91.201.119.255', 1539928064, 1539930111, 'RU', 'Russian Federation'), +('91.201.120.0', '91.201.123.255', 1539930112, 1539931135, 'PL', 'Poland'), +('91.201.124.0', '91.201.127.255', 1539931136, 1539932159, 'UA', 'Ukraine'), +('91.201.128.0', '91.201.131.255', 1539932160, 1539933183, 'DE', 'Germany'), +('91.201.132.0', '91.201.135.255', 1539933184, 1539934207, 'ES', 'Spain'), +('91.201.136.0', '91.201.139.255', 1539934208, 1539935231, 'RS', 'Serbia'), +('91.201.140.0', '91.201.143.255', 1539935232, 1539936255, 'LV', 'Latvia'), +('91.201.144.0', '91.201.147.255', 1539936256, 1539937279, 'UA', 'Ukraine'), +('91.201.148.0', '91.201.151.255', 1539937280, 1539938303, 'CH', 'Switzerland'), +('91.201.152.0', '91.201.155.255', 1539938304, 1539939327, 'PL', 'Poland'), +('91.201.156.0', '91.201.159.255', 1539939328, 1539940351, 'UA', 'Ukraine'), +('91.201.160.0', '91.201.163.255', 1539940352, 1539941375, 'GB', 'United Kingdom'), +('91.201.164.0', '91.201.167.255', 1539941376, 1539942399, 'NL', 'Netherlands'), +('91.201.168.0', '91.201.171.255', 1539942400, 1539943423, 'UA', 'Ukraine'), +('91.201.172.0', '91.201.175.255', 1539943424, 1539944447, 'BG', 'Bulgaria'), +('91.201.176.0', '91.201.183.255', 1539944448, 1539946495, 'UA', 'Ukraine'), +('91.201.184.0', '91.201.187.255', 1539946496, 1539947519, 'RU', 'Russian Federation'), +('91.201.188.0', '91.201.191.255', 1539947520, 1539948543, 'UA', 'Ukraine'), +('91.201.192.0', '91.201.195.255', 1539948544, 1539949567, 'RO', 'Romania'), +('91.201.196.0', '91.201.199.255', 1539949568, 1539950591, 'UA', 'Ukraine'), +('91.201.200.0', '91.201.203.255', 1539950592, 1539951615, 'KZ', 'Kazakstan'), +('91.201.204.0', '91.201.211.255', 1539951616, 1539953663, 'RU', 'Russian Federation'), +('91.201.212.0', '91.201.215.255', 1539953664, 1539954687, 'UA', 'Ukraine'), +('91.201.216.0', '91.201.223.255', 1539954688, 1539956735, 'RO', 'Romania'), +('91.201.224.0', '91.201.227.255', 1539956736, 1539957759, 'UA', 'Ukraine'), +('91.201.228.0', '91.201.231.255', 1539957760, 1539958783, 'RU', 'Russian Federation'), +('91.201.232.0', '91.201.247.255', 1539958784, 1539962879, 'UA', 'Ukraine'), +('91.201.248.0', '91.201.255.255', 1539962880, 1539964927, 'RU', 'Russian Federation'), +('91.202.0.0', '91.202.3.255', 1539964928, 1539965951, 'UA', 'Ukraine'), +('91.202.4.0', '91.202.7.255', 1539965952, 1539966975, 'RU', 'Russian Federation'), +('91.202.8.0', '91.202.11.255', 1539966976, 1539967999, 'UA', 'Ukraine'), +('91.202.12.0', '91.202.27.255', 1539968000, 1539972095, 'RU', 'Russian Federation'), +('91.202.28.0', '91.202.31.255', 1539972096, 1539973119, 'GB', 'United Kingdom'), +('91.202.32.0', '91.202.39.255', 1539973120, 1539975167, 'RU', 'Russian Federation'), +('91.202.40.0', '91.202.43.255', 1539975168, 1539976191, 'DE', 'Germany'), +('91.202.44.0', '91.202.47.255', 1539976192, 1539977215, 'RU', 'Russian Federation'), +('91.202.48.0', '91.202.51.255', 1539977216, 1539978239, 'DE', 'Germany'), +('91.202.52.0', '91.202.59.255', 1539978240, 1539980287, 'UA', 'Ukraine'), +('91.202.60.0', '91.202.63.255', 1539980288, 1539981311, 'VG', 'Virgin Islands, British'), +('91.202.64.0', '91.202.67.255', 1539981312, 1539982335, 'SI', 'Slovenia'), +('91.202.68.0', '91.202.71.255', 1539982336, 1539983359, 'RU', 'Russian Federation'), +('91.202.72.0', '91.202.75.255', 1539983360, 1539984383, 'UA', 'Ukraine'), +('91.202.76.0', '91.202.79.255', 1539984384, 1539985407, 'RU', 'Russian Federation'), +('91.202.80.0', '91.202.83.255', 1539985408, 1539986431, 'SE', 'Sweden'), +('91.202.84.0', '91.202.87.255', 1539986432, 1539987455, 'RU', 'Russian Federation'), +('91.202.88.0', '91.202.91.255', 1539987456, 1539988479, 'RO', 'Romania'), +('91.202.92.0', '91.202.99.255', 1539988480, 1539990527, 'RU', 'Russian Federation'), +('91.202.100.0', '91.202.103.255', 1539990528, 1539991551, 'PL', 'Poland'), +('91.202.104.0', '91.202.111.255', 1539991552, 1539993599, 'UA', 'Ukraine'), +('91.202.112.0', '91.202.115.255', 1539993600, 1539994623, 'FI', 'Finland'), +('91.202.116.0', '91.202.119.255', 1539994624, 1539995647, 'AT', 'Austria'), +('91.202.120.0', '91.202.123.255', 1539995648, 1539996671, 'CH', 'Switzerland'), +('91.202.124.0', '91.202.127.255', 1539996672, 1539997695, 'PL', 'Poland'), +('91.202.128.0', '91.202.135.255', 1539997696, 1539999743, 'UA', 'Ukraine'), +('91.202.136.0', '91.202.139.255', 1539999744, 1540000767, 'GB', 'United Kingdom'), +('91.202.140.0', '91.202.143.255', 1540000768, 1540001791, 'RU', 'Russian Federation'), +('91.202.144.0', '91.202.147.255', 1540001792, 1540002815, 'UA', 'Ukraine'), +('91.202.148.0', '91.202.151.255', 1540002816, 1540003839, 'RU', 'Russian Federation'), +('91.202.152.0', '91.202.155.255', 1540003840, 1540004863, 'PL', 'Poland'), +('91.202.156.0', '91.202.159.255', 1540004864, 1540005887, 'SE', 'Sweden'), +('91.202.160.0', '91.202.163.255', 1540005888, 1540006911, 'UA', 'Ukraine'), +('91.202.164.0', '91.202.167.255', 1540006912, 1540007935, 'RU', 'Russian Federation'), +('91.202.168.0', '91.202.171.255', 1540007936, 1540008959, 'IL', 'Israel'), +('91.202.172.0', '91.202.179.255', 1540008960, 1540011007, 'PL', 'Poland'), +('91.202.180.0', '91.202.191.255', 1540011008, 1540014079, 'RU', 'Russian Federation'), +('91.202.192.0', '91.202.195.255', 1540014080, 1540015103, 'PL', 'Poland'), +('91.202.200.0', '91.202.203.255', 1540016128, 1540017151, 'KR', 'Korea, Republic of'), +('91.202.204.0', '91.202.207.255', 1540017152, 1540018175, 'RU', 'Russian Federation'), +('91.202.208.0', '91.202.215.255', 1540018176, 1540020223, 'UA', 'Ukraine'), +('91.202.216.0', '91.202.223.255', 1540020224, 1540022271, 'RU', 'Russian Federation'), +('91.202.224.0', '91.202.227.255', 1540022272, 1540023295, 'GB', 'United Kingdom'), +('91.202.228.0', '91.202.231.255', 1540023296, 1540024319, 'PL', 'Poland'), +('91.202.232.0', '91.202.235.255', 1540024320, 1540025343, 'RU', 'Russian Federation'), +('91.202.236.0', '91.202.239.255', 1540025344, 1540026367, 'GB', 'United Kingdom'), +('91.202.240.0', '91.202.247.255', 1540026368, 1540028415, 'UA', 'Ukraine'), +('91.202.248.0', '91.202.251.255', 1540028416, 1540029439, 'ES', 'Spain'), +('91.202.252.0', '91.202.255.255', 1540029440, 1540030463, 'RU', 'Russian Federation'), +('91.203.0.0', '91.203.3.255', 1540030464, 1540031487, 'DE', 'Germany'), +('91.203.4.0', '91.203.7.255', 1540031488, 1540032511, 'UA', 'Ukraine'), +('91.203.8.0', '91.203.11.255', 1540032512, 1540033535, 'RU', 'Russian Federation'), +('91.203.12.0', '91.203.15.255', 1540033536, 1540034559, 'UA', 'Ukraine'), +('91.203.16.0', '91.203.19.255', 1540034560, 1540035583, 'PL', 'Poland'), +('91.203.20.0', '91.203.23.255', 1540035584, 1540036607, 'RU', 'Russian Federation'), +('91.203.24.0', '91.203.27.255', 1540036608, 1540037631, 'UA', 'Ukraine'), +('91.203.28.0', '91.203.31.255', 1540037632, 1540038655, 'EE', 'Estonia'), +('91.203.32.0', '91.203.35.255', 1540038656, 1540039679, 'FR', 'France'), +('91.203.36.0', '91.203.39.255', 1540039680, 1540040703, 'RU', 'Russian Federation'), +('91.203.40.0', '91.203.43.255', 1540040704, 1540041727, 'SE', 'Sweden'), +('91.203.44.0', '91.203.47.255', 1540041728, 1540042751, 'RU', 'Russian Federation'), +('91.203.48.0', '91.203.51.255', 1540042752, 1540043775, 'UA', 'Ukraine'), +('91.203.52.0', '91.203.55.255', 1540043776, 1540044799, 'PL', 'Poland'), +('91.203.56.0', '91.203.59.255', 1540044800, 1540045823, 'GB', 'United Kingdom'), +('91.203.60.0', '91.203.63.255', 1540045824, 1540046847, 'UA', 'Ukraine'), +('91.203.64.0', '91.203.67.255', 1540046848, 1540047871, 'RU', 'Russian Federation'), +('91.203.68.0', '91.203.71.255', 1540047872, 1540048895, 'LV', 'Latvia'), +('91.203.72.0', '91.203.75.255', 1540048896, 1540049919, 'GB', 'United Kingdom'), +('91.203.76.0', '91.203.79.255', 1540049920, 1540050943, 'UA', 'Ukraine'), +('91.203.80.0', '91.203.87.255', 1540050944, 1540052991, 'RU', 'Russian Federation'), +('91.203.88.0', '91.203.92.36', 1540052992, 1540054052, 'UA', 'Ukraine'), +('91.203.92.37', '91.203.92.46', 1540054053, 1540054062, 'MD', 'Moldova, Republic of'), +('91.203.92.47', '91.203.95.255', 1540054063, 1540055039, 'UA', 'Ukraine'), +('91.203.96.0', '91.203.99.255', 1540055040, 1540056063, 'NO', 'Norway'), +('91.203.100.0', '91.203.103.255', 1540056064, 1540057087, 'NL', 'Netherlands'), +('91.203.104.0', '91.203.107.255', 1540057088, 1540058111, 'GB', 'United Kingdom'), +('91.203.108.0', '91.203.111.255', 1540058112, 1540059135, 'DE', 'Germany'), +('91.203.112.0', '91.203.115.255', 1540059136, 1540060159, 'UA', 'Ukraine'), +('91.203.116.0', '91.203.119.255', 1540060160, 1540061183, 'NO', 'Norway'), +('91.203.120.0', '91.203.123.255', 1540061184, 1540062207, 'NG', 'Nigeria'), +('91.203.124.0', '91.203.127.255', 1540062208, 1540063231, 'RU', 'Russian Federation'), +('91.203.128.0', '91.203.131.255', 1540063232, 1540064255, 'NL', 'Netherlands'), +('91.203.132.0', '91.203.135.255', 1540064256, 1540065279, 'PL', 'Poland'), +('91.203.136.0', '91.203.147.255', 1540065280, 1540068351, 'UA', 'Ukraine'), +('91.203.148.0', '91.203.151.255', 1540068352, 1540069375, 'FR', 'France'), +('91.203.152.0', '91.203.159.255', 1540069376, 1540071423, 'RU', 'Russian Federation'), +('91.203.160.0', '91.203.163.255', 1540071424, 1540072447, 'SE', 'Sweden'), +('91.203.164.0', '91.203.167.255', 1540072448, 1540073471, 'UA', 'Ukraine'), +('91.203.168.0', '91.203.171.255', 1540073472, 1540074495, 'RU', 'Russian Federation'), +('91.203.172.0', '91.203.175.255', 1540074496, 1540075519, 'UZ', 'Uzbekistan'), +('91.203.176.0', '91.203.183.255', 1540075520, 1540077567, 'RU', 'Russian Federation'), +('91.203.184.0', '91.203.187.255', 1540077568, 1540078591, 'FR', 'France'), +('91.203.188.0', '91.203.199.255', 1540078592, 1540081663, 'RU', 'Russian Federation'), +('91.203.200.0', '91.203.203.255', 1540081664, 1540082687, 'DE', 'Germany'), +('91.203.204.0', '91.203.207.255', 1540082688, 1540083711, 'NO', 'Norway'), +('91.203.208.0', '91.203.211.255', 1540083712, 1540084735, 'RU', 'Russian Federation'), +('91.203.212.0', '91.203.215.255', 1540084736, 1540085759, 'LU', 'Luxembourg'), +('91.203.216.0', '91.203.223.255', 1540085760, 1540087807, 'PL', 'Poland'), +('91.203.224.0', '91.203.243.255', 1540087808, 1540092927, 'RU', 'Russian Federation'), +('91.203.244.0', '91.203.251.255', 1540092928, 1540094975, 'PL', 'Poland'), +('91.203.252.0', '91.203.255.255', 1540094976, 1540095999, 'GB', 'United Kingdom'), +('91.204.0.0', '91.204.3.255', 1540096000, 1540097023, 'SE', 'Sweden'), +('91.204.4.0', '91.204.7.255', 1540097024, 1540098047, 'DE', 'Germany'), +('91.204.8.0', '91.204.11.255', 1540098048, 1540099071, 'CH', 'Switzerland'), +('91.204.12.0', '91.204.15.255', 1540099072, 1540100095, 'UA', 'Ukraine'), +('91.204.16.0', '91.204.27.255', 1540100096, 1540103167, 'RU', 'Russian Federation'), +('91.204.28.0', '91.204.35.255', 1540103168, 1540105215, 'DE', 'Germany'), +('91.204.36.0', '91.204.55.255', 1540105216, 1540110335, 'UA', 'Ukraine'), +('91.204.56.0', '91.204.59.255', 1540110336, 1540111359, 'RU', 'Russian Federation'), +('91.204.60.0', '91.204.63.255', 1540111360, 1540112383, 'UA', 'Ukraine'), +('91.204.64.0', '91.204.67.255', 1540112384, 1540113407, 'LV', 'Latvia'), +('91.204.68.0', '91.204.71.255', 1540113408, 1540114431, 'RU', 'Russian Federation'), +('91.204.72.0', '91.204.75.255', 1540114432, 1540115455, 'LT', 'Lithuania'), +('91.204.76.0', '91.204.79.255', 1540115456, 1540116479, 'UA', 'Ukraine'), +('91.204.80.0', '91.204.83.255', 1540116480, 1540117503, 'CH', 'Switzerland'), +('91.204.84.0', '91.204.87.255', 1540117504, 1540118527, 'UA', 'Ukraine'), +('91.204.88.0', '91.204.91.255', 1540118528, 1540119551, 'PL', 'Poland'), +('91.204.92.0', '91.204.95.255', 1540119552, 1540120575, 'UA', 'Ukraine'), +('91.204.96.0', '91.204.111.255', 1540120576, 1540124671, 'RU', 'Russian Federation'), +('91.204.112.0', '91.204.115.255', 1540124672, 1540125695, 'NO', 'Norway'), +('91.204.116.0', '91.204.119.255', 1540125696, 1540126719, 'FR', 'France'), +('91.204.120.0', '91.204.123.255', 1540126720, 1540127743, 'UA', 'Ukraine'), +('91.204.124.0', '91.204.127.255', 1540127744, 1540128767, 'GB', 'United Kingdom'), +('91.204.128.0', '91.204.131.255', 1540128768, 1540129791, 'RU', 'Russian Federation'), +('91.204.132.0', '91.204.135.255', 1540129792, 1540130815, 'UA', 'Ukraine'), +('91.204.136.0', '91.204.139.255', 1540130816, 1540131839, 'RU', 'Russian Federation'), +('91.204.140.0', '91.204.143.255', 1540131840, 1540132863, 'PL', 'Poland'), +('91.204.144.0', '91.204.151.255', 1540132864, 1540134911, 'RU', 'Russian Federation'), +('91.204.152.0', '91.204.155.255', 1540134912, 1540135935, 'PL', 'Poland'), +('91.204.156.0', '91.204.159.255', 1540135936, 1540136959, 'BG', 'Bulgaria'), +('91.204.160.0', '91.204.163.255', 1540136960, 1540137983, 'PL', 'Poland'), +('91.204.164.0', '91.204.167.255', 1540137984, 1540139007, 'RU', 'Russian Federation'), +('91.204.168.0', '91.204.171.255', 1540139008, 1540140031, 'DE', 'Germany'), +('91.204.172.0', '91.204.175.255', 1540140032, 1540141055, 'GB', 'United Kingdom'), +('91.204.176.0', '91.204.179.255', 1540141056, 1540142079, 'RU', 'Russian Federation'), +('91.204.180.0', '91.204.183.255', 1540142080, 1540143103, 'UA', 'Ukraine'), +('91.204.184.0', '91.204.187.255', 1540143104, 1540144127, 'RU', 'Russian Federation'), +('91.204.188.0', '91.204.191.255', 1540144128, 1540145151, 'AM', 'Armenia'), +('91.204.192.0', '91.204.195.255', 1540145152, 1540146175, 'AT', 'Austria'), +('91.204.196.0', '91.204.199.255', 1540146176, 1540147199, 'UA', 'Ukraine'), +('91.204.200.0', '91.204.203.255', 1540147200, 1540148223, 'RU', 'Russian Federation'), +('91.204.204.0', '91.204.207.255', 1540148224, 1540149247, 'PL', 'Poland'), +('91.204.208.0', '91.204.211.255', 1540149248, 1540150271, 'GB', 'United Kingdom'), +('91.204.212.0', '91.204.215.255', 1540150272, 1540151295, 'UA', 'Ukraine'), +('91.204.216.0', '91.204.219.255', 1540151296, 1540152319, 'AT', 'Austria'), +('91.204.220.0', '91.204.223.255', 1540152320, 1540153343, 'SE', 'Sweden'), +('91.204.224.0', '91.204.235.255', 1540153344, 1540156415, 'RU', 'Russian Federation'), +('91.204.236.0', '91.204.239.255', 1540156416, 1540157439, 'UZ', 'Uzbekistan'), +('91.204.240.0', '91.204.243.255', 1540157440, 1540158463, 'RU', 'Russian Federation'), +('91.204.244.0', '91.204.247.255', 1540158464, 1540159487, 'GB', 'United Kingdom'), +('91.204.248.0', '91.204.251.255', 1540159488, 1540160511, 'UA', 'Ukraine'), +('91.204.252.0', '91.205.3.255', 1540160512, 1540162559, 'RU', 'Russian Federation'), +('91.205.4.0', '91.205.7.255', 1540162560, 1540163583, 'UA', 'Ukraine'), +('91.205.8.0', '91.205.11.255', 1540163584, 1540164607, 'RU', 'Russian Federation'), +('91.205.12.0', '91.205.15.255', 1540164608, 1540165631, 'DE', 'Germany'), +('91.205.16.0', '91.205.19.255', 1540165632, 1540166655, 'UA', 'Ukraine'), +('91.205.20.0', '91.205.23.255', 1540166656, 1540167679, 'PL', 'Poland'), +('91.205.24.0', '91.205.27.255', 1540167680, 1540168703, 'RU', 'Russian Federation'), +('91.205.28.0', '91.205.31.255', 1540168704, 1540169727, 'DE', 'Germany'), +('91.205.32.0', '91.205.35.255', 1540169728, 1540170751, 'NL', 'Netherlands'), +('91.205.36.0', '91.205.39.255', 1540170752, 1540171775, 'DE', 'Germany'), +('91.205.40.0', '91.205.43.255', 1540171776, 1540172799, 'GB', 'United Kingdom'), +('91.205.44.0', '91.205.47.255', 1540172800, 1540173823, 'RU', 'Russian Federation'), +('91.205.48.0', '91.205.51.255', 1540173824, 1540174847, 'KG', 'Kyrgyzstan'), +('91.205.52.0', '91.205.55.255', 1540174848, 1540175871, 'RU', 'Russian Federation'), +('91.205.56.0', '91.205.59.255', 1540175872, 1540176895, 'DE', 'Germany'), +('91.205.60.0', '91.205.63.255', 1540176896, 1540177919, 'SE', 'Sweden'), +('91.205.64.0', '91.205.67.255', 1540177920, 1540178943, 'UA', 'Ukraine'), +('91.205.68.0', '91.205.71.255', 1540178944, 1540179967, 'BA', 'Bosnia and Herzegovina'), +('91.205.72.0', '91.205.75.255', 1540179968, 1540180991, 'PL', 'Poland'), +('91.205.76.0', '91.205.79.255', 1540180992, 1540182015, 'DE', 'Germany'), +('91.205.80.0', '91.205.83.255', 1540182016, 1540183039, 'UA', 'Ukraine'), +('91.205.84.0', '91.205.87.255', 1540183040, 1540184063, 'RU', 'Russian Federation'), +('91.205.88.0', '91.205.91.255', 1540184064, 1540185087, 'PL', 'Poland'), +('91.205.92.0', '91.205.95.255', 1540185088, 1540186111, 'RU', 'Russian Federation'), +('91.205.96.0', '91.205.99.255', 1540186112, 1540187135, 'NL', 'Netherlands'), +('91.205.100.0', '91.205.103.255', 1540187136, 1540188159, 'US', 'United States'), +('91.205.104.0', '91.205.107.255', 1540188160, 1540189183, 'KZ', 'Kazakstan'), +('91.205.108.0', '91.205.111.255', 1540189184, 1540190207, 'GB', 'United Kingdom'), +('91.205.112.0', '91.205.115.255', 1540190208, 1540191231, 'PT', 'Portugal'), +('91.205.116.0', '91.205.119.255', 1540191232, 1540192255, 'FR', 'France'), +('91.205.120.0', '91.205.131.255', 1540192256, 1540195327, 'RU', 'Russian Federation'), +('91.205.132.0', '91.205.143.255', 1540195328, 1540198399, 'AM', 'Armenia'), +('91.205.144.0', '91.205.147.255', 1540198400, 1540199423, 'RU', 'Russian Federation'), +('91.205.148.0', '91.205.151.255', 1540199424, 1540200447, 'CH', 'Switzerland'), +('91.205.152.0', '91.205.155.255', 1540200448, 1540201471, 'IL', 'Israel'), +('91.205.156.0', '91.205.159.255', 1540201472, 1540202495, 'UA', 'Ukraine'), +('91.205.160.0', '91.205.163.255', 1540202496, 1540203519, 'RU', 'Russian Federation'), +('91.205.164.0', '91.205.167.255', 1540203520, 1540204543, 'UA', 'Ukraine'), +('91.205.168.0', '91.205.171.255', 1540204544, 1540205567, 'RU', 'Russian Federation'), +('91.205.172.0', '91.205.175.255', 1540205568, 1540206591, 'DE', 'Germany'), +('91.205.176.0', '91.205.183.255', 1540206592, 1540208639, 'RU', 'Russian Federation'), +('91.205.184.0', '91.205.187.255', 1540208640, 1540209663, 'NO', 'Norway'), +('91.205.188.0', '91.205.195.255', 1540209664, 1540211711, 'RU', 'Russian Federation'), +('91.205.196.0', '91.205.199.255', 1540211712, 1540212735, 'DE', 'Germany'), +('91.205.200.0', '91.205.203.255', 1540212736, 1540213759, 'GB', 'United Kingdom'), +('91.205.204.0', '91.205.207.255', 1540213760, 1540214783, 'UA', 'Ukraine'), +('91.205.208.0', '91.205.211.255', 1540214784, 1540215807, 'RU', 'Russian Federation'), +('91.205.212.0', '91.205.215.255', 1540215808, 1540216831, 'NL', 'Netherlands'), +('91.205.216.0', '91.205.219.255', 1540216832, 1540217855, 'UA', 'Ukraine'), +('91.205.220.0', '91.205.223.255', 1540217856, 1540218879, 'GB', 'United Kingdom'), +('91.205.224.0', '91.205.227.255', 1540218880, 1540219903, 'RU', 'Russian Federation'), +('91.205.228.0', '91.205.231.255', 1540219904, 1540220927, 'PL', 'Poland'), +('91.205.232.0', '91.205.235.255', 1540220928, 1540221951, 'NL', 'Netherlands'), +('91.205.236.0', '91.205.243.255', 1540221952, 1540223999, 'RU', 'Russian Federation'), +('91.205.244.0', '91.205.247.255', 1540224000, 1540225023, 'PL', 'Poland'), +('91.205.248.0', '91.205.251.255', 1540225024, 1540226047, 'GB', 'United Kingdom'), +('91.205.252.0', '91.205.255.255', 1540226048, 1540227071, 'RU', 'Russian Federation'), +('91.206.0.0', '91.206.1.255', 1540227072, 1540227583, 'GB', 'United Kingdom'), +('91.206.2.0', '91.206.3.255', 1540227584, 1540228095, 'RU', 'Russian Federation'), +('91.206.4.0', '91.206.5.255', 1540228096, 1540228607, 'UA', 'Ukraine'), +('91.206.6.0', '91.206.7.255', 1540228608, 1540229119, 'PL', 'Poland'), +('91.206.8.0', '91.206.9.255', 1540229120, 1540229631, 'AT', 'Austria'), +('91.206.10.0', '91.206.11.255', 1540229632, 1540230143, 'NL', 'Netherlands'), +('91.206.12.0', '91.206.19.255', 1540230144, 1540232191, 'RU', 'Russian Federation'), +('91.206.20.0', '91.206.21.255', 1540232192, 1540232703, 'BG', 'Bulgaria'), +('91.206.22.0', '91.206.23.255', 1540232704, 1540233215, 'RU', 'Russian Federation'), +('91.206.24.0', '91.206.25.255', 1540233216, 1540233727, 'CH', 'Switzerland'), +('91.206.26.0', '91.206.27.255', 1540233728, 1540234239, 'PL', 'Poland'), +('91.206.28.0', '91.206.29.255', 1540234240, 1540234751, 'DE', 'Germany'), +('91.206.30.0', '91.206.33.255', 1540234752, 1540235775, 'UA', 'Ukraine'), +('91.206.34.0', '91.206.35.255', 1540235776, 1540236287, 'NO', 'Norway'), +('91.206.36.0', '91.206.37.255', 1540236288, 1540236799, 'RO', 'Romania'), +('91.206.38.0', '91.206.39.255', 1540236800, 1540237311, 'PL', 'Poland'), +('91.206.40.0', '91.206.45.255', 1540237312, 1540238847, 'RO', 'Romania'), +('91.206.46.0', '91.206.47.255', 1540238848, 1540239359, 'DE', 'Germany'), +('91.206.48.0', '91.206.49.255', 1540239360, 1540239871, 'UA', 'Ukraine'), +('91.206.50.0', '91.206.51.255', 1540239872, 1540240383, 'NL', 'Netherlands'), +('91.206.52.0', '91.206.53.255', 1540240384, 1540240895, 'CH', 'Switzerland'), +('91.206.54.0', '91.206.59.255', 1540240896, 1540242431, 'RU', 'Russian Federation'), +('91.206.60.0', '91.206.61.255', 1540242432, 1540242943, 'DE', 'Germany'), +('91.206.62.0', '91.206.63.255', 1540242944, 1540243455, 'RU', 'Russian Federation'), +('91.206.64.0', '91.206.65.255', 1540243456, 1540243967, 'PL', 'Poland'), +('91.206.66.0', '91.206.67.255', 1540243968, 1540244479, 'RU', 'Russian Federation'), +('91.206.68.0', '91.206.69.255', 1540244480, 1540244991, 'CH', 'Switzerland'), +('91.206.70.0', '91.206.71.255', 1540244992, 1540245503, 'DE', 'Germany'), +('91.206.72.0', '91.206.73.255', 1540245504, 1540246015, 'RU', 'Russian Federation'), +('91.206.74.0', '91.206.75.255', 1540246016, 1540246527, 'IT', 'Italy'), +('91.206.76.0', '91.206.79.255', 1540246528, 1540247551, 'RO', 'Romania'), +('91.206.80.0', '91.206.81.255', 1540247552, 1540248063, 'NL', 'Netherlands'), +('91.206.82.0', '91.206.83.255', 1540248064, 1540248575, 'RO', 'Romania'), +('91.206.84.0', '91.206.85.255', 1540248576, 1540249087, 'GB', 'United Kingdom'), +('91.206.86.0', '91.206.87.255', 1540249088, 1540249599, 'PL', 'Poland'), +('91.206.88.0', '91.206.89.255', 1540249600, 1540250111, 'KZ', 'Kazakstan'), +('91.206.90.0', '91.206.91.255', 1540250112, 1540250623, 'DK', 'Denmark'), +('91.206.92.0', '91.206.93.255', 1540250624, 1540251135, 'RU', 'Russian Federation'), +('91.206.94.0', '91.206.95.255', 1540251136, 1540251647, 'GB', 'United Kingdom'), +('91.206.96.0', '91.206.97.255', 1540251648, 1540252159, 'PL', 'Poland'), +('91.206.98.0', '91.206.99.255', 1540252160, 1540252671, 'DE', 'Germany'), +('91.206.100.0', '91.206.101.255', 1540252672, 1540253183, 'RU', 'Russian Federation'), +('91.206.102.0', '91.206.103.255', 1540253184, 1540253695, 'AT', 'Austria'), +('91.206.104.0', '91.206.105.255', 1540253696, 1540254207, 'CH', 'Switzerland'), +('91.206.106.0', '91.206.107.255', 1540254208, 1540254719, 'RU', 'Russian Federation'), +('91.206.108.0', '91.206.109.255', 1540254720, 1540255231, 'PL', 'Poland'), +('91.206.110.0', '91.206.111.255', 1540255232, 1540255743, 'UA', 'Ukraine'), +('91.206.112.0', '91.206.113.255', 1540255744, 1540256255, 'AT', 'Austria'), +('91.206.114.0', '91.206.115.255', 1540256256, 1540256767, 'PL', 'Poland'), +('91.206.116.0', '91.206.117.255', 1540256768, 1540257279, 'RU', 'Russian Federation'), +('91.206.118.0', '91.206.119.255', 1540257280, 1540257791, 'GB', 'United Kingdom'), +('91.206.120.0', '91.206.121.255', 1540257792, 1540258303, 'RU', 'Russian Federation'), +('91.206.122.0', '91.206.123.255', 1540258304, 1540258815, 'IR', 'Iran, Islamic Republic of'), +('91.206.124.0', '91.206.125.255', 1540258816, 1540259327, 'UA', 'Ukraine'), +('91.206.126.0', '91.206.127.255', 1540259328, 1540259839, 'RU', 'Russian Federation'), +('91.206.128.0', '91.206.129.255', 1540259840, 1540260351, 'IT', 'Italy'), +('91.206.130.0', '91.206.131.255', 1540260352, 1540260863, 'RU', 'Russian Federation'), +('91.206.132.0', '91.206.133.255', 1540260864, 1540261375, 'LT', 'Lithuania'), +('91.206.134.0', '91.206.135.255', 1540261376, 1540261887, 'SA', 'Saudi Arabia'), +('91.206.136.0', '91.206.137.255', 1540261888, 1540262399, 'NL', 'Netherlands'), +('91.206.138.0', '91.206.139.255', 1540262400, 1540262911, 'BG', 'Bulgaria'), +('91.206.140.0', '91.206.141.255', 1540262912, 1540263423, 'RO', 'Romania'), +('91.206.142.0', '91.206.143.255', 1540263424, 1540263935, 'DE', 'Germany'), +('91.206.144.0', '91.206.145.255', 1540263936, 1540264447, 'GB', 'United Kingdom'), +('91.206.146.0', '91.206.151.255', 1540264448, 1540265983, 'RU', 'Russian Federation'), +('91.206.152.0', '91.206.153.255', 1540265984, 1540266495, 'DE', 'Germany'), +('91.206.154.0', '91.206.155.255', 1540266496, 1540267007, 'PL', 'Poland'), +('91.206.156.0', '91.206.157.255', 1540267008, 1540267519, 'FR', 'France'), +('91.206.158.0', '91.206.161.255', 1540267520, 1540268543, 'RO', 'Romania'), +('91.206.162.0', '91.206.163.255', 1540268544, 1540269055, 'RU', 'Russian Federation'), +('91.206.164.0', '91.206.165.255', 1540269056, 1540269567, 'DK', 'Denmark'), +('91.206.166.0', '91.206.167.255', 1540269568, 1540270079, 'RU', 'Russian Federation'), +('91.206.168.0', '91.206.169.255', 1540270080, 1540270591, 'GB', 'United Kingdom'), +('91.206.170.0', '91.206.171.255', 1540270592, 1540271103, 'IL', 'Israel'), +('91.206.172.0', '91.206.173.255', 1540271104, 1540271615, 'PL', 'Poland'), +('91.206.174.0', '91.206.175.255', 1540271616, 1540272127, 'SE', 'Sweden'), +('91.206.176.0', '91.206.177.255', 1540272128, 1540272639, 'GB', 'United Kingdom'), +('91.206.178.0', '91.206.181.255', 1540272640, 1540273663, 'PL', 'Poland'), +('91.206.182.0', '91.206.183.255', 1540273664, 1540274175, 'GB', 'United Kingdom'), +('91.206.184.0', '91.206.185.255', 1540274176, 1540274687, 'DE', 'Germany'), +('91.206.186.0', '91.206.187.255', 1540274688, 1540275199, 'UA', 'Ukraine'), +('91.206.188.0', '91.206.189.255', 1540275200, 1540275711, 'DE', 'Germany'), +('91.206.190.0', '91.206.191.255', 1540275712, 1540276223, 'GR', 'Greece'), +('91.206.192.0', '91.206.193.255', 1540276224, 1540276735, 'AT', 'Austria'), +('91.206.194.0', '91.206.195.255', 1540276736, 1540277247, 'RO', 'Romania'), +('91.206.196.0', '91.206.197.255', 1540277248, 1540277759, 'RU', 'Russian Federation'), +('91.206.198.0', '91.206.199.255', 1540277760, 1540278271, 'FR', 'France'), +('91.206.200.0', '91.206.201.255', 1540278272, 1540278783, 'UA', 'Ukraine'), +('91.206.202.0', '91.206.205.255', 1540278784, 1540279807, 'RU', 'Russian Federation'), +('91.206.206.0', '91.206.207.255', 1540279808, 1540280319, 'RO', 'Romania'), +('91.206.208.0', '91.206.209.255', 1540280320, 1540280831, 'MD', 'Moldova, Republic of'), +('91.206.210.0', '91.206.211.255', 1540280832, 1540281343, 'PL', 'Poland'), +('91.206.212.0', '91.206.213.255', 1540281344, 1540281855, 'UA', 'Ukraine'), +('91.206.214.0', '91.206.215.255', 1540281856, 1540282367, 'DE', 'Germany'), +('91.206.216.0', '91.206.217.255', 1540282368, 1540282879, 'RU', 'Russian Federation'), +('91.206.218.0', '91.206.219.255', 1540282880, 1540283391, 'UA', 'Ukraine'), +('91.206.220.0', '91.206.223.255', 1540283392, 1540284415, 'RU', 'Russian Federation'), +('91.206.224.0', '91.206.225.255', 1540284416, 1540284927, 'AT', 'Austria'), +('91.206.226.0', '91.206.227.255', 1540284928, 1540285439, 'UA', 'Ukraine'), +('91.206.228.0', '91.206.229.255', 1540285440, 1540285951, 'DE', 'Germany'), +('91.206.230.0', '91.206.231.255', 1540285952, 1540286463, 'RU', 'Russian Federation'), +('91.206.232.0', '91.206.233.255', 1540286464, 1540286975, 'NL', 'Netherlands'), +('91.206.234.0', '91.206.235.255', 1540286976, 1540287487, 'GB', 'United Kingdom'), +('91.206.236.0', '91.206.239.255', 1540287488, 1540288511, 'AT', 'Austria'), +('91.206.240.0', '91.206.243.255', 1540288512, 1540289535, 'RU', 'Russian Federation'), +('91.206.244.0', '91.206.245.255', 1540289536, 1540290047, 'PL', 'Poland'), +('91.206.246.0', '91.206.247.255', 1540290048, 1540290559, 'NL', 'Netherlands'), +('91.206.248.0', '91.206.249.255', 1540290560, 1540291071, 'RU', 'Russian Federation'), +('91.206.250.0', '91.206.251.255', 1540291072, 1540291583, 'BE', 'Belgium'), +('91.206.252.0', '91.206.253.255', 1540291584, 1540292095, 'UA', 'Ukraine'), +('91.206.254.0', '91.206.255.255', 1540292096, 1540292607, 'RU', 'Russian Federation'), +('91.207.0.0', '91.207.1.255', 1540292608, 1540293119, 'FR', 'France'), +('91.207.2.0', '91.207.3.255', 1540293120, 1540293631, 'DK', 'Denmark'), +('91.207.4.0', '91.207.9.255', 1540293632, 1540295167, 'UA', 'Ukraine'), +('91.207.10.0', '91.207.11.255', 1540295168, 1540295679, 'PL', 'Poland'), +('91.207.12.0', '91.207.13.255', 1540295680, 1540296191, 'SA', 'Saudi Arabia'), +('91.207.14.0', '91.207.15.255', 1540296192, 1540296703, 'PL', 'Poland'), +('91.207.16.0', '91.207.17.255', 1540296704, 1540297215, 'DE', 'Germany'), +('91.207.18.0', '91.207.21.255', 1540297216, 1540298239, 'FR', 'France'), +('91.207.22.0', '91.207.23.255', 1540298240, 1540298751, 'HR', 'Croatia'), +('91.207.24.0', '91.207.25.255', 1540298752, 1540299263, 'RU', 'Russian Federation'), +('91.207.26.0', '91.207.27.255', 1540299264, 1540299775, 'UA', 'Ukraine'), +('91.207.28.0', '91.207.29.255', 1540299776, 1540300287, 'KZ', 'Kazakstan'), +('91.207.30.0', '91.207.31.255', 1540300288, 1540300799, 'RU', 'Russian Federation'), +('91.207.32.0', '91.207.33.255', 1540300800, 1540301311, 'DK', 'Denmark'), +('91.207.34.0', '91.207.35.255', 1540301312, 1540301823, 'IL', 'Israel'), +('91.207.36.0', '91.207.39.255', 1540301824, 1540302847, 'GB', 'United Kingdom'), +('91.207.40.0', '91.207.43.255', 1540302848, 1540303871, 'RU', 'Russian Federation'), +('91.207.44.0', '91.207.47.255', 1540303872, 1540304895, 'UA', 'Ukraine'), +('91.207.48.0', '91.207.49.255', 1540304896, 1540305407, 'PL', 'Poland'), +('91.207.50.0', '91.207.51.255', 1540305408, 1540305919, 'GB', 'United Kingdom'), +('91.207.52.0', '91.207.53.255', 1540305920, 1540306431, 'RU', 'Russian Federation'), +('91.207.54.0', '91.207.55.255', 1540306432, 1540306943, 'UA', 'Ukraine'), +('91.207.56.0', '91.207.57.255', 1540306944, 1540307455, 'GB', 'United Kingdom'), +('91.207.58.0', '91.207.59.255', 1540307456, 1540307967, 'RU', 'Russian Federation'), +('91.207.60.0', '91.207.61.255', 1540307968, 1540308479, 'UA', 'Ukraine'), +('91.207.62.0', '91.207.63.255', 1540308480, 1540308991, 'RS', 'Serbia'), +('91.207.64.0', '91.207.65.255', 1540308992, 1540309503, 'PL', 'Poland'), +('91.207.66.0', '91.207.67.255', 1540309504, 1540310015, 'UA', 'Ukraine'), +('91.207.68.0', '91.207.69.255', 1540310016, 1540310527, 'PL', 'Poland'), +('91.207.70.0', '91.207.79.255', 1540310528, 1540313087, 'RU', 'Russian Federation'), +('91.207.80.0', '91.207.81.255', 1540313088, 1540313599, 'SE', 'Sweden'), +('91.207.82.0', '91.207.87.255', 1540313600, 1540315135, 'RU', 'Russian Federation'), +('91.207.88.0', '91.207.89.255', 1540315136, 1540315647, 'UA', 'Ukraine'), +('91.207.90.0', '91.207.91.255', 1540315648, 1540316159, 'IL', 'Israel'), +('91.207.92.0', '91.207.93.255', 1540316160, 1540316671, 'DE', 'Germany'), +('91.207.94.0', '91.207.95.255', 1540316672, 1540317183, 'RO', 'Romania'), +('91.207.96.0', '91.207.97.255', 1540317184, 1540317695, 'KG', 'Kyrgyzstan'), +('91.207.98.0', '91.207.99.255', 1540317696, 1540318207, 'UA', 'Ukraine'), +('91.207.100.0', '91.207.101.255', 1540318208, 1540318719, 'RU', 'Russian Federation'), +('91.207.102.0', '91.207.103.255', 1540318720, 1540319231, 'RO', 'Romania'), +('91.207.104.0', '91.207.107.255', 1540319232, 1540320255, 'UA', 'Ukraine'), +('91.207.108.0', '91.207.109.255', 1540320256, 1540320767, 'RU', 'Russian Federation'), +('91.207.110.0', '91.207.111.255', 1540320768, 1540321279, 'FR', 'France'), +('91.207.112.0', '91.207.113.255', 1540321280, 1540321791, 'SE', 'Sweden'), +('91.207.114.0', '91.207.115.255', 1540321792, 1540322303, 'RU', 'Russian Federation'), +('91.207.116.0', '91.207.117.255', 1540322304, 1540322815, 'UA', 'Ukraine'), +('91.207.118.0', '91.207.119.255', 1540322816, 1540323327, 'DE', 'Germany'), +('91.207.120.0', '91.207.121.255', 1540323328, 1540323839, 'RO', 'Romania'), +('91.207.122.0', '91.207.123.255', 1540323840, 1540324351, 'UA', 'Ukraine'), +('91.207.124.0', '91.207.125.255', 1540324352, 1540324863, 'RO', 'Romania'), +('91.207.126.0', '91.207.127.255', 1540324864, 1540325375, 'PL', 'Poland'), +('91.207.128.0', '91.207.129.255', 1540325376, 1540325887, 'DE', 'Germany'), +('91.207.130.0', '91.207.131.255', 1540325888, 1540326399, 'LI', 'Liechtenstein'), +('91.207.132.0', '91.207.133.255', 1540326400, 1540326911, 'RU', 'Russian Federation'), +('91.207.134.0', '91.207.135.255', 1540326912, 1540327423, 'AT', 'Austria'), +('91.207.136.0', '91.207.145.255', 1540327424, 1540329983, 'RU', 'Russian Federation'), +('91.207.146.0', '91.207.147.255', 1540329984, 1540330495, 'UA', 'Ukraine'), +('91.207.148.0', '91.207.149.255', 1540330496, 1540331007, 'PL', 'Poland'), +('91.207.150.0', '91.207.151.255', 1540331008, 1540331519, 'IT', 'Italy'), +('91.207.152.0', '91.207.153.255', 1540331520, 1540332031, 'GB', 'United Kingdom'), +('91.207.154.0', '91.207.155.255', 1540332032, 1540332543, 'RU', 'Russian Federation'), +('91.207.156.0', '91.207.157.255', 1540332544, 1540333055, 'PL', 'Poland'), +('91.207.158.0', '91.207.159.255', 1540333056, 1540333567, 'NO', 'Norway'), +('91.207.160.0', '91.207.161.255', 1540333568, 1540334079, 'RO', 'Romania'), +('91.207.162.0', '91.207.163.255', 1540334080, 1540334591, 'DE', 'Germany'), +('91.207.164.0', '91.207.165.255', 1540334592, 1540335103, 'RU', 'Russian Federation'), +('91.207.166.0', '91.207.169.255', 1540335104, 1540336127, 'PL', 'Poland'), +('91.207.170.0', '91.207.171.255', 1540336128, 1540336639, 'RU', 'Russian Federation'), +('91.207.172.0', '91.207.175.255', 1540336640, 1540337663, 'MC', 'Monaco'), +('91.207.176.0', '91.207.177.255', 1540337664, 1540338175, 'FR', 'France'), +('91.207.178.0', '91.207.181.255', 1540338176, 1540339199, 'RU', 'Russian Federation'), +('91.207.182.0', '91.207.183.255', 1540339200, 1540339711, 'UA', 'Ukraine'), +('91.207.184.0', '91.207.187.255', 1540339712, 1540340735, 'PL', 'Poland'), +('91.207.188.0', '91.207.189.255', 1540340736, 1540341247, 'CZ', 'Czech Republic'), +('91.207.190.0', '91.207.191.255', 1540341248, 1540341759, 'BG', 'Bulgaria'), +('91.207.192.0', '91.207.193.255', 1540341760, 1540342271, 'GB', 'United Kingdom'), +('91.207.194.0', '91.207.195.255', 1540342272, 1540342783, 'UA', 'Ukraine'), +('91.207.196.0', '91.207.197.255', 1540342784, 1540343295, 'ES', 'Spain'), +('91.207.198.0', '91.207.199.255', 1540343296, 1540343807, 'GB', 'United Kingdom'), +('91.207.200.0', '91.207.203.255', 1540343808, 1540344831, 'PL', 'Poland'), +('91.207.204.0', '91.207.205.255', 1540344832, 1540345343, 'UA', 'Ukraine'), +('91.207.206.0', '91.207.207.255', 1540345344, 1540345855, 'IL', 'Israel'), +('91.207.208.0', '91.207.209.255', 1540345856, 1540346367, 'FR', 'France'), +('91.207.210.0', '91.207.211.255', 1540346368, 1540346879, 'UA', 'Ukraine'), +('91.207.212.0', '91.207.213.255', 1540346880, 1540347391, 'GB', 'United Kingdom'), +('91.207.214.0', '91.207.215.255', 1540347392, 1540347903, 'DK', 'Denmark'), +('91.207.216.0', '91.207.217.255', 1540347904, 1540348415, 'RO', 'Romania'), +('91.207.218.0', '91.207.219.255', 1540348416, 1540348927, 'UA', 'Ukraine'), +('91.207.220.0', '91.207.221.255', 1540348928, 1540349439, 'GB', 'United Kingdom'), +('91.207.222.0', '91.207.223.255', 1540349440, 1540349951, 'AT', 'Austria'), +('91.207.224.0', '91.207.225.255', 1540349952, 1540350463, 'UA', 'Ukraine'), +('91.207.226.0', '91.207.227.255', 1540350464, 1540350975, 'NO', 'Norway'), +('91.207.228.0', '91.207.229.255', 1540350976, 1540351487, 'DK', 'Denmark'), +('91.207.230.0', '91.207.231.255', 1540351488, 1540351999, 'RO', 'Romania'), +('91.207.232.0', '91.207.233.255', 1540352000, 1540352511, 'NL', 'Netherlands'), +('91.207.234.0', '91.207.235.255', 1540352512, 1540353023, 'RU', 'Russian Federation'), +('91.207.236.0', '91.207.237.255', 1540353024, 1540353535, 'GR', 'Greece'), +('91.207.238.0', '91.207.239.255', 1540353536, 1540354047, 'RU', 'Russian Federation'), +('91.207.240.0', '91.207.241.255', 1540354048, 1540354559, 'IL', 'Israel'), +('91.207.242.0', '91.207.243.255', 1540354560, 1540355071, 'PL', 'Poland'), +('91.207.244.0', '91.207.245.255', 1540355072, 1540355583, 'UA', 'Ukraine'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('91.207.246.0', '91.207.249.255', 1540355584, 1540356607, 'RU', 'Russian Federation'), +('91.207.250.0', '91.207.251.255', 1540356608, 1540357119, 'DE', 'Germany'), +('91.207.252.0', '91.207.253.255', 1540357120, 1540357631, 'RU', 'Russian Federation'), +('91.207.254.0', '91.207.255.255', 1540357632, 1540358143, 'FR', 'France'), +('91.208.0.0', '91.208.0.255', 1540358144, 1540358399, 'RU', 'Russian Federation'), +('91.208.1.0', '91.208.1.255', 1540358400, 1540358655, 'GB', 'United Kingdom'), +('91.208.2.0', '91.208.2.255', 1540358656, 1540358911, 'SE', 'Sweden'), +('91.208.3.0', '91.208.3.255', 1540358912, 1540359167, 'GB', 'United Kingdom'), +('91.208.4.0', '91.208.4.255', 1540359168, 1540359423, 'SA', 'Saudi Arabia'), +('91.208.5.0', '91.208.5.255', 1540359424, 1540359679, 'DE', 'Germany'), +('91.208.6.0', '91.208.6.255', 1540359680, 1540359935, 'GB', 'United Kingdom'), +('91.208.7.0', '91.208.7.255', 1540359936, 1540360191, 'AT', 'Austria'), +('91.208.8.0', '91.208.8.255', 1540360192, 1540360447, 'NO', 'Norway'), +('91.208.9.0', '91.208.9.255', 1540360448, 1540360703, 'FR', 'France'), +('91.208.10.0', '91.208.10.255', 1540360704, 1540360959, 'PL', 'Poland'), +('91.208.11.0', '91.208.11.255', 1540360960, 1540361215, 'GB', 'United Kingdom'), +('91.208.12.0', '91.208.12.255', 1540361216, 1540361471, 'BE', 'Belgium'), +('91.208.13.0', '91.208.13.255', 1540361472, 1540361727, 'DE', 'Germany'), +('91.208.14.0', '91.208.14.255', 1540361728, 1540361983, 'IT', 'Italy'), +('91.208.15.0', '91.208.15.255', 1540361984, 1540362239, 'EE', 'Estonia'), +('91.208.16.0', '91.208.16.255', 1540362240, 1540362495, 'DK', 'Denmark'), +('91.208.17.0', '91.208.18.255', 1540362496, 1540363007, 'DE', 'Germany'), +('91.208.19.0', '91.208.19.255', 1540363008, 1540363263, 'FR', 'France'), +('91.208.20.0', '91.208.20.255', 1540363264, 1540363519, 'RU', 'Russian Federation'), +('91.208.21.0', '91.208.21.255', 1540363520, 1540363775, 'GB', 'United Kingdom'), +('91.208.22.0', '91.208.22.255', 1540363776, 1540364031, 'IS', 'Iceland'), +('91.208.23.0', '91.208.23.255', 1540364032, 1540364287, 'RU', 'Russian Federation'), +('91.208.24.0', '91.208.24.255', 1540364288, 1540364543, 'NO', 'Norway'), +('91.208.25.0', '91.208.25.255', 1540364544, 1540364799, 'UA', 'Ukraine'), +('91.208.26.0', '91.208.26.255', 1540364800, 1540365055, 'EE', 'Estonia'), +('91.208.27.0', '91.208.27.255', 1540365056, 1540365311, 'SI', 'Slovenia'), +('91.208.28.0', '91.208.28.255', 1540365312, 1540365567, 'GB', 'United Kingdom'), +('91.208.29.0', '91.208.29.255', 1540365568, 1540365823, 'RU', 'Russian Federation'), +('91.208.30.0', '91.208.30.255', 1540365824, 1540366079, 'CH', 'Switzerland'), +('91.208.31.0', '91.208.31.255', 1540366080, 1540366335, 'IE', 'Ireland'), +('91.208.32.0', '91.208.32.255', 1540366336, 1540366591, 'PL', 'Poland'), +('91.208.33.0', '91.208.33.255', 1540366592, 1540366847, 'RU', 'Russian Federation'), +('91.208.34.0', '91.208.34.255', 1540366848, 1540367103, 'AT', 'Austria'), +('91.208.35.0', '91.208.35.255', 1540367104, 1540367359, 'UA', 'Ukraine'), +('91.208.36.0', '91.208.36.255', 1540367360, 1540367615, 'HU', 'Hungary'), +('91.208.37.0', '91.208.37.255', 1540367616, 1540367871, 'BE', 'Belgium'), +('91.208.38.0', '91.208.38.255', 1540367872, 1540368127, 'DE', 'Germany'), +('91.208.39.0', '91.208.39.255', 1540368128, 1540368383, 'RU', 'Russian Federation'), +('91.208.40.0', '91.208.40.255', 1540368384, 1540368639, 'FR', 'France'), +('91.208.41.0', '91.208.41.255', 1540368640, 1540368895, 'SK', 'Slovakia'), +('91.208.42.0', '91.208.43.255', 1540368896, 1540369407, 'RU', 'Russian Federation'), +('91.208.44.0', '91.208.44.255', 1540369408, 1540369663, 'IE', 'Ireland'), +('91.208.45.0', '91.208.45.255', 1540369664, 1540369919, 'DE', 'Germany'), +('91.208.46.0', '91.208.46.255', 1540369920, 1540370175, 'UA', 'Ukraine'), +('91.208.47.0', '91.208.47.255', 1540370176, 1540370431, 'DE', 'Germany'), +('91.208.48.0', '91.208.48.255', 1540370432, 1540370687, 'LB', 'Lebanon'), +('91.208.49.0', '91.208.49.255', 1540370688, 1540370943, 'NL', 'Netherlands'), +('91.208.50.0', '91.208.50.255', 1540370944, 1540371199, 'PL', 'Poland'), +('91.208.51.0', '91.208.51.255', 1540371200, 1540371455, 'BE', 'Belgium'), +('91.208.52.0', '91.208.52.255', 1540371456, 1540371711, 'UA', 'Ukraine'), +('91.208.53.0', '91.208.53.255', 1540371712, 1540371967, 'GB', 'United Kingdom'), +('91.208.54.0', '91.208.54.255', 1540371968, 1540372223, 'NO', 'Norway'), +('91.208.55.0', '91.208.55.255', 1540372224, 1540372479, 'PL', 'Poland'), +('91.208.56.0', '91.208.56.255', 1540372480, 1540372735, 'EU', 'Europe'), +('91.208.57.0', '91.208.57.255', 1540372736, 1540372991, 'GR', 'Greece'), +('91.208.58.0', '91.208.58.255', 1540372992, 1540373247, 'DE', 'Germany'), +('91.208.59.0', '91.208.59.255', 1540373248, 1540373503, 'UA', 'Ukraine'), +('91.208.60.0', '91.208.60.255', 1540373504, 1540373759, 'NL', 'Netherlands'), +('91.208.61.0', '91.208.61.255', 1540373760, 1540374015, 'TR', 'Turkey'), +('91.208.62.0', '91.208.62.255', 1540374016, 1540374271, 'NL', 'Netherlands'), +('91.208.63.0', '91.208.63.255', 1540374272, 1540374527, 'HU', 'Hungary'), +('91.208.64.0', '91.208.64.255', 1540374528, 1540374783, 'RU', 'Russian Federation'), +('91.208.65.0', '91.208.65.255', 1540374784, 1540375039, 'UA', 'Ukraine'), +('91.208.66.0', '91.208.66.255', 1540375040, 1540375295, 'DE', 'Germany'), +('91.208.67.0', '91.208.67.255', 1540375296, 1540375551, 'GB', 'United Kingdom'), +('91.208.68.0', '91.208.68.255', 1540375552, 1540375807, 'DE', 'Germany'), +('91.208.69.0', '91.208.69.255', 1540375808, 1540376063, 'NL', 'Netherlands'), +('91.208.70.0', '91.208.70.255', 1540376064, 1540376319, 'TR', 'Turkey'), +('91.208.71.0', '91.208.71.255', 1540376320, 1540376575, 'DK', 'Denmark'), +('91.208.72.0', '91.208.72.255', 1540376576, 1540376831, 'PL', 'Poland'), +('91.208.73.0', '91.208.73.255', 1540376832, 1540377087, 'RU', 'Russian Federation'), +('91.208.74.0', '91.208.74.255', 1540377088, 1540377343, 'DE', 'Germany'), +('91.208.75.0', '91.208.75.255', 1540377344, 1540377599, 'RO', 'Romania'), +('91.208.76.0', '91.208.76.255', 1540377600, 1540377855, 'AM', 'Armenia'), +('91.208.77.0', '91.208.77.255', 1540377856, 1540378111, 'ES', 'Spain'), +('91.208.78.0', '91.208.78.255', 1540378112, 1540378367, 'RU', 'Russian Federation'), +('91.208.79.0', '91.208.79.255', 1540378368, 1540378623, 'CH', 'Switzerland'), +('91.208.80.0', '91.208.80.255', 1540378624, 1540378879, 'AT', 'Austria'), +('91.208.81.0', '91.208.81.255', 1540378880, 1540379135, 'SE', 'Sweden'), +('91.208.82.0', '91.208.82.255', 1540379136, 1540379391, 'CH', 'Switzerland'), +('91.208.83.0', '91.208.83.255', 1540379392, 1540379647, 'DE', 'Germany'), +('91.208.84.0', '91.208.84.255', 1540379648, 1540379903, 'RU', 'Russian Federation'), +('91.208.85.0', '91.208.85.255', 1540379904, 1540380159, 'EU', 'Europe'), +('91.208.86.0', '91.208.86.255', 1540380160, 1540380415, 'IL', 'Israel'), +('91.208.87.0', '91.208.87.255', 1540380416, 1540380671, 'NL', 'Netherlands'), +('91.208.88.0', '91.208.88.255', 1540380672, 1540380927, 'SI', 'Slovenia'), +('91.208.89.0', '91.208.89.255', 1540380928, 1540381183, 'RS', 'Serbia'), +('91.208.90.0', '91.208.90.255', 1540381184, 1540381439, 'RO', 'Romania'), +('91.208.91.0', '91.208.91.255', 1540381440, 1540381695, 'AT', 'Austria'), +('91.208.92.0', '91.208.92.255', 1540381696, 1540381951, 'RO', 'Romania'), +('91.208.93.0', '91.208.93.255', 1540381952, 1540382207, 'PL', 'Poland'), +('91.208.94.0', '91.208.94.255', 1540382208, 1540382463, 'UA', 'Ukraine'), +('91.208.95.0', '91.208.95.255', 1540382464, 1540382719, 'GB', 'United Kingdom'), +('91.208.96.0', '91.208.96.255', 1540382720, 1540382975, 'LB', 'Lebanon'), +('91.208.97.0', '91.208.97.255', 1540382976, 1540383231, 'UA', 'Ukraine'), +('91.208.98.0', '91.208.98.255', 1540383232, 1540383487, 'AT', 'Austria'), +('91.208.99.0', '91.208.99.255', 1540383488, 1540383743, 'GB', 'United Kingdom'), +('91.208.100.0', '91.208.100.255', 1540383744, 1540383999, 'RO', 'Romania'), +('91.208.101.0', '91.208.101.255', 1540384000, 1540384255, 'SI', 'Slovenia'), +('91.208.102.0', '91.208.102.255', 1540384256, 1540384511, 'FR', 'France'), +('91.208.103.0', '91.208.103.255', 1540384512, 1540384767, 'SE', 'Sweden'), +('91.208.104.0', '91.208.104.255', 1540384768, 1540385023, 'HR', 'Croatia'), +('91.208.105.0', '91.208.105.255', 1540385024, 1540385279, 'GB', 'United Kingdom'), +('91.208.106.0', '91.208.106.255', 1540385280, 1540385535, 'PL', 'Poland'), +('91.208.107.0', '91.208.107.255', 1540385536, 1540385791, 'DE', 'Germany'), +('91.208.108.0', '91.208.109.255', 1540385792, 1540386303, 'FR', 'France'), +('91.208.110.0', '91.208.110.255', 1540386304, 1540386559, 'NL', 'Netherlands'), +('91.208.111.0', '91.208.111.255', 1540386560, 1540386815, 'GB', 'United Kingdom'), +('91.208.112.0', '91.208.112.255', 1540386816, 1540387071, 'NL', 'Netherlands'), +('91.208.113.0', '91.208.113.255', 1540387072, 1540387327, 'RU', 'Russian Federation'), +('91.208.114.0', '91.208.114.255', 1540387328, 1540387583, 'GB', 'United Kingdom'), +('91.208.115.0', '91.208.116.255', 1540387584, 1540388095, 'UA', 'Ukraine'), +('91.208.117.0', '91.208.117.255', 1540388096, 1540388351, 'GB', 'United Kingdom'), +('91.208.118.0', '91.208.118.255', 1540388352, 1540388607, 'IL', 'Israel'), +('91.208.119.0', '91.208.119.255', 1540388608, 1540388863, 'RU', 'Russian Federation'), +('91.208.120.0', '91.208.120.255', 1540388864, 1540389119, 'RO', 'Romania'), +('91.208.121.0', '91.208.121.255', 1540389120, 1540389375, 'RU', 'Russian Federation'), +('91.208.122.0', '91.208.122.255', 1540389376, 1540389631, 'GB', 'United Kingdom'), +('91.208.123.0', '91.208.123.255', 1540389632, 1540389887, 'RO', 'Romania'), +('91.208.124.0', '91.208.124.255', 1540389888, 1540390143, 'GB', 'United Kingdom'), +('91.208.125.0', '91.208.125.255', 1540390144, 1540390399, 'SI', 'Slovenia'), +('91.208.126.0', '91.208.126.255', 1540390400, 1540390655, 'RU', 'Russian Federation'), +('91.208.127.0', '91.208.127.255', 1540390656, 1540390911, 'UA', 'Ukraine'), +('91.208.128.0', '91.208.128.255', 1540390912, 1540391167, 'SA', 'Saudi Arabia'), +('91.208.129.0', '91.208.129.255', 1540391168, 1540391423, 'IL', 'Israel'), +('91.208.130.0', '91.208.130.255', 1540391424, 1540391679, 'CH', 'Switzerland'), +('91.208.131.0', '91.208.131.255', 1540391680, 1540391935, 'NL', 'Netherlands'), +('91.208.132.0', '91.208.132.255', 1540391936, 1540392191, 'RU', 'Russian Federation'), +('91.208.133.0', '91.208.133.255', 1540392192, 1540392447, 'PL', 'Poland'), +('91.208.134.0', '91.208.134.255', 1540392448, 1540392703, 'RU', 'Russian Federation'), +('91.208.135.0', '91.208.135.255', 1540392704, 1540392959, 'PL', 'Poland'), +('91.208.136.0', '91.208.137.255', 1540392960, 1540393471, 'GB', 'United Kingdom'), +('91.208.138.0', '91.208.138.255', 1540393472, 1540393727, 'UA', 'Ukraine'), +('91.208.139.0', '91.208.140.255', 1540393728, 1540394239, 'IL', 'Israel'), +('91.208.141.0', '91.208.141.255', 1540394240, 1540394495, 'GB', 'United Kingdom'), +('91.208.142.0', '91.208.142.255', 1540394496, 1540394751, 'RO', 'Romania'), +('91.208.143.0', '91.208.143.255', 1540394752, 1540395007, 'DK', 'Denmark'), +('91.208.144.0', '91.208.144.255', 1540395008, 1540395263, 'GE', 'Georgia'), +('91.208.145.0', '91.208.145.255', 1540395264, 1540395519, 'UA', 'Ukraine'), +('91.208.147.0', '91.208.147.255', 1540395776, 1540396031, 'IL', 'Israel'), +('91.208.148.0', '91.208.148.255', 1540396032, 1540396287, 'NO', 'Norway'), +('91.208.149.0', '91.208.149.255', 1540396288, 1540396543, 'AM', 'Armenia'), +('91.208.150.0', '91.208.150.255', 1540396544, 1540396799, 'PL', 'Poland'), +('91.208.151.0', '91.208.151.255', 1540396800, 1540397055, 'RU', 'Russian Federation'), +('91.208.152.0', '91.208.152.255', 1540397056, 1540397311, 'IT', 'Italy'), +('91.208.153.0', '91.208.154.255', 1540397312, 1540397823, 'UA', 'Ukraine'), +('91.208.155.0', '91.208.155.255', 1540397824, 1540398079, 'DE', 'Germany'), +('91.208.156.0', '91.208.156.255', 1540398080, 1540398335, 'SA', 'Saudi Arabia'), +('91.208.157.0', '91.208.157.255', 1540398336, 1540398591, 'DK', 'Denmark'), +('91.208.158.0', '91.208.158.255', 1540398592, 1540398847, 'IT', 'Italy'), +('91.208.159.0', '91.208.160.255', 1540398848, 1540399359, 'DE', 'Germany'), +('91.208.161.0', '91.208.161.255', 1540399360, 1540399615, 'IL', 'Israel'), +('91.208.162.0', '91.208.162.255', 1540399616, 1540399871, 'RU', 'Russian Federation'), +('91.208.163.0', '91.208.163.255', 1540399872, 1540400127, 'GB', 'United Kingdom'), +('91.208.164.0', '91.208.164.255', 1540400128, 1540400383, 'NL', 'Netherlands'), +('91.208.165.0', '91.208.165.255', 1540400384, 1540400639, 'IR', 'Iran, Islamic Republic of'), +('91.208.166.0', '91.208.166.255', 1540400640, 1540400895, 'RU', 'Russian Federation'), +('91.208.167.0', '91.208.167.255', 1540400896, 1540401151, 'NL', 'Netherlands'), +('91.208.168.0', '91.208.168.255', 1540401152, 1540401407, 'SI', 'Slovenia'), +('91.208.169.0', '91.208.169.255', 1540401408, 1540401663, 'AT', 'Austria'), +('91.208.170.0', '91.208.170.255', 1540401664, 1540401919, 'GB', 'United Kingdom'), +('91.208.171.0', '91.208.171.255', 1540401920, 1540402175, 'RU', 'Russian Federation'), +('91.208.172.0', '91.208.172.255', 1540402176, 1540402431, 'FR', 'France'), +('91.208.173.0', '91.208.173.255', 1540402432, 1540402687, 'CH', 'Switzerland'), +('91.208.174.0', '91.208.174.255', 1540402688, 1540402943, 'SE', 'Sweden'), +('91.208.175.0', '91.208.175.255', 1540402944, 1540403199, 'NL', 'Netherlands'), +('91.208.176.0', '91.208.176.255', 1540403200, 1540403455, 'AT', 'Austria'), +('91.208.177.0', '91.208.177.255', 1540403456, 1540403711, 'GB', 'United Kingdom'), +('91.208.178.0', '91.208.179.255', 1540403712, 1540404223, 'RO', 'Romania'), +('91.208.180.0', '91.208.180.255', 1540404224, 1540404479, 'CH', 'Switzerland'), +('91.208.181.0', '91.208.181.255', 1540404480, 1540404735, 'FR', 'France'), +('91.208.182.0', '91.208.182.255', 1540404736, 1540404991, 'PL', 'Poland'), +('91.208.183.0', '91.208.183.255', 1540404992, 1540405247, 'RU', 'Russian Federation'), +('91.208.184.0', '91.208.184.255', 1540405248, 1540405503, 'GB', 'United Kingdom'), +('91.208.185.0', '91.208.185.255', 1540405504, 1540405759, 'RU', 'Russian Federation'), +('91.208.186.0', '91.208.186.255', 1540405760, 1540406015, 'PL', 'Poland'), +('91.208.187.0', '91.208.187.255', 1540406016, 1540406271, 'RU', 'Russian Federation'), +('91.208.188.0', '91.208.188.255', 1540406272, 1540406527, 'SE', 'Sweden'), +('91.208.189.0', '91.208.190.255', 1540406528, 1540407039, 'PL', 'Poland'), +('91.208.191.0', '91.208.193.255', 1540407040, 1540407807, 'DE', 'Germany'), +('91.208.194.0', '91.208.194.255', 1540407808, 1540408063, 'UA', 'Ukraine'), +('91.208.195.0', '91.208.195.255', 1540408064, 1540408319, 'IT', 'Italy'), +('91.208.196.0', '91.208.196.255', 1540408320, 1540408575, 'NL', 'Netherlands'), +('91.208.197.0', '91.208.197.255', 1540408576, 1540408831, 'HR', 'Croatia'), +('91.208.198.0', '91.208.198.255', 1540408832, 1540409087, 'UA', 'Ukraine'), +('91.208.199.0', '91.208.199.255', 1540409088, 1540409343, 'TR', 'Turkey'), +('91.208.200.0', '91.208.200.255', 1540409344, 1540409599, 'SI', 'Slovenia'), +('91.208.201.0', '91.208.201.255', 1540409600, 1540409855, 'AT', 'Austria'), +('91.208.202.0', '91.208.202.255', 1540409856, 1540410111, 'DE', 'Germany'), +('91.208.203.0', '91.208.203.255', 1540410112, 1540410367, 'KW', 'Kuwait'), +('91.208.204.0', '91.208.204.255', 1540410368, 1540410623, 'CH', 'Switzerland'), +('91.208.205.0', '91.208.205.255', 1540410624, 1540410879, 'RU', 'Russian Federation'), +('91.208.206.0', '91.208.206.255', 1540410880, 1540411135, 'TR', 'Turkey'), +('91.208.207.0', '91.208.207.255', 1540411136, 1540411391, 'SG', 'Singapore'), +('91.208.208.0', '91.208.208.255', 1540411392, 1540411647, 'RU', 'Russian Federation'), +('91.208.209.0', '91.208.209.255', 1540411648, 1540411903, 'FR', 'France'), +('91.208.210.0', '91.208.210.255', 1540411904, 1540412159, 'RU', 'Russian Federation'), +('91.208.211.0', '91.208.211.255', 1540412160, 1540412415, 'BE', 'Belgium'), +('91.208.212.0', '91.208.212.255', 1540412416, 1540412671, 'DE', 'Germany'), +('91.208.213.0', '91.208.213.255', 1540412672, 1540412927, 'RO', 'Romania'), +('91.208.214.0', '91.208.214.255', 1540412928, 1540413183, 'FR', 'France'), +('91.208.215.0', '91.208.215.255', 1540413184, 1540413439, 'RO', 'Romania'), +('91.208.216.0', '91.208.216.255', 1540413440, 1540413695, 'RU', 'Russian Federation'), +('91.208.217.0', '91.208.217.255', 1540413696, 1540413951, 'AT', 'Austria'), +('91.208.218.0', '91.208.218.255', 1540413952, 1540414207, 'IL', 'Israel'), +('91.208.219.0', '91.208.219.255', 1540414208, 1540414463, 'GB', 'United Kingdom'), +('91.208.220.0', '91.208.220.255', 1540414464, 1540414719, 'BE', 'Belgium'), +('91.208.221.0', '91.208.221.255', 1540414720, 1540414975, 'SE', 'Sweden'), +('91.208.222.0', '91.208.222.255', 1540414976, 1540415231, 'FR', 'France'), +('91.208.223.0', '91.208.223.255', 1540415232, 1540415487, 'RO', 'Romania'), +('91.208.224.0', '91.208.224.255', 1540415488, 1540415743, 'FR', 'France'), +('91.208.225.0', '91.208.225.255', 1540415744, 1540415999, 'SI', 'Slovenia'), +('91.208.226.0', '91.208.226.255', 1540416000, 1540416255, 'FR', 'France'), +('91.208.227.0', '91.208.227.255', 1540416256, 1540416511, 'CH', 'Switzerland'), +('91.208.228.0', '91.208.228.255', 1540416512, 1540416767, 'RU', 'Russian Federation'), +('91.208.229.0', '91.208.229.255', 1540416768, 1540417023, 'NL', 'Netherlands'), +('91.208.230.0', '91.208.230.255', 1540417024, 1540417279, 'RU', 'Russian Federation'), +('91.208.231.0', '91.208.231.255', 1540417280, 1540417535, 'FR', 'France'), +('91.208.232.0', '91.208.232.255', 1540417536, 1540417791, 'RU', 'Russian Federation'), +('91.208.233.0', '91.208.233.255', 1540417792, 1540418047, 'HR', 'Croatia'), +('91.208.234.0', '91.208.235.255', 1540418048, 1540418559, 'RO', 'Romania'), +('91.208.236.0', '91.208.236.255', 1540418560, 1540418815, 'AT', 'Austria'), +('91.208.237.0', '91.208.237.255', 1540418816, 1540419071, 'FR', 'France'), +('91.208.238.0', '91.208.238.255', 1540419072, 1540419327, 'RU', 'Russian Federation'), +('91.208.239.0', '91.208.240.255', 1540419328, 1540419839, 'GB', 'United Kingdom'), +('91.208.241.0', '91.208.241.255', 1540419840, 1540420095, 'NL', 'Netherlands'), +('91.208.242.0', '91.208.243.255', 1540420096, 1540420607, 'GB', 'United Kingdom'), +('91.208.244.0', '91.208.244.255', 1540420608, 1540420863, 'DE', 'Germany'), +('91.208.245.0', '91.208.245.255', 1540420864, 1540421119, 'GB', 'United Kingdom'), +('91.208.246.0', '91.208.246.255', 1540421120, 1540421375, 'RU', 'Russian Federation'), +('91.208.247.0', '91.208.247.255', 1540421376, 1540421631, 'PL', 'Poland'), +('91.208.248.0', '91.208.249.255', 1540421632, 1540422143, 'RU', 'Russian Federation'), +('91.208.250.0', '91.208.250.255', 1540422144, 1540422399, 'PL', 'Poland'), +('91.208.251.0', '91.208.251.255', 1540422400, 1540422655, 'UA', 'Ukraine'), +('91.208.252.0', '91.208.252.255', 1540422656, 1540422911, 'GB', 'United Kingdom'), +('91.208.253.0', '91.208.254.255', 1540422912, 1540423423, 'RU', 'Russian Federation'), +('91.208.255.0', '91.208.255.255', 1540423424, 1540423679, 'BA', 'Bosnia and Herzegovina'), +('91.209.0.0', '91.209.0.255', 1540423680, 1540423935, 'SE', 'Sweden'), +('91.209.1.0', '91.209.1.255', 1540423936, 1540424191, 'NL', 'Netherlands'), +('91.209.2.0', '91.209.2.255', 1540424192, 1540424447, 'IT', 'Italy'), +('91.209.3.0', '91.209.3.255', 1540424448, 1540424703, 'ES', 'Spain'), +('91.209.4.0', '91.209.4.255', 1540424704, 1540424959, 'PL', 'Poland'), +('91.209.5.0', '91.209.5.255', 1540424960, 1540425215, 'RO', 'Romania'), +('91.209.6.0', '91.209.6.255', 1540425216, 1540425471, 'US', 'United States'), +('91.209.7.0', '91.209.7.255', 1540425472, 1540425727, 'NL', 'Netherlands'), +('91.209.8.0', '91.209.8.255', 1540425728, 1540425983, 'BG', 'Bulgaria'), +('91.209.9.0', '91.209.9.255', 1540425984, 1540426239, 'DE', 'Germany'), +('91.209.10.0', '91.209.10.255', 1540426240, 1540426495, 'IE', 'Ireland'), +('91.209.11.0', '91.209.11.255', 1540426496, 1540426751, 'UA', 'Ukraine'), +('91.209.12.0', '91.209.13.255', 1540426752, 1540427263, 'NL', 'Netherlands'), +('91.209.14.0', '91.209.14.255', 1540427264, 1540427519, 'RU', 'Russian Federation'), +('91.209.15.0', '91.209.15.255', 1540427520, 1540427775, 'FR', 'France'), +('91.209.16.0', '91.209.17.255', 1540427776, 1540428287, 'RU', 'Russian Federation'), +('91.209.18.0', '91.209.18.255', 1540428288, 1540428543, 'RO', 'Romania'), +('91.209.19.0', '91.209.19.255', 1540428544, 1540428799, 'FR', 'France'), +('91.209.20.0', '91.209.20.255', 1540428800, 1540429055, 'PL', 'Poland'), +('91.209.21.0', '91.209.21.255', 1540429056, 1540429311, 'BG', 'Bulgaria'), +('91.209.22.0', '91.209.23.255', 1540429312, 1540429823, 'RO', 'Romania'), +('91.209.24.0', '91.209.24.255', 1540429824, 1540430079, 'UA', 'Ukraine'), +('91.209.25.0', '91.209.25.255', 1540430080, 1540430335, 'FR', 'France'), +('91.209.26.0', '91.209.26.255', 1540430336, 1540430591, 'DE', 'Germany'), +('91.209.27.0', '91.209.27.255', 1540430592, 1540430847, 'PL', 'Poland'), +('91.209.28.0', '91.209.28.255', 1540430848, 1540431103, 'CH', 'Switzerland'), +('91.209.29.0', '91.209.29.255', 1540431104, 1540431359, 'FI', 'Finland'), +('91.209.30.0', '91.209.30.255', 1540431360, 1540431615, 'NO', 'Norway'), +('91.209.31.0', '91.209.31.255', 1540431616, 1540431871, 'GB', 'United Kingdom'), +('91.209.32.0', '91.209.32.255', 1540431872, 1540432127, 'HR', 'Croatia'), +('91.209.33.0', '91.209.33.255', 1540432128, 1540432383, 'AT', 'Austria'), +('91.209.34.0', '91.209.34.255', 1540432384, 1540432639, 'GB', 'United Kingdom'), +('91.209.35.0', '91.209.35.255', 1540432640, 1540432895, 'FR', 'France'), +('91.209.36.0', '91.209.36.255', 1540432896, 1540433151, 'UA', 'Ukraine'), +('91.209.37.0', '91.209.37.255', 1540433152, 1540433407, 'GB', 'United Kingdom'), +('91.209.38.0', '91.209.38.255', 1540433408, 1540433663, 'AM', 'Armenia'), +('91.209.39.0', '91.209.39.255', 1540433664, 1540433919, 'DK', 'Denmark'), +('91.209.40.0', '91.209.40.255', 1540433920, 1540434175, 'GB', 'United Kingdom'), +('91.209.41.0', '91.209.41.255', 1540434176, 1540434431, 'CH', 'Switzerland'), +('91.209.42.0', '91.209.42.255', 1540434432, 1540434687, 'DE', 'Germany'), +('91.209.43.0', '91.209.43.255', 1540434688, 1540434943, 'GB', 'United Kingdom'), +('91.209.44.0', '91.209.44.255', 1540434944, 1540435199, 'FR', 'France'), +('91.209.45.0', '91.209.45.255', 1540435200, 1540435455, 'RO', 'Romania'), +('91.209.46.0', '91.209.47.255', 1540435456, 1540435967, 'GR', 'Greece'), +('91.209.48.0', '91.209.48.255', 1540435968, 1540436223, 'RU', 'Russian Federation'), +('91.209.49.0', '91.209.49.255', 1540436224, 1540436479, 'SI', 'Slovenia'), +('91.209.50.0', '91.209.50.255', 1540436480, 1540436735, 'GB', 'United Kingdom'), +('91.209.51.0', '91.209.51.255', 1540436736, 1540436991, 'UA', 'Ukraine'), +('91.209.52.0', '91.209.52.255', 1540436992, 1540437247, 'DE', 'Germany'), +('91.209.53.0', '91.209.53.255', 1540437248, 1540437503, 'CH', 'Switzerland'), +('91.209.54.0', '91.209.55.255', 1540437504, 1540438015, 'UA', 'Ukraine'), +('91.209.56.0', '91.209.56.255', 1540438016, 1540438271, 'PL', 'Poland'), +('91.209.57.0', '91.209.57.255', 1540438272, 1540438527, 'LB', 'Lebanon'), +('91.209.58.0', '91.209.59.255', 1540438528, 1540439039, 'RU', 'Russian Federation'), +('91.209.60.0', '91.209.60.255', 1540439040, 1540439295, 'NO', 'Norway'), +('91.209.61.0', '91.209.61.255', 1540439296, 1540439551, 'RO', 'Romania'), +('91.209.62.0', '91.209.63.255', 1540439552, 1540440063, 'PL', 'Poland'), +('91.209.64.0', '91.209.64.255', 1540440064, 1540440319, 'UA', 'Ukraine'), +('91.209.65.0', '91.209.65.255', 1540440320, 1540440575, 'RU', 'Russian Federation'), +('91.209.66.0', '91.209.66.255', 1540440576, 1540440831, 'MD', 'Moldova, Republic of'), +('91.209.67.0', '91.209.67.255', 1540440832, 1540441087, 'FR', 'France'), +('91.209.68.0', '91.209.68.255', 1540441088, 1540441343, 'PL', 'Poland'), +('91.209.69.0', '91.209.70.255', 1540441344, 1540441855, 'RU', 'Russian Federation'), +('91.209.71.0', '91.209.71.255', 1540441856, 1540442111, 'GB', 'United Kingdom'), +('91.209.72.0', '91.209.72.255', 1540442112, 1540442367, 'RU', 'Russian Federation'), +('91.209.73.0', '91.209.73.255', 1540442368, 1540442623, 'GB', 'United Kingdom'), +('91.209.74.0', '91.209.74.255', 1540442624, 1540442879, 'IE', 'Ireland'), +('91.209.75.0', '91.209.75.255', 1540442880, 1540443135, 'AT', 'Austria'), +('91.209.76.0', '91.209.77.255', 1540443136, 1540443647, 'RU', 'Russian Federation'), +('91.209.78.0', '91.209.78.255', 1540443648, 1540443903, 'NL', 'Netherlands'), +('91.209.79.0', '91.209.79.255', 1540443904, 1540444159, 'GB', 'United Kingdom'), +('91.209.80.0', '91.209.80.255', 1540444160, 1540444415, 'RU', 'Russian Federation'), +('91.209.81.0', '91.209.81.255', 1540444416, 1540444671, 'DE', 'Germany'), +('91.209.82.0', '91.209.83.255', 1540444672, 1540445183, 'GB', 'United Kingdom'), +('91.209.84.0', '91.209.84.255', 1540445184, 1540445439, 'CH', 'Switzerland'), +('91.209.85.0', '91.209.85.255', 1540445440, 1540445695, 'RU', 'Russian Federation'), +('91.209.86.0', '91.209.86.255', 1540445696, 1540445951, 'GB', 'United Kingdom'), +('91.209.87.0', '91.209.87.255', 1540445952, 1540446207, 'DE', 'Germany'), +('91.209.88.0', '91.209.88.255', 1540446208, 1540446463, 'NO', 'Norway'), +('91.209.89.0', '91.209.89.255', 1540446464, 1540446719, 'AT', 'Austria'), +('91.209.90.0', '91.209.90.255', 1540446720, 1540446975, 'UA', 'Ukraine'), +('91.209.91.0', '91.209.91.255', 1540446976, 1540447231, 'RU', 'Russian Federation'), +('91.209.92.0', '91.209.92.255', 1540447232, 1540447487, 'DE', 'Germany'), +('91.209.93.0', '91.209.93.255', 1540447488, 1540447743, 'PL', 'Poland'), +('91.209.94.0', '91.209.94.255', 1540447744, 1540447999, 'RU', 'Russian Federation'), +('91.209.95.0', '91.209.95.255', 1540448000, 1540448255, 'PL', 'Poland'), +('91.209.96.0', '91.209.96.255', 1540448256, 1540448511, 'UA', 'Ukraine'), +('91.209.97.0', '91.209.97.255', 1540448512, 1540448767, 'IT', 'Italy'), +('91.209.98.0', '91.209.98.255', 1540448768, 1540449023, 'CH', 'Switzerland'), +('91.209.99.0', '91.209.99.255', 1540449024, 1540449279, 'DE', 'Germany'), +('91.209.100.0', '91.209.100.255', 1540449280, 1540449535, 'UA', 'Ukraine'), +('91.209.101.0', '91.209.101.255', 1540449536, 1540449791, 'CZ', 'Czech Republic'), +('91.209.102.0', '91.209.102.255', 1540449792, 1540450047, 'RO', 'Romania'), +('91.209.103.0', '91.209.103.255', 1540450048, 1540450303, 'DE', 'Germany'), +('91.209.104.0', '91.209.104.255', 1540450304, 1540450559, 'GB', 'United Kingdom'), +('91.209.105.0', '91.209.105.255', 1540450560, 1540450815, 'AM', 'Armenia'), +('91.209.106.0', '91.209.106.255', 1540450816, 1540451071, 'IE', 'Ireland'), +('91.209.107.0', '91.209.107.255', 1540451072, 1540451327, 'FR', 'France'), +('91.209.108.0', '91.209.108.255', 1540451328, 1540451583, 'ES', 'Spain'), +('91.209.109.0', '91.209.109.255', 1540451584, 1540451839, 'RO', 'Romania'), +('91.209.110.0', '91.209.110.255', 1540451840, 1540452095, 'GB', 'United Kingdom'), +('91.209.111.0', '91.209.111.255', 1540452096, 1540452351, 'CH', 'Switzerland'), +('91.209.112.0', '91.209.112.255', 1540452352, 1540452607, 'AT', 'Austria'), +('91.209.113.0', '91.209.113.255', 1540452608, 1540452863, 'IL', 'Israel'), +('91.209.114.0', '91.209.114.255', 1540452864, 1540453119, 'HU', 'Hungary'), +('91.209.115.0', '91.209.115.255', 1540453120, 1540453375, 'RU', 'Russian Federation'), +('91.209.116.0', '91.209.116.255', 1540453376, 1540453631, 'PL', 'Poland'), +('91.209.117.0', '91.209.117.255', 1540453632, 1540453887, 'FR', 'France'), +('91.209.118.0', '91.209.118.255', 1540453888, 1540454143, 'UA', 'Ukraine'), +('91.209.119.0', '91.209.119.255', 1540454144, 1540454399, 'RU', 'Russian Federation'), +('91.209.120.0', '91.209.121.255', 1540454400, 1540454911, 'DE', 'Germany'), +('91.209.122.0', '91.209.122.255', 1540454912, 1540455167, 'RU', 'Russian Federation'), +('91.209.123.0', '91.209.123.255', 1540455168, 1540455423, 'RO', 'Romania'), +('91.209.124.0', '91.209.124.255', 1540455424, 1540455679, 'RU', 'Russian Federation'), +('91.209.125.0', '91.209.125.255', 1540455680, 1540455935, 'GB', 'United Kingdom'), +('91.209.126.0', '91.209.126.255', 1540455936, 1540456191, 'UA', 'Ukraine'), +('91.209.127.0', '91.209.130.255', 1540456192, 1540457215, 'RU', 'Russian Federation'), +('91.209.131.0', '91.209.131.255', 1540457216, 1540457471, 'GE', 'Georgia'), +('91.209.132.0', '91.209.132.255', 1540457472, 1540457727, 'SI', 'Slovenia'), +('91.209.133.0', '91.209.133.255', 1540457728, 1540457983, 'BE', 'Belgium'), +('91.209.134.0', '91.209.134.255', 1540457984, 1540458239, 'CH', 'Switzerland'), +('91.209.135.0', '91.209.135.255', 1540458240, 1540458495, 'ES', 'Spain'), +('91.209.136.0', '91.209.136.255', 1540458496, 1540458751, 'HR', 'Croatia'), +('91.209.137.0', '91.209.137.255', 1540458752, 1540459007, 'NL', 'Netherlands'), +('91.209.138.0', '91.209.139.255', 1540459008, 1540459519, 'UA', 'Ukraine'), +('91.209.140.0', '91.209.140.255', 1540459520, 1540459775, 'GB', 'United Kingdom'), +('91.209.141.0', '91.209.141.255', 1540459776, 1540460031, 'PL', 'Poland'), +('91.209.142.0', '91.209.143.255', 1540460032, 1540460543, 'NL', 'Netherlands'), +('91.209.144.0', '91.209.144.255', 1540460544, 1540460799, 'GB', 'United Kingdom'), +('91.209.145.0', '91.209.145.255', 1540460800, 1540461055, 'SI', 'Slovenia'), +('91.209.146.0', '91.209.146.255', 1540461056, 1540461311, 'BG', 'Bulgaria'), +('91.209.147.0', '91.209.148.255', 1540461312, 1540461823, 'RU', 'Russian Federation'), +('91.209.149.0', '91.209.149.255', 1540461824, 1540462079, 'RO', 'Romania'), +('91.209.150.0', '91.209.150.255', 1540462080, 1540462335, 'SI', 'Slovenia'), +('91.209.151.0', '91.209.151.255', 1540462336, 1540462591, 'UA', 'Ukraine'), +('91.209.152.0', '91.209.153.255', 1540462592, 1540463103, 'PL', 'Poland'), +('91.209.154.0', '91.209.154.255', 1540463104, 1540463359, 'FR', 'France'), +('91.209.155.0', '91.209.155.255', 1540463360, 1540463615, 'PL', 'Poland'), +('91.209.156.0', '91.209.156.255', 1540463616, 1540463871, 'DK', 'Denmark'), +('91.209.157.0', '91.209.157.255', 1540463872, 1540464127, 'UA', 'Ukraine'), +('91.209.158.0', '91.209.158.255', 1540464128, 1540464383, 'CH', 'Switzerland'), +('91.209.159.0', '91.209.160.255', 1540464384, 1540464895, 'DE', 'Germany'), +('91.209.161.0', '91.209.162.255', 1540464896, 1540465407, 'GB', 'United Kingdom'), +('91.209.163.0', '91.209.163.255', 1540465408, 1540465663, 'ES', 'Spain'), +('91.209.164.0', '91.209.164.255', 1540465664, 1540465919, 'IE', 'Ireland'), +('91.209.165.0', '91.209.165.255', 1540465920, 1540466175, 'UA', 'Ukraine'), +('91.209.166.0', '91.209.166.255', 1540466176, 1540466431, 'DK', 'Denmark'), +('91.209.167.0', '91.209.167.255', 1540466432, 1540466687, 'RU', 'Russian Federation'), +('91.209.168.0', '91.209.168.255', 1540466688, 1540466943, 'NL', 'Netherlands'), +('91.209.169.0', '91.209.170.255', 1540466944, 1540467455, 'CH', 'Switzerland'), +('91.209.171.0', '91.209.171.255', 1540467456, 1540467711, 'RO', 'Romania'), +('91.209.172.0', '91.209.172.255', 1540467712, 1540467967, 'KW', 'Kuwait'), +('91.209.173.0', '91.209.173.255', 1540467968, 1540468223, 'GR', 'Greece'), +('91.209.174.0', '91.209.175.255', 1540468224, 1540468735, 'FR', 'France'), +('91.209.176.0', '91.209.176.255', 1540468736, 1540468991, 'UA', 'Ukraine'), +('91.209.177.0', '91.209.177.255', 1540468992, 1540469247, 'PL', 'Poland'), +('91.209.178.0', '91.209.178.255', 1540469248, 1540469503, 'GB', 'United Kingdom'), +('91.209.179.0', '91.209.179.255', 1540469504, 1540469759, 'RO', 'Romania'), +('91.209.180.0', '91.209.180.255', 1540469760, 1540470015, 'PL', 'Poland'), +('91.209.181.0', '91.209.181.255', 1540470016, 1540470271, 'SI', 'Slovenia'), +('91.209.182.0', '91.209.182.255', 1540470272, 1540470527, 'IL', 'Israel'), +('91.209.183.0', '91.209.184.255', 1540470528, 1540471039, 'RU', 'Russian Federation'), +('91.209.185.0', '91.209.185.255', 1540471040, 1540471295, 'DE', 'Germany'), +('91.209.186.0', '91.209.186.255', 1540471296, 1540471551, 'RU', 'Russian Federation'), +('91.209.187.0', '91.209.187.255', 1540471552, 1540471807, 'GB', 'United Kingdom'), +('91.209.188.0', '91.209.188.255', 1540471808, 1540472063, 'SI', 'Slovenia'), +('91.209.189.0', '91.209.189.255', 1540472064, 1540472319, 'RO', 'Romania'), +('91.209.190.0', '91.209.190.255', 1540472320, 1540472575, 'DK', 'Denmark'), +('91.209.191.0', '91.209.191.255', 1540472576, 1540472831, 'FR', 'France'), +('91.209.192.0', '91.209.192.255', 1540472832, 1540473087, 'NL', 'Netherlands'), +('91.209.193.0', '91.209.193.255', 1540473088, 1540473343, 'UA', 'Ukraine'), +('91.209.194.0', '91.209.194.255', 1540473344, 1540473599, 'IT', 'Italy'), +('91.209.195.0', '91.209.195.255', 1540473600, 1540473855, 'RO', 'Romania'), +('91.209.196.0', '91.209.197.255', 1540473856, 1540474367, 'GB', 'United Kingdom'), +('91.209.198.0', '91.209.198.255', 1540474368, 1540474623, 'RO', 'Romania'), +('91.209.199.0', '91.209.199.255', 1540474624, 1540474879, 'PL', 'Poland'), +('91.209.200.0', '91.209.200.255', 1540474880, 1540475135, 'GB', 'United Kingdom'), +('91.209.201.0', '91.209.203.255', 1540475136, 1540475903, 'UA', 'Ukraine'), +('91.209.204.0', '91.209.204.255', 1540475904, 1540476159, 'CH', 'Switzerland'), +('91.209.205.0', '91.209.205.255', 1540476160, 1540476415, 'DE', 'Germany'), +('91.209.206.0', '91.209.206.255', 1540476416, 1540476671, 'UA', 'Ukraine'), +('91.209.207.0', '91.209.207.255', 1540476672, 1540476927, 'SI', 'Slovenia'), +('91.209.208.0', '91.209.208.255', 1540476928, 1540477183, 'NL', 'Netherlands'), +('91.209.209.0', '91.209.209.255', 1540477184, 1540477439, 'RO', 'Romania'), +('91.209.210.0', '91.209.210.255', 1540477440, 1540477695, 'UA', 'Ukraine'), +('91.209.211.0', '91.209.211.255', 1540477696, 1540477951, 'DE', 'Germany'), +('91.209.212.0', '91.209.212.255', 1540477952, 1540478207, 'NO', 'Norway'), +('91.209.213.0', '91.209.213.255', 1540478208, 1540478463, 'NL', 'Netherlands'), +('91.209.214.0', '91.209.214.255', 1540478464, 1540478719, 'UA', 'Ukraine'), +('91.209.215.0', '91.209.215.255', 1540478720, 1540478975, 'SA', 'Saudi Arabia'), +('91.209.216.0', '91.209.216.255', 1540478976, 1540479231, 'HR', 'Croatia'), +('91.209.217.0', '91.209.217.255', 1540479232, 1540479487, 'GB', 'United Kingdom'), +('91.209.218.0', '91.209.218.255', 1540479488, 1540479743, 'RU', 'Russian Federation'), +('91.209.219.0', '91.209.219.255', 1540479744, 1540479999, 'AT', 'Austria'), +('91.209.220.0', '91.209.220.255', 1540480000, 1540480255, 'GB', 'United Kingdom'), +('91.209.221.0', '91.209.222.255', 1540480256, 1540480767, 'PL', 'Poland'), +('91.209.223.0', '91.209.223.255', 1540480768, 1540481023, 'DE', 'Germany'), +('91.209.224.0', '91.209.224.255', 1540481024, 1540481279, 'LT', 'Lithuania'), +('91.209.225.0', '91.209.225.255', 1540481280, 1540481535, 'GB', 'United Kingdom'), +('91.209.226.0', '91.209.226.255', 1540481536, 1540481791, 'UA', 'Ukraine'), +('91.209.227.0', '91.209.227.255', 1540481792, 1540482047, 'RU', 'Russian Federation'), +('91.209.228.0', '91.209.228.255', 1540482048, 1540482303, 'DK', 'Denmark'), +('91.209.229.0', '91.209.229.255', 1540482304, 1540482559, 'FR', 'France'), +('91.209.230.0', '91.209.230.255', 1540482560, 1540482815, 'CH', 'Switzerland'), +('91.209.231.0', '91.209.231.255', 1540482816, 1540483071, 'DE', 'Germany'), +('91.209.232.0', '91.209.232.255', 1540483072, 1540483327, 'SE', 'Sweden'), +('91.209.233.0', '91.209.234.255', 1540483328, 1540483839, 'RU', 'Russian Federation'), +('91.209.235.0', '91.209.235.255', 1540483840, 1540484095, 'UA', 'Ukraine'), +('91.209.236.0', '91.209.236.255', 1540484096, 1540484351, 'DK', 'Denmark'), +('91.209.237.0', '91.209.237.255', 1540484352, 1540484607, 'SI', 'Slovenia'), +('91.209.238.0', '91.209.239.255', 1540484608, 1540485119, 'UA', 'Ukraine'), +('91.209.240.0', '91.209.240.255', 1540485120, 1540485375, 'IT', 'Italy'), +('91.209.241.0', '91.209.241.255', 1540485376, 1540485631, 'RO', 'Romania'), +('91.209.242.0', '91.209.242.255', 1540485632, 1540485887, 'IR', 'Iran, Islamic Republic of'), +('91.209.243.0', '91.209.243.255', 1540485888, 1540486143, 'ES', 'Spain'), +('91.209.244.0', '91.209.244.255', 1540486144, 1540486399, 'GB', 'United Kingdom'), +('91.209.245.0', '91.209.245.255', 1540486400, 1540486655, 'FR', 'France'), +('91.209.246.0', '91.209.246.255', 1540486656, 1540486911, 'GB', 'United Kingdom'), +('91.209.247.0', '91.209.247.255', 1540486912, 1540487167, 'SK', 'Slovakia'), +('91.209.248.0', '91.209.248.255', 1540487168, 1540487423, 'PS', 'Palestinian Territory, Occupied'), +('91.209.249.0', '91.209.249.255', 1540487424, 1540487679, 'UA', 'Ukraine'), +('91.209.250.0', '91.209.250.255', 1540487680, 1540487935, 'DE', 'Germany'), +('91.209.251.0', '91.209.252.255', 1540487936, 1540488447, 'GB', 'United Kingdom'), +('91.209.253.0', '91.209.253.255', 1540488448, 1540488703, 'SA', 'Saudi Arabia'), +('91.209.254.0', '91.209.254.255', 1540488704, 1540488959, 'DE', 'Germany'), +('91.209.255.0', '91.209.255.255', 1540488960, 1540489215, 'RO', 'Romania'), +('91.210.0.0', '91.210.7.255', 1540489216, 1540491263, 'RU', 'Russian Federation'), +('91.210.8.0', '91.210.15.255', 1540491264, 1540493311, 'UA', 'Ukraine'), +('91.210.16.0', '91.210.19.255', 1540493312, 1540494335, 'CZ', 'Czech Republic'), +('91.210.20.0', '91.210.23.255', 1540494336, 1540495359, 'UA', 'Ukraine'), +('91.210.24.0', '91.210.27.255', 1540495360, 1540496383, 'RU', 'Russian Federation'), +('91.210.28.0', '91.210.39.255', 1540496384, 1540499455, 'UA', 'Ukraine'), +('91.210.40.0', '91.210.43.255', 1540499456, 1540500479, 'AM', 'Armenia'), +('91.210.44.0', '91.210.47.255', 1540500480, 1540501503, 'RU', 'Russian Federation'), +('91.210.48.0', '91.210.51.255', 1540501504, 1540502527, 'PL', 'Poland'), +('91.210.52.0', '91.210.55.255', 1540502528, 1540503551, 'RU', 'Russian Federation'), +('91.210.56.0', '91.210.59.255', 1540503552, 1540504575, 'NL', 'Netherlands'), +('91.210.60.0', '91.210.63.255', 1540504576, 1540505599, 'SE', 'Sweden'), +('91.210.64.0', '91.210.67.255', 1540505600, 1540506623, 'RU', 'Russian Federation'), +('91.210.68.0', '91.210.71.255', 1540506624, 1540507647, 'GB', 'United Kingdom'), +('91.210.72.0', '91.210.75.255', 1540507648, 1540508671, 'RU', 'Russian Federation'), +('91.210.76.0', '91.210.79.255', 1540508672, 1540509695, 'UA', 'Ukraine'), +('91.210.80.0', '91.210.83.255', 1540509696, 1540510719, 'RO', 'Romania'), +('91.210.84.0', '91.210.87.255', 1540510720, 1540511743, 'RU', 'Russian Federation'), +('91.210.88.0', '91.210.91.255', 1540511744, 1540512767, 'BG', 'Bulgaria'), +('91.210.92.0', '91.210.99.255', 1540512768, 1540514815, 'UA', 'Ukraine'), +('91.210.100.0', '91.210.103.255', 1540514816, 1540515839, 'GB', 'United Kingdom'), +('91.210.104.0', '91.210.107.255', 1540515840, 1540516863, 'RU', 'Russian Federation'), +('91.210.108.0', '91.210.111.255', 1540516864, 1540517887, 'UA', 'Ukraine'), +('91.210.112.0', '91.210.115.255', 1540517888, 1540518911, 'RU', 'Russian Federation'), +('91.210.116.0', '91.210.123.255', 1540518912, 1540520959, 'UA', 'Ukraine'), +('91.210.124.0', '91.210.127.255', 1540520960, 1540521983, 'RU', 'Russian Federation'), +('91.210.128.0', '91.210.131.255', 1540521984, 1540523007, 'PL', 'Poland'), +('91.210.132.0', '91.210.135.255', 1540523008, 1540524031, 'RU', 'Russian Federation'), +('91.210.136.0', '91.210.139.255', 1540524032, 1540525055, 'AL', 'Albania'), +('91.210.140.0', '91.210.143.255', 1540525056, 1540526079, 'AT', 'Austria'), +('91.210.144.0', '91.210.151.255', 1540526080, 1540528127, 'UA', 'Ukraine'), +('91.210.152.0', '91.210.155.255', 1540528128, 1540529151, 'RU', 'Russian Federation'), +('91.210.156.0', '91.210.159.255', 1540529152, 1540530175, 'UA', 'Ukraine'), +('91.210.160.0', '91.210.163.255', 1540530176, 1540531199, 'RU', 'Russian Federation'), +('91.210.164.0', '91.210.167.255', 1540531200, 1540532223, 'UA', 'Ukraine'), +('91.210.168.0', '91.210.171.255', 1540532224, 1540533247, 'RU', 'Russian Federation'), +('91.210.172.0', '91.210.175.255', 1540533248, 1540534271, 'KZ', 'Kazakstan'), +('91.210.176.0', '91.210.179.255', 1540534272, 1540535295, 'UA', 'Ukraine'), +('91.210.180.0', '91.210.183.255', 1540535296, 1540536319, 'SK', 'Slovakia'), +('91.210.184.0', '91.210.187.255', 1540536320, 1540537343, 'RU', 'Russian Federation'), +('91.210.188.0', '91.210.191.255', 1540537344, 1540538367, 'UA', 'Ukraine'), +('91.210.192.0', '91.210.207.255', 1540538368, 1540542463, 'RU', 'Russian Federation'), +('91.210.208.0', '91.210.211.255', 1540542464, 1540543487, 'PL', 'Poland'), +('91.210.212.0', '91.210.215.255', 1540543488, 1540544511, 'DE', 'Germany'), +('91.210.216.0', '91.210.219.255', 1540544512, 1540545535, 'RU', 'Russian Federation'), +('91.210.220.0', '91.210.223.255', 1540545536, 1540546559, 'AT', 'Austria'), +('91.210.224.0', '91.210.231.255', 1540546560, 1540548607, 'RU', 'Russian Federation'), +('91.210.232.0', '91.210.235.255', 1540548608, 1540549631, 'IE', 'Ireland'), +('91.210.236.0', '91.210.247.255', 1540549632, 1540552703, 'PL', 'Poland'), +('91.210.248.0', '91.210.251.255', 1540552704, 1540553727, 'UA', 'Ukraine'), +('91.210.252.0', '91.211.3.255', 1540553728, 1540555775, 'RU', 'Russian Federation'), +('91.211.4.0', '91.211.7.255', 1540555776, 1540556799, 'UZ', 'Uzbekistan'), +('91.211.8.0', '91.211.11.255', 1540556800, 1540557823, 'GB', 'United Kingdom'), +('91.211.12.0', '91.211.19.255', 1540557824, 1540559871, 'UA', 'Ukraine'), +('91.211.20.0', '91.211.31.255', 1540559872, 1540562943, 'RU', 'Russian Federation'), +('91.211.32.0', '91.211.35.255', 1540562944, 1540563967, 'AT', 'Austria'), +('91.211.36.0', '91.211.39.255', 1540563968, 1540564991, 'RU', 'Russian Federation'), +('91.211.40.0', '91.211.43.255', 1540564992, 1540566015, 'DE', 'Germany'), +('91.211.44.0', '91.211.47.255', 1540566016, 1540567039, 'RU', 'Russian Federation'), +('91.211.48.0', '91.211.51.255', 1540567040, 1540568063, 'MD', 'Moldova, Republic of'), +('91.211.52.0', '91.211.67.255', 1540568064, 1540572159, 'RU', 'Russian Federation'), +('91.211.68.0', '91.211.71.255', 1540572160, 1540573183, 'UA', 'Ukraine'), +('91.211.72.0', '91.211.75.255', 1540573184, 1540574207, 'NL', 'Netherlands'), +('91.211.76.0', '91.211.83.255', 1540574208, 1540576255, 'RU', 'Russian Federation'), +('91.211.84.0', '91.211.87.255', 1540576256, 1540577279, 'PL', 'Poland'), +('91.211.88.0', '91.211.95.255', 1540577280, 1540579327, 'RU', 'Russian Federation'), +('91.211.96.0', '91.211.99.255', 1540579328, 1540580351, 'IE', 'Ireland'), +('91.211.100.0', '91.211.103.255', 1540580352, 1540581375, 'PL', 'Poland'), +('91.211.104.0', '91.211.107.255', 1540581376, 1540582399, 'RU', 'Russian Federation'), +('91.211.108.0', '91.211.111.255', 1540582400, 1540583423, 'BG', 'Bulgaria'), +('91.211.112.0', '91.211.115.255', 1540583424, 1540584447, 'DE', 'Germany'), +('91.211.116.0', '91.211.123.255', 1540584448, 1540586495, 'UA', 'Ukraine'), +('91.211.124.0', '91.211.131.255', 1540586496, 1540588543, 'RU', 'Russian Federation'), +('91.211.132.0', '91.211.135.255', 1540588544, 1540589567, 'UA', 'Ukraine'), +('91.211.136.0', '91.211.151.255', 1540589568, 1540593663, 'RU', 'Russian Federation'), +('91.211.152.0', '91.211.155.255', 1540593664, 1540594687, 'GB', 'United Kingdom'), +('91.211.156.0', '91.211.159.255', 1540594688, 1540595711, 'IT', 'Italy'), +('91.211.160.0', '91.211.163.255', 1540595712, 1540596735, 'KZ', 'Kazakstan'), +('91.211.164.0', '91.211.167.255', 1540596736, 1540597759, 'FR', 'France'), +('91.211.168.0', '91.211.171.255', 1540597760, 1540598783, 'SE', 'Sweden'), +('91.211.172.0', '91.211.179.255', 1540598784, 1540600831, 'UA', 'Ukraine'), +('91.211.180.0', '91.211.187.255', 1540600832, 1540602879, 'RU', 'Russian Federation'), +('91.211.188.0', '91.211.191.255', 1540602880, 1540603903, 'BG', 'Bulgaria'), +('91.211.192.0', '91.211.199.255', 1540603904, 1540605951, 'RU', 'Russian Federation'), +('91.211.200.0', '91.211.203.255', 1540605952, 1540606975, 'MD', 'Moldova, Republic of'), +('91.211.204.0', '91.211.207.255', 1540606976, 1540607999, 'UA', 'Ukraine'), +('91.211.208.0', '91.211.211.255', 1540608000, 1540609023, 'RU', 'Russian Federation'), +('91.211.212.0', '91.211.215.255', 1540609024, 1540610047, 'UA', 'Ukraine'), +('91.211.216.0', '91.211.219.255', 1540610048, 1540611071, 'RU', 'Russian Federation'), +('91.211.220.0', '91.211.223.255', 1540611072, 1540612095, 'PL', 'Poland'), +('91.211.224.0', '91.211.227.255', 1540612096, 1540613119, 'TR', 'Turkey'), +('91.211.228.0', '91.211.231.255', 1540613120, 1540614143, 'RU', 'Russian Federation'), +('91.211.232.0', '91.211.235.255', 1540614144, 1540615167, 'BG', 'Bulgaria'), +('91.211.236.0', '91.211.239.255', 1540615168, 1540616191, 'RU', 'Russian Federation'), +('91.211.240.0', '91.211.243.255', 1540616192, 1540617215, 'AT', 'Austria'), +('91.211.244.0', '91.211.247.255', 1540617216, 1540618239, 'LT', 'Lithuania'), +('91.211.248.0', '91.211.251.255', 1540618240, 1540619263, 'UA', 'Ukraine'), +('91.211.252.0', '91.211.255.255', 1540619264, 1540620287, 'PL', 'Poland'), +('91.212.0.0', '91.212.0.255', 1540620288, 1540620543, 'NL', 'Netherlands'), +('91.212.1.0', '91.212.1.255', 1540620544, 1540620799, 'LB', 'Lebanon'), +('91.212.2.0', '91.212.2.255', 1540620800, 1540621055, 'PL', 'Poland'), +('91.212.3.0', '91.212.3.255', 1540621056, 1540621311, 'DE', 'Germany'), +('91.212.4.0', '91.212.4.255', 1540621312, 1540621567, 'BA', 'Bosnia and Herzegovina'), +('91.212.5.0', '91.212.5.255', 1540621568, 1540621823, 'PL', 'Poland'), +('91.212.6.0', '91.212.7.255', 1540621824, 1540622335, 'RU', 'Russian Federation'), +('91.212.8.0', '91.212.8.255', 1540622336, 1540622591, 'KW', 'Kuwait'), +('91.212.9.0', '91.212.9.255', 1540622592, 1540622847, 'PL', 'Poland'), +('91.212.10.0', '91.212.10.255', 1540622848, 1540623103, 'RU', 'Russian Federation'), +('91.212.11.0', '91.212.11.255', 1540623104, 1540623359, 'SE', 'Sweden'), +('91.212.12.0', '91.212.12.255', 1540623360, 1540623615, 'GB', 'United Kingdom'), +('91.212.13.0', '91.212.13.255', 1540623616, 1540623871, 'BG', 'Bulgaria'), +('91.212.14.0', '91.212.14.255', 1540623872, 1540624127, 'RO', 'Romania'), +('91.212.15.0', '91.212.15.255', 1540624128, 1540624383, 'RS', 'Serbia'), +('91.212.16.0', '91.212.16.255', 1540624384, 1540624639, 'IR', 'Iran, Islamic Republic of'), +('91.212.17.0', '91.212.17.255', 1540624640, 1540624895, 'BG', 'Bulgaria'), +('91.212.18.0', '91.212.18.255', 1540624896, 1540625151, 'GB', 'United Kingdom'), +('91.212.19.0', '91.212.19.255', 1540625152, 1540625407, 'IR', 'Iran, Islamic Republic of'), +('91.212.20.0', '91.212.20.255', 1540625408, 1540625663, 'RU', 'Russian Federation'), +('91.212.21.0', '91.212.21.255', 1540625664, 1540625919, 'FR', 'France'), +('91.212.22.0', '91.212.22.255', 1540625920, 1540626175, 'UA', 'Ukraine'), +('91.212.23.0', '91.212.23.255', 1540626176, 1540626431, 'RO', 'Romania'), +('91.212.24.0', '91.212.24.255', 1540626432, 1540626687, 'SI', 'Slovenia'), +('91.212.25.0', '91.212.25.255', 1540626688, 1540626943, 'PL', 'Poland'), +('91.212.26.0', '91.212.26.255', 1540626944, 1540627199, 'FR', 'France'), +('91.212.27.0', '91.212.27.255', 1540627200, 1540627455, 'PL', 'Poland'), +('91.212.28.0', '91.212.28.255', 1540627456, 1540627711, 'DK', 'Denmark'), +('91.212.29.0', '91.212.29.255', 1540627712, 1540627967, 'CH', 'Switzerland'), +('91.212.30.0', '91.212.30.255', 1540627968, 1540628223, 'PL', 'Poland'), +('91.212.31.0', '91.212.31.255', 1540628224, 1540628479, 'HR', 'Croatia'), +('91.212.32.0', '91.212.32.255', 1540628480, 1540628735, 'KW', 'Kuwait'), +('91.212.33.0', '91.212.33.255', 1540628736, 1540628991, 'PL', 'Poland'), +('91.212.34.0', '91.212.34.255', 1540628992, 1540629247, 'UA', 'Ukraine'), +('91.212.35.0', '91.212.35.255', 1540629248, 1540629503, 'RO', 'Romania'), +('91.212.36.0', '91.212.36.255', 1540629504, 1540629759, 'DK', 'Denmark'), +('91.212.37.0', '91.212.37.255', 1540629760, 1540630015, 'BG', 'Bulgaria'), +('91.212.38.0', '91.212.38.255', 1540630016, 1540630271, 'DE', 'Germany'), +('91.212.39.0', '91.212.39.255', 1540630272, 1540630527, 'RO', 'Romania'), +('91.212.40.0', '91.212.40.255', 1540630528, 1540630783, 'CH', 'Switzerland'), +('91.212.41.0', '91.212.41.255', 1540630784, 1540631039, 'RU', 'Russian Federation'), +('91.212.42.0', '91.212.42.255', 1540631040, 1540631295, 'NL', 'Netherlands'), +('91.212.43.0', '91.212.43.255', 1540631296, 1540631551, 'CH', 'Switzerland'), +('91.212.44.0', '91.212.44.255', 1540631552, 1540631807, 'HR', 'Croatia'), +('91.212.45.0', '91.212.45.255', 1540631808, 1540632063, 'LV', 'Latvia'), +('91.212.46.0', '91.212.46.255', 1540632064, 1540632319, 'AT', 'Austria'), +('91.212.47.0', '91.212.47.255', 1540632320, 1540632575, 'RU', 'Russian Federation'), +('91.212.48.0', '91.212.48.255', 1540632576, 1540632831, 'DK', 'Denmark'), +('91.212.49.0', '91.212.49.255', 1540632832, 1540633087, 'GB', 'United Kingdom'), +('91.212.50.0', '91.212.50.255', 1540633088, 1540633343, 'RU', 'Russian Federation'), +('91.212.51.0', '91.212.51.255', 1540633344, 1540633599, 'CH', 'Switzerland'), +('91.212.52.0', '91.212.52.255', 1540633600, 1540633855, 'RO', 'Romania'), +('91.212.53.0', '91.212.54.255', 1540633856, 1540634367, 'GB', 'United Kingdom'), +('91.212.55.0', '91.212.55.255', 1540634368, 1540634623, 'FR', 'France'), +('91.212.56.0', '91.212.56.255', 1540634624, 1540634879, 'UA', 'Ukraine'), +('91.212.57.0', '91.212.57.255', 1540634880, 1540635135, 'RU', 'Russian Federation'), +('91.212.58.0', '91.212.58.255', 1540635136, 1540635391, 'FR', 'France'), +('91.212.59.0', '91.212.59.255', 1540635392, 1540635647, 'RO', 'Romania'), +('91.212.60.0', '91.212.61.255', 1540635648, 1540636159, 'RU', 'Russian Federation'), +('91.212.62.0', '91.212.62.255', 1540636160, 1540636415, 'RO', 'Romania'), +('91.212.63.0', '91.212.63.255', 1540636416, 1540636671, 'LV', 'Latvia'), +('91.212.64.0', '91.212.64.255', 1540636672, 1540636927, 'RU', 'Russian Federation'), +('91.212.65.0', '91.212.65.255', 1540636928, 1540637183, 'UA', 'Ukraine'), +('91.212.66.0', '91.212.66.255', 1540637184, 1540637439, 'RO', 'Romania'), +('91.212.67.0', '91.212.67.255', 1540637440, 1540637695, 'SA', 'Saudi Arabia'), +('91.212.68.0', '91.212.68.255', 1540637696, 1540637951, 'RU', 'Russian Federation'), +('91.212.69.0', '91.212.69.255', 1540637952, 1540638207, 'RS', 'Serbia'), +('91.212.70.0', '91.212.70.255', 1540638208, 1540638463, 'RO', 'Romania'), +('91.212.71.0', '91.212.71.255', 1540638464, 1540638719, 'AM', 'Armenia'), +('91.212.72.0', '91.212.72.255', 1540638720, 1540638975, 'UA', 'Ukraine'), +('91.212.73.0', '91.212.74.255', 1540638976, 1540639487, 'RO', 'Romania'), +('91.212.75.0', '91.212.75.255', 1540639488, 1540639743, 'CH', 'Switzerland'), +('91.212.76.0', '91.212.76.255', 1540639744, 1540639999, 'IL', 'Israel'), +('91.212.77.0', '91.212.77.255', 1540640000, 1540640255, 'CH', 'Switzerland'), +('91.212.78.0', '91.212.78.255', 1540640256, 1540640511, 'FR', 'France'), +('91.212.79.0', '91.212.79.255', 1540640512, 1540640767, 'ES', 'Spain'), +('91.212.80.0', '91.212.80.255', 1540640768, 1540641023, 'UA', 'Ukraine'), +('91.212.81.0', '91.212.82.255', 1540641024, 1540641535, 'RU', 'Russian Federation'), +('91.212.83.0', '91.212.83.255', 1540641536, 1540641791, 'DE', 'Germany'), +('91.212.84.0', '91.212.84.255', 1540641792, 1540642047, 'PL', 'Poland'), +('91.212.85.0', '91.212.85.255', 1540642048, 1540642303, 'DE', 'Germany'), +('91.212.86.0', '91.212.86.255', 1540642304, 1540642559, 'PL', 'Poland'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('91.212.87.0', '91.212.87.255', 1540642560, 1540642815, 'DE', 'Germany'), +('91.212.88.0', '91.212.88.255', 1540642816, 1540643071, 'IE', 'Ireland'), +('91.212.89.0', '91.212.89.255', 1540643072, 1540643327, 'UZ', 'Uzbekistan'), +('91.212.90.0', '91.212.90.255', 1540643328, 1540643583, 'EU', 'Europe'), +('91.212.91.0', '91.212.91.255', 1540643584, 1540643839, 'CH', 'Switzerland'), +('91.212.92.0', '91.212.92.255', 1540643840, 1540644095, 'NO', 'Norway'), +('91.212.93.0', '91.212.94.255', 1540644096, 1540644607, 'GB', 'United Kingdom'), +('91.212.95.0', '91.212.95.255', 1540644608, 1540644863, 'DE', 'Germany'), +('91.212.96.0', '91.212.96.255', 1540644864, 1540645119, 'NL', 'Netherlands'), +('91.212.97.0', '91.212.97.255', 1540645120, 1540645375, 'RU', 'Russian Federation'), +('91.212.98.0', '91.212.98.255', 1540645376, 1540645631, 'BE', 'Belgium'), +('91.212.99.0', '91.212.99.255', 1540645632, 1540645887, 'NL', 'Netherlands'), +('91.212.100.0', '91.212.100.255', 1540645888, 1540646143, 'PL', 'Poland'), +('91.212.101.0', '91.212.101.255', 1540646144, 1540646399, 'RO', 'Romania'), +('91.212.102.0', '91.212.102.255', 1540646400, 1540646655, 'PS', 'Palestinian Territory, Occupied'), +('91.212.103.0', '91.212.103.255', 1540646656, 1540646911, 'SE', 'Sweden'), +('91.212.104.0', '91.212.104.255', 1540646912, 1540647167, 'RU', 'Russian Federation'), +('91.212.105.0', '91.212.105.255', 1540647168, 1540647423, 'GB', 'United Kingdom'), +('91.212.106.0', '91.212.106.255', 1540647424, 1540647679, 'RU', 'Russian Federation'), +('91.212.107.0', '91.212.107.255', 1540647680, 1540647935, 'CY', 'Cyprus'), +('91.212.108.0', '91.212.108.255', 1540647936, 1540648191, 'GB', 'United Kingdom'), +('91.212.109.0', '91.212.109.255', 1540648192, 1540648447, 'CH', 'Switzerland'), +('91.212.110.0', '91.212.111.255', 1540648448, 1540648959, 'RO', 'Romania'), +('91.212.112.0', '91.212.112.255', 1540648960, 1540649215, 'FR', 'France'), +('91.212.113.0', '91.212.113.255', 1540649216, 1540649471, 'DE', 'Germany'), +('91.212.114.0', '91.212.114.255', 1540649472, 1540649727, 'IL', 'Israel'), +('91.212.115.0', '91.212.115.255', 1540649728, 1540649983, 'GB', 'United Kingdom'), +('91.212.116.0', '91.212.116.255', 1540649984, 1540650239, 'FR', 'France'), +('91.212.117.0', '91.212.117.255', 1540650240, 1540650495, 'CH', 'Switzerland'), +('91.212.118.0', '91.212.118.255', 1540650496, 1540650751, 'RU', 'Russian Federation'), +('91.212.119.0', '91.212.119.255', 1540650752, 1540651007, 'FR', 'France'), +('91.212.120.0', '91.212.120.255', 1540651008, 1540651263, 'RO', 'Romania'), +('91.212.121.0', '91.212.121.255', 1540651264, 1540651519, 'CH', 'Switzerland'), +('91.212.122.0', '91.212.122.255', 1540651520, 1540651775, 'MK', 'Macedonia'), +('91.212.123.0', '91.212.123.255', 1540651776, 1540652031, 'RU', 'Russian Federation'), +('91.212.124.0', '91.212.125.255', 1540652032, 1540652543, 'UA', 'Ukraine'), +('91.212.126.0', '91.212.126.255', 1540652544, 1540652799, 'TR', 'Turkey'), +('91.212.127.0', '91.212.127.255', 1540652800, 1540653055, 'EU', 'Europe'), +('91.212.128.0', '91.212.128.255', 1540653056, 1540653311, 'FR', 'France'), +('91.212.129.0', '91.212.129.255', 1540653312, 1540653567, 'DK', 'Denmark'), +('91.212.130.0', '91.212.130.255', 1540653568, 1540653823, 'DE', 'Germany'), +('91.212.131.0', '91.212.131.255', 1540653824, 1540654079, 'GB', 'United Kingdom'), +('91.212.132.0', '91.212.132.255', 1540654080, 1540654335, 'RS', 'Serbia'), +('91.212.133.0', '91.212.133.255', 1540654336, 1540654591, 'RU', 'Russian Federation'), +('91.212.135.0', '91.212.135.255', 1540654848, 1540655103, 'RU', 'Russian Federation'), +('91.212.136.0', '91.212.136.255', 1540655104, 1540655359, 'AT', 'Austria'), +('91.212.137.0', '91.212.137.255', 1540655360, 1540655615, 'RU', 'Russian Federation'), +('91.212.138.0', '91.212.138.255', 1540655616, 1540655871, 'GB', 'United Kingdom'), +('91.212.139.0', '91.212.140.255', 1540655872, 1540656383, 'NL', 'Netherlands'), +('91.212.141.0', '91.212.142.255', 1540656384, 1540656895, 'RU', 'Russian Federation'), +('91.212.143.0', '91.212.143.255', 1540656896, 1540657151, 'RO', 'Romania'), +('91.212.144.0', '91.212.144.255', 1540657152, 1540657407, 'DE', 'Germany'), +('91.212.145.0', '91.212.145.255', 1540657408, 1540657663, 'CY', 'Cyprus'), +('91.212.146.0', '91.212.146.255', 1540657664, 1540657919, 'RU', 'Russian Federation'), +('91.212.147.0', '91.212.147.255', 1540657920, 1540658175, 'FR', 'France'), +('91.212.148.0', '91.212.148.255', 1540658176, 1540658431, 'RO', 'Romania'), +('91.212.149.0', '91.212.151.255', 1540658432, 1540659199, 'RU', 'Russian Federation'), +('91.212.152.0', '91.212.152.255', 1540659200, 1540659455, 'FR', 'France'), +('91.212.153.0', '91.212.154.255', 1540659456, 1540659967, 'UA', 'Ukraine'), +('91.212.155.0', '91.212.155.255', 1540659968, 1540660223, 'PL', 'Poland'), +('91.212.156.0', '91.212.156.255', 1540660224, 1540660479, 'UA', 'Ukraine'), +('91.212.157.0', '91.212.157.255', 1540660480, 1540660735, 'FR', 'France'), +('91.212.158.0', '91.212.158.255', 1540660736, 1540660991, 'UA', 'Ukraine'), +('91.212.159.0', '91.212.159.255', 1540660992, 1540661247, 'RO', 'Romania'), +('91.212.160.0', '91.212.160.255', 1540661248, 1540661503, 'GB', 'United Kingdom'), +('91.212.161.0', '91.212.162.255', 1540661504, 1540662015, 'RO', 'Romania'), +('91.212.163.0', '91.212.163.255', 1540662016, 1540662271, 'BG', 'Bulgaria'), +('91.212.164.0', '91.212.164.255', 1540662272, 1540662527, 'RO', 'Romania'), +('91.212.165.0', '91.212.165.255', 1540662528, 1540662783, 'PL', 'Poland'), +('91.212.166.0', '91.212.166.255', 1540662784, 1540663039, 'GB', 'United Kingdom'), +('91.212.167.0', '91.212.167.255', 1540663040, 1540663295, 'IT', 'Italy'), +('91.212.168.0', '91.212.168.255', 1540663296, 1540663551, 'RU', 'Russian Federation'), +('91.212.169.0', '91.212.170.255', 1540663552, 1540664063, 'PL', 'Poland'), +('91.212.171.0', '91.212.171.255', 1540664064, 1540664319, 'RU', 'Russian Federation'), +('91.212.172.0', '91.212.172.255', 1540664320, 1540664575, 'PL', 'Poland'), +('91.212.173.0', '91.212.174.255', 1540664576, 1540665087, 'UA', 'Ukraine'), +('91.212.175.0', '91.212.175.255', 1540665088, 1540665343, 'ES', 'Spain'), +('91.212.176.0', '91.212.176.255', 1540665344, 1540665599, 'NL', 'Netherlands'), +('91.212.177.0', '91.212.177.255', 1540665600, 1540665855, 'UA', 'Ukraine'), +('91.212.178.0', '91.212.178.255', 1540665856, 1540666111, 'TR', 'Turkey'), +('91.212.179.0', '91.212.179.255', 1540666112, 1540666367, 'RU', 'Russian Federation'), +('91.212.180.0', '91.212.180.255', 1540666368, 1540666623, 'UZ', 'Uzbekistan'), +('91.212.181.0', '91.212.181.255', 1540666624, 1540666879, 'DE', 'Germany'), +('91.212.182.0', '91.212.182.255', 1540666880, 1540667135, 'GB', 'United Kingdom'), +('91.212.183.0', '91.212.184.255', 1540667136, 1540667647, 'NL', 'Netherlands'), +('91.212.185.0', '91.212.186.255', 1540667648, 1540668159, 'BE', 'Belgium'), +('91.212.187.0', '91.212.187.255', 1540668160, 1540668415, 'AT', 'Austria'), +('91.212.188.0', '91.212.188.255', 1540668416, 1540668671, 'SE', 'Sweden'), +('91.212.189.0', '91.212.189.255', 1540668672, 1540668927, 'IL', 'Israel'), +('91.212.190.0', '91.212.192.255', 1540668928, 1540669695, 'RO', 'Romania'), +('91.212.193.0', '91.212.193.255', 1540669696, 1540669951, 'KZ', 'Kazakstan'), +('91.212.194.0', '91.212.194.255', 1540669952, 1540670207, 'UA', 'Ukraine'), +('91.212.195.0', '91.212.195.255', 1540670208, 1540670463, 'RU', 'Russian Federation'), +('91.212.196.0', '91.212.196.255', 1540670464, 1540670719, 'CH', 'Switzerland'), +('91.212.197.0', '91.212.198.255', 1540670720, 1540671231, 'RU', 'Russian Federation'), +('91.212.199.0', '91.212.199.255', 1540671232, 1540671487, 'SI', 'Slovenia'), +('91.212.200.0', '91.212.200.255', 1540671488, 1540671743, 'CH', 'Switzerland'), +('91.212.201.0', '91.212.201.255', 1540671744, 1540671999, 'BG', 'Bulgaria'), +('91.212.202.0', '91.212.202.255', 1540672000, 1540672255, 'FR', 'France'), +('91.212.203.0', '91.212.203.255', 1540672256, 1540672511, 'UA', 'Ukraine'), +('91.212.204.0', '91.212.204.255', 1540672512, 1540672767, 'DE', 'Germany'), +('91.212.205.0', '91.212.205.255', 1540672768, 1540673023, 'FR', 'France'), +('91.212.206.0', '91.212.206.255', 1540673024, 1540673279, 'DE', 'Germany'), +('91.212.207.0', '91.212.207.255', 1540673280, 1540673535, 'SE', 'Sweden'), +('91.212.208.0', '91.212.208.255', 1540673536, 1540673791, 'SI', 'Slovenia'), +('91.212.209.0', '91.212.209.255', 1540673792, 1540674047, 'SE', 'Sweden'), +('91.212.210.0', '91.212.210.255', 1540674048, 1540674303, 'GB', 'United Kingdom'), +('91.212.211.0', '91.212.211.255', 1540674304, 1540674559, 'FR', 'France'), +('91.212.212.0', '91.212.212.255', 1540674560, 1540674815, 'GB', 'United Kingdom'), +('91.212.213.0', '91.212.213.255', 1540674816, 1540675071, 'GE', 'Georgia'), +('91.212.214.0', '91.212.214.255', 1540675072, 1540675327, 'UA', 'Ukraine'), +('91.212.215.0', '91.212.215.255', 1540675328, 1540675583, 'NL', 'Netherlands'), +('91.212.216.0', '91.212.216.255', 1540675584, 1540675839, 'GB', 'United Kingdom'), +('91.212.217.0', '91.212.218.255', 1540675840, 1540676351, 'RU', 'Russian Federation'), +('91.212.219.0', '91.212.219.255', 1540676352, 1540676607, 'IT', 'Italy'), +('91.212.220.0', '91.212.221.255', 1540676608, 1540677119, 'RU', 'Russian Federation'), +('91.212.222.0', '91.212.222.255', 1540677120, 1540677375, 'GB', 'United Kingdom'), +('91.212.223.0', '91.212.223.255', 1540677376, 1540677631, 'PL', 'Poland'), +('91.212.224.0', '91.212.224.255', 1540677632, 1540677887, 'DK', 'Denmark'), +('91.212.225.0', '91.212.225.255', 1540677888, 1540678143, 'DE', 'Germany'), +('91.212.226.0', '91.212.226.255', 1540678144, 1540678399, 'RU', 'Russian Federation'), +('91.212.227.0', '91.212.227.255', 1540678400, 1540678655, 'RO', 'Romania'), +('91.212.228.0', '91.212.228.255', 1540678656, 1540678911, 'SE', 'Sweden'), +('91.212.229.0', '91.212.229.255', 1540678912, 1540679167, 'RO', 'Romania'), +('91.212.230.0', '91.212.230.255', 1540679168, 1540679423, 'RU', 'Russian Federation'), +('91.212.231.0', '91.212.231.255', 1540679424, 1540679679, 'PL', 'Poland'), +('91.212.232.0', '91.212.232.255', 1540679680, 1540679935, 'LT', 'Lithuania'), +('91.212.233.0', '91.212.233.255', 1540679936, 1540680191, 'BG', 'Bulgaria'), +('91.212.234.0', '91.212.234.255', 1540680192, 1540680447, 'CH', 'Switzerland'), +('91.212.235.0', '91.212.235.255', 1540680448, 1540680703, 'BG', 'Bulgaria'), +('91.212.236.0', '91.212.236.255', 1540680704, 1540680959, 'FR', 'France'), +('91.212.237.0', '91.212.237.255', 1540680960, 1540681215, 'NL', 'Netherlands'), +('91.212.238.0', '91.212.238.255', 1540681216, 1540681471, 'FR', 'France'), +('91.212.239.0', '91.212.239.255', 1540681472, 1540681727, 'RU', 'Russian Federation'), +('91.212.240.0', '91.212.240.255', 1540681728, 1540681983, 'TR', 'Turkey'), +('91.212.241.0', '91.212.241.255', 1540681984, 1540682239, 'IT', 'Italy'), +('91.212.242.0', '91.212.242.255', 1540682240, 1540682495, 'PL', 'Poland'), +('91.212.243.0', '91.212.243.255', 1540682496, 1540682751, 'DE', 'Germany'), +('91.212.244.0', '91.212.244.255', 1540682752, 1540683007, 'EE', 'Estonia'), +('91.212.245.0', '91.212.245.255', 1540683008, 1540683263, 'DE', 'Germany'), +('91.212.246.0', '91.212.247.255', 1540683264, 1540683775, 'HR', 'Croatia'), +('91.212.248.0', '91.212.248.255', 1540683776, 1540684031, 'UA', 'Ukraine'), +('91.212.249.0', '91.212.249.255', 1540684032, 1540684287, 'IT', 'Italy'), +('91.212.250.0', '91.212.250.255', 1540684288, 1540684543, 'HU', 'Hungary'), +('91.212.251.0', '91.212.251.255', 1540684544, 1540684799, 'SI', 'Slovenia'), +('91.212.252.0', '91.212.252.255', 1540684800, 1540685055, 'IR', 'Iran, Islamic Republic of'), +('91.212.253.0', '91.212.253.255', 1540685056, 1540685311, 'UA', 'Ukraine'), +('91.212.254.0', '91.212.254.255', 1540685312, 1540685567, 'RO', 'Romania'), +('91.212.255.0', '91.212.255.255', 1540685568, 1540685823, 'FR', 'France'), +('91.213.0.0', '91.213.0.255', 1540685824, 1540686079, 'SE', 'Sweden'), +('91.213.1.0', '91.213.1.255', 1540686080, 1540686335, 'TR', 'Turkey'), +('91.213.2.0', '91.213.2.255', 1540686336, 1540686591, 'CH', 'Switzerland'), +('91.213.3.0', '91.213.3.255', 1540686592, 1540686847, 'GB', 'United Kingdom'), +('91.213.4.0', '91.213.4.255', 1540686848, 1540687103, 'CH', 'Switzerland'), +('91.213.5.0', '91.213.5.255', 1540687104, 1540687359, 'RU', 'Russian Federation'), +('91.213.6.0', '91.213.6.255', 1540687360, 1540687615, 'AT', 'Austria'), +('91.213.7.0', '91.213.7.255', 1540687616, 1540687871, 'IT', 'Italy'), +('91.213.8.0', '91.213.8.255', 1540687872, 1540688127, 'UA', 'Ukraine'), +('91.213.9.0', '91.213.9.255', 1540688128, 1540688383, 'HU', 'Hungary'), +('91.213.10.0', '91.213.10.255', 1540688384, 1540688639, 'CZ', 'Czech Republic'), +('91.213.11.0', '91.213.11.255', 1540688640, 1540688895, 'RO', 'Romania'), +('91.213.12.0', '91.213.12.255', 1540688896, 1540689151, 'BG', 'Bulgaria'), +('91.213.13.0', '91.213.13.255', 1540689152, 1540689407, 'NL', 'Netherlands'), +('91.213.14.0', '91.213.14.255', 1540689408, 1540689663, 'RU', 'Russian Federation'), +('91.213.15.0', '91.213.15.255', 1540689664, 1540689919, 'FR', 'France'), +('91.213.16.0', '91.213.16.255', 1540689920, 1540690175, 'RO', 'Romania'), +('91.213.17.0', '91.213.17.255', 1540690176, 1540690431, 'DK', 'Denmark'), +('91.213.18.0', '91.213.18.255', 1540690432, 1540690687, 'SA', 'Saudi Arabia'), +('91.213.19.0', '91.213.19.255', 1540690688, 1540690943, 'RO', 'Romania'), +('91.213.20.0', '91.213.22.255', 1540690944, 1540691711, 'DE', 'Germany'), +('91.213.23.0', '91.213.23.255', 1540691712, 1540691967, 'RU', 'Russian Federation'), +('91.213.24.0', '91.213.24.255', 1540691968, 1540692223, 'CH', 'Switzerland'), +('91.213.25.0', '91.213.25.255', 1540692224, 1540692479, 'FR', 'France'), +('91.213.26.0', '91.213.26.255', 1540692480, 1540692735, 'BE', 'Belgium'), +('91.213.27.0', '91.213.27.255', 1540692736, 1540692991, 'DE', 'Germany'), +('91.213.28.0', '91.213.28.255', 1540692992, 1540693247, 'GB', 'United Kingdom'), +('91.213.29.0', '91.213.29.255', 1540693248, 1540693503, 'RU', 'Russian Federation'), +('91.213.30.0', '91.213.30.255', 1540693504, 1540693759, 'ES', 'Spain'), +('91.213.31.0', '91.213.31.255', 1540693760, 1540694015, 'UZ', 'Uzbekistan'), +('91.213.32.0', '91.213.32.255', 1540694016, 1540694271, 'CH', 'Switzerland'), +('91.213.33.0', '91.213.33.255', 1540694272, 1540694527, 'RU', 'Russian Federation'), +('91.213.34.0', '91.213.35.255', 1540694528, 1540695039, 'RO', 'Romania'), +('91.214.0.0', '91.214.3.255', 1540751360, 1540752383, 'PL', 'Poland'), +('91.214.4.0', '91.214.7.255', 1540752384, 1540753407, 'GB', 'United Kingdom'), +('91.214.8.0', '91.214.11.255', 1540753408, 1540754431, 'DE', 'Germany'), +('91.214.12.0', '91.214.15.255', 1540754432, 1540755455, 'RO', 'Romania'), +('91.214.16.0', '91.214.19.255', 1540755456, 1540756479, 'UA', 'Ukraine'), +('91.214.20.0', '91.214.23.255', 1540756480, 1540757503, 'DK', 'Denmark'), +('91.214.24.0', '91.214.27.255', 1540757504, 1540758527, 'PL', 'Poland'), +('91.214.28.0', '91.214.35.255', 1540758528, 1540760575, 'UA', 'Ukraine'), +('91.214.36.0', '91.214.39.255', 1540760576, 1540761599, 'PL', 'Poland'), +('91.214.40.0', '91.214.43.255', 1540761600, 1540762623, 'RU', 'Russian Federation'), +('91.214.44.0', '91.214.47.255', 1540762624, 1540763647, 'BZ', 'Belize'), +('91.214.48.0', '91.214.51.255', 1540763648, 1540764671, 'UA', 'Ukraine'), +('91.214.52.0', '91.214.55.255', 1540764672, 1540765695, 'PL', 'Poland'), +('91.214.56.0', '91.214.59.255', 1540765696, 1540766719, 'RU', 'Russian Federation'), +('91.214.60.0', '91.214.63.255', 1540766720, 1540767743, 'IT', 'Italy'), +('91.214.64.0', '91.214.67.255', 1540767744, 1540768767, 'GB', 'United Kingdom'), +('91.214.68.0', '91.214.71.255', 1540768768, 1540769791, 'RU', 'Russian Federation'), +('91.214.72.0', '91.214.75.255', 1540769792, 1540770815, 'IT', 'Italy'), +('91.214.76.0', '91.214.79.255', 1540770816, 1540771839, 'RU', 'Russian Federation'), +('91.214.80.0', '91.214.87.255', 1540771840, 1540773887, 'UA', 'Ukraine'), +('91.214.88.0', '91.214.91.255', 1540773888, 1540774911, 'SE', 'Sweden'), +('91.214.92.0', '91.214.95.255', 1540774912, 1540775935, 'GB', 'United Kingdom'), +('91.214.96.0', '91.214.99.255', 1540775936, 1540776959, 'RU', 'Russian Federation'), +('91.214.100.0', '91.214.103.255', 1540776960, 1540777983, 'IL', 'Israel'), +('91.214.104.0', '91.214.107.255', 1540777984, 1540779007, 'HR', 'Croatia'), +('91.214.108.0', '91.214.111.255', 1540779008, 1540780031, 'NL', 'Netherlands'), +('91.214.112.0', '91.214.115.255', 1540780032, 1540781055, 'UA', 'Ukraine'), +('91.214.116.0', '91.214.123.255', 1540781056, 1540783103, 'RU', 'Russian Federation'), +('91.214.124.0', '91.214.139.255', 1540783104, 1540787199, 'UA', 'Ukraine'), +('91.214.140.0', '91.214.143.255', 1540787200, 1540788223, 'KZ', 'Kazakstan'), +('91.214.144.0', '91.214.151.255', 1540788224, 1540790271, 'RU', 'Russian Federation'), +('91.214.152.0', '91.214.155.255', 1540790272, 1540791295, 'KW', 'Kuwait'), +('91.214.156.0', '91.214.159.255', 1540791296, 1540792319, 'CZ', 'Czech Republic'), +('91.214.160.0', '91.214.163.255', 1540792320, 1540793343, 'UA', 'Ukraine'), +('91.214.164.0', '91.214.167.255', 1540793344, 1540794367, 'FI', 'Finland'), +('91.214.168.0', '91.214.171.255', 1540794368, 1540795391, 'CH', 'Switzerland'), +('91.214.172.0', '91.214.175.255', 1540795392, 1540796415, 'RU', 'Russian Federation'), +('91.214.176.0', '91.214.183.255', 1540796416, 1540798463, 'UA', 'Ukraine'), +('91.214.184.0', '91.214.187.255', 1540798464, 1540799487, 'RU', 'Russian Federation'), +('91.214.188.0', '91.214.191.255', 1540799488, 1540800511, 'RO', 'Romania'), +('91.214.192.0', '91.214.195.255', 1540800512, 1540801535, 'CZ', 'Czech Republic'), +('91.214.196.0', '91.214.199.255', 1540801536, 1540802559, 'RU', 'Russian Federation'), +('91.214.200.0', '91.214.203.255', 1540802560, 1540803583, 'MD', 'Moldova, Republic of'), +('91.214.204.0', '91.214.207.255', 1540803584, 1540804607, 'RU', 'Russian Federation'), +('91.214.208.0', '91.214.211.255', 1540804608, 1540805631, 'UA', 'Ukraine'), +('91.214.212.0', '91.214.215.255', 1540805632, 1540806655, 'RU', 'Russian Federation'), +('92.0.0.0', '92.31.255.255', 1543503872, 1545601023, 'GB', 'United Kingdom'), +('92.32.0.0', '92.35.255.255', 1545601024, 1545863167, 'SE', 'Sweden'), +('92.36.0.0', '92.36.127.255', 1545863168, 1545895935, 'RU', 'Russian Federation'), +('92.36.128.0', '92.36.255.255', 1545895936, 1545928703, 'BA', 'Bosnia and Herzegovina'), +('92.37.0.0', '92.37.127.255', 1545928704, 1545961471, 'SI', 'Slovenia'), +('92.37.128.0', '92.37.255.255', 1545961472, 1545994239, 'RU', 'Russian Federation'), +('92.38.0.0', '92.38.127.255', 1545994240, 1546027007, 'CZ', 'Czech Republic'), +('92.38.128.0', '92.38.255.255', 1546027008, 1546059775, 'RU', 'Russian Federation'), +('92.39.0.0', '92.39.15.255', 1546059776, 1546063871, 'SE', 'Sweden'), +('92.39.16.0', '92.39.31.255', 1546063872, 1546067967, 'DE', 'Germany'), +('92.39.32.0', '92.39.47.255', 1546067968, 1546072063, 'SE', 'Sweden'), +('92.39.48.0', '92.39.63.255', 1546072064, 1546076159, 'MD', 'Moldova, Republic of'), +('92.39.64.0', '92.39.79.255', 1546076160, 1546080255, 'RU', 'Russian Federation'), +('92.39.80.0', '92.39.95.255', 1546080256, 1546084351, 'AZ', 'Azerbaijan'), +('92.39.96.0', '92.39.111.255', 1546084352, 1546088447, 'RU', 'Russian Federation'), +('92.39.112.0', '92.39.112.127', 1546088448, 1546088575, 'SN', 'Senegal'), +('92.39.112.128', '92.39.112.255', 1546088576, 1546088703, 'TM', 'Turkmenistan'), +('92.39.113.0', '92.39.113.127', 1546088704, 1546088831, 'BA', 'Bosnia and Herzegovina'), +('92.39.113.128', '92.39.113.255', 1546088832, 1546088959, 'TJ', 'Tajikistan'), +('92.39.114.0', '92.39.114.127', 1546088960, 1546089087, 'SD', 'Sudan'), +('92.39.114.128', '92.39.114.255', 1546089088, 1546089215, 'DE', 'Germany'), +('92.39.115.0', '92.39.115.127', 1546089216, 1546089343, 'MW', 'Malawi'), +('92.39.115.128', '92.39.115.255', 1546089344, 1546089471, 'ZW', 'Zimbabwe'), +('92.39.116.0', '92.39.116.127', 1546089472, 1546089599, 'BI', 'Burundi'), +('92.39.116.128', '92.39.116.255', 1546089600, 1546089727, 'GW', 'Guinea-Bissau'), +('92.39.117.0', '92.39.117.127', 1546089728, 1546089855, 'LS', 'Lesotho'), +('92.39.117.128', '92.39.117.255', 1546089856, 1546089983, 'NE', 'Niger'), +('92.39.118.0', '92.39.118.127', 1546089984, 1546090111, 'DE', 'Germany'), +('92.39.118.128', '92.39.118.255', 1546090112, 1546090239, 'MR', 'Mauritania'), +('92.39.119.0', '92.39.119.127', 1546090240, 1546090367, 'ZM', 'Zambia'), +('92.39.119.128', '92.39.119.255', 1546090368, 1546090495, 'MG', 'Madagascar'), +('92.39.120.0', '92.39.120.127', 1546090496, 1546090623, 'BW', 'Botswana'), +('92.39.120.128', '92.39.120.255', 1546090624, 1546090751, 'GH', 'Ghana'), +('92.39.121.0', '92.39.121.127', 1546090752, 1546090879, 'ER', 'Eritrea'), +('92.39.121.128', '92.39.121.255', 1546090880, 1546091007, 'AO', 'Angola'), +('92.39.122.0', '92.39.122.127', 1546091008, 1546091135, 'NA', 'Namibia'), +('92.39.122.128', '92.39.122.255', 1546091136, 1546091263, 'KM', 'Comoros'), +('92.39.123.0', '92.39.123.127', 1546091264, 1546091391, 'GN', 'Guinea'), +('92.39.123.128', '92.39.123.255', 1546091392, 1546091519, 'HT', 'Haiti'), +('92.39.124.0', '92.39.124.127', 1546091520, 1546091647, 'AF', 'Afghanistan'), +('92.39.124.128', '92.39.124.255', 1546091648, 1546091775, 'TD', 'Chad'), +('92.39.125.0', '92.39.125.127', 1546091776, 1546091903, 'BF', 'Burkina Faso'), +('92.39.125.128', '92.39.125.255', 1546091904, 1546092031, 'RW', 'Rwanda'), +('92.39.126.0', '92.39.126.127', 1546092032, 1546092159, 'TG', 'Togo'), +('92.39.126.128', '92.39.126.255', 1546092160, 1546092287, 'SD', 'Sudan'), +('92.39.127.0', '92.39.127.127', 1546092288, 1546092415, 'RW', 'Rwanda'), +('92.39.127.128', '92.39.127.255', 1546092416, 1546092543, 'NG', 'Nigeria'), +('92.39.128.0', '92.39.143.255', 1546092544, 1546096639, 'RU', 'Russian Federation'), +('92.39.144.0', '92.39.159.255', 1546096640, 1546100735, 'IT', 'Italy'), +('92.39.160.0', '92.39.175.255', 1546100736, 1546104831, 'RU', 'Russian Federation'), +('92.39.176.0', '92.39.191.255', 1546104832, 1546108927, 'IE', 'Ireland'), +('92.39.192.0', '92.39.207.255', 1546108928, 1546113023, 'IM', 'Isle of Man'), +('92.39.208.0', '92.39.239.255', 1546113024, 1546121215, 'RU', 'Russian Federation'), +('92.39.240.0', '92.39.255.255', 1546121216, 1546125311, 'GR', 'Greece'), +('92.40.0.0', '92.41.255.255', 1546125312, 1546256383, 'GB', 'United Kingdom'), +('92.42.0.0', '92.42.31.255', 1546256384, 1546264575, 'RU', 'Russian Federation'), +('92.42.32.0', '92.42.39.255', 1546264576, 1546266623, 'TR', 'Turkey'), +('92.42.40.0', '92.42.47.255', 1546266624, 1546268671, 'RU', 'Russian Federation'), +('92.42.48.0', '92.42.55.255', 1546268672, 1546270719, 'IR', 'Iran, Islamic Republic of'), +('92.42.56.0', '92.42.63.255', 1546270720, 1546272767, 'GB', 'United Kingdom'), +('92.42.64.0', '92.42.71.255', 1546272768, 1546274815, 'NO', 'Norway'), +('92.42.72.0', '92.42.79.255', 1546274816, 1546276863, 'SE', 'Sweden'), +('92.42.80.0', '92.42.85.255', 1546276864, 1546278399, 'GB', 'United Kingdom'), +('92.42.86.0', '92.42.87.255', 1546278400, 1546278911, 'BZ', 'Belize'), +('92.42.88.0', '92.42.95.255', 1546278912, 1546280959, 'RU', 'Russian Federation'), +('92.42.96.0', '92.42.103.255', 1546280960, 1546283007, 'IT', 'Italy'), +('92.42.104.0', '92.42.111.255', 1546283008, 1546285055, 'CH', 'Switzerland'), +('92.42.112.0', '92.42.119.255', 1546285056, 1546287103, 'PL', 'Poland'), +('92.42.120.0', '92.42.127.255', 1546287104, 1546289151, 'GB', 'United Kingdom'), +('92.42.128.0', '92.42.135.255', 1546289152, 1546291199, 'RU', 'Russian Federation'), +('92.42.136.0', '92.42.143.255', 1546291200, 1546293247, 'AT', 'Austria'), +('92.42.144.0', '92.42.151.255', 1546293248, 1546295295, 'GB', 'United Kingdom'), +('92.42.152.0', '92.42.159.255', 1546295296, 1546297343, 'SE', 'Sweden'), +('92.42.160.0', '92.42.167.255', 1546297344, 1546299391, 'RU', 'Russian Federation'), +('92.42.168.0', '92.42.175.255', 1546299392, 1546301439, 'GB', 'United Kingdom'), +('92.42.176.0', '92.42.183.255', 1546301440, 1546303487, 'LU', 'Luxembourg'), +('92.42.184.0', '92.42.191.255', 1546303488, 1546305535, 'CH', 'Switzerland'), +('92.42.192.0', '92.42.199.255', 1546305536, 1546307583, 'DE', 'Germany'), +('92.42.200.0', '92.42.215.255', 1546307584, 1546311679, 'RU', 'Russian Federation'), +('92.42.216.0', '92.42.223.255', 1546311680, 1546313727, 'FR', 'France'), +('92.42.224.0', '92.42.231.255', 1546313728, 1546315775, 'DE', 'Germany'), +('92.42.232.0', '92.42.239.255', 1546315776, 1546317823, 'NL', 'Netherlands'), +('92.42.240.0', '92.42.247.255', 1546317824, 1546319871, 'CH', 'Switzerland'), +('92.42.248.0', '92.42.249.255', 1546319872, 1546320383, 'RS', 'Serbia'), +('92.42.250.0', '92.42.250.3', 1546320384, 1546320387, 'SR', 'Suriname'), +('92.42.250.4', '92.42.255.255', 1546320388, 1546321919, 'RS', 'Serbia'), +('92.43.0.0', '92.43.7.255', 1546321920, 1546323967, 'RU', 'Russian Federation'), +('92.43.8.0', '92.43.9.255', 1546323968, 1546324479, 'GE', 'Georgia'), +('92.43.10.0', '92.43.15.255', 1546324480, 1546326015, 'NO', 'Norway'), +('92.43.16.0', '92.43.23.255', 1546326016, 1546328063, 'ES', 'Spain'), +('92.43.24.0', '92.43.31.255', 1546328064, 1546330111, 'CZ', 'Czech Republic'), +('92.43.32.0', '92.43.39.255', 1546330112, 1546332159, 'SE', 'Sweden'), +('92.43.40.0', '92.43.47.255', 1546332160, 1546334207, 'GB', 'United Kingdom'), +('92.43.48.0', '92.43.55.255', 1546334208, 1546336255, 'DE', 'Germany'), +('92.43.56.0', '92.43.63.255', 1546336256, 1546338303, 'CZ', 'Czech Republic'), +('92.43.64.0', '92.43.71.255', 1546338304, 1546340351, 'GB', 'United Kingdom'), +('92.43.72.0', '92.43.79.255', 1546340352, 1546342399, 'DK', 'Denmark'), +('92.43.80.0', '92.43.87.255', 1546342400, 1546344447, 'TR', 'Turkey'), +('92.43.88.0', '92.43.95.255', 1546344448, 1546346495, 'DK', 'Denmark'), +('92.43.96.0', '92.43.103.255', 1546346496, 1546348543, 'AT', 'Austria'), +('92.43.104.0', '92.43.111.63', 1546348544, 1546350399, 'DE', 'Germany'), +('92.43.111.64', '92.43.111.95', 1546350400, 1546350431, 'JP', 'Japan'), +('92.43.111.96', '92.43.111.255', 1546350432, 1546350591, 'DE', 'Germany'), +('92.43.112.0', '92.43.119.255', 1546350592, 1546352639, 'PL', 'Poland'), +('92.43.120.0', '92.43.127.255', 1546352640, 1546354687, 'DK', 'Denmark'), +('92.43.128.0', '92.43.135.255', 1546354688, 1546356735, 'FR', 'France'), +('92.43.136.0', '92.43.143.255', 1546356736, 1546358783, 'AM', 'Armenia'), +('92.43.144.0', '92.43.151.255', 1546358784, 1546360831, 'PL', 'Poland'), +('92.43.152.0', '92.43.167.255', 1546360832, 1546364927, 'RU', 'Russian Federation'), +('92.43.168.0', '92.43.175.255', 1546364928, 1546366975, 'SA', 'Saudi Arabia'), +('92.43.176.0', '92.43.183.255', 1546366976, 1546369023, 'DK', 'Denmark'), +('92.43.184.0', '92.43.191.255', 1546369024, 1546371071, 'RU', 'Russian Federation'), +('92.43.192.0', '92.43.199.255', 1546371072, 1546373119, 'IS', 'Iceland'), +('92.43.200.0', '92.43.207.255', 1546373120, 1546375167, 'HU', 'Hungary'), +('92.43.208.0', '92.43.215.255', 1546375168, 1546377215, 'GB', 'United Kingdom'), +('92.43.216.0', '92.43.223.255', 1546377216, 1546379263, 'CH', 'Switzerland'), +('92.43.224.0', '92.43.231.255', 1546379264, 1546381311, 'ES', 'Spain'), +('92.43.232.0', '92.43.239.255', 1546381312, 1546383359, 'DK', 'Denmark'), +('92.43.240.0', '92.43.247.255', 1546383360, 1546385407, 'IT', 'Italy'), +('92.43.248.0', '92.43.255.255', 1546385408, 1546387455, 'FR', 'France'), +('92.44.0.0', '92.45.255.255', 1546387456, 1546518527, 'TR', 'Turkey'), +('92.46.0.0', '92.47.255.255', 1546518528, 1546649599, 'KZ', 'Kazakstan'), +('92.48.0.0', '92.48.63.255', 1546649600, 1546665983, 'SA', 'Saudi Arabia'), +('92.48.64.0', '92.48.94.159', 1546665984, 1546673823, 'GB', 'United Kingdom'), +('92.48.94.160', '92.48.94.175', 1546673824, 1546673839, 'RS', 'Serbia'), +('92.48.94.176', '92.48.108.255', 1546673840, 1546677503, 'GB', 'United Kingdom'), +('92.48.109.0', '92.48.109.255', 1546677504, 1546677759, 'IN', 'India'), +('92.48.110.0', '92.48.114.79', 1546677760, 1546678863, 'GB', 'United Kingdom'), +('92.48.114.80', '92.48.114.87', 1546678864, 1546678871, 'RS', 'Serbia'), +('92.48.114.88', '92.48.121.255', 1546678872, 1546680831, 'GB', 'United Kingdom'), +('92.48.122.0', '92.48.122.63', 1546680832, 1546680895, 'RS', 'Serbia'), +('92.48.122.64', '92.48.124.63', 1546680896, 1546681407, 'GB', 'United Kingdom'), +('92.48.124.64', '92.48.124.95', 1546681408, 1546681439, 'RS', 'Serbia'), +('92.48.124.96', '92.48.124.111', 1546681440, 1546681455, 'GB', 'United Kingdom'), +('92.48.124.112', '92.48.124.127', 1546681456, 1546681471, 'RS', 'Serbia'), +('92.48.124.128', '92.48.127.255', 1546681472, 1546682367, 'GB', 'United Kingdom'), +('92.48.128.0', '92.48.191.255', 1546682368, 1546698751, 'BE', 'Belgium'), +('92.48.192.0', '92.48.255.255', 1546698752, 1546715135, 'NL', 'Netherlands'), +('92.49.0.0', '92.49.63.255', 1546715136, 1546731519, 'LV', 'Latvia'), +('92.49.64.0', '92.49.127.255', 1546731520, 1546747903, 'FR', 'France'), +('92.49.128.0', '92.49.191.255', 1546747904, 1546764287, 'RU', 'Russian Federation'), +('92.49.192.0', '92.49.255.255', 1546764288, 1546780671, 'UA', 'Ukraine'), +('92.50.0.0', '92.50.63.255', 1546780672, 1546797055, 'IR', 'Iran, Islamic Republic of'), +('92.50.64.0', '92.50.127.255', 1546797056, 1546813439, 'DE', 'Germany'), +('92.50.128.0', '92.51.63.255', 1546813440, 1546862591, 'RU', 'Russian Federation'), +('92.51.64.0', '92.51.127.255', 1546862592, 1546878975, 'GE', 'Georgia'), +('92.51.128.0', '92.51.191.255', 1546878976, 1546895359, 'DE', 'Germany'), +('92.51.192.0', '92.51.255.255', 1546895360, 1546911743, 'IE', 'Ireland'), +('92.52.0.0', '92.52.63.255', 1546911744, 1546928127, 'SK', 'Slovakia'), +('92.52.64.0', '92.52.127.255', 1546928128, 1546944511, 'GB', 'United Kingdom'), +('92.52.128.0', '92.52.191.255', 1546944512, 1546960895, 'UA', 'Ukraine'), +('92.52.192.0', '92.52.255.255', 1546960896, 1546977279, 'HU', 'Hungary'), +('92.53.0.0', '92.53.63.255', 1546977280, 1546993663, 'MK', 'Macedonia'), +('92.53.64.0', '92.53.127.255', 1546993664, 1547010047, 'RU', 'Russian Federation'), +('92.53.128.0', '92.53.191.255', 1547010048, 1547026431, 'SI', 'Slovenia'), +('92.53.192.0', '92.53.255.255', 1547026432, 1547042815, 'NL', 'Netherlands'), +('92.54.0.0', '92.54.63.255', 1547042816, 1547059199, 'ES', 'Spain'), +('92.54.64.0', '92.54.127.255', 1547059200, 1547075583, 'RU', 'Russian Federation'), +('92.54.128.0', '92.54.191.255', 1547075584, 1547091967, 'GB', 'United Kingdom'), +('92.54.192.0', '92.54.255.255', 1547091968, 1547108351, 'GE', 'Georgia'), +('92.55.0.0', '92.55.63.255', 1547108352, 1547124735, 'RU', 'Russian Federation'), +('92.55.64.0', '92.55.127.255', 1547124736, 1547141119, 'MK', 'Macedonia'), +('92.55.128.0', '92.55.191.255', 1547141120, 1547157503, 'RO', 'Romania'), +('92.55.192.0', '92.55.255.255', 1547157504, 1547173887, 'PL', 'Poland'), +('92.56.0.0', '92.59.255.255', 1547173888, 1547436031, 'ES', 'Spain'), +('92.60.0.0', '92.60.15.255', 1547436032, 1547440127, 'AT', 'Austria'), +('92.60.16.0', '92.60.31.255', 1547440128, 1547444223, 'AL', 'Albania'), +('92.60.32.0', '92.60.47.255', 1547444224, 1547448319, 'IT', 'Italy'), +('92.60.48.0', '92.60.63.255', 1547448320, 1547452415, 'SK', 'Slovakia'), +('92.60.64.0', '92.60.79.255', 1547452416, 1547456511, 'IT', 'Italy'), +('92.60.80.0', '92.60.95.255', 1547456512, 1547460607, 'RU', 'Russian Federation'), +('92.60.96.0', '92.60.127.255', 1547460608, 1547468799, 'GB', 'United Kingdom'), +('92.60.128.0', '92.60.143.255', 1547468800, 1547472895, 'PL', 'Poland'), +('92.60.144.0', '92.60.159.255', 1547472896, 1547476991, 'DK', 'Denmark'), +('92.60.160.0', '92.60.175.255', 1547476992, 1547481087, 'ES', 'Spain'), +('92.60.176.0', '92.60.191.255', 1547481088, 1547485183, 'UA', 'Ukraine'), +('92.60.192.0', '92.60.207.255', 1547485184, 1547489279, 'IE', 'Ireland'), +('92.60.208.0', '92.60.223.255', 1547489280, 1547493375, 'DE', 'Germany'), +('92.60.224.0', '92.60.239.255', 1547493376, 1547497471, 'RS', 'Serbia'), +('92.60.240.0', '92.60.255.255', 1547497472, 1547501567, 'GB', 'United Kingdom'), +('92.61.0.0', '92.61.15.255', 1547501568, 1547505663, 'TR', 'Turkey'), +('92.61.16.0', '92.61.31.255', 1547505664, 1547509759, 'RU', 'Russian Federation'), +('92.61.32.0', '92.61.47.255', 1547509760, 1547513855, 'LT', 'Lithuania'), +('92.61.48.0', '92.61.63.255', 1547513856, 1547517951, 'AT', 'Austria'), +('92.61.64.0', '92.61.79.255', 1547517952, 1547522047, 'RU', 'Russian Federation'), +('92.61.80.0', '92.61.95.255', 1547522048, 1547526143, 'CZ', 'Czech Republic'), +('92.61.96.0', '92.61.127.255', 1547526144, 1547534335, 'HU', 'Hungary'), +('92.61.128.0', '92.61.143.255', 1547534336, 1547538431, 'FR', 'France'), +('92.61.144.0', '92.61.159.255', 1547538432, 1547542527, 'DE', 'Germany'), +('92.61.160.0', '92.61.175.255', 1547542528, 1547546623, 'FR', 'France'), +('92.61.176.0', '92.61.191.255', 1547546624, 1547550719, 'IR', 'Iran, Islamic Republic of'), +('92.61.192.0', '92.61.207.255', 1547550720, 1547554815, 'IE', 'Ireland'), +('92.61.208.0', '92.61.223.255', 1547554816, 1547558911, 'AT', 'Austria'), +('92.61.224.0', '92.61.239.255', 1547558912, 1547563007, 'IL', 'Israel'), +('92.61.240.0', '92.61.244.255', 1547563008, 1547564287, 'NL', 'Netherlands'), +('92.61.245.0', '92.61.245.23', 1547564288, 1547564311, 'CH', 'Switzerland'), +('92.61.245.24', '92.61.245.27', 1547564312, 1547564315, 'BG', 'Bulgaria'), +('92.61.245.28', '92.61.245.47', 1547564316, 1547564335, 'NL', 'Netherlands'), +('92.61.245.48', '92.61.245.127', 1547564336, 1547564415, 'US', 'United States'), +('92.61.245.128', '92.61.245.151', 1547564416, 1547564439, 'NZ', 'New Zealand'), +('92.61.245.152', '92.61.245.255', 1547564440, 1547564543, 'NL', 'Netherlands'), +('92.61.246.0', '92.61.246.255', 1547564544, 1547564799, 'US', 'United States'), +('92.61.247.0', '92.61.247.31', 1547564800, 1547564831, 'NL', 'Netherlands'), +('92.61.247.32', '92.61.247.63', 1547564832, 1547564863, 'LV', 'Latvia'), +('92.61.247.64', '92.61.247.255', 1547564864, 1547565055, 'NL', 'Netherlands'), +('92.61.248.0', '92.61.250.255', 1547565056, 1547565823, 'US', 'United States'), +('92.61.251.0', '92.61.255.255', 1547565824, 1547567103, 'NL', 'Netherlands'), +('92.62.0.0', '92.62.15.255', 1547567104, 1547571199, 'GB', 'United Kingdom'), +('92.62.16.0', '92.62.31.255', 1547571200, 1547575295, 'AT', 'Austria'), +('92.62.32.0', '92.62.47.255', 1547575296, 1547579391, 'NO', 'Norway'), +('92.62.48.0', '92.62.63.255', 1547579392, 1547583487, 'RU', 'Russian Federation'), +('92.62.64.0', '92.62.79.255', 1547583488, 1547587583, 'KG', 'Kyrgyzstan'), +('92.62.80.0', '92.62.95.255', 1547587584, 1547591679, 'IT', 'Italy'), +('92.62.96.0', '92.62.111.255', 1547591680, 1547595775, 'EE', 'Estonia'), +('92.62.112.0', '92.62.127.255', 1547595776, 1547599871, 'JO', 'Jordan'), +('92.62.128.0', '92.62.143.255', 1547599872, 1547603967, 'LT', 'Lithuania'), +('92.62.144.0', '92.62.159.255', 1547603968, 1547608063, 'RU', 'Russian Federation'), +('92.62.160.0', '92.62.175.255', 1547608064, 1547612159, 'LB', 'Lebanon'), +('92.62.176.0', '92.62.191.255', 1547612160, 1547616255, 'IR', 'Iran, Islamic Republic of'), +('92.62.192.0', '92.62.207.255', 1547616256, 1547620351, 'DK', 'Denmark'), +('92.62.208.0', '92.62.208.7', 1547620352, 1547620359, 'A2', 'Satellite Provider'), +('92.62.208.8', '92.62.208.15', 1547620360, 1547620367, 'NG', 'Nigeria'), +('92.62.208.16', '92.62.208.23', 1547620368, 1547620375, 'A2', 'Satellite Provider'), +('92.62.208.24', '92.62.208.31', 1547620376, 1547620383, 'NG', 'Nigeria'), +('92.62.208.32', '92.62.208.47', 1547620384, 1547620399, 'A2', 'Satellite Provider'), +('92.62.208.48', '92.62.208.55', 1547620400, 1547620407, 'NG', 'Nigeria'), +('92.62.208.56', '92.62.208.63', 1547620408, 1547620415, 'A2', 'Satellite Provider'), +('92.62.208.64', '92.62.208.71', 1547620416, 1547620423, 'NG', 'Nigeria'), +('92.62.208.72', '92.62.208.87', 1547620424, 1547620439, 'A2', 'Satellite Provider'), +('92.62.208.88', '92.62.208.199', 1547620440, 1547620551, 'NG', 'Nigeria'), +('92.62.208.200', '92.62.208.207', 1547620552, 1547620559, 'A2', 'Satellite Provider'), +('92.62.208.208', '92.62.209.7', 1547620560, 1547620615, 'NG', 'Nigeria'), +('92.62.209.8', '92.62.209.31', 1547620616, 1547620639, 'A2', 'Satellite Provider'), +('92.62.209.32', '92.62.209.39', 1547620640, 1547620647, 'NG', 'Nigeria'), +('92.62.209.40', '92.62.209.255', 1547620648, 1547620863, 'A2', 'Satellite Provider'), +('92.62.210.0', '92.62.210.7', 1547620864, 1547620871, 'NG', 'Nigeria'), +('92.62.210.8', '92.62.210.15', 1547620872, 1547620879, 'A2', 'Satellite Provider'), +('92.62.210.16', '92.62.210.23', 1547620880, 1547620887, 'NG', 'Nigeria'), +('92.62.210.24', '92.62.210.31', 1547620888, 1547620895, 'A2', 'Satellite Provider'), +('92.62.210.32', '92.62.210.39', 1547620896, 1547620903, 'NG', 'Nigeria'), +('92.62.210.40', '92.62.210.47', 1547620904, 1547620911, 'A2', 'Satellite Provider'), +('92.62.210.48', '92.62.210.71', 1547620912, 1547620935, 'NG', 'Nigeria'), +('92.62.210.72', '92.62.210.87', 1547620936, 1547620951, 'A2', 'Satellite Provider'), +('92.62.210.88', '92.62.210.95', 1547620952, 1547620959, 'NG', 'Nigeria'), +('92.62.210.96', '92.62.210.103', 1547620960, 1547620967, 'A2', 'Satellite Provider'), +('92.62.210.104', '92.62.210.119', 1547620968, 1547620983, 'NG', 'Nigeria'), +('92.62.210.120', '92.62.210.143', 1547620984, 1547621007, 'A2', 'Satellite Provider'), +('92.62.210.144', '92.62.210.167', 1547621008, 1547621031, 'NG', 'Nigeria'), +('92.62.210.168', '92.62.210.183', 1547621032, 1547621047, 'A2', 'Satellite Provider'), +('92.62.210.184', '92.62.210.199', 1547621048, 1547621063, 'NG', 'Nigeria'), +('92.62.210.200', '92.62.210.207', 1547621064, 1547621071, 'A2', 'Satellite Provider'), +('92.62.210.208', '92.62.210.223', 1547621072, 1547621087, 'NG', 'Nigeria'), +('92.62.210.224', '92.62.210.239', 1547621088, 1547621103, 'A2', 'Satellite Provider'), +('92.62.210.240', '92.62.210.255', 1547621104, 1547621119, 'NG', 'Nigeria'), +('92.62.211.0', '92.62.211.7', 1547621120, 1547621127, 'A2', 'Satellite Provider'), +('92.62.211.8', '92.62.211.15', 1547621128, 1547621135, 'NG', 'Nigeria'), +('92.62.211.16', '92.62.211.23', 1547621136, 1547621143, 'A2', 'Satellite Provider'), +('92.62.211.24', '92.62.211.31', 1547621144, 1547621151, 'NG', 'Nigeria'), +('92.62.211.32', '92.62.211.47', 1547621152, 1547621167, 'A2', 'Satellite Provider'), +('92.62.211.48', '92.62.211.55', 1547621168, 1547621175, 'NG', 'Nigeria'), +('92.62.211.56', '92.62.211.127', 1547621176, 1547621247, 'A2', 'Satellite Provider'), +('92.62.211.128', '92.62.211.143', 1547621248, 1547621263, 'NG', 'Nigeria'), +('92.62.211.144', '92.62.211.183', 1547621264, 1547621303, 'A2', 'Satellite Provider'), +('92.62.211.184', '92.62.211.199', 1547621304, 1547621319, 'NG', 'Nigeria'), +('92.62.211.200', '92.62.223.255', 1547621320, 1547624447, 'A2', 'Satellite Provider'), +('92.62.224.0', '92.62.239.255', 1547624448, 1547628543, 'CZ', 'Czech Republic'), +('92.62.240.0', '92.62.255.255', 1547628544, 1547632639, 'BG', 'Bulgaria'), +('92.63.0.0', '92.63.15.255', 1547632640, 1547636735, 'TR', 'Turkey'), +('92.63.16.0', '92.63.31.255', 1547636736, 1547640831, 'SI', 'Slovenia'), +('92.63.32.0', '92.63.47.255', 1547640832, 1547644927, 'PL', 'Poland'), +('92.63.48.0', '92.63.63.255', 1547644928, 1547649023, 'CZ', 'Czech Republic'), +('92.63.64.0', '92.63.79.255', 1547649024, 1547653119, 'RU', 'Russian Federation'), +('92.63.80.0', '92.63.95.255', 1547653120, 1547657215, 'LV', 'Latvia'), +('92.63.96.0', '92.63.107.255', 1547657216, 1547660287, 'RU', 'Russian Federation'), +('92.63.108.0', '92.63.111.255', 1547660288, 1547661311, 'BE', 'Belgium'), +('92.63.112.0', '92.63.127.255', 1547661312, 1547665407, 'LV', 'Latvia'), +('92.63.128.0', '92.63.137.95', 1547665408, 1547667807, 'GB', 'United Kingdom'), +('92.63.137.96', '92.63.137.103', 1547667808, 1547667815, 'LT', 'Lithuania'), +('92.63.137.104', '92.63.143.255', 1547667816, 1547669503, 'GB', 'United Kingdom'), +('92.63.144.0', '92.63.155.255', 1547669504, 1547672575, 'AT', 'Austria'), +('92.63.156.0', '92.63.157.255', 1547672576, 1547673087, 'HR', 'Croatia'), +('92.63.158.0', '92.63.159.255', 1547673088, 1547673599, 'AT', 'Austria'), +('92.63.160.0', '92.63.207.255', 1547673600, 1547685887, 'RU', 'Russian Federation'), +('92.63.208.0', '92.63.223.255', 1547685888, 1547689983, 'AT', 'Austria'), +('92.63.224.0', '92.63.239.255', 1547689984, 1547694079, 'IT', 'Italy'), +('92.63.240.0', '92.63.255.255', 1547694080, 1547698175, 'HU', 'Hungary'), +('92.64.0.0', '92.65.52.95', 1547698176, 1547777119, 'NL', 'Netherlands'), +('92.65.52.96', '92.65.52.103', 1547777120, 1547777127, 'IT', 'Italy'), +('92.65.52.104', '92.71.255.255', 1547777128, 1548222463, 'NL', 'Netherlands'), +('92.72.0.0', '92.79.255.255', 1548222464, 1548746751, 'DE', 'Germany'), +('92.80.0.0', '92.87.255.255', 1548746752, 1549271039, 'RO', 'Romania'), +('92.88.0.0', '92.95.255.255', 1549271040, 1549795327, 'FR', 'France'), +('92.96.0.0', '92.99.255.255', 1549795328, 1550057471, 'AE', 'United Arab Emirates'), +('92.100.0.0', '92.101.255.255', 1550057472, 1550188543, 'RU', 'Russian Federation'), +('92.102.0.0', '92.103.255.255', 1550188544, 1550319615, 'FR', 'France'), +('92.104.0.0', '92.107.255.255', 1550319616, 1550581759, 'CH', 'Switzerland'), +('92.108.0.0', '92.111.255.255', 1550581760, 1550843903, 'NL', 'Netherlands'), +('92.112.0.0', '92.113.255.255', 1550843904, 1550974975, 'UA', 'Ukraine'), +('92.114.0.0', '92.114.127.255', 1550974976, 1551007743, 'RO', 'Romania'), +('92.114.128.0', '92.115.255.255', 1551007744, 1551106047, 'MD', 'Moldova, Republic of'), +('92.116.0.0', '92.117.255.255', 1551106048, 1551237119, 'DE', 'Germany'), +('92.118.0.0', '92.119.255.255', 1551237120, 1551368191, 'GR', 'Greece'), +('92.120.0.0', '92.121.255.255', 1551368192, 1551499263, 'NL', 'Netherlands'), +('92.122.0.0', '92.122.15.255', 1551499264, 1551503359, 'EU', 'Europe'), +('92.122.16.0', '92.122.19.255', 1551503360, 1551504383, 'GB', 'United Kingdom'), +('92.122.20.0', '92.122.23.255', 1551504384, 1551505407, 'FR', 'France'), +('92.122.24.0', '92.122.31.255', 1551505408, 1551507455, 'EU', 'Europe'), +('92.122.32.0', '92.122.35.255', 1551507456, 1551508479, 'DE', 'Germany'), +('92.122.36.0', '92.122.39.255', 1551508480, 1551509503, 'IT', 'Italy'), +('92.122.40.0', '92.122.47.255', 1551509504, 1551511551, 'EU', 'Europe'), +('92.122.48.0', '92.122.51.255', 1551511552, 1551512575, 'GB', 'United Kingdom'), +('92.122.52.0', '92.122.67.255', 1551512576, 1551516671, 'EU', 'Europe'), +('92.122.68.0', '92.122.71.255', 1551516672, 1551517695, 'IT', 'Italy'), +('92.122.72.0', '92.122.75.255', 1551517696, 1551518719, 'ES', 'Spain'), +('92.122.76.0', '92.122.115.255', 1551518720, 1551528959, 'EU', 'Europe'), +('92.122.116.0', '92.122.119.255', 1551528960, 1551529983, 'FR', 'France'), +('92.122.120.0', '92.122.175.255', 1551529984, 1551544319, 'EU', 'Europe'), +('92.122.176.0', '92.122.187.255', 1551544320, 1551547391, 'DE', 'Germany'), +('92.122.188.0', '92.122.191.255', 1551547392, 1551548415, 'EU', 'Europe'), +('92.122.192.0', '92.122.203.255', 1551548416, 1551551487, 'DE', 'Germany'), +('92.122.204.0', '92.122.219.255', 1551551488, 1551555583, 'EU', 'Europe'), +('92.122.220.0', '92.122.231.255', 1551555584, 1551558655, 'FR', 'France'), +('92.122.232.0', '92.122.255.255', 1551558656, 1551564799, 'EU', 'Europe'), +('92.123.0.0', '92.123.31.255', 1551564800, 1551572991, 'FR', 'France'), +('92.123.32.0', '92.123.43.255', 1551572992, 1551576063, 'NL', 'Netherlands'), +('92.123.44.0', '92.123.47.255', 1551576064, 1551577087, 'EU', 'Europe'), +('92.123.48.0', '92.123.59.255', 1551577088, 1551580159, 'NL', 'Netherlands'), +('92.123.60.0', '92.123.255.255', 1551580160, 1551630335, 'EU', 'Europe'), +('92.124.0.0', '92.127.255.255', 1551630336, 1551892479, 'RU', 'Russian Federation'), +('92.128.0.0', '92.191.255.255', 1551892480, 1556086783, 'FR', 'France'), +('92.192.0.0', '92.198.26.73', 1556086784, 1556486729, 'DE', 'Germany'), +('92.198.26.74', '92.198.26.74', 1556486730, 1556486730, 'A2', 'Satellite Provider'), +('92.198.26.75', '92.231.255.255', 1556486731, 1558708223, 'DE', 'Germany'), +('92.232.0.0', '92.239.255.255', 1558708224, 1559232511, 'GB', 'United Kingdom'), +('92.240.0.0', '92.240.31.255', 1559232512, 1559240703, 'IL', 'Israel'), +('92.240.32.0', '92.240.63.255', 1559240704, 1559248895, 'BA', 'Bosnia and Herzegovina'), +('92.240.64.0', '92.240.95.255', 1559248896, 1559257087, 'LV', 'Latvia'), +('92.240.96.0', '92.240.127.255', 1559257088, 1559265279, 'UA', 'Ukraine'), +('92.240.128.0', '92.240.159.255', 1559265280, 1559273471, 'RU', 'Russian Federation'), +('92.240.160.0', '92.240.191.255', 1559273472, 1559281663, 'CZ', 'Czech Republic'), +('92.240.192.0', '92.240.223.255', 1559281664, 1559289855, 'RU', 'Russian Federation'), +('92.240.224.0', '92.240.255.255', 1559289856, 1559298047, 'SK', 'Slovakia'), +('92.241.0.0', '92.241.31.255', 1559298048, 1559306239, 'RU', 'Russian Federation'), +('92.241.32.0', '92.241.63.255', 1559306240, 1559314431, 'JO', 'Jordan'), +('92.241.64.0', '92.241.95.255', 1559314432, 1559322623, 'GE', 'Georgia'), +('92.241.96.0', '92.241.127.255', 1559322624, 1559330815, 'RU', 'Russian Federation'), +('92.241.128.0', '92.241.159.255', 1559330816, 1559339007, 'BA', 'Bosnia and Herzegovina'), +('92.241.160.0', '92.241.162.191', 1559339008, 1559339711, 'RU', 'Russian Federation'), +('92.241.162.192', '92.241.162.255', 1559339712, 1559339775, 'CY', 'Cyprus'), +('92.241.163.0', '92.241.191.255', 1559339776, 1559347199, 'RU', 'Russian Federation'), +('92.241.192.0', '92.241.207.255', 1559347200, 1559351295, 'SE', 'Sweden'), +('92.241.208.0', '92.241.223.255', 1559351296, 1559355391, 'DK', 'Denmark'), +('92.241.224.0', '92.242.95.255', 1559355392, 1559388159, 'RU', 'Russian Federation'), +('92.242.96.0', '92.242.127.255', 1559388160, 1559396351, 'UA', 'Ukraine'), +('92.242.128.0', '92.242.159.255', 1559396352, 1559404543, 'GB', 'United Kingdom'), +('92.242.160.0', '92.242.191.255', 1559404544, 1559412735, 'FI', 'Finland'), +('92.242.192.0', '92.242.223.255', 1559412736, 1559420927, 'IR', 'Iran, Islamic Republic of'), +('92.242.224.0', '92.242.255.255', 1559420928, 1559429119, 'HR', 'Croatia'), +('92.243.0.0', '92.243.31.255', 1559429120, 1559437311, 'FR', 'France'), +('92.243.32.0', '92.243.63.255', 1559437312, 1559445503, 'AT', 'Austria'), +('92.243.64.0', '92.243.127.255', 1559445504, 1559461887, 'RU', 'Russian Federation'), +('92.243.128.0', '92.243.159.255', 1559461888, 1559470079, 'IT', 'Italy'), +('92.243.160.0', '92.243.191.255', 1559470080, 1559478271, 'RU', 'Russian Federation'), +('92.243.192.0', '92.243.223.255', 1559478272, 1559486463, 'CZ', 'Czech Republic'), +('92.243.224.0', '92.243.255.255', 1559486464, 1559494655, 'DK', 'Denmark'), +('92.244.0.0', '92.244.31.255', 1559494656, 1559502847, 'SE', 'Sweden'), +('92.244.32.0', '92.244.63.255', 1559502848, 1559511039, 'PL', 'Poland'), +('92.244.64.0', '92.244.95.255', 1559511040, 1559519231, 'SI', 'Slovenia'), +('92.244.96.0', '92.244.127.255', 1559519232, 1559527423, 'UA', 'Ukraine'), +('92.244.128.0', '92.244.159.255', 1559527424, 1559535615, 'RS', 'Serbia'), +('92.244.160.0', '92.244.191.255', 1559535616, 1559543807, 'GB', 'United Kingdom'), +('92.244.192.0', '92.244.223.255', 1559543808, 1559551999, 'SE', 'Sweden'), +('92.244.224.0', '92.244.255.255', 1559552000, 1559560191, 'RU', 'Russian Federation'), +('92.245.0.0', '92.245.31.255', 1559560192, 1559568383, 'SK', 'Slovakia'), +('92.245.32.0', '92.245.63.255', 1559568384, 1559576575, 'RU', 'Russian Federation'), +('92.245.64.0', '92.245.95.255', 1559576576, 1559584767, 'HU', 'Hungary'), +('92.245.96.0', '92.245.127.255', 1559584768, 1559592959, 'KG', 'Kyrgyzstan'), +('92.245.128.0', '92.245.159.255', 1559592960, 1559601151, 'FR', 'France'), +('92.245.160.0', '92.245.191.255', 1559601152, 1559609343, 'IT', 'Italy'), +('92.245.192.0', '92.245.223.255', 1559609344, 1559617535, 'SK', 'Slovakia'), +('92.245.224.0', '92.245.255.255', 1559617536, 1559625727, 'GB', 'United Kingdom'), +('92.246.0.0', '92.246.31.255', 1559625728, 1559633919, 'DK', 'Denmark'), +('92.246.32.0', '92.246.63.255', 1559633920, 1559642111, 'IT', 'Italy'), +('92.246.64.0', '92.246.95.255', 1559642112, 1559650303, 'RU', 'Russian Federation'), +('92.246.96.0', '92.246.127.255', 1559650304, 1559658495, 'IT', 'Italy'), +('92.246.128.0', '92.246.191.255', 1559658496, 1559674879, 'RU', 'Russian Federation'), +('92.246.192.0', '92.246.223.255', 1559674880, 1559683071, 'ES', 'Spain'), +('92.246.224.0', '92.246.255.255', 1559683072, 1559691263, 'CH', 'Switzerland'), +('92.247.0.0', '92.247.255.255', 1559691264, 1559756799, 'BG', 'Bulgaria'), +('92.248.0.0', '92.248.127.255', 1559756800, 1559789567, 'AT', 'Austria'), +('92.248.128.0', '92.249.63.255', 1559789568, 1559838719, 'RU', 'Russian Federation'), +('92.249.64.0', '92.249.127.255', 1559838720, 1559855103, 'UA', 'Ukraine'), +('92.249.128.0', '92.249.255.255', 1559855104, 1559887871, 'HU', 'Hungary'), +('92.250.0.0', '92.250.127.255', 1559887872, 1559920639, 'PT', 'Portugal'), +('92.250.128.0', '92.250.175.255', 1559920640, 1559932927, 'LU', 'Luxembourg'), +('92.250.176.0', '92.250.183.255', 1559932928, 1559934975, 'DE', 'Germany'), +('92.250.184.0', '92.250.191.255', 1559934976, 1559937023, 'LU', 'Luxembourg'), +('92.250.192.0', '92.250.215.255', 1559937024, 1559943167, 'DE', 'Germany'), +('92.250.216.0', '92.250.243.255', 1559943168, 1559950335, 'LU', 'Luxembourg'), +('92.250.244.0', '92.250.255.255', 1559950336, 1559953407, 'DE', 'Germany'), +('92.251.0.0', '92.251.127.255', 1559953408, 1559986175, 'MT', 'Malta'), +('92.251.128.0', '92.251.255.255', 1559986176, 1560018943, 'IE', 'Ireland'), +('92.252.0.0', '92.252.127.255', 1560018944, 1560051711, 'DE', 'Germany'), +('92.252.128.0', '92.252.255.255', 1560051712, 1560084479, 'RU', 'Russian Federation'), +('92.253.128.0', '92.253.255.255', 1560117248, 1560150015, 'CZ', 'Czech Republic'), +('92.254.0.0', '92.254.127.255', 1560150016, 1560182783, 'NL', 'Netherlands'), +('92.254.128.0', '92.254.255.255', 1560182784, 1560215551, 'SE', 'Sweden'), +('92.255.0.0', '92.255.255.255', 1560215552, 1560281087, 'RU', 'Russian Federation'), +('93.0.0.0', '93.31.255.255', 1560281088, 1562378239, 'FR', 'France'), +('93.32.0.0', '93.62.236.159', 1562378240, 1564404895, 'IT', 'Italy'), +('93.62.236.160', '93.62.236.167', 1564404896, 1564404903, 'A2', 'Satellite Provider'), +('93.62.236.168', '93.71.255.255', 1564404904, 1564999679, 'IT', 'Italy'), +('93.72.0.0', '93.79.255.255', 1564999680, 1565523967, 'UA', 'Ukraine'), +('93.80.0.0', '93.81.255.255', 1565523968, 1565655039, 'RU', 'Russian Federation'), +('93.82.0.0', '93.83.255.255', 1565655040, 1565786111, 'AT', 'Austria'), +('93.84.0.0', '93.85.255.255', 1565786112, 1565917183, 'BY', 'Belarus'), +('93.86.0.0', '93.87.255.255', 1565917184, 1566048255, 'RS', 'Serbia'), +('93.88.0.0', '93.88.31.255', 1566048256, 1566056447, 'RU', 'Russian Federation'), +('93.88.32.0', '93.88.47.255', 1566056448, 1566060543, 'IT', 'Italy'), +('93.88.48.0', '93.88.63.255', 1566060544, 1566064639, 'UA', 'Ukraine'), +('93.88.64.0', '93.88.79.255', 1566064640, 1566068735, 'RU', 'Russian Federation'), +('93.88.80.0', '93.88.95.255', 1566068736, 1566072831, 'AZ', 'Azerbaijan'), +('93.88.96.0', '93.88.127.255', 1566072832, 1566081023, 'IT', 'Italy'), +('93.88.128.0', '93.88.143.255', 1566081024, 1566085119, 'RU', 'Russian Federation'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('93.88.144.0', '93.88.159.255', 1566085120, 1566089215, 'NL', 'Netherlands'), +('93.88.160.0', '93.88.191.255', 1566089216, 1566097407, 'RU', 'Russian Federation'), +('93.88.192.0', '93.88.207.255', 1566097408, 1566101503, 'GB', 'United Kingdom'), +('93.88.208.0', '93.88.223.255', 1566101504, 1566105599, 'RU', 'Russian Federation'), +('93.88.224.0', '93.88.239.255', 1566105600, 1566109695, 'DE', 'Germany'), +('93.88.240.0', '93.88.255.255', 1566109696, 1566113791, 'CH', 'Switzerland'), +('93.89.0.0', '93.89.15.255', 1566113792, 1566117887, 'DE', 'Germany'), +('93.89.16.0', '93.89.31.255', 1566117888, 1566121983, 'TR', 'Turkey'), +('93.89.32.0', '93.89.47.255', 1566121984, 1566126079, 'NO', 'Norway'), +('93.89.48.0', '93.89.63.255', 1566126080, 1566130175, 'IT', 'Italy'), +('93.89.64.0', '93.89.79.255', 1566130176, 1566134271, 'TR', 'Turkey'), +('93.89.80.0', '93.89.95.255', 1566134272, 1566138367, 'GB', 'United Kingdom'), +('93.89.96.0', '93.89.111.255', 1566138368, 1566142463, 'CZ', 'Czech Republic'), +('93.89.112.0', '93.89.127.255', 1566142464, 1566146559, 'NO', 'Norway'), +('93.89.128.0', '93.89.143.255', 1566146560, 1566150655, 'GB', 'United Kingdom'), +('93.89.144.0', '93.89.159.255', 1566150656, 1566154751, 'CZ', 'Czech Republic'), +('93.89.160.0', '93.89.175.255', 1566154752, 1566158847, 'HU', 'Hungary'), +('93.89.176.0', '93.89.191.255', 1566158848, 1566162943, 'RU', 'Russian Federation'), +('93.89.192.0', '93.89.207.255', 1566162944, 1566167039, 'PL', 'Poland'), +('93.89.208.0', '93.89.223.255', 1566167040, 1566171135, 'UA', 'Ukraine'), +('93.89.224.0', '93.89.239.255', 1566171136, 1566175231, 'HU', 'Hungary'), +('93.89.240.0', '93.89.255.255', 1566175232, 1566179327, 'IE', 'Ireland'), +('93.90.0.0', '93.90.15.255', 1566179328, 1566183423, 'DK', 'Denmark'), +('93.90.16.0', '93.90.31.255', 1566183424, 1566187519, 'ES', 'Spain'), +('93.90.32.0', '93.90.47.255', 1566187520, 1566191615, 'RU', 'Russian Federation'), +('93.90.48.0', '93.90.63.255', 1566191616, 1566195711, 'FI', 'Finland'), +('93.90.64.0', '93.90.79.255', 1566195712, 1566199807, 'AL', 'Albania'), +('93.90.80.0', '93.90.111.255', 1566199808, 1566207999, 'RU', 'Russian Federation'), +('93.90.112.0', '93.90.127.255', 1566208000, 1566212095, 'DK', 'Denmark'), +('93.90.128.0', '93.90.143.255', 1566212096, 1566216191, 'DE', 'Germany'), +('93.90.144.0', '93.90.159.255', 1566216192, 1566220287, 'SE', 'Sweden'), +('93.90.160.0', '93.90.175.255', 1566220288, 1566224383, 'CZ', 'Czech Republic'), +('93.90.176.0', '93.90.191.255', 1566224384, 1566228479, 'DE', 'Germany'), +('93.90.192.0', '93.90.207.255', 1566228480, 1566232575, 'GB', 'United Kingdom'), +('93.90.208.0', '93.91.15.255', 1566232576, 1566248959, 'RU', 'Russian Federation'), +('93.91.16.0', '93.91.47.255', 1566248960, 1566257151, 'GB', 'United Kingdom'), +('93.91.48.0', '93.91.63.255', 1566257152, 1566261247, 'CZ', 'Czech Republic'), +('93.91.64.0', '93.91.79.255', 1566261248, 1566265343, 'TR', 'Turkey'), +('93.91.80.0', '93.91.95.255', 1566265344, 1566269439, 'DE', 'Germany'), +('93.91.96.0', '93.91.103.255', 1566269440, 1566271487, 'NO', 'Norway'), +('93.91.104.0', '93.91.105.255', 1566271488, 1566271999, 'FI', 'Finland'), +('93.91.106.0', '93.91.107.255', 1566272000, 1566272511, 'SE', 'Sweden'), +('93.91.108.0', '93.91.109.255', 1566272512, 1566273023, 'DK', 'Denmark'), +('93.91.110.0', '93.91.111.255', 1566273024, 1566273535, 'NO', 'Norway'), +('93.91.112.0', '93.91.127.255', 1566273536, 1566277631, 'RU', 'Russian Federation'), +('93.91.128.0', '93.91.143.255', 1566277632, 1566281727, 'IT', 'Italy'), +('93.91.144.0', '93.91.159.255', 1566281728, 1566285823, 'CZ', 'Czech Republic'), +('93.91.160.0', '93.91.175.255', 1566285824, 1566289919, 'RU', 'Russian Federation'), +('93.91.176.0', '93.91.191.255', 1566289920, 1566294015, 'FI', 'Finland'), +('93.91.192.0', '93.91.207.255', 1566294016, 1566298111, 'IQ', 'Iraq'), +('93.91.208.0', '93.91.223.255', 1566298112, 1566302207, 'PL', 'Poland'), +('93.91.224.0', '93.91.239.255', 1566302208, 1566306303, 'RU', 'Russian Federation'), +('93.91.240.0', '93.91.255.255', 1566306304, 1566310399, 'CZ', 'Czech Republic'), +('93.92.0.0', '93.92.7.255', 1566310400, 1566312447, 'SE', 'Sweden'), +('93.92.8.0', '93.92.15.255', 1566312448, 1566314495, 'IE', 'Ireland'), +('93.92.16.0', '93.92.23.255', 1566314496, 1566316543, 'BE', 'Belgium'), +('93.92.24.0', '93.92.31.255', 1566316544, 1566318591, 'NO', 'Norway'), +('93.92.32.0', '93.92.39.255', 1566318592, 1566320639, 'RU', 'Russian Federation'), +('93.92.40.0', '93.92.41.255', 1566320640, 1566321151, 'GB', 'United Kingdom'), +('93.92.42.0', '93.92.42.255', 1566321152, 1566321407, 'DE', 'Germany'), +('93.92.43.0', '93.92.43.255', 1566321408, 1566321663, 'UA', 'Ukraine'), +('93.92.44.0', '93.92.44.255', 1566321664, 1566321919, 'BZ', 'Belize'), +('93.92.45.0', '93.92.46.255', 1566321920, 1566322431, 'GB', 'United Kingdom'), +('93.92.47.0', '93.92.47.255', 1566322432, 1566322687, 'BS', 'Bahamas'), +('93.92.48.0', '93.92.55.255', 1566322688, 1566324735, 'CZ', 'Czech Republic'), +('93.92.56.0', '93.92.63.255', 1566324736, 1566326783, 'HU', 'Hungary'), +('93.92.64.0', '93.92.71.255', 1566326784, 1566328831, 'RU', 'Russian Federation'), +('93.92.72.0', '93.92.79.255', 1566328832, 1566330879, 'IT', 'Italy'), +('93.92.80.0', '93.92.95.255', 1566330880, 1566334975, 'RU', 'Russian Federation'), +('93.92.96.0', '93.92.103.255', 1566334976, 1566337023, 'NL', 'Netherlands'), +('93.92.104.0', '93.92.111.255', 1566337024, 1566339071, 'FR', 'France'), +('93.92.112.0', '93.92.119.255', 1566339072, 1566341119, 'RU', 'Russian Federation'), +('93.92.120.0', '93.92.127.255', 1566341120, 1566343167, 'GB', 'United Kingdom'), +('93.92.128.0', '93.92.135.255', 1566343168, 1566345215, 'DE', 'Germany'), +('93.92.136.0', '93.92.143.255', 1566345216, 1566347263, 'RU', 'Russian Federation'), +('93.92.144.0', '93.92.151.255', 1566347264, 1566349311, 'DE', 'Germany'), +('93.92.152.0', '93.92.159.255', 1566349312, 1566351359, 'IT', 'Italy'), +('93.92.160.0', '93.92.167.255', 1566351360, 1566353407, 'AT', 'Austria'), +('93.92.168.0', '93.92.175.255', 1566353408, 1566355455, 'ES', 'Spain'), +('93.92.176.0', '93.92.183.255', 1566355456, 1566357503, 'RU', 'Russian Federation'), +('93.92.184.0', '93.92.191.255', 1566357504, 1566359551, 'IT', 'Italy'), +('93.92.192.0', '93.92.207.255', 1566359552, 1566363647, 'RU', 'Russian Federation'), +('93.92.208.0', '93.92.215.255', 1566363648, 1566365695, 'GB', 'United Kingdom'), +('93.92.216.0', '93.92.223.255', 1566365696, 1566367743, 'RU', 'Russian Federation'), +('93.92.224.0', '93.92.239.255', 1566367744, 1566371839, 'ES', 'Spain'), +('93.92.240.0', '93.92.247.255', 1566371840, 1566373887, 'RU', 'Russian Federation'), +('93.92.248.0', '93.92.255.255', 1566373888, 1566375935, 'RS', 'Serbia'), +('93.93.0.0', '93.93.7.255', 1566375936, 1566377983, 'DE', 'Germany'), +('93.93.8.0', '93.93.15.255', 1566377984, 1566380031, 'BG', 'Bulgaria'), +('93.93.16.0', '93.93.23.255', 1566380032, 1566382079, 'IT', 'Italy'), +('93.93.24.0', '93.93.31.255', 1566382080, 1566384127, 'TR', 'Turkey'), +('93.93.32.0', '93.93.39.255', 1566384128, 1566386175, 'RU', 'Russian Federation'), +('93.93.40.0', '93.93.47.255', 1566386176, 1566388223, 'FR', 'France'), +('93.93.48.0', '93.93.49.255', 1566388224, 1566388735, 'HU', 'Hungary'), +('93.93.50.0', '93.93.51.255', 1566388736, 1566389247, 'PT', 'Portugal'), +('93.93.52.0', '93.93.53.255', 1566389248, 1566389759, 'HU', 'Hungary'), +('93.93.54.0', '93.93.55.255', 1566389760, 1566390271, 'US', 'United States'), +('93.93.56.0', '93.93.63.255', 1566390272, 1566392319, 'LT', 'Lithuania'), +('93.93.64.0', '93.93.71.255', 1566392320, 1566394367, 'ES', 'Spain'), +('93.93.72.0', '93.93.79.255', 1566394368, 1566396415, 'NO', 'Norway'), +('93.93.80.0', '93.93.87.255', 1566396416, 1566398463, 'GB', 'United Kingdom'), +('93.93.88.0', '93.93.95.255', 1566398464, 1566400511, 'RU', 'Russian Federation'), +('93.93.96.0', '93.93.96.63', 1566400512, 1566400575, 'NO', 'Norway'), +('93.93.96.64', '93.93.96.95', 1566400576, 1566400607, 'NL', 'Netherlands'), +('93.93.96.96', '93.93.96.127', 1566400608, 1566400639, 'GB', 'United Kingdom'), +('93.93.96.128', '93.93.96.159', 1566400640, 1566400671, 'NO', 'Norway'), +('93.93.96.160', '93.93.96.191', 1566400672, 1566400703, 'DE', 'Germany'), +('93.93.96.192', '93.93.96.223', 1566400704, 1566400735, 'NL', 'Netherlands'), +('93.93.96.224', '93.93.97.255', 1566400736, 1566401023, 'NO', 'Norway'), +('93.93.98.0', '93.93.98.31', 1566401024, 1566401055, 'US', 'United States'), +('93.93.98.32', '93.93.98.63', 1566401056, 1566401087, 'NO', 'Norway'), +('93.93.98.64', '93.93.98.191', 1566401088, 1566401215, 'US', 'United States'), +('93.93.98.192', '93.93.99.191', 1566401216, 1566401471, 'NO', 'Norway'), +('93.93.99.192', '93.93.99.255', 1566401472, 1566401535, 'US', 'United States'), +('93.93.100.0', '93.93.100.63', 1566401536, 1566401599, 'IN', 'India'), +('93.93.100.64', '93.93.100.127', 1566401600, 1566401663, 'CN', 'China'), +('93.93.100.128', '93.93.100.191', 1566401664, 1566401727, 'SG', 'Singapore'), +('93.93.100.192', '93.93.100.255', 1566401728, 1566401791, 'AU', 'Australia'), +('93.93.101.0', '93.93.101.191', 1566401792, 1566401983, 'NO', 'Norway'), +('93.93.101.192', '93.93.101.255', 1566401984, 1566402047, 'AU', 'Australia'), +('93.93.102.0', '93.93.103.255', 1566402048, 1566402559, 'NO', 'Norway'), +('93.93.104.0', '93.93.111.255', 1566402560, 1566404607, 'IT', 'Italy'), +('93.93.112.0', '93.93.119.255', 1566404608, 1566406655, 'ES', 'Spain'), +('93.93.120.0', '93.93.127.255', 1566406656, 1566408703, 'NL', 'Netherlands'), +('93.93.128.0', '93.93.135.255', 1566408704, 1566410751, 'GB', 'United Kingdom'), +('93.93.136.0', '93.93.151.255', 1566410752, 1566414847, 'RU', 'Russian Federation'), +('93.93.152.0', '93.93.159.255', 1566414848, 1566416895, 'CH', 'Switzerland'), +('93.93.160.0', '93.93.167.255', 1566416896, 1566418943, 'IT', 'Italy'), +('93.93.168.0', '93.93.175.255', 1566418944, 1566420991, 'RU', 'Russian Federation'), +('93.93.176.0', '93.93.183.255', 1566420992, 1566423039, 'ES', 'Spain'), +('93.93.184.0', '93.93.191.255', 1566423040, 1566425087, 'FR', 'France'), +('93.93.192.0', '93.93.199.255', 1566425088, 1566427135, 'RS', 'Serbia'), +('93.93.200.0', '93.93.207.255', 1566427136, 1566429183, 'IT', 'Italy'), +('93.93.208.0', '93.93.231.255', 1566429184, 1566435327, 'GB', 'United Kingdom'), +('93.93.240.0', '93.93.247.255', 1566437376, 1566439423, 'BE', 'Belgium'), +('93.93.248.0', '93.94.7.255', 1566439424, 1566443519, 'DE', 'Germany'), +('93.94.8.0', '93.94.15.255', 1566443520, 1566445567, 'NO', 'Norway'), +('93.94.16.0', '93.94.23.255', 1566445568, 1566447615, 'CY', 'Cyprus'), +('93.94.24.0', '93.94.39.255', 1566447616, 1566451711, 'IT', 'Italy'), +('93.94.40.0', '93.94.47.255', 1566451712, 1566453759, 'IL', 'Israel'), +('93.94.48.0', '93.94.55.255', 1566453760, 1566455807, 'IQ', 'Iraq'), +('93.94.56.0', '93.94.63.255', 1566455808, 1566457855, 'PT', 'Portugal'), +('93.94.64.0', '93.94.71.255', 1566457856, 1566459903, 'CH', 'Switzerland'), +('93.94.72.0', '93.94.79.255', 1566459904, 1566461951, 'GB', 'United Kingdom'), +('93.94.80.0', '93.94.87.255', 1566461952, 1566463999, 'DE', 'Germany'), +('93.94.88.0', '93.94.95.255', 1566464000, 1566466047, 'IT', 'Italy'), +('93.94.96.0', '93.94.103.255', 1566466048, 1566468095, 'ES', 'Spain'), +('93.94.104.0', '93.94.111.255', 1566468096, 1566470143, 'BE', 'Belgium'), +('93.94.112.0', '93.94.127.255', 1566470144, 1566474239, 'GB', 'United Kingdom'), +('93.94.128.0', '93.94.135.255', 1566474240, 1566476287, 'DE', 'Germany'), +('93.94.136.0', '93.94.143.255', 1566476288, 1566478335, 'BG', 'Bulgaria'), +('93.94.144.0', '93.94.159.255', 1566478336, 1566482431, 'RU', 'Russian Federation'), +('93.94.160.0', '93.94.167.255', 1566482432, 1566484479, 'FR', 'France'), +('93.94.168.0', '93.94.175.255', 1566484480, 1566486527, 'SE', 'Sweden'), +('93.94.176.0', '93.94.183.255', 1566486528, 1566488575, 'RU', 'Russian Federation'), +('93.94.184.0', '93.94.191.255', 1566488576, 1566490623, 'PL', 'Poland'), +('93.94.192.0', '93.94.199.255', 1566490624, 1566492671, 'TR', 'Turkey'), +('93.94.200.0', '93.94.207.255', 1566492672, 1566494719, 'NL', 'Netherlands'), +('93.94.208.0', '93.94.215.255', 1566494720, 1566496767, 'SE', 'Sweden'), +('93.94.216.0', '93.94.223.255', 1566496768, 1566498815, 'AM', 'Armenia'), +('93.94.224.0', '93.94.231.255', 1566498816, 1566500863, 'NL', 'Netherlands'), +('93.94.232.0', '93.94.239.255', 1566500864, 1566502911, 'RU', 'Russian Federation'), +('93.94.240.0', '93.94.247.255', 1566502912, 1566504959, 'CH', 'Switzerland'), +('93.94.248.0', '93.94.255.255', 1566504960, 1566507007, 'TR', 'Turkey'), +('93.95.0.0', '93.95.7.255', 1566507008, 1566509055, 'NL', 'Netherlands'), +('93.95.8.0', '93.95.15.255', 1566509056, 1566511103, 'GB', 'United Kingdom'), +('93.95.16.0', '93.95.16.255', 1566511104, 1566511359, 'FR', 'France'), +('93.95.17.0', '93.95.23.255', 1566511360, 1566513151, 'BE', 'Belgium'), +('93.95.24.0', '93.95.31.255', 1566513152, 1566515199, 'BH', 'Bahrain'), +('93.95.32.0', '93.95.39.255', 1566515200, 1566517247, 'CZ', 'Czech Republic'), +('93.95.40.0', '93.95.47.255', 1566517248, 1566519295, 'RU', 'Russian Federation'), +('93.95.48.0', '93.95.55.255', 1566519296, 1566521343, 'BE', 'Belgium'), +('93.95.56.0', '93.95.63.255', 1566521344, 1566523391, 'FR', 'France'), +('93.95.64.0', '93.95.71.255', 1566523392, 1566525439, 'MK', 'Macedonia'), +('93.95.72.0', '93.95.79.255', 1566525440, 1566527487, 'IS', 'Iceland'), +('93.95.80.0', '93.95.87.255', 1566527488, 1566529535, 'IE', 'Ireland'), +('93.95.88.0', '93.95.95.255', 1566529536, 1566531583, 'PL', 'Poland'), +('93.95.96.0', '93.95.103.255', 1566531584, 1566533631, 'RU', 'Russian Federation'), +('93.95.104.0', '93.95.111.255', 1566533632, 1566535679, 'GB', 'United Kingdom'), +('93.95.112.0', '93.95.119.255', 1566535680, 1566537727, 'NL', 'Netherlands'), +('93.95.120.0', '93.95.127.255', 1566537728, 1566539775, 'GB', 'United Kingdom'), +('93.95.128.0', '93.95.135.255', 1566539776, 1566541823, 'DE', 'Germany'), +('93.95.136.0', '93.95.143.255', 1566541824, 1566543871, 'RU', 'Russian Federation'), +('93.95.144.0', '93.95.151.255', 1566543872, 1566545919, 'NL', 'Netherlands'), +('93.95.152.0', '93.95.175.255', 1566545920, 1566552063, 'RU', 'Russian Federation'), +('93.95.176.0', '93.95.183.255', 1566552064, 1566554111, 'TR', 'Turkey'), +('93.95.184.0', '93.95.191.255', 1566554112, 1566556159, 'UA', 'Ukraine'), +('93.95.192.0', '93.95.199.255', 1566556160, 1566558207, 'RU', 'Russian Federation'), +('93.95.200.0', '93.95.207.255', 1566558208, 1566560255, 'JO', 'Jordan'), +('93.95.208.0', '93.95.223.255', 1566560256, 1566564351, 'IT', 'Italy'), +('93.95.224.0', '93.95.231.255', 1566564352, 1566566399, 'IS', 'Iceland'), +('93.95.232.0', '93.95.239.255', 1566566400, 1566568447, 'FR', 'France'), +('93.95.240.0', '93.95.247.255', 1566568448, 1566570495, 'KZ', 'Kazakstan'), +('93.95.248.0', '93.95.255.255', 1566570496, 1566572543, 'NL', 'Netherlands'), +('93.96.0.0', '93.97.255.255', 1566572544, 1566703615, 'GB', 'United Kingdom'), +('93.98.0.0', '93.98.255.255', 1566703616, 1566769151, 'SA', 'Saudi Arabia'), +('93.99.0.0', '93.99.17.255', 1566769152, 1566773759, 'CZ', 'Czech Republic'), +('93.99.18.0', '93.99.18.255', 1566773760, 1566774015, 'SK', 'Slovakia'), +('93.99.19.0', '93.99.255.255', 1566774016, 1566834687, 'CZ', 'Czech Republic'), +('93.100.0.0', '93.100.255.255', 1566834688, 1566900223, 'RU', 'Russian Federation'), +('93.101.0.0', '93.101.255.255', 1566900224, 1566965759, 'IT', 'Italy'), +('93.102.0.0', '93.102.255.255', 1566965760, 1567031295, 'PT', 'Portugal'), +('93.103.0.0', '93.103.255.255', 1567031296, 1567096831, 'SI', 'Slovenia'), +('93.104.0.0', '93.104.255.255', 1567096832, 1567162367, 'DE', 'Germany'), +('93.105.0.0', '93.105.255.255', 1567162368, 1567227903, 'PL', 'Poland'), +('93.106.0.0', '93.106.255.255', 1567227904, 1567293439, 'FI', 'Finland'), +('93.107.0.0', '93.107.255.255', 1567293440, 1567358975, 'IE', 'Ireland'), +('93.108.0.0', '93.108.255.255', 1567358976, 1567424511, 'PT', 'Portugal'), +('93.109.0.0', '93.109.255.255', 1567424512, 1567490047, 'CY', 'Cyprus'), +('93.110.0.0', '93.110.255.255', 1567490048, 1567555583, 'IR', 'Iran, Islamic Republic of'), +('93.111.0.0', '93.111.255.255', 1567555584, 1567621119, 'AT', 'Austria'), +('93.112.0.0', '93.113.37.255', 1567621120, 1567696383, 'RO', 'Romania'), +('93.113.38.0', '93.113.39.255', 1567696384, 1567696895, 'MD', 'Moldova, Republic of'), +('93.113.40.0', '93.113.71.255', 1567696896, 1567705087, 'RO', 'Romania'), +('93.113.72.0', '93.113.79.255', 1567705088, 1567707135, 'MD', 'Moldova, Republic of'), +('93.113.80.0', '93.113.111.255', 1567707136, 1567715327, 'RO', 'Romania'), +('93.113.112.0', '93.113.119.255', 1567715328, 1567717375, 'MD', 'Moldova, Republic of'), +('93.113.120.0', '93.113.255.255', 1567717376, 1567752191, 'RO', 'Romania'), +('93.114.0.0', '93.114.15.255', 1567752192, 1567756287, 'MD', 'Moldova, Republic of'), +('93.114.16.0', '93.114.91.255', 1567756288, 1567775743, 'RO', 'Romania'), +('93.114.92.0', '93.114.95.255', 1567775744, 1567776767, 'MD', 'Moldova, Republic of'), +('93.114.96.0', '93.115.47.255', 1567776768, 1567830015, 'RO', 'Romania'), +('93.115.48.0', '93.115.51.255', 1567830016, 1567831039, 'MD', 'Moldova, Republic of'), +('93.115.52.0', '93.115.255.255', 1567831040, 1567883263, 'RO', 'Romania'), +('93.116.0.0', '93.116.255.255', 1567883264, 1567948799, 'MD', 'Moldova, Republic of'), +('93.117.0.0', '93.120.127.255', 1567948800, 1568178175, 'RO', 'Romania'), +('93.120.128.0', '93.121.127.255', 1568178176, 1568243711, 'RU', 'Russian Federation'), +('93.121.128.0', '93.121.255.255', 1568243712, 1568276479, 'FR', 'France'), +('93.122.0.0', '93.122.65.15', 1568276480, 1568293135, 'DE', 'Germany'), +('93.122.65.16', '93.122.65.31', 1568293136, 1568293151, 'SA', 'Saudi Arabia'), +('93.122.65.32', '93.122.69.79', 1568293152, 1568294223, 'DE', 'Germany'), +('93.122.69.80', '93.122.69.95', 1568294224, 1568294239, 'IT', 'Italy'), +('93.122.69.96', '93.122.127.255', 1568294240, 1568309247, 'DE', 'Germany'), +('93.122.128.0', '93.122.255.255', 1568309248, 1568342015, 'RO', 'Romania'), +('93.123.0.0', '93.123.127.255', 1568342016, 1568374783, 'BG', 'Bulgaria'), +('93.123.128.0', '93.124.127.255', 1568374784, 1568440319, 'RU', 'Russian Federation'), +('93.124.128.0', '93.124.255.255', 1568440320, 1568473087, 'NO', 'Norway'), +('93.125.0.0', '93.125.127.255', 1568473088, 1568505855, 'BY', 'Belarus'), +('93.125.128.0', '93.125.255.255', 1568505856, 1568538623, 'NL', 'Netherlands'), +('93.126.0.0', '93.126.63.255', 1568538624, 1568555007, 'GB', 'United Kingdom'), +('93.126.64.0', '93.126.127.255', 1568555008, 1568571391, 'UA', 'Ukraine'), +('93.126.128.0', '93.126.159.255', 1568571392, 1568579583, 'RO', 'Romania'), +('93.126.160.0', '93.126.167.255', 1568579584, 1568581631, 'BG', 'Bulgaria'), +('93.126.168.0', '93.126.255.255', 1568581632, 1568604159, 'RO', 'Romania'), +('93.127.0.0', '93.127.127.255', 1568604160, 1568636927, 'UA', 'Ukraine'), +('93.127.128.0', '93.127.239.255', 1568636928, 1568665599, 'DE', 'Germany'), +('93.127.240.0', '93.127.240.31', 1568665600, 1568665631, 'MD', 'Moldova, Republic of'), +('93.127.240.32', '93.127.240.63', 1568665632, 1568665663, 'DK', 'Denmark'), +('93.127.240.64', '93.127.240.95', 1568665664, 1568665695, 'DE', 'Germany'), +('93.127.240.96', '93.127.240.255', 1568665696, 1568665855, 'MD', 'Moldova, Republic of'), +('93.127.241.0', '93.127.241.31', 1568665856, 1568665887, 'DE', 'Germany'), +('93.127.241.32', '93.127.246.255', 1568665888, 1568667391, 'MD', 'Moldova, Republic of'), +('93.127.247.0', '93.127.247.7', 1568667392, 1568667399, 'PA', 'Panama'), +('93.127.247.8', '93.127.247.255', 1568667400, 1568667647, 'MD', 'Moldova, Republic of'), +('93.127.248.0', '93.127.248.7', 1568667648, 1568667655, 'AF', 'Afghanistan'), +('93.127.248.8', '93.127.248.15', 1568667656, 1568667663, 'MD', 'Moldova, Republic of'), +('93.127.248.16', '93.127.248.71', 1568667664, 1568667719, 'DE', 'Germany'), +('93.127.248.72', '93.127.253.255', 1568667720, 1568669183, 'MD', 'Moldova, Republic of'), +('93.127.254.0', '93.127.254.255', 1568669184, 1568669439, 'DE', 'Germany'), +('93.127.255.0', '93.127.255.255', 1568669440, 1568669695, 'MD', 'Moldova, Republic of'), +('93.128.0.0', '93.135.255.255', 1568669696, 1569193983, 'DE', 'Germany'), +('93.136.0.0', '93.143.255.255', 1569193984, 1569718271, 'HR', 'Croatia'), +('93.144.0.0', '93.151.255.255', 1569718272, 1570242559, 'IT', 'Italy'), +('93.152.0.0', '93.152.127.255', 1570242560, 1570275327, 'GB', 'United Kingdom'), +('93.152.128.0', '93.152.255.255', 1570275328, 1570308095, 'BG', 'Bulgaria'), +('93.153.0.0', '93.153.127.255', 1570308096, 1570340863, 'CZ', 'Czech Republic'), +('93.153.128.0', '93.154.255.255', 1570340864, 1570439167, 'RU', 'Russian Federation'), +('93.155.0.0', '93.155.127.255', 1570439168, 1570471935, 'TR', 'Turkey'), +('93.155.128.0', '93.155.255.255', 1570471936, 1570504703, 'BG', 'Bulgaria'), +('93.156.0.0', '93.156.255.255', 1570504704, 1570570239, 'ES', 'Spain'), +('93.157.0.0', '93.157.7.255', 1570570240, 1570572287, 'NL', 'Netherlands'), +('93.157.8.0', '93.157.15.255', 1570572288, 1570574335, 'UA', 'Ukraine'), +('93.157.16.0', '93.157.23.255', 1570574336, 1570576383, 'RU', 'Russian Federation'), +('93.157.24.0', '93.157.31.255', 1570576384, 1570578431, 'UA', 'Ukraine'), +('93.157.32.0', '93.157.39.255', 1570578432, 1570580479, 'CH', 'Switzerland'), +('93.157.40.0', '93.157.47.255', 1570580480, 1570582527, 'RU', 'Russian Federation'), +('93.157.48.0', '93.157.55.255', 1570582528, 1570584575, 'DE', 'Germany'), +('93.157.56.0', '93.157.63.255', 1570584576, 1570586623, 'RU', 'Russian Federation'), +('93.157.64.0', '93.157.79.255', 1570586624, 1570590719, 'PL', 'Poland'), +('93.157.80.0', '93.157.87.255', 1570590720, 1570592767, 'IL', 'Israel'), +('93.157.88.0', '93.157.103.255', 1570592768, 1570596863, 'PL', 'Poland'), +('93.157.104.0', '93.157.111.255', 1570596864, 1570598911, 'UA', 'Ukraine'), +('93.157.112.0', '93.157.119.255', 1570598912, 1570600959, 'PL', 'Poland'), +('93.157.120.0', '93.157.135.255', 1570600960, 1570605055, 'RU', 'Russian Federation'), +('93.157.136.0', '93.157.143.255', 1570605056, 1570607103, 'NL', 'Netherlands'), +('93.157.144.0', '93.157.151.255', 1570607104, 1570609151, 'RU', 'Russian Federation'), +('93.157.152.0', '93.157.159.255', 1570609152, 1570611199, 'PL', 'Poland'), +('93.157.160.0', '93.157.191.255', 1570611200, 1570619391, 'RU', 'Russian Federation'), +('93.157.192.0', '93.157.199.255', 1570619392, 1570621439, 'BA', 'Bosnia and Herzegovina'), +('93.157.200.0', '93.157.215.255', 1570621440, 1570625535, 'RU', 'Russian Federation'), +('93.157.216.0', '93.157.223.255', 1570625536, 1570627583, 'GB', 'United Kingdom'), +('93.157.224.0', '93.157.255.255', 1570627584, 1570635775, 'RU', 'Russian Federation'), +('93.158.0.0', '93.158.63.255', 1570635776, 1570652159, 'FR', 'France'), +('93.158.64.0', '93.158.65.127', 1570652160, 1570652543, 'SE', 'Sweden'), +('93.158.65.128', '93.158.65.135', 1570652544, 1570652551, 'FR', 'France'), +('93.158.65.136', '93.158.66.219', 1570652552, 1570652891, 'SE', 'Sweden'), +('93.158.66.220', '93.158.66.223', 1570652892, 1570652895, 'DE', 'Germany'), +('93.158.66.224', '93.158.77.143', 1570652896, 1570655631, 'SE', 'Sweden'), +('93.158.77.144', '93.158.77.147', 1570655632, 1570655635, 'DE', 'Germany'), +('93.158.77.148', '93.158.78.255', 1570655636, 1570655999, 'SE', 'Sweden'), +('93.158.79.0', '93.158.79.3', 1570656000, 1570656003, 'DE', 'Germany'), +('93.158.79.4', '93.158.79.119', 1570656004, 1570656119, 'SE', 'Sweden'), +('93.158.79.120', '93.158.79.127', 1570656120, 1570656127, 'GB', 'United Kingdom'), +('93.158.79.128', '93.158.115.127', 1570656128, 1570665343, 'SE', 'Sweden'), +('93.158.115.128', '93.158.115.135', 1570665344, 1570665351, 'GB', 'United Kingdom'), +('93.158.115.136', '93.158.119.255', 1570665352, 1570666495, 'SE', 'Sweden'), +('93.158.120.0', '93.158.120.3', 1570666496, 1570666499, 'ES', 'Spain'), +('93.158.120.4', '93.158.120.255', 1570666500, 1570666751, 'SE', 'Sweden'), +('93.158.121.0', '93.158.121.3', 1570666752, 1570666755, 'ES', 'Spain'), +('93.158.121.4', '93.158.121.255', 1570666756, 1570667007, 'SE', 'Sweden'), +('93.158.122.0', '93.158.122.3', 1570667008, 1570667011, 'ES', 'Spain'), +('93.158.122.4', '93.158.122.7', 1570667012, 1570667015, 'SE', 'Sweden'), +('93.158.122.8', '93.158.122.15', 1570667016, 1570667023, 'DE', 'Germany'), +('93.158.122.16', '93.158.122.255', 1570667024, 1570667263, 'SE', 'Sweden'), +('93.158.123.0', '93.158.123.3', 1570667264, 1570667267, 'ES', 'Spain'), +('93.158.123.4', '93.158.123.255', 1570667268, 1570667519, 'SE', 'Sweden'), +('93.158.124.0', '93.158.124.3', 1570667520, 1570667523, 'NL', 'Netherlands'), +('93.158.124.4', '93.158.124.7', 1570667524, 1570667527, 'IT', 'Italy'), +('93.158.124.8', '93.158.124.255', 1570667528, 1570667775, 'SE', 'Sweden'), +('93.158.125.0', '93.158.125.3', 1570667776, 1570667779, 'NL', 'Netherlands'), +('93.158.125.4', '93.158.125.255', 1570667780, 1570668031, 'SE', 'Sweden'), +('93.158.126.0', '93.158.126.3', 1570668032, 1570668035, 'NL', 'Netherlands'), +('93.158.126.4', '93.158.126.255', 1570668036, 1570668287, 'SE', 'Sweden'), +('93.158.127.0', '93.158.127.3', 1570668288, 1570668291, 'NL', 'Netherlands'), +('93.158.127.4', '93.158.127.255', 1570668292, 1570668543, 'SE', 'Sweden'), +('93.158.128.0', '93.158.255.255', 1570668544, 1570701311, 'RU', 'Russian Federation'), +('93.159.0.0', '93.159.63.255', 1570701312, 1570717695, 'PL', 'Poland'), +('93.159.64.0', '93.159.95.255', 1570717696, 1570725887, 'HR', 'Croatia'), +('93.159.96.0', '93.159.127.255', 1570725888, 1570734079, 'DE', 'Germany'), +('93.159.128.0', '93.159.191.255', 1570734080, 1570750463, 'PL', 'Poland'), +('93.159.192.0', '93.159.199.255', 1570750464, 1570752511, 'NO', 'Norway'), +('93.159.200.0', '93.159.207.255', 1570752512, 1570754559, 'GB', 'United Kingdom'), +('93.159.208.0', '93.159.215.255', 1570754560, 1570756607, 'ES', 'Spain'), +('93.159.216.0', '93.159.247.255', 1570756608, 1570764799, 'RU', 'Russian Federation'), +('93.159.248.0', '93.159.255.255', 1570764800, 1570766847, 'DE', 'Germany'), +('93.160.0.0', '93.167.255.255', 1570766848, 1571291135, 'DK', 'Denmark'), +('93.168.0.0', '93.169.255.255', 1571291136, 1571422207, 'RO', 'Romania'), +('93.170.0.0', '93.170.15.255', 1571422208, 1571426303, 'RU', 'Russian Federation'), +('93.170.16.0', '93.170.31.255', 1571426304, 1571430399, 'CZ', 'Czech Republic'), +('93.170.32.0', '93.170.47.255', 1571430400, 1571434495, 'UA', 'Ukraine'), +('93.170.48.0', '93.170.63.255', 1571434496, 1571438591, 'RU', 'Russian Federation'), +('93.170.64.0', '93.170.79.255', 1571438592, 1571442687, 'UA', 'Ukraine'), +('93.170.80.0', '93.170.95.255', 1571442688, 1571446783, 'RU', 'Russian Federation'), +('93.170.96.0', '93.171.255.255', 1571446784, 1571553279, 'CZ', 'Czech Republic'), +('93.172.0.0', '93.173.255.255', 1571553280, 1571684351, 'IL', 'Israel'), +('93.174.0.0', '93.174.7.255', 1571684352, 1571686399, 'ES', 'Spain'), +('93.174.8.0', '93.174.15.255', 1571686400, 1571688447, 'GB', 'United Kingdom'), +('93.174.16.0', '93.174.23.255', 1571688448, 1571690495, 'CH', 'Switzerland'), +('93.174.24.0', '93.174.31.255', 1571690496, 1571692543, 'GE', 'Georgia'), +('93.174.32.0', '93.174.39.255', 1571692544, 1571694591, 'FR', 'France'), +('93.174.40.0', '93.174.47.255', 1571694592, 1571696639, 'LU', 'Luxembourg'), +('93.174.48.0', '93.174.63.255', 1571696640, 1571700735, 'RU', 'Russian Federation'), +('93.174.64.0', '93.174.71.255', 1571700736, 1571702783, 'IT', 'Italy'), +('93.174.72.0', '93.174.79.255', 1571702784, 1571704831, 'RU', 'Russian Federation'), +('93.174.80.0', '93.174.87.255', 1571704832, 1571706879, 'GB', 'United Kingdom'), +('93.174.88.0', '93.174.95.255', 1571706880, 1571708927, 'NL', 'Netherlands'), +('93.174.96.0', '93.174.97.255', 1571708928, 1571709439, 'GB', 'United Kingdom'), +('93.174.98.0', '93.174.98.127', 1571709440, 1571709567, 'DE', 'Germany'), +('93.174.98.128', '93.174.98.255', 1571709568, 1571709695, 'GB', 'United Kingdom'), +('93.174.99.0', '93.174.99.127', 1571709696, 1571709823, 'FR', 'France'), +('93.174.99.128', '93.174.99.255', 1571709824, 1571709951, 'GB', 'United Kingdom'), +('93.174.100.0', '93.174.100.127', 1571709952, 1571710079, 'NL', 'Netherlands'), +('93.174.100.128', '93.174.100.255', 1571710080, 1571710207, 'GB', 'United Kingdom'), +('93.174.101.0', '93.174.101.127', 1571710208, 1571710335, 'ES', 'Spain'), +('93.174.101.128', '93.174.101.255', 1571710336, 1571710463, 'GB', 'United Kingdom'), +('93.174.102.0', '93.174.102.127', 1571710464, 1571710591, 'IT', 'Italy'), +('93.174.102.128', '93.174.103.255', 1571710592, 1571710975, 'GB', 'United Kingdom'), +('93.174.104.0', '93.174.111.255', 1571710976, 1571713023, 'NL', 'Netherlands'), +('93.174.112.0', '93.174.119.255', 1571713024, 1571715071, 'RU', 'Russian Federation'), +('93.174.120.0', '93.174.127.255', 1571715072, 1571717119, 'GR', 'Greece'), +('93.174.128.0', '93.174.135.255', 1571717120, 1571719167, 'RU', 'Russian Federation'), +('93.174.136.0', '93.174.143.255', 1571719168, 1571721215, 'GB', 'United Kingdom'), +('93.174.144.0', '93.174.151.255', 1571721216, 1571723263, 'FR', 'France'), +('93.174.152.0', '93.174.153.255', 1571723264, 1571723775, 'GB', 'United Kingdom'), +('93.174.154.0', '93.174.154.255', 1571723776, 1571724031, 'SE', 'Sweden'), +('93.174.155.0', '93.174.159.255', 1571724032, 1571725311, 'GB', 'United Kingdom'), +('93.174.160.0', '93.174.167.255', 1571725312, 1571727359, 'RO', 'Romania'), +('93.174.168.0', '93.174.175.255', 1571727360, 1571729407, 'IE', 'Ireland'), +('93.174.176.0', '93.174.183.255', 1571729408, 1571731455, 'SK', 'Slovakia'), +('93.174.184.0', '93.174.187.255', 1571731456, 1571732479, 'CH', 'Switzerland'), +('93.174.188.0', '93.174.188.15', 1571732480, 1571732495, 'LI', 'Liechtenstein'), +('93.174.188.16', '93.174.191.255', 1571732496, 1571733503, 'CH', 'Switzerland'), +('93.174.192.0', '93.174.199.255', 1571733504, 1571735551, 'FI', 'Finland'), +('93.174.200.0', '93.174.207.255', 1571735552, 1571737599, 'NL', 'Netherlands'), +('93.174.208.0', '93.174.208.255', 1571737600, 1571737855, 'GB', 'United Kingdom'), +('93.174.209.0', '93.174.209.255', 1571737856, 1571738111, 'EU', 'Europe'), +('93.174.210.0', '93.174.210.255', 1571738112, 1571738367, 'NL', 'Netherlands'), +('93.174.211.0', '93.174.215.255', 1571738368, 1571739647, 'EU', 'Europe'), +('93.174.216.0', '93.174.223.255', 1571739648, 1571741695, 'GB', 'United Kingdom'), +('93.174.224.0', '93.174.231.255', 1571741696, 1571743743, 'RU', 'Russian Federation'), +('93.174.232.0', '93.174.239.255', 1571743744, 1571745791, 'GB', 'United Kingdom'), +('93.174.240.0', '93.174.247.255', 1571745792, 1571747839, 'RU', 'Russian Federation'), +('93.174.248.0', '93.174.255.255', 1571747840, 1571749887, 'GB', 'United Kingdom'), +('93.175.0.0', '93.175.31.255', 1571749888, 1571758079, 'RU', 'Russian Federation'), +('93.175.32.0', '93.175.63.255', 1571758080, 1571766271, 'IL', 'Israel'), +('93.175.64.0', '93.175.143.255', 1571766272, 1571786751, 'PL', 'Poland'), +('93.175.144.0', '93.175.159.255', 1571786752, 1571790847, 'EU', 'Europe'), +('93.175.160.0', '93.175.175.255', 1571790848, 1571794943, 'PL', 'Poland'), +('93.175.176.0', '93.175.191.255', 1571794944, 1571799039, 'NL', 'Netherlands'), +('93.175.192.0', '93.175.255.255', 1571799040, 1571815423, 'UA', 'Ukraine'), +('93.176.0.0', '93.176.63.255', 1571815424, 1571831807, 'FR', 'France'), +('93.176.64.0', '93.176.127.255', 1571831808, 1571848191, 'DK', 'Denmark'), +('93.176.128.0', '93.176.191.255', 1571848192, 1571864575, 'RU', 'Russian Federation'), +('93.176.192.0', '93.176.255.255', 1571864576, 1571880959, 'PL', 'Poland'), +('93.177.0.0', '93.177.63.255', 1571880960, 1571897343, 'RU', 'Russian Federation'), +('93.177.64.0', '93.177.127.255', 1571897344, 1571913727, 'NO', 'Norway'), +('93.177.128.0', '93.177.191.255', 1571913728, 1571930111, 'GE', 'Georgia'), +('93.177.192.0', '93.177.255.255', 1571930112, 1571946495, 'LV', 'Latvia'), +('93.178.0.0', '93.178.63.255', 1571946496, 1571962879, 'SA', 'Saudi Arabia'), +('93.178.64.0', '93.178.127.255', 1571962880, 1571979263, 'RU', 'Russian Federation'), +('93.178.128.0', '93.178.191.255', 1571979264, 1571995647, 'DK', 'Denmark'), +('93.178.192.0', '93.178.255.255', 1571995648, 1572012031, 'UA', 'Ukraine'), +('93.179.0.0', '93.179.15.255', 1572012032, 1572016127, 'NO', 'Norway'), +('93.179.16.0', '93.179.63.255', 1572016128, 1572028415, 'SE', 'Sweden'), +('93.179.64.0', '93.179.127.255', 1572028416, 1572044799, 'RU', 'Russian Federation'), +('93.179.128.0', '93.179.191.255', 1572044800, 1572061183, 'IT', 'Italy'), +('93.179.192.0', '93.179.255.255', 1572061184, 1572077567, 'PL', 'Poland'), +('93.180.0.0', '93.180.63.255', 1572077568, 1572093951, 'RU', 'Russian Federation'), +('93.180.64.0', '93.180.127.255', 1572093952, 1572110335, 'BG', 'Bulgaria'), +('93.180.128.0', '93.180.191.255', 1572110336, 1572126719, 'RU', 'Russian Federation'), +('93.180.192.0', '93.180.255.255', 1572126720, 1572143103, 'UA', 'Ukraine'), +('93.181.0.0', '93.181.63.255', 1572143104, 1572159487, 'DE', 'Germany'), +('93.181.64.0', '93.181.127.255', 1572159488, 1572175871, 'CZ', 'Czech Republic'), +('93.181.128.0', '93.181.191.255', 1572175872, 1572192255, 'PL', 'Poland'), +('93.181.192.0', '93.182.63.255', 1572192256, 1572225023, 'RU', 'Russian Federation'), +('93.182.64.0', '93.182.127.255', 1572225024, 1572241407, 'TR', 'Turkey'), +('93.182.128.0', '93.182.191.255', 1572241408, 1572257791, 'SE', 'Sweden'), +('93.182.192.0', '93.182.255.255', 1572257792, 1572274175, 'FR', 'France'), +('93.183.0.0', '93.183.63.255', 1572274176, 1572290559, 'SG', 'Singapore'), +('93.183.64.0', '93.183.127.255', 1572290560, 1572306943, 'RU', 'Russian Federation'), +('93.183.128.0', '93.183.191.255', 1572306944, 1572323327, 'BG', 'Bulgaria'), +('93.183.192.0', '93.183.255.255', 1572323328, 1572339711, 'UA', 'Ukraine'), +('93.184.0.0', '93.184.15.255', 1572339712, 1572343807, 'PS', 'Palestinian Territory, Occupied'), +('93.184.16.0', '93.184.31.255', 1572343808, 1572347903, 'CH', 'Switzerland'), +('93.184.32.0', '93.184.47.255', 1572347904, 1572351999, 'FR', 'France'), +('93.184.48.0', '93.184.63.255', 1572352000, 1572356095, 'DE', 'Germany'), +('93.184.64.0', '93.184.79.255', 1572356096, 1572360191, 'SK', 'Slovakia'), +('93.184.80.0', '93.184.95.255', 1572360192, 1572364287, 'RS', 'Serbia'), +('93.184.96.0', '93.184.111.255', 1572364288, 1572368383, 'NL', 'Netherlands'), +('93.184.112.0', '93.184.127.255', 1572368384, 1572372479, 'NO', 'Norway'), +('93.184.128.0', '93.184.143.255', 1572372480, 1572376575, 'DE', 'Germany'), +('93.184.144.0', '93.184.159.255', 1572376576, 1572380671, 'TR', 'Turkey'), +('93.184.160.0', '93.184.175.255', 1572380672, 1572384767, 'RU', 'Russian Federation'), +('93.184.176.0', '93.184.191.255', 1572384768, 1572388863, 'DE', 'Germany'), +('93.184.192.0', '93.184.207.255', 1572388864, 1572392959, 'DK', 'Denmark'), +('93.184.208.0', '93.184.223.255', 1572392960, 1572397055, 'US', 'United States'), +('93.184.224.0', '93.184.239.255', 1572397056, 1572401151, 'AZ', 'Azerbaijan'), +('93.184.240.0', '93.184.255.255', 1572401152, 1572405247, 'GB', 'United Kingdom'), +('93.185.0.0', '93.185.15.255', 1572405248, 1572409343, 'CZ', 'Czech Republic'), +('93.185.16.0', '93.185.31.255', 1572409344, 1572413439, 'RU', 'Russian Federation'), +('93.185.32.0', '93.185.47.255', 1572413440, 1572417535, 'AM', 'Armenia'), +('93.185.48.0', '93.185.63.255', 1572417536, 1572421631, 'CZ', 'Czech Republic'), +('93.185.64.0', '93.185.79.255', 1572421632, 1572425727, 'KZ', 'Kazakstan'), +('93.185.80.0', '93.185.95.255', 1572425728, 1572429823, 'LB', 'Lebanon'), +('93.185.96.0', '93.185.111.255', 1572429824, 1572433919, 'CZ', 'Czech Republic'), +('93.185.112.0', '93.185.127.255', 1572433920, 1572438015, 'IT', 'Italy'), +('93.185.128.0', '93.185.143.255', 1572438016, 1572442111, 'AT', 'Austria'), +('93.185.144.0', '93.185.159.255', 1572442112, 1572446207, 'RU', 'Russian Federation'), +('93.185.160.0', '93.185.175.255', 1572446208, 1572450303, 'NO', 'Norway'), +('93.185.176.0', '93.185.207.255', 1572450304, 1572458495, 'RU', 'Russian Federation'), +('93.185.208.0', '93.185.223.255', 1572458496, 1572462591, 'UA', 'Ukraine'), +('93.185.224.0', '93.185.239.255', 1572462592, 1572466687, 'LB', 'Lebanon'), +('93.185.240.0', '93.185.255.255', 1572466688, 1572470783, 'EE', 'Estonia'), +('93.186.0.0', '93.186.15.255', 1572470784, 1572474879, 'DE', 'Germany'), +('93.186.16.0', '93.186.47.255', 1572474880, 1572483071, 'GB', 'United Kingdom'), +('93.186.48.0', '93.186.63.255', 1572483072, 1572487167, 'RU', 'Russian Federation'), +('93.186.64.0', '93.186.79.255', 1572487168, 1572491263, 'RS', 'Serbia'), +('93.186.80.0', '93.186.95.255', 1572491264, 1572495359, 'IT', 'Italy'), +('93.186.96.0', '93.186.111.255', 1572495360, 1572499455, 'RU', 'Russian Federation'), +('93.186.112.0', '93.186.127.255', 1572499456, 1572503551, 'TR', 'Turkey'), +('93.186.128.0', '93.186.129.255', 1572503552, 1572504063, 'IT', 'Italy'), +('93.186.130.0', '93.186.130.255', 1572504064, 1572504319, 'US', 'United States'), +('93.186.131.0', '93.186.131.255', 1572504320, 1572504575, 'DE', 'Germany'), +('93.186.132.0', '93.186.143.255', 1572504576, 1572507647, 'IT', 'Italy'), +('93.186.144.0', '93.186.159.255', 1572507648, 1572511743, 'GB', 'United Kingdom'), +('93.186.160.0', '93.186.175.255', 1572511744, 1572515839, 'DE', 'Germany'), +('93.186.176.0', '93.186.183.127', 1572515840, 1572517759, 'NL', 'Netherlands'), +('93.186.183.128', '93.186.183.143', 1572517760, 1572517775, 'CA', 'Canada'), +('93.186.183.144', '93.186.191.255', 1572517776, 1572519935, 'NL', 'Netherlands'), +('93.186.192.0', '93.186.207.255', 1572519936, 1572524031, 'DE', 'Germany'), +('93.186.208.0', '93.186.223.255', 1572524032, 1572528127, 'GE', 'Georgia'), +('93.186.224.0', '93.186.239.255', 1572528128, 1572532223, 'RU', 'Russian Federation'), +('93.186.240.0', '93.186.255.255', 1572532224, 1572536319, 'IT', 'Italy'), +('93.187.0.0', '93.187.7.255', 1572536320, 1572538367, 'GB', 'United Kingdom'), +('93.187.8.0', '93.187.15.255', 1572538368, 1572540415, 'NL', 'Netherlands'), +('93.187.16.0', '93.187.23.255', 1572540416, 1572542463, 'GB', 'United Kingdom'), +('93.187.24.0', '93.187.31.255', 1572542464, 1572544511, 'IT', 'Italy'), +('93.187.32.0', '93.187.39.255', 1572544512, 1572546559, 'HR', 'Croatia'), +('93.187.40.0', '93.187.47.255', 1572546560, 1572548607, 'FR', 'France'), +('93.187.48.0', '93.187.55.255', 1572548608, 1572550655, 'GB', 'United Kingdom'), +('93.187.56.0', '93.187.63.255', 1572550656, 1572552703, 'DE', 'Germany'), +('93.187.64.0', '93.187.71.255', 1572552704, 1572554751, 'TR', 'Turkey'), +('93.187.72.0', '93.187.79.255', 1572554752, 1572556799, 'CH', 'Switzerland'), +('93.187.80.0', '93.187.87.255', 1572556800, 1572558847, 'NO', 'Norway'), +('93.187.88.0', '93.187.95.255', 1572558848, 1572560895, 'IT', 'Italy'), +('93.187.96.0', '93.187.103.255', 1572560896, 1572562943, 'RU', 'Russian Federation'), +('93.187.104.0', '93.187.111.255', 1572562944, 1572564991, 'CZ', 'Czech Republic'), +('93.187.112.0', '93.187.119.255', 1572564992, 1572567039, 'DE', 'Germany'), +('93.187.120.0', '93.187.127.255', 1572567040, 1572569087, 'RU', 'Russian Federation'), +('93.187.128.0', '93.187.135.255', 1572569088, 1572571135, 'NL', 'Netherlands'), +('93.187.136.0', '93.187.143.255', 1572571136, 1572573183, 'RO', 'Romania'), +('93.187.152.0', '93.187.159.255', 1572575232, 1572577279, 'RU', 'Russian Federation'), +('93.187.160.0', '93.187.167.255', 1572577280, 1572579327, 'AM', 'Armenia'), +('93.187.168.0', '93.187.175.255', 1572579328, 1572581375, 'GB', 'United Kingdom'), +('93.187.176.0', '93.187.191.255', 1572581376, 1572585471, 'RU', 'Russian Federation'), +('93.187.192.0', '93.187.199.255', 1572585472, 1572587519, 'CH', 'Switzerland'), +('93.187.200.0', '93.187.207.255', 1572587520, 1572589567, 'TR', 'Turkey'), +('93.187.208.0', '93.187.215.255', 1572589568, 1572591615, 'CH', 'Switzerland'), +('93.187.216.0', '93.187.223.255', 1572591616, 1572593663, 'NL', 'Netherlands'), +('93.187.224.0', '93.187.231.255', 1572593664, 1572595711, 'GB', 'United Kingdom'), +('93.187.232.0', '93.187.239.255', 1572595712, 1572597759, 'DE', 'Germany'), +('93.187.240.0', '93.187.247.255', 1572597760, 1572599807, 'RS', 'Serbia'), +('93.187.248.0', '93.187.255.255', 1572599808, 1572601855, 'DE', 'Germany'), +('93.188.0.0', '93.188.7.255', 1572601856, 1572603903, 'SE', 'Sweden'), +('93.188.8.0', '93.188.15.255', 1572603904, 1572605951, 'GE', 'Georgia'), +('93.188.16.0', '93.188.23.255', 1572605952, 1572607999, 'RU', 'Russian Federation'), +('93.188.24.0', '93.188.31.255', 1572608000, 1572610047, 'DE', 'Germany'), +('93.188.32.0', '93.188.39.255', 1572610048, 1572612095, 'UA', 'Ukraine'), +('93.188.40.0', '93.188.47.255', 1572612096, 1572614143, 'RU', 'Russian Federation'), +('93.188.48.0', '93.188.55.255', 1572614144, 1572616191, 'ES', 'Spain'), +('93.188.56.0', '93.188.63.255', 1572616192, 1572618239, 'CH', 'Switzerland'), +('93.188.64.0', '93.188.71.255', 1572618240, 1572620287, 'RS', 'Serbia'), +('93.188.72.0', '93.188.73.15', 1572620288, 1572620559, 'CH', 'Switzerland'), +('93.188.73.16', '93.188.73.23', 1572620560, 1572620567, 'NL', 'Netherlands'), +('93.188.73.24', '93.188.79.255', 1572620568, 1572622335, 'CH', 'Switzerland'), +('93.188.80.0', '93.188.87.255', 1572622336, 1572624383, 'RU', 'Russian Federation'), +('93.188.88.0', '93.188.95.255', 1572624384, 1572626431, 'NO', 'Norway'), +('93.188.96.0', '93.188.103.255', 1572626432, 1572628479, 'RU', 'Russian Federation'), +('93.188.104.0', '93.188.111.255', 1572628480, 1572630527, 'DE', 'Germany'), +('93.188.112.0', '93.188.119.255', 1572630528, 1572632575, 'IT', 'Italy'), +('93.188.120.0', '93.188.127.255', 1572632576, 1572634623, 'RU', 'Russian Federation'), +('93.188.128.0', '93.188.135.255', 1572634624, 1572636671, 'US', 'United States'), +('93.188.136.0', '93.188.143.255', 1572636672, 1572638719, 'ES', 'Spain'), +('93.188.144.0', '93.188.151.255', 1572638720, 1572640767, 'FR', 'France'), +('93.188.152.0', '93.188.159.255', 1572640768, 1572642815, 'RU', 'Russian Federation'), +('93.188.160.0', '93.188.167.255', 1572642816, 1572644863, 'UA', 'Ukraine'), +('93.188.168.0', '93.188.175.255', 1572644864, 1572646911, 'FR', 'France'), +('93.188.176.0', '93.188.183.255', 1572646912, 1572648959, 'GB', 'United Kingdom'), +('93.188.184.0', '93.188.191.255', 1572648960, 1572651007, 'RU', 'Russian Federation'), +('93.188.192.0', '93.188.199.255', 1572651008, 1572653055, 'BH', 'Bahrain'), +('93.188.200.0', '93.188.215.255', 1572653056, 1572657151, 'RU', 'Russian Federation'), +('93.188.216.0', '93.188.223.255', 1572657152, 1572659199, 'DE', 'Germany'), +('93.188.224.0', '93.188.231.255', 1572659200, 1572661247, 'IT', 'Italy'), +('93.188.232.0', '93.188.239.255', 1572661248, 1572663295, 'NO', 'Norway'), +('93.188.240.0', '93.188.247.255', 1572663296, 1572665343, 'DE', 'Germany'), +('93.188.248.0', '93.188.255.255', 1572665344, 1572667391, 'NL', 'Netherlands'), +('93.189.0.0', '93.189.7.255', 1572667392, 1572669439, 'GB', 'United Kingdom'), +('93.189.8.0', '93.189.23.255', 1572669440, 1572673535, 'RU', 'Russian Federation'), +('93.189.24.0', '93.189.31.255', 1572673536, 1572675583, 'AT', 'Austria'), +('93.189.32.0', '93.189.39.255', 1572675584, 1572677631, 'ES', 'Spain'), +('93.189.40.0', '93.189.55.255', 1572677632, 1572681727, 'RU', 'Russian Federation'), +('93.189.56.0', '93.189.56.255', 1572681728, 1572681983, 'DE', 'Germany'), +('93.189.57.0', '93.189.57.255', 1572681984, 1572682239, 'RU', 'Russian Federation'), +('93.189.58.0', '93.189.59.255', 1572682240, 1572682751, 'DE', 'Germany'), +('93.189.60.0', '93.189.63.255', 1572682752, 1572683775, 'RU', 'Russian Federation'), +('93.189.64.0', '93.189.71.255', 1572683776, 1572685823, 'CH', 'Switzerland'), +('93.189.72.0', '93.189.87.255', 1572685824, 1572689919, 'RU', 'Russian Federation'), +('93.189.88.0', '93.189.95.255', 1572689920, 1572691967, 'ES', 'Spain'), +('93.189.96.0', '93.189.103.255', 1572691968, 1572694015, 'BG', 'Bulgaria'), +('93.189.104.0', '93.189.104.198', 1572694016, 1572694214, 'GB', 'United Kingdom'), +('93.189.104.199', '93.189.104.201', 1572694215, 1572694217, 'US', 'United States'), +('93.189.104.202', '93.189.106.127', 1572694218, 1572694655, 'GB', 'United Kingdom'), +('93.189.106.128', '93.189.106.255', 1572694656, 1572694783, 'SG', 'Singapore'), +('93.189.107.0', '93.189.111.255', 1572694784, 1572696063, 'GB', 'United Kingdom'), +('93.189.112.0', '93.189.119.255', 1572696064, 1572698111, 'HU', 'Hungary'), +('93.189.120.0', '93.189.127.255', 1572698112, 1572700159, 'RU', 'Russian Federation'), +('93.189.128.0', '93.189.135.255', 1572700160, 1572702207, 'NL', 'Netherlands'), +('93.189.136.0', '93.189.143.255', 1572702208, 1572704255, 'IT', 'Italy'), +('93.189.144.0', '93.189.151.255', 1572704256, 1572706303, 'RU', 'Russian Federation'), +('93.189.152.0', '93.189.159.255', 1572706304, 1572708351, 'DE', 'Germany'), +('93.189.160.0', '93.189.167.255', 1572708352, 1572710399, 'GB', 'United Kingdom'), +('93.189.168.0', '93.189.175.255', 1572710400, 1572712447, 'DE', 'Germany'), +('93.189.176.0', '93.189.183.255', 1572712448, 1572714495, 'ES', 'Spain'), +('93.189.184.0', '93.189.191.255', 1572714496, 1572716543, 'IT', 'Italy'), +('93.189.192.0', '93.189.199.255', 1572716544, 1572718591, 'SA', 'Saudi Arabia'), +('93.189.200.0', '93.189.207.255', 1572718592, 1572720639, 'RU', 'Russian Federation'), +('93.189.208.0', '93.189.215.255', 1572720640, 1572722687, 'IT', 'Italy'), +('93.189.216.0', '93.189.231.255', 1572722688, 1572726783, 'RU', 'Russian Federation'), +('93.189.232.0', '93.189.239.255', 1572726784, 1572728831, 'CH', 'Switzerland'), +('93.189.240.0', '93.189.247.255', 1572728832, 1572730879, 'SE', 'Sweden'), +('93.189.248.0', '93.189.255.255', 1572730880, 1572732927, 'RU', 'Russian Federation'), +('93.190.0.0', '93.190.7.255', 1572732928, 1572734975, 'HU', 'Hungary'), +('93.190.8.0', '93.190.23.255', 1572734976, 1572739071, 'RU', 'Russian Federation'), +('93.190.24.0', '93.190.31.255', 1572739072, 1572741119, 'IR', 'Iran, Islamic Republic of'), +('93.190.32.0', '93.190.39.255', 1572741120, 1572743167, 'FI', 'Finland'), +('93.190.40.0', '93.190.47.255', 1572743168, 1572745215, 'UA', 'Ukraine'), +('93.190.48.0', '93.190.63.255', 1572745216, 1572749311, 'CZ', 'Czech Republic'), +('93.190.64.0', '93.190.71.255', 1572749312, 1572751359, 'DE', 'Germany'), +('93.190.72.0', '93.190.79.255', 1572751360, 1572753407, 'CH', 'Switzerland'), +('93.190.80.0', '93.190.87.255', 1572753408, 1572755455, 'NO', 'Norway'), +('93.190.88.0', '93.190.95.255', 1572755456, 1572757503, 'DE', 'Germany'), +('93.190.96.0', '93.190.103.255', 1572757504, 1572759551, 'FI', 'Finland'), +('93.190.104.0', '93.190.111.255', 1572759552, 1572761599, 'RU', 'Russian Federation'), +('93.190.112.0', '93.190.119.255', 1572761600, 1572763647, 'GB', 'United Kingdom'), +('93.190.120.0', '93.190.127.255', 1572763648, 1572765695, 'TR', 'Turkey'), +('93.190.128.0', '93.190.135.255', 1572765696, 1572767743, 'CZ', 'Czech Republic'), +('93.190.136.0', '93.190.143.204', 1572767744, 1572769740, 'NL', 'Netherlands'), +('93.190.143.205', '93.190.143.254', 1572769741, 1572769790, 'KY', 'Cayman Islands'), +('93.190.143.255', '93.190.143.255', 1572769791, 1572769791, 'NL', 'Netherlands'), +('93.190.144.0', '93.190.144.255', 1572769792, 1572770047, 'RO', 'Romania'), +('93.190.145.0', '93.190.145.63', 1572770048, 1572770111, 'RS', 'Serbia'), +('93.190.145.64', '93.190.151.255', 1572770112, 1572771839, 'RO', 'Romania'), +('93.190.152.0', '93.190.159.255', 1572771840, 1572773887, 'ES', 'Spain'), +('93.190.160.0', '93.190.167.255', 1572773888, 1572775935, 'RS', 'Serbia'), +('93.190.168.0', '93.190.175.255', 1572775936, 1572777983, 'GB', 'United Kingdom'), +('93.190.176.0', '93.190.183.255', 1572777984, 1572780031, 'UA', 'Ukraine'), +('93.190.184.0', '93.190.191.255', 1572780032, 1572782079, 'NL', 'Netherlands'), +('93.190.192.0', '93.190.199.255', 1572782080, 1572784127, 'SE', 'Sweden'), +('93.190.200.0', '93.190.207.255', 1572784128, 1572786175, 'RU', 'Russian Federation'), +('93.190.208.0', '93.190.215.255', 1572786176, 1572788223, 'FR', 'France'), +('93.190.216.0', '93.190.223.255', 1572788224, 1572790271, 'TR', 'Turkey'), +('93.190.224.0', '93.190.231.255', 1572790272, 1572792319, 'RU', 'Russian Federation'), +('93.190.232.0', '93.190.239.255', 1572792320, 1572794367, 'DE', 'Germany'), +('93.190.240.0', '93.190.247.255', 1572794368, 1572796415, 'RU', 'Russian Federation'), +('93.190.248.0', '93.190.255.255', 1572796416, 1572798463, 'DE', 'Germany'), +('93.191.0.0', '93.191.7.255', 1572798464, 1572800511, 'NL', 'Netherlands'), +('93.191.8.0', '93.191.23.255', 1572800512, 1572804607, 'RU', 'Russian Federation'), +('93.191.24.0', '93.191.39.255', 1572804608, 1572808703, 'GB', 'United Kingdom'), +('93.191.40.0', '93.191.47.255', 1572808704, 1572810751, 'FR', 'France'), +('93.191.48.0', '93.191.55.255', 1572810752, 1572812799, 'DE', 'Germany'), +('93.191.56.0', '93.191.63.255', 1572812800, 1572814847, 'RU', 'Russian Federation'), +('93.191.64.0', '93.191.71.255', 1572814848, 1572816895, 'KW', 'Kuwait'), +('93.191.72.0', '93.191.79.255', 1572816896, 1572818943, 'RU', 'Russian Federation'), +('93.191.80.0', '93.191.87.255', 1572818944, 1572820991, 'FR', 'France'), +('93.191.88.0', '93.191.95.255', 1572820992, 1572823039, 'GB', 'United Kingdom'), +('93.191.96.0', '93.191.103.255', 1572823040, 1572825087, 'BY', 'Belarus'), +('93.191.104.0', '93.191.111.255', 1572825088, 1572827135, 'RU', 'Russian Federation'), +('93.191.112.0', '93.191.119.255', 1572827136, 1572829183, 'NO', 'Norway'), +('93.191.120.0', '93.191.127.255', 1572829184, 1572831231, 'FI', 'Finland'), +('93.191.128.0', '93.191.135.255', 1572831232, 1572833279, 'BH', 'Bahrain'), +('93.191.136.0', '93.191.143.255', 1572833280, 1572835327, 'ES', 'Spain'), +('93.191.144.0', '93.191.151.255', 1572835328, 1572837375, 'IE', 'Ireland'), +('93.191.152.0', '93.191.159.255', 1572837376, 1572839423, 'AM', 'Armenia'), +('93.191.160.0', '93.191.167.255', 1572839424, 1572841471, 'DE', 'Germany'), +('93.191.168.0', '93.191.170.255', 1572841472, 1572842239, 'EU', 'Europe'), +('93.191.171.0', '93.191.171.255', 1572842240, 1572842495, 'LV', 'Latvia'), +('93.191.172.0', '93.191.172.255', 1572842496, 1572842751, 'EU', 'Europe'), +('93.191.173.0', '93.191.173.255', 1572842752, 1572843007, 'NL', 'Netherlands'), +('93.191.174.0', '93.191.175.255', 1572843008, 1572843519, 'EU', 'Europe'), +('93.191.176.0', '93.191.183.255', 1572843520, 1572845567, 'JO', 'Jordan'), +('93.191.184.0', '93.191.191.255', 1572845568, 1572847615, 'FR', 'France'), +('93.191.192.0', '93.191.199.255', 1572847616, 1572849663, 'GI', 'Gibraltar'), +('93.191.200.0', '93.191.207.255', 1572849664, 1572851711, 'GB', 'United Kingdom'), +('93.191.208.0', '93.191.215.255', 1572851712, 1572853759, 'DE', 'Germany'), +('93.191.216.0', '93.191.216.255', 1572853760, 1572854015, 'BE', 'Belgium'), +('93.191.217.0', '93.191.217.255', 1572854016, 1572854271, 'LU', 'Luxembourg'), +('93.191.218.0', '93.191.222.255', 1572854272, 1572855551, 'EU', 'Europe'), +('93.191.223.0', '93.191.223.255', 1572855552, 1572855807, 'LU', 'Luxembourg'), +('93.191.224.0', '93.191.231.255', 1572855808, 1572857855, 'KZ', 'Kazakstan'), +('93.191.232.0', '93.191.239.255', 1572857856, 1572859903, 'SE', 'Sweden'), +('93.191.240.0', '93.191.247.255', 1572859904, 1572861951, 'IT', 'Italy'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('93.191.248.0', '93.191.255.255', 1572861952, 1572863999, 'CH', 'Switzerland'), +('93.192.0.0', '93.255.255.255', 1572864000, 1577058303, 'DE', 'Germany'), +('94.0.0.0', '94.15.255.255', 1577058304, 1578106879, 'GB', 'United Kingdom'), +('94.16.0.0', '94.16.255.255', 1578106880, 1578172415, 'DE', 'Germany'), +('94.17.0.0', '94.17.255.255', 1578172416, 1578237951, 'MT', 'Malta'), +('94.18.0.0', '94.18.255.255', 1578237952, 1578303487, 'DK', 'Denmark'), +('94.19.0.0', '94.19.255.255', 1578303488, 1578369023, 'RU', 'Russian Federation'), +('94.20.0.0', '94.20.255.255', 1578369024, 1578434559, 'AZ', 'Azerbaijan'), +('94.21.0.0', '94.21.255.255', 1578434560, 1578500095, 'HU', 'Hungary'), +('94.22.0.0', '94.22.255.255', 1578500096, 1578565631, 'FI', 'Finland'), +('94.23.0.0', '94.23.63.255', 1578565632, 1578582015, 'FR', 'France'), +('94.23.64.0', '94.23.73.255', 1578582016, 1578584575, 'IT', 'Italy'), +('94.23.74.0', '94.23.79.255', 1578584576, 1578586111, 'PT', 'Portugal'), +('94.23.80.0', '94.23.87.255', 1578586112, 1578588159, 'ES', 'Spain'), +('94.23.88.0', '94.23.95.255', 1578588160, 1578590207, 'PL', 'Poland'), +('94.23.96.0', '94.23.96.79', 1578590208, 1578590287, 'FR', 'France'), +('94.23.96.80', '94.23.96.95', 1578590288, 1578590303, 'PL', 'Poland'), +('94.23.96.96', '94.23.96.111', 1578590304, 1578590319, 'GB', 'United Kingdom'), +('94.23.96.112', '94.23.96.127', 1578590320, 1578590335, 'CH', 'Switzerland'), +('94.23.96.128', '94.23.96.159', 1578590336, 1578590367, 'FR', 'France'), +('94.23.96.160', '94.23.96.191', 1578590368, 1578590399, 'BE', 'Belgium'), +('94.23.96.192', '94.23.96.207', 1578590400, 1578590415, 'FR', 'France'), +('94.23.96.208', '94.23.96.223', 1578590416, 1578590431, 'PL', 'Poland'), +('94.23.96.224', '94.23.96.239', 1578590432, 1578590447, 'BE', 'Belgium'), +('94.23.96.240', '94.23.97.15', 1578590448, 1578590479, 'FR', 'France'), +('94.23.97.16', '94.23.97.31', 1578590480, 1578590495, 'IT', 'Italy'), +('94.23.97.32', '94.23.97.47', 1578590496, 1578590511, 'PL', 'Poland'), +('94.23.97.48', '94.23.97.79', 1578590512, 1578590543, 'FR', 'France'), +('94.23.97.80', '94.23.97.111', 1578590544, 1578590575, 'ES', 'Spain'), +('94.23.97.112', '94.23.97.127', 1578590576, 1578590591, 'CH', 'Switzerland'), +('94.23.97.128', '94.23.97.159', 1578590592, 1578590623, 'FR', 'France'), +('94.23.97.160', '94.23.97.223', 1578590624, 1578590687, 'GB', 'United Kingdom'), +('94.23.97.224', '94.23.97.239', 1578590688, 1578590703, 'FR', 'France'), +('94.23.97.240', '94.23.97.255', 1578590704, 1578590719, 'PL', 'Poland'), +('94.23.98.0', '94.23.98.79', 1578590720, 1578590799, 'FR', 'France'), +('94.23.98.80', '94.23.98.127', 1578590800, 1578590847, 'GB', 'United Kingdom'), +('94.23.98.128', '94.23.98.159', 1578590848, 1578590879, 'FR', 'France'), +('94.23.98.160', '94.23.98.175', 1578590880, 1578590895, 'PL', 'Poland'), +('94.23.98.176', '94.23.98.191', 1578590896, 1578590911, 'GB', 'United Kingdom'), +('94.23.98.192', '94.23.98.207', 1578590912, 1578590927, 'ES', 'Spain'), +('94.23.98.208', '94.23.98.223', 1578590928, 1578590943, 'GB', 'United Kingdom'), +('94.23.98.224', '94.23.98.239', 1578590944, 1578590959, 'CH', 'Switzerland'), +('94.23.98.240', '94.23.98.255', 1578590960, 1578590975, 'FR', 'France'), +('94.23.99.0', '94.23.99.15', 1578590976, 1578590991, 'GB', 'United Kingdom'), +('94.23.99.16', '94.23.99.31', 1578590992, 1578591007, 'ES', 'Spain'), +('94.23.99.32', '94.23.99.47', 1578591008, 1578591023, 'FR', 'France'), +('94.23.99.48', '94.23.99.63', 1578591024, 1578591039, 'PL', 'Poland'), +('94.23.99.64', '94.23.99.79', 1578591040, 1578591055, 'NL', 'Netherlands'), +('94.23.99.80', '94.23.99.95', 1578591056, 1578591071, 'GB', 'United Kingdom'), +('94.23.99.96', '94.23.99.111', 1578591072, 1578591087, 'FR', 'France'), +('94.23.99.112', '94.23.99.127', 1578591088, 1578591103, 'ES', 'Spain'), +('94.23.99.128', '94.23.99.143', 1578591104, 1578591119, 'DE', 'Germany'), +('94.23.99.144', '94.23.99.159', 1578591120, 1578591135, 'CH', 'Switzerland'), +('94.23.99.160', '94.23.99.175', 1578591136, 1578591151, 'FR', 'France'), +('94.23.99.176', '94.23.99.191', 1578591152, 1578591167, 'ES', 'Spain'), +('94.23.99.192', '94.23.99.207', 1578591168, 1578591183, 'FR', 'France'), +('94.23.99.208', '94.23.99.223', 1578591184, 1578591199, 'ES', 'Spain'), +('94.23.99.224', '94.23.100.15', 1578591200, 1578591247, 'FR', 'France'), +('94.23.100.16', '94.23.100.31', 1578591248, 1578591263, 'PL', 'Poland'), +('94.23.100.32', '94.23.100.63', 1578591264, 1578591295, 'FR', 'France'), +('94.23.100.64', '94.23.100.111', 1578591296, 1578591343, 'PL', 'Poland'), +('94.23.100.112', '94.23.100.127', 1578591344, 1578591359, 'ES', 'Spain'), +('94.23.100.128', '94.23.100.143', 1578591360, 1578591375, 'PL', 'Poland'), +('94.23.100.144', '94.23.100.159', 1578591376, 1578591391, 'FR', 'France'), +('94.23.100.160', '94.23.100.175', 1578591392, 1578591407, 'CH', 'Switzerland'), +('94.23.100.176', '94.23.100.191', 1578591408, 1578591423, 'GB', 'United Kingdom'), +('94.23.100.192', '94.23.100.239', 1578591424, 1578591471, 'FR', 'France'), +('94.23.100.240', '94.23.100.255', 1578591472, 1578591487, 'PL', 'Poland'), +('94.23.101.0', '94.23.101.15', 1578591488, 1578591503, 'FR', 'France'), +('94.23.101.16', '94.23.101.63', 1578591504, 1578591551, 'ES', 'Spain'), +('94.23.101.64', '94.23.101.95', 1578591552, 1578591583, 'FR', 'France'), +('94.23.101.96', '94.23.101.111', 1578591584, 1578591599, 'IT', 'Italy'), +('94.23.101.112', '94.23.101.159', 1578591600, 1578591647, 'FR', 'France'), +('94.23.101.160', '94.23.101.175', 1578591648, 1578591663, 'GB', 'United Kingdom'), +('94.23.101.176', '94.23.101.207', 1578591664, 1578591695, 'PL', 'Poland'), +('94.23.101.208', '94.23.101.223', 1578591696, 1578591711, 'FR', 'France'), +('94.23.101.224', '94.23.101.255', 1578591712, 1578591743, 'PL', 'Poland'), +('94.23.102.0', '94.23.102.15', 1578591744, 1578591759, 'ES', 'Spain'), +('94.23.102.16', '94.23.102.47', 1578591760, 1578591791, 'FR', 'France'), +('94.23.102.48', '94.23.102.63', 1578591792, 1578591807, 'PL', 'Poland'), +('94.23.102.64', '94.23.102.79', 1578591808, 1578591823, 'DE', 'Germany'), +('94.23.102.80', '94.23.102.143', 1578591824, 1578591887, 'FR', 'France'), +('94.23.102.144', '94.23.102.175', 1578591888, 1578591919, 'PL', 'Poland'), +('94.23.102.176', '94.23.102.207', 1578591920, 1578591951, 'ES', 'Spain'), +('94.23.102.208', '94.23.102.223', 1578591952, 1578591967, 'PT', 'Portugal'), +('94.23.102.224', '94.23.102.239', 1578591968, 1578591983, 'FR', 'France'), +('94.23.102.240', '94.23.103.31', 1578591984, 1578592031, 'PL', 'Poland'), +('94.23.103.32', '94.23.103.47', 1578592032, 1578592047, 'IT', 'Italy'), +('94.23.103.48', '94.23.103.79', 1578592048, 1578592079, 'FR', 'France'), +('94.23.103.80', '94.23.103.95', 1578592080, 1578592095, 'PL', 'Poland'), +('94.23.103.96', '94.23.103.111', 1578592096, 1578592111, 'FR', 'France'), +('94.23.103.112', '94.23.103.127', 1578592112, 1578592127, 'GB', 'United Kingdom'), +('94.23.103.128', '94.23.103.143', 1578592128, 1578592143, 'FR', 'France'), +('94.23.103.144', '94.23.103.159', 1578592144, 1578592159, 'PL', 'Poland'), +('94.23.103.160', '94.23.103.175', 1578592160, 1578592175, 'ES', 'Spain'), +('94.23.103.176', '94.23.103.223', 1578592176, 1578592223, 'FR', 'France'), +('94.23.103.224', '94.23.103.255', 1578592224, 1578592255, 'ES', 'Spain'), +('94.23.104.0', '94.23.104.15', 1578592256, 1578592271, 'FR', 'France'), +('94.23.104.16', '94.23.104.31', 1578592272, 1578592287, 'PL', 'Poland'), +('94.23.104.32', '94.23.104.63', 1578592288, 1578592319, 'FR', 'France'), +('94.23.104.64', '94.23.104.95', 1578592320, 1578592351, 'ES', 'Spain'), +('94.23.104.96', '94.23.104.111', 1578592352, 1578592367, 'FR', 'France'), +('94.23.104.112', '94.23.104.127', 1578592368, 1578592383, 'GB', 'United Kingdom'), +('94.23.104.128', '94.23.104.159', 1578592384, 1578592415, 'PL', 'Poland'), +('94.23.104.160', '94.23.104.223', 1578592416, 1578592479, 'FR', 'France'), +('94.23.104.224', '94.23.104.239', 1578592480, 1578592495, 'PL', 'Poland'), +('94.23.104.240', '94.23.104.255', 1578592496, 1578592511, 'FR', 'France'), +('94.23.105.0', '94.23.105.63', 1578592512, 1578592575, 'GB', 'United Kingdom'), +('94.23.105.64', '94.23.105.175', 1578592576, 1578592687, 'FR', 'France'), +('94.23.105.176', '94.23.105.207', 1578592688, 1578592719, 'ES', 'Spain'), +('94.23.105.208', '94.23.105.223', 1578592720, 1578592735, 'CH', 'Switzerland'), +('94.23.105.224', '94.23.105.255', 1578592736, 1578592767, 'FR', 'France'), +('94.23.106.0', '94.23.106.31', 1578592768, 1578592799, 'DE', 'Germany'), +('94.23.106.32', '94.23.106.63', 1578592800, 1578592831, 'FR', 'France'), +('94.23.106.64', '94.23.106.79', 1578592832, 1578592847, 'PL', 'Poland'), +('94.23.106.80', '94.23.106.95', 1578592848, 1578592863, 'FR', 'France'), +('94.23.106.96', '94.23.106.111', 1578592864, 1578592879, 'PL', 'Poland'), +('94.23.106.112', '94.23.106.127', 1578592880, 1578592895, 'CH', 'Switzerland'), +('94.23.106.128', '94.23.106.191', 1578592896, 1578592959, 'IT', 'Italy'), +('94.23.106.192', '94.23.106.239', 1578592960, 1578593007, 'FR', 'France'), +('94.23.106.240', '94.23.106.255', 1578593008, 1578593023, 'GB', 'United Kingdom'), +('94.23.107.0', '94.23.107.255', 1578593024, 1578593279, 'DE', 'Germany'), +('94.23.108.0', '94.23.108.15', 1578593280, 1578593295, 'PL', 'Poland'), +('94.23.108.16', '94.23.108.31', 1578593296, 1578593311, 'FR', 'France'), +('94.23.108.32', '94.23.108.47', 1578593312, 1578593327, 'PL', 'Poland'), +('94.23.108.48', '94.23.108.79', 1578593328, 1578593359, 'FR', 'France'), +('94.23.108.80', '94.23.108.95', 1578593360, 1578593375, 'GB', 'United Kingdom'), +('94.23.108.96', '94.23.108.111', 1578593376, 1578593391, 'FR', 'France'), +('94.23.108.112', '94.23.108.127', 1578593392, 1578593407, 'BE', 'Belgium'), +('94.23.108.128', '94.23.108.159', 1578593408, 1578593439, 'FR', 'France'), +('94.23.108.160', '94.23.108.175', 1578593440, 1578593455, 'PL', 'Poland'), +('94.23.108.176', '94.23.108.223', 1578593456, 1578593503, 'FR', 'France'), +('94.23.108.224', '94.23.108.255', 1578593504, 1578593535, 'PL', 'Poland'), +('94.23.109.0', '94.23.109.127', 1578593536, 1578593663, 'FR', 'France'), +('94.23.109.128', '94.23.109.143', 1578593664, 1578593679, 'DE', 'Germany'), +('94.23.109.144', '94.23.109.207', 1578593680, 1578593743, 'FR', 'France'), +('94.23.109.208', '94.23.109.223', 1578593744, 1578593759, 'IT', 'Italy'), +('94.23.109.224', '94.23.109.239', 1578593760, 1578593775, 'ES', 'Spain'), +('94.23.109.240', '94.23.110.31', 1578593776, 1578593823, 'FR', 'France'), +('94.23.110.32', '94.23.110.47', 1578593824, 1578593839, 'GB', 'United Kingdom'), +('94.23.110.48', '94.23.110.143', 1578593840, 1578593935, 'FR', 'France'), +('94.23.110.144', '94.23.110.175', 1578593936, 1578593967, 'PL', 'Poland'), +('94.23.110.176', '94.23.110.223', 1578593968, 1578594015, 'FR', 'France'), +('94.23.110.224', '94.23.110.239', 1578594016, 1578594031, 'BE', 'Belgium'), +('94.23.110.240', '94.23.110.255', 1578594032, 1578594047, 'PL', 'Poland'), +('94.23.111.0', '94.23.111.15', 1578594048, 1578594063, 'FR', 'France'), +('94.23.111.16', '94.23.111.31', 1578594064, 1578594079, 'PL', 'Poland'), +('94.23.111.32', '94.23.111.47', 1578594080, 1578594095, 'IT', 'Italy'), +('94.23.111.48', '94.23.111.63', 1578594096, 1578594111, 'GB', 'United Kingdom'), +('94.23.111.64', '94.23.111.79', 1578594112, 1578594127, 'PL', 'Poland'), +('94.23.111.80', '94.23.111.95', 1578594128, 1578594143, 'GB', 'United Kingdom'), +('94.23.111.96', '94.23.111.143', 1578594144, 1578594191, 'FR', 'France'), +('94.23.111.144', '94.23.111.159', 1578594192, 1578594207, 'IT', 'Italy'), +('94.23.111.160', '94.23.111.175', 1578594208, 1578594223, 'PL', 'Poland'), +('94.23.111.176', '94.23.111.191', 1578594224, 1578594239, 'CH', 'Switzerland'), +('94.23.111.192', '94.23.111.207', 1578594240, 1578594255, 'FR', 'France'), +('94.23.111.208', '94.23.111.223', 1578594256, 1578594271, 'ES', 'Spain'), +('94.23.111.224', '94.23.111.255', 1578594272, 1578594303, 'GB', 'United Kingdom'), +('94.23.112.0', '94.23.112.15', 1578594304, 1578594319, 'FR', 'France'), +('94.23.112.16', '94.23.112.31', 1578594320, 1578594335, 'PL', 'Poland'), +('94.23.112.32', '94.23.112.95', 1578594336, 1578594399, 'FR', 'France'), +('94.23.112.96', '94.23.112.127', 1578594400, 1578594431, 'PL', 'Poland'), +('94.23.112.128', '94.23.112.143', 1578594432, 1578594447, 'FR', 'France'), +('94.23.112.144', '94.23.112.159', 1578594448, 1578594463, 'PL', 'Poland'), +('94.23.112.160', '94.23.112.175', 1578594464, 1578594479, 'FR', 'France'), +('94.23.112.176', '94.23.112.191', 1578594480, 1578594495, 'ES', 'Spain'), +('94.23.112.192', '94.23.112.223', 1578594496, 1578594527, 'PL', 'Poland'), +('94.23.112.224', '94.23.113.31', 1578594528, 1578594591, 'FR', 'France'), +('94.23.113.32', '94.23.113.47', 1578594592, 1578594607, 'ES', 'Spain'), +('94.23.113.48', '94.23.113.63', 1578594608, 1578594623, 'FR', 'France'), +('94.23.113.64', '94.23.113.127', 1578594624, 1578594687, 'DE', 'Germany'), +('94.23.113.128', '94.23.113.143', 1578594688, 1578594703, 'FR', 'France'), +('94.23.113.144', '94.23.113.159', 1578594704, 1578594719, 'GB', 'United Kingdom'), +('94.23.113.160', '94.23.113.191', 1578594720, 1578594751, 'FR', 'France'), +('94.23.113.192', '94.23.113.207', 1578594752, 1578594767, 'ES', 'Spain'), +('94.23.113.208', '94.23.113.239', 1578594768, 1578594799, 'FR', 'France'), +('94.23.113.240', '94.23.113.255', 1578594800, 1578594815, 'DE', 'Germany'), +('94.23.114.0', '94.23.114.223', 1578594816, 1578595039, 'FR', 'France'), +('94.23.114.224', '94.23.114.239', 1578595040, 1578595055, 'GB', 'United Kingdom'), +('94.23.114.240', '94.23.115.31', 1578595056, 1578595103, 'FR', 'France'), +('94.23.115.32', '94.23.115.47', 1578595104, 1578595119, 'GB', 'United Kingdom'), +('94.23.115.48', '94.23.115.63', 1578595120, 1578595135, 'DE', 'Germany'), +('94.23.115.64', '94.23.115.79', 1578595136, 1578595151, 'FR', 'France'), +('94.23.115.80', '94.23.115.95', 1578595152, 1578595167, 'PL', 'Poland'), +('94.23.115.96', '94.23.115.127', 1578595168, 1578595199, 'FR', 'France'), +('94.23.115.128', '94.23.115.255', 1578595200, 1578595327, 'GB', 'United Kingdom'), +('94.23.116.0', '94.23.116.15', 1578595328, 1578595343, 'IT', 'Italy'), +('94.23.116.16', '94.23.116.31', 1578595344, 1578595359, 'PL', 'Poland'), +('94.23.116.32', '94.23.116.159', 1578595360, 1578595487, 'FR', 'France'), +('94.23.116.160', '94.23.116.175', 1578595488, 1578595503, 'DE', 'Germany'), +('94.23.116.176', '94.23.116.191', 1578595504, 1578595519, 'PL', 'Poland'), +('94.23.116.192', '94.23.117.15', 1578595520, 1578595599, 'FR', 'France'), +('94.23.117.16', '94.23.117.63', 1578595600, 1578595647, 'PL', 'Poland'), +('94.23.117.64', '94.23.117.79', 1578595648, 1578595663, 'FR', 'France'), +('94.23.117.80', '94.23.117.95', 1578595664, 1578595679, 'ES', 'Spain'), +('94.23.117.96', '94.23.117.111', 1578595680, 1578595695, 'BE', 'Belgium'), +('94.23.117.112', '94.23.117.127', 1578595696, 1578595711, 'PL', 'Poland'), +('94.23.117.128', '94.23.117.175', 1578595712, 1578595759, 'FR', 'France'), +('94.23.117.176', '94.23.117.191', 1578595760, 1578595775, 'GB', 'United Kingdom'), +('94.23.117.192', '94.23.118.143', 1578595776, 1578595983, 'FR', 'France'), +('94.23.118.144', '94.23.119.15', 1578595984, 1578596111, 'DE', 'Germany'), +('94.23.119.16', '94.23.119.31', 1578596112, 1578596127, 'ES', 'Spain'), +('94.23.119.32', '94.23.119.47', 1578596128, 1578596143, 'PL', 'Poland'), +('94.23.119.48', '94.23.119.63', 1578596144, 1578596159, 'GB', 'United Kingdom'), +('94.23.119.64', '94.23.119.95', 1578596160, 1578596191, 'PL', 'Poland'), +('94.23.119.96', '94.23.119.111', 1578596192, 1578596207, 'ES', 'Spain'), +('94.23.119.112', '94.23.119.159', 1578596208, 1578596255, 'FR', 'France'), +('94.23.119.160', '94.23.119.191', 1578596256, 1578596287, 'GB', 'United Kingdom'), +('94.23.119.192', '94.23.119.239', 1578596288, 1578596335, 'FR', 'France'), +('94.23.119.240', '94.23.119.255', 1578596336, 1578596351, 'ES', 'Spain'), +('94.23.120.0', '94.23.121.255', 1578596352, 1578596863, 'GB', 'United Kingdom'), +('94.23.122.0', '94.23.134.255', 1578596864, 1578600191, 'FR', 'France'), +('94.23.135.0', '94.23.135.63', 1578600192, 1578600255, 'BE', 'Belgium'), +('94.23.135.64', '94.23.136.63', 1578600256, 1578600511, 'FR', 'France'), +('94.23.136.64', '94.23.136.127', 1578600512, 1578600575, 'BE', 'Belgium'), +('94.23.136.128', '94.23.143.255', 1578600576, 1578602495, 'FR', 'France'), +('94.23.144.0', '94.23.151.255', 1578602496, 1578604543, 'NL', 'Netherlands'), +('94.23.152.0', '94.23.159.255', 1578604544, 1578606591, 'GB', 'United Kingdom'), +('94.23.160.0', '94.23.167.255', 1578606592, 1578608639, 'DE', 'Germany'), +('94.23.168.0', '94.23.175.255', 1578608640, 1578610687, 'CZ', 'Czech Republic'), +('94.23.176.0', '94.23.176.255', 1578610688, 1578610943, 'FR', 'France'), +('94.23.177.0', '94.23.177.63', 1578610944, 1578611007, 'BE', 'Belgium'), +('94.23.177.64', '94.23.177.127', 1578611008, 1578611071, 'FR', 'France'), +('94.23.177.128', '94.23.177.143', 1578611072, 1578611087, 'GB', 'United Kingdom'), +('94.23.177.144', '94.23.177.159', 1578611088, 1578611103, 'FR', 'France'), +('94.23.177.160', '94.23.177.175', 1578611104, 1578611119, 'GB', 'United Kingdom'), +('94.23.177.176', '94.23.177.191', 1578611120, 1578611135, 'FR', 'France'), +('94.23.177.192', '94.23.177.207', 1578611136, 1578611151, 'CH', 'Switzerland'), +('94.23.177.208', '94.23.177.223', 1578611152, 1578611167, 'FR', 'France'), +('94.23.177.224', '94.23.177.239', 1578611168, 1578611183, 'ES', 'Spain'), +('94.23.177.240', '94.23.177.255', 1578611184, 1578611199, 'FR', 'France'), +('94.23.178.0', '94.23.178.15', 1578611200, 1578611215, 'GB', 'United Kingdom'), +('94.23.178.16', '94.23.178.31', 1578611216, 1578611231, 'PL', 'Poland'), +('94.23.178.32', '94.23.178.63', 1578611232, 1578611263, 'FR', 'France'), +('94.23.178.64', '94.23.178.79', 1578611264, 1578611279, 'IT', 'Italy'), +('94.23.178.80', '94.23.178.95', 1578611280, 1578611295, 'FR', 'France'), +('94.23.178.96', '94.23.178.127', 1578611296, 1578611327, 'PL', 'Poland'), +('94.23.178.128', '94.23.255.255', 1578611328, 1578631167, 'FR', 'France'), +('94.24.0.0', '94.24.127.255', 1578631168, 1578663935, 'RO', 'Romania'), +('94.24.128.0', '94.25.255.255', 1578663936, 1578762239, 'RU', 'Russian Federation'), +('94.26.0.0', '94.26.127.255', 1578762240, 1578795007, 'BG', 'Bulgaria'), +('94.26.128.0', '94.26.255.255', 1578795008, 1578827775, 'RU', 'Russian Federation'), +('94.27.0.0', '94.27.127.255', 1578827776, 1578860543, 'UA', 'Ukraine'), +('94.27.128.0', '94.27.255.255', 1578860544, 1578893311, 'HU', 'Hungary'), +('94.28.0.0', '94.29.127.255', 1578893312, 1578991615, 'RU', 'Russian Federation'), +('94.29.128.0', '94.29.255.255', 1578991616, 1579024383, 'KW', 'Kuwait'), +('94.30.0.0', '94.30.127.255', 1579024384, 1579057151, 'GB', 'United Kingdom'), +('94.30.128.0', '94.30.255.255', 1579057152, 1579089919, 'LV', 'Latvia'), +('94.31.0.0', '94.31.2.31', 1579089920, 1579090463, 'NL', 'Netherlands'), +('94.31.2.32', '94.31.2.63', 1579090464, 1579090495, 'GB', 'United Kingdom'), +('94.31.2.64', '94.31.2.127', 1579090496, 1579090559, 'NL', 'Netherlands'), +('94.31.2.128', '94.31.56.255', 1579090560, 1579104511, 'GB', 'United Kingdom'), +('94.31.57.0', '94.31.57.255', 1579104512, 1579104767, 'NL', 'Netherlands'), +('94.31.58.0', '94.31.58.255', 1579104768, 1579105023, 'GB', 'United Kingdom'), +('94.31.59.0', '94.31.59.127', 1579105024, 1579105151, 'NL', 'Netherlands'), +('94.31.59.128', '94.31.59.255', 1579105152, 1579105279, 'GB', 'United Kingdom'), +('94.31.60.0', '94.31.60.63', 1579105280, 1579105343, 'NL', 'Netherlands'), +('94.31.60.64', '94.31.60.255', 1579105344, 1579105535, 'GB', 'United Kingdom'), +('94.31.61.0', '94.31.61.63', 1579105536, 1579105599, 'NL', 'Netherlands'), +('94.31.61.64', '94.31.63.255', 1579105600, 1579106303, 'GB', 'United Kingdom'), +('94.31.64.0', '94.31.64.255', 1579106304, 1579106559, 'FR', 'France'), +('94.31.65.0', '94.31.95.255', 1579106560, 1579114495, 'GB', 'United Kingdom'), +('94.31.96.0', '94.31.97.255', 1579114496, 1579115007, 'DE', 'Germany'), +('94.31.98.0', '94.31.127.255', 1579115008, 1579122687, 'GB', 'United Kingdom'), +('94.31.128.0', '94.31.255.255', 1579122688, 1579155455, 'RU', 'Russian Federation'), +('94.32.0.0', '94.39.255.255', 1579155456, 1579679743, 'IT', 'Italy'), +('94.40.0.0', '94.40.255.255', 1579679744, 1579745279, 'PL', 'Poland'), +('94.41.0.0', '94.41.255.255', 1579745280, 1579810815, 'RU', 'Russian Federation'), +('94.42.0.0', '94.42.255.255', 1579810816, 1579876351, 'PL', 'Poland'), +('94.43.0.0', '94.43.255.255', 1579876352, 1579941887, 'GE', 'Georgia'), +('94.44.0.0', '94.44.255.255', 1579941888, 1580007423, 'HU', 'Hungary'), +('94.45.0.0', '94.45.31.255', 1580007424, 1580015615, 'RU', 'Russian Federation'), +('94.45.32.0', '94.45.159.255', 1580015616, 1580048383, 'UA', 'Ukraine'), +('94.45.160.0', '94.45.223.255', 1580048384, 1580064767, 'RU', 'Russian Federation'), +('94.45.224.0', '94.45.255.255', 1580064768, 1580072959, 'DE', 'Germany'), +('94.46.0.0', '94.46.8.31', 1580072960, 1580075039, 'PT', 'Portugal'), +('94.46.8.32', '94.46.8.63', 1580075040, 1580075071, 'ES', 'Spain'), +('94.46.8.64', '94.46.8.95', 1580075072, 1580075103, 'DE', 'Germany'), +('94.46.8.96', '94.46.8.127', 1580075104, 1580075135, 'AU', 'Australia'), +('94.46.8.128', '94.46.8.159', 1580075136, 1580075167, 'GB', 'United Kingdom'), +('94.46.8.160', '94.46.8.191', 1580075168, 1580075199, 'NL', 'Netherlands'), +('94.46.8.192', '94.46.8.223', 1580075200, 1580075231, 'FR', 'France'), +('94.46.8.224', '94.46.8.254', 1580075232, 1580075262, 'IN', 'India'), +('94.46.8.255', '94.46.239.255', 1580075263, 1580134399, 'PT', 'Portugal'), +('94.46.240.0', '94.46.247.255', 1580134400, 1580136447, 'ES', 'Spain'), +('94.46.248.0', '94.46.255.255', 1580136448, 1580138495, 'PT', 'Portugal'), +('94.47.0.0', '94.47.255.255', 1580138496, 1580204031, 'IT', 'Italy'), +('94.48.0.0', '94.49.255.255', 1580204032, 1580335103, 'RO', 'Romania'), +('94.50.0.0', '94.51.255.255', 1580335104, 1580466175, 'RU', 'Russian Federation'), +('94.52.0.0', '94.53.255.255', 1580466176, 1580597247, 'RO', 'Romania'), +('94.54.0.0', '94.55.255.255', 1580597248, 1580728319, 'TR', 'Turkey'), +('94.56.0.0', '94.59.255.255', 1580728320, 1580990463, 'AE', 'United Arab Emirates'), +('94.60.0.0', '94.63.255.255', 1580990464, 1581252607, 'RO', 'Romania'), +('94.64.0.0', '94.71.255.255', 1581252608, 1581776895, 'GR', 'Greece'), +('94.72.0.0', '94.72.63.255', 1581776896, 1581793279, 'RU', 'Russian Federation'), +('94.72.64.0', '94.72.127.255', 1581793280, 1581809663, 'PL', 'Poland'), +('94.72.128.0', '94.72.191.255', 1581809664, 1581826047, 'BG', 'Bulgaria'), +('94.72.192.0', '94.72.255.255', 1581826048, 1581842431, 'GB', 'United Kingdom'), +('94.73.0.0', '94.73.63.255', 1581842432, 1581858815, 'BG', 'Bulgaria'), +('94.73.64.0', '94.73.127.255', 1581858816, 1581875199, 'IT', 'Italy'), +('94.73.128.0', '94.73.191.255', 1581875200, 1581891583, 'TR', 'Turkey'), +('94.73.192.0', '94.73.255.255', 1581891584, 1581907967, 'RU', 'Russian Federation'), +('94.74.0.0', '94.74.63.255', 1581907968, 1581924351, 'IT', 'Italy'), +('94.74.64.0', '94.74.127.255', 1581924352, 1581940735, 'UA', 'Ukraine'), +('94.74.128.0', '94.74.191.255', 1581940736, 1581957119, 'IR', 'Iran, Islamic Republic of'), +('94.74.192.0', '94.74.255.255', 1581957120, 1581973503, 'CZ', 'Czech Republic'), +('94.75.0.0', '94.75.63.255', 1581973504, 1581989887, 'RU', 'Russian Federation'), +('94.75.64.0', '94.75.127.255', 1581989888, 1582006271, 'PL', 'Poland'), +('94.75.128.0', '94.75.191.255', 1582006272, 1582022655, 'RU', 'Russian Federation'), +('94.75.192.0', '94.75.255.255', 1582022656, 1582039039, 'NL', 'Netherlands'), +('94.76.0.0', '94.76.63.255', 1582039040, 1582055423, 'RU', 'Russian Federation'), +('94.76.64.0', '94.76.127.255', 1582055424, 1582071807, 'UA', 'Ukraine'), +('94.76.128.0', '94.76.191.255', 1582071808, 1582088191, 'ES', 'Spain'), +('94.76.192.0', '94.76.255.255', 1582088192, 1582104575, 'GB', 'United Kingdom'), +('94.77.0.0', '94.77.191.255', 1582104576, 1582153727, 'RU', 'Russian Federation'), +('94.77.192.0', '94.77.255.255', 1582153728, 1582170111, 'SA', 'Saudi Arabia'), +('94.78.0.0', '94.78.63.255', 1582170112, 1582186495, 'CH', 'Switzerland'), +('94.78.64.0', '94.78.127.255', 1582186496, 1582202879, 'TR', 'Turkey'), +('94.78.128.0', '94.78.191.255', 1582202880, 1582219263, 'PL', 'Poland'), +('94.78.192.0', '94.79.63.255', 1582219264, 1582252031, 'RU', 'Russian Federation'), +('94.79.64.0', '94.79.127.255', 1582252032, 1582268415, 'TR', 'Turkey'), +('94.79.128.0', '94.79.191.255', 1582268416, 1582284799, 'DE', 'Germany'), +('94.79.192.0', '94.79.255.255', 1582284800, 1582301183, 'BH', 'Bahrain'), +('94.80.0.0', '94.95.255.255', 1582301184, 1583349759, 'IT', 'Italy'), +('94.96.0.0', '94.99.255.255', 1583349760, 1583611903, 'SA', 'Saudi Arabia'), +('94.100.0.0', '94.100.15.255', 1583611904, 1583615999, 'LV', 'Latvia'), +('94.100.16.0', '94.100.31.255', 1583616000, 1583620095, 'NL', 'Netherlands'), +('94.100.32.0', '94.100.47.255', 1583620096, 1583624191, 'IT', 'Italy'), +('94.100.48.0', '94.100.63.255', 1583624192, 1583628287, 'RS', 'Serbia'), +('94.100.64.0', '94.100.79.255', 1583628288, 1583632383, 'DE', 'Germany'), +('94.100.80.0', '94.100.95.255', 1583632384, 1583636479, 'RU', 'Russian Federation'), +('94.100.96.0', '94.100.111.255', 1583636480, 1583640575, 'MK', 'Macedonia'), +('94.100.112.0', '94.100.127.255', 1583640576, 1583644671, 'NL', 'Netherlands'), +('94.100.128.0', '94.100.143.255', 1583644672, 1583648767, 'DE', 'Germany'), +('94.100.144.0', '94.100.159.255', 1583648768, 1583652863, 'CH', 'Switzerland'), +('94.100.160.0', '94.100.175.255', 1583652864, 1583656959, 'FR', 'France'), +('94.100.176.0', '94.100.207.255', 1583656960, 1583665151, 'RU', 'Russian Federation'), +('94.100.208.0', '94.100.223.255', 1583665152, 1583669247, 'UA', 'Ukraine'), +('94.100.224.0', '94.100.239.255', 1583669248, 1583673343, 'GE', 'Georgia'), +('94.100.240.0', '94.100.242.135', 1583673344, 1583673991, 'DE', 'Germany'), +('94.100.242.136', '94.100.242.143', 1583673992, 1583673999, 'GB', 'United Kingdom'), +('94.100.242.144', '94.100.242.159', 1583674000, 1583674015, 'DE', 'Germany'), +('94.100.242.160', '94.100.242.183', 1583674016, 1583674039, 'NL', 'Netherlands'), +('94.100.242.184', '94.100.255.255', 1583674040, 1583677439, 'DE', 'Germany'), +('94.101.0.0', '94.101.15.255', 1583677440, 1583681535, 'FI', 'Finland'), +('94.101.16.0', '94.101.31.255', 1583681536, 1583685631, 'PL', 'Poland'), +('94.101.32.0', '94.101.47.255', 1583685632, 1583689727, 'DE', 'Germany'), +('94.101.48.0', '94.101.63.255', 1583689728, 1583693823, 'IT', 'Italy'), +('94.101.64.0', '94.101.79.255', 1583693824, 1583697919, 'RU', 'Russian Federation'), +('94.101.80.0', '94.101.95.255', 1583697920, 1583702015, 'TR', 'Turkey'), +('94.101.96.0', '94.101.111.255', 1583702016, 1583706111, 'RU', 'Russian Federation'), +('94.101.112.0', '94.101.127.255', 1583706112, 1583710207, 'GI', 'Gibraltar'), +('94.101.128.0', '94.101.135.255', 1583710208, 1583712255, 'IR', 'Iran, Islamic Republic of'), +('94.101.136.0', '94.101.143.255', 1583712256, 1583714303, 'AE', 'United Arab Emirates'), +('94.101.144.0', '94.101.175.255', 1583714304, 1583722495, 'GB', 'United Kingdom'), +('94.101.176.0', '94.101.191.255', 1583722496, 1583726591, 'IR', 'Iran, Islamic Republic of'), +('94.101.192.0', '94.101.207.255', 1583726592, 1583730687, 'BG', 'Bulgaria'), +('94.101.208.0', '94.101.214.111', 1583730688, 1583732335, 'DK', 'Denmark'), +('94.101.214.112', '94.101.214.127', 1583732336, 1583732351, 'A2', 'Satellite Provider'), +('94.101.214.128', '94.101.214.159', 1583732352, 1583732383, 'DK', 'Denmark'), +('94.101.214.160', '94.101.214.175', 1583732384, 1583732399, 'DE', 'Germany'), +('94.101.214.176', '94.101.223.255', 1583732400, 1583734783, 'DK', 'Denmark'), +('94.101.224.0', '94.101.239.255', 1583734784, 1583738879, 'LV', 'Latvia'), +('94.101.240.0', '94.101.255.255', 1583738880, 1583742975, 'IR', 'Iran, Islamic Republic of'), +('94.102.0.0', '94.102.15.255', 1583742976, 1583747071, 'TR', 'Turkey'), +('94.102.16.0', '94.102.31.255', 1583747072, 1583751167, 'RU', 'Russian Federation'), +('94.102.32.0', '94.102.47.255', 1583751168, 1583755263, 'NO', 'Norway'), +('94.102.48.0', '94.102.55.255', 1583755264, 1583757311, 'NL', 'Netherlands'), +('94.102.56.0', '94.102.56.255', 1583757312, 1583757567, 'PA', 'Panama'), +('94.102.57.0', '94.102.61.255', 1583757568, 1583758847, 'NL', 'Netherlands'), +('94.102.62.0', '94.102.62.255', 1583758848, 1583759103, 'KY', 'Cayman Islands'), +('94.102.63.0', '94.102.63.128', 1583759104, 1583759232, 'RS', 'Serbia'), +('94.102.63.129', '94.102.63.255', 1583759233, 1583759359, 'NL', 'Netherlands'), +('94.102.64.0', '94.102.79.255', 1583759360, 1583763455, 'TR', 'Turkey'), +('94.102.80.0', '94.102.95.255', 1583763456, 1583767551, 'RU', 'Russian Federation'), +('94.102.96.0', '94.102.111.255', 1583767552, 1583771647, 'AT', 'Austria'), +('94.102.112.0', '94.102.127.255', 1583771648, 1583775743, 'RU', 'Russian Federation'), +('94.102.128.0', '94.102.143.255', 1583775744, 1583779839, 'IT', 'Italy'), +('94.102.144.0', '94.102.159.255', 1583779840, 1583783935, 'GB', 'United Kingdom'), +('94.102.160.0', '94.102.175.255', 1583783936, 1583788031, 'EU', 'Europe'), +('94.102.176.0', '94.102.191.255', 1583788032, 1583792127, 'TM', 'Turkmenistan'), +('94.102.192.0', '94.102.207.255', 1583792128, 1583796223, 'IE', 'Ireland'), +('94.102.208.0', '94.102.223.255', 1583796224, 1583800319, 'DE', 'Germany'), +('94.102.224.0', '94.102.239.255', 1583800320, 1583804415, 'ME', 'Montenegro'), +('94.102.240.0', '94.102.255.255', 1583804416, 1583808511, 'GB', 'United Kingdom'), +('94.103.0.0', '94.103.15.255', 1583808512, 1583812607, 'MD', 'Moldova, Republic of'), +('94.103.16.0', '94.103.20.47', 1583812608, 1583813679, 'NL', 'Netherlands'), +('94.103.20.48', '94.103.20.51', 1583813680, 1583813683, 'GB', 'United Kingdom'), +('94.103.20.52', '94.103.31.255', 1583813684, 1583816703, 'NL', 'Netherlands'), +('94.103.32.0', '94.103.47.255', 1583816704, 1583820799, 'TR', 'Turkey'), +('94.103.48.0', '94.103.63.255', 1583820800, 1583824895, 'LV', 'Latvia'), +('94.103.64.0', '94.103.79.255', 1583824896, 1583828991, 'SI', 'Slovenia'), +('94.103.80.0', '94.103.95.255', 1583828992, 1583833087, 'RU', 'Russian Federation'), +('94.103.96.0', '94.103.111.255', 1583833088, 1583837183, 'CH', 'Switzerland'), +('94.103.112.0', '94.103.127.255', 1583837184, 1583841279, 'GB', 'United Kingdom'), +('94.103.128.0', '94.103.143.255', 1583841280, 1583845375, 'FR', 'France'), +('94.103.144.0', '94.103.159.255', 1583845376, 1583849471, 'NL', 'Netherlands'), +('94.103.160.0', '94.103.175.255', 1583849472, 1583853567, 'DE', 'Germany'), +('94.103.176.0', '94.103.191.255', 1583853568, 1583857663, 'RU', 'Russian Federation'), +('94.103.192.0', '94.103.207.255', 1583857664, 1583861759, 'SE', 'Sweden'), +('94.103.208.0', '94.103.223.255', 1583861760, 1583865855, 'LU', 'Luxembourg'), +('94.103.224.0', '94.103.239.255', 1583865856, 1583869951, 'RU', 'Russian Federation'), +('94.103.240.0', '94.103.255.255', 1583869952, 1583874047, 'KZ', 'Kazakstan'), +('94.104.0.0', '94.111.255.255', 1583874048, 1584398335, 'BE', 'Belgium'), +('94.112.0.0', '94.115.255.255', 1584398336, 1584660479, 'CZ', 'Czech Republic'), +('94.116.0.0', '94.119.255.255', 1584660480, 1584922623, 'GB', 'United Kingdom'), +('94.120.0.0', '94.123.255.255', 1584922624, 1585184767, 'TR', 'Turkey'), +('94.124.0.0', '94.124.23.255', 1585184768, 1585190911, 'PL', 'Poland'), +('94.124.24.0', '94.124.31.255', 1585190912, 1585192959, 'ES', 'Spain'), +('94.124.32.0', '94.124.39.255', 1585192960, 1585195007, 'IT', 'Italy'), +('94.124.40.0', '94.124.47.255', 1585195008, 1585197055, 'CZ', 'Czech Republic'), +('94.124.48.0', '94.124.55.255', 1585197056, 1585199103, 'IT', 'Italy'), +('94.124.56.0', '94.124.63.255', 1585199104, 1585201151, 'NL', 'Netherlands'), +('94.124.64.0', '94.124.79.255', 1585201152, 1585205247, 'IT', 'Italy'), +('94.124.80.0', '94.124.87.255', 1585205248, 1585207295, 'FR', 'France'), +('94.124.88.0', '94.124.97.255', 1585207296, 1585209855, 'NL', 'Netherlands'), +('94.124.98.0', '94.124.98.255', 1585209856, 1585210111, 'IQ', 'Iraq'), +('94.124.99.0', '94.124.101.255', 1585210112, 1585210879, 'IR', 'Iran, Islamic Republic of'), +('94.124.102.0', '94.124.103.255', 1585210880, 1585211391, 'NL', 'Netherlands'), +('94.124.104.0', '94.124.111.255', 1585211392, 1585213439, 'CZ', 'Czech Republic'), +('94.124.112.0', '94.124.115.255', 1585213440, 1585214463, 'GB', 'United Kingdom'), +('94.124.116.0', '94.124.127.255', 1585214464, 1585217535, 'NL', 'Netherlands'), +('94.124.128.0', '94.124.135.255', 1585217536, 1585219583, 'FR', 'France'), +('94.124.136.0', '94.124.143.255', 1585219584, 1585221631, 'NL', 'Netherlands'), +('94.124.144.0', '94.124.144.127', 1585221632, 1585221759, 'SK', 'Slovakia'), +('94.124.144.128', '94.124.151.255', 1585221760, 1585223679, 'CZ', 'Czech Republic'), +('94.124.152.0', '94.124.159.255', 1585223680, 1585225727, 'FR', 'France'), +('94.124.160.0', '94.124.167.255', 1585225728, 1585227775, 'UA', 'Ukraine'), +('94.124.168.0', '94.124.183.255', 1585227776, 1585231871, 'RU', 'Russian Federation'), +('94.124.184.0', '94.124.191.255', 1585231872, 1585233919, 'CZ', 'Czech Republic'), +('94.124.192.0', '94.124.199.255', 1585233920, 1585235967, 'LB', 'Lebanon'), +('94.124.200.0', '94.124.207.255', 1585235968, 1585238015, 'RU', 'Russian Federation'), +('94.124.208.0', '94.124.215.255', 1585238016, 1585240063, 'DE', 'Germany'), +('94.124.216.0', '94.124.223.255', 1585240064, 1585242111, 'MQ', 'Martinique'), +('94.124.224.0', '94.124.231.255', 1585242112, 1585244159, 'RU', 'Russian Federation'), +('94.124.232.0', '94.124.239.255', 1585244160, 1585246207, 'FR', 'France'), +('94.124.240.0', '94.124.247.255', 1585246208, 1585248255, 'RU', 'Russian Federation'), +('94.124.248.0', '94.124.255.255', 1585248256, 1585250303, 'CZ', 'Czech Republic'), +('94.125.0.0', '94.125.15.255', 1585250304, 1585254399, 'RU', 'Russian Federation'), +('94.125.16.0', '94.125.23.255', 1585254400, 1585256447, 'GB', 'United Kingdom'), +('94.125.24.0', '94.125.31.255', 1585256448, 1585258495, 'DE', 'Germany'), +('94.125.32.0', '94.125.47.255', 1585258496, 1585262591, 'GB', 'United Kingdom'), +('94.125.48.0', '94.125.55.255', 1585262592, 1585264639, 'RU', 'Russian Federation'), +('94.125.56.0', '94.125.57.15', 1585264640, 1585264911, 'MT', 'Malta'), +('94.125.57.16', '94.125.57.23', 1585264912, 1585264919, 'IM', 'Isle of Man'), +('94.125.57.24', '94.125.59.255', 1585264920, 1585265663, 'MT', 'Malta'), +('94.125.60.0', '94.125.63.255', 1585265664, 1585266687, 'IM', 'Isle of Man'), +('94.125.64.0', '94.125.79.255', 1585266688, 1585270783, 'DE', 'Germany'), +('94.125.80.0', '94.125.87.255', 1585270784, 1585272831, 'IT', 'Italy'), +('94.125.88.0', '94.125.95.255', 1585272832, 1585274879, 'RU', 'Russian Federation'), +('94.125.96.0', '94.125.103.255', 1585274880, 1585276927, 'ES', 'Spain'), +('94.125.104.0', '94.125.111.255', 1585276928, 1585278975, 'FR', 'France'), +('94.125.112.0', '94.125.119.255', 1585278976, 1585281023, 'AL', 'Albania'), +('94.125.120.0', '94.125.127.255', 1585281024, 1585283071, 'UA', 'Ukraine'), +('94.125.128.0', '94.125.135.255', 1585283072, 1585285119, 'GB', 'United Kingdom'), +('94.125.136.0', '94.125.143.255', 1585285120, 1585287167, 'ES', 'Spain'), +('94.125.144.0', '94.125.151.255', 1585287168, 1585289215, 'CY', 'Cyprus'), +('94.125.152.0', '94.125.159.255', 1585289216, 1585291263, 'DE', 'Germany'), +('94.125.160.0', '94.125.175.255', 1585291264, 1585295359, 'FR', 'France'), +('94.125.176.0', '94.125.183.255', 1585295360, 1585297407, 'HU', 'Hungary'), +('94.125.184.0', '94.125.191.255', 1585297408, 1585299455, 'RU', 'Russian Federation'), +('94.125.192.0', '94.125.199.255', 1585299456, 1585301503, 'GB', 'United Kingdom'), +('94.125.200.0', '94.125.207.255', 1585301504, 1585303551, 'LU', 'Luxembourg'), +('94.125.208.0', '94.125.215.255', 1585303552, 1585305599, 'DE', 'Germany'), +('94.125.216.0', '94.125.223.255', 1585305600, 1585307647, 'CZ', 'Czech Republic'), +('94.125.224.0', '94.125.231.255', 1585307648, 1585309695, 'QA', 'Qatar'), +('94.125.232.0', '94.125.239.255', 1585309696, 1585311743, 'IT', 'Italy'), +('94.125.240.0', '94.125.247.255', 1585311744, 1585313791, 'RU', 'Russian Federation'), +('94.125.248.0', '94.125.255.255', 1585313792, 1585315839, 'HU', 'Hungary'), +('94.126.0.0', '94.126.7.255', 1585315840, 1585317887, 'DK', 'Denmark'), +('94.126.8.0', '94.126.15.255', 1585317888, 1585319935, 'IT', 'Italy'), +('94.126.16.0', '94.126.23.255', 1585319936, 1585321983, 'CH', 'Switzerland'), +('94.126.24.0', '94.126.31.255', 1585321984, 1585324031, 'RU', 'Russian Federation'), +('94.126.32.0', '94.126.39.255', 1585324032, 1585326079, 'NL', 'Netherlands'), +('94.126.40.0', '94.126.47.255', 1585326080, 1585328127, 'GB', 'United Kingdom'), +('94.126.48.0', '94.126.55.255', 1585328128, 1585330175, 'BE', 'Belgium'), +('94.126.56.0', '94.126.63.255', 1585330176, 1585332223, 'IT', 'Italy'), +('94.126.64.0', '94.126.71.255', 1585332224, 1585334271, 'NL', 'Netherlands'), +('94.126.72.0', '94.126.79.255', 1585334272, 1585336319, 'DE', 'Germany'), +('94.126.80.0', '94.126.87.255', 1585336320, 1585338367, 'SE', 'Sweden'), +('94.126.88.0', '94.126.95.255', 1585338368, 1585340415, 'RU', 'Russian Federation'), +('94.126.96.0', '94.126.103.255', 1585340416, 1585342463, 'AT', 'Austria'), +('94.126.104.0', '94.126.111.255', 1585342464, 1585344511, 'GB', 'United Kingdom'), +('94.126.112.0', '94.126.119.255', 1585344512, 1585346559, 'FR', 'France'), +('94.126.120.0', '94.126.127.255', 1585346560, 1585348607, 'GB', 'United Kingdom'), +('94.126.128.0', '94.126.135.255', 1585348608, 1585350655, 'CH', 'Switzerland'), +('94.126.136.0', '94.126.143.255', 1585350656, 1585352703, 'IT', 'Italy'), +('94.126.144.0', '94.126.151.255', 1585352704, 1585354751, 'PT', 'Portugal'), +('94.126.152.0', '94.126.159.255', 1585354752, 1585356799, 'RU', 'Russian Federation'), +('94.126.160.0', '94.126.167.255', 1585356800, 1585358847, 'FI', 'Finland'), +('94.126.168.0', '94.126.175.255', 1585358848, 1585360895, 'PT', 'Portugal'), +('94.126.176.0', '94.126.183.255', 1585360896, 1585362943, 'GB', 'United Kingdom'), +('94.126.184.0', '94.126.185.255', 1585362944, 1585363455, 'IT', 'Italy'), +('94.126.186.0', '94.126.186.127', 1585363456, 1585363583, 'ES', 'Spain'), +('94.126.186.128', '94.126.191.255', 1585363584, 1585364991, 'IT', 'Italy'), +('94.126.192.0', '94.126.199.255', 1585364992, 1585367039, 'GB', 'United Kingdom'), +('94.126.200.0', '94.126.207.255', 1585367040, 1585369087, 'RU', 'Russian Federation'), +('94.126.208.0', '94.126.215.255', 1585369088, 1585371135, 'GB', 'United Kingdom'), +('94.126.216.0', '94.126.231.255', 1585371136, 1585375231, 'SE', 'Sweden'), +('94.126.232.0', '94.126.239.255', 1585375232, 1585377279, 'GB', 'United Kingdom'), +('94.126.240.0', '94.126.247.255', 1585377280, 1585379327, 'ES', 'Spain'), +('94.126.248.0', '94.126.255.255', 1585379328, 1585381375, 'CH', 'Switzerland'), +('94.127.0.0', '94.127.7.255', 1585381376, 1585383423, 'GB', 'United Kingdom'), +('94.127.8.0', '94.127.15.255', 1585383424, 1585385471, 'FR', 'France'), +('94.127.16.0', '94.127.18.255', 1585385472, 1585386239, 'DE', 'Germany'), +('94.127.19.0', '94.127.19.127', 1585386240, 1585386367, 'AT', 'Austria'), +('94.127.19.128', '94.127.23.255', 1585386368, 1585387519, 'DE', 'Germany'), +('94.127.24.0', '94.127.31.255', 1585387520, 1585389567, 'SI', 'Slovenia'), +('94.127.32.0', '94.127.39.255', 1585389568, 1585391615, 'SE', 'Sweden'), +('94.127.40.0', '94.127.47.255', 1585391616, 1585393663, 'IT', 'Italy'), +('94.127.48.0', '94.127.55.255', 1585393664, 1585395711, 'DK', 'Denmark'), +('94.127.56.0', '94.127.63.255', 1585395712, 1585397759, 'NO', 'Norway'), +('94.127.64.0', '94.127.71.255', 1585397760, 1585399807, 'RU', 'Russian Federation'), +('94.127.72.0', '94.127.72.255', 1585399808, 1585400063, 'NL', 'Netherlands'), +('94.127.73.0', '94.127.73.255', 1585400064, 1585400319, 'IL', 'Israel'), +('94.127.74.0', '94.127.74.255', 1585400320, 1585400575, 'GB', 'United Kingdom'), +('94.127.75.0', '94.127.79.255', 1585400576, 1585401855, 'US', 'United States'), +('94.127.80.0', '94.127.87.255', 1585401856, 1585403903, 'IT', 'Italy'), +('94.127.88.0', '94.127.95.255', 1585403904, 1585405951, 'RU', 'Russian Federation'), +('94.127.96.0', '94.127.103.255', 1585405952, 1585407999, 'GB', 'United Kingdom'), +('94.127.104.0', '94.127.111.255', 1585408000, 1585410047, 'PL', 'Poland'), +('94.127.112.0', '94.127.119.255', 1585410048, 1585412095, 'GB', 'United Kingdom'), +('94.127.120.0', '94.127.127.255', 1585412096, 1585414143, 'NO', 'Norway'), +('94.127.128.0', '94.127.135.255', 1585414144, 1585416191, 'CZ', 'Czech Republic'), +('94.127.136.0', '94.127.159.255', 1585416192, 1585422335, 'RU', 'Russian Federation'), +('94.127.160.0', '94.127.167.255', 1585422336, 1585424383, 'ES', 'Spain'), +('94.127.168.0', '94.127.183.255', 1585424384, 1585428479, 'RU', 'Russian Federation'), +('94.127.184.0', '94.127.199.255', 1585428480, 1585432575, 'ES', 'Spain'), +('94.127.200.0', '94.127.207.255', 1585432576, 1585434623, 'RU', 'Russian Federation'), +('94.127.208.0', '94.127.215.255', 1585434624, 1585436671, 'JO', 'Jordan'), +('94.127.216.0', '94.127.223.255', 1585436672, 1585438719, 'RU', 'Russian Federation'), +('94.127.224.0', '94.127.231.255', 1585438720, 1585440767, 'DE', 'Germany'), +('94.127.232.0', '94.127.239.255', 1585440768, 1585442815, 'IT', 'Italy'), +('94.127.240.0', '94.127.255.255', 1585442816, 1585446911, 'RU', 'Russian Federation'), +('94.128.0.0', '94.129.255.255', 1585446912, 1585577983, 'KW', 'Kuwait'), +('94.130.0.0', '94.131.255.255', 1585577984, 1585709055, 'UA', 'Ukraine'), +('94.132.0.0', '94.133.255.255', 1585709056, 1585840127, 'PT', 'Portugal'), +('94.134.0.0', '94.135.255.255', 1585840128, 1585971199, 'DE', 'Germany'), +('94.136.0.0', '94.136.31.255', 1585971200, 1585979391, 'AT', 'Austria'), +('94.136.32.0', '94.136.63.255', 1585979392, 1585987583, 'GB', 'United Kingdom'), +('94.136.64.0', '94.136.65.255', 1585987584, 1585988095, 'SE', 'Sweden'), +('94.136.66.0', '94.136.66.7', 1585988096, 1585988103, 'IT', 'Italy'), +('94.136.66.8', '94.136.66.255', 1585988104, 1585988351, 'SE', 'Sweden'), +('94.136.67.0', '94.136.67.7', 1585988352, 1585988359, 'DE', 'Germany'), +('94.136.67.8', '94.136.74.255', 1585988360, 1585990399, 'SE', 'Sweden'), +('94.136.75.0', '94.136.75.255', 1585990400, 1585990655, 'NL', 'Netherlands'), +('94.136.76.0', '94.136.95.255', 1585990656, 1585995775, 'SE', 'Sweden'), +('94.136.96.0', '94.136.127.255', 1585995776, 1586003967, 'AT', 'Austria'), +('94.136.128.0', '94.136.159.255', 1586003968, 1586012159, 'SK', 'Slovakia'), +('94.136.160.0', '94.136.191.255', 1586012160, 1586020351, 'DE', 'Germany'), +('94.136.192.0', '94.136.223.255', 1586020352, 1586028543, 'RU', 'Russian Federation'), +('94.136.224.0', '94.136.255.255', 1586028544, 1586036735, 'GB', 'United Kingdom'), +('94.137.0.0', '94.137.95.255', 1586036736, 1586061311, 'RU', 'Russian Federation'), +('94.137.96.0', '94.137.127.255', 1586061312, 1586069503, 'HR', 'Croatia'), +('94.137.128.0', '94.137.159.255', 1586069504, 1586077695, 'DE', 'Germany'), +('94.137.160.0', '94.137.191.255', 1586077696, 1586085887, 'GE', 'Georgia'), +('94.137.192.0', '94.138.31.255', 1586085888, 1586110463, 'RU', 'Russian Federation'), +('94.138.32.0', '94.138.63.255', 1586110464, 1586118655, 'IT', 'Italy'), +('94.138.64.0', '94.138.95.255', 1586118656, 1586126847, 'DK', 'Denmark'), +('94.138.96.0', '94.138.101.255', 1586126848, 1586128383, 'CZ', 'Czech Republic'), +('94.138.102.0', '94.138.102.255', 1586128384, 1586128639, 'SK', 'Slovakia'), +('94.138.103.0', '94.138.127.255', 1586128640, 1586135039, 'CZ', 'Czech Republic'), +('94.138.128.0', '94.138.159.255', 1586135040, 1586143231, 'RU', 'Russian Federation'), +('94.138.160.0', '94.138.191.255', 1586143232, 1586151423, 'IT', 'Italy'), +('94.138.192.0', '94.138.223.255', 1586151424, 1586159615, 'TR', 'Turkey'), +('94.138.224.0', '94.138.255.255', 1586159616, 1586167807, 'MT', 'Malta'), +('94.139.0.0', '94.139.31.255', 1586167808, 1586175999, 'DE', 'Germany'), +('94.139.32.0', '94.139.63.255', 1586176000, 1586184191, 'BE', 'Belgium'), +('94.139.64.0', '94.139.95.255', 1586184192, 1586192383, 'NO', 'Norway'), +('94.139.96.0', '94.139.127.255', 1586192384, 1586200575, 'RU', 'Russian Federation'), +('94.139.128.0', '94.139.159.255', 1586200576, 1586208767, 'MD', 'Moldova, Republic of'), +('94.139.160.0', '94.139.191.255', 1586208768, 1586216959, 'IR', 'Iran, Islamic Republic of'), +('94.139.192.0', '94.139.223.255', 1586216960, 1586225151, 'BG', 'Bulgaria'), +('94.139.224.0', '94.139.255.255', 1586225152, 1586233343, 'RU', 'Russian Federation'), +('94.140.0.0', '94.140.31.255', 1586233344, 1586241535, 'FR', 'France'), +('94.140.32.0', '94.140.63.255', 1586241536, 1586249727, 'SE', 'Sweden'), +('94.140.64.0', '94.140.95.255', 1586249728, 1586257919, 'SI', 'Slovenia'), +('94.140.96.0', '94.140.127.255', 1586257920, 1586266111, 'LV', 'Latvia'), +('94.140.128.0', '94.140.159.255', 1586266112, 1586274303, 'RU', 'Russian Federation'), +('94.140.160.0', '94.140.191.255', 1586274304, 1586282495, 'BE', 'Belgium'), +('94.140.192.0', '94.140.255.255', 1586282496, 1586298879, 'RU', 'Russian Federation'), +('94.141.0.0', '94.141.31.255', 1586298880, 1586307071, 'IT', 'Italy'), +('94.141.32.0', '94.141.63.255', 1586307072, 1586315263, 'RU', 'Russian Federation'), +('94.141.64.0', '94.141.95.255', 1586315264, 1586323455, 'UZ', 'Uzbekistan'), +('94.141.96.0', '94.141.127.255', 1586323456, 1586331647, 'RU', 'Russian Federation'), +('94.141.128.0', '94.141.159.255', 1586331648, 1586339839, 'PL', 'Poland'), +('94.141.160.0', '94.141.191.255', 1586339840, 1586348031, 'RU', 'Russian Federation'), +('94.141.192.0', '94.141.223.255', 1586348032, 1586356223, 'SY', 'Syrian Arab Republic'), +('94.141.224.0', '94.142.31.255', 1586356224, 1586372607, 'RU', 'Russian Federation'), +('94.142.32.0', '94.142.63.255', 1586372608, 1586380799, 'JO', 'Jordan'), +('94.142.64.0', '94.142.95.255', 1586380800, 1586388991, 'GB', 'United Kingdom'), +('94.142.96.0', '94.142.127.255', 1586388992, 1586397183, 'ES', 'Spain'), +('94.142.128.0', '94.142.135.255', 1586397184, 1586399231, 'LV', 'Latvia'), +('94.142.136.0', '94.142.143.255', 1586399232, 1586401279, 'RU', 'Russian Federation'), +('94.142.144.0', '94.142.151.255', 1586401280, 1586403327, 'IT', 'Italy'), +('94.142.152.0', '94.142.159.255', 1586403328, 1586405375, 'IS', 'Iceland'), +('94.142.160.0', '94.142.167.255', 1586405376, 1586407423, 'AT', 'Austria'), +('94.142.168.0', '94.142.175.255', 1586407424, 1586409471, 'GB', 'United Kingdom'), +('94.142.176.0', '94.142.183.255', 1586409472, 1586411519, 'IT', 'Italy'), +('94.142.184.0', '94.142.184.255', 1586411520, 1586411775, 'GB', 'United Kingdom'), +('94.142.185.0', '94.142.186.255', 1586411776, 1586412287, 'US', 'United States'), +('94.142.187.0', '94.142.187.255', 1586412288, 1586412543, 'HK', 'Hong Kong'), +('94.142.188.0', '94.142.191.255', 1586412544, 1586413567, 'GB', 'United Kingdom'), +('94.142.192.0', '94.142.199.255', 1586413568, 1586415615, 'IT', 'Italy'), +('94.142.200.0', '94.142.201.7', 1586415616, 1586415879, 'ES', 'Spain'), +('94.142.201.8', '94.142.207.255', 1586415880, 1586417663, 'AD', 'Andorra'), +('94.142.208.0', '94.142.215.255', 1586417664, 1586419711, 'NL', 'Netherlands'), +('94.142.216.0', '94.142.223.255', 1586419712, 1586421759, 'DE', 'Germany'), +('94.142.224.0', '94.142.231.255', 1586421760, 1586423807, 'SE', 'Sweden'), +('94.142.232.0', '94.142.239.255', 1586423808, 1586425855, 'CZ', 'Czech Republic'), +('94.142.240.0', '94.142.247.255', 1586425856, 1586427903, 'NL', 'Netherlands'), +('94.142.248.0', '94.142.248.255', 1586427904, 1586428159, 'CH', 'Switzerland'), +('94.142.249.0', '94.142.255.255', 1586428160, 1586429951, 'FR', 'France'), +('94.143.0.0', '94.143.7.255', 1586429952, 1586431999, 'CH', 'Switzerland'), +('94.143.8.0', '94.143.15.255', 1586432000, 1586434047, 'DK', 'Denmark'), +('94.143.16.0', '94.143.23.255', 1586434048, 1586436095, 'BE', 'Belgium'), +('94.143.24.0', '94.143.31.255', 1586436096, 1586438143, 'ES', 'Spain'), +('94.143.32.0', '94.143.63.255', 1586438144, 1586446335, 'RU', 'Russian Federation'), +('94.143.64.0', '94.143.71.255', 1586446336, 1586448383, 'NO', 'Norway'), +('94.143.72.0', '94.143.79.255', 1586448384, 1586450431, 'ES', 'Spain'), +('94.143.80.0', '94.143.87.255', 1586450432, 1586452479, 'RU', 'Russian Federation'), +('94.143.88.0', '94.143.95.255', 1586452480, 1586454527, 'CH', 'Switzerland'), +('94.143.96.0', '94.143.103.255', 1586454528, 1586456575, 'IT', 'Italy'), +('94.143.104.0', '94.143.111.255', 1586456576, 1586458623, 'GB', 'United Kingdom'), +('94.143.112.0', '94.143.119.255', 1586458624, 1586460671, 'FR', 'France'), +('94.143.120.0', '94.143.127.255', 1586460672, 1586462719, 'GB', 'United Kingdom'), +('94.143.128.0', '94.143.135.255', 1586462720, 1586464767, 'RU', 'Russian Federation'), +('94.143.136.0', '94.143.143.255', 1586464768, 1586466815, 'ES', 'Spain'), +('94.143.144.0', '94.143.151.255', 1586466816, 1586468863, 'RU', 'Russian Federation'), +('94.143.152.0', '94.143.159.255', 1586468864, 1586470911, 'IT', 'Italy'), +('94.143.160.0', '94.143.167.255', 1586470912, 1586472959, 'GB', 'United Kingdom'), +('94.143.168.0', '94.143.175.255', 1586472960, 1586475007, 'CZ', 'Czech Republic'), +('94.143.176.0', '94.143.183.255', 1586475008, 1586477055, 'GR', 'Greece'), +('94.143.184.0', '94.143.191.255', 1586477056, 1586479103, 'BE', 'Belgium'), +('94.143.192.0', '94.143.199.255', 1586479104, 1586481151, 'KG', 'Kyrgyzstan'), +('94.143.200.0', '94.143.207.255', 1586481152, 1586483199, 'ES', 'Spain'), +('94.143.208.0', '94.143.215.255', 1586483200, 1586485247, 'NL', 'Netherlands'), +('94.143.216.0', '94.143.223.255', 1586485248, 1586487295, 'FR', 'France'), +('94.143.224.0', '94.143.231.255', 1586487296, 1586489343, 'SA', 'Saudi Arabia'), +('94.143.232.0', '94.143.239.255', 1586489344, 1586491391, 'CZ', 'Czech Republic'), +('94.143.240.0', '94.143.247.255', 1586491392, 1586493439, 'RU', 'Russian Federation'), +('94.143.248.0', '94.143.255.255', 1586493440, 1586495487, 'GB', 'United Kingdom'), +('94.144.0.0', '94.151.255.255', 1586495488, 1587019775, 'DK', 'Denmark'), +('94.152.0.0', '94.152.255.255', 1587019776, 1587085311, 'PL', 'Poland'), +('94.153.0.0', '94.154.127.255', 1587085312, 1587183615, 'UA', 'Ukraine'), +('94.154.128.0', '94.154.191.255', 1587183616, 1587199999, 'RU', 'Russian Federation'), +('94.154.192.0', '94.154.255.255', 1587200000, 1587216383, 'UA', 'Ukraine'), +('94.155.0.0', '94.156.255.255', 1587216384, 1587347455, 'BG', 'Bulgaria'), +('94.157.0.0', '94.157.255.255', 1587347456, 1587412991, 'NL', 'Netherlands'), +('94.158.0.0', '94.158.15.255', 1587412992, 1587417087, 'RU', 'Russian Federation'), +('94.158.16.0', '94.158.47.255', 1587417088, 1587425279, 'UA', 'Ukraine'), +('94.158.48.0', '94.158.63.255', 1587425280, 1587429375, 'UZ', 'Uzbekistan'), +('94.158.64.0', '94.158.95.255', 1587429376, 1587437567, 'UA', 'Ukraine'), +('94.158.96.0', '94.158.127.255', 1587437568, 1587445759, 'RU', 'Russian Federation'), +('94.158.128.0', '94.158.143.255', 1587445760, 1587449855, 'PL', 'Poland'), +('94.158.144.0', '94.158.159.255', 1587449856, 1587453951, 'UA', 'Ukraine'), +('94.158.160.0', '94.158.223.255', 1587453952, 1587470335, 'RU', 'Russian Federation'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('94.158.224.0', '94.158.239.255', 1587470336, 1587474431, 'PL', 'Poland'), +('94.159.0.0', '94.159.127.255', 1587478528, 1587511295, 'RU', 'Russian Federation'), +('94.159.128.0', '94.159.255.255', 1587511296, 1587544063, 'IL', 'Israel'), +('94.160.0.0', '94.167.255.255', 1587544064, 1588068351, 'IT', 'Italy'), +('94.168.0.0', '94.175.255.255', 1588068352, 1588592639, 'GB', 'United Kingdom'), +('94.176.0.0', '94.176.111.255', 1588592640, 1588621311, 'RO', 'Romania'), +('94.176.112.0', '94.176.127.255', 1588621312, 1588625407, 'MD', 'Moldova, Republic of'), +('94.176.128.0', '94.177.255.255', 1588625408, 1588723711, 'RO', 'Romania'), +('94.178.0.0', '94.179.255.255', 1588723712, 1588854783, 'UA', 'Ukraine'), +('94.180.0.0', '94.181.255.255', 1588854784, 1588985855, 'RU', 'Russian Federation'), +('94.182.0.0', '94.184.127.255', 1588985856, 1589149695, 'IR', 'Iran, Islamic Republic of'), +('94.185.0.0', '94.185.127.255', 1589182464, 1589215231, 'RU', 'Russian Federation'), +('94.185.128.0', '94.185.255.255', 1589215232, 1589247999, 'GB', 'United Kingdom'), +('94.186.0.0', '94.186.127.255', 1589248000, 1589280767, 'NO', 'Norway'), +('94.186.128.0', '94.186.255.255', 1589280768, 1589313535, 'DE', 'Germany'), +('94.187.0.0', '94.187.127.255', 1589313536, 1589346303, 'LB', 'Lebanon'), +('94.187.128.0', '94.187.255.255', 1589346304, 1589379071, 'KW', 'Kuwait'), +('94.188.0.0', '94.188.127.255', 1589379072, 1589411839, 'RU', 'Russian Federation'), +('94.188.128.0', '94.188.255.255', 1589411840, 1589444607, 'IL', 'Israel'), +('94.189.0.0', '94.189.127.255', 1589444608, 1589477375, 'DK', 'Denmark'), +('94.189.128.0', '94.189.255.255', 1589477376, 1589510143, 'RS', 'Serbia'), +('94.190.0.0', '94.190.127.255', 1589510144, 1589542911, 'RU', 'Russian Federation'), +('94.190.128.0', '94.190.255.255', 1589542912, 1589575679, 'BG', 'Bulgaria'), +('94.191.0.0', '94.191.127.255', 1589575680, 1589608447, 'RU', 'Russian Federation'), +('94.191.128.0', '94.191.207.255', 1589608448, 1589628927, 'SE', 'Sweden'), +('94.191.208.0', '94.191.255.255', 1589628928, 1589641215, 'DK', 'Denmark'), +('94.192.0.0', '94.197.255.255', 1589641216, 1590034431, 'GB', 'United Kingdom'), +('94.198.0.0', '94.198.7.255', 1590034432, 1590036479, 'RU', 'Russian Federation'), +('94.198.8.0', '94.198.15.255', 1590036480, 1590038527, 'GB', 'United Kingdom'), +('94.198.16.0', '94.198.55.255', 1590038528, 1590048767, 'RU', 'Russian Federation'), +('94.198.56.0', '94.198.63.255', 1590048768, 1590050815, 'DE', 'Germany'), +('94.198.64.0', '94.198.71.255', 1590050816, 1590052863, 'SE', 'Sweden'), +('94.198.72.0', '94.198.79.255', 1590052864, 1590054911, 'IT', 'Italy'), +('94.198.80.0', '94.198.87.255', 1590054912, 1590056959, 'GB', 'United Kingdom'), +('94.198.88.0', '94.198.95.255', 1590056960, 1590059007, 'ES', 'Spain'), +('94.198.96.0', '94.198.100.191', 1590059008, 1590060223, 'IT', 'Italy'), +('94.198.100.192', '94.198.100.223', 1590060224, 1590060255, 'CH', 'Switzerland'), +('94.198.100.224', '94.198.103.255', 1590060256, 1590061055, 'IT', 'Italy'), +('94.198.104.0', '94.198.111.255', 1590061056, 1590063103, 'RU', 'Russian Federation'), +('94.198.112.0', '94.198.119.255', 1590063104, 1590065151, 'CZ', 'Czech Republic'), +('94.198.120.0', '94.198.127.255', 1590065152, 1590067199, 'IE', 'Ireland'), +('94.198.128.0', '94.198.135.255', 1590067200, 1590069247, 'RU', 'Russian Federation'), +('94.198.136.0', '94.198.143.255', 1590069248, 1590071295, 'AT', 'Austria'), +('94.198.144.0', '94.198.151.255', 1590071296, 1590073343, 'MT', 'Malta'), +('94.198.152.0', '94.198.159.255', 1590073344, 1590075391, 'NL', 'Netherlands'), +('94.198.160.0', '94.198.167.63', 1590075392, 1590077247, 'BE', 'Belgium'), +('94.198.167.64', '94.198.167.95', 1590077248, 1590077279, 'NL', 'Netherlands'), +('94.198.167.96', '94.198.167.255', 1590077280, 1590077439, 'BE', 'Belgium'), +('94.198.168.0', '94.198.175.255', 1590077440, 1590079487, 'GB', 'United Kingdom'), +('94.198.176.0', '94.198.183.255', 1590079488, 1590081535, 'FR', 'France'), +('94.198.184.0', '94.198.191.255', 1590081536, 1590083583, 'GB', 'United Kingdom'), +('94.198.192.0', '94.198.199.255', 1590083584, 1590085631, 'RU', 'Russian Federation'), +('94.198.200.0', '94.198.207.255', 1590085632, 1590087679, 'FR', 'France'), +('94.198.208.0', '94.198.215.255', 1590087680, 1590089727, 'IT', 'Italy'), +('94.198.216.0', '94.198.223.255', 1590089728, 1590091775, 'RU', 'Russian Federation'), +('94.198.224.0', '94.198.231.255', 1590091776, 1590093823, 'CZ', 'Czech Republic'), +('94.198.232.0', '94.198.239.255', 1590093824, 1590095871, 'RU', 'Russian Federation'), +('94.198.240.0', '94.198.247.255', 1590095872, 1590097919, 'CZ', 'Czech Republic'), +('94.198.248.0', '94.198.255.255', 1590097920, 1590099967, 'CH', 'Switzerland'), +('94.199.0.0', '94.199.7.255', 1590099968, 1590102015, 'RU', 'Russian Federation'), +('94.199.8.0', '94.199.15.255', 1590102016, 1590104063, 'IT', 'Italy'), +('94.199.16.0', '94.199.23.255', 1590104064, 1590106111, 'TJ', 'Tajikistan'), +('94.199.24.0', '94.199.31.255', 1590106112, 1590108159, 'FI', 'Finland'), +('94.199.32.0', '94.199.39.255', 1590108160, 1590110207, 'TR', 'Turkey'), +('94.199.40.0', '94.199.47.255', 1590110208, 1590112255, 'CZ', 'Czech Republic'), +('94.199.48.0', '94.199.55.255', 1590112256, 1590114303, 'HU', 'Hungary'), +('94.199.56.0', '94.199.63.255', 1590114304, 1590116351, 'FI', 'Finland'), +('94.199.64.0', '94.199.79.255', 1590116352, 1590120447, 'RU', 'Russian Federation'), +('94.199.80.0', '94.199.87.255', 1590120448, 1590122495, 'IT', 'Italy'), +('94.199.88.0', '94.199.95.255', 1590122496, 1590124543, 'DE', 'Germany'), +('94.199.96.0', '94.199.103.255', 1590124544, 1590126591, 'CH', 'Switzerland'), +('94.199.104.0', '94.199.111.255', 1590126592, 1590128639, 'RU', 'Russian Federation'), +('94.199.112.0', '94.199.119.255', 1590128640, 1590130687, 'FI', 'Finland'), +('94.199.120.0', '94.199.127.255', 1590130688, 1590132735, 'FR', 'France'), +('94.199.128.0', '94.199.135.255', 1590132736, 1590134783, 'NO', 'Norway'), +('94.199.136.0', '94.199.143.255', 1590134784, 1590136831, 'ES', 'Spain'), +('94.199.144.0', '94.199.151.255', 1590136832, 1590138879, 'GB', 'United Kingdom'), +('94.199.152.0', '94.199.159.255', 1590138880, 1590140927, 'CZ', 'Czech Republic'), +('94.199.160.0', '94.199.167.255', 1590140928, 1590142975, 'UA', 'Ukraine'), +('94.199.168.0', '94.199.175.255', 1590142976, 1590145023, 'AT', 'Austria'), +('94.199.176.0', '94.199.183.255', 1590145024, 1590147071, 'HU', 'Hungary'), +('94.199.184.0', '94.199.191.255', 1590147072, 1590149119, 'GB', 'United Kingdom'), +('94.199.192.0', '94.199.199.255', 1590149120, 1590151167, 'CZ', 'Czech Republic'), +('94.199.200.0', '94.199.207.255', 1590151168, 1590153215, 'TR', 'Turkey'), +('94.199.208.0', '94.199.223.255', 1590153216, 1590157311, 'RU', 'Russian Federation'), +('94.199.224.0', '94.199.231.255', 1590157312, 1590159359, 'IE', 'Ireland'), +('94.199.232.0', '94.199.239.255', 1590159360, 1590161407, 'GB', 'United Kingdom'), +('94.199.240.0', '94.199.247.255', 1590161408, 1590163455, 'DE', 'Germany'), +('94.199.248.0', '94.199.255.255', 1590163456, 1590165503, 'NL', 'Netherlands'), +('94.200.0.0', '94.207.255.255', 1590165504, 1590689791, 'AE', 'United Arab Emirates'), +('94.208.0.0', '94.215.255.255', 1590689792, 1591214079, 'NL', 'Netherlands'), +('94.216.0.0', '94.223.255.255', 1591214080, 1591738367, 'DE', 'Germany'), +('94.224.0.0', '94.227.255.255', 1591738368, 1592000511, 'BE', 'Belgium'), +('94.228.0.0', '94.228.15.255', 1592000512, 1592004607, 'ES', 'Spain'), +('94.228.16.0', '94.228.31.255', 1592004608, 1592008703, 'AM', 'Armenia'), +('94.228.32.0', '94.228.47.255', 1592008704, 1592012799, 'GB', 'United Kingdom'), +('94.228.48.0', '94.228.63.255', 1592012800, 1592016895, 'CH', 'Switzerland'), +('94.228.64.0', '94.228.79.255', 1592016896, 1592020991, 'GB', 'United Kingdom'), +('94.228.80.0', '94.228.95.255', 1592020992, 1592025087, 'SK', 'Slovakia'), +('94.228.96.0', '94.228.111.255', 1592025088, 1592029183, 'DE', 'Germany'), +('94.228.112.0', '94.228.127.255', 1592029184, 1592033279, 'RU', 'Russian Federation'), +('94.228.128.0', '94.228.143.255', 1592033280, 1592037375, 'NL', 'Netherlands'), +('94.228.144.0', '94.228.159.255', 1592037376, 1592041471, 'CH', 'Switzerland'), +('94.228.160.0', '94.228.175.255', 1592041472, 1592045567, 'RU', 'Russian Federation'), +('94.228.176.0', '94.228.191.255', 1592045568, 1592049663, 'FR', 'France'), +('94.228.192.0', '94.228.207.255', 1592049664, 1592053759, 'RU', 'Russian Federation'), +('94.228.208.0', '94.228.208.255', 1592053760, 1592054015, 'NL', 'Netherlands'), +('94.228.209.0', '94.228.209.255', 1592054016, 1592054271, 'AE', 'United Arab Emirates'), +('94.228.210.0', '94.228.210.255', 1592054272, 1592054527, 'NL', 'Netherlands'), +('94.228.211.0', '94.228.211.255', 1592054528, 1592054783, 'US', 'United States'), +('94.228.212.0', '94.228.223.255', 1592054784, 1592057855, 'NL', 'Netherlands'), +('94.228.224.0', '94.228.239.255', 1592057856, 1592061951, 'RS', 'Serbia'), +('94.228.240.0', '94.228.255.255', 1592061952, 1592066047, 'RU', 'Russian Federation'), +('94.229.0.0', '94.229.2.255', 1592066048, 1592066815, 'US', 'United States'), +('94.229.3.0', '94.229.14.255', 1592066816, 1592069887, 'CY', 'Cyprus'), +('94.229.15.0', '94.229.15.63', 1592069888, 1592069951, 'RU', 'Russian Federation'), +('94.229.15.64', '94.229.15.255', 1592069952, 1592070143, 'CY', 'Cyprus'), +('94.229.16.0', '94.229.31.255', 1592070144, 1592074239, 'RU', 'Russian Federation'), +('94.229.32.0', '94.229.47.255', 1592074240, 1592078335, 'SK', 'Slovakia'), +('94.229.48.0', '94.229.63.255', 1592078336, 1592082431, 'NL', 'Netherlands'), +('94.229.64.0', '94.229.65.159', 1592082432, 1592082847, 'GB', 'United Kingdom'), +('94.229.65.160', '94.229.65.191', 1592082848, 1592082879, 'RU', 'Russian Federation'), +('94.229.65.192', '94.229.67.127', 1592082880, 1592083327, 'GB', 'United Kingdom'), +('94.229.67.128', '94.229.67.255', 1592083328, 1592083455, 'RU', 'Russian Federation'), +('94.229.68.0', '94.229.74.31', 1592083456, 1592085023, 'GB', 'United Kingdom'), +('94.229.74.32', '94.229.74.47', 1592085024, 1592085039, 'ES', 'Spain'), +('94.229.74.48', '94.229.79.255', 1592085040, 1592086527, 'GB', 'United Kingdom'), +('94.229.80.0', '94.229.82.255', 1592086528, 1592087295, 'CZ', 'Czech Republic'), +('94.229.83.0', '94.229.85.255', 1592087296, 1592088063, 'PL', 'Poland'), +('94.229.86.0', '94.229.95.255', 1592088064, 1592090623, 'CZ', 'Czech Republic'), +('94.229.96.0', '94.229.111.255', 1592090624, 1592094719, 'RU', 'Russian Federation'), +('94.229.112.0', '94.229.127.255', 1592094720, 1592098815, 'RS', 'Serbia'), +('94.229.128.0', '94.229.143.255', 1592098816, 1592102911, 'GB', 'United Kingdom'), +('94.229.144.0', '94.229.159.255', 1592102912, 1592107007, 'PT', 'Portugal'), +('94.229.160.0', '94.229.175.255', 1592107008, 1592111103, 'GB', 'United Kingdom'), +('94.229.176.0', '94.229.191.255', 1592111104, 1592115199, 'DE', 'Germany'), +('94.229.192.0', '94.229.207.255', 1592115200, 1592119295, 'ES', 'Spain'), +('94.229.208.0', '94.229.223.255', 1592119296, 1592123391, 'PL', 'Poland'), +('94.229.224.0', '94.230.15.255', 1592123392, 1592135679, 'RU', 'Russian Federation'), +('94.230.16.0', '94.230.31.255', 1592135680, 1592139775, 'PL', 'Poland'), +('94.230.32.0', '94.230.47.255', 1592139776, 1592143871, 'RU', 'Russian Federation'), +('94.230.48.0', '94.230.63.255', 1592143872, 1592147967, 'DE', 'Germany'), +('94.230.64.0', '94.230.79.255', 1592147968, 1592152063, 'IT', 'Italy'), +('94.230.80.0', '94.230.95.255', 1592152064, 1592156159, 'IL', 'Israel'), +('94.230.96.0', '94.230.111.255', 1592156160, 1592160255, 'IE', 'Ireland'), +('94.230.112.0', '94.230.143.255', 1592160256, 1592168447, 'RU', 'Russian Federation'), +('94.230.144.0', '94.230.159.255', 1592168448, 1592172543, 'CZ', 'Czech Republic'), +('94.230.160.0', '94.230.175.255', 1592172544, 1592176639, 'RU', 'Russian Federation'), +('94.230.176.0', '94.230.191.255', 1592176640, 1592180735, 'RS', 'Serbia'), +('94.230.192.0', '94.230.207.255', 1592180736, 1592184831, 'UA', 'Ukraine'), +('94.230.208.0', '94.230.223.255', 1592184832, 1592188927, 'CH', 'Switzerland'), +('94.230.224.0', '94.230.239.255', 1592188928, 1592193023, 'UZ', 'Uzbekistan'), +('94.231.0.0', '94.231.15.255', 1592197120, 1592201215, 'PL', 'Poland'), +('94.231.16.0', '94.231.31.255', 1592201216, 1592205311, 'RU', 'Russian Federation'), +('94.231.32.0', '94.231.47.255', 1592205312, 1592209407, 'UA', 'Ukraine'), +('94.231.48.0', '94.231.63.255', 1592209408, 1592213503, 'PL', 'Poland'), +('94.231.64.0', '94.231.79.255', 1592213504, 1592217599, 'UA', 'Ukraine'), +('94.231.80.0', '94.231.95.255', 1592217600, 1592221695, 'CH', 'Switzerland'), +('94.231.96.0', '94.231.111.255', 1592221696, 1592225791, 'DK', 'Denmark'), +('94.231.112.0', '94.231.175.255', 1592225792, 1592242175, 'RU', 'Russian Federation'), +('94.231.176.0', '94.231.191.255', 1592242176, 1592246271, 'UA', 'Ukraine'), +('94.231.192.0', '94.231.223.255', 1592246272, 1592254463, 'RU', 'Russian Federation'), +('94.231.224.0', '94.231.239.255', 1592254464, 1592258559, 'PL', 'Poland'), +('94.231.240.0', '94.231.255.255', 1592258560, 1592262655, 'NL', 'Netherlands'), +('94.232.0.0', '94.232.31.255', 1592262656, 1592270847, 'RU', 'Russian Federation'), +('94.232.32.0', '94.232.39.255', 1592270848, 1592272895, 'PL', 'Poland'), +('94.232.40.0', '94.232.71.255', 1592272896, 1592281087, 'RU', 'Russian Federation'), +('94.232.72.0', '94.232.79.255', 1592281088, 1592283135, 'UA', 'Ukraine'), +('94.232.80.0', '94.232.87.255', 1592283136, 1592285183, 'GR', 'Greece'), +('94.232.88.0', '94.232.95.255', 1592285184, 1592287231, 'RU', 'Russian Federation'), +('94.232.96.0', '94.232.103.255', 1592287232, 1592289279, 'RO', 'Romania'), +('94.232.104.0', '94.232.111.255', 1592289280, 1592291327, 'RU', 'Russian Federation'), +('94.232.112.0', '94.232.119.255', 1592291328, 1592293375, 'NL', 'Netherlands'), +('94.232.120.0', '94.232.143.255', 1592293376, 1592299519, 'RU', 'Russian Federation'), +('94.232.144.0', '94.232.159.255', 1592299520, 1592303615, 'PL', 'Poland'), +('94.232.160.0', '94.232.167.255', 1592303616, 1592305663, 'NL', 'Netherlands'), +('94.232.168.0', '94.232.175.255', 1592305664, 1592307711, 'IR', 'Iran, Islamic Republic of'), +('94.232.176.0', '94.232.183.255', 1592307712, 1592309759, 'UA', 'Ukraine'), +('94.232.184.0', '94.232.191.255', 1592309760, 1592311807, 'RU', 'Russian Federation'), +('94.232.192.0', '94.232.199.255', 1592311808, 1592313855, 'DE', 'Germany'), +('94.232.200.0', '94.232.207.255', 1592313856, 1592315903, 'RU', 'Russian Federation'), +('94.232.208.0', '94.232.215.255', 1592315904, 1592317951, 'UA', 'Ukraine'), +('94.232.216.0', '94.232.223.255', 1592317952, 1592319999, 'PL', 'Poland'), +('94.232.224.0', '94.232.231.255', 1592320000, 1592322047, 'LT', 'Lithuania'), +('94.232.232.0', '94.232.239.255', 1592322048, 1592324095, 'RU', 'Russian Federation'), +('94.232.240.0', '94.232.247.255', 1592324096, 1592326143, 'KZ', 'Kazakstan'), +('94.232.248.0', '94.232.255.255', 1592326144, 1592328191, 'UA', 'Ukraine'), +('94.233.0.0', '94.233.255.255', 1592328192, 1592393727, 'RU', 'Russian Federation'), +('94.234.0.0', '94.234.255.255', 1592393728, 1592459263, 'SE', 'Sweden'), +('94.235.0.0', '94.235.255.255', 1592459264, 1592524799, 'GE', 'Georgia'), +('94.236.0.0', '94.236.127.255', 1592524800, 1592557567, 'GB', 'United Kingdom'), +('94.236.128.0', '94.236.255.255', 1592557568, 1592590335, 'BG', 'Bulgaria'), +('94.237.0.0', '94.237.127.255', 1592590336, 1592623103, 'FI', 'Finland'), +('94.237.128.0', '94.237.255.255', 1592623104, 1592655871, 'RU', 'Russian Federation'), +('94.238.0.0', '94.239.255.255', 1592655872, 1592786943, 'FR', 'France'), +('94.240.0.0', '94.240.63.255', 1592786944, 1592803327, 'PL', 'Poland'), +('94.240.64.0', '94.240.127.255', 1592803328, 1592819711, 'RU', 'Russian Federation'), +('94.240.128.0', '94.240.191.255', 1592819712, 1592836095, 'UA', 'Ukraine'), +('94.240.192.0', '94.240.255.255', 1592836096, 1592852479, 'GE', 'Georgia'), +('94.241.0.0', '94.241.63.255', 1592852480, 1592868863, 'RU', 'Russian Federation'), +('94.241.64.0', '94.241.127.255', 1592868864, 1592885247, 'CZ', 'Czech Republic'), +('94.241.128.0', '94.241.191.255', 1592885248, 1592901631, 'IR', 'Iran, Islamic Republic of'), +('94.241.192.0', '94.242.63.255', 1592901632, 1592934399, 'RU', 'Russian Federation'), +('94.242.64.0', '94.242.127.255', 1592934400, 1592950783, 'CZ', 'Czech Republic'), +('94.242.128.0', '94.242.191.255', 1592950784, 1592967167, 'RU', 'Russian Federation'), +('94.242.192.0', '94.242.255.255', 1592967168, 1592983551, 'LU', 'Luxembourg'), +('94.243.0.0', '94.243.63.255', 1592983552, 1592999935, 'RU', 'Russian Federation'), +('94.243.64.0', '94.243.127.255', 1592999936, 1593016319, 'MD', 'Moldova, Republic of'), +('94.243.128.0', '94.243.255.255', 1593016320, 1593049087, 'RU', 'Russian Federation'), +('94.244.0.0', '94.244.63.255', 1593049088, 1593065471, 'UA', 'Ukraine'), +('94.244.128.0', '94.244.191.255', 1593081856, 1593098239, 'UA', 'Ukraine'), +('94.244.192.0', '94.244.255.255', 1593098240, 1593114623, 'CH', 'Switzerland'), +('94.245.0.0', '94.245.63.255', 1593114624, 1593131007, 'SE', 'Sweden'), +('94.245.64.0', '94.245.127.255', 1593131008, 1593147391, 'GB', 'United Kingdom'), +('94.245.128.0', '94.245.191.255', 1593147392, 1593163775, 'RU', 'Russian Federation'), +('94.245.192.0', '94.245.255.255', 1593163776, 1593180159, 'AT', 'Austria'), +('94.246.0.0', '94.246.63.255', 1593180160, 1593196543, 'NO', 'Norway'), +('94.246.64.0', '94.246.119.255', 1593196544, 1593210879, 'SE', 'Sweden'), +('94.246.120.0', '94.246.121.255', 1593210880, 1593211391, 'NO', 'Norway'), +('94.246.122.0', '94.246.125.255', 1593211392, 1593212415, 'SE', 'Sweden'), +('94.246.126.0', '94.246.127.255', 1593212416, 1593212927, 'NO', 'Norway'), +('94.246.128.0', '94.246.191.255', 1593212928, 1593229311, 'PL', 'Poland'), +('94.246.192.0', '94.246.255.255', 1593229312, 1593245695, 'EE', 'Estonia'), +('94.247.0.0', '94.247.7.255', 1593245696, 1593247743, 'LV', 'Latvia'), +('94.247.8.0', '94.247.15.255', 1593247744, 1593249791, 'IT', 'Italy'), +('94.247.16.0', '94.247.23.255', 1593249792, 1593251839, 'RU', 'Russian Federation'), +('94.247.24.0', '94.247.31.255', 1593251840, 1593253887, 'FR', 'France'), +('94.247.32.0', '94.247.39.255', 1593253888, 1593255935, 'CZ', 'Czech Republic'), +('94.247.40.0', '94.247.47.255', 1593255936, 1593257983, 'DE', 'Germany'), +('94.247.48.0', '94.247.55.255', 1593257984, 1593260031, 'IE', 'Ireland'), +('94.247.56.0', '94.247.63.255', 1593260032, 1593262079, 'RU', 'Russian Federation'), +('94.247.64.0', '94.247.71.255', 1593262080, 1593264127, 'KZ', 'Kazakstan'), +('94.247.72.0', '94.247.79.255', 1593264128, 1593266175, 'NL', 'Netherlands'), +('94.247.80.0', '94.247.87.255', 1593266176, 1593268223, 'GB', 'United Kingdom'), +('94.247.88.0', '94.247.95.255', 1593268224, 1593270271, 'HU', 'Hungary'), +('94.247.96.0', '94.247.103.255', 1593270272, 1593272319, 'GB', 'United Kingdom'), +('94.247.104.0', '94.247.111.255', 1593272320, 1593274367, 'RU', 'Russian Federation'), +('94.247.112.0', '94.247.119.255', 1593274368, 1593276415, 'DE', 'Germany'), +('94.247.120.0', '94.247.127.255', 1593276416, 1593278463, 'RU', 'Russian Federation'), +('94.247.128.0', '94.247.135.255', 1593278464, 1593280511, 'KZ', 'Kazakstan'), +('94.247.136.0', '94.247.143.255', 1593280512, 1593282559, 'EE', 'Estonia'), +('94.247.144.0', '94.247.151.255', 1593282560, 1593284607, 'AT', 'Austria'), +('94.247.152.0', '94.247.159.255', 1593284608, 1593286655, 'GB', 'United Kingdom'), +('94.247.160.0', '94.247.167.255', 1593286656, 1593288703, 'FR', 'France'), +('94.247.168.0', '94.247.175.255', 1593288704, 1593290751, 'SE', 'Sweden'), +('94.247.176.0', '94.247.183.255', 1593290752, 1593292799, 'FR', 'France'), +('94.247.184.0', '94.247.191.255', 1593292800, 1593294847, 'IT', 'Italy'), +('94.247.192.0', '94.247.199.255', 1593294848, 1593296895, 'NL', 'Netherlands'), +('94.247.200.0', '94.247.207.255', 1593296896, 1593298943, 'RS', 'Serbia'), +('94.247.208.0', '94.247.215.255', 1593298944, 1593300991, 'RU', 'Russian Federation'), +('94.247.216.0', '94.247.223.255', 1593300992, 1593303039, 'CH', 'Switzerland'), +('94.247.224.0', '94.247.231.255', 1593303040, 1593305087, 'UA', 'Ukraine'), +('94.247.232.0', '94.247.239.255', 1593305088, 1593307135, 'FR', 'France'), +('94.247.240.0', '94.247.255.255', 1593307136, 1593311231, 'RU', 'Russian Federation'), +('94.248.0.0', '94.248.127.255', 1593311232, 1593343999, 'UA', 'Ukraine'), +('94.248.128.0', '94.248.255.255', 1593344000, 1593376767, 'HU', 'Hungary'), +('94.249.0.0', '94.249.127.255', 1593376768, 1593409535, 'JO', 'Jordan'), +('94.249.128.0', '94.249.154.39', 1593409536, 1593416231, 'DE', 'Germany'), +('94.249.154.40', '94.249.154.47', 1593416232, 1593416239, 'CH', 'Switzerland'), +('94.249.154.48', '94.249.255.255', 1593416240, 1593442303, 'DE', 'Germany'), +('94.250.0.0', '94.250.127.255', 1593442304, 1593475071, 'BA', 'Bosnia and Herzegovina'), +('94.250.128.0', '94.251.127.255', 1593475072, 1593540607, 'RU', 'Russian Federation'), +('94.251.128.0', '94.251.255.255', 1593540608, 1593573375, 'PL', 'Poland'), +('94.252.0.0', '94.252.127.255', 1593573376, 1593606143, 'LU', 'Luxembourg'), +('94.252.128.0', '94.252.255.255', 1593606144, 1593638911, 'SY', 'Syrian Arab Republic'), +('94.253.0.0', '94.253.127.255', 1593638912, 1593671679, 'RU', 'Russian Federation'), +('94.253.128.0', '94.253.255.255', 1593671680, 1593704447, 'HR', 'Croatia'), +('94.254.0.0', '94.254.1.255', 1593704448, 1593704959, 'SE', 'Sweden'), +('94.254.2.0', '94.254.3.255', 1593704960, 1593705471, 'NO', 'Norway'), +('94.254.4.0', '94.254.127.255', 1593705472, 1593737215, 'SE', 'Sweden'), +('94.254.128.0', '94.254.255.255', 1593737216, 1593769983, 'PL', 'Poland'), +('94.255.0.0', '94.255.127.255', 1593769984, 1593802751, 'RU', 'Russian Federation'), +('94.255.128.0', '94.255.255.255', 1593802752, 1593835519, 'SE', 'Sweden'), +('95.0.0.0', '95.15.255.255', 1593835520, 1594884095, 'TR', 'Turkey'), +('95.16.0.0', '95.23.255.255', 1594884096, 1595408383, 'ES', 'Spain'), +('95.24.0.0', '95.32.255.255', 1595408384, 1595998207, 'RU', 'Russian Federation'), +('95.33.0.0', '95.33.255.255', 1595998208, 1596063743, 'DE', 'Germany'), +('95.34.0.0', '95.34.255.255', 1596063744, 1596129279, 'NO', 'Norway'), +('95.35.0.0', '95.35.255.255', 1596129280, 1596194815, 'IL', 'Israel'), +('95.36.0.0', '95.36.255.255', 1596194816, 1596260351, 'NL', 'Netherlands'), +('95.37.0.0', '95.37.255.255', 1596260352, 1596325887, 'RU', 'Russian Federation'), +('95.38.0.0', '95.38.255.255', 1596325888, 1596391423, 'IR', 'Iran, Islamic Republic of'), +('95.39.0.0', '95.39.255.255', 1596391424, 1596456959, 'ES', 'Spain'), +('95.40.0.0', '95.41.255.255', 1596456960, 1596588031, 'PL', 'Poland'), +('95.42.0.0', '95.43.255.255', 1596588032, 1596719103, 'BG', 'Bulgaria'), +('95.44.0.0', '95.45.255.255', 1596719104, 1596850175, 'IE', 'Ireland'), +('95.46.0.0', '95.47.255.255', 1596850176, 1596981247, 'CZ', 'Czech Republic'), +('95.48.0.0', '95.51.255.255', 1596981248, 1597243391, 'PL', 'Poland'), +('95.52.0.0', '95.55.255.255', 1597243392, 1597505535, 'RU', 'Russian Federation'), +('95.56.0.0', '95.59.255.255', 1597505536, 1597767679, 'KZ', 'Kazakstan'), +('95.60.0.0', '95.63.255.255', 1597767680, 1598029823, 'ES', 'Spain'), +('95.64.0.0', '95.64.127.255', 1598029824, 1598062591, 'RO', 'Romania'), +('95.64.128.0', '95.64.255.255', 1598062592, 1598095359, 'RU', 'Russian Federation'), +('95.65.0.0', '95.65.127.255', 1598095360, 1598128127, 'MD', 'Moldova, Republic of'), +('95.65.128.0', '95.65.255.255', 1598128128, 1598160895, 'TR', 'Turkey'), +('95.66.0.0', '95.66.127.255', 1598160896, 1598193663, 'KW', 'Kuwait'), +('95.66.128.0', '95.66.255.255', 1598193664, 1598226431, 'RU', 'Russian Federation'), +('95.67.0.0', '95.67.127.255', 1598226432, 1598259199, 'UA', 'Ukraine'), +('95.67.128.0', '95.67.255.255', 1598259200, 1598291967, 'RU', 'Russian Federation'), +('95.68.0.0', '95.68.127.255', 1598291968, 1598324735, 'LV', 'Latvia'), +('95.68.128.0', '95.68.255.255', 1598324736, 1598357503, 'RU', 'Russian Federation'), +('95.69.0.0', '95.69.127.255', 1598357504, 1598390271, 'PT', 'Portugal'), +('95.69.128.0', '95.69.255.255', 1598390272, 1598423039, 'UA', 'Ukraine'), +('95.70.0.0', '95.70.127.255', 1598423040, 1598455807, 'RU', 'Russian Federation'), +('95.70.128.0', '95.70.255.255', 1598455808, 1598488575, 'TR', 'Turkey'), +('95.71.0.0', '95.73.255.255', 1598488576, 1598685183, 'RU', 'Russian Federation'), +('95.74.0.0', '95.75.255.255', 1598685184, 1598816255, 'IT', 'Italy'), +('95.76.0.0', '95.77.255.255', 1598816256, 1598947327, 'RO', 'Romania'), +('95.78.0.0', '95.79.255.255', 1598947328, 1599078399, 'RU', 'Russian Federation'), +('95.80.0.0', '95.80.63.255', 1599078400, 1599094783, 'SE', 'Sweden'), +('95.80.64.0', '95.80.127.255', 1599094784, 1599111167, 'RU', 'Russian Federation'), +('95.80.128.0', '95.80.191.255', 1599111168, 1599127551, 'IR', 'Iran, Islamic Republic of'), +('95.80.192.0', '95.80.255.255', 1599127552, 1599143935, 'CZ', 'Czech Republic'), +('95.81.0.0', '95.81.63.255', 1599143936, 1599160319, 'UA', 'Ukraine'), +('95.81.64.0', '95.81.127.255', 1599160320, 1599176703, 'IR', 'Iran, Islamic Republic of'), +('95.81.128.0', '95.81.191.255', 1599176704, 1599193087, 'FR', 'France'), +('95.81.192.0', '95.81.255.255', 1599193088, 1599209471, 'RU', 'Russian Federation'), +('95.82.0.0', '95.82.127.255', 1599209472, 1599242239, 'IR', 'Iran, Islamic Republic of'), +('95.82.128.0', '95.82.191.255', 1599242240, 1599258623, 'CZ', 'Czech Republic'), +('95.82.192.0', '95.83.191.255', 1599258624, 1599324159, 'RU', 'Russian Federation'), +('95.83.192.0', '95.83.255.255', 1599324160, 1599340543, 'IE', 'Ireland'), +('95.84.0.0', '95.84.63.255', 1599340544, 1599356927, 'RU', 'Russian Federation'), +('95.84.64.0', '95.84.127.255', 1599356928, 1599373311, 'BH', 'Bahrain'), +('95.84.128.0', '95.85.127.255', 1599373312, 1599438847, 'RU', 'Russian Federation'), +('95.85.128.0', '95.85.191.255', 1599438848, 1599455231, 'RS', 'Serbia'), +('95.85.192.0', '95.85.255.255', 1599455232, 1599471615, 'CZ', 'Czech Republic'), +('95.86.0.0', '95.86.63.255', 1599471616, 1599487999, 'MK', 'Macedonia'), +('95.86.64.0', '95.86.127.255', 1599488000, 1599504383, 'IL', 'Israel'), +('95.86.128.0', '95.86.191.255', 1599504384, 1599520767, 'AZ', 'Azerbaijan'), +('95.86.192.0', '95.86.255.255', 1599520768, 1599537151, 'RU', 'Russian Federation'), +('95.87.0.0', '95.87.63.255', 1599537152, 1599553535, 'BG', 'Bulgaria'), +('95.87.64.0', '95.87.127.255', 1599553536, 1599569919, 'RU', 'Russian Federation'), +('95.87.128.0', '95.87.191.255', 1599569920, 1599586303, 'SI', 'Slovenia'), +('95.87.192.0', '95.87.255.255', 1599586304, 1599602687, 'BG', 'Bulgaria'), +('95.88.0.0', '95.91.255.255', 1599602688, 1599864831, 'DE', 'Germany'), +('95.92.0.0', '95.95.255.255', 1599864832, 1600126975, 'PT', 'Portugal'), +('95.96.0.0', '95.99.255.255', 1600126976, 1600389119, 'NL', 'Netherlands'), +('95.100.0.0', '95.101.255.255', 1600389120, 1600520191, 'EU', 'Europe'), +('95.102.0.0', '95.103.255.255', 1600520192, 1600651263, 'SK', 'Slovakia'), +('95.104.0.0', '95.104.127.255', 1600651264, 1600684031, 'GE', 'Georgia'), +('95.104.128.0', '95.104.255.255', 1600684032, 1600716799, 'RU', 'Russian Federation'), +('95.105.0.0', '95.105.127.255', 1600716800, 1600749567, 'UA', 'Ukraine'), +('95.105.128.0', '95.105.255.255', 1600749568, 1600782335, 'SK', 'Slovakia'), +('95.106.0.0', '95.107.127.255', 1600782336, 1600880639, 'RU', 'Russian Federation'), +('95.107.128.0', '95.107.255.255', 1600880640, 1600913407, 'AL', 'Albania'), +('95.108.0.0', '95.108.127.255', 1600913408, 1600946175, 'PL', 'Poland'), +('95.108.128.0', '95.108.194.95', 1600946176, 1600963167, 'RU', 'Russian Federation'), +('95.108.194.96', '95.108.194.103', 1600963168, 1600963175, 'UA', 'Ukraine'), +('95.108.194.104', '95.108.194.111', 1600963176, 1600963183, 'RU', 'Russian Federation'), +('95.108.194.112', '95.108.194.119', 1600963184, 1600963191, 'BY', 'Belarus'), +('95.108.194.120', '95.108.194.127', 1600963192, 1600963199, 'KZ', 'Kazakstan'), +('95.108.194.128', '95.108.255.255', 1600963200, 1600978943, 'RU', 'Russian Federation'), +('95.109.0.0', '95.109.127.255', 1600978944, 1601011711, 'SE', 'Sweden'), +('95.109.128.0', '95.109.255.255', 1601011712, 1601044479, 'UA', 'Ukraine'), +('95.110.0.0', '95.110.127.255', 1601044480, 1601077247, 'RU', 'Russian Federation'), +('95.110.128.0', '95.110.255.255', 1601077248, 1601110015, 'IT', 'Italy'), +('95.111.0.0', '95.111.127.255', 1601110016, 1601142783, 'BG', 'Bulgaria'), +('95.111.128.0', '95.111.255.255', 1601142784, 1601175551, 'UA', 'Ukraine'), +('95.112.0.0', '95.127.255.255', 1601175552, 1602224127, 'DE', 'Germany'), +('95.128.0.0', '95.128.7.255', 1602224128, 1602226175, 'NL', 'Netherlands'), +('95.128.8.0', '95.128.15.255', 1602226176, 1602228223, 'GB', 'United Kingdom'), +('95.128.16.0', '95.128.23.255', 1602228224, 1602230271, 'DE', 'Germany'), +('95.128.24.0', '95.128.31.255', 1602230272, 1602232319, 'DK', 'Denmark'), +('95.128.32.0', '95.128.39.255', 1602232320, 1602234367, 'CH', 'Switzerland'), +('95.128.40.0', '95.128.40.127', 1602234368, 1602234495, 'GB', 'United Kingdom'), +('95.128.40.128', '95.128.40.159', 1602234496, 1602234527, 'FR', 'France'), +('95.128.40.160', '95.128.41.15', 1602234528, 1602234639, 'GB', 'United Kingdom'), +('95.128.41.16', '95.128.41.31', 1602234640, 1602234655, 'FR', 'France'), +('95.128.41.32', '95.128.55.255', 1602234656, 1602238463, 'GB', 'United Kingdom'), +('95.128.56.0', '95.128.63.255', 1602238464, 1602240511, 'TR', 'Turkey'), +('95.128.64.0', '95.128.71.255', 1602240512, 1602242559, 'BY', 'Belarus'), +('95.128.72.0', '95.128.79.255', 1602242560, 1602244607, 'FR', 'France'), +('95.128.80.0', '95.128.87.255', 1602244608, 1602246655, 'CH', 'Switzerland'), +('95.128.88.0', '95.128.95.255', 1602246656, 1602248703, 'NL', 'Netherlands'), +('95.128.96.0', '95.128.103.255', 1602248704, 1602250751, 'BE', 'Belgium'), +('95.128.104.0', '95.128.111.255', 1602250752, 1602252799, 'NO', 'Norway'), +('95.128.112.0', '95.128.119.255', 1602252800, 1602254847, 'SE', 'Sweden'), +('95.128.120.0', '95.128.121.255', 1602254848, 1602255359, 'HU', 'Hungary'), +('95.128.122.0', '95.128.122.255', 1602255360, 1602255615, 'US', 'United States'), +('95.128.123.0', '95.128.127.255', 1602255616, 1602256895, 'HU', 'Hungary'), +('95.128.128.0', '95.128.135.255', 1602256896, 1602258943, 'GB', 'United Kingdom'), +('95.128.136.0', '95.128.143.255', 1602258944, 1602260991, 'RU', 'Russian Federation'), +('95.128.144.0', '95.128.151.255', 1602260992, 1602263039, 'FR', 'France'), +('95.128.152.0', '95.128.159.255', 1602263040, 1602265087, 'ES', 'Spain'), +('95.128.160.0', '95.128.167.255', 1602265088, 1602267135, 'RU', 'Russian Federation'), +('95.128.168.0', '95.128.175.255', 1602267136, 1602269183, 'RO', 'Romania'), +('95.128.176.0', '95.128.183.255', 1602269184, 1602271231, 'RU', 'Russian Federation'), +('95.128.184.0', '95.128.191.255', 1602271232, 1602273279, 'MK', 'Macedonia'), +('95.128.192.0', '95.128.192.255', 1602273280, 1602273535, 'RU', 'Russian Federation'), +('95.128.193.0', '95.128.199.255', 1602273536, 1602275327, 'IE', 'Ireland'), +('95.128.200.0', '95.128.215.255', 1602275328, 1602279423, 'DE', 'Germany'), +('95.128.216.0', '95.128.223.255', 1602279424, 1602281471, 'GB', 'United Kingdom'), +('95.128.224.0', '95.128.231.255', 1602281472, 1602283519, 'RU', 'Russian Federation'), +('95.128.232.0', '95.128.239.255', 1602283520, 1602285567, 'HR', 'Croatia'), +('95.128.240.0', '95.128.247.255', 1602285568, 1602287615, 'RU', 'Russian Federation'), +('95.128.248.0', '95.128.255.255', 1602287616, 1602289663, 'DE', 'Germany'), +('95.129.0.0', '95.129.7.255', 1602289664, 1602291711, 'LB', 'Lebanon'), +('95.129.8.0', '95.129.15.255', 1602291712, 1602293759, 'SA', 'Saudi Arabia'), +('95.129.16.0', '95.129.23.255', 1602293760, 1602295807, 'RU', 'Russian Federation'), +('95.129.24.0', '95.129.31.255', 1602295808, 1602297855, 'NL', 'Netherlands'), +('95.129.32.0', '95.129.33.255', 1602297856, 1602298367, 'IL', 'Israel'), +('95.129.34.0', '95.129.35.255', 1602298368, 1602298879, 'MT', 'Malta'), +('95.129.36.0', '95.129.39.255', 1602298880, 1602299903, 'IL', 'Israel'), +('95.129.40.0', '95.129.47.255', 1602299904, 1602301951, 'DK', 'Denmark'), +('95.129.48.0', '95.129.55.255', 1602301952, 1602303999, 'DE', 'Germany'), +('95.129.56.0', '95.129.63.255', 1602304000, 1602306047, 'RU', 'Russian Federation'), +('95.129.64.0', '95.129.71.255', 1602306048, 1602308095, 'GB', 'United Kingdom'), +('95.129.72.0', '95.129.79.255', 1602308096, 1602310143, 'RU', 'Russian Federation'), +('95.129.80.0', '95.129.87.255', 1602310144, 1602312191, 'NL', 'Netherlands'), +('95.129.88.0', '95.129.95.255', 1602312192, 1602314239, 'RU', 'Russian Federation'), +('95.129.96.0', '95.129.103.255', 1602314240, 1602316287, 'CZ', 'Czech Republic'), +('95.129.104.0', '95.129.111.255', 1602316288, 1602318335, 'GB', 'United Kingdom'), +('95.129.112.0', '95.129.119.255', 1602318336, 1602320383, 'ES', 'Spain'), +('95.129.120.0', '95.129.135.255', 1602320384, 1602324479, 'NL', 'Netherlands'), +('95.129.136.0', '95.129.143.255', 1602324480, 1602326527, 'RU', 'Russian Federation'), +('95.129.144.0', '95.129.151.255', 1602326528, 1602328575, 'GB', 'United Kingdom'), +('95.129.152.0', '95.129.159.255', 1602328576, 1602330623, 'ES', 'Spain'), +('95.129.160.0', '95.129.183.255', 1602330624, 1602336767, 'RU', 'Russian Federation'), +('95.129.184.0', '95.129.191.255', 1602336768, 1602338815, 'GB', 'United Kingdom'), +('95.129.192.0', '95.129.199.255', 1602338816, 1602340863, 'EE', 'Estonia'), +('95.129.200.0', '95.129.207.255', 1602340864, 1602342911, 'AT', 'Austria'), +('95.129.208.0', '95.129.215.255', 1602342912, 1602344959, 'DE', 'Germany'), +('95.129.216.0', '95.129.223.255', 1602344960, 1602347007, 'ES', 'Spain'), +('95.129.224.0', '95.129.231.255', 1602347008, 1602349055, 'PL', 'Poland'), +('95.129.232.0', '95.129.239.255', 1602349056, 1602351103, 'RU', 'Russian Federation'), +('95.129.240.0', '95.129.247.255', 1602351104, 1602353151, 'CZ', 'Czech Republic'), +('95.129.248.0', '95.129.255.255', 1602353152, 1602355199, 'RU', 'Russian Federation'), +('95.130.0.0', '95.130.7.255', 1602355200, 1602357247, 'GB', 'United Kingdom'), +('95.130.8.0', '95.130.15.255', 1602357248, 1602359295, 'FR', 'France'), +('95.130.16.0', '95.130.23.255', 1602359296, 1602361343, 'DE', 'Germany'), +('95.130.24.0', '95.130.31.255', 1602361344, 1602363391, 'FI', 'Finland'), +('95.130.32.0', '95.130.39.255', 1602363392, 1602365439, 'LV', 'Latvia'), +('95.130.40.0', '95.130.47.255', 1602365440, 1602367487, 'BE', 'Belgium'), +('95.130.48.0', '95.130.55.255', 1602367488, 1602369535, 'ES', 'Spain'), +('95.130.56.0', '95.130.63.255', 1602369536, 1602371583, 'IR', 'Iran, Islamic Republic of'), +('95.130.64.0', '95.130.71.255', 1602371584, 1602373631, 'SE', 'Sweden'), +('95.130.72.0', '95.130.79.255', 1602373632, 1602375679, 'GB', 'United Kingdom'), +('95.130.80.0', '95.130.87.255', 1602375680, 1602377727, 'BY', 'Belarus'), +('95.130.88.0', '95.130.95.255', 1602377728, 1602379775, 'PS', 'Palestinian Territory, Occupied'), +('95.130.96.0', '95.130.111.255', 1602379776, 1602383871, 'GB', 'United Kingdom'), +('95.130.112.0', '95.130.113.255', 1602383872, 1602384383, 'DE', 'Germany'), +('95.130.114.0', '95.130.119.255', 1602384384, 1602385919, 'EU', 'Europe'), +('95.130.120.0', '95.130.127.255', 1602385920, 1602387967, 'AT', 'Austria'), +('95.130.128.0', '95.130.135.255', 1602387968, 1602390015, 'RU', 'Russian Federation'), +('95.130.136.0', '95.130.143.255', 1602390016, 1602392063, 'IT', 'Italy'), +('95.130.144.0', '95.130.151.255', 1602392064, 1602394111, 'PL', 'Poland'), +('95.130.152.0', '95.130.159.255', 1602394112, 1602396159, 'FR', 'France'), +('95.130.160.0', '95.130.167.255', 1602396160, 1602398207, 'DE', 'Germany'), +('95.130.168.0', '95.130.175.255', 1602398208, 1602400255, 'TR', 'Turkey'), +('95.130.176.0', '95.130.183.255', 1602400256, 1602402303, 'RU', 'Russian Federation'), +('95.130.184.0', '95.130.191.255', 1602402304, 1602404351, 'LU', 'Luxembourg'), +('95.130.192.0', '95.130.199.255', 1602404352, 1602406399, 'GB', 'United Kingdom'), +('95.130.200.0', '95.130.207.255', 1602406400, 1602408447, 'DE', 'Germany'), +('95.130.208.0', '95.130.215.255', 1602408448, 1602410495, 'DK', 'Denmark'), +('95.130.216.0', '95.130.223.255', 1602410496, 1602412543, 'NO', 'Norway'), +('95.130.224.0', '95.130.231.255', 1602412544, 1602414591, 'GB', 'United Kingdom'), +('95.130.232.0', '95.130.239.255', 1602414592, 1602416639, 'NL', 'Netherlands'), +('95.130.240.0', '95.130.247.255', 1602416640, 1602418687, 'IR', 'Iran, Islamic Republic of'), +('95.130.248.0', '95.130.255.255', 1602418688, 1602420735, 'DE', 'Germany'), +('95.131.0.0', '95.131.15.255', 1602420736, 1602424831, 'RU', 'Russian Federation'), +('95.131.16.0', '95.131.23.255', 1602424832, 1602426879, 'BG', 'Bulgaria'), +('95.131.24.0', '95.131.31.255', 1602426880, 1602428927, 'RU', 'Russian Federation'), +('95.131.32.0', '95.131.39.255', 1602428928, 1602430975, 'PL', 'Poland'), +('95.131.40.0', '95.131.47.255', 1602430976, 1602433023, 'IT', 'Italy'), +('95.131.48.0', '95.131.55.255', 1602433024, 1602435071, 'HU', 'Hungary'), +('95.131.56.0', '95.131.63.255', 1602435072, 1602437119, 'LU', 'Luxembourg'), +('95.131.64.0', '95.131.71.255', 1602437120, 1602439167, 'GB', 'United Kingdom'), +('95.131.72.0', '95.131.79.255', 1602439168, 1602441215, 'RU', 'Russian Federation'), +('95.131.80.0', '95.131.87.255', 1602441216, 1602443263, 'GB', 'United Kingdom'), +('95.131.88.0', '95.131.95.255', 1602443264, 1602445311, 'RU', 'Russian Federation'), +('95.131.96.0', '95.131.103.255', 1602445312, 1602447359, 'DE', 'Germany'), +('95.131.104.0', '95.131.105.255', 1602447360, 1602447871, 'GB', 'United Kingdom'), +('95.131.106.0', '95.131.107.255', 1602447872, 1602448383, 'DE', 'Germany'), +('95.131.108.0', '95.131.109.255', 1602448384, 1602448895, 'NL', 'Netherlands'), +('95.131.110.0', '95.131.111.255', 1602448896, 1602449407, 'GB', 'United Kingdom'), +('95.131.112.0', '95.131.119.255', 1602449408, 1602451455, 'LV', 'Latvia'), +('95.131.120.0', '95.131.127.255', 1602451456, 1602453503, 'DE', 'Germany'), +('95.131.128.0', '95.131.135.255', 1602453504, 1602455551, 'SK', 'Slovakia'), +('95.131.136.0', '95.131.143.255', 1602455552, 1602457599, 'FR', 'France'), +('95.131.144.0', '95.131.151.255', 1602457600, 1602459647, 'RU', 'Russian Federation'), +('95.131.152.0', '95.131.159.255', 1602459648, 1602461695, 'GB', 'United Kingdom'), +('95.131.160.0', '95.131.175.255', 1602461696, 1602465791, 'ES', 'Spain'), +('95.131.176.0', '95.131.183.255', 1602465792, 1602467839, 'RU', 'Russian Federation'), +('95.131.184.0', '95.131.191.255', 1602467840, 1602469887, 'GI', 'Gibraltar'), +('95.131.192.0', '95.131.199.255', 1602469888, 1602471935, 'AT', 'Austria'), +('95.131.200.0', '95.131.207.255', 1602471936, 1602473983, 'SE', 'Sweden'), +('95.131.208.0', '95.131.215.255', 1602473984, 1602476031, 'RU', 'Russian Federation'), +('95.131.216.0', '95.131.223.255', 1602476032, 1602478079, 'GB', 'United Kingdom'), +('95.131.224.0', '95.131.239.255', 1602478080, 1602482175, 'RU', 'Russian Federation'), +('95.131.240.0', '95.131.247.255', 1602482176, 1602484223, 'FR', 'France'), +('95.131.248.0', '95.131.255.255', 1602484224, 1602486271, 'GB', 'United Kingdom'), +('95.132.0.0', '95.135.255.255', 1602486272, 1602748415, 'UA', 'Ukraine'), +('95.136.0.0', '95.136.127.255', 1602748416, 1602781183, 'PT', 'Portugal'), +('95.136.128.0', '95.136.255.255', 1602781184, 1602813951, 'FR', 'France'), +('95.137.0.0', '95.137.127.255', 1602813952, 1602846719, 'RU', 'Russian Federation'), +('95.137.128.0', '95.137.255.255', 1602846720, 1602879487, 'GE', 'Georgia'), +('95.138.0.0', '95.138.127.255', 1602879488, 1602912255, 'FR', 'France'), +('95.138.128.0', '95.139.255.255', 1602912256, 1603010559, 'RU', 'Russian Federation'), +('95.140.0.0', '95.140.15.255', 1603010560, 1603014655, 'FR', 'France'), +('95.140.16.0', '95.140.31.255', 1603014656, 1603018751, 'RU', 'Russian Federation'), +('95.140.32.0', '95.140.47.255', 1603018752, 1603022847, 'HU', 'Hungary'), +('95.140.48.0', '95.140.63.255', 1603022848, 1603026943, 'GB', 'United Kingdom'), +('95.140.64.0', '95.140.79.255', 1603026944, 1603031039, 'SE', 'Sweden'), +('95.140.80.0', '95.140.95.255', 1603031040, 1603035135, 'RU', 'Russian Federation'), +('95.140.96.0', '95.140.111.255', 1603035136, 1603039231, 'SY', 'Syrian Arab Republic'), +('95.140.112.0', '95.140.127.255', 1603039232, 1603043327, 'RS', 'Serbia'), +('95.140.128.0', '95.140.143.255', 1603043328, 1603047423, 'IT', 'Italy'), +('95.140.144.0', '95.140.159.255', 1603047424, 1603051519, 'RU', 'Russian Federation'), +('95.140.160.0', '95.140.175.255', 1603051520, 1603055615, 'JO', 'Jordan'), +('95.140.192.0', '95.140.207.255', 1603059712, 1603063807, 'AM', 'Armenia'), +('95.140.208.0', '95.140.223.255', 1603063808, 1603067903, 'BG', 'Bulgaria'), +('95.140.224.0', '95.140.239.255', 1603067904, 1603071999, 'FR', 'France'), +('95.141.0.0', '95.141.15.255', 1603076096, 1603080191, 'RU', 'Russian Federation'), +('95.141.16.0', '95.141.31.255', 1603080192, 1603084287, 'DE', 'Germany'), +('95.141.32.0', '95.141.47.255', 1603084288, 1603088383, 'IT', 'Italy'), +('95.141.48.0', '95.141.63.255', 1603088384, 1603092479, 'LB', 'Lebanon'), +('95.141.64.0', '95.141.95.255', 1603092480, 1603100671, 'NO', 'Norway'), +('95.141.96.0', '95.141.127.255', 1603100672, 1603108863, 'FR', 'France'), +('95.141.128.0', '95.141.143.255', 1603108864, 1603112959, 'KZ', 'Kazakstan'), +('95.141.144.0', '95.141.175.255', 1603112960, 1603121151, 'GB', 'United Kingdom'), +('95.141.176.0', '95.141.207.255', 1603121152, 1603129343, 'RU', 'Russian Federation'), +('95.144.0.0', '95.151.255.255', 1603272704, 1603796991, 'GB', 'United Kingdom'), +('95.152.0.0', '95.152.63.255', 1603796992, 1603813375, 'RU', 'Russian Federation'), +('95.152.64.0', '95.152.127.255', 1603813376, 1603829759, 'CH', 'Switzerland'), +('95.152.128.0', '95.152.191.255', 1603829760, 1603846143, 'NL', 'Netherlands'), +('95.152.192.0', '95.152.255.255', 1603846144, 1603862527, 'GB', 'United Kingdom'), +('95.153.0.0', '95.153.63.255', 1603862528, 1603878911, 'EE', 'Estonia'), +('95.153.64.0', '95.153.127.255', 1603878912, 1603895295, 'MD', 'Moldova, Republic of'), +('95.153.128.0', '95.153.191.255', 1603895296, 1603911679, 'RU', 'Russian Federation'), +('95.154.0.0', '95.154.63.255', 1603928064, 1603944447, 'DK', 'Denmark'), +('95.154.64.0', '95.154.191.255', 1603944448, 1603977215, 'RU', 'Russian Federation'), +('95.154.192.0', '95.154.204.175', 1603977216, 1603980463, 'GB', 'United Kingdom'), +('95.154.204.176', '95.154.204.191', 1603980464, 1603980479, 'CH', 'Switzerland'), +('95.154.204.192', '95.154.209.255', 1603980480, 1603981823, 'GB', 'United Kingdom'), +('95.154.210.0', '95.154.210.255', 1603981824, 1603982079, 'IE', 'Ireland'), +('95.154.211.0', '95.154.213.63', 1603982080, 1603982655, 'GB', 'United Kingdom'), +('95.154.213.64', '95.154.213.95', 1603982656, 1603982687, 'DK', 'Denmark'), +('95.154.213.96', '95.154.213.127', 1603982688, 1603982719, 'AN', 'Netherlands Antilles'), +('95.154.213.128', '95.154.213.191', 1603982720, 1603982783, 'PK', 'Pakistan'), +('95.154.213.192', '95.154.213.255', 1603982784, 1603982847, 'AN', 'Netherlands Antilles'), +('95.154.214.0', '95.154.255.255', 1603982848, 1603993599, 'GB', 'United Kingdom'), +('95.155.0.0', '95.155.63.255', 1603993600, 1604009983, 'ME', 'Montenegro'), +('95.155.64.0', '95.155.127.255', 1604009984, 1604026367, 'PL', 'Poland'), +('95.155.128.0', '95.155.191.255', 1604026368, 1604042751, 'NL', 'Netherlands'), +('95.155.192.0', '95.155.255.255', 1604042752, 1604059135, 'SE', 'Sweden'), +('95.156.0.0', '95.156.63.255', 1604059136, 1604075519, 'MK', 'Macedonia'), +('95.156.64.0', '95.156.127.255', 1604075520, 1604091903, 'RU', 'Russian Federation'), +('95.156.128.0', '95.156.191.255', 1604091904, 1604108287, 'BA', 'Bosnia and Herzegovina'), +('95.156.192.0', '95.156.199.255', 1604108288, 1604110335, 'DE', 'Germany'), +('95.156.200.0', '95.156.201.255', 1604110336, 1604110847, 'LI', 'Liechtenstein'), +('95.156.202.0', '95.157.63.255', 1604110848, 1604141055, 'DE', 'Germany'), +('95.157.64.0', '95.157.127.255', 1604141056, 1604157439, 'RO', 'Romania'), +('95.157.128.0', '95.157.255.255', 1604157440, 1604190207, 'FR', 'France'), +('95.158.0.0', '95.158.63.255', 1604190208, 1604206591, 'UA', 'Ukraine'), +('95.158.64.0', '95.158.127.255', 1604206592, 1604222975, 'PL', 'Poland'), +('95.158.128.0', '95.158.191.255', 1604222976, 1604239359, 'BG', 'Bulgaria'), +('95.158.192.0', '95.158.255.255', 1604239360, 1604255743, 'RU', 'Russian Federation'), +('95.159.0.0', '95.159.63.255', 1604255744, 1604272127, 'SY', 'Syrian Arab Republic'), +('95.159.64.0', '95.159.127.255', 1604272128, 1604288511, 'IQ', 'Iraq'), +('95.159.128.0', '95.159.191.255', 1604288512, 1604304895, 'RU', 'Russian Federation'), +('95.159.192.0', '95.159.255.255', 1604304896, 1604321279, 'SI', 'Slovenia'), +('95.160.0.0', '95.160.255.255', 1604321280, 1604386815, 'PL', 'Poland'), +('95.161.0.0', '95.161.255.255', 1604386816, 1604452351, 'RU', 'Russian Federation'), +('95.162.0.0', '95.162.255.255', 1604452352, 1604517887, 'RO', 'Romania'), +('95.163.0.0', '95.163.255.255', 1604517888, 1604583423, 'RU', 'Russian Federation'), +('95.164.0.0', '95.164.255.255', 1604583424, 1604648959, 'UA', 'Ukraine'), +('95.165.0.0', '95.165.255.255', 1604648960, 1604714495, 'RU', 'Russian Federation'), +('95.166.0.0', '95.166.255.255', 1604714496, 1604780031, 'DK', 'Denmark'), +('95.168.0.0', '95.168.31.255', 1604845568, 1604853759, 'FR', 'France'), +('95.168.32.0', '95.168.63.255', 1604853760, 1604861951, 'HU', 'Hungary'), +('95.168.64.0', '95.168.95.255', 1604861952, 1604870143, 'RS', 'Serbia'), +('95.168.96.0', '95.168.127.255', 1604870144, 1604878335, 'HR', 'Croatia'), +('95.168.128.0', '95.168.160.127', 1604878336, 1604886655, 'DE', 'Germany'), +('95.168.160.128', '95.168.160.255', 1604886656, 1604886783, 'RU', 'Russian Federation'), +('95.168.161.0', '95.168.161.255', 1604886784, 1604887039, 'US', 'United States'), +('95.168.162.0', '95.168.162.255', 1604887040, 1604887295, 'KZ', 'Kazakstan'), +('95.168.163.0', '95.168.164.255', 1604887296, 1604887807, 'DE', 'Germany'), +('95.168.165.0', '95.168.165.255', 1604887808, 1604888063, 'BY', 'Belarus'), +('95.168.166.0', '95.168.171.255', 1604888064, 1604889599, 'TR', 'Turkey'), +('95.168.172.0', '95.168.172.255', 1604889600, 1604889855, 'DE', 'Germany'), +('95.168.173.0', '95.168.173.255', 1604889856, 1604890111, 'BY', 'Belarus'), +('95.168.174.0', '95.168.174.127', 1604890112, 1604890239, 'RU', 'Russian Federation'), +('95.168.174.128', '95.168.174.255', 1604890240, 1604890367, 'DE', 'Germany'), +('95.168.175.0', '95.168.176.255', 1604890368, 1604890879, 'TR', 'Turkey'), +('95.168.177.0', '95.168.178.255', 1604890880, 1604891391, 'BY', 'Belarus'), +('95.168.179.0', '95.168.179.255', 1604891392, 1604891647, 'DE', 'Germany'), +('95.168.180.0', '95.168.180.255', 1604891648, 1604891903, 'BY', 'Belarus'), +('95.168.181.0', '95.168.181.127', 1604891904, 1604892031, 'DE', 'Germany'), +('95.168.181.128', '95.168.181.255', 1604892032, 1604892159, 'RU', 'Russian Federation'), +('95.168.182.0', '95.168.184.255', 1604892160, 1604892927, 'DE', 'Germany'), +('95.168.185.0', '95.168.185.255', 1604892928, 1604893183, 'CN', 'China'), +('95.168.186.0', '95.168.191.255', 1604893184, 1604894719, 'DE', 'Germany'), +('95.168.192.0', '95.168.223.255', 1604894720, 1604902911, 'CZ', 'Czech Republic'), +('95.168.224.0', '95.168.255.255', 1604902912, 1604911103, 'BG', 'Bulgaria'), +('95.169.0.0', '95.169.31.255', 1604911104, 1604919295, 'UA', 'Ukraine'), +('95.169.32.0', '95.169.63.255', 1604919296, 1604927487, 'NO', 'Norway'), +('95.169.64.0', '95.169.95.255', 1604927488, 1604935679, 'IT', 'Italy'), +('95.169.96.0', '95.169.159.255', 1604935680, 1604952063, 'RU', 'Russian Federation'), +('95.169.160.0', '95.169.189.255', 1604952064, 1604959743, 'DE', 'Germany'), +('95.169.190.0', '95.169.191.255', 1604959744, 1604960255, 'RU', 'Russian Federation'), +('95.169.192.0', '95.169.223.255', 1604960256, 1604968447, 'BG', 'Bulgaria'), +('95.169.224.0', '95.169.255.255', 1604968448, 1604976639, 'ES', 'Spain'), +('95.170.0.0', '95.170.63.255', 1604976640, 1604993023, 'FR', 'France'), +('95.170.64.0', '95.170.95.255', 1604993024, 1605001215, 'NL', 'Netherlands'), +('95.170.96.0', '95.170.191.255', 1605001216, 1605025791, 'RU', 'Russian Federation'), +('95.170.192.0', '95.170.223.255', 1605025792, 1605033983, 'IQ', 'Iraq'), +('95.170.224.0', '95.170.255.255', 1605033984, 1605042175, 'SK', 'Slovakia'), +('95.171.0.0', '95.171.31.255', 1605042176, 1605050367, 'RU', 'Russian Federation'), +('95.171.32.0', '95.171.63.255', 1605050368, 1605058559, 'IT', 'Italy'), +('95.171.64.0', '95.171.95.255', 1605058560, 1605066751, 'HU', 'Hungary'), +('95.171.128.0', '95.171.159.255', 1605074944, 1605083135, 'FR', 'France'), +('95.171.160.0', '95.171.191.255', 1605083136, 1605091327, 'BE', 'Belgium'), +('95.171.192.0', '95.171.223.255', 1605091328, 1605099519, 'PL', 'Poland'), +('95.171.224.0', '95.171.255.255', 1605099520, 1605107711, 'RU', 'Russian Federation'), +('95.172.0.0', '95.172.31.255', 1605107712, 1605115903, 'GB', 'United Kingdom'), +('95.172.32.0', '95.172.63.255', 1605115904, 1605124095, 'RU', 'Russian Federation'), +('95.172.64.0', '95.172.64.255', 1605124096, 1605124351, 'US', 'United States'), +('95.172.65.0', '95.172.95.255', 1605124352, 1605132287, 'GB', 'United Kingdom'), +('95.172.96.0', '95.172.159.255', 1605132288, 1605148671, 'RU', 'Russian Federation'), +('95.172.160.0', '95.172.191.255', 1605148672, 1605156863, 'PT', 'Portugal'), +('95.172.192.0', '95.172.223.255', 1605156864, 1605165055, 'JO', 'Jordan'), +('95.172.224.0', '95.172.241.3', 1605165056, 1605169411, 'GB', 'United Kingdom'), +('95.172.241.4', '95.172.241.4', 1605169412, 1605169412, 'DE', 'Germany'), +('95.172.241.5', '95.172.255.255', 1605169413, 1605173247, 'GB', 'United Kingdom'), +('95.173.0.0', '95.173.31.255', 1605173248, 1605181439, 'TR', 'Turkey'), +('95.173.32.0', '95.173.63.255', 1605181440, 1605189631, 'LT', 'Lithuania'), +('95.173.64.0', '95.173.64.31', 1605189632, 1605189663, 'SK', 'Slovakia'), +('95.173.64.32', '95.173.95.255', 1605189664, 1605197823, 'CZ', 'Czech Republic'), +('95.173.96.0', '95.173.127.255', 1605197824, 1605206015, 'DE', 'Germany'), +('95.173.128.0', '95.173.159.255', 1605206016, 1605214207, 'RU', 'Russian Federation'), +('95.173.160.0', '95.173.191.255', 1605214208, 1605222399, 'TR', 'Turkey'), +('95.173.192.0', '95.173.223.255', 1605222400, 1605230591, 'CZ', 'Czech Republic'), +('95.173.224.0', '95.173.255.255', 1605230592, 1605238783, 'TR', 'Turkey'), +('95.174.0.0', '95.174.31.255', 1605238784, 1605246975, 'IT', 'Italy'), +('95.174.32.0', '95.174.63.255', 1605246976, 1605255167, 'PL', 'Poland'), +('95.174.64.0', '95.174.95.255', 1605255168, 1605263359, 'HU', 'Hungary'), +('95.174.96.0', '95.174.127.255', 1605263360, 1605271551, 'RU', 'Russian Federation'), +('95.174.128.0', '95.174.159.255', 1605271552, 1605279743, 'DE', 'Germany'), +('95.174.160.0', '95.174.191.255', 1605279744, 1605287935, 'FR', 'France'), +('95.174.192.0', '95.174.223.255', 1605287936, 1605296127, 'RU', 'Russian Federation'), +('95.174.224.0', '95.174.255.255', 1605296128, 1605304319, 'CH', 'Switzerland'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('95.175.0.0', '95.175.31.255', 1605304320, 1605312511, 'PL', 'Poland'), +('95.175.32.0', '95.175.63.255', 1605312512, 1605320703, 'IL', 'Israel'), +('95.175.64.0', '95.175.95.255', 1605320704, 1605328895, 'KW', 'Kuwait'), +('95.175.96.0', '95.175.127.255', 1605328896, 1605337087, 'FI', 'Finland'), +('95.175.128.0', '95.175.159.255', 1605337088, 1605345279, 'GB', 'United Kingdom'), +('95.175.160.0', '95.175.191.255', 1605345280, 1605353471, 'FR', 'France'), +('95.175.192.0', '95.175.223.255', 1605353472, 1605361663, 'GB', 'United Kingdom'), +('95.175.224.0', '95.175.255.255', 1605361664, 1605369855, 'RU', 'Russian Federation'), +('95.176.0.0', '95.176.127.255', 1605369856, 1605402623, 'FR', 'France'), +('95.176.128.0', '95.176.255.255', 1605402624, 1605435391, 'SI', 'Slovenia'), +('95.177.0.0', '95.177.127.255', 1605435392, 1605468159, 'GB', 'United Kingdom'), +('95.177.128.0', '95.177.255.255', 1605468160, 1605500927, 'RO', 'Romania'), +('95.178.0.0', '95.178.127.255', 1605500928, 1605533695, 'PL', 'Poland'), +('95.178.128.0', '95.178.255.255', 1605533696, 1605566463, 'HR', 'Croatia'), +('95.179.0.0', '95.179.127.255', 1605566464, 1605599231, 'RU', 'Russian Federation'), +('95.179.128.0', '95.179.255.255', 1605599232, 1605631999, 'GR', 'Greece'), +('95.180.0.0', '95.180.127.255', 1605632000, 1605664767, 'RS', 'Serbia'), +('95.180.128.0', '95.180.255.255', 1605664768, 1605697535, 'MK', 'Macedonia'), +('95.181.0.0', '95.182.127.255', 1605697536, 1605795839, 'RU', 'Russian Federation'), +('95.182.128.0', '95.182.255.255', 1605795840, 1605828607, 'BE', 'Belgium'), +('95.183.0.0', '95.183.127.255', 1605828608, 1605861375, 'RU', 'Russian Federation'), +('95.183.128.0', '95.183.255.255', 1605861376, 1605894143, 'TR', 'Turkey'), +('95.184.0.0', '95.187.255.255', 1605894144, 1606156287, 'RO', 'Romania'), +('95.188.0.0', '95.191.255.255', 1606156288, 1606418431, 'RU', 'Russian Federation'), +('95.192.0.0', '95.207.255.255', 1606418432, 1607467007, 'SE', 'Sweden'), +('95.208.0.0', '95.208.255.255', 1607467008, 1607532543, 'DE', 'Germany'), +('95.209.0.0', '95.209.147.255', 1607532544, 1607570431, 'SE', 'Sweden'), +('95.209.148.0', '95.209.151.255', 1607570432, 1607571455, 'DK', 'Denmark'), +('95.209.152.0', '95.209.219.255', 1607571456, 1607588863, 'SE', 'Sweden'), +('95.209.220.0', '95.209.255.255', 1607588864, 1607598079, 'DK', 'Denmark'), +('95.210.0.0', '95.210.255.255', 1607598080, 1607663615, 'A2', 'Satellite Provider'), +('95.211.0.0', '95.211.255.255', 1607663616, 1607729151, 'NL', 'Netherlands'), +('95.212.0.0', '95.212.127.255', 1607729152, 1607761919, 'EG', 'Egypt'), +('95.212.128.0', '95.212.143.255', 1607761920, 1607766015, 'SY', 'Syrian Arab Republic'), +('95.212.144.0', '95.212.255.255', 1607766016, 1607794687, 'EG', 'Egypt'), +('95.214.0.0', '95.214.255.255', 1607860224, 1607925759, 'ES', 'Spain'), +('95.215.0.0', '95.215.3.255', 1607925760, 1607926783, 'RU', 'Russian Federation'), +('95.215.4.0', '95.215.7.255', 1607926784, 1607927807, 'PL', 'Poland'), +('95.215.8.0', '95.215.15.255', 1607927808, 1607929855, 'RU', 'Russian Federation'), +('95.215.16.0', '95.215.19.255', 1607929856, 1607930879, 'SE', 'Sweden'), +('95.215.20.0', '95.215.31.255', 1607930880, 1607933951, 'PL', 'Poland'), +('95.215.32.0', '95.215.35.255', 1607933952, 1607934975, 'DE', 'Germany'), +('95.215.36.0', '95.215.39.255', 1607934976, 1607935999, 'UA', 'Ukraine'), +('95.215.40.0', '95.215.43.255', 1607936000, 1607937023, 'RU', 'Russian Federation'), +('95.215.44.0', '95.215.47.255', 1607937024, 1607938047, 'LV', 'Latvia'), +('95.215.48.0', '95.215.51.255', 1607938048, 1607939071, 'UA', 'Ukraine'), +('95.215.52.0', '95.215.55.255', 1607939072, 1607940095, 'PL', 'Poland'), +('95.215.56.0', '95.215.59.255', 1607940096, 1607941119, 'RU', 'Russian Federation'), +('95.215.60.0', '95.215.63.255', 1607941120, 1607942143, 'PL', 'Poland'), +('95.215.64.0', '95.215.71.255', 1607942144, 1607944191, 'RU', 'Russian Federation'), +('95.215.72.0', '95.215.75.255', 1607944192, 1607945215, 'FR', 'France'), +('95.215.76.0', '95.215.79.255', 1607945216, 1607946239, 'CA', 'Canada'), +('95.215.80.0', '95.215.87.255', 1607946240, 1607948287, 'UA', 'Ukraine'), +('95.215.88.0', '95.215.91.255', 1607948288, 1607949311, 'GB', 'United Kingdom'), +('95.215.92.0', '95.215.95.255', 1607949312, 1607950335, 'UA', 'Ukraine'), +('95.215.96.0', '95.215.99.255', 1607950336, 1607951359, 'RU', 'Russian Federation'), +('95.215.100.0', '95.215.111.255', 1607951360, 1607954431, 'UA', 'Ukraine'), +('95.215.112.0', '95.215.119.255', 1607954432, 1607956479, 'RU', 'Russian Federation'), +('95.215.120.0', '95.215.123.255', 1607956480, 1607957503, 'PL', 'Poland'), +('95.215.124.0', '95.215.127.255', 1607957504, 1607958527, 'UA', 'Ukraine'), +('95.215.128.0', '95.215.131.255', 1607958528, 1607959551, 'FR', 'France'), +('95.215.132.0', '95.215.135.255', 1607959552, 1607960575, 'EE', 'Estonia'), +('95.215.136.0', '95.215.143.255', 1607960576, 1607962623, 'RU', 'Russian Federation'), +('95.215.144.0', '95.215.147.255', 1607962624, 1607963647, 'UA', 'Ukraine'), +('95.215.148.0', '95.215.155.255', 1607963648, 1607965695, 'RU', 'Russian Federation'), +('95.215.156.0', '95.215.159.255', 1607965696, 1607966719, 'UA', 'Ukraine'), +('95.215.160.0', '95.215.163.255', 1607966720, 1607967743, 'RU', 'Russian Federation'), +('95.215.164.0', '95.215.167.255', 1607967744, 1607968767, 'GB', 'United Kingdom'), +('95.215.168.0', '95.215.171.255', 1607968768, 1607969791, 'SE', 'Sweden'), +('95.215.172.0', '95.215.183.255', 1607969792, 1607972863, 'RU', 'Russian Federation'), +('95.215.184.0', '95.215.191.255', 1607972864, 1607974911, 'UA', 'Ukraine'), +('95.215.192.0', '95.215.195.255', 1607974912, 1607975935, 'LV', 'Latvia'), +('95.215.196.0', '95.215.199.255', 1607975936, 1607976959, 'CZ', 'Czech Republic'), +('95.215.200.0', '95.215.203.255', 1607976960, 1607977983, 'KZ', 'Kazakstan'), +('95.215.204.0', '95.215.207.255', 1607977984, 1607979007, 'NL', 'Netherlands'), +('95.215.208.0', '95.215.211.255', 1607979008, 1607980031, 'RU', 'Russian Federation'), +('95.215.212.0', '95.215.215.255', 1607980032, 1607981055, 'DE', 'Germany'), +('95.215.216.0', '95.215.219.255', 1607981056, 1607982079, 'UA', 'Ukraine'), +('95.215.220.0', '95.215.223.255', 1607982080, 1607983103, 'RU', 'Russian Federation'), +('95.215.224.0', '95.215.227.255', 1607983104, 1607984127, 'GB', 'United Kingdom'), +('95.215.228.0', '95.215.231.255', 1607984128, 1607985151, 'RU', 'Russian Federation'), +('95.215.232.0', '95.215.235.255', 1607985152, 1607986175, 'AT', 'Austria'), +('95.215.236.0', '95.215.239.255', 1607986176, 1607987199, 'UA', 'Ukraine'), +('95.215.240.0', '95.215.243.255', 1607987200, 1607988223, 'ES', 'Spain'), +('95.215.244.0', '95.215.247.255', 1607988224, 1607989247, 'KG', 'Kyrgyzstan'), +('95.215.248.0', '95.215.251.255', 1607989248, 1607990271, 'DE', 'Germany'), +('95.215.252.0', '95.215.255.255', 1607990272, 1607991295, 'RU', 'Russian Federation'), +('95.216.0.0', '95.217.255.255', 1607991296, 1608122367, 'UA', 'Ukraine'), +('95.218.0.0', '95.219.255.255', 1608122368, 1608253439, 'RO', 'Romania'), +('95.220.0.0', '95.221.255.255', 1608253440, 1608384511, 'RU', 'Russian Federation'), +('95.222.0.0', '95.223.255.255', 1608384512, 1608515583, 'DE', 'Germany'), +('95.224.0.0', '95.255.255.255', 1608515584, 1610612735, 'IT', 'Italy'), +('96.0.0.0', '96.0.255.255', 1610612736, 1610678271, 'US', 'United States'), +('96.1.0.0', '96.1.255.255', 1610678272, 1610743807, 'CA', 'Canada'), +('96.2.0.0', '96.19.255.255', 1610743808, 1611923455, 'US', 'United States'), +('96.20.0.0', '96.23.255.255', 1611923456, 1612185599, 'CA', 'Canada'), +('96.24.0.0', '96.30.127.255', 1612185600, 1612611583, 'US', 'United States'), +('96.30.128.0', '96.30.255.255', 1612611584, 1612644351, 'CA', 'Canada'), +('96.31.0.0', '96.47.255.255', 1612644352, 1613758463, 'US', 'United States'), +('96.48.0.0', '96.55.255.255', 1613758464, 1614282751, 'CA', 'Canada'), +('96.56.0.0', '97.74.255.255', 1614282752, 1632305151, 'US', 'United States'), +('97.75.0.0', '97.75.63.255', 1632305152, 1632321535, 'CA', 'Canada'), +('97.76.0.0', '97.107.47.255', 1632370688, 1634414591, 'US', 'United States'), +('97.107.48.0', '97.107.63.255', 1634414592, 1634418687, 'CA', 'Canada'), +('97.107.64.0', '97.107.175.255', 1634418688, 1634447359, 'US', 'United States'), +('97.107.176.0', '97.107.191.255', 1634447360, 1634451455, 'CA', 'Canada'), +('97.107.192.0', '97.107.207.255', 1634451456, 1634455551, 'US', 'United States'), +('97.107.208.0', '97.107.223.255', 1634455552, 1634459647, 'CA', 'Canada'), +('97.107.224.0', '97.107.255.255', 1634459648, 1634467839, 'US', 'United States'), +('97.108.0.0', '97.111.255.255', 1634467840, 1634729983, 'CA', 'Canada'), +('97.112.0.0', '98.123.255.255', 1634729984, 1652293631, 'US', 'United States'), +('98.124.0.0', '98.124.63.255', 1652293632, 1652310015, 'CA', 'Canada'), +('98.124.64.0', '98.142.239.255', 1652310016, 1653534719, 'US', 'United States'), +('98.142.240.0', '98.142.255.255', 1653534720, 1653538815, 'CA', 'Canada'), +('98.143.0.0', '98.143.63.255', 1653538816, 1653555199, 'US', 'United States'), +('98.143.64.0', '98.143.111.255', 1653555200, 1653567487, 'CA', 'Canada'), +('98.143.112.0', '98.143.127.255', 1653567488, 1653571583, 'US', 'United States'), +('98.143.128.0', '98.143.143.255', 1653571584, 1653575679, 'CA', 'Canada'), +('98.143.144.0', '98.143.207.255', 1653575680, 1653592063, 'US', 'United States'), +('98.143.208.0', '98.143.223.255', 1653592064, 1653596159, 'CA', 'Canada'), +('98.143.224.0', '98.143.239.255', 1653596160, 1653600255, 'US', 'United States'), +('98.143.240.0', '98.143.255.255', 1653600256, 1653604351, 'CA', 'Canada'), +('98.144.0.0', '99.191.255.255', 1653604352, 1673527295, 'US', 'United States'), +('99.192.0.0', '99.192.127.255', 1673527296, 1673560063, 'CA', 'Canada'), +('99.192.128.0', '99.192.191.255', 1673560064, 1673576447, 'US', 'United States'), +('99.193.0.0', '99.198.255.255', 1673592832, 1673986047, 'US', 'United States'), +('99.199.0.0', '99.199.255.255', 1673986048, 1674051583, 'CA', 'Canada'), +('99.200.0.0', '99.207.255.255', 1674051584, 1674575871, 'US', 'United States'), +('99.208.0.0', '99.255.255.255', 1674575872, 1677721599, 'CA', 'Canada'), +('108.0.0.0', '108.63.255.255', 1811939328, 1816133631, 'US', 'United States'), +('109.112.0.0', '109.119.255.255', 1836056576, 1836580863, 'IT', 'Italy'), +('110.0.0.0', '110.3.255.255', 1845493760, 1845755903, 'JP', 'Japan'), +('110.4.0.0', '110.4.31.255', 1845755904, 1845764095, 'HK', 'Hong Kong'), +('110.4.32.0', '110.4.39.255', 1845764096, 1845766143, 'JP', 'Japan'), +('110.4.40.0', '110.4.47.255', 1845766144, 1845768191, 'MY', 'Malaysia'), +('110.4.48.0', '110.4.63.255', 1845768192, 1845772287, 'JP', 'Japan'), +('110.4.64.0', '110.4.127.255', 1845772288, 1845788671, 'KR', 'Korea, Republic of'), +('110.4.128.0', '110.5.63.255', 1845788672, 1845837823, 'JP', 'Japan'), +('110.5.64.0', '110.5.71.255', 1845837824, 1845839871, 'PH', 'Philippines'), +('110.5.72.0', '110.5.79.255', 1845839872, 1845841919, 'IN', 'India'), +('110.5.80.0', '110.5.95.255', 1845841920, 1845846015, 'AU', 'Australia'), +('110.5.96.0', '110.5.111.255', 1845846016, 1845850111, 'ID', 'Indonesia'), +('110.5.112.0', '110.5.115.255', 1845850112, 1845851135, 'WS', 'Samoa'), +('110.5.116.0', '110.5.119.255', 1845851136, 1845852159, 'AU', 'Australia'), +('110.5.120.0', '110.5.127.255', 1845852160, 1845854207, 'JP', 'Japan'), +('110.5.128.0', '110.5.255.255', 1845854208, 1845886975, 'KR', 'Korea, Republic of'), +('110.6.0.0', '110.7.255.255', 1845886976, 1846018047, 'CN', 'China'), +('110.8.0.0', '110.15.255.255', 1846018048, 1846542335, 'KR', 'Korea, Republic of'), +('110.16.0.0', '110.19.255.255', 1846542336, 1846804479, 'CN', 'China'), +('110.20.0.0', '110.23.255.255', 1846804480, 1847066623, 'AU', 'Australia'), +('110.24.0.0', '110.31.255.255', 1847066624, 1847590911, 'TW', 'Taiwan'), +('110.32.0.0', '110.33.255.255', 1847590912, 1847721983, 'AU', 'Australia'), +('110.34.0.0', '110.34.31.255', 1847721984, 1847730175, 'NP', 'Nepal'), +('110.34.32.0', '110.34.39.255', 1847730176, 1847732223, 'PK', 'Pakistan'), +('110.34.40.0', '110.34.47.255', 1847732224, 1847734271, 'AF', 'Afghanistan'), +('110.34.48.0', '110.34.51.255', 1847734272, 1847735295, 'NZ', 'New Zealand'), +('110.34.56.0', '110.34.63.255', 1847736320, 1847738367, 'AP', 'Asia/Pacific Region'), +('110.34.64.0', '110.34.127.255', 1847738368, 1847754751, 'KR', 'Korea, Republic of'), +('110.34.128.0', '110.34.255.255', 1847754752, 1847787519, 'AP', 'Asia/Pacific Region'), +('110.35.0.0', '110.35.63.255', 1847787520, 1847803903, 'KR', 'Korea, Republic of'), +('110.35.64.0', '110.35.79.255', 1847803904, 1847807999, 'VN', 'Vietnam'), +('110.35.80.0', '110.35.87.255', 1847808000, 1847810047, 'ID', 'Indonesia'), +('110.35.96.0', '110.35.255.255', 1847812096, 1847853055, 'KR', 'Korea, Republic of'), +('110.36.0.0', '110.39.255.255', 1847853056, 1848115199, 'PK', 'Pakistan'), +('110.40.0.0', '110.43.255.255', 1848115200, 1848377343, 'CN', 'China'), +('110.44.0.0', '110.44.15.255', 1848377344, 1848381439, 'HK', 'Hong Kong'), +('110.44.16.0', '110.44.19.255', 1848381440, 1848382463, 'NZ', 'New Zealand'), +('110.44.24.0', '110.44.27.255', 1848383488, 1848384511, 'AU', 'Australia'), +('110.44.32.0', '110.44.63.255', 1848385536, 1848393727, 'KR', 'Korea, Republic of'), +('110.44.64.0', '110.44.95.255', 1848393728, 1848401919, 'JP', 'Japan'), +('110.44.96.0', '110.44.111.255', 1848401920, 1848406015, 'PH', 'Philippines'), +('110.44.112.0', '110.44.127.255', 1848406016, 1848410111, 'NP', 'Nepal'), +('110.44.128.0', '110.44.143.255', 1848410112, 1848414207, 'PH', 'Philippines'), +('110.44.160.0', '110.44.163.255', 1848418304, 1848419327, 'AU', 'Australia'), +('110.44.168.0', '110.44.175.255', 1848420352, 1848422399, 'ID', 'Indonesia'), +('110.44.176.0', '110.44.183.255', 1848422400, 1848424447, 'JP', 'Japan'), +('110.44.184.0', '110.44.191.255', 1848424448, 1848426495, 'VN', 'Vietnam'), +('110.44.192.0', '110.47.255.255', 1848426496, 1848639487, 'KR', 'Korea, Republic of'), +('110.48.0.0', '110.48.255.255', 1848639488, 1848705023, 'CN', 'China'), +('110.49.0.0', '110.49.255.255', 1848705024, 1848770559, 'TH', 'Thailand'), +('110.50.0.0', '110.50.15.255', 1848770560, 1848774655, 'JP', 'Japan'), +('110.50.16.0', '110.50.23.255', 1848774656, 1848776703, 'AU', 'Australia'), +('110.50.32.0', '110.50.63.255', 1848778752, 1848786943, 'IN', 'India'), +('110.50.64.0', '110.50.79.255', 1848786944, 1848791039, 'JP', 'Japan'), +('110.50.80.0', '110.50.87.255', 1848791040, 1848793087, 'ID', 'Indonesia'), +('110.50.88.0', '110.50.127.255', 1848793088, 1848803327, 'JP', 'Japan'), +('110.50.128.0', '110.50.191.255', 1848803328, 1848819711, 'TW', 'Taiwan'), +('110.50.192.0', '110.50.223.255', 1848819712, 1848827903, 'JP', 'Japan'), +('110.50.224.0', '110.50.239.255', 1848827904, 1848831999, 'PH', 'Philippines'), +('110.50.240.0', '110.50.255.255', 1848832000, 1848836095, 'JP', 'Japan'), +('110.51.0.0', '110.53.255.255', 1848836096, 1849032703, 'CN', 'China'), +('110.54.0.0', '110.54.127.255', 1849032704, 1849065471, 'JP', 'Japan'), +('110.54.128.0', '110.55.255.255', 1849065472, 1849163775, 'PH', 'Philippines'), +('110.56.0.0', '110.65.255.255', 1849163776, 1849819135, 'CN', 'China'), +('110.66.0.0', '110.67.255.255', 1849819136, 1849950207, 'JP', 'Japan'), +('110.68.0.0', '110.71.255.255', 1849950208, 1850212351, 'KR', 'Korea, Republic of'), +('110.72.0.0', '110.73.255.255', 1850212352, 1850343423, 'CN', 'China'), +('110.74.0.0', '110.74.127.255', 1850343424, 1850376191, 'JP', 'Japan'), +('110.74.128.0', '110.74.191.255', 1850376192, 1850392575, 'MY', 'Malaysia'), +('110.74.192.0', '110.74.223.255', 1850392576, 1850400767, 'KH', 'Cambodia'), +('110.74.224.0', '110.74.255.255', 1850400768, 1850408959, 'JP', 'Japan'), +('110.75.0.0', '110.76.63.255', 1850408960, 1850490879, 'CN', 'China'), +('110.76.64.0', '110.76.127.255', 1850490880, 1850507263, 'KR', 'Korea, Republic of'), +('110.76.128.0', '110.76.143.255', 1850507264, 1850511359, 'AU', 'Australia'), +('110.76.144.0', '110.76.151.255', 1850511360, 1850513407, 'ID', 'Indonesia'), +('110.76.152.0', '110.76.155.255', 1850513408, 1850514431, 'TH', 'Thailand'), +('110.76.160.0', '110.76.175.255', 1850515456, 1850519551, 'IN', 'India'), +('110.76.176.0', '110.76.191.255', 1850519552, 1850523647, 'AU', 'Australia'), +('110.76.192.0', '110.77.127.255', 1850523648, 1850572799, 'CN', 'China'), +('110.77.128.0', '110.78.255.255', 1850572800, 1850671103, 'TH', 'Thailand'), +('110.79.0.0', '110.79.255.255', 1850671104, 1850736639, 'HK', 'Hong Kong'), +('110.80.0.0', '110.91.255.255', 1850736640, 1851523071, 'CN', 'China'), +('110.92.0.0', '110.92.15.255', 1851523072, 1851527167, 'JP', 'Japan'), +('110.92.16.0', '110.92.19.255', 1851527168, 1851528191, 'NZ', 'New Zealand'), +('110.92.24.0', '110.92.31.255', 1851529216, 1851531263, 'PH', 'Philippines'), +('110.92.32.0', '110.92.63.255', 1851531264, 1851539455, 'JP', 'Japan'), +('110.92.64.0', '110.92.75.255', 1851539456, 1851542527, 'ID', 'Indonesia'), +('110.92.76.0', '110.92.79.255', 1851542528, 1851543551, 'HK', 'Hong Kong'), +('110.92.80.0', '110.92.95.255', 1851543552, 1851547647, 'JP', 'Japan'), +('110.92.96.0', '110.92.127.255', 1851547648, 1851555839, 'SG', 'Singapore'), +('110.92.128.0', '110.92.255.255', 1851555840, 1851588607, 'KR', 'Korea, Republic of'), +('110.93.0.0', '110.93.7.255', 1851588608, 1851590655, 'JP', 'Japan'), +('110.93.8.0', '110.93.11.255', 1851590656, 1851591679, 'AU', 'Australia'), +('110.93.16.0', '110.93.19.255', 1851592704, 1851593727, 'AU', 'Australia'), +('110.93.24.0', '110.93.31.255', 1851594752, 1851596799, 'KR', 'Korea, Republic of'), +('110.93.32.0', '110.93.63.255', 1851596800, 1851604991, 'IN', 'India'), +('110.93.64.0', '110.93.95.255', 1851604992, 1851613183, 'PH', 'Philippines'), +('110.93.96.0', '110.93.111.255', 1851613184, 1851617279, 'JP', 'Japan'), +('110.93.112.0', '110.93.191.255', 1851617280, 1851637759, 'KR', 'Korea, Republic of'), +('110.93.192.0', '110.93.255.255', 1851637760, 1851654143, 'PK', 'Pakistan'), +('110.94.0.0', '110.127.255.255', 1851654144, 1853882367, 'CN', 'China'), +('110.128.0.0', '110.135.255.255', 1853882368, 1854406655, 'JP', 'Japan'), +('110.136.0.0', '110.139.255.255', 1854406656, 1854668799, 'ID', 'Indonesia'), +('110.140.0.0', '110.141.255.255', 1854668800, 1854799871, 'AU', 'Australia'), +('110.144.0.0', '110.151.255.255', 1854930944, 1855455231, 'AU', 'Australia'), +('110.152.0.0', '110.157.255.255', 1855455232, 1855848447, 'CN', 'China'), +('110.158.0.0', '110.158.255.255', 1855848448, 1855913983, 'JP', 'Japan'), +('110.159.0.0', '110.159.255.255', 1855913984, 1855979519, 'MY', 'Malaysia'), +('110.160.0.0', '110.163.255.255', 1855979520, 1856241663, 'JP', 'Japan'), +('110.164.0.0', '110.164.255.255', 1856241664, 1856307199, 'TH', 'Thailand'), +('110.165.0.0', '110.165.31.255', 1856307200, 1856315391, 'KR', 'Korea, Republic of'), +('110.165.32.0', '110.165.63.255', 1856315392, 1856323583, 'HK', 'Hong Kong'), +('110.165.64.0', '110.165.127.255', 1856323584, 1856339967, 'KR', 'Korea, Republic of'), +('110.165.128.0', '110.165.255.255', 1856339968, 1856372735, 'JP', 'Japan'), +('110.166.0.0', '110.167.255.255', 1856372736, 1856503807, 'CN', 'China'), +('110.168.0.0', '110.171.255.255', 1856503808, 1856765951, 'TH', 'Thailand'), +('110.172.0.0', '110.172.15.255', 1856765952, 1856770047, 'JP', 'Japan'), +('110.172.16.0', '110.172.31.255', 1856770048, 1856774143, 'IN', 'India'), +('110.172.32.0', '110.172.51.255', 1856774144, 1856779263, 'JP', 'Japan'), +('110.172.52.0', '110.172.55.255', 1856779264, 1856780287, 'IN', 'India'), +('110.172.56.0', '110.172.63.255', 1856780288, 1856782335, 'JP', 'Japan'), +('110.172.64.0', '110.172.127.255', 1856782336, 1856798719, 'KR', 'Korea, Republic of'), +('110.172.128.0', '110.172.191.255', 1856798720, 1856815103, 'IN', 'India'), +('110.172.192.0', '110.173.47.255', 1856815104, 1856843775, 'CN', 'China'), +('110.173.48.0', '110.173.63.255', 1856843776, 1856847871, 'HK', 'Hong Kong'), +('110.173.64.0', '110.173.127.255', 1856847872, 1856864255, 'CN', 'China'), +('110.173.128.0', '110.173.159.255', 1856864256, 1856872447, 'AU', 'Australia'), +('110.173.160.0', '110.173.175.255', 1856872448, 1856876543, 'NZ', 'New Zealand'), +('110.173.192.0', '110.173.223.255', 1856880640, 1856888831, 'CN', 'China'), +('110.173.224.0', '110.173.239.255', 1856888832, 1856892927, 'AU', 'Australia'), +('110.173.240.0', '110.173.255.255', 1856892928, 1856897023, 'JP', 'Japan'), +('110.174.0.0', '110.175.255.255', 1856897024, 1857028095, 'AU', 'Australia'), +('110.176.0.0', '110.223.255.255', 1857028096, 1860173823, 'CN', 'China'), +('110.224.0.0', '110.227.255.255', 1860173824, 1860435967, 'IN', 'India'), +('110.228.0.0', '110.231.255.255', 1860435968, 1860698111, 'CN', 'China'), +('110.232.0.0', '110.232.31.255', 1860698112, 1860706303, 'JP', 'Japan'), +('110.232.32.0', '110.232.63.255', 1860706304, 1860714495, 'CN', 'China'), +('110.232.64.0', '110.232.95.255', 1860714496, 1860722687, 'ID', 'Indonesia'), +('110.232.96.0', '110.232.111.255', 1860722688, 1860726783, 'KR', 'Korea, Republic of'), +('110.232.112.0', '110.232.115.255', 1860726784, 1860727807, 'AU', 'Australia'), +('110.232.120.0', '110.232.143.255', 1860728832, 1860734975, 'JP', 'Japan'), +('110.232.144.0', '110.232.147.255', 1860734976, 1860735999, 'NZ', 'New Zealand'), +('110.232.152.0', '110.232.159.255', 1860737024, 1860739071, 'JP', 'Japan'), +('110.232.160.0', '110.232.175.255', 1860739072, 1860743167, 'PH', 'Philippines'), +('110.232.176.0', '110.232.191.255', 1860743168, 1860747263, 'AU', 'Australia'), +('110.232.192.0', '110.232.239.255', 1860747264, 1860759551, 'JP', 'Japan'), +('110.232.240.0', '110.232.247.255', 1860759552, 1860761599, 'AU', 'Australia'), +('110.233.0.0', '110.233.255.255', 1860763648, 1860829183, 'JP', 'Japan'), +('110.234.0.0', '110.235.255.255', 1860829184, 1860960255, 'IN', 'India'), +('110.236.0.0', '110.237.255.255', 1860960256, 1861091327, 'CN', 'China'), +('110.238.0.0', '110.239.255.255', 1861091328, 1861222399, 'AU', 'Australia'), +('110.240.0.0', '111.63.255.255', 1861222400, 1866465279, 'CN', 'China'), +('111.64.0.0', '111.64.255.255', 1866465280, 1866530815, 'JP', 'Japan'), +('111.65.0.0', '111.65.127.255', 1866530816, 1866563583, 'SG', 'Singapore'), +('111.65.128.0', '111.65.191.255', 1866563584, 1866579967, 'KR', 'Korea, Republic of'), +('111.65.192.0', '111.65.223.255', 1866579968, 1866588159, 'JP', 'Japan'), +('111.65.224.0', '111.65.239.255', 1866588160, 1866592255, 'NZ', 'New Zealand'), +('111.66.0.0', '111.66.255.255', 1866596352, 1866661887, 'CN', 'China'), +('111.67.0.0', '111.67.15.255', 1866661888, 1866665983, 'AU', 'Australia'), +('111.67.32.0', '111.67.47.255', 1866670080, 1866674175, 'MY', 'Malaysia'), +('111.67.48.0', '111.67.63.255', 1866674176, 1866678271, 'TW', 'Taiwan'), +('111.67.64.0', '111.67.95.255', 1866678272, 1866686463, 'ID', 'Indonesia'), +('111.67.96.0', '111.67.111.255', 1866686464, 1866690559, 'KH', 'Cambodia'), +('111.67.112.0', '111.67.191.255', 1866690560, 1866711039, 'JP', 'Japan'), +('111.67.192.0', '111.67.207.255', 1866711040, 1866715135, 'CN', 'China'), +('111.67.208.0', '111.67.255.255', 1866715136, 1866727423, 'KR', 'Korea, Republic of'), +('111.68.0.0', '111.68.15.255', 1866727424, 1866731519, 'HK', 'Hong Kong'), +('111.68.16.0', '111.68.23.255', 1866731520, 1866733567, 'JP', 'Japan'), +('111.68.24.0', '111.68.31.255', 1866733568, 1866735615, 'ID', 'Indonesia'), +('111.68.32.0', '111.68.63.255', 1866735616, 1866743807, 'PH', 'Philippines'), +('111.68.64.0', '111.68.95.255', 1866743808, 1866751999, 'CN', 'China'), +('111.68.96.0', '111.68.111.255', 1866752000, 1866756095, 'PK', 'Pakistan'), +('111.68.112.0', '111.68.127.255', 1866756096, 1866760191, 'ID', 'Indonesia'), +('111.68.128.0', '111.68.255.255', 1866760192, 1866792959, 'JP', 'Japan'), +('111.69.0.0', '111.69.255.255', 1866792960, 1866858495, 'NZ', 'New Zealand'), +('111.70.0.0', '111.71.255.255', 1866858496, 1866989567, 'TW', 'Taiwan'), +('111.72.0.0', '111.79.255.255', 1866989568, 1867513855, 'CN', 'China'), +('111.80.0.0', '111.83.255.255', 1867513856, 1867775999, 'TW', 'Taiwan'), +('111.84.0.0', '111.84.255.255', 1867776000, 1867841535, 'TH', 'Thailand'), +('111.85.0.0', '111.85.255.255', 1867841536, 1867907071, 'CN', 'China'), +('111.86.0.0', '111.87.255.255', 1867907072, 1868038143, 'JP', 'Japan'), +('111.88.0.0', '111.88.255.255', 1868038144, 1868103679, 'PK', 'Pakistan'), +('111.89.0.0', '111.90.127.255', 1868103680, 1868201983, 'JP', 'Japan'), +('111.90.128.0', '111.90.159.255', 1868201984, 1868210175, 'MY', 'Malaysia'), +('111.90.160.0', '111.90.167.255', 1868210176, 1868212223, 'JP', 'Japan'), +('111.90.168.0', '111.90.175.255', 1868212224, 1868214271, 'IN', 'India'), +('111.90.176.0', '111.90.191.255', 1868214272, 1868218367, 'KH', 'Cambodia'), +('111.90.192.0', '111.90.255.255', 1868218368, 1868234751, 'SG', 'Singapore'), +('111.91.0.0', '111.91.127.255', 1868234752, 1868267519, 'IN', 'India'), +('111.91.128.0', '111.91.191.255', 1868267520, 1868283903, 'KR', 'Korea, Republic of'), +('111.91.192.0', '111.91.223.255', 1868283904, 1868292095, 'CN', 'China'), +('111.91.224.0', '111.91.231.255', 1868292096, 1868294143, 'IN', 'India'), +('111.91.232.0', '111.91.235.255', 1868294144, 1868295167, 'VN', 'Vietnam'), +('111.91.236.0', '111.91.239.255', 1868295168, 1868296191, 'HK', 'Hong Kong'), +('111.91.240.0', '111.91.255.255', 1868296192, 1868300287, 'JP', 'Japan'), +('111.92.0.0', '111.92.127.255', 1868300288, 1868333055, 'IN', 'India'), +('111.92.128.0', '111.92.159.255', 1868333056, 1868341247, 'PK', 'Pakistan'), +('111.92.160.0', '111.92.175.255', 1868341248, 1868345343, 'ID', 'Indonesia'), +('111.92.176.0', '111.92.191.255', 1868345344, 1868349439, 'AU', 'Australia'), +('111.92.192.0', '111.92.223.255', 1868349440, 1868357631, 'SG', 'Singapore'), +('111.92.224.0', '111.92.239.255', 1868357632, 1868361727, 'HK', 'Hong Kong'), +('111.92.240.0', '111.92.243.255', 1868361728, 1868362751, 'KH', 'Cambodia'), +('111.92.248.0', '111.92.255.255', 1868363776, 1868365823, 'BD', 'Bangladesh'), +('111.93.0.0', '111.93.255.255', 1868365824, 1868431359, 'IN', 'India'), +('111.94.0.0', '111.95.255.255', 1868431360, 1868562431, 'ID', 'Indonesia'), +('111.96.0.0', '111.111.255.255', 1868562432, 1869611007, 'JP', 'Japan'), +('111.112.0.0', '111.117.255.255', 1869611008, 1870004223, 'CN', 'China'), +('111.118.0.0', '111.118.127.255', 1870004224, 1870036991, 'KR', 'Korea, Republic of'), +('111.118.128.0', '111.118.159.255', 1870036992, 1870045183, 'KH', 'Cambodia'), +('111.128.0.0', '111.167.255.255', 1870659584, 1873281023, 'CN', 'China'), +('111.168.0.0', '111.169.255.255', 1873281024, 1873412095, 'JP', 'Japan'), +('111.170.0.0', '111.170.255.255', 1873412096, 1873477631, 'CN', 'China'), +('111.171.0.0', '111.171.127.255', 1873477632, 1873510399, 'KR', 'Korea, Republic of'), +('111.171.128.0', '111.171.255.255', 1873510400, 1873543167, 'JP', 'Japan'), +('111.172.0.0', '111.183.255.255', 1873543168, 1874329599, 'CN', 'China'), +('111.184.0.0', '111.185.255.255', 1874329600, 1874460671, 'TW', 'Taiwan'), +('111.186.0.0', '111.187.255.255', 1874460672, 1874591743, 'CN', 'China'), +('111.188.0.0', '111.191.255.255', 1874591744, 1874853887, 'JP', 'Japan'), +('112.0.0.0', '112.63.162.115', 1879048192, 1883218547, 'CN', 'China'), +('112.63.162.116', '112.63.162.119', 1883218548, 1883218551, 'ES', 'Spain'), +('112.63.162.120', '112.63.162.123', 1883218552, 1883218555, 'FR', 'France'), +('112.63.162.124', '112.63.162.147', 1883218556, 1883218579, 'CN', 'China'), +('112.63.162.148', '112.63.162.151', 1883218580, 1883218583, 'BE', 'Belgium'), +('112.63.162.152', '112.67.255.255', 1883218584, 1883504639, 'CN', 'China'), +('112.68.0.0', '112.71.255.255', 1883504640, 1883766783, 'JP', 'Japan'), +('112.72.0.0', '112.72.15.255', 1883766784, 1883770879, 'MN', 'Mongolia'), +('112.72.16.0', '112.72.63.255', 1883770880, 1883783167, 'KR', 'Korea, Republic of'), +('112.72.64.0', '112.72.127.255', 1883783168, 1883799551, 'VN', 'Vietnam'), +('112.72.128.0', '112.72.255.255', 1883799552, 1883832319, 'KR', 'Korea, Republic of'), +('112.73.0.0', '112.75.255.255', 1883832320, 1884028927, 'CN', 'China'), +('112.76.0.0', '112.77.255.255', 1884028928, 1884159999, 'KR', 'Korea, Republic of'), +('112.78.0.0', '112.78.15.255', 1884160000, 1884164095, 'VN', 'Vietnam'), +('112.78.16.0', '112.78.31.255', 1884164096, 1884168191, 'TW', 'Taiwan'), +('112.78.32.0', '112.78.47.255', 1884168192, 1884172287, 'ID', 'Indonesia'), +('112.78.48.0', '112.78.63.255', 1884172288, 1884176383, 'PH', 'Philippines'), +('112.78.64.0', '112.78.95.255', 1884176384, 1884184575, 'TW', 'Taiwan'), +('112.78.96.0', '112.78.103.255', 1884184576, 1884186623, 'ID', 'Indonesia'), +('112.78.104.0', '112.78.111.255', 1884186624, 1884188671, 'TW', 'Taiwan'), +('112.78.112.0', '112.78.127.255', 1884188672, 1884192767, 'JP', 'Japan'), +('112.78.128.0', '112.78.191.255', 1884192768, 1884209151, 'ID', 'Indonesia'), +('112.78.192.0', '112.78.223.255', 1884209152, 1884217343, 'JP', 'Japan'), +('112.78.224.0', '112.78.255.255', 1884217344, 1884225535, 'SG', 'Singapore'), +('112.79.0.0', '112.79.255.255', 1884225536, 1884291071, 'IN', 'India'), +('112.80.0.0', '112.103.255.255', 1884291072, 1885863935, 'CN', 'China'), +('112.104.0.0', '112.105.255.255', 1885863936, 1885995007, 'TW', 'Taiwan'), +('112.106.0.0', '112.108.255.255', 1885995008, 1886191615, 'KR', 'Korea, Republic of'), +('112.109.0.0', '112.109.15.255', 1886191616, 1886195711, 'PH', 'Philippines'), +('112.109.16.0', '112.109.23.255', 1886195712, 1886197759, 'ID', 'Indonesia'), +('112.109.32.0', '112.109.63.255', 1886199808, 1886207999, 'KR', 'Korea, Republic of'), +('112.109.64.0', '112.109.95.255', 1886208000, 1886216191, 'NZ', 'New Zealand'), +('112.109.128.0', '112.109.255.255', 1886224384, 1886257151, 'CN', 'China'), +('112.110.0.0', '112.110.255.255', 1886257152, 1886322687, 'IN', 'India'), +('112.111.0.0', '112.117.255.255', 1886322688, 1886781439, 'CN', 'China'), +('112.118.0.0', '112.120.255.255', 1886781440, 1886978047, 'HK', 'Hong Kong'), +('112.121.0.0', '112.121.31.255', 1886978048, 1886986239, 'KR', 'Korea, Republic of'), +('112.121.32.0', '112.121.47.255', 1886986240, 1886990335, 'TW', 'Taiwan'), +('112.121.48.0', '112.121.63.255', 1886990336, 1886994431, 'IN', 'India'), +('112.121.64.0', '112.121.127.255', 1886994432, 1887010815, 'TW', 'Taiwan'), +('112.121.128.0', '112.121.159.255', 1887010816, 1887019007, 'TH', 'Thailand'), +('112.121.160.0', '112.121.191.255', 1887019008, 1887027199, 'HK', 'Hong Kong'), +('112.121.192.0', '112.121.255.255', 1887027200, 1887043583, 'KR', 'Korea, Republic of'), +('112.122.0.0', '112.132.255.255', 1887043584, 1887764479, 'CN', 'China'), +('112.133.0.0', '112.133.191.255', 1887764480, 1887813631, 'KR', 'Korea, Republic of'), +('112.133.192.0', '112.133.255.255', 1887813632, 1887830015, 'IN', 'India'), +('112.134.0.0', '112.135.255.255', 1887830016, 1887961087, 'LK', 'Sri Lanka'), +('112.136.0.0', '112.136.127.255', 1887961088, 1887993855, 'JP', 'Japan'), +('112.136.128.0', '112.136.255.255', 1887993856, 1888026623, 'KR', 'Korea, Republic of'), +('112.137.0.0', '112.137.15.255', 1888026624, 1888030719, 'BD', 'Bangladesh'), +('112.137.16.0', '112.137.31.255', 1888030720, 1888034815, 'HK', 'Hong Kong'), +('112.137.32.0', '112.137.47.255', 1888034816, 1888038911, 'JP', 'Japan'), +('112.137.48.0', '112.137.55.255', 1888038912, 1888040959, 'IN', 'India'), +('112.137.56.0', '112.137.127.255', 1888040960, 1888059391, 'JP', 'Japan'), +('112.137.128.0', '112.137.143.255', 1888059392, 1888063487, 'VN', 'Vietnam'), +('112.137.144.0', '112.137.159.255', 1888063488, 1888067583, 'JP', 'Japan'), +('112.137.160.0', '112.137.175.255', 1888067584, 1888071679, 'MY', 'Malaysia'), +('112.137.176.0', '112.137.183.255', 1888071680, 1888073727, 'KR', 'Korea, Republic of'), +('112.137.184.0', '112.140.63.255', 1888073728, 1888239615, 'JP', 'Japan'), +('112.140.64.0', '112.140.127.255', 1888239616, 1888255999, 'KR', 'Korea, Republic of'), +('112.140.128.0', '112.140.143.255', 1888256000, 1888260095, 'JP', 'Japan'), +('112.140.144.0', '112.140.159.255', 1888260096, 1888264191, 'KR', 'Korea, Republic of'), +('112.140.160.0', '112.140.167.255', 1888264192, 1888266239, 'ID', 'Indonesia'), +('112.140.168.0', '112.140.175.255', 1888266240, 1888268287, 'JP', 'Japan'), +('112.140.176.0', '112.140.179.255', 1888268288, 1888269311, 'AU', 'Australia'), +('112.140.184.0', '112.140.187.255', 1888270336, 1888271359, 'SG', 'Singapore'), +('112.140.188.0', '112.140.191.255', 1888271360, 1888272383, 'TH', 'Thailand'), +('112.140.192.0', '112.140.255.255', 1888272384, 1888288767, 'KR', 'Korea, Republic of'), +('112.141.0.0', '112.141.127.255', 1888288768, 1888321535, 'AU', 'Australia'), +('112.142.0.0', '112.143.255.255', 1888354304, 1888485375, 'TH', 'Thailand'), +('112.144.0.0', '112.191.255.255', 1888485376, 1891631103, 'KR', 'Korea, Republic of'), +('112.192.0.0', '112.195.255.255', 1891631104, 1891893247, 'CN', 'China'), +('112.196.0.0', '112.196.191.255', 1891893248, 1891942399, 'IN', 'India'), +('112.196.192.0', '112.196.223.255', 1891942400, 1891950591, 'KR', 'Korea, Republic of'), +('112.196.224.0', '112.196.255.255', 1891950592, 1891958783, 'PH', 'Philippines'), +('112.197.0.0', '112.197.255.255', 1891958784, 1892024319, 'VN', 'Vietnam'), +('112.198.0.0', '112.199.127.255', 1892024320, 1892122623, 'PH', 'Philippines'), +('112.199.128.0', '112.199.255.255', 1892122624, 1892155391, 'SG', 'Singapore'), +('112.200.0.0', '112.211.255.255', 1892155392, 1892941823, 'PH', 'Philippines'), +('112.212.0.0', '112.213.31.255', 1892941824, 1893015551, 'KR', 'Korea, Republic of'), +('112.213.32.0', '112.213.47.255', 1893015552, 1893019647, 'AU', 'Australia'), +('112.213.64.0', '112.213.79.255', 1893023744, 1893027839, 'HK', 'Hong Kong'), +('112.213.80.0', '112.213.95.255', 1893027840, 1893031935, 'VN', 'Vietnam'), +('112.213.96.0', '112.213.127.255', 1893031936, 1893040127, 'HK', 'Hong Kong'), +('112.213.128.0', '112.213.255.255', 1893040128, 1893072895, 'AU', 'Australia'), +('112.214.0.0', '112.214.255.255', 1893072896, 1893138431, 'KR', 'Korea, Republic of'), +('112.215.0.0', '112.215.255.255', 1893138432, 1893203967, 'ID', 'Indonesia'), +('112.216.0.0', '112.223.255.255', 1893203968, 1893728255, 'KR', 'Korea, Republic of'), +('112.224.0.0', '113.9.255.255', 1893728256, 1896480767, 'CN', 'China'), +('113.10.0.0', '113.10.63.255', 1896480768, 1896497151, 'KR', 'Korea, Republic of'), +('113.10.64.0', '113.10.127.255', 1896497152, 1896513535, 'SG', 'Singapore'), +('113.10.128.0', '113.10.255.255', 1896513536, 1896546303, 'HK', 'Hong Kong'), +('113.11.0.0', '113.11.127.255', 1896546304, 1896579071, 'BD', 'Bangladesh'), +('113.11.128.0', '113.11.159.255', 1896579072, 1896587263, 'ID', 'Indonesia'), +('113.11.160.0', '113.11.175.255', 1896587264, 1896591359, 'SG', 'Singapore'), +('113.11.176.0', '113.11.183.255', 1896591360, 1896593407, 'ID', 'Indonesia'), +('113.11.184.0', '113.11.187.255', 1896593408, 1896594431, 'AU', 'Australia'), +('113.11.192.0', '113.11.223.255', 1896595456, 1896603647, 'CN', 'China'), +('113.11.224.0', '113.11.231.255', 1896603648, 1896605695, 'IN', 'India'), +('113.11.232.0', '113.11.235.255', 1896605696, 1896606719, 'AU', 'Australia'), +('113.11.240.0', '113.11.247.255', 1896607744, 1896609791, 'VU', 'Vanuatu'), +('113.12.0.0', '113.18.255.255', 1896611840, 1897070591, 'CN', 'China'), +('113.19.0.0', '113.19.255.255', 1897070592, 1897136127, 'IN', 'India'), +('113.20.0.0', '113.20.15.255', 1897136128, 1897140223, 'AU', 'Australia'), +('113.20.32.0', '113.20.47.255', 1897144320, 1897148415, 'NC', 'New Caledonia'), +('113.20.64.0', '113.20.95.255', 1897152512, 1897160703, 'FJ', 'Fiji'), +('113.20.128.0', '113.20.131.255', 1897168896, 1897169919, 'AU', 'Australia'), +('113.20.136.0', '113.20.143.255', 1897170944, 1897172991, 'ID', 'Indonesia'), +('113.20.144.0', '113.20.151.255', 1897172992, 1897175039, 'SG', 'Singapore'), +('113.20.152.0', '113.20.155.255', 1897175040, 1897176063, 'JP', 'Japan'), +('113.20.156.0', '113.20.159.255', 1897176064, 1897177087, 'SG', 'Singapore'), +('113.20.160.0', '113.20.191.255', 1897177088, 1897185279, 'PH', 'Philippines'), +('113.20.192.0', '113.20.255.255', 1897185280, 1897201663, 'JP', 'Japan'), +('113.21.0.0', '113.21.31.255', 1897201664, 1897209855, 'KR', 'Korea, Republic of'), +('113.21.32.0', '113.21.47.255', 1897209856, 1897213951, 'AU', 'Australia'), +('113.21.48.0', '113.21.63.255', 1897213952, 1897218047, 'JP', 'Japan'), +('113.21.80.0', '113.21.95.255', 1897222144, 1897226239, 'TW', 'Taiwan'), +('113.21.96.0', '113.21.111.255', 1897226240, 1897230335, 'NC', 'New Caledonia'), +('113.21.128.0', '113.21.159.255', 1897234432, 1897242623, 'MY', 'Malaysia'), +('113.21.160.0', '113.21.191.255', 1897242624, 1897250815, 'TW', 'Taiwan'), +('113.21.192.0', '113.21.223.255', 1897250816, 1897259007, 'HK', 'Hong Kong'), +('113.21.224.0', '113.21.227.255', 1897259008, 1897260031, 'NZ', 'New Zealand'), +('113.21.228.0', '113.21.231.255', 1897260032, 1897261055, 'BD', 'Bangladesh'), +('113.21.232.0', '113.21.239.255', 1897261056, 1897263103, 'JP', 'Japan'), +('113.21.240.0', '113.21.247.255', 1897263104, 1897265151, 'TH', 'Thailand'), +('113.21.248.0', '113.21.255.255', 1897265152, 1897267199, 'JP', 'Japan'), +('113.22.0.0', '113.23.127.255', 1897267200, 1897365503, 'VN', 'Vietnam'), +('113.23.128.0', '113.23.255.255', 1897365504, 1897398271, 'MY', 'Malaysia'), +('113.24.0.0', '113.27.255.255', 1897398272, 1897660415, 'CN', 'China'), +('113.28.0.0', '113.28.255.255', 1897660416, 1897725951, 'HK', 'Hong Kong'), +('113.29.0.0', '113.29.127.255', 1897725952, 1897758719, 'AP', 'Asia/Pacific Region'), +('113.29.128.0', '113.29.207.255', 1897758720, 1897779199, 'KR', 'Korea, Republic of'), +('113.29.208.0', '113.29.215.255', 1897779200, 1897781247, 'AU', 'Australia'), +('113.29.216.0', '113.29.223.255', 1897781248, 1897783295, 'JP', 'Japan'), +('113.29.224.0', '113.29.239.255', 1897783296, 1897787391, 'SG', 'Singapore'), +('113.29.240.0', '113.29.243.255', 1897787392, 1897788415, 'AU', 'Australia'), +('113.29.248.0', '113.29.251.255', 1897789440, 1897790463, 'KH', 'Cambodia'), +('113.29.252.0', '113.29.255.255', 1897790464, 1897791487, 'HK', 'Hong Kong'), +('113.30.0.0', '113.30.127.255', 1897791488, 1897824255, 'KR', 'Korea, Republic of'), +('113.30.128.0', '113.30.255.255', 1897824256, 1897857023, 'IN', 'India'), +('113.31.0.0', '113.31.255.255', 1897857024, 1897922559, 'CN', 'China'), +('113.32.0.0', '113.43.255.255', 1897922560, 1898708991, 'JP', 'Japan'), +('113.44.0.0', '113.51.255.255', 1898708992, 1899233279, 'CN', 'China'), +('113.52.0.0', '113.52.15.255', 1899233280, 1899237375, 'AU', 'Australia'), +('113.52.32.0', '113.52.63.255', 1899241472, 1899249663, 'VN', 'Vietnam'), +('113.52.64.0', '113.52.127.255', 1899249664, 1899266047, 'MO', 'Macau'), +('113.52.128.0', '113.52.131.255', 1899266048, 1899267071, 'AU', 'Australia'), +('113.52.136.0', '113.52.143.255', 1899268096, 1899270143, 'KR', 'Korea, Republic of'), +('113.52.144.0', '113.52.147.255', 1899270144, 1899271167, 'AU', 'Australia'), +('113.52.152.0', '113.52.155.255', 1899272192, 1899273215, 'SG', 'Singapore'), +('113.52.156.0', '113.52.159.255', 1899273216, 1899274239, 'JP', 'Japan'), +('113.52.160.0', '113.52.191.255', 1899274240, 1899282431, 'CN', 'China'), +('113.52.192.0', '113.52.223.255', 1899282432, 1899290623, 'KR', 'Korea, Republic of'), +('113.52.224.0', '113.52.239.255', 1899290624, 1899294719, 'AU', 'Australia'), +('113.53.0.0', '113.53.255.255', 1899298816, 1899364351, 'TH', 'Thailand'), +('113.54.0.0', '113.59.127.255', 1899364352, 1899724799, 'CN', 'China'), +('113.59.128.0', '113.59.191.255', 1899724800, 1899741183, 'KR', 'Korea, Republic of'), +('113.59.192.0', '113.59.223.255', 1899741184, 1899749375, 'LK', 'Sri Lanka'), +('113.59.224.0', '113.59.227.255', 1899749376, 1899750399, 'NZ', 'New Zealand'), +('113.59.232.0', '113.59.239.255', 1899751424, 1899753471, 'ID', 'Indonesia'), +('113.59.240.0', '113.59.255.255', 1899753472, 1899757567, 'HK', 'Hong Kong'), +('113.60.0.0', '113.61.31.255', 1899757568, 1899831295, 'KR', 'Korea, Republic of'), +('113.61.32.0', '113.61.63.255', 1899831296, 1899839487, 'PH', 'Philippines'), +('113.61.64.0', '113.61.103.255', 1899839488, 1899849727, 'AU', 'Australia'), +('113.61.104.0', '113.61.107.255', 1899849728, 1899850751, 'KR', 'Korea, Republic of'), +('113.61.108.0', '113.61.111.255', 1899850752, 1899851775, 'VN', 'Vietnam'), +('113.61.112.0', '113.61.127.255', 1899851776, 1899855871, 'JP', 'Japan'), +('113.61.128.0', '113.61.255.255', 1899855872, 1899888639, 'TW', 'Taiwan'), +('113.62.0.0', '113.129.255.255', 1899888640, 1904345087, 'CN', 'China'), +('113.130.0.0', '113.130.63.255', 1904345088, 1904361471, 'JP', 'Japan'), +('113.130.64.0', '113.130.95.255', 1904361472, 1904369663, 'KR', 'Korea, Republic of'), +('113.130.96.0', '113.130.119.255', 1904369664, 1904375807, 'CN', 'China'), +('113.130.120.0', '113.130.123.255', 1904375808, 1904376831, 'NZ', 'New Zealand'), +('113.130.128.0', '113.131.255.255', 1904377856, 1904476159, 'KR', 'Korea, Republic of'), +('113.132.0.0', '113.143.255.255', 1904476160, 1905262591, 'CN', 'China'), +('113.144.0.0', '113.159.255.255', 1905262592, 1906311167, 'JP', 'Japan'), +('113.160.0.0', '113.191.255.255', 1906311168, 1908408319, 'VN', 'Vietnam'), +('113.192.0.0', '113.192.63.255', 1908408320, 1908424703, 'AU', 'Australia'), +('113.192.128.0', '113.192.255.255', 1908441088, 1908473855, 'JP', 'Japan'), +('113.193.0.0', '113.193.255.255', 1908473856, 1908539391, 'IN', 'India'), +('113.194.0.0', '113.195.255.255', 1908539392, 1908670463, 'CN', 'China'), +('113.196.0.0', '113.196.255.255', 1908670464, 1908735999, 'TW', 'Taiwan'), +('113.197.0.0', '113.197.15.255', 1908736000, 1908740095, 'AU', 'Australia'), +('113.197.32.0', '113.197.47.255', 1908744192, 1908748287, 'JP', 'Japan'), +('113.197.48.0', '113.197.55.255', 1908748288, 1908750335, 'PK', 'Pakistan'), +('113.197.64.0', '113.197.67.255', 1908752384, 1908753407, 'NZ', 'New Zealand'), +('113.197.72.0', '113.197.79.255', 1908754432, 1908756479, 'PH', 'Philippines'), +('113.197.80.0', '113.197.95.255', 1908756480, 1908760575, 'KR', 'Korea, Republic of'), +('113.197.96.0', '113.197.99.255', 1908760576, 1908761599, 'NZ', 'New Zealand'), +('113.197.104.0', '113.197.107.255', 1908762624, 1908763647, 'IN', 'India'), +('113.197.112.0', '113.197.127.255', 1908764672, 1908768767, 'AP', 'Asia/Pacific Region'), +('113.197.128.0', '113.197.255.255', 1908768768, 1908801535, 'JP', 'Japan'), +('113.198.0.0', '113.199.127.255', 1908801536, 1908899839, 'KR', 'Korea, Republic of'), +('113.199.128.0', '113.199.255.255', 1908899840, 1908932607, 'NP', 'Nepal'), +('113.200.0.0', '113.202.255.255', 1908932608, 1909129215, 'CN', 'China'), +('113.203.0.0', '113.203.127.255', 1909129216, 1909161983, 'AU', 'Australia'), +('113.204.0.0', '113.207.255.255', 1909194752, 1909456895, 'CN', 'China'), +('113.208.0.0', '113.208.63.255', 1909456896, 1909473279, 'JP', 'Japan'), +('113.208.64.0', '113.208.95.255', 1909473280, 1909481471, 'HK', 'Hong Kong'), +('113.208.96.0', '113.209.255.255', 1909481472, 1909587967, 'CN', 'China'), +('113.210.0.0', '113.211.255.255', 1909587968, 1909719039, 'MY', 'Malaysia'), +('113.212.0.0', '113.212.63.255', 1909719040, 1909735423, 'CN', 'China'), +('113.212.64.0', '113.212.95.255', 1909735424, 1909743615, 'IN', 'India'), +('113.212.96.0', '113.212.99.255', 1909743616, 1909744639, 'AU', 'Australia'), +('113.212.104.0', '113.212.107.255', 1909745664, 1909746687, 'JP', 'Japan'), +('113.212.108.0', '113.212.111.255', 1909746688, 1909747711, 'MY', 'Malaysia'), +('113.212.112.0', '113.212.127.255', 1909747712, 1909751807, 'ID', 'Indonesia'), +('113.212.128.0', '113.212.159.255', 1909751808, 1909759999, 'JP', 'Japan'), +('113.212.160.0', '113.212.167.255', 1909760000, 1909762047, 'ID', 'Indonesia'), +('113.212.168.0', '113.212.171.255', 1909762048, 1909763071, 'AU', 'Australia'), +('113.212.176.0', '113.212.183.255', 1909764096, 1909766143, 'PH', 'Philippines'), +('113.212.184.0', '113.212.191.255', 1909766144, 1909768191, 'AU', 'Australia'), +('113.212.192.0', '113.212.255.255', 1909768192, 1909784575, 'HK', 'Hong Kong'), +('113.213.0.0', '113.213.127.255', 1909784576, 1909817343, 'CN', 'China'), +('113.213.128.0', '113.213.255.255', 1909817344, 1909850111, 'JP', 'Japan'), +('113.214.0.0', '113.215.255.255', 1909850112, 1909981183, 'CN', 'China'), +('113.216.0.0', '113.217.255.255', 1909981184, 1910112255, 'KR', 'Korea, Republic of'), +('113.218.0.0', '113.251.255.255', 1910112256, 1912340479, 'CN', 'China'), +('113.252.0.0', '113.255.255.255', 1912340480, 1912602623, 'HK', 'Hong Kong'), +('114.0.0.0', '114.15.255.255', 1912602624, 1913651199, 'ID', 'Indonesia'), +('114.16.0.0', '114.19.255.255', 1913651200, 1913913343, 'JP', 'Japan'), +('114.24.0.0', '114.27.255.255', 1914175488, 1914437631, 'TW', 'Taiwan'), +('114.28.0.0', '114.28.255.255', 1914437632, 1914503167, 'CN', 'China'), +('114.29.0.0', '114.29.191.255', 1914503168, 1914552319, 'KR', 'Korea, Republic of'), +('114.29.192.0', '114.29.223.255', 1914552320, 1914560511, 'SG', 'Singapore'), +('114.29.224.0', '114.29.255.255', 1914560512, 1914568703, 'KH', 'Cambodia'), +('114.30.0.0', '114.30.31.255', 1914568704, 1914576895, 'KR', 'Korea, Republic of'), +('114.30.32.0', '114.30.47.255', 1914576896, 1914580991, 'TW', 'Taiwan'), +('114.30.48.0', '114.30.63.255', 1914580992, 1914585087, 'KR', 'Korea, Republic of'), +('114.30.64.0', '114.30.71.255', 1914585088, 1914587135, 'AU', 'Australia'), +('114.30.72.0', '114.30.79.255', 1914587136, 1914589183, 'IN', 'India'), +('114.30.80.0', '114.30.95.255', 1914589184, 1914593279, 'ID', 'Indonesia'), +('114.30.96.0', '114.30.127.255', 1914593280, 1914601471, 'AU', 'Australia'), +('114.30.128.0', '114.30.255.255', 1914601472, 1914634239, 'KR', 'Korea, Republic of'), +('114.31.0.0', '114.31.31.255', 1914634240, 1914642431, 'BD', 'Bangladesh'), +('114.31.32.0', '114.31.63.255', 1914642432, 1914650623, 'KR', 'Korea, Republic of'), +('114.31.64.0', '114.31.71.255', 1914650624, 1914652671, 'MN', 'Mongolia'), +('114.31.72.0', '114.31.79.255', 1914652672, 1914654719, 'AU', 'Australia'), +('114.31.80.0', '114.31.95.255', 1914654720, 1914658815, 'JP', 'Japan'), +('114.31.96.0', '114.31.103.255', 1914658816, 1914660863, 'AU', 'Australia'), +('114.31.112.0', '114.31.127.255', 1914662912, 1914667007, 'KR', 'Korea, Republic of'), +('114.31.128.0', '114.31.191.255', 1914667008, 1914683391, 'IN', 'India'), +('114.31.192.0', '114.31.207.255', 1914683392, 1914687487, 'AU', 'Australia'), +('114.31.224.0', '114.31.239.255', 1914691584, 1914695679, 'IN', 'India'), +('114.31.240.0', '114.31.247.255', 1914695680, 1914697727, 'ID', 'Indonesia'), +('114.31.248.0', '114.31.255.255', 1914697728, 1914699775, 'IN', 'India'), +('114.32.0.0', '114.47.255.255', 1914699776, 1915748351, 'TW', 'Taiwan'), +('114.48.0.0', '114.51.255.255', 1915748352, 1916010495, 'JP', 'Japan'), +('114.52.0.0', '114.53.255.255', 1916010496, 1916141567, 'KR', 'Korea, Republic of'), +('114.54.0.0', '114.55.255.255', 1916141568, 1916272639, 'CN', 'China'), +('114.56.0.0', '114.59.255.255', 1916272640, 1916534783, 'ID', 'Indonesia'), +('114.60.0.0', '114.68.255.255', 1916534784, 1917124607, 'CN', 'China'), +('114.69.0.0', '114.69.175.255', 1917124608, 1917169663, 'JP', 'Japan'), +('114.69.176.0', '114.69.207.255', 1917169664, 1917177855, 'NC', 'New Caledonia'), +('114.69.224.0', '114.69.255.255', 1917181952, 1917190143, 'IN', 'India'), +('114.70.0.0', '114.71.255.255', 1917190144, 1917321215, 'KR', 'Korea, Republic of'), +('114.72.0.0', '114.79.255.255', 1917321216, 1917845503, 'AU', 'Australia'), +('114.80.0.0', '114.107.255.255', 1917845504, 1919680511, 'CN', 'China'), +('114.108.0.0', '114.108.191.255', 1919680512, 1919729663, 'KR', 'Korea, Republic of'), +('114.108.192.0', '114.108.255.255', 1919729664, 1919746047, 'PH', 'Philippines'), +('114.109.0.0', '114.109.255.255', 1919746048, 1919811583, 'TH', 'Thailand'), +('114.110.0.0', '114.110.15.255', 1919811584, 1919815679, 'CN', 'China'), +('114.110.16.0', '114.110.23.255', 1919815680, 1919817727, 'ID', 'Indonesia'), +('114.110.24.0', '114.110.31.255', 1919817728, 1919819775, 'KR', 'Korea, Republic of'), +('114.110.32.0', '114.110.39.255', 1919819776, 1919821823, 'NZ', 'New Zealand'), +('114.110.48.0', '114.110.63.255', 1919823872, 1919827967, 'JP', 'Japan'), +('114.110.64.0', '114.110.127.255', 1919827968, 1919844351, 'CN', 'China'), +('114.111.0.0', '114.111.31.255', 1919877120, 1919885311, 'CN', 'China'), +('114.111.32.0', '114.111.63.255', 1919885312, 1919893503, 'KR', 'Korea, Republic of'), +('114.111.64.0', '114.111.127.255', 1919893504, 1919909887, 'JP', 'Japan'), +('114.111.128.0', '114.111.143.255', 1919909888, 1919913983, 'AU', 'Australia'), +('114.111.160.0', '114.111.191.255', 1919918080, 1919926271, 'CN', 'China'), +('114.111.192.0', '114.111.255.255', 1919926272, 1919942655, 'KR', 'Korea, Republic of'), +('114.112.0.0', '114.119.255.255', 1919942656, 1920466943, 'CN', 'China'), +('114.120.0.0', '114.127.255.255', 1920466944, 1920991231, 'ID', 'Indonesia'), +('114.128.0.0', '114.128.255.255', 1920991232, 1921056767, 'TH', 'Thailand'), +('114.129.0.0', '114.129.7.255', 1921056768, 1921058815, 'JP', 'Japan'), +('114.129.8.0', '114.129.15.255', 1921058816, 1921060863, 'BD', 'Bangladesh'), +('114.129.16.0', '114.129.23.255', 1921060864, 1921062911, 'ID', 'Indonesia'), +('114.129.24.0', '114.129.31.255', 1921062912, 1921064959, 'LA', 'Lao People''s Democratic Republic'), +('114.129.32.0', '114.129.47.255', 1921064960, 1921069055, 'SG', 'Singapore'), +('114.129.48.0', '114.129.63.255', 1921069056, 1921073151, 'JP', 'Japan'), +('114.129.64.0', '114.129.127.255', 1921073152, 1921089535, 'KR', 'Korea, Republic of'), +('114.129.128.0', '114.129.191.255', 1921089536, 1921105919, 'AU', 'Australia'), +('114.129.192.0', '114.129.255.255', 1921105920, 1921122303, 'KR', 'Korea, Republic of'), +('114.130.0.0', '114.130.255.255', 1921122304, 1921187839, 'BD', 'Bangladesh'), +('114.132.0.0', '114.132.255.255', 1921253376, 1921318911, 'CN', 'China'), +('114.133.0.0', '114.133.255.255', 1921318912, 1921384447, 'MY', 'Malaysia'), +('114.134.0.0', '114.134.15.255', 1921384448, 1921388543, 'NZ', 'New Zealand'), +('114.134.32.0', '114.134.63.255', 1921392640, 1921400831, 'JP', 'Japan'), +('114.134.64.0', '114.134.79.255', 1921400832, 1921404927, 'ID', 'Indonesia'), +('114.134.80.0', '114.134.87.255', 1921404928, 1921406975, 'HK', 'Hong Kong'), +('114.134.88.0', '114.134.95.255', 1921406976, 1921409023, 'BD', 'Bangladesh'), +('114.134.96.0', '114.134.159.255', 1921409024, 1921425407, 'JP', 'Japan'), +('114.134.160.0', '114.134.191.255', 1921425408, 1921433599, 'NZ', 'New Zealand'), +('114.134.192.0', '114.134.255.255', 1921433600, 1921449983, 'JP', 'Japan'), +('114.135.0.0', '114.135.255.255', 1921449984, 1921515519, 'CN', 'China'), +('114.136.0.0', '114.137.255.255', 1921515520, 1921646591, 'TW', 'Taiwan'), +('114.138.0.0', '114.139.255.255', 1921646592, 1921777663, 'CN', 'China'), +('114.140.0.0', '114.140.255.255', 1921777664, 1921843199, 'TW', 'Taiwan'), +('114.141.0.0', '114.141.31.255', 1921843200, 1921851391, 'KR', 'Korea, Republic of'), +('114.141.32.0', '114.141.39.255', 1921851392, 1921853439, 'JP', 'Japan'), +('114.141.40.0', '114.141.47.255', 1921853440, 1921855487, 'KR', 'Korea, Republic of'), +('114.141.48.0', '114.141.63.255', 1921855488, 1921859583, 'ID', 'Indonesia'), +('114.141.64.0', '114.141.71.255', 1921859584, 1921861631, 'IN', 'India'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('114.141.72.0', '114.141.79.255', 1921861632, 1921863679, 'SG', 'Singapore'), +('114.141.80.0', '114.141.87.255', 1921863680, 1921865727, 'BD', 'Bangladesh'), +('114.141.88.0', '114.141.95.255', 1921865728, 1921867775, 'ID', 'Indonesia'), +('114.141.96.0', '114.141.111.255', 1921867776, 1921871871, 'AU', 'Australia'), +('114.141.128.0', '114.141.191.255', 1921875968, 1921892351, 'CN', 'China'), +('114.141.192.0', '114.141.207.255', 1921892352, 1921896447, 'AU', 'Australia'), +('114.141.224.0', '114.141.255.255', 1921900544, 1921908735, 'KR', 'Korea, Republic of'), +('114.142.0.0', '114.142.135.255', 1921908736, 1921943551, 'JP', 'Japan'), +('114.142.136.0', '114.142.143.255', 1921943552, 1921945599, 'IN', 'India'), +('114.142.144.0', '114.142.159.255', 1921945600, 1921949695, 'HK', 'Hong Kong'), +('114.142.160.0', '114.142.175.255', 1921949696, 1921953791, 'AU', 'Australia'), +('114.142.192.0', '114.142.223.255', 1921957888, 1921966079, 'GU', 'Guam'), +('114.143.0.0', '114.143.255.255', 1921974272, 1922039807, 'IN', 'India'), +('114.144.0.0', '114.195.255.255', 1922039808, 1925447679, 'JP', 'Japan'), +('114.196.0.0', '114.197.255.255', 1925447680, 1925578751, 'CN', 'China'), +('114.198.0.0', '114.198.63.255', 1925578752, 1925595135, 'AU', 'Australia'), +('114.198.128.0', '114.198.159.255', 1925611520, 1925619711, 'PH', 'Philippines'), +('114.198.160.0', '114.198.191.255', 1925619712, 1925627903, 'TW', 'Taiwan'), +('114.198.192.0', '114.198.231.255', 1925627904, 1925638143, 'JP', 'Japan'), +('114.198.232.0', '114.198.232.255', 1925638144, 1925638399, 'SA', 'Saudi Arabia'), +('114.198.233.0', '114.198.233.255', 1925638400, 1925638655, 'PK', 'Pakistan'), +('114.198.234.0', '114.198.234.255', 1925638656, 1925638911, 'KW', 'Kuwait'), +('114.198.235.0', '114.198.235.255', 1925638912, 1925639167, 'EG', 'Egypt'), +('114.198.236.0', '114.198.236.255', 1925639168, 1925639423, 'AE', 'United Arab Emirates'), +('114.198.237.0', '114.198.237.255', 1925639424, 1925639679, 'EG', 'Egypt'), +('114.198.238.0', '114.198.238.255', 1925639680, 1925639935, 'KW', 'Kuwait'), +('114.198.239.0', '114.198.239.255', 1925639936, 1925640191, 'SA', 'Saudi Arabia'), +('114.198.240.0', '114.198.247.255', 1925640192, 1925642239, 'ID', 'Indonesia'), +('114.198.248.0', '114.198.255.255', 1925642240, 1925644287, 'AU', 'Australia'), +('114.199.0.0', '114.199.63.255', 1925644288, 1925660671, 'KR', 'Korea, Republic of'), +('114.199.64.0', '114.199.79.255', 1925660672, 1925664767, 'HK', 'Hong Kong'), +('114.199.80.0', '114.199.127.255', 1925664768, 1925677055, 'ID', 'Indonesia'), +('114.199.128.0', '114.207.255.255', 1925677056, 1926234111, 'KR', 'Korea, Republic of'), +('114.208.0.0', '114.255.255.255', 1926234112, 1929379839, 'CN', 'China'), +('115.0.0.0', '115.23.255.255', 1929379840, 1930952703, 'KR', 'Korea, Republic of'), +('115.24.0.0', '115.29.255.255', 1930952704, 1931345919, 'CN', 'China'), +('115.30.0.0', '115.30.31.255', 1931345920, 1931354111, 'JP', 'Japan'), +('115.30.32.0', '115.30.63.255', 1931354112, 1931362303, 'AU', 'Australia'), +('115.30.64.0', '115.30.127.255', 1931362304, 1931378687, 'TW', 'Taiwan'), +('115.30.128.0', '115.31.63.255', 1931378688, 1931427839, 'JP', 'Japan'), +('115.31.64.0', '115.31.79.255', 1931427840, 1931431935, 'PH', 'Philippines'), +('115.31.80.0', '115.31.87.255', 1931431936, 1931433983, 'JP', 'Japan'), +('115.31.88.0', '115.31.95.255', 1931433984, 1931436031, 'AU', 'Australia'), +('115.31.96.0', '115.31.127.255', 1931436032, 1931444223, 'KR', 'Korea, Republic of'), +('115.31.128.0', '115.31.191.255', 1931444224, 1931460607, 'TH', 'Thailand'), +('115.31.192.0', '115.31.223.255', 1931460608, 1931468799, 'JP', 'Japan'), +('115.31.224.0', '115.31.255.255', 1931468800, 1931476991, 'SG', 'Singapore'), +('115.32.0.0', '115.35.255.255', 1931476992, 1931739135, 'CN', 'China'), +('115.36.0.0', '115.39.255.255', 1931739136, 1932001279, 'JP', 'Japan'), +('115.40.0.0', '115.41.255.255', 1932001280, 1932132351, 'KR', 'Korea, Republic of'), +('115.42.0.0', '115.42.63.255', 1932132352, 1932148735, 'AU', 'Australia'), +('115.42.64.0', '115.42.79.255', 1932148736, 1932152831, 'PK', 'Pakistan'), +('115.42.96.0', '115.42.111.255', 1932156928, 1932161023, 'JP', 'Japan'), +('115.42.112.0', '115.42.119.255', 1932161024, 1932163071, 'TW', 'Taiwan'), +('115.42.120.0', '115.42.127.255', 1932163072, 1932165119, 'PH', 'Philippines'), +('115.42.128.0', '115.42.255.255', 1932165120, 1932197887, 'SG', 'Singapore'), +('115.43.0.0', '115.43.255.255', 1932197888, 1932263423, 'TW', 'Taiwan'), +('115.44.0.0', '115.63.255.255', 1932263424, 1933574143, 'CN', 'China'), +('115.64.0.0', '115.64.255.255', 1933574144, 1933639679, 'AU', 'Australia'), +('115.65.0.0', '115.65.255.255', 1933639680, 1933705215, 'JP', 'Japan'), +('115.66.0.0', '115.66.255.255', 1933705216, 1933770751, 'SG', 'Singapore'), +('115.67.0.0', '115.67.255.255', 1933770752, 1933836287, 'TH', 'Thailand'), +('115.68.0.0', '115.68.255.255', 1933836288, 1933901823, 'KR', 'Korea, Republic of'), +('115.69.0.0', '115.69.31.255', 1933901824, 1933910015, 'AU', 'Australia'), +('115.69.64.0', '115.69.79.255', 1933918208, 1933922303, 'KH', 'Cambodia'), +('115.69.80.0', '115.69.95.255', 1933922304, 1933926399, 'IN', 'India'), +('115.69.96.0', '115.69.127.255', 1933926400, 1933934591, 'KR', 'Korea, Republic of'), +('115.69.128.0', '115.69.159.255', 1933934592, 1933942783, 'IN', 'India'), +('115.69.160.0', '115.69.191.255', 1933942784, 1933950975, 'AU', 'Australia'), +('115.69.192.0', '115.69.207.255', 1933950976, 1933955071, 'JP', 'Japan'), +('115.69.208.0', '115.69.215.255', 1933955072, 1933957119, 'BD', 'Bangladesh'), +('115.69.216.0', '115.69.223.255', 1933957120, 1933959167, 'ID', 'Indonesia'), +('115.69.224.0', '115.69.239.255', 1933959168, 1933963263, 'JP', 'Japan'), +('115.69.240.0', '115.69.255.255', 1933963264, 1933967359, 'IN', 'India'), +('115.70.0.0', '115.70.255.255', 1933967360, 1934032895, 'AU', 'Australia'), +('115.72.0.0', '115.79.255.255', 1934098432, 1934622719, 'VN', 'Vietnam'), +('115.80.0.0', '115.83.255.255', 1934622720, 1934884863, 'TW', 'Taiwan'), +('115.84.0.0', '115.84.63.255', 1934884864, 1934901247, 'CN', 'China'), +('115.84.64.0', '115.84.127.255', 1934901248, 1934917631, 'LA', 'Lao People''s Democratic Republic'), +('115.84.128.0', '115.84.159.255', 1934917632, 1934925823, 'MV', 'Maldives'), +('115.84.160.0', '115.84.167.255', 1934925824, 1934927871, 'KR', 'Korea, Republic of'), +('115.84.168.0', '115.84.175.255', 1934927872, 1934929919, 'PH', 'Philippines'), +('115.84.176.0', '115.84.183.255', 1934929920, 1934931967, 'VN', 'Vietnam'), +('115.84.184.0', '115.84.191.255', 1934931968, 1934934015, 'JP', 'Japan'), +('115.84.192.0', '115.84.223.255', 1934934016, 1934942207, 'CN', 'China'), +('115.84.224.0', '115.85.63.255', 1934942208, 1934966783, 'PH', 'Philippines'), +('115.85.64.0', '115.85.95.255', 1934966784, 1934974975, 'ID', 'Indonesia'), +('115.85.96.0', '115.85.127.255', 1934974976, 1934983167, 'JP', 'Japan'), +('115.85.128.0', '115.85.135.255', 1934983168, 1934985215, 'AU', 'Australia'), +('115.85.144.0', '115.85.159.255', 1934987264, 1934991359, 'TW', 'Taiwan'), +('115.85.160.0', '115.85.191.255', 1934991360, 1934999551, 'KR', 'Korea, Republic of'), +('115.85.192.0', '115.85.255.255', 1934999552, 1935015935, 'CN', 'China'), +('115.86.0.0', '115.86.255.255', 1935015936, 1935081471, 'KR', 'Korea, Republic of'), +('115.87.0.0', '115.87.255.255', 1935081472, 1935147007, 'TH', 'Thailand'), +('115.88.0.0', '115.95.255.255', 1935147008, 1935671295, 'KR', 'Korea, Republic of'), +('115.96.0.0', '115.99.255.255', 1935671296, 1935933439, 'IN', 'India'), +('115.100.0.0', '115.107.255.255', 1935933440, 1936457727, 'CN', 'China'), +('115.108.0.0', '115.119.255.255', 1936457728, 1937244159, 'IN', 'India'), +('115.120.0.0', '115.123.255.255', 1937244160, 1937506303, 'CN', 'China'), +('115.124.0.0', '115.124.7.255', 1937506304, 1937508351, 'AU', 'Australia'), +('115.124.16.0', '115.124.31.255', 1937510400, 1937514495, 'CN', 'China'), +('115.124.32.0', '115.124.39.255', 1937514496, 1937516543, 'AU', 'Australia'), +('115.124.64.0', '115.124.95.255', 1937522688, 1937530879, 'ID', 'Indonesia'), +('115.124.96.0', '115.124.103.255', 1937530880, 1937532927, 'US', 'United States'), +('115.124.104.0', '115.124.109.255', 1937532928, 1937534463, 'IN', 'India'), +('115.124.110.0', '115.124.111.255', 1937534464, 1937534975, 'GB', 'United Kingdom'), +('115.124.112.0', '115.124.127.255', 1937534976, 1937539071, 'IN', 'India'), +('115.124.128.0', '115.125.255.255', 1937539072, 1937637375, 'JP', 'Japan'), +('115.126.0.0', '115.126.127.255', 1937637376, 1937670143, 'HK', 'Hong Kong'), +('115.126.128.0', '115.126.135.255', 1937670144, 1937672191, 'NZ', 'New Zealand'), +('115.126.144.0', '115.126.159.255', 1937674240, 1937678335, 'JP', 'Japan'), +('115.126.160.0', '115.126.175.255', 1937678336, 1937682431, 'NC', 'New Caledonia'), +('115.126.192.0', '115.126.255.255', 1937686528, 1937702911, 'KR', 'Korea, Republic of'), +('115.127.0.0', '115.127.255.255', 1937702912, 1937768447, 'BD', 'Bangladesh'), +('115.128.0.0', '115.131.255.255', 1937768448, 1938030591, 'AU', 'Australia'), +('115.132.0.0', '115.135.255.255', 1938030592, 1938292735, 'MY', 'Malaysia'), +('115.136.0.0', '115.145.255.255', 1938292736, 1938948095, 'KR', 'Korea, Republic of'), +('115.146.0.0', '115.146.63.255', 1938948096, 1938964479, 'JP', 'Japan'), +('115.146.64.0', '115.146.79.255', 1938964480, 1938968575, 'AU', 'Australia'), +('115.146.96.0', '115.146.111.255', 1938972672, 1938976767, 'MY', 'Malaysia'), +('115.146.112.0', '115.146.119.255', 1938976768, 1938978815, 'SG', 'Singapore'), +('115.146.120.0', '115.146.127.255', 1938978816, 1938980863, 'VN', 'Vietnam'), +('115.146.128.0', '115.147.255.255', 1938980864, 1939079167, 'PH', 'Philippines'), +('115.148.0.0', '115.159.255.255', 1939079168, 1939865599, 'CN', 'China'), +('115.160.0.0', '115.160.127.255', 1939865600, 1939898367, 'KR', 'Korea, Republic of'), +('115.160.128.0', '115.160.191.255', 1939898368, 1939914751, 'HK', 'Hong Kong'), +('115.160.192.0', '115.160.255.255', 1939914752, 1939931135, 'IN', 'India'), +('115.161.0.0', '115.161.255.255', 1939931136, 1939996671, 'KR', 'Korea, Republic of'), +('115.162.0.0', '115.163.255.255', 1939996672, 1940127743, 'JP', 'Japan'), +('115.164.0.0', '115.164.255.255', 1940127744, 1940193279, 'MY', 'Malaysia'), +('115.165.0.0', '115.165.159.255', 1940193280, 1940234239, 'JP', 'Japan'), +('115.165.160.0', '115.165.167.255', 1940234240, 1940236287, 'VN', 'Vietnam'), +('115.165.168.0', '115.165.175.255', 1940236288, 1940238335, 'AU', 'Australia'), +('115.165.176.0', '115.165.183.255', 1940238336, 1940240383, 'KR', 'Korea, Republic of'), +('115.165.184.0', '115.165.191.255', 1940240384, 1940242431, 'JP', 'Japan'), +('115.165.192.0', '115.165.255.255', 1940242432, 1940258815, 'TW', 'Taiwan'), +('115.166.0.0', '115.166.63.255', 1940258816, 1940275199, 'AU', 'Australia'), +('115.166.64.0', '115.166.95.255', 1940275200, 1940283391, 'PH', 'Philippines'), +('115.166.96.0', '115.166.127.255', 1940283392, 1940291583, 'ID', 'Indonesia'), +('115.166.128.0', '115.166.143.255', 1940291584, 1940295679, 'HK', 'Hong Kong'), +('115.166.144.0', '115.166.255.255', 1940295680, 1940324351, 'JP', 'Japan'), +('115.167.0.0', '115.167.127.255', 1940324352, 1940357119, 'PK', 'Pakistan'), +('115.167.128.0', '115.167.255.255', 1940357120, 1940389887, 'JP', 'Japan'), +('115.168.0.0', '115.175.255.255', 1940389888, 1940914175, 'CN', 'China'), +('115.176.0.0', '115.177.255.255', 1940914176, 1941045247, 'JP', 'Japan'), +('115.178.0.0', '115.178.15.255', 1941045248, 1941049343, 'AP', 'Asia/Pacific Region'), +('115.178.16.0', '115.178.23.255', 1941049344, 1941051391, 'AU', 'Australia'), +('115.178.24.0', '115.178.27.255', 1941051392, 1941052415, 'KH', 'Cambodia'), +('115.178.28.0', '115.178.31.255', 1941052416, 1941053439, 'AU', 'Australia'), +('115.178.32.0', '115.178.47.255', 1941053440, 1941057535, 'KR', 'Korea, Republic of'), +('115.178.48.0', '115.178.55.255', 1941057536, 1941059583, 'ID', 'Indonesia'), +('115.178.56.0', '115.178.63.255', 1941059584, 1941061631, 'TH', 'Thailand'), +('115.178.64.0', '115.178.95.255', 1941061632, 1941069823, 'KR', 'Korea, Republic of'), +('115.178.96.0', '115.178.103.255', 1941069824, 1941071871, 'IN', 'India'), +('115.178.104.0', '115.178.111.255', 1941071872, 1941073919, 'AU', 'Australia'), +('115.178.112.0', '115.178.119.255', 1941073920, 1941075967, 'JP', 'Japan'), +('115.178.120.0', '115.178.255.255', 1941075968, 1941110783, 'ID', 'Indonesia'), +('115.179.0.0', '115.179.255.255', 1941110784, 1941176319, 'JP', 'Japan'), +('115.180.0.0', '115.183.255.255', 1941176320, 1941438463, 'CN', 'China'), +('115.184.0.0', '115.185.255.255', 1941438464, 1941569535, 'IN', 'India'), +('115.186.0.0', '115.186.191.255', 1941569536, 1941618687, 'PK', 'Pakistan'), +('115.186.192.0', '115.186.255.255', 1941618688, 1941635071, 'AU', 'Australia'), +('115.187.0.0', '115.187.15.255', 1941635072, 1941639167, 'IN', 'India'), +('115.187.16.0', '115.187.31.255', 1941639168, 1941643263, 'NP', 'Nepal'), +('115.187.32.0', '115.187.63.255', 1941643264, 1941651455, 'IN', 'India'), +('115.187.64.0', '115.187.79.255', 1941651456, 1941655551, 'JP', 'Japan'), +('115.187.80.0', '115.187.87.255', 1941655552, 1941657599, 'KR', 'Korea, Republic of'), +('115.187.88.0', '115.187.91.255', 1941657600, 1941658623, 'MN', 'Mongolia'), +('115.187.92.0', '115.187.95.255', 1941658624, 1941659647, 'JP', 'Japan'), +('115.187.96.0', '115.187.127.255', 1941659648, 1941667839, 'NZ', 'New Zealand'), +('115.187.128.0', '115.187.255.255', 1941667840, 1941700607, 'AU', 'Australia'), +('115.188.0.0', '115.189.255.255', 1941700608, 1941831679, 'NZ', 'New Zealand'), +('115.192.0.0', '115.239.255.255', 1941962752, 1945108479, 'CN', 'China'), +('115.240.0.0', '115.255.255.255', 1945108480, 1946157055, 'IN', 'India'), +('116.0.0.0', '116.0.7.255', 1946157056, 1946159103, 'ID', 'Indonesia'), +('116.0.8.0', '116.0.15.255', 1946159104, 1946161151, 'MY', 'Malaysia'), +('116.0.16.0', '116.0.23.255', 1946161152, 1946163199, 'AU', 'Australia'), +('116.0.24.0', '116.0.31.255', 1946163200, 1946165247, 'HK', 'Hong Kong'), +('116.0.32.0', '116.0.63.255', 1946165248, 1946173439, 'PK', 'Pakistan'), +('116.0.64.0', '116.0.64.63', 1946173440, 1946173503, 'MY', 'Malaysia'), +('116.0.64.64', '116.0.64.95', 1946173504, 1946173535, 'SG', 'Singapore'), +('116.0.64.96', '116.0.64.127', 1946173536, 1946173567, 'AP', 'Asia/Pacific Region'), +('116.0.64.128', '116.0.64.191', 1946173568, 1946173631, 'HK', 'Hong Kong'), +('116.0.64.192', '116.0.64.223', 1946173632, 1946173663, 'AP', 'Asia/Pacific Region'), +('116.0.64.224', '116.0.64.239', 1946173664, 1946173679, 'PH', 'Philippines'), +('116.0.64.240', '116.0.64.247', 1946173680, 1946173687, 'TW', 'Taiwan'), +('116.0.64.248', '116.0.64.255', 1946173688, 1946173695, 'AP', 'Asia/Pacific Region'), +('116.0.65.0', '116.0.65.255', 1946173696, 1946173951, 'TW', 'Taiwan'), +('116.0.66.0', '116.0.67.255', 1946173952, 1946174463, 'AP', 'Asia/Pacific Region'), +('116.0.68.0', '116.0.69.0', 1946174464, 1946174720, 'SG', 'Singapore'), +('116.0.69.1', '116.0.71.255', 1946174721, 1946175487, 'AP', 'Asia/Pacific Region'), +('116.0.72.0', '116.0.75.255', 1946175488, 1946176511, 'SY', 'Syrian Arab Republic'), +('116.0.76.0', '116.0.76.255', 1946176512, 1946176767, 'PH', 'Philippines'), +('116.0.77.0', '116.0.79.255', 1946176768, 1946177535, 'AP', 'Asia/Pacific Region'), +('116.0.80.0', '116.0.80.255', 1946177536, 1946177791, 'SG', 'Singapore'), +('116.0.81.0', '116.0.95.255', 1946177792, 1946181631, 'AP', 'Asia/Pacific Region'), +('116.0.96.0', '116.0.127.255', 1946181632, 1946189823, 'MY', 'Malaysia'), +('116.0.128.0', '116.0.255.255', 1946189824, 1946222591, 'JP', 'Japan'), +('116.1.0.0', '116.11.255.255', 1946222592, 1946943487, 'CN', 'China'), +('116.12.0.0', '116.12.31.255', 1946943488, 1946951679, 'JP', 'Japan'), +('116.12.32.0', '116.12.39.255', 1946951680, 1946953727, 'BD', 'Bangladesh'), +('116.12.40.0', '116.12.47.255', 1946953728, 1946955775, 'ID', 'Indonesia'), +('116.12.48.0', '116.12.55.255', 1946955776, 1946957823, 'SG', 'Singapore'), +('116.12.64.0', '116.12.127.255', 1946959872, 1946976255, 'LK', 'Sri Lanka'), +('116.12.128.0', '116.12.255.255', 1946976256, 1947009023, 'SG', 'Singapore'), +('116.13.0.0', '116.13.255.255', 1947009024, 1947074559, 'CN', 'China'), +('116.14.0.0', '116.15.255.255', 1947074560, 1947205631, 'SG', 'Singapore'), +('116.16.0.0', '116.31.255.255', 1947205632, 1948254207, 'CN', 'China'), +('116.32.0.0', '116.47.255.255', 1948254208, 1949302783, 'KR', 'Korea, Republic of'), +('116.48.0.0', '116.49.255.255', 1949302784, 1949433855, 'HK', 'Hong Kong'), +('116.50.0.0', '116.50.7.255', 1949433856, 1949435903, 'IN', 'India'), +('116.50.8.0', '116.50.15.255', 1949435904, 1949437951, 'HK', 'Hong Kong'), +('116.50.16.0', '116.50.23.255', 1949437952, 1949439999, 'AU', 'Australia'), +('116.50.24.0', '116.50.31.255', 1949440000, 1949442047, 'ID', 'Indonesia'), +('116.50.32.0', '116.50.47.255', 1949442048, 1949446143, 'TW', 'Taiwan'), +('116.50.48.0', '116.50.55.255', 1949446144, 1949448191, 'JP', 'Japan'), +('116.50.56.0', '116.50.63.255', 1949448192, 1949450239, 'AU', 'Australia'), +('116.50.64.0', '116.50.127.255', 1949450240, 1949466623, 'IN', 'India'), +('116.50.128.0', '116.50.255.255', 1949466624, 1949499391, 'PH', 'Philippines'), +('116.51.0.0', '116.51.255.255', 1949499392, 1949564927, 'SG', 'Singapore'), +('116.52.0.0', '116.57.255.255', 1949564928, 1949958143, 'CN', 'China'), +('116.58.0.0', '116.58.127.255', 1949958144, 1949990911, 'PK', 'Pakistan'), +('116.58.128.0', '116.58.143.255', 1949990912, 1949995007, 'CN', 'China'), +('116.58.144.0', '116.58.191.255', 1949995008, 1950007295, 'JP', 'Japan'), +('116.58.192.0', '116.58.199.255', 1950007296, 1950009343, 'ID', 'Indonesia'), +('116.58.200.0', '116.58.207.255', 1950009344, 1950011391, 'BD', 'Bangladesh'), +('116.58.208.0', '116.58.223.255', 1950011392, 1950015487, 'CN', 'China'), +('116.58.224.0', '116.58.255.255', 1950015488, 1950023679, 'TH', 'Thailand'), +('116.59.0.0', '116.59.255.255', 1950023680, 1950089215, 'TW', 'Taiwan'), +('116.60.0.0', '116.63.255.255', 1950089216, 1950351359, 'CN', 'China'), +('116.64.0.0', '116.65.255.255', 1950351360, 1950482431, 'JP', 'Japan'), +('116.66.0.0', '116.66.127.255', 1950482432, 1950515199, 'CN', 'China'), +('116.66.128.0', '116.66.139.255', 1950515200, 1950518271, 'US', 'United States'), +('116.66.140.0', '116.66.141.255', 1950518272, 1950518783, 'IN', 'India'), +('116.66.142.0', '116.66.143.255', 1950518784, 1950519295, 'NL', 'Netherlands'), +('116.66.144.0', '116.66.159.255', 1950519296, 1950523391, 'IN', 'India'), +('116.66.160.0', '116.66.175.255', 1950523392, 1950527487, 'AU', 'Australia'), +('116.66.192.0', '116.66.199.255', 1950531584, 1950533631, 'NP', 'Nepal'), +('116.66.200.0', '116.66.207.255', 1950533632, 1950535679, 'ID', 'Indonesia'), +('116.66.208.0', '116.66.223.255', 1950535680, 1950539775, 'HK', 'Hong Kong'), +('116.66.224.0', '116.66.231.255', 1950539776, 1950541823, 'AU', 'Australia'), +('116.66.240.0', '116.66.247.255', 1950543872, 1950545919, 'NZ', 'New Zealand'), +('116.66.248.0', '116.66.255.255', 1950545920, 1950547967, 'PH', 'Philippines'), +('116.67.0.0', '116.67.127.255', 1950547968, 1950580735, 'KR', 'Korea, Republic of'), +('116.68.0.0', '116.68.15.255', 1950613504, 1950617599, 'GU', 'Guam'), +('116.68.32.0', '116.68.63.255', 1950621696, 1950629887, 'KR', 'Korea, Republic of'), +('116.68.64.0', '116.68.127.255', 1950629888, 1950646271, 'IN', 'India'), +('116.68.128.0', '116.68.135.255', 1950646272, 1950648319, 'VN', 'Vietnam'), +('116.68.136.0', '116.68.143.255', 1950648320, 1950650367, 'PH', 'Philippines'), +('116.68.144.0', '116.68.159.255', 1950650368, 1950654463, 'TH', 'Thailand'), +('116.68.160.0', '116.68.175.255', 1950654464, 1950658559, 'ID', 'Indonesia'), +('116.68.176.0', '116.68.183.255', 1950658560, 1950660607, 'PH', 'Philippines'), +('116.68.184.0', '116.68.191.255', 1950660608, 1950662655, 'AP', 'Asia/Pacific Region'), +('116.68.192.0', '116.68.207.255', 1950662656, 1950666751, 'BD', 'Bangladesh'), +('116.68.208.0', '116.68.215.255', 1950666752, 1950668799, 'NP', 'Nepal'), +('116.68.216.0', '116.68.223.255', 1950668800, 1950670847, 'JP', 'Japan'), +('116.68.224.0', '116.68.231.255', 1950670848, 1950672895, 'ID', 'Indonesia'), +('116.68.232.0', '116.68.239.255', 1950672896, 1950674943, 'KR', 'Korea, Republic of'), +('116.68.240.0', '116.68.247.255', 1950674944, 1950676991, 'IN', 'India'), +('116.68.248.0', '116.68.255.255', 1950676992, 1950679039, 'ID', 'Indonesia'), +('116.69.0.0', '116.70.127.255', 1950679040, 1950777343, 'CN', 'China'), +('116.70.128.0', '116.70.191.255', 1950777344, 1950793727, 'JP', 'Japan'), +('116.71.0.0', '116.71.255.255', 1950810112, 1950875647, 'PK', 'Pakistan'), +('116.72.0.0', '116.75.255.255', 1950875648, 1951137791, 'IN', 'India'), +('116.76.0.0', '116.79.255.255', 1951137792, 1951399935, 'CN', 'China'), +('116.80.0.0', '116.83.255.255', 1951399936, 1951662079, 'JP', 'Japan'), +('116.84.0.0', '116.84.255.255', 1951662080, 1951727615, 'KR', 'Korea, Republic of'), +('116.86.0.0', '116.89.127.255', 1951793152, 1952022527, 'SG', 'Singapore'), +('116.89.128.0', '116.89.143.255', 1952022528, 1952026623, 'TW', 'Taiwan'), +('116.89.144.0', '116.89.159.255', 1952026624, 1952030719, 'CN', 'China'), +('116.89.160.0', '116.89.191.255', 1952030720, 1952038911, 'KR', 'Korea, Republic of'), +('116.89.192.0', '116.89.223.255', 1952038912, 1952047103, 'JP', 'Japan'), +('116.89.224.0', '116.89.239.255', 1952047104, 1952051199, 'NZ', 'New Zealand'), +('116.90.0.0', '116.90.63.255', 1952055296, 1952071679, 'AU', 'Australia'), +('116.90.64.0', '116.90.71.255', 1952071680, 1952073727, 'HK', 'Hong Kong'), +('116.90.72.0', '116.90.75.255', 1952073728, 1952074751, 'AU', 'Australia'), +('116.90.76.0', '116.90.79.255', 1952074752, 1952075775, 'NZ', 'New Zealand'), +('116.90.80.0', '116.90.95.255', 1952075776, 1952079871, 'CN', 'China'), +('116.90.96.0', '116.90.127.255', 1952079872, 1952088063, 'PK', 'Pakistan'), +('116.90.128.0', '116.90.143.255', 1952088064, 1952092159, 'NZ', 'New Zealand'), +('116.90.144.0', '116.90.159.255', 1952092160, 1952096255, 'JP', 'Japan'), +('116.90.160.0', '116.90.183.255', 1952096256, 1952102399, 'ID', 'Indonesia'), +('116.90.184.0', '116.90.191.255', 1952102400, 1952104447, 'CN', 'China'), +('116.90.192.0', '116.90.207.255', 1952104448, 1952108543, 'JP', 'Japan'), +('116.90.208.0', '116.90.215.255', 1952108544, 1952110591, 'ID', 'Indonesia'), +('116.90.216.0', '116.90.223.255', 1952110592, 1952112639, 'KR', 'Korea, Republic of'), +('116.90.224.0', '116.90.239.255', 1952112640, 1952116735, 'NP', 'Nepal'), +('116.90.240.0', '116.90.255.255', 1952116736, 1952120831, 'IN', 'India'), +('116.91.0.0', '116.91.255.255', 1952120832, 1952186367, 'JP', 'Japan'), +('116.92.0.0', '116.92.255.255', 1952186368, 1952251903, 'HK', 'Hong Kong'), +('116.93.0.0', '116.93.127.255', 1952251904, 1952284671, 'PH', 'Philippines'), +('116.93.128.0', '116.93.143.255', 1952284672, 1952288767, 'NZ', 'New Zealand'), +('116.93.192.0', '116.93.255.255', 1952301056, 1952317439, 'KR', 'Korea, Republic of'), +('116.94.0.0', '116.94.255.255', 1952317440, 1952382975, 'JP', 'Japan'), +('116.95.0.0', '116.95.255.255', 1952382976, 1952448511, 'CN', 'China'), +('116.96.0.0', '116.111.255.255', 1952448512, 1953497087, 'VN', 'Vietnam'), +('116.112.0.0', '116.117.255.255', 1953497088, 1953890303, 'CN', 'China'), +('116.118.0.0', '116.118.127.255', 1953890304, 1953923071, 'VN', 'Vietnam'), +('116.118.128.0', '116.118.191.255', 1953923072, 1953939455, 'TW', 'Taiwan'), +('116.118.192.0', '116.118.239.255', 1953939456, 1953951743, 'JP', 'Japan'), +('116.118.240.0', '116.118.255.255', 1953951744, 1953955839, 'AU', 'Australia'), +('116.119.0.0', '116.119.255.255', 1953955840, 1954021375, 'IN', 'India'), +('116.120.0.0', '116.127.255.255', 1954021376, 1954545663, 'KR', 'Korea, Republic of'), +('116.128.0.0', '116.192.255.255', 1954545664, 1958805503, 'CN', 'China'), +('116.193.0.0', '116.193.7.255', 1958805504, 1958807551, 'SG', 'Singapore'), +('116.193.8.0', '116.193.15.255', 1958807552, 1958809599, 'MO', 'Macau'), +('116.193.16.0', '116.193.63.255', 1958809600, 1958821887, 'CN', 'China'), +('116.193.64.0', '116.193.79.255', 1958821888, 1958825983, 'VN', 'Vietnam'), +('116.193.80.0', '116.193.95.255', 1958825984, 1958830079, 'KR', 'Korea, Republic of'), +('116.193.96.0', '116.193.127.255', 1958830080, 1958838271, 'JP', 'Japan'), +('116.193.128.0', '116.193.143.255', 1958838272, 1958842367, 'IN', 'India'), +('116.193.144.0', '116.193.151.255', 1958842368, 1958844415, 'NZ', 'New Zealand'), +('116.193.160.0', '116.193.167.255', 1958846464, 1958848511, 'IN', 'India'), +('116.193.168.0', '116.193.175.255', 1958848512, 1958850559, 'BD', 'Bangladesh'), +('116.193.176.0', '116.193.183.255', 1958850560, 1958852607, 'AU', 'Australia'), +('116.193.192.0', '116.193.223.255', 1958854656, 1958862847, 'AU', 'Australia'), +('116.194.0.0', '116.196.255.255', 1958871040, 1959067647, 'CN', 'China'), +('116.197.0.0', '116.197.127.255', 1959067648, 1959100415, 'MY', 'Malaysia'), +('116.197.128.0', '116.197.135.255', 1959100416, 1959102463, 'ID', 'Indonesia'), +('116.197.136.0', '116.197.143.255', 1959102464, 1959104511, 'JP', 'Japan'), +('116.197.144.0', '116.197.151.255', 1959104512, 1959106559, 'AU', 'Australia'), +('116.197.160.0', '116.197.167.255', 1959108608, 1959110655, 'NP', 'Nepal'), +('116.197.168.0', '116.197.175.255', 1959110656, 1959112703, 'JP', 'Japan'), +('116.197.176.0', '116.197.191.255', 1959112704, 1959116799, 'HK', 'Hong Kong'), +('116.197.192.0', '116.197.255.255', 1959116800, 1959133183, 'SG', 'Singapore'), +('116.198.0.0', '116.199.159.255', 1959133184, 1959239679, 'CN', 'China'), +('116.199.160.0', '116.199.167.255', 1959239680, 1959241727, 'KR', 'Korea, Republic of'), +('116.199.168.0', '116.199.175.255', 1959241728, 1959243775, 'IN', 'India'), +('116.199.176.0', '116.199.191.255', 1959243776, 1959247871, 'JP', 'Japan'), +('116.199.192.0', '116.199.207.255', 1959247872, 1959251967, 'ID', 'Indonesia'), +('116.199.208.0', '116.199.215.255', 1959251968, 1959254015, 'NZ', 'New Zealand'), +('116.199.224.0', '116.199.239.255', 1959256064, 1959260159, 'AU', 'Australia'), +('116.200.0.0', '116.201.255.255', 1959264256, 1959395327, 'KR', 'Korea, Republic of'), +('116.204.0.0', '116.205.255.255', 1959526400, 1959657471, 'CN', 'China'), +('116.206.0.0', '116.206.255.255', 1959657472, 1959723007, 'MY', 'Malaysia'), +('116.207.0.0', '116.211.255.255', 1959723008, 1960050687, 'CN', 'China'), +('116.212.0.0', '116.212.31.255', 1960050688, 1960058879, 'KR', 'Korea, Republic of'), +('116.212.64.0', '116.212.71.255', 1960067072, 1960069119, 'AU', 'Australia'), +('116.212.72.0', '116.212.79.255', 1960069120, 1960071167, 'ID', 'Indonesia'), +('116.212.80.0', '116.212.95.255', 1960071168, 1960075263, 'TW', 'Taiwan'), +('116.212.96.0', '116.212.103.255', 1960075264, 1960077311, 'ID', 'Indonesia'), +('116.212.104.0', '116.212.111.255', 1960077312, 1960079359, 'BD', 'Bangladesh'), +('116.212.112.0', '116.212.114.255', 1960079360, 1960080127, 'HK', 'Hong Kong'), +('116.212.115.0', '116.212.115.255', 1960080128, 1960080383, 'CN', 'China'), +('116.212.116.0', '116.212.127.255', 1960080384, 1960083455, 'HK', 'Hong Kong'), +('116.212.128.0', '116.212.159.255', 1960083456, 1960091647, 'KH', 'Cambodia'), +('116.212.160.0', '116.212.175.255', 1960091648, 1960095743, 'CN', 'China'), +('116.212.176.0', '116.212.183.255', 1960095744, 1960097791, 'IN', 'India'), +('116.212.184.0', '116.212.191.255', 1960097792, 1960099839, 'BD', 'Bangladesh'), +('116.212.192.0', '116.212.223.255', 1960099840, 1960108031, 'AU', 'Australia'), +('116.213.0.0', '116.213.47.255', 1960116224, 1960128511, 'AU', 'Australia'), +('116.213.48.0', '116.213.63.255', 1960128512, 1960132607, 'ID', 'Indonesia'), +('116.213.64.0', '116.213.255.255', 1960132608, 1960181759, 'CN', 'China'), +('116.214.0.0', '116.214.15.255', 1960181760, 1960185855, 'TW', 'Taiwan'), +('116.214.16.0', '116.214.23.255', 1960185856, 1960187903, 'JP', 'Japan'), +('116.214.24.0', '116.214.31.255', 1960187904, 1960189951, 'IN', 'India'), +('116.214.32.0', '116.214.79.255', 1960189952, 1960202239, 'CN', 'China'), +('116.214.80.0', '116.214.95.255', 1960202240, 1960206335, 'JP', 'Japan'), +('116.214.96.0', '116.214.112.255', 1960206336, 1960210687, 'SG', 'Singapore'), +('116.214.113.0', '116.214.113.255', 1960210688, 1960210943, 'TH', 'Thailand'), +('116.214.114.0', '116.214.114.255', 1960210944, 1960211199, 'IN', 'India'), +('116.214.115.0', '116.214.122.255', 1960211200, 1960213247, 'SG', 'Singapore'), +('116.214.123.0', '116.214.123.255', 1960213248, 1960213503, 'PH', 'Philippines'), +('116.214.124.0', '116.214.124.255', 1960213504, 1960213759, 'CN', 'China'), +('116.214.125.0', '116.214.127.255', 1960213760, 1960214527, 'SG', 'Singapore'), +('116.214.128.0', '116.219.255.255', 1960214528, 1960574975, 'CN', 'China'), +('116.220.0.0', '116.223.255.255', 1960574976, 1960837119, 'JP', 'Japan'), +('116.224.0.0', '116.239.255.255', 1960837120, 1961885695, 'CN', 'China'), +('116.240.0.0', '116.240.255.255', 1961885696, 1961951231, 'AU', 'Australia'), +('116.242.0.0', '116.249.255.255', 1962016768, 1962541055, 'CN', 'China'), +('116.250.0.0', '116.251.255.255', 1962541056, 1962672127, 'AU', 'Australia'), +('116.252.0.0', '116.253.255.255', 1962672128, 1962803199, 'CN', 'China'), +('116.254.0.0', '116.254.95.255', 1962803200, 1962827775, 'JP', 'Japan'), +('116.254.96.0', '116.254.103.255', 1962827776, 1962829823, 'ID', 'Indonesia'), +('116.254.104.0', '116.254.111.255', 1962829824, 1962831871, 'JP', 'Japan'), +('116.254.112.0', '116.254.127.255', 1962831872, 1962835967, 'ID', 'Indonesia'), +('116.254.128.0', '116.254.255.255', 1962835968, 1962868735, 'CN', 'China'), +('116.255.0.0', '116.255.63.255', 1962868736, 1962885119, 'AU', 'Australia'), +('116.255.128.0', '116.255.255.255', 1962901504, 1962934271, 'CN', 'China'), +('117.0.0.0', '117.7.255.255', 1962934272, 1963458559, 'VN', 'Vietnam'), +('117.8.0.0', '117.15.255.255', 1963458560, 1963982847, 'CN', 'China'), +('117.16.0.0', '117.17.255.255', 1963982848, 1964113919, 'KR', 'Korea, Republic of'), +('117.18.0.0', '117.18.15.255', 1964113920, 1964118015, 'HK', 'Hong Kong'), +('117.18.16.0', '117.18.23.255', 1964118016, 1964120063, 'ID', 'Indonesia'), +('117.18.24.0', '117.18.31.255', 1964120064, 1964122111, 'JP', 'Japan'), +('117.18.32.0', '117.18.47.255', 1964122112, 1964126207, 'SG', 'Singapore'), +('117.18.48.0', '117.18.48.255', 1964126208, 1964126463, 'HK', 'Hong Kong'), +('117.18.49.0', '117.18.63.255', 1964126464, 1964130303, 'SG', 'Singapore'), +('117.18.64.0', '117.18.79.255', 1964130304, 1964134399, 'HK', 'Hong Kong'), +('117.18.80.0', '117.18.87.255', 1964134400, 1964136447, 'NZ', 'New Zealand'), +('117.18.96.0', '117.18.127.255', 1964138496, 1964146687, 'HK', 'Hong Kong'), +('117.18.128.0', '117.18.223.255', 1964146688, 1964171263, 'JP', 'Japan'), +('117.18.224.0', '117.18.231.255', 1964171264, 1964173311, 'BD', 'Bangladesh'), +('117.18.232.0', '117.18.239.255', 1964173312, 1964175359, 'AP', 'Asia/Pacific Region'), +('117.18.240.0', '117.18.255.255', 1964175360, 1964179455, 'PK', 'Pakistan'), +('117.19.0.0', '117.19.255.255', 1964179456, 1964244991, 'TW', 'Taiwan'), +('117.20.0.0', '117.20.15.255', 1964244992, 1964249087, 'AU', 'Australia'), +('117.20.16.0', '117.20.31.255', 1964249088, 1964253183, 'PK', 'Pakistan'), +('117.20.32.0', '117.20.39.255', 1964253184, 1964255231, 'WF', 'Wallis and Futuna'), +('117.20.40.0', '117.20.47.255', 1964255232, 1964257279, 'SG', 'Singapore'), +('117.20.48.0', '117.20.63.255', 1964257280, 1964261375, 'ID', 'Indonesia'), +('117.20.64.0', '117.20.71.255', 1964261376, 1964263423, 'AU', 'Australia'), +('117.20.72.0', '117.20.79.255', 1964263424, 1964265471, 'JP', 'Japan'), +('117.20.80.0', '117.20.95.255', 1964265472, 1964269567, 'KR', 'Korea, Republic of'), +('117.20.112.0', '117.20.119.255', 1964273664, 1964275711, 'KH', 'Cambodia'), +('117.20.120.0', '117.20.127.255', 1964275712, 1964277759, 'GU', 'Guam'), +('117.20.128.0', '117.20.191.255', 1964277760, 1964294143, 'SG', 'Singapore'), +('117.20.192.0', '117.20.255.255', 1964294144, 1964310527, 'KR', 'Korea, Republic of'), +('117.21.0.0', '117.45.255.255', 1964310528, 1965948927, 'CN', 'China'), +('117.46.0.0', '117.46.255.255', 1965948928, 1966014463, 'JP', 'Japan'), +('117.47.0.0', '117.47.255.255', 1966014464, 1966079999, 'TH', 'Thailand'), +('117.48.0.0', '117.51.255.255', 1966080000, 1966342143, 'CN', 'China'), +('117.53.0.0', '117.53.39.255', 1966407680, 1966417919, 'JP', 'Japan'), +('117.53.48.0', '117.53.63.255', 1966419968, 1966424063, 'CN', 'China'), +('117.53.64.0', '117.53.127.255', 1966424064, 1966440447, 'KR', 'Korea, Republic of'), +('117.53.128.0', '117.53.143.255', 1966440448, 1966444543, 'AU', 'Australia'), +('117.53.144.0', '117.53.151.255', 1966444544, 1966446591, 'NZ', 'New Zealand'), +('117.53.160.0', '117.53.175.255', 1966448640, 1966452735, 'AU', 'Australia'), +('117.53.176.0', '117.53.191.255', 1966452736, 1966456831, 'CN', 'China'), +('117.53.192.0', '117.53.255.255', 1966456832, 1966473215, 'KR', 'Korea, Republic of'), +('117.54.0.0', '117.54.255.255', 1966473216, 1966538751, 'ID', 'Indonesia'), +('117.55.0.0', '117.55.127.255', 1966538752, 1966571519, 'JP', 'Japan'), +('117.55.128.0', '117.55.191.255', 1966571520, 1966587903, 'KR', 'Korea, Republic of'), +('117.55.192.0', '117.55.207.255', 1966587904, 1966591999, 'AF', 'Afghanistan'), +('117.55.208.0', '117.55.223.255', 1966592000, 1966596095, 'JP', 'Japan'), +('117.55.224.0', '117.55.239.255', 1966596096, 1966600191, 'AU', 'Australia'), +('117.55.240.0', '117.55.247.255', 1966600192, 1966602239, 'IN', 'India'), +('117.55.248.0', '117.55.255.255', 1966602240, 1966604287, 'KH', 'Cambodia'), +('117.56.0.0', '117.56.255.255', 1966604288, 1966669823, 'TW', 'Taiwan'), +('117.57.0.0', '117.58.127.255', 1966669824, 1966768127, 'CN', 'China'), +('117.58.128.0', '117.58.143.255', 1966768128, 1966772223, 'KR', 'Korea, Republic of'), +('117.58.144.0', '117.58.159.255', 1966772224, 1966776319, 'JP', 'Japan'), +('117.58.160.0', '117.58.191.255', 1966776320, 1966784511, 'SG', 'Singapore'), +('117.58.192.0', '117.58.223.255', 1966784512, 1966792703, 'PH', 'Philippines'), +('117.58.224.0', '117.58.239.255', 1966792704, 1966796799, 'JP', 'Japan'), +('117.58.240.0', '117.58.247.255', 1966796800, 1966798847, 'BD', 'Bangladesh'), +('117.58.248.0', '117.58.255.255', 1966798848, 1966800895, 'AU', 'Australia'), +('117.59.0.0', '117.73.255.255', 1966800896, 1967783935, 'CN', 'China'), +('117.74.0.0', '117.74.63.255', 1967783936, 1967800319, 'JP', 'Japan'), +('117.74.64.0', '117.74.79.255', 1967800320, 1967804415, 'CN', 'China'), +('117.74.80.0', '117.74.95.255', 1967804416, 1967808511, 'KH', 'Cambodia'), +('117.74.96.0', '117.74.111.255', 1967808512, 1967812607, 'AU', 'Australia'), +('117.74.112.0', '117.74.127.255', 1967812608, 1967816703, 'ID', 'Indonesia'), +('117.74.128.0', '117.95.255.255', 1967816704, 1969225727, 'CN', 'China'), +('117.96.0.0', '117.99.255.255', 1969225728, 1969487871, 'IN', 'India'), +('117.100.0.0', '117.101.255.255', 1969487872, 1969618943, 'CN', 'China'), +('117.102.0.0', '117.102.63.255', 1969618944, 1969635327, 'PK', 'Pakistan'), +('117.102.64.0', '117.102.127.255', 1969635328, 1969651711, 'ID', 'Indonesia'), +('117.102.128.0', '117.102.159.255', 1969651712, 1969659903, 'AU', 'Australia'), +('117.102.160.0', '117.102.167.255', 1969659904, 1969661951, 'ID', 'Indonesia'), +('117.102.168.0', '117.102.223.255', 1969661952, 1969676287, 'JP', 'Japan'), +('117.102.224.0', '117.103.15.255', 1969676288, 1969688575, 'ID', 'Indonesia'), +('117.103.16.0', '117.103.31.255', 1969688576, 1969692671, 'CN', 'China'), +('117.103.32.0', '117.103.39.255', 1969692672, 1969694719, 'ID', 'Indonesia'), +('117.103.40.0', '117.103.47.255', 1969694720, 1969696767, 'PH', 'Philippines'), +('117.103.48.0', '117.103.71.255', 1969696768, 1969702911, 'ID', 'Indonesia'), +('117.103.72.0', '117.103.79.255', 1969702912, 1969704959, 'AU', 'Australia'), +('117.103.80.0', '117.103.87.255', 1969704960, 1969707007, 'BD', 'Bangladesh'), +('117.103.88.0', '117.103.95.255', 1969707008, 1969709055, 'MH', 'Marshall Islands'), +('117.103.96.0', '117.103.111.255', 1969709056, 1969713151, 'TW', 'Taiwan'), +('117.103.112.0', '117.103.119.255', 1969713152, 1969715199, 'AU', 'Australia'), +('117.103.128.0', '117.103.143.255', 1969717248, 1969721343, 'CN', 'China'), +('117.103.144.0', '117.103.159.255', 1969721344, 1969725439, 'HK', 'Hong Kong'), +('117.103.160.0', '117.103.167.255', 1969725440, 1969727487, 'JP', 'Japan'), +('117.103.168.0', '117.103.175.255', 1969727488, 1969729535, 'ID', 'Indonesia'), +('117.103.176.0', '117.103.191.255', 1969729536, 1969733631, 'JP', 'Japan'), +('117.103.192.0', '117.103.255.255', 1969733632, 1969750015, 'VN', 'Vietnam'), +('117.104.0.0', '117.104.159.255', 1969750016, 1969790975, 'JP', 'Japan'), +('117.104.160.0', '117.104.167.255', 1969790976, 1969793023, 'AU', 'Australia'), +('117.104.168.0', '117.104.175.255', 1969793024, 1969795071, 'AP', 'Asia/Pacific Region'), +('117.104.176.0', '117.104.183.255', 1969795072, 1969797119, 'NZ', 'New Zealand'), +('117.104.192.0', '117.104.223.255', 1969799168, 1969807359, 'ID', 'Indonesia'), +('117.104.224.0', '117.104.231.255', 1969807360, 1969809407, 'AF', 'Afghanistan'), +('117.104.232.0', '117.104.239.255', 1969809408, 1969811455, 'IN', 'India'), +('117.104.240.0', '117.104.255.255', 1969811456, 1969815551, 'PH', 'Philippines'), +('117.105.0.0', '117.105.255.255', 1969815552, 1969881087, 'SG', 'Singapore'), +('117.106.0.0', '117.107.255.255', 1969881088, 1970012159, 'CN', 'China'), +('117.108.0.0', '117.109.255.255', 1970012160, 1970143231, 'JP', 'Japan'), +('117.110.0.0', '117.111.255.255', 1970143232, 1970274303, 'KR', 'Korea, Republic of'), +('117.112.0.0', '117.119.255.255', 1970274304, 1970798591, 'CN', 'China'), +('117.120.0.0', '117.120.7.255', 1970798592, 1970800639, 'SG', 'Singapore'), +('117.120.8.0', '117.120.23.255', 1970800640, 1970804735, 'AU', 'Australia'), +('117.120.24.0', '117.120.31.255', 1970804736, 1970806783, 'KH', 'Cambodia'), +('117.120.32.0', '117.120.39.255', 1970806784, 1970808831, 'NZ', 'New Zealand'), +('117.120.48.0', '117.120.55.255', 1970810880, 1970812927, 'JP', 'Japan'), +('117.120.56.0', '117.120.63.255', 1970812928, 1970814975, 'LK', 'Sri Lanka'), +('117.120.64.0', '117.121.199.255', 1970814976, 1970915327, 'CN', 'China'), +('117.121.200.0', '117.121.207.255', 1970915328, 1970917375, 'ID', 'Indonesia'), +('117.121.208.0', '117.121.223.255', 1970917376, 1970921471, 'TH', 'Thailand'), +('117.121.224.0', '117.121.239.255', 1970921472, 1970925567, 'NP', 'Nepal'), +('117.121.240.0', '117.121.241.255', 1970925568, 1970926079, 'SG', 'Singapore'), +('117.121.242.0', '117.121.242.255', 1970926080, 1970926335, 'AU', 'Australia'), +('117.121.243.0', '117.121.243.255', 1970926336, 1970926591, 'US', 'United States'), +('117.121.244.0', '117.121.247.255', 1970926592, 1970927615, 'SG', 'Singapore'), +('117.121.248.0', '117.121.255.255', 1970927616, 1970929663, 'AU', 'Australia'), +('117.122.0.0', '117.122.127.255', 1970929664, 1970962431, 'VN', 'Vietnam'), +('117.122.128.0', '117.122.255.255', 1970962432, 1970995199, 'CN', 'China'), +('117.123.0.0', '117.123.255.255', 1970995200, 1971060735, 'KR', 'Korea, Republic of'), +('117.124.0.0', '117.191.255.255', 1971060736, 1975517183, 'CN', 'China'), +('117.192.0.0', '117.255.255.255', 1975517184, 1979711487, 'IN', 'India'), +('118.0.0.0', '118.23.255.255', 1979711488, 1981284351, 'JP', 'Japan'), +('118.24.0.0', '118.31.255.255', 1981284352, 1981808639, 'CN', 'China'), +('118.32.0.0', '118.63.255.255', 1981808640, 1983905791, 'KR', 'Korea, Republic of'), +('118.64.0.0', '118.66.255.255', 1983905792, 1984102399, 'CN', 'China'), +('118.67.0.0', '118.67.63.255', 1984102400, 1984118783, 'AU', 'Australia'), +('118.67.64.0', '118.67.111.255', 1984118784, 1984131071, 'JP', 'Japan'), +('118.67.112.0', '118.67.127.255', 1984131072, 1984135167, 'CN', 'China'), +('118.67.128.0', '118.67.191.255', 1984135168, 1984151551, 'KR', 'Korea, Republic of'), +('118.67.200.0', '118.67.207.255', 1984153600, 1984155647, 'KH', 'Cambodia'), +('118.67.208.0', '118.67.223.255', 1984155648, 1984159743, 'AU', 'Australia'), +('118.67.224.0', '118.67.255.255', 1984159744, 1984167935, 'IN', 'India'), +('118.68.0.0', '118.71.255.255', 1984167936, 1984430079, 'VN', 'Vietnam'), +('118.72.0.0', '118.81.255.255', 1984430080, 1985085439, 'CN', 'China'), +('118.82.0.0', '118.82.31.255', 1985085440, 1985093631, 'ID', 'Indonesia'), +('118.82.32.0', '118.82.47.255', 1985093632, 1985097727, 'AU', 'Australia'), +('118.82.64.0', '118.82.127.255', 1985101824, 1985118207, 'JP', 'Japan'), +('118.82.128.0', '118.82.191.255', 1985118208, 1985134591, 'NZ', 'New Zealand'), +('118.83.0.0', '118.83.255.255', 1985150976, 1985216511, 'JP', 'Japan'), +('118.84.0.0', '118.85.255.255', 1985216512, 1985347583, 'CN', 'China'), +('118.86.0.0', '118.87.255.255', 1985347584, 1985478655, 'JP', 'Japan'), +('118.88.0.0', '118.88.7.255', 1985478656, 1985480703, 'IN', 'India'), +('118.88.8.0', '118.88.15.255', 1985480704, 1985482751, 'PH', 'Philippines'), +('118.88.16.0', '118.88.23.255', 1985482752, 1985484799, 'AU', 'Australia'), +('118.88.32.0', '118.89.255.255', 1985486848, 1985609727, 'CN', 'China'), +('118.90.0.0', '118.90.255.255', 1985609728, 1985675263, 'NZ', 'New Zealand'), +('118.91.0.0', '118.91.127.255', 1985675264, 1985708031, 'KR', 'Korea, Republic of'), +('118.91.128.0', '118.91.143.255', 1985708032, 1985712127, 'ID', 'Indonesia'), +('118.91.144.0', '118.91.159.255', 1985712128, 1985716223, 'KR', 'Korea, Republic of'), +('118.91.160.0', '118.91.175.255', 1985716224, 1985720319, 'NP', 'Nepal'), +('118.91.176.0', '118.91.191.255', 1985720320, 1985724415, 'IN', 'India'), +('118.91.192.0', '118.91.223.255', 1985724416, 1985732607, 'JP', 'Japan'), +('118.91.224.0', '118.91.231.255', 1985732608, 1985734655, 'ID', 'Indonesia'), +('118.91.232.0', '118.91.239.255', 1985734656, 1985736703, 'IN', 'India'), +('118.91.240.0', '118.91.255.255', 1985736704, 1985740799, 'CN', 'China'), +('118.92.0.0', '118.93.255.255', 1985740800, 1985871871, 'NZ', 'New Zealand'), +('118.94.0.0', '118.95.255.255', 1985871872, 1986002943, 'IN', 'India'), +('118.96.0.0', '118.99.255.255', 1986002944, 1986265087, 'ID', 'Indonesia'), +('118.100.0.0', '118.101.255.255', 1986265088, 1986396159, 'MY', 'Malaysia'), +('118.102.0.0', '118.102.7.255', 1986396160, 1986398207, 'VN', 'Vietnam'), +('118.102.8.0', '118.102.15.255', 1986398208, 1986400255, 'HK', 'Hong Kong'), +('118.102.16.0', '118.102.31.255', 1986400256, 1986404351, 'CN', 'China'), +('118.102.32.0', '118.102.39.255', 1986404352, 1986406399, 'PH', 'Philippines'), +('118.102.40.0', '118.102.63.255', 1986406400, 1986412543, 'JP', 'Japan'), +('118.102.64.0', '118.102.127.255', 1986412544, 1986428927, 'AU', 'Australia'), +('118.102.128.0', '118.102.255.255', 1986428928, 1986461695, 'IN', 'India'), +('118.103.0.0', '118.103.135.255', 1986461696, 1986496511, 'JP', 'Japan'), +('118.103.136.0', '118.103.143.255', 1986496512, 1986498559, 'BT', 'Bhutan'), +('118.103.144.0', '118.103.159.255', 1986498560, 1986502655, 'HK', 'Hong Kong'), +('118.103.160.0', '118.103.191.255', 1986502656, 1986510847, 'KH', 'Cambodia'), +('118.103.192.0', '118.103.223.255', 1986510848, 1986519039, 'KR', 'Korea, Republic of'), +('118.103.224.0', '118.103.239.255', 1986519040, 1986523135, 'PK', 'Pakistan'), +('118.103.240.0', '118.103.247.255', 1986523136, 1986525183, 'CN', 'China'), +('118.103.248.0', '118.103.255.255', 1986525184, 1986527231, 'BN', 'Brunei Darussalam'), +('118.104.0.0', '118.106.255.255', 1986527232, 1986723839, 'JP', 'Japan'), +('118.107.0.0', '118.107.63.255', 1986723840, 1986740223, 'AU', 'Australia'), +('118.107.128.0', '118.107.143.255', 1986756608, 1986760703, 'PK', 'Pakistan'), +('118.107.144.0', '118.107.151.255', 1986760704, 1986762751, 'AU', 'Australia'), +('118.107.160.0', '118.107.175.255', 1986764800, 1986768895, 'KR', 'Korea, Republic of'), +('118.107.176.0', '118.107.191.255', 1986768896, 1986772991, 'AU', 'Australia'), +('118.107.192.0', '118.107.255.255', 1986772992, 1986789375, 'MY', 'Malaysia'), +('118.108.0.0', '118.111.255.255', 1986789376, 1987051519, 'JP', 'Japan'), +('118.112.0.0', '118.126.255.255', 1987051520, 1988034559, 'CN', 'China'), +('118.127.0.0', '118.127.191.255', 1988034560, 1988083711, 'AU', 'Australia'), +('118.127.192.0', '118.131.255.255', 1988083712, 1988362239, 'KR', 'Korea, Republic of'), +('118.132.0.0', '118.135.255.255', 1988362240, 1988624383, 'CN', 'China'), +('118.136.0.0', '118.137.255.255', 1988624384, 1988755455, 'ID', 'Indonesia'), +('118.138.0.0', '118.139.255.255', 1988755456, 1988886527, 'AU', 'Australia'), +('118.140.0.0', '118.143.255.255', 1988886528, 1989148671, 'HK', 'Hong Kong'), +('118.144.0.0', '118.147.255.255', 1989148672, 1989410815, 'CN', 'China'), +('118.148.0.0', '118.149.255.255', 1989410816, 1989541887, 'NZ', 'New Zealand'), +('118.152.0.0', '118.159.255.255', 1989672960, 1990197247, 'JP', 'Japan'), +('118.160.0.0', '118.171.255.255', 1990197248, 1990983679, 'TW', 'Taiwan'), +('118.172.0.0', '118.175.255.255', 1990983680, 1991245823, 'TH', 'Thailand'), +('118.176.0.0', '118.176.255.255', 1991245824, 1991311359, 'KR', 'Korea, Republic of'), +('118.177.0.0', '118.177.255.255', 1991311360, 1991376895, 'JP', 'Japan'), +('118.178.0.0', '118.178.255.255', 1991376896, 1991442431, 'CN', 'China'), +('118.179.0.0', '118.179.255.255', 1991442432, 1991507967, 'BD', 'Bangladesh'), +('118.180.0.0', '118.207.255.255', 1991507968, 1993342975, 'CN', 'China'), +('118.208.0.0', '118.211.255.255', 1993342976, 1993605119, 'AU', 'Australia'), +('118.212.0.0', '118.213.255.255', 1993605120, 1993736191, 'CN', 'China'), +('118.214.0.0', '118.215.255.255', 1993736192, 1993867263, 'SG', 'Singapore'), +('118.216.0.0', '118.223.255.255', 1993867264, 1994391551, 'KR', 'Korea, Republic of'), +('118.224.0.0', '118.230.255.255', 1994391552, 1994850303, 'CN', 'China'), +('118.231.0.0', '118.233.255.255', 1994850304, 1995046911, 'TW', 'Taiwan'), +('118.234.0.0', '118.235.255.255', 1995046912, 1995177983, 'KR', 'Korea, Republic of'), +('118.236.0.0', '118.238.255.255', 1995177984, 1995374591, 'JP', 'Japan'), +('118.239.0.0', '118.239.255.255', 1995374592, 1995440127, 'CN', 'China'), +('118.240.0.0', '118.241.255.255', 1995440128, 1995571199, 'JP', 'Japan'), +('118.242.0.0', '118.242.255.255', 1995571200, 1995636735, 'CN', 'China'), +('118.243.0.0', '118.243.255.255', 1995636736, 1995702271, 'JP', 'Japan'), +('118.244.0.0', '119.2.31.255', 1995702272, 1996627967, 'CN', 'China'), +('119.2.32.0', '119.2.39.255', 1996627968, 1996630015, 'PH', 'Philippines'), +('119.2.40.0', '119.2.55.255', 1996630016, 1996634111, 'ID', 'Indonesia'), +('119.2.56.0', '119.2.63.255', 1996634112, 1996636159, 'NP', 'Nepal'), +('119.2.64.0', '119.2.95.255', 1996636160, 1996644351, 'ID', 'Indonesia'), +('119.2.96.0', '119.2.127.255', 1996644352, 1996652543, 'BT', 'Bhutan'), +('119.2.128.0', '119.10.127.255', 1996652544, 1997176831, 'CN', 'China'), +('119.10.128.0', '119.10.143.255', 1997176832, 1997180927, 'AU', 'Australia'), +('119.10.160.0', '119.10.167.255', 1997185024, 1997187071, 'JP', 'Japan'), +('119.10.168.0', '119.10.175.255', 1997187072, 1997189119, 'HK', 'Hong Kong'), +('119.10.176.0', '119.10.183.255', 1997189120, 1997191167, 'ID', 'Indonesia'), +('119.10.184.0', '119.10.255.255', 1997191168, 1997209599, 'JP', 'Japan'), +('119.11.0.0', '119.11.127.255', 1997209600, 1997242367, 'AU', 'Australia'), +('119.11.128.0', '119.11.255.255', 1997242368, 1997275135, 'ID', 'Indonesia'), +('119.12.0.0', '119.13.255.255', 1997275136, 1997406207, 'AU', 'Australia'), +('119.14.0.0', '119.14.255.255', 1997406208, 1997471743, 'TW', 'Taiwan'), +('119.15.0.0', '119.15.31.255', 1997471744, 1997479935, 'NZ', 'New Zealand'), +('119.15.64.0', '119.15.71.255', 1997488128, 1997490175, 'AU', 'Australia'), +('119.15.80.0', '119.15.95.255', 1997492224, 1997496319, 'KH', 'Cambodia'), +('119.15.96.0', '119.15.111.255', 1997496320, 1997500415, 'AU', 'Australia'), +('119.15.128.0', '119.15.135.255', 1997504512, 1997506559, 'ID', 'Indonesia'), +('119.15.136.0', '119.15.143.255', 1997506560, 1997508607, 'CN', 'China'), +('119.15.144.0', '119.15.151.255', 1997508608, 1997510655, 'JP', 'Japan'), +('119.15.152.0', '119.15.159.255', 1997510656, 1997512703, 'BD', 'Bangladesh'), +('119.15.160.0', '119.15.191.255', 1997512704, 1997520895, 'VN', 'Vietnam'), +('119.15.192.0', '119.15.255.255', 1997520896, 1997537279, 'TW', 'Taiwan'), +('119.16.0.0', '119.16.255.255', 1997537280, 1997602815, 'CN', 'China'), +('119.17.0.0', '119.17.127.255', 1997602816, 1997635583, 'KR', 'Korea, Republic of'), +('119.17.128.0', '119.17.159.255', 1997635584, 1997643775, 'AU', 'Australia'), +('119.17.192.0', '119.17.255.255', 1997651968, 1997668351, 'VN', 'Vietnam'), +('119.18.0.0', '119.18.63.255', 1997668352, 1997684735, 'AU', 'Australia'), +('119.18.128.0', '119.18.143.255', 1997701120, 1997705215, 'VN', 'Vietnam'), +('119.18.144.0', '119.18.151.255', 1997705216, 1997707263, 'BD', 'Bangladesh'), +('119.18.152.0', '119.18.159.255', 1997707264, 1997709311, 'ID', 'Indonesia'), +('119.18.160.0', '119.18.183.255', 1997709312, 1997715455, 'JP', 'Japan'), +('119.18.184.0', '119.18.191.255', 1997715456, 1997717503, 'VN', 'Vietnam'), +('119.18.192.0', '119.18.215.255', 1997717504, 1997723647, 'CN', 'China'), +('119.18.216.0', '119.18.223.255', 1997723648, 1997725695, 'JP', 'Japan'), +('119.18.224.0', '119.23.255.255', 1997725696, 1998061567, 'CN', 'China'), +('119.24.0.0', '119.26.255.255', 1998061568, 1998258175, 'JP', 'Japan'), +('119.27.0.0', '119.27.63.255', 1998258176, 1998274559, 'SG', 'Singapore'), +('119.27.64.0', '119.27.127.255', 1998274560, 1998290943, 'CN', 'China'), +('119.27.128.0', '119.27.159.255', 1998290944, 1998299135, 'PH', 'Philippines'), +('119.27.160.0', '119.29.255.255', 1998299136, 1998454783, 'CN', 'China'), +('119.30.0.0', '119.30.7.255', 1998454784, 1998456831, 'AU', 'Australia'), +('119.30.16.0', '119.30.31.255', 1998458880, 1998462975, 'TW', 'Taiwan'), +('119.30.32.0', '119.30.47.255', 1998462976, 1998467071, 'BD', 'Bangladesh'), +('119.30.48.0', '119.30.63.255', 1998467072, 1998471167, 'CN', 'China'), +('119.30.64.0', '119.30.127.255', 1998471168, 1998487551, 'PK', 'Pakistan'), +('119.30.128.0', '119.30.191.255', 1998487552, 1998503935, 'KR', 'Korea, Republic of'), +('119.30.192.0', '119.30.255.255', 1998503936, 1998520319, 'JP', 'Japan'), +('119.31.0.0', '119.31.127.255', 1998520320, 1998553087, 'TH', 'Thailand'), +('119.31.128.0', '119.31.159.255', 1998553088, 1998561279, 'JP', 'Japan'), +('119.31.160.0', '119.31.175.255', 1998561280, 1998565375, 'IN', 'India'), +('119.31.176.0', '119.31.191.255', 1998565376, 1998569471, 'TW', 'Taiwan'), +('119.31.192.0', '119.31.223.255', 1998569472, 1998577663, 'CN', 'China'), +('119.31.224.0', '119.31.231.255', 1998577664, 1998579711, 'AU', 'Australia'), +('119.31.240.0', '119.31.255.255', 1998581760, 1998585855, 'KR', 'Korea, Republic of'), +('119.32.0.0', '119.40.79.255', 1998585856, 1999130623, 'CN', 'China'), +('119.40.80.0', '119.40.95.255', 1999130624, 1999134719, 'BD', 'Bangladesh'), +('119.40.96.0', '119.40.103.255', 1999134720, 1999136767, 'MN', 'Mongolia'), +('119.40.104.0', '119.40.111.255', 1999136768, 1999138815, 'AU', 'Australia'), +('119.40.112.0', '119.40.127.255', 1999138816, 1999142911, 'MY', 'Malaysia'), +('119.40.128.0', '119.42.31.255', 1999142912, 1999249407, 'CN', 'China'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('119.42.64.0', '119.42.135.255', 1999257600, 1999276031, 'TH', 'Thailand'), +('119.42.136.0', '119.42.143.255', 1999276032, 1999278079, 'CN', 'China'), +('119.42.144.0', '119.42.151.255', 1999278080, 1999280127, 'HK', 'Hong Kong'), +('119.42.152.0', '119.42.159.255', 1999280128, 1999282175, 'IN', 'India'), +('119.42.160.0', '119.42.191.255', 1999282176, 1999290367, 'KR', 'Korea, Republic of'), +('119.42.192.0', '119.42.223.255', 1999290368, 1999298559, 'SG', 'Singapore'), +('119.42.224.0', '119.42.255.255', 1999298560, 1999306751, 'CN', 'China'), +('119.43.0.0', '119.43.255.255', 1999306752, 1999372287, 'IN', 'India'), +('119.44.0.0', '119.45.255.255', 1999372288, 1999503359, 'CN', 'China'), +('119.46.0.0', '119.46.255.255', 1999503360, 1999568895, 'TH', 'Thailand'), +('119.47.0.0', '119.47.79.255', 1999568896, 1999589375, 'JP', 'Japan'), +('119.47.80.0', '119.47.87.255', 1999589376, 1999591423, 'HK', 'Hong Kong'), +('119.47.88.0', '119.47.95.255', 1999591424, 1999593471, 'ID', 'Indonesia'), +('119.47.96.0', '119.47.111.255', 1999593472, 1999597567, 'JP', 'Japan'), +('119.47.112.0', '119.47.127.255', 1999597568, 1999601663, 'NZ', 'New Zealand'), +('119.47.128.0', '119.47.255.255', 1999601664, 1999634431, 'JP', 'Japan'), +('119.48.0.0', '119.55.255.255', 1999634432, 2000158719, 'CN', 'China'), +('119.56.0.0', '119.56.127.255', 2000158720, 2000191487, 'SG', 'Singapore'), +('119.57.0.0', '119.58.255.255', 2000224256, 2000355327, 'CN', 'China'), +('119.59.0.0', '119.59.63.255', 2000355328, 2000371711, 'KR', 'Korea, Republic of'), +('119.59.64.0', '119.59.71.255', 2000371712, 2000373759, 'JP', 'Japan'), +('119.59.72.0', '119.59.79.255', 2000373760, 2000375807, 'HK', 'Hong Kong'), +('119.59.80.0', '119.59.87.255', 2000375808, 2000377855, 'AF', 'Afghanistan'), +('119.59.88.0', '119.59.95.255', 2000377856, 2000379903, 'JP', 'Japan'), +('119.59.128.0', '119.62.255.255', 2000388096, 2000617471, 'CN', 'China'), +('119.63.0.0', '119.63.15.255', 2000617472, 2000621567, 'PH', 'Philippines'), +('119.63.16.0', '119.63.31.255', 2000621568, 2000625663, 'JP', 'Japan'), +('119.63.32.0', '119.63.63.255', 2000625664, 2000633855, 'CN', 'China'), +('119.63.64.0', '119.63.95.255', 2000633856, 2000642047, 'TH', 'Thailand'), +('119.63.96.0', '119.63.111.255', 2000642048, 2000646143, 'HK', 'Hong Kong'), +('119.63.112.0', '119.63.127.255', 2000646144, 2000650239, 'JP', 'Japan'), +('119.63.128.0', '119.63.143.255', 2000650240, 2000654335, 'PK', 'Pakistan'), +('119.63.160.0', '119.63.199.255', 2000658432, 2000668671, 'JP', 'Japan'), +('119.63.200.0', '119.63.223.255', 2000668672, 2000674815, 'AU', 'Australia'), +('119.63.224.0', '119.71.255.255', 2000674816, 2001207295, 'KR', 'Korea, Republic of'), +('119.72.0.0', '119.72.255.255', 2001207296, 2001272831, 'JP', 'Japan'), +('119.73.0.0', '119.73.127.255', 2001272832, 2001305599, 'PK', 'Pakistan'), +('119.73.128.0', '119.75.63.255', 2001305600, 2001420287, 'SG', 'Singapore'), +('119.75.64.0', '119.75.191.255', 2001420288, 2001453055, 'KR', 'Korea, Republic of'), +('119.75.192.0', '119.75.207.255', 2001453056, 2001457151, 'SG', 'Singapore'), +('119.75.208.0', '119.75.223.255', 2001457152, 2001461247, 'CN', 'China'), +('119.75.224.0', '119.75.239.255', 2001461248, 2001465343, 'JP', 'Japan'), +('119.75.240.0', '119.75.255.255', 2001465344, 2001469439, 'TW', 'Taiwan'), +('119.76.0.0', '119.76.255.255', 2001469440, 2001534975, 'TH', 'Thailand'), +('119.77.0.0', '119.77.95.255', 2001534976, 2001559551, 'AU', 'Australia'), +('119.77.96.0', '119.77.127.255', 2001559552, 2001567743, 'KR', 'Korea, Republic of'), +('119.77.128.0', '119.77.255.255', 2001567744, 2001600511, 'TW', 'Taiwan'), +('119.78.0.0', '119.81.255.255', 2001600512, 2001862655, 'CN', 'China'), +('119.82.0.0', '119.82.7.255', 2001862656, 2001864703, 'AU', 'Australia'), +('119.82.16.0', '119.82.31.255', 2001866752, 2001870847, 'JP', 'Japan'), +('119.82.32.0', '119.82.63.255', 2001870848, 2001879039, 'KR', 'Korea, Republic of'), +('119.82.64.0', '119.82.127.255', 2001879040, 2001895423, 'IN', 'India'), +('119.82.128.0', '119.82.143.255', 2001895424, 2001899519, 'VN', 'Vietnam'), +('119.82.144.0', '119.82.151.255', 2001899520, 2001901567, 'AU', 'Australia'), +('119.82.160.0', '119.82.207.255', 2001903616, 2001915903, 'JP', 'Japan'), +('119.82.208.0', '119.82.223.255', 2001915904, 2001919999, 'BD', 'Bangladesh'), +('119.82.224.0', '119.82.247.255', 2001920000, 2001926143, 'ID', 'Indonesia'), +('119.82.248.0', '119.82.255.255', 2001926144, 2001928191, 'KH', 'Cambodia'), +('119.83.0.0', '119.83.255.255', 2001928192, 2001993727, 'JP', 'Japan'), +('119.84.0.0', '119.91.255.255', 2001993728, 2002518015, 'CN', 'China'), +('119.92.0.0', '119.95.255.255', 2002518016, 2002780159, 'PH', 'Philippines'), +('119.96.0.0', '119.103.255.255', 2002780160, 2003304447, 'CN', 'China'), +('119.104.0.0', '119.107.255.255', 2003304448, 2003566591, 'JP', 'Japan'), +('119.108.0.0', '119.109.255.255', 2003566592, 2003697663, 'CN', 'China'), +('119.110.0.0', '119.110.63.255', 2003697664, 2003714047, 'MY', 'Malaysia'), +('119.110.64.0', '119.110.87.255', 2003714048, 2003720191, 'ID', 'Indonesia'), +('119.110.88.0', '119.110.95.255', 2003720192, 2003722239, 'JP', 'Japan'), +('119.110.96.0', '119.110.111.255', 2003722240, 2003726335, 'MY', 'Malaysia'), +('119.110.112.0', '119.110.127.255', 2003726336, 2003730431, 'ID', 'Indonesia'), +('119.110.128.0', '119.110.255.255', 2003730432, 2003763199, 'MY', 'Malaysia'), +('119.111.0.0', '119.111.255.255', 2003763200, 2003828735, 'PH', 'Philippines'), +('119.112.0.0', '119.147.255.255', 2003828736, 2006188031, 'CN', 'China'), +('119.148.0.0', '119.148.63.255', 2006188032, 2006204415, 'BD', 'Bangladesh'), +('119.148.64.0', '119.148.95.255', 2006204416, 2006212607, 'AU', 'Australia'), +('119.148.96.0', '119.148.103.255', 2006212608, 2006214655, 'TH', 'Thailand'), +('119.148.104.0', '119.148.111.255', 2006214656, 2006216703, 'JP', 'Japan'), +('119.148.112.0', '119.148.159.255', 2006216704, 2006228991, 'KR', 'Korea, Republic of'), +('119.148.160.0', '119.148.175.255', 2006228992, 2006233087, 'CN', 'China'), +('119.148.176.0', '119.148.191.255', 2006233088, 2006237183, 'PH', 'Philippines'), +('119.148.192.0', '119.148.255.255', 2006237184, 2006253567, 'JP', 'Japan'), +('119.149.0.0', '119.149.255.255', 2006253568, 2006319103, 'KR', 'Korea, Republic of'), +('119.150.0.0', '119.150.255.255', 2006319104, 2006384639, 'JP', 'Japan'), +('119.151.0.0', '119.151.255.255', 2006384640, 2006450175, 'IN', 'India'), +('119.152.0.0', '119.160.127.255', 2006450176, 2007007231, 'PK', 'Pakistan'), +('119.160.128.0', '119.160.191.255', 2007007232, 2007023615, 'BN', 'Brunei Darussalam'), +('119.160.192.0', '119.160.199.255', 2007023616, 2007025663, 'IN', 'India'), +('119.160.200.0', '119.160.207.255', 2007025664, 2007027711, 'ID', 'Indonesia'), +('119.160.208.0', '119.160.223.255', 2007027712, 2007031807, 'TH', 'Thailand'), +('119.160.224.0', '119.160.239.255', 2007031808, 2007035903, 'AU', 'Australia'), +('119.160.240.0', '119.160.255.255', 2007035904, 2007039999, 'TW', 'Taiwan'), +('119.161.0.0', '119.161.31.255', 2007040000, 2007048191, 'KR', 'Korea, Republic of'), +('119.161.32.0', '119.161.47.255', 2007048192, 2007052287, 'AU', 'Australia'), +('119.161.64.0', '119.161.95.255', 2007056384, 2007064575, 'AU', 'Australia'), +('119.161.96.0', '119.161.103.255', 2007064576, 2007066623, 'MY', 'Malaysia'), +('119.161.104.0', '119.161.119.255', 2007066624, 2007070719, 'JP', 'Japan'), +('119.161.120.0', '119.161.127.255', 2007070720, 2007072767, 'US', 'United States'), +('119.161.128.0', '119.167.255.255', 2007072768, 2007498751, 'CN', 'China'), +('119.168.0.0', '119.175.255.255', 2007498752, 2008023039, 'JP', 'Japan'), +('119.176.0.0', '119.191.255.255', 2008023040, 2009071615, 'CN', 'China'), +('119.192.0.0', '119.223.255.255', 2009071616, 2011168767, 'KR', 'Korea, Republic of'), +('119.224.0.0', '119.224.255.255', 2011168768, 2011234303, 'NZ', 'New Zealand'), +('119.225.0.0', '119.225.255.255', 2011234304, 2011299839, 'AU', 'Australia'), +('119.226.0.0', '119.227.255.255', 2011299840, 2011430911, 'IN', 'India'), +('119.228.0.0', '119.231.255.255', 2011430912, 2011693055, 'JP', 'Japan'), +('119.232.0.0', '119.233.255.255', 2011693056, 2011824127, 'CN', 'China'), +('119.234.0.0', '119.234.255.255', 2011824128, 2011889663, 'SG', 'Singapore'), +('119.235.0.0', '119.235.15.255', 2011889664, 2011893759, 'LK', 'Sri Lanka'), +('119.235.16.0', '119.235.31.255', 2011893760, 2011897855, 'ID', 'Indonesia'), +('119.235.32.0', '119.235.39.255', 2011897856, 2011899903, 'NZ', 'New Zealand'), +('119.235.40.0', '119.235.47.255', 2011899904, 2011901951, 'HK', 'Hong Kong'), +('119.235.48.0', '119.235.63.255', 2011901952, 2011906047, 'IN', 'India'), +('119.235.64.0', '119.235.127.255', 2011906048, 2011922431, 'FJ', 'Fiji'), +('119.235.128.0', '119.235.191.255', 2011922432, 2011938815, 'CN', 'China'), +('119.235.192.0', '119.235.207.255', 2011938816, 2011942911, 'KR', 'Korea, Republic of'), +('119.235.208.0', '119.235.223.255', 2011942912, 2011947007, 'ID', 'Indonesia'), +('119.235.224.0', '119.235.239.255', 2011947008, 2011951103, 'JP', 'Japan'), +('119.235.240.0', '119.235.247.255', 2011951104, 2011953151, 'KR', 'Korea, Republic of'), +('119.235.248.0', '119.235.255.255', 2011953152, 2011955199, 'ID', 'Indonesia'), +('119.236.0.0', '119.237.255.255', 2011955200, 2012086271, 'HK', 'Hong Kong'), +('119.238.0.0', '119.245.255.255', 2012086272, 2012610559, 'JP', 'Japan'), +('119.246.0.0', '119.247.255.255', 2012610560, 2012741631, 'HK', 'Hong Kong'), +('119.248.0.0', '119.251.255.255', 2012741632, 2013003775, 'CN', 'China'), +('119.252.0.0', '119.252.127.255', 2013003776, 2013036543, 'AU', 'Australia'), +('119.252.128.0', '119.252.135.255', 2013036544, 2013038591, 'ID', 'Indonesia'), +('119.252.136.0', '119.252.143.255', 2013038592, 2013040639, 'HK', 'Hong Kong'), +('119.252.144.0', '119.252.159.255', 2013040640, 2013044735, 'IN', 'India'), +('119.252.160.0', '119.252.175.255', 2013044736, 2013048831, 'ID', 'Indonesia'), +('119.252.176.0', '119.252.183.255', 2013048832, 2013050879, 'AU', 'Australia'), +('119.252.192.0', '119.252.223.255', 2013052928, 2013061119, 'IN', 'India'), +('119.252.224.0', '119.252.239.255', 2013061120, 2013065215, 'PG', 'Papua New Guinea'), +('119.253.0.0', '120.15.255.255', 2013069312, 2014314495, 'CN', 'China'), +('120.16.0.0', '120.23.255.255', 2014314496, 2014838783, 'AU', 'Australia'), +('120.24.0.0', '120.27.255.255', 2014838784, 2015100927, 'CN', 'China'), +('120.28.0.0', '120.28.255.255', 2015100928, 2015166463, 'PH', 'Philippines'), +('120.29.0.0', '120.29.63.255', 2015166464, 2015182847, 'AU', 'Australia'), +('120.29.128.0', '120.29.143.255', 2015199232, 2015203327, 'KR', 'Korea, Republic of'), +('120.29.144.0', '120.29.151.255', 2015203328, 2015205375, 'JP', 'Japan'), +('120.29.152.0', '120.29.159.255', 2015205376, 2015207423, 'ID', 'Indonesia'), +('120.29.160.0', '120.29.191.255', 2015207424, 2015215615, 'JP', 'Japan'), +('120.29.192.0', '120.29.193.255', 2015215616, 2015216127, 'HK', 'Hong Kong'), +('120.29.194.0', '120.29.199.255', 2015216128, 2015217663, 'CA', 'Canada'), +('120.29.200.0', '120.29.207.0', 2015217664, 2015219456, 'GU', 'Guam'), +('120.29.207.1', '120.29.223.191', 2015219457, 2015223743, 'CA', 'Canada'), +('120.29.223.192', '120.29.223.199', 2015223744, 2015223751, 'PG', 'Papua New Guinea'), +('120.29.223.200', '120.29.223.207', 2015223752, 2015223759, 'AU', 'Australia'), +('120.29.223.208', '120.29.223.255', 2015223760, 2015223807, 'CA', 'Canada'), +('120.29.224.0', '120.29.231.255', 2015223808, 2015225855, 'ID', 'Indonesia'), +('120.29.232.0', '120.29.239.255', 2015225856, 2015227903, 'IN', 'India'), +('120.29.240.0', '120.29.247.255', 2015227904, 2015229951, 'AU', 'Australia'), +('120.30.0.0', '120.49.255.255', 2015232000, 2016542719, 'CN', 'China'), +('120.50.0.0', '120.50.31.255', 2016542720, 2016550911, 'BD', 'Bangladesh'), +('120.50.32.0', '120.50.47.255', 2016550912, 2016555007, 'SG', 'Singapore'), +('120.50.48.0', '120.50.63.255', 2016555008, 2016559103, 'MY', 'Malaysia'), +('120.50.64.0', '120.50.159.255', 2016559104, 2016583679, 'KR', 'Korea, Republic of'), +('120.50.160.0', '120.50.167.255', 2016583680, 2016585727, 'JP', 'Japan'), +('120.50.176.0', '120.50.183.255', 2016587776, 2016589823, 'BD', 'Bangladesh'), +('120.50.184.0', '120.50.191.255', 2016589824, 2016591871, 'VN', 'Vietnam'), +('120.50.192.0', '120.51.255.255', 2016591872, 2016673791, 'JP', 'Japan'), +('120.52.0.0', '120.55.255.255', 2016673792, 2016935935, 'CN', 'China'), +('120.56.0.0', '120.63.255.255', 2016935936, 2017460223, 'IN', 'India'), +('120.64.0.0', '120.71.255.255', 2017460224, 2017984511, 'CN', 'China'), +('120.72.0.0', '120.72.15.255', 2017984512, 2017988607, 'JP', 'Japan'), +('120.72.16.0', '120.72.31.255', 2017988608, 2017992703, 'PH', 'Philippines'), +('120.72.32.0', '120.72.63.255', 2017992704, 2018000895, 'CN', 'China'), +('120.72.64.0', '120.72.79.255', 2018000896, 2018004991, 'JP', 'Japan'), +('120.72.80.0', '120.72.87.255', 2018004992, 2018007039, 'VN', 'Vietnam'), +('120.72.88.0', '120.72.95.255', 2018007040, 2018009087, 'IN', 'India'), +('120.72.96.0', '120.72.127.255', 2018009088, 2018017279, 'VN', 'Vietnam'), +('120.72.128.0', '120.72.255.255', 2018017280, 2018050047, 'CN', 'China'), +('120.73.0.0', '120.73.255.255', 2018050048, 2018115583, 'KR', 'Korea, Republic of'), +('120.74.0.0', '120.75.255.255', 2018115584, 2018246655, 'JP', 'Japan'), +('120.76.0.0', '120.87.255.255', 2018246656, 2019033087, 'CN', 'China'), +('120.88.0.0', '120.88.7.255', 2019033088, 2019035135, 'AU', 'Australia'), +('120.88.8.0', '120.88.15.255', 2019035136, 2019037183, 'CN', 'China'), +('120.88.16.0', '120.88.31.255', 2019037184, 2019041279, 'JP', 'Japan'), +('120.88.32.0', '120.88.47.255', 2019041280, 2019045375, 'IN', 'India'), +('120.88.64.0', '120.88.95.255', 2019049472, 2019057663, 'AU', 'Australia'), +('120.88.128.0', '120.88.191.255', 2019065856, 2019082239, 'AU', 'Australia'), +('120.89.0.0', '120.89.63.255', 2019098624, 2019115007, 'PH', 'Philippines'), +('120.89.64.0', '120.89.71.255', 2019115008, 2019117055, 'US', 'United States'), +('120.89.72.0', '120.89.79.255', 2019117056, 2019119103, 'IN', 'India'), +('120.89.80.0', '120.89.87.255', 2019119104, 2019121151, 'NZ', 'New Zealand'), +('120.89.96.0', '120.89.127.255', 2019123200, 2019131391, 'NP', 'Nepal'), +('120.89.128.0', '120.89.255.255', 2019131392, 2019164159, 'JP', 'Japan'), +('120.90.0.0', '120.92.255.255', 2019164160, 2019360767, 'CN', 'China'), +('120.93.0.0', '120.93.255.255', 2019360768, 2019426303, 'JP', 'Japan'), +('120.94.0.0', '120.95.255.255', 2019426304, 2019557375, 'CN', 'China'), +('120.96.0.0', '120.127.255.255', 2019557376, 2021654527, 'TW', 'Taiwan'), +('120.128.0.0', '120.135.255.255', 2021654528, 2022178815, 'CN', 'China'), +('120.136.0.0', '120.136.7.255', 2022178816, 2022180863, 'NZ', 'New Zealand'), +('120.136.16.0', '120.136.23.255', 2022182912, 2022184959, 'ID', 'Indonesia'), +('120.136.24.0', '120.136.31.255', 2022184960, 2022187007, 'KH', 'Cambodia'), +('120.136.32.0', '120.136.32.63', 2022187008, 2022187071, 'US', 'United States'), +('120.136.32.64', '120.136.47.255', 2022187072, 2022191103, 'HK', 'Hong Kong'), +('120.136.48.0', '120.136.55.255', 2022191104, 2022193151, 'NZ', 'New Zealand'), +('120.136.64.0', '120.136.127.255', 2022195200, 2022211583, 'KR', 'Korea, Republic of'), +('120.136.128.0', '120.136.191.255', 2022211584, 2022227967, 'CN', 'China'), +('120.136.192.0', '120.136.255.255', 2022227968, 2022244351, 'JP', 'Japan'), +('120.137.0.0', '120.137.127.255', 2022244352, 2022277119, 'CN', 'China'), +('120.137.128.0', '120.137.255.255', 2022277120, 2022309887, 'JP', 'Japan'), +('120.138.0.0', '120.138.15.255', 2022309888, 2022313983, 'PH', 'Philippines'), +('120.138.16.0', '120.138.23.255', 2022313984, 2022316031, 'NZ', 'New Zealand'), +('120.138.32.0', '120.138.63.255', 2022318080, 2022326271, 'AU', 'Australia'), +('120.138.64.0', '120.138.79.255', 2022326272, 2022330367, 'VN', 'Vietnam'), +('120.138.80.0', '120.138.95.255', 2022330368, 2022334463, 'MY', 'Malaysia'), +('120.138.96.0', '120.138.127.255', 2022334464, 2022342655, 'IN', 'India'), +('120.138.128.0', '120.138.191.255', 2022342656, 2022359039, 'JP', 'Japan'), +('120.138.192.0', '120.138.255.255', 2022359040, 2022375423, 'IN', 'India'), +('120.139.0.0', '120.141.255.255', 2022375424, 2022572031, 'MY', 'Malaysia'), +('120.142.0.0', '120.142.255.255', 2022572032, 2022637567, 'KR', 'Korea, Republic of'), +('120.143.0.0', '120.143.127.255', 2022637568, 2022670335, 'JP', 'Japan'), +('120.143.128.0', '120.143.159.255', 2022670336, 2022678527, 'PH', 'Philippines'), +('120.143.160.0', '120.143.255.255', 2022678528, 2022703103, 'KR', 'Korea, Republic of'), +('120.144.0.0', '120.159.255.255', 2022703104, 2023751679, 'AU', 'Australia'), +('120.160.0.0', '120.191.255.255', 2023751680, 2025848831, 'ID', 'Indonesia'), +('120.192.0.0', '120.255.255.255', 2025848832, 2030043135, 'CN', 'China'), +('121.0.0.0', '121.0.7.255', 2030043136, 2030045183, 'AU', 'Australia'), +('121.0.8.0', '121.0.15.255', 2030045184, 2030047231, 'BD', 'Bangladesh'), +('121.0.16.0', '121.0.31.255', 2030047232, 2030051327, 'CN', 'China'), +('121.0.32.0', '121.0.63.255', 2030051328, 2030059519, 'JP', 'Japan'), +('121.0.64.0', '121.0.255.255', 2030059520, 2030108671, 'KR', 'Korea, Republic of'), +('121.1.0.0', '121.1.63.255', 2030108672, 2030125055, 'PH', 'Philippines'), +('121.1.64.0', '121.1.127.255', 2030125056, 2030141439, 'KR', 'Korea, Republic of'), +('121.1.128.0', '121.3.255.255', 2030141440, 2030305279, 'JP', 'Japan'), +('121.4.0.0', '121.5.255.255', 2030305280, 2030436351, 'CN', 'China'), +('121.6.0.0', '121.7.255.255', 2030436352, 2030567423, 'SG', 'Singapore'), +('121.8.0.0', '121.43.255.255', 2030567424, 2032926719, 'CN', 'China'), +('121.44.0.0', '121.45.255.255', 2032926720, 2033057791, 'AU', 'Australia'), +('121.46.0.0', '121.49.255.255', 2033057792, 2033319935, 'CN', 'China'), +('121.50.0.0', '121.50.15.255', 2033319936, 2033324031, 'IN', 'India'), +('121.50.16.0', '121.50.31.255', 2033324032, 2033328127, 'KR', 'Korea, Republic of'), +('121.50.32.0', '121.50.39.255', 2033328128, 2033330175, 'ID', 'Indonesia'), +('121.50.40.0', '121.50.63.255', 2033330176, 2033336319, 'JP', 'Japan'), +('121.50.64.0', '121.50.127.255', 2033336320, 2033352703, 'KR', 'Korea, Republic of'), +('121.50.128.0', '121.50.143.255', 2033352704, 2033356799, 'ID', 'Indonesia'), +('121.50.144.0', '121.50.151.255', 2033356800, 2033358847, 'TW', 'Taiwan'), +('121.50.152.0', '121.50.167.255', 2033358848, 2033362943, 'JP', 'Japan'), +('121.50.168.0', '121.50.175.255', 2033362944, 2033364991, 'TH', 'Thailand'), +('121.50.176.0', '121.50.191.255', 2033364992, 2033369087, 'TW', 'Taiwan'), +('121.50.192.0', '121.50.223.255', 2033369088, 2033377279, 'AU', 'Australia'), +('121.50.224.0', '121.50.255.255', 2033377280, 2033385471, 'PH', 'Philippines'), +('121.51.0.0', '121.51.255.255', 2033385472, 2033451007, 'CN', 'China'), +('121.52.0.0', '121.52.143.255', 2033451008, 2033487871, 'ID', 'Indonesia'), +('121.52.144.0', '121.52.159.255', 2033487872, 2033491967, 'PK', 'Pakistan'), +('121.52.160.0', '121.52.191.255', 2033491968, 2033500159, 'CN', 'China'), +('121.52.192.0', '121.52.199.255', 2033500160, 2033502207, 'AU', 'Australia'), +('121.52.200.0', '121.52.207.255', 2033502208, 2033504255, 'SG', 'Singapore'), +('121.52.208.0', '121.52.255.255', 2033504256, 2033516543, 'CN', 'China'), +('121.53.0.0', '121.53.255.255', 2033516544, 2033582079, 'KR', 'Korea, Republic of'), +('121.54.0.0', '121.54.127.255', 2033582080, 2033614847, 'PH', 'Philippines'), +('121.54.128.0', '121.54.159.255', 2033614848, 2033623039, 'AU', 'Australia'), +('121.54.160.0', '121.54.167.255', 2033623040, 2033625087, 'PH', 'Philippines'), +('121.54.168.0', '121.54.175.255', 2033625088, 2033627135, 'HK', 'Hong Kong'), +('121.54.176.0', '121.54.183.255', 2033627136, 2033629183, 'NZ', 'New Zealand'), +('121.54.192.0', '121.54.255.255', 2033631232, 2033647615, 'KR', 'Korea, Republic of'), +('121.55.0.0', '121.55.63.255', 2033647616, 2033663999, 'CN', 'China'), +('121.55.64.0', '121.55.191.255', 2033664000, 2033696767, 'KR', 'Korea, Republic of'), +('121.55.192.0', '121.55.255.255', 2033696768, 2033713151, 'GU', 'Guam'), +('121.56.0.0', '121.58.127.255', 2033713152, 2033876991, 'CN', 'China'), +('121.58.128.0', '121.58.135.255', 2033876992, 2033879039, 'JP', 'Japan'), +('121.58.136.0', '121.58.143.255', 2033879040, 2033881087, 'ID', 'Indonesia'), +('121.58.144.0', '121.58.159.255', 2033881088, 2033885183, 'CN', 'China'), +('121.58.160.0', '121.58.167.255', 2033885184, 2033887231, 'AF', 'Afghanistan'), +('121.58.168.0', '121.58.175.255', 2033887232, 2033889279, 'IN', 'India'), +('121.58.176.0', '121.58.183.255', 2033889280, 2033891327, 'JP', 'Japan'), +('121.58.184.0', '121.58.191.255', 2033891328, 2033893375, 'ID', 'Indonesia'), +('121.58.192.0', '121.58.255.255', 2033893376, 2033909759, 'PH', 'Philippines'), +('121.59.0.0', '121.63.163.143', 2033909760, 2034213775, 'CN', 'China'), +('121.63.163.144', '121.63.163.147', 2034213776, 2034213779, 'FR', 'France'), +('121.63.163.148', '121.63.163.151', 2034213780, 2034213783, 'DE', 'Germany'), +('121.63.163.152', '121.63.163.155', 2034213784, 2034213787, 'CN', 'China'), +('121.63.163.156', '121.63.163.159', 2034213788, 2034213791, 'SL', 'Sierra Leone'), +('121.63.163.160', '121.63.255.255', 2034213792, 2034237439, 'CN', 'China'), +('121.64.0.0', '121.67.255.255', 2034237440, 2034499583, 'KR', 'Korea, Republic of'), +('121.68.0.0', '121.71.255.255', 2034499584, 2034761727, 'CN', 'China'), +('121.72.0.0', '121.75.255.255', 2034761728, 2035023871, 'NZ', 'New Zealand'), +('121.76.0.0', '121.77.255.255', 2035023872, 2035154943, 'CN', 'China'), +('121.78.0.0', '121.78.255.255', 2035154944, 2035220479, 'KR', 'Korea, Republic of'), +('121.79.0.0', '121.79.127.255', 2035220480, 2035253247, 'AU', 'Australia'), +('121.79.128.0', '121.79.191.255', 2035253248, 2035269631, 'CN', 'China'), +('121.79.192.0', '121.79.223.255', 2035269632, 2035277823, 'NZ', 'New Zealand'), +('121.80.0.0', '121.87.255.255', 2035286016, 2035810303, 'JP', 'Japan'), +('121.88.0.0', '121.88.255.255', 2035810304, 2035875839, 'KR', 'Korea, Republic of'), +('121.89.0.0', '121.89.255.255', 2035875840, 2035941375, 'CN', 'China'), +('121.90.0.0', '121.90.255.255', 2035941376, 2036006911, 'NZ', 'New Zealand'), +('121.91.0.0', '121.91.255.255', 2036006912, 2036072447, 'AU', 'Australia'), +('121.92.0.0', '121.95.255.255', 2036072448, 2036334591, 'JP', 'Japan'), +('121.96.0.0', '121.97.255.255', 2036334592, 2036465663, 'PH', 'Philippines'), +('121.98.0.0', '121.98.255.255', 2036465664, 2036531199, 'NZ', 'New Zealand'), +('121.100.0.0', '121.100.7.255', 2036596736, 2036598783, 'ID', 'Indonesia'), +('121.100.8.0', '121.100.15.255', 2036598784, 2036600831, 'JP', 'Japan'), +('121.100.16.0', '121.100.31.255', 2036600832, 2036604927, 'ID', 'Indonesia'), +('121.100.32.0', '121.100.47.255', 2036604928, 2036609023, 'SG', 'Singapore'), +('121.100.48.0', '121.100.55.255', 2036609024, 2036611071, 'AF', 'Afghanistan'), +('121.100.64.0', '121.100.127.255', 2036613120, 2036629503, 'KR', 'Korea, Republic of'), +('121.100.128.0', '121.100.255.255', 2036629504, 2036662271, 'CN', 'China'), +('121.101.0.0', '121.101.63.255', 2036662272, 2036678655, 'AU', 'Australia'), +('121.101.64.0', '121.101.127.255', 2036678656, 2036695039, 'JP', 'Japan'), +('121.101.128.0', '121.101.135.255', 2036695040, 2036697087, 'ID', 'Indonesia'), +('121.101.136.0', '121.101.143.255', 2036697088, 2036699135, 'AU', 'Australia'), +('121.101.144.0', '121.101.159.255', 2036699136, 2036703231, 'IN', 'India'), +('121.101.160.0', '121.101.167.255', 2036703232, 2036705279, 'AU', 'Australia'), +('121.101.168.0', '121.101.175.255', 2036705280, 2036707327, 'HK', 'Hong Kong'), +('121.101.176.0', '121.101.183.255', 2036707328, 2036709375, 'MN', 'Mongolia'), +('121.101.184.0', '121.101.191.255', 2036709376, 2036711423, 'ID', 'Indonesia'), +('121.101.192.0', '121.101.207.255', 2036711424, 2036715519, 'KR', 'Korea, Republic of'), +('121.101.208.0', '121.101.223.255', 2036715520, 2036719615, 'CN', 'China'), +('121.101.224.0', '121.101.255.255', 2036719616, 2036727807, 'KR', 'Korea, Republic of'), +('121.102.0.0', '121.119.255.255', 2036727808, 2037907455, 'JP', 'Japan'), +('121.120.0.0', '121.123.255.255', 2037907456, 2038169599, 'MY', 'Malaysia'), +('121.124.0.0', '121.126.255.255', 2038169600, 2038366207, 'KR', 'Korea, Republic of'), +('121.127.0.0', '121.127.31.255', 2038366208, 2038374399, 'PH', 'Philippines'), +('121.127.32.0', '121.127.63.255', 2038374400, 2038382591, 'AF', 'Afghanistan'), +('121.127.64.0', '121.127.191.255', 2038382592, 2038415359, 'KR', 'Korea, Republic of'), +('121.127.192.0', '121.127.223.255', 2038415360, 2038423551, 'AU', 'Australia'), +('121.127.224.0', '121.127.255.255', 2038423552, 2038431743, 'HK', 'Hong Kong'), +('121.128.0.0', '121.191.255.255', 2038431744, 2042626047, 'KR', 'Korea, Republic of'), +('121.192.0.0', '121.199.255.255', 2042626048, 2043150335, 'CN', 'China'), +('121.200.0.0', '121.200.63.255', 2043150336, 2043166719, 'AU', 'Australia'), +('121.200.64.0', '121.200.127.255', 2043166720, 2043183103, 'KR', 'Korea, Republic of'), +('121.200.128.0', '121.200.191.255', 2043183104, 2043199487, 'JP', 'Japan'), +('121.200.192.0', '121.200.199.255', 2043199488, 2043201535, 'BD', 'Bangladesh'), +('121.200.200.0', '121.200.207.255', 2043201536, 2043203583, 'JP', 'Japan'), +('121.200.208.0', '121.200.215.255', 2043203584, 2043205631, 'AU', 'Australia'), +('121.200.224.0', '121.200.239.255', 2043207680, 2043211775, 'AU', 'Australia'), +('121.201.0.0', '121.201.255.255', 2043215872, 2043281407, 'CN', 'China'), +('121.202.0.0', '121.203.255.255', 2043281408, 2043412479, 'HK', 'Hong Kong'), +('121.204.0.0', '121.207.255.255', 2043412480, 2043674623, 'CN', 'China'), +('121.208.0.0', '121.223.255.255', 2043674624, 2044723199, 'AU', 'Australia'), +('121.224.0.0', '121.239.255.255', 2044723200, 2045771775, 'CN', 'China'), +('121.240.0.0', '121.247.255.255', 2045771776, 2046296063, 'IN', 'India'), +('121.248.0.0', '121.251.255.255', 2046296064, 2046558207, 'CN', 'China'), +('121.252.0.0', '121.254.63.255', 2046558208, 2046705663, 'KR', 'Korea, Republic of'), +('121.254.64.0', '121.254.127.255', 2046705664, 2046722047, 'TW', 'Taiwan'), +('121.254.128.0', '121.254.255.255', 2046722048, 2046754815, 'KR', 'Korea, Republic of'), +('121.255.0.0', '121.255.255.255', 2046754816, 2046820351, 'CN', 'China'), +('122.0.0.0', '122.0.7.255', 2046820352, 2046822399, 'TH', 'Thailand'), +('122.0.8.0', '122.0.15.255', 2046822400, 2046824447, 'KR', 'Korea, Republic of'), +('122.0.16.0', '122.0.31.255', 2046824448, 2046828543, 'MY', 'Malaysia'), +('122.0.32.0', '122.0.63.255', 2046828544, 2046836735, 'KR', 'Korea, Republic of'), +('122.0.64.0', '122.0.255.255', 2046836736, 2046885887, 'CN', 'China'), +('122.1.0.0', '122.1.255.255', 2046885888, 2046951423, 'JP', 'Japan'), +('122.2.0.0', '122.3.255.255', 2046951424, 2047082495, 'PH', 'Philippines'), +('122.4.0.0', '122.15.255.255', 2047082496, 2047868927, 'CN', 'China'), +('122.16.0.0', '122.31.255.255', 2047868928, 2048917503, 'JP', 'Japan'), +('122.32.0.0', '122.47.255.255', 2048917504, 2049966079, 'KR', 'Korea, Republic of'), +('122.48.0.0', '122.49.63.255', 2049966080, 2050047999, 'CN', 'China'), +('122.49.64.0', '122.49.127.255', 2050048000, 2050064383, 'KR', 'Korea, Republic of'), +('122.49.128.0', '122.49.191.255', 2050064384, 2050080767, 'AU', 'Australia'), +('122.49.192.0', '122.49.199.255', 2050080768, 2050082815, 'JP', 'Japan'), +('122.49.200.0', '122.49.207.255', 2050082816, 2050084863, 'AU', 'Australia'), +('122.49.208.0', '122.49.223.255', 2050084864, 2050088959, 'PH', 'Philippines'), +('122.49.224.0', '122.49.231.255', 2050088960, 2050091007, 'ID', 'Indonesia'), +('122.49.232.0', '122.49.255.255', 2050091008, 2050097151, 'JP', 'Japan'), +('122.50.0.0', '122.50.15.255', 2050097152, 2050101247, 'SG', 'Singapore'), +('122.50.16.0', '122.50.63.255', 2050101248, 2050113535, 'JP', 'Japan'), +('122.50.64.0', '122.50.127.255', 2050113536, 2050129919, 'SG', 'Singapore'), +('122.50.128.0', '122.50.255.255', 2050129920, 2050162687, 'IN', 'India'), +('122.51.0.0', '122.51.255.255', 2050162688, 2050228223, 'CN', 'China'), +('122.52.0.0', '122.55.255.255', 2050228224, 2050490367, 'PH', 'Philippines'), +('122.56.0.0', '122.63.255.255', 2050490368, 2051014655, 'NZ', 'New Zealand'), +('122.64.0.0', '122.97.255.255', 2051014656, 2053242879, 'CN', 'China'), +('122.98.0.0', '122.98.255.255', 2053242880, 2053308415, 'IN', 'India'), +('122.99.0.0', '122.99.63.255', 2053308416, 2053324799, 'TW', 'Taiwan'), +('122.99.64.0', '122.99.95.255', 2053324800, 2053332991, 'AU', 'Australia'), +('122.99.96.0', '122.99.103.255', 2053332992, 2053335039, 'BD', 'Bangladesh'), +('122.99.104.0', '122.99.111.255', 2053335040, 2053337087, 'JP', 'Japan'), +('122.99.112.0', '122.99.119.255', 2053337088, 2053339135, 'AU', 'Australia'), +('122.99.128.0', '122.99.255.255', 2053341184, 2053373951, 'KR', 'Korea, Republic of'), +('122.100.0.0', '122.100.15.255', 2053373952, 2053378047, 'AU', 'Australia'), +('122.100.16.0', '122.100.23.255', 2053378048, 2053380095, 'JP', 'Japan'), +('122.100.32.0', '122.100.63.255', 2053382144, 2053390335, 'KR', 'Korea, Republic of'), +('122.100.64.0', '122.100.127.255', 2053390336, 2053406719, 'TW', 'Taiwan'), +('122.100.128.0', '122.100.255.255', 2053406720, 2053439487, 'MO', 'Macau'), +('122.101.0.0', '122.101.255.255', 2053439488, 2053505023, 'KR', 'Korea, Republic of'), +('122.102.0.0', '122.102.15.255', 2053505024, 2053509119, 'CN', 'China'), +('122.102.16.0', '122.102.23.255', 2053509120, 2053511167, 'AU', 'Australia'), +('122.102.32.0', '122.102.39.255', 2053513216, 2053515263, 'BD', 'Bangladesh'), +('122.102.48.0', '122.102.55.255', 2053517312, 2053519359, 'ID', 'Indonesia'), +('122.102.56.0', '122.102.63.255', 2053519360, 2053521407, 'BD', 'Bangladesh'), +('122.102.64.0', '122.102.95.255', 2053521408, 2053529599, 'CN', 'China'), +('122.102.96.0', '122.102.111.255', 2053529600, 2053533695, 'AU', 'Australia'), +('122.102.128.0', '122.103.255.255', 2053537792, 2053636095, 'JP', 'Japan'), +('122.104.0.0', '122.111.255.255', 2053636096, 2054160383, 'AU', 'Australia'), +('122.112.0.0', '122.115.255.255', 2054160384, 2054422527, 'CN', 'China'), +('122.116.0.0', '122.118.255.255', 2054422528, 2054619135, 'TW', 'Taiwan'), +('122.119.0.0', '122.119.255.255', 2054619136, 2054684671, 'CN', 'China'), +('122.120.0.0', '122.127.255.255', 2054684672, 2055208959, 'TW', 'Taiwan'), +('122.128.0.0', '122.128.15.255', 2055208960, 2055213055, 'JP', 'Japan'), +('122.128.16.0', '122.128.31.255', 2055213056, 2055217151, 'ID', 'Indonesia'), +('122.128.32.0', '122.128.79.255', 2055217152, 2055229439, 'KR', 'Korea, Republic of'), +('122.128.80.0', '122.128.87.255', 2055229440, 2055231487, 'TW', 'Taiwan'), +('122.128.88.0', '122.128.95.255', 2055231488, 2055233535, 'AU', 'Australia'), +('122.128.96.0', '122.128.103.255', 2055233536, 2055235583, 'NP', 'Nepal'), +('122.128.104.0', '122.128.111.255', 2055235584, 2055237631, 'HK', 'Hong Kong'), +('122.128.112.0', '122.128.119.255', 2055237632, 2055239679, 'JP', 'Japan'), +('122.128.120.0', '122.128.127.255', 2055239680, 2055241727, 'VU', 'Vanuatu'), +('122.128.128.0', '122.128.255.255', 2055241728, 2055274495, 'KR', 'Korea, Republic of'), +('122.129.0.0', '122.129.63.255', 2055274496, 2055290879, 'AU', 'Australia'), +('122.129.64.0', '122.129.95.255', 2055290880, 2055299071, 'PK', 'Pakistan'), +('122.129.96.0', '122.129.127.255', 2055299072, 2055307263, 'ID', 'Indonesia'), +('122.129.128.0', '122.129.159.255', 2055307264, 2055315455, 'AU', 'Australia'), +('122.129.192.0', '122.129.207.255', 2055323648, 2055327743, 'ID', 'Indonesia'), +('122.129.208.0', '122.129.215.255', 2055327744, 2055329791, 'KR', 'Korea, Republic of'), +('122.129.224.0', '122.129.239.255', 2055331840, 2055335935, 'JP', 'Japan'), +('122.129.240.0', '122.129.255.255', 2055335936, 2055340031, 'KR', 'Korea, Republic of'), +('122.130.0.0', '122.135.255.255', 2055340032, 2055733247, 'JP', 'Japan'), +('122.136.0.0', '122.143.255.255', 2055733248, 2056257535, 'CN', 'China'), +('122.144.0.0', '122.144.7.255', 2056257536, 2056259583, 'ID', 'Indonesia'), +('122.144.8.0', '122.144.15.255', 2056259584, 2056261631, 'BD', 'Bangladesh'), +('122.144.16.0', '122.144.23.255', 2056261632, 2056263679, 'IN', 'India'), +('122.144.24.0', '122.144.31.255', 2056263680, 2056265727, 'TH', 'Thailand'), +('122.144.32.0', '122.144.63.255', 2056265728, 2056273919, 'TW', 'Taiwan'), +('122.144.64.0', '122.144.127.255', 2056273920, 2056290303, 'PH', 'Philippines'), +('122.144.128.0', '122.144.255.255', 2056290304, 2056323071, 'CN', 'China'), +('122.145.0.0', '122.145.255.255', 2056323072, 2056388607, 'JP', 'Japan'), +('122.146.0.0', '122.147.255.255', 2056388608, 2056519679, 'TW', 'Taiwan'), +('122.148.0.0', '122.149.255.255', 2056519680, 2056650751, 'AU', 'Australia'), +('122.152.0.0', '122.152.47.255', 2056781824, 2056794111, 'JP', 'Japan'), +('122.152.48.0', '122.152.55.255', 2056794112, 2056796159, 'BD', 'Bangladesh'), +('122.152.64.0', '122.152.95.255', 2056798208, 2056806399, 'JP', 'Japan'), +('122.152.128.0', '122.152.130.63', 2056814592, 2056815167, 'JP', 'Japan'), +('122.152.130.64', '122.152.130.91', 2056815168, 2056815195, 'HK', 'Hong Kong'), +('122.152.130.92', '122.152.130.111', 2056815196, 2056815215, 'JP', 'Japan'), +('122.152.130.112', '122.152.130.191', 2056815216, 2056815295, 'HK', 'Hong Kong'), +('122.152.130.192', '122.152.130.231', 2056815296, 2056815335, 'JP', 'Japan'), +('122.152.130.232', '122.152.130.239', 2056815336, 2056815343, 'HK', 'Hong Kong'), +('122.152.130.240', '122.152.130.255', 2056815344, 2056815359, 'JP', 'Japan'), +('122.152.131.0', '122.152.131.255', 2056815360, 2056815615, 'HK', 'Hong Kong'), +('122.152.132.0', '122.152.133.159', 2056815616, 2056816031, 'AU', 'Australia'), +('122.152.133.160', '122.152.133.175', 2056816032, 2056816047, 'NZ', 'New Zealand'), +('122.152.133.176', '122.152.133.223', 2056816048, 2056816095, 'AU', 'Australia'), +('122.152.133.224', '122.152.135.255', 2056816096, 2056816639, 'JP', 'Japan'), +('122.152.136.0', '122.152.136.175', 2056816640, 2056816815, 'SG', 'Singapore'), +('122.152.136.176', '122.152.136.191', 2056816816, 2056816831, 'JP', 'Japan'), +('122.152.136.192', '122.152.136.255', 2056816832, 2056816895, 'SG', 'Singapore'), +('122.152.137.0', '122.152.137.255', 2056816896, 2056817151, 'JP', 'Japan'), +('122.152.138.0', '122.152.138.247', 2056817152, 2056817399, 'HK', 'Hong Kong'), +('122.152.138.248', '122.152.138.255', 2056817400, 2056817407, 'JP', 'Japan'), +('122.152.139.0', '122.152.139.191', 2056817408, 2056817599, 'HK', 'Hong Kong'), +('122.152.139.192', '122.152.142.47', 2056817600, 2056818223, 'JP', 'Japan'), +('122.152.142.48', '122.152.142.63', 2056818224, 2056818239, 'SG', 'Singapore'), +('122.152.142.64', '122.152.142.127', 2056818240, 2056818303, 'JP', 'Japan'), +('122.152.142.128', '122.152.143.127', 2056818304, 2056818559, 'SG', 'Singapore'), +('122.152.143.128', '122.152.147.255', 2056818560, 2056819711, 'JP', 'Japan'), +('122.152.148.0', '122.152.148.47', 2056819712, 2056819759, 'AU', 'Australia'), +('122.152.148.48', '122.152.148.63', 2056819760, 2056819775, 'JP', 'Japan'), +('122.152.148.64', '122.152.148.79', 2056819776, 2056819791, 'AU', 'Australia'), +('122.152.148.80', '122.152.148.95', 2056819792, 2056819807, 'JP', 'Japan'), +('122.152.148.96', '122.152.148.127', 2056819808, 2056819839, 'AU', 'Australia'), +('122.152.148.128', '122.152.149.255', 2056819840, 2056820223, 'JP', 'Japan'), +('122.152.150.0', '122.152.150.55', 2056820224, 2056820279, 'HK', 'Hong Kong'), +('122.152.150.56', '122.152.150.63', 2056820280, 2056820287, 'JP', 'Japan'), +('122.152.150.64', '122.152.150.95', 2056820288, 2056820319, 'HK', 'Hong Kong'), +('122.152.150.96', '122.152.150.127', 2056820320, 2056820351, 'JP', 'Japan'), +('122.152.150.128', '122.152.150.255', 2056820352, 2056820479, 'HK', 'Hong Kong'), +('122.152.151.0', '122.152.174.255', 2056820480, 2056826623, 'JP', 'Japan'), +('122.152.175.0', '122.152.175.255', 2056826624, 2056826879, 'HK', 'Hong Kong'), +('122.152.176.0', '122.152.180.31', 2056826880, 2056827935, 'JP', 'Japan'), +('122.152.180.32', '122.152.180.61', 2056827936, 2056827965, 'HK', 'Hong Kong'), +('122.152.180.62', '122.152.189.63', 2056827966, 2056830271, 'JP', 'Japan'), +('122.152.189.64', '122.152.189.67', 2056830272, 2056830275, 'HK', 'Hong Kong'), +('122.152.189.68', '122.152.191.255', 2056830276, 2056830975, 'JP', 'Japan'), +('122.152.192.0', '122.152.255.255', 2056830976, 2056847359, 'CN', 'China'), +('122.153.0.0', '122.153.255.255', 2056847360, 2056912895, 'KR', 'Korea, Republic of'), +('122.154.0.0', '122.155.255.255', 2056912896, 2057043967, 'TH', 'Thailand'), +('122.156.0.0', '122.159.255.255', 2057043968, 2057306111, 'CN', 'China'), +('122.160.0.0', '122.191.255.255', 2057306112, 2059403263, 'IN', 'India'), +('122.192.0.0', '122.195.255.255', 2059403264, 2059665407, 'CN', 'China'), +('122.196.0.0', '122.197.255.255', 2059665408, 2059796479, 'JP', 'Japan'), +('122.198.0.0', '122.198.255.255', 2059796480, 2059862015, 'CN', 'China'), +('122.199.0.0', '122.199.63.255', 2059862016, 2059878399, 'AU', 'Australia'), +('122.199.64.0', '122.199.255.255', 2059878400, 2059927551, 'KR', 'Korea, Republic of'), +('122.200.0.0', '122.200.15.255', 2059927552, 2059931647, 'ID', 'Indonesia'), +('122.200.16.0', '122.200.23.255', 2059931648, 2059933695, 'IN', 'India'), +('122.200.24.0', '122.200.31.255', 2059933696, 2059935743, 'AU', 'Australia'), +('122.200.32.0', '122.200.39.255', 2059935744, 2059937791, 'JP', 'Japan'), +('122.200.40.0', '122.200.47.255', 2059937792, 2059939839, 'BD', 'Bangladesh'), +('122.200.48.0', '122.200.55.255', 2059939840, 2059941887, 'ID', 'Indonesia'), +('122.200.56.0', '122.200.63.255', 2059941888, 2059943935, 'AU', 'Australia'), +('122.200.64.0', '122.200.127.255', 2059943936, 2059960319, 'CN', 'China'), +('122.200.128.0', '122.200.143.255', 2059960320, 2059964415, 'AU', 'Australia'), +('122.200.144.0', '122.200.151.255', 2059964416, 2059966463, 'ID', 'Indonesia'), +('122.200.152.0', '122.200.159.255', 2059966464, 2059968511, 'TW', 'Taiwan'), +('122.200.160.0', '122.200.175.255', 2059968512, 2059972607, 'AU', 'Australia'), +('122.200.192.0', '122.201.7.255', 2059976704, 2059995135, 'JP', 'Japan'), +('122.201.8.0', '122.201.15.255', 2059995136, 2059997183, 'VN', 'Vietnam'), +('122.201.16.0', '122.201.31.255', 2059997184, 2060001279, 'MN', 'Mongolia'), +('122.201.32.0', '122.201.47.255', 2060001280, 2060005375, 'HK', 'Hong Kong'), +('122.201.64.0', '122.201.127.255', 2060009472, 2060025855, 'AU', 'Australia'), +('122.201.128.0', '122.201.255.255', 2060025856, 2060058623, 'TW', 'Taiwan'), +('122.202.16.0', '122.202.31.255', 2060062720, 2060066815, 'JP', 'Japan'), +('122.202.32.0', '122.202.63.255', 2060066816, 2060075007, 'KR', 'Korea, Republic of'), +('122.202.64.0', '122.202.79.255', 2060075008, 2060079103, 'AU', 'Australia'), +('122.202.128.0', '122.203.255.255', 2060091392, 2060189695, 'KR', 'Korea, Republic of'), +('122.204.0.0', '122.207.255.255', 2060189696, 2060451839, 'CN', 'China'), +('122.208.0.0', '122.223.255.255', 2060451840, 2061500415, 'JP', 'Japan'), +('122.224.0.0', '122.247.255.255', 2061500416, 2063073279, 'CN', 'China'), +('122.248.0.0', '122.248.15.255', 2063073280, 2063077375, 'BD', 'Bangladesh'), +('122.248.16.0', '122.248.31.255', 2063077376, 2063081471, 'HK', 'Hong Kong'), +('122.248.32.0', '122.248.47.255', 2063081472, 2063085567, 'BD', 'Bangladesh'), +('122.248.48.0', '122.248.63.255', 2063085568, 2063089663, 'CN', 'China'), +('122.248.64.0', '122.248.95.255', 2063089664, 2063097855, 'JP', 'Japan'), +('122.248.128.0', '122.248.129.255', 2063106048, 2063106559, 'SG', 'Singapore'), +('122.248.130.0', '122.248.130.255', 2063106560, 2063106815, 'JP', 'Japan'), +('122.248.131.0', '122.248.133.95', 2063106816, 2063107423, 'SG', 'Singapore'), +('122.248.133.96', '122.248.133.127', 2063107424, 2063107455, 'JP', 'Japan'), +('122.248.133.128', '122.248.133.247', 2063107456, 2063107575, 'SG', 'Singapore'), +('122.248.133.248', '122.248.133.255', 2063107576, 2063107583, 'JP', 'Japan'), +('122.248.134.0', '122.248.134.31', 2063107584, 2063107615, 'SG', 'Singapore'), +('122.248.134.32', '122.248.135.255', 2063107616, 2063108095, 'JP', 'Japan'), +('122.248.136.0', '122.248.139.255', 2063108096, 2063109119, 'HK', 'Hong Kong'), +('122.248.140.0', '122.248.140.255', 2063109120, 2063109375, 'JP', 'Japan'), +('122.248.141.0', '122.248.141.191', 2063109376, 2063109567, 'HK', 'Hong Kong'), +('122.248.141.192', '122.248.141.255', 2063109568, 2063109631, 'JP', 'Japan'), +('122.248.142.0', '122.248.142.127', 2063109632, 2063109759, 'HK', 'Hong Kong'), +('122.248.142.128', '122.248.147.255', 2063109760, 2063111167, 'JP', 'Japan'), +('122.248.148.0', '122.248.150.32', 2063111168, 2063111712, 'AU', 'Australia'), +('122.248.150.33', '122.248.150.63', 2063111713, 2063111743, 'JP', 'Japan'), +('122.248.150.64', '122.248.150.119', 2063111744, 2063111799, 'AU', 'Australia'), +('122.248.150.120', '122.248.151.255', 2063111800, 2063112191, 'JP', 'Japan'), +('122.248.152.0', '122.248.156.23', 2063112192, 2063113239, 'AU', 'Australia'), +('122.248.156.24', '122.248.156.31', 2063113240, 2063113247, 'JP', 'Japan'), +('122.248.156.32', '122.248.156.63', 2063113248, 2063113279, 'AU', 'Australia'), +('122.248.156.64', '122.248.156.127', 2063113280, 2063113343, 'JP', 'Japan'), +('122.248.156.128', '122.248.157.255', 2063113344, 2063113727, 'AU', 'Australia'), +('122.248.158.0', '122.248.159.255', 2063113728, 2063114239, 'JP', 'Japan'), +('122.248.160.0', '122.248.160.87', 2063114240, 2063114327, 'IN', 'India'), +('122.248.160.88', '122.248.167.255', 2063114328, 2063116287, 'JP', 'Japan'), +('122.248.168.0', '122.248.168.31', 2063116288, 2063116319, 'SG', 'Singapore'), +('122.248.168.32', '122.248.191.255', 2063116320, 2063122431, 'JP', 'Japan'), +('122.249.0.0', '122.251.255.255', 2063138816, 2063335423, 'JP', 'Japan'), +('122.252.0.0', '122.252.23.255', 2063335424, 2063341567, 'AU', 'Australia'), +('122.252.24.0', '122.252.63.255', 2063341568, 2063351807, 'AP', 'Asia/Pacific Region'), +('122.252.64.0', '122.252.127.255', 2063351808, 2063368191, 'KR', 'Korea, Republic of'), +('122.252.128.0', '122.252.135.255', 2063368192, 2063370239, 'AP', 'Asia/Pacific Region'), +('122.252.136.0', '122.252.143.255', 2063370240, 2063372287, 'JP', 'Japan'), +('122.252.144.0', '122.252.151.255', 2063372288, 2063374335, 'AP', 'Asia/Pacific Region'), +('122.252.160.0', '122.252.175.255', 2063376384, 2063380479, 'TW', 'Taiwan'), +('122.252.176.0', '122.252.183.255', 2063380480, 2063382527, 'KH', 'Cambodia'), +('122.252.192.0', '122.252.223.255', 2063384576, 2063392767, 'KR', 'Korea, Republic of'), +('122.252.224.0', '122.252.255.255', 2063392768, 2063400959, 'IN', 'India'), +('122.253.0.0', '122.253.255.255', 2063400960, 2063466495, 'JP', 'Japan'), +('122.254.0.0', '122.254.63.255', 2063466496, 2063482879, 'TW', 'Taiwan'), +('122.254.64.0', '122.254.127.255', 2063482880, 2063499263, 'MN', 'Mongolia'), +('122.254.128.0', '122.254.255.255', 2063499264, 2063532031, 'KR', 'Korea, Republic of'), +('122.255.0.0', '122.255.63.255', 2063532032, 2063548415, 'LK', 'Sri Lanka'), +('122.255.64.0', '122.255.71.255', 2063548416, 2063550463, 'BD', 'Bangladesh'), +('122.255.72.0', '122.255.79.255', 2063550464, 2063552511, 'IN', 'India'), +('122.255.80.0', '122.255.95.255', 2063552512, 2063556607, 'TW', 'Taiwan'), +('122.255.96.0', '122.255.127.255', 2063556608, 2063564799, 'MY', 'Malaysia'), +('122.255.128.0', '122.255.191.255', 2063564800, 2063581183, 'JP', 'Japan'), +('123.0.0.0', '123.0.15.255', 2063597568, 2063601663, 'KR', 'Korea, Republic of'), +('123.0.32.0', '123.0.63.255', 2063605760, 2063613951, 'TW', 'Taiwan'), +('123.0.64.0', '123.0.127.255', 2063613952, 2063630335, 'JP', 'Japan'), +('123.0.128.0', '123.0.191.255', 2063630336, 2063646719, 'CN', 'China'), +('123.0.192.0', '123.0.255.255', 2063646720, 2063663103, 'TW', 'Taiwan'), +('123.1.0.0', '123.1.127.255', 2063663104, 2063695871, 'JP', 'Japan'), +('123.2.0.0', '123.3.255.255', 2063728640, 2063859711, 'AU', 'Australia'), +('123.4.0.0', '123.15.255.255', 2063859712, 2064646143, 'CN', 'China'), +('123.16.0.0', '123.31.255.255', 2064646144, 2065694719, 'VN', 'Vietnam'), +('123.32.0.0', '123.47.255.255', 2065694720, 2066743295, 'KR', 'Korea, Republic of'), +('123.48.0.0', '123.48.255.255', 2066743296, 2066808831, 'JP', 'Japan'), +('123.49.0.0', '123.49.63.255', 2066808832, 2066825215, 'BD', 'Bangladesh'), +('123.49.64.0', '123.49.127.255', 2066825216, 2066841599, 'SG', 'Singapore'), +('123.49.128.0', '123.49.255.255', 2066841600, 2066874367, 'CN', 'China'), +('123.50.0.0', '123.50.31.255', 2066874368, 2066882559, 'JP', 'Japan'), +('123.50.32.0', '123.50.63.255', 2066882560, 2066890751, 'TW', 'Taiwan'), +('123.50.64.0', '123.50.127.255', 2066890752, 2066907135, 'PF', 'French Polynesia'), +('123.50.128.0', '123.50.159.255', 2066907136, 2066915327, 'AU', 'Australia'), +('123.50.160.0', '123.50.191.255', 2066915328, 2066923519, 'IN', 'India'), +('123.50.192.0', '123.50.255.255', 2066923520, 2066939903, 'JP', 'Japan'), +('123.51.0.0', '123.51.127.255', 2066939904, 2066972671, 'AU', 'Australia'), +('123.51.128.0', '123.51.255.255', 2066972672, 2067005439, 'TW', 'Taiwan'), +('123.52.0.0', '123.98.127.255', 2067005440, 2070052863, 'CN', 'China'), +('123.98.128.0', '123.98.143.255', 2070052864, 2070056959, 'AU', 'Australia'), +('123.98.144.0', '123.98.159.255', 2070056960, 2070061055, 'JP', 'Japan'), +('123.98.160.0', '123.98.223.255', 2070061056, 2070077439, 'KR', 'Korea, Republic of'), +('123.98.224.0', '123.98.255.255', 2070077440, 2070085631, 'JP', 'Japan'), +('123.99.0.0', '123.99.63.255', 2070085632, 2070102015, 'TW', 'Taiwan'), +('123.99.64.0', '123.99.127.255', 2070102016, 2070118399, 'KR', 'Korea, Republic of'), +('123.99.128.0', '123.100.31.255', 2070118400, 2070159359, 'CN', 'China'), +('123.100.32.0', '123.100.63.255', 2070159360, 2070167551, 'AU', 'Australia'), +('123.100.64.0', '123.100.127.255', 2070167552, 2070183935, 'NZ', 'New Zealand'), +('123.100.128.0', '123.100.159.255', 2070183936, 2070192127, 'AU', 'Australia'), +('123.100.192.0', '123.100.223.255', 2070200320, 2070208511, 'JP', 'Japan'), +('123.100.224.0', '123.100.225.255', 2070208512, 2070209023, 'MY', 'Malaysia'), +('123.100.226.0', '123.100.227.255', 2070209024, 2070209535, 'SG', 'Singapore'), +('123.100.228.0', '123.100.229.255', 2070209536, 2070210047, 'AU', 'Australia'), +('123.100.230.0', '123.100.231.255', 2070210048, 2070210559, 'SG', 'Singapore'), +('123.100.232.0', '123.100.232.255', 2070210560, 2070210815, 'CN', 'China'), +('123.100.233.0', '123.100.233.255', 2070210816, 2070211071, 'SG', 'Singapore'), +('123.100.234.0', '123.100.234.255', 2070211072, 2070211327, 'IN', 'India'), +('123.100.235.0', '123.100.235.255', 2070211328, 2070211583, 'SG', 'Singapore'), +('123.100.236.0', '123.100.239.255', 2070211584, 2070212607, 'US', 'United States'), +('123.100.240.0', '123.100.255.255', 2070212608, 2070216703, 'SG', 'Singapore'), +('123.101.0.0', '123.101.255.255', 2070216704, 2070282239, 'CN', 'China'), +('123.102.0.0', '123.102.255.255', 2070282240, 2070347775, 'AU', 'Australia'), +('123.103.0.0', '123.103.127.255', 2070347776, 2070380543, 'CN', 'China'), +('123.103.128.0', '123.108.7.255', 2070380544, 2070677503, 'JP', 'Japan'), +('123.108.8.0', '123.108.15.255', 2070677504, 2070679551, 'ID', 'Indonesia'), +('123.108.16.0', '123.108.31.255', 2070679552, 2070683647, 'KR', 'Korea, Republic of'), +('123.108.32.0', '123.108.63.255', 2070683648, 2070691839, 'IN', 'India'), +('123.108.64.0', '123.108.95.255', 2070691840, 2070700031, 'AU', 'Australia'), +('123.108.96.0', '123.108.103.255', 2070700032, 2070702079, 'ID', 'Indonesia'), +('123.108.104.0', '123.108.107.255', 2070702080, 2070703103, 'AU', 'Australia'), +('123.108.108.0', '123.108.111.255', 2070703104, 2070704127, 'HK', 'Hong Kong'), +('123.108.112.0', '123.108.127.255', 2070704128, 2070708223, 'PH', 'Philippines'), +('123.108.128.0', '123.108.143.255', 2070708224, 2070712319, 'CN', 'China'), +('123.108.144.0', '123.108.151.255', 2070712320, 2070714367, 'NZ', 'New Zealand'), +('123.108.160.0', '123.108.191.255', 2070716416, 2070724607, 'KR', 'Korea, Republic of'), +('123.108.192.0', '123.108.199.255', 2070724608, 2070726655, 'JP', 'Japan'), +('123.108.200.0', '123.108.207.255', 2070726656, 2070728703, 'IN', 'India'), +('123.108.208.0', '123.108.223.255', 2070728704, 2070732799, 'CN', 'China'), +('123.108.224.0', '123.108.231.255', 2070732800, 2070734847, 'IN', 'India'), +('123.108.232.0', '123.108.239.255', 2070734848, 2070736895, 'JP', 'Japan'), +('123.108.240.0', '123.108.247.255', 2070736896, 2070738943, 'BD', 'Bangladesh'), +('123.108.248.0', '123.108.255.255', 2070738944, 2070740991, 'KH', 'Cambodia'), +('123.109.0.0', '123.109.255.255', 2070740992, 2070806527, 'KR', 'Korea, Republic of'), +('123.110.0.0', '123.110.255.255', 2070806528, 2070872063, 'TW', 'Taiwan'), +('123.111.0.0', '123.111.255.255', 2070872064, 2070937599, 'KR', 'Korea, Republic of'), +('123.112.0.0', '123.135.255.255', 2070937600, 2072510463, 'CN', 'China'), +('123.136.0.0', '123.136.15.255', 2072510464, 2072514559, 'HK', 'Hong Kong'), +('123.136.16.0', '123.136.23.255', 2072514560, 2072516607, 'IN', 'India'), +('123.136.24.0', '123.136.31.255', 2072516608, 2072518655, 'BD', 'Bangladesh'), +('123.136.32.0', '123.136.47.255', 2072518656, 2072522751, 'AU', 'Australia'), +('123.136.64.0', '123.136.71.255', 2072526848, 2072528895, 'SG', 'Singapore'), +('123.136.72.0', '123.136.79.255', 2072528896, 2072530943, 'PH', 'Philippines'), +('123.136.80.0', '123.136.95.255', 2072530944, 2072535039, 'CN', 'China'), +('123.136.96.0', '123.136.127.255', 2072535040, 2072543231, 'MY', 'Malaysia'), +('123.136.128.0', '123.136.255.255', 2072543232, 2072575999, 'IN', 'India'), +('123.137.0.0', '123.139.255.255', 2072576000, 2072772607, 'CN', 'China'), +('123.140.0.0', '123.143.255.255', 2072772608, 2073034751, 'KR', 'Korea, Republic of'), +('123.144.0.0', '123.175.255.255', 2073034752, 2075131903, 'CN', 'China'), +('123.176.0.0', '123.176.31.255', 2075131904, 2075140095, 'MV', 'Maldives'), +('123.176.32.0', '123.176.47.255', 2075140096, 2075144191, 'IN', 'India'), +('123.176.64.0', '123.176.71.255', 2075148288, 2075150335, 'PH', 'Philippines'), +('123.176.72.0', '123.176.79.255', 2075150336, 2075152383, 'WS', 'Samoa'), +('123.176.80.0', '123.176.95.255', 2075152384, 2075156479, 'CN', 'China'), +('123.176.96.0', '123.176.103.255', 2075156480, 2075158527, 'HK', 'Hong Kong'), +('123.176.104.0', '123.176.111.255', 2075158528, 2075160575, 'JP', 'Japan'), +('123.176.112.0', '123.176.119.255', 2075160576, 2075162623, 'AU', 'Australia'), +('123.176.120.0', '123.176.127.255', 2075162624, 2075164671, 'ID', 'Indonesia'), +('123.176.128.0', '123.176.255.255', 2075164672, 2075197439, 'JP', 'Japan'), +('123.177.0.0', '123.191.255.255', 2075197440, 2076180479, 'CN', 'China'), +('123.192.0.0', '123.195.255.255', 2076180480, 2076442623, 'TW', 'Taiwan'), +('123.196.0.0', '123.197.255.255', 2076442624, 2076573695, 'CN', 'China'), +('123.198.0.0', '123.198.127.255', 2076573696, 2076606463, 'JP', 'Japan'), +('123.199.0.0', '123.199.127.255', 2076639232, 2076671999, 'KR', 'Korea, Republic of'), +('123.199.128.0', '123.199.255.255', 2076672000, 2076704767, 'CN', 'China'), +('123.200.0.0', '123.200.31.255', 2076704768, 2076712959, 'BD', 'Bangladesh'), +('123.200.32.0', '123.200.63.255', 2076712960, 2076721151, 'JP', 'Japan'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('123.200.64.0', '123.200.127.255', 2076721152, 2076737535, 'KR', 'Korea, Republic of'), +('123.200.128.0', '123.200.255.255', 2076737536, 2076770303, 'AU', 'Australia'), +('123.201.0.0', '123.201.255.255', 2076770304, 2076835839, 'IN', 'India'), +('123.202.0.0', '123.203.255.255', 2076835840, 2076966911, 'HK', 'Hong Kong'), +('123.204.0.0', '123.205.255.255', 2076966912, 2077097983, 'TW', 'Taiwan'), +('123.206.0.0', '123.207.255.255', 2077097984, 2077229055, 'CN', 'China'), +('123.208.0.0', '123.211.255.255', 2077229056, 2077491199, 'AU', 'Australia'), +('123.212.0.0', '123.215.255.255', 2077491200, 2077753343, 'KR', 'Korea, Republic of'), +('123.216.0.0', '123.227.255.255', 2077753344, 2078539775, 'JP', 'Japan'), +('123.228.0.0', '123.229.255.255', 2078539776, 2078670847, 'KR', 'Korea, Republic of'), +('123.230.0.0', '123.230.255.255', 2078670848, 2078736383, 'JP', 'Japan'), +('123.231.0.0', '123.231.127.255', 2078736384, 2078769151, 'LK', 'Sri Lanka'), +('123.231.128.0', '123.231.255.255', 2078769152, 2078801919, 'ID', 'Indonesia'), +('123.232.0.0', '123.235.255.255', 2078801920, 2079064063, 'CN', 'China'), +('123.236.0.0', '123.239.255.255', 2079064064, 2079326207, 'IN', 'India'), +('123.240.0.0', '123.241.255.255', 2079326208, 2079457279, 'TW', 'Taiwan'), +('123.242.0.0', '123.242.127.255', 2079457280, 2079490047, 'CN', 'China'), +('123.242.128.0', '123.242.191.255', 2079490048, 2079506431, 'TH', 'Thailand'), +('123.242.200.0', '123.242.207.255', 2079508480, 2079510527, 'PH', 'Philippines'), +('123.242.208.0', '123.242.223.255', 2079510528, 2079514623, 'JP', 'Japan'), +('123.242.224.0', '123.242.231.255', 2079514624, 2079516671, 'HK', 'Hong Kong'), +('123.242.232.0', '123.242.239.255', 2079516672, 2079518719, 'JP', 'Japan'), +('123.242.240.0', '123.242.255.255', 2079518720, 2079522815, 'IN', 'India'), +('123.243.0.0', '123.243.255.255', 2079522816, 2079588351, 'AU', 'Australia'), +('123.244.0.0', '123.247.255.255', 2079588352, 2079850495, 'CN', 'China'), +('123.248.0.0', '123.248.255.255', 2079850496, 2079916031, 'KR', 'Korea, Republic of'), +('123.249.0.0', '123.249.255.255', 2079916032, 2079981567, 'CN', 'China'), +('123.250.0.0', '123.251.255.255', 2079981568, 2080112639, 'KR', 'Korea, Republic of'), +('123.252.0.0', '123.252.127.255', 2080112640, 2080145407, 'TW', 'Taiwan'), +('123.252.128.0', '123.252.255.255', 2080145408, 2080178175, 'IN', 'India'), +('123.253.0.0', '123.253.255.255', 2080178176, 2080243711, 'CN', 'China'), +('123.254.0.0', '123.254.63.255', 2080243712, 2080260095, 'JP', 'Japan'), +('123.254.64.0', '123.254.95.255', 2080260096, 2080268287, 'KR', 'Korea, Republic of'), +('123.254.96.0', '123.254.103.255', 2080268288, 2080270335, 'AP', 'Asia/Pacific Region'), +('123.254.128.0', '123.254.255.255', 2080276480, 2080309247, 'KR', 'Korea, Republic of'), +('123.255.0.0', '123.255.63.255', 2080309248, 2080325631, 'NZ', 'New Zealand'), +('123.255.64.0', '123.255.127.255', 2080325632, 2080342015, 'HK', 'Hong Kong'), +('123.255.128.0', '123.255.199.255', 2080342016, 2080360447, 'JP', 'Japan'), +('123.255.200.0', '123.255.207.255', 2080360448, 2080362495, 'ID', 'Indonesia'), +('123.255.208.0', '123.255.223.255', 2080362496, 2080366591, 'AU', 'Australia'), +('123.255.224.0', '123.255.231.255', 2080366592, 2080368639, 'TW', 'Taiwan'), +('123.255.232.0', '123.255.247.255', 2080368640, 2080372735, 'JP', 'Japan'), +('123.255.248.0', '123.255.255.255', 2080372736, 2080374783, 'IN', 'India'), +('124.0.0.0', '124.3.255.255', 2080374784, 2080636927, 'KR', 'Korea, Republic of'), +('124.4.0.0', '124.4.255.255', 2080636928, 2080702463, 'IN', 'India'), +('124.5.0.0', '124.5.255.255', 2080702464, 2080767999, 'KR', 'Korea, Republic of'), +('124.6.0.0', '124.6.31.255', 2080768000, 2080776191, 'TW', 'Taiwan'), +('124.6.32.0', '124.6.63.255', 2080776192, 2080784383, 'AP', 'Asia/Pacific Region'), +('124.6.64.0', '124.6.127.255', 2080784384, 2080800767, 'CN', 'China'), +('124.6.128.0', '124.6.191.255', 2080800768, 2080817151, 'PH', 'Philippines'), +('124.6.192.0', '124.6.223.255', 2080817152, 2080825343, 'NZ', 'New Zealand'), +('124.6.224.0', '124.6.239.255', 2080825344, 2080829439, 'BD', 'Bangladesh'), +('124.7.0.0', '124.7.255.255', 2080833536, 2080899071, 'IN', 'India'), +('124.8.0.0', '124.12.255.255', 2080899072, 2081226751, 'TW', 'Taiwan'), +('124.13.0.0', '124.13.255.255', 2081226752, 2081292287, 'MY', 'Malaysia'), +('124.14.0.0', '124.17.255.255', 2081292288, 2081554431, 'CN', 'China'), +('124.18.0.0', '124.18.255.255', 2081554432, 2081619967, 'JP', 'Japan'), +('124.19.0.0', '124.19.127.255', 2081619968, 2081652735, 'AU', 'Australia'), +('124.19.128.0', '124.19.255.255', 2081652736, 2081685503, 'PH', 'Philippines'), +('124.20.0.0', '124.23.255.255', 2081685504, 2081947647, 'CN', 'China'), +('124.24.0.0', '124.27.255.255', 2081947648, 2082209791, 'JP', 'Japan'), +('124.28.0.0', '124.28.191.255', 2082209792, 2082258943, 'KR', 'Korea, Republic of'), +('124.28.192.0', '124.29.127.255', 2082258944, 2082308095, 'CN', 'China'), +('124.29.128.0', '124.29.191.255', 2082308096, 2082324479, 'TW', 'Taiwan'), +('124.29.192.0', '124.29.255.255', 2082324480, 2082340863, 'PK', 'Pakistan'), +('124.30.0.0', '124.30.255.255', 2082340864, 2082406399, 'IN', 'India'), +('124.31.0.0', '124.31.255.255', 2082406400, 2082471935, 'CN', 'China'), +('124.32.0.0', '124.40.111.255', 2082471936, 2083024895, 'JP', 'Japan'), +('124.40.112.0', '124.40.191.255', 2083024896, 2083045375, 'CN', 'China'), +('124.40.192.0', '124.40.223.255', 2083045376, 2083053567, 'AU', 'Australia'), +('124.40.224.0', '124.40.239.255', 2083053568, 2083057663, 'TH', 'Thailand'), +('124.40.240.0', '124.40.243.255', 2083057664, 2083058687, 'AU', 'Australia'), +('124.40.248.0', '124.40.255.255', 2083059712, 2083061759, 'ID', 'Indonesia'), +('124.41.0.0', '124.41.191.255', 2083061760, 2083110911, 'JP', 'Japan'), +('124.41.192.0', '124.41.255.255', 2083110912, 2083127295, 'NP', 'Nepal'), +('124.42.0.0', '124.42.255.255', 2083127296, 2083192831, 'CN', 'China'), +('124.43.0.0', '124.43.255.255', 2083192832, 2083258367, 'LK', 'Sri Lanka'), +('124.44.0.0', '124.45.255.255', 2083258368, 2083389439, 'JP', 'Japan'), +('124.46.0.0', '124.46.255.255', 2083389440, 2083454975, 'KR', 'Korea, Republic of'), +('124.47.0.0', '124.47.63.255', 2083454976, 2083471359, 'CN', 'China'), +('124.47.64.0', '124.47.127.255', 2083471360, 2083487743, 'JP', 'Japan'), +('124.47.128.0', '124.47.191.255', 2083487744, 2083504127, 'IN', 'India'), +('124.47.192.0', '124.47.255.255', 2083504128, 2083520511, 'JP', 'Japan'), +('124.48.0.0', '124.63.255.255', 2083520512, 2084569087, 'KR', 'Korea, Republic of'), +('124.64.0.0', '124.66.127.255', 2084569088, 2084732927, 'CN', 'China'), +('124.66.128.0', '124.66.159.255', 2084732928, 2084741119, 'SG', 'Singapore'), +('124.66.160.0', '124.66.167.255', 2084741120, 2084743167, 'ID', 'Indonesia'), +('124.66.168.0', '124.66.175.255', 2084743168, 2084745215, 'JP', 'Japan'), +('124.66.176.0', '124.66.191.255', 2084745216, 2084749311, 'KR', 'Korea, Republic of'), +('124.66.192.0', '124.66.255.255', 2084749312, 2084765695, 'JP', 'Japan'), +('124.67.0.0', '124.79.255.255', 2084765696, 2085617663, 'CN', 'China'), +('124.80.0.0', '124.80.255.255', 2085617664, 2085683199, 'KR', 'Korea, Republic of'), +('124.81.0.0', '124.81.255.255', 2085683200, 2085748735, 'ID', 'Indonesia'), +('124.82.0.0', '124.82.255.255', 2085748736, 2085814271, 'MY', 'Malaysia'), +('124.83.0.0', '124.83.127.255', 2085814272, 2085847039, 'PH', 'Philippines'), +('124.83.128.0', '124.87.255.255', 2085847040, 2086141951, 'JP', 'Japan'), +('124.88.0.0', '124.95.255.255', 2086141952, 2086666239, 'CN', 'China'), +('124.96.0.0', '124.103.255.255', 2086666240, 2087190527, 'JP', 'Japan'), +('124.104.0.0', '124.107.255.255', 2087190528, 2087452671, 'PH', 'Philippines'), +('124.108.4.0', '124.108.7.255', 2087453696, 2087454719, 'KH', 'Cambodia'), +('124.108.8.0', '124.108.15.255', 2087454720, 2087456767, 'CN', 'China'), +('124.108.16.0', '124.108.23.255', 2087456768, 2087458815, 'BD', 'Bangladesh'), +('124.108.24.0', '124.108.31.255', 2087458816, 2087460863, 'FJ', 'Fiji'), +('124.108.32.0', '124.108.39.255', 2087460864, 2087462911, 'JP', 'Japan'), +('124.108.40.0', '124.108.47.255', 2087462912, 2087464959, 'CN', 'China'), +('124.108.48.0', '124.108.55.255', 2087464960, 2087467007, 'KH', 'Cambodia'), +('124.108.56.0', '124.108.63.255', 2087467008, 2087469055, 'JP', 'Japan'), +('124.108.64.0', '124.108.77.255', 2087469056, 2087472639, 'AP', 'Asia/Pacific Region'), +('124.108.78.0', '124.108.79.255', 2087472640, 2087473151, 'SG', 'Singapore'), +('124.108.80.0', '124.108.83.255', 2087473152, 2087474175, 'HK', 'Hong Kong'), +('124.108.84.0', '124.108.89.255', 2087474176, 2087475711, 'AP', 'Asia/Pacific Region'), +('124.108.90.0', '124.108.91.255', 2087475712, 2087476223, 'JP', 'Japan'), +('124.108.92.0', '124.108.95.255', 2087476224, 2087477247, 'HK', 'Hong Kong'), +('124.108.96.0', '124.108.99.255', 2087477248, 2087478271, 'AU', 'Australia'), +('124.108.100.0', '124.108.111.255', 2087478272, 2087481343, 'AP', 'Asia/Pacific Region'), +('124.108.112.0', '124.108.127.255', 2087481344, 2087485439, 'HK', 'Hong Kong'), +('124.108.128.0', '124.108.191.255', 2087485440, 2087501823, 'TW', 'Taiwan'), +('124.108.192.0', '124.108.255.255', 2087501824, 2087518207, 'JP', 'Japan'), +('124.109.0.0', '124.109.3.255', 2087518208, 2087519231, 'TH', 'Thailand'), +('124.109.4.0', '124.109.7.255', 2087519232, 2087520255, 'SG', 'Singapore'), +('124.109.8.0', '124.109.15.255', 2087520256, 2087522303, 'FM', 'Micronesia, Federated States of'), +('124.109.16.0', '124.109.23.255', 2087522304, 2087524351, 'BD', 'Bangladesh'), +('124.109.24.0', '124.109.31.255', 2087524352, 2087526399, 'TH', 'Thailand'), +('124.109.32.0', '124.109.63.255', 2087526400, 2087534591, 'PK', 'Pakistan'), +('124.109.64.0', '124.109.95.255', 2087534592, 2087542783, 'AU', 'Australia'), +('124.109.96.0', '124.109.103.255', 2087542784, 2087544831, 'AP', 'Asia/Pacific Region'), +('124.109.112.0', '124.109.127.255', 2087546880, 2087550975, 'TW', 'Taiwan'), +('124.109.128.0', '124.110.255.255', 2087550976, 2087649279, 'JP', 'Japan'), +('124.111.0.0', '124.111.255.255', 2087649280, 2087714815, 'KR', 'Korea, Republic of'), +('124.112.0.0', '124.119.255.255', 2087714816, 2088239103, 'CN', 'China'), +('124.120.0.0', '124.122.255.255', 2088239104, 2088435711, 'TH', 'Thailand'), +('124.123.0.0', '124.125.255.255', 2088435712, 2088632319, 'IN', 'India'), +('124.126.0.0', '124.135.255.255', 2088632320, 2089287679, 'CN', 'China'), +('124.136.0.0', '124.139.255.255', 2089287680, 2089549823, 'KR', 'Korea, Republic of'), +('124.140.0.0', '124.145.255.255', 2089549824, 2089943039, 'JP', 'Japan'), +('124.146.0.0', '124.146.63.255', 2089943040, 2089959423, 'KR', 'Korea, Republic of'), +('124.146.64.0', '124.147.127.255', 2089959424, 2090041343, 'JP', 'Japan'), +('124.147.128.0', '124.147.255.255', 2090041344, 2090074111, 'CN', 'China'), +('124.148.0.0', '124.151.255.255', 2090074112, 2090336255, 'AU', 'Australia'), +('124.153.0.0', '124.153.63.255', 2090401792, 2090418175, 'ID', 'Indonesia'), +('124.153.64.0', '124.153.127.255', 2090418176, 2090434559, 'IN', 'India'), +('124.153.128.0', '124.153.255.255', 2090434560, 2090467327, 'KR', 'Korea, Republic of'), +('124.154.0.0', '124.155.127.255', 2090467328, 2090565631, 'JP', 'Japan'), +('124.155.128.0', '124.155.191.255', 2090565632, 2090582015, 'TW', 'Taiwan'), +('124.155.192.0', '124.155.223.255', 2090582016, 2090590207, 'SG', 'Singapore'), +('124.155.224.0', '124.155.239.255', 2090590208, 2090594303, 'NZ', 'New Zealand'), +('124.156.0.0', '124.156.255.255', 2090598400, 2090663935, 'CN', 'China'), +('124.157.0.0', '124.157.63.255', 2090663936, 2090680319, 'AU', 'Australia'), +('124.157.64.0', '124.157.127.255', 2090680320, 2090696703, 'NZ', 'New Zealand'), +('124.157.128.0', '124.157.255.255', 2090696704, 2090729471, 'TH', 'Thailand'), +('124.158.16.0', '124.158.23.255', 2090733568, 2090735615, 'AU', 'Australia'), +('124.158.32.0', '124.158.63.255', 2090737664, 2090745855, 'PH', 'Philippines'), +('124.158.64.0', '124.158.127.255', 2090745856, 2090762239, 'MN', 'Mongolia'), +('124.158.128.0', '124.158.191.255', 2090762240, 2090778623, 'ID', 'Indonesia'), +('124.158.192.0', '124.158.223.255', 2090778624, 2090786815, 'HK', 'Hong Kong'), +('124.158.224.0', '124.158.255.255', 2090786816, 2090795007, 'SG', 'Singapore'), +('124.159.0.0', '124.159.255.255', 2090795008, 2090860543, 'JP', 'Japan'), +('124.160.0.0', '124.167.255.255', 2090860544, 2091384831, 'CN', 'China'), +('124.168.0.0', '124.171.255.255', 2091384832, 2091646975, 'AU', 'Australia'), +('124.172.0.0', '124.175.255.255', 2091646976, 2091909119, 'CN', 'China'), +('124.176.0.0', '124.191.255.255', 2091909120, 2092957695, 'AU', 'Australia'), +('124.192.0.0', '124.193.255.255', 2092957696, 2093088767, 'CN', 'China'), +('124.194.0.0', '124.194.255.255', 2093088768, 2093154303, 'KR', 'Korea, Republic of'), +('124.195.0.0', '124.195.127.255', 2093154304, 2093187071, 'ID', 'Indonesia'), +('124.195.128.0', '124.195.143.255', 2093187072, 2093191167, 'MY', 'Malaysia'), +('124.195.144.0', '124.195.159.255', 2093191168, 2093195263, 'JP', 'Japan'), +('124.195.160.0', '124.195.191.255', 2093195264, 2093203455, 'KR', 'Korea, Republic of'), +('124.195.192.0', '124.195.223.255', 2093203456, 2093211647, 'MV', 'Maldives'), +('124.195.224.0', '124.195.255.255', 2093211648, 2093219839, 'KR', 'Korea, Republic of'), +('124.196.0.0', '124.196.255.255', 2093219840, 2093285375, 'CN', 'China'), +('124.197.0.0', '124.197.63.255', 2093285376, 2093301759, 'NZ', 'New Zealand'), +('124.197.64.0', '124.197.127.255', 2093301760, 2093318143, 'SG', 'Singapore'), +('124.197.128.0', '124.197.223.255', 2093318144, 2093342719, 'KR', 'Korea, Republic of'), +('124.197.224.0', '124.197.255.255', 2093342720, 2093350911, 'MY', 'Malaysia'), +('124.198.0.0', '124.198.127.255', 2093350912, 2093383679, 'KR', 'Korea, Republic of'), +('124.198.128.0', '124.198.191.255', 2093383680, 2093400063, 'NZ', 'New Zealand'), +('124.199.0.0', '124.199.63.255', 2093416448, 2093432831, 'KR', 'Korea, Republic of'), +('124.199.64.0', '124.199.111.255', 2093432832, 2093445119, 'TW', 'Taiwan'), +('124.199.112.0', '124.199.127.255', 2093445120, 2093449215, 'SG', 'Singapore'), +('124.199.128.0', '124.199.255.255', 2093449216, 2093481983, 'KR', 'Korea, Republic of'), +('124.200.0.0', '124.207.255.255', 2093481984, 2094006271, 'CN', 'China'), +('124.208.0.0', '124.215.255.255', 2094006272, 2094530559, 'JP', 'Japan'), +('124.216.0.0', '124.216.255.255', 2094530560, 2094596095, 'KR', 'Korea, Republic of'), +('124.217.0.0', '124.217.127.255', 2094596096, 2094628863, 'PH', 'Philippines'), +('124.217.128.0', '124.217.191.255', 2094628864, 2094645247, 'HK', 'Hong Kong'), +('124.217.192.0', '124.217.223.255', 2094645248, 2094653439, 'KR', 'Korea, Republic of'), +('124.217.224.0', '124.217.255.255', 2094653440, 2094661631, 'MY', 'Malaysia'), +('124.218.0.0', '124.219.127.255', 2094661632, 2094759935, 'TW', 'Taiwan'), +('124.219.128.0', '124.219.255.255', 2094759936, 2094792703, 'JP', 'Japan'), +('124.220.0.0', '124.240.191.255', 2094792704, 2096152575, 'CN', 'China'), +('124.240.192.0', '124.240.223.255', 2096152576, 2096160767, 'PG', 'Papua New Guinea'), +('124.241.0.0', '124.241.255.255', 2096168960, 2096234495, 'JP', 'Japan'), +('124.242.0.0', '124.242.255.255', 2096234496, 2096300031, 'CN', 'China'), +('124.243.0.0', '124.243.127.255', 2096300032, 2096332799, 'KR', 'Korea, Republic of'), +('124.243.128.0', '124.243.191.255', 2096332800, 2096349183, 'AU', 'Australia'), +('124.243.192.0', '124.243.255.255', 2096349184, 2096365567, 'CN', 'China'), +('124.244.0.0', '124.244.255.255', 2096365568, 2096431103, 'HK', 'Hong Kong'), +('124.245.0.0', '124.245.255.255', 2096431104, 2096496639, 'JP', 'Japan'), +('124.246.0.0', '124.246.63.255', 2096496640, 2096513023, 'AU', 'Australia'), +('124.246.64.0', '124.246.127.255', 2096513024, 2096529407, 'SG', 'Singapore'), +('124.246.128.0', '124.247.191.255', 2096529408, 2096611327, 'JP', 'Japan'), +('124.247.192.0', '124.247.255.255', 2096611328, 2096627711, 'IN', 'India'), +('124.248.0.0', '124.248.127.255', 2096627712, 2096660479, 'CN', 'China'), +('124.248.128.0', '124.248.143.255', 2096660480, 2096664575, 'NZ', 'New Zealand'), +('124.248.160.0', '124.248.191.255', 2096668672, 2096676863, 'KH', 'Cambodia'), +('124.248.192.0', '124.248.255.255', 2096676864, 2096693247, 'HK', 'Hong Kong'), +('124.249.0.0', '124.251.255.255', 2096693248, 2096889855, 'CN', 'China'), +('124.252.0.0', '124.252.255.255', 2096889856, 2096955391, 'AU', 'Australia'), +('124.253.0.0', '124.253.255.255', 2096955392, 2097020927, 'IN', 'India'), +('124.254.0.0', '124.254.63.255', 2097020928, 2097037311, 'CN', 'China'), +('124.254.64.0', '124.254.127.255', 2097037312, 2097053695, 'AU', 'Australia'), +('124.254.128.0', '124.254.255.255', 2097053696, 2097086463, 'KR', 'Korea, Republic of'), +('124.255.0.0', '125.4.255.255', 2097086464, 2097479679, 'JP', 'Japan'), +('125.5.0.0', '125.5.255.255', 2097479680, 2097545215, 'PH', 'Philippines'), +('125.6.0.0', '125.6.255.255', 2097545216, 2097610751, 'JP', 'Japan'), +('125.7.0.0', '125.7.127.255', 2097610752, 2097643519, 'AU', 'Australia'), +('125.7.128.0', '125.7.255.255', 2097643520, 2097676287, 'KR', 'Korea, Republic of'), +('125.8.0.0', '125.15.255.255', 2097676288, 2098200575, 'JP', 'Japan'), +('125.16.0.0', '125.23.255.255', 2098200576, 2098724863, 'IN', 'India'), +('125.24.0.0', '125.27.255.255', 2098724864, 2098987007, 'TH', 'Thailand'), +('125.28.0.0', '125.30.255.255', 2098987008, 2099183615, 'JP', 'Japan'), +('125.31.0.0', '125.31.63.255', 2099183616, 2099199999, 'MO', 'Macau'), +('125.31.64.0', '125.31.127.255', 2099200000, 2099216383, 'JP', 'Japan'), +('125.31.128.0', '125.31.191.255', 2099216384, 2099232767, 'KR', 'Korea, Republic of'), +('125.31.192.0', '125.47.255.255', 2099232768, 2100297727, 'CN', 'China'), +('125.48.0.0', '125.56.127.255', 2100297728, 2100854783, 'JP', 'Japan'), +('125.56.128.0', '125.56.255.255', 2100854784, 2100887551, 'US', 'United States'), +('125.57.0.0', '125.57.255.255', 2100887552, 2100953087, 'KR', 'Korea, Republic of'), +('125.58.0.0', '125.58.63.255', 2100953088, 2100969471, 'AU', 'Australia'), +('125.58.64.0', '125.58.127.255', 2100969472, 2100985855, 'JP', 'Japan'), +('125.58.128.0', '125.58.255.255', 2100985856, 2101018623, 'CN', 'China'), +('125.59.0.0', '125.59.255.255', 2101018624, 2101084159, 'HK', 'Hong Kong'), +('125.60.0.0', '125.60.127.255', 2101084160, 2101116927, 'KR', 'Korea, Republic of'), +('125.60.128.0', '125.60.255.255', 2101116928, 2101149695, 'PH', 'Philippines'), +('125.61.0.0', '125.61.127.255', 2101149696, 2101182463, 'KR', 'Korea, Republic of'), +('125.61.128.0', '125.62.63.255', 2101182464, 2101231615, 'CN', 'China'), +('125.62.64.0', '125.62.95.255', 2101231616, 2101239807, 'AU', 'Australia'), +('125.62.96.0', '125.62.223.255', 2101239808, 2101272575, 'IN', 'India'), +('125.62.224.0', '125.62.239.255', 2101272576, 2101276671, 'TW', 'Taiwan'), +('125.62.240.0', '125.62.255.255', 2101276672, 2101280767, 'JP', 'Japan'), +('125.63.0.0', '125.63.31.255', 2101280768, 2101288959, 'AU', 'Australia'), +('125.63.32.0', '125.63.47.255', 2101288960, 2101293055, 'JP', 'Japan'), +('125.63.64.0', '125.63.127.255', 2101297152, 2101313535, 'IN', 'India'), +('125.63.128.0', '125.63.255.255', 2101313536, 2101346303, 'AU', 'Australia'), +('125.64.0.0', '125.98.255.255', 2101346304, 2103640063, 'CN', 'China'), +('125.99.0.0', '125.99.255.255', 2103640064, 2103705599, 'IN', 'India'), +('125.100.0.0', '125.103.255.255', 2103705600, 2103967743, 'JP', 'Japan'), +('125.104.0.0', '125.127.255.255', 2103967744, 2105540607, 'CN', 'China'), +('125.128.0.0', '125.159.255.255', 2105540608, 2107637759, 'KR', 'Korea, Republic of'), +('125.160.0.0', '125.167.255.255', 2107637760, 2108162047, 'ID', 'Indonesia'), +('125.168.0.0', '125.168.255.255', 2108162048, 2108227583, 'AU', 'Australia'), +('125.169.0.0', '125.169.255.255', 2108227584, 2108293119, 'CN', 'China'), +('125.170.0.0', '125.170.255.255', 2108293120, 2108358655, 'JP', 'Japan'), +('125.171.0.0', '125.171.255.255', 2108358656, 2108424191, 'CN', 'China'), +('125.172.0.0', '125.175.255.255', 2108424192, 2108686335, 'JP', 'Japan'), +('125.176.0.0', '125.191.255.255', 2108686336, 2109734911, 'KR', 'Korea, Republic of'), +('125.192.0.0', '125.207.255.255', 2109734912, 2110783487, 'JP', 'Japan'), +('125.208.0.0', '125.208.63.255', 2110783488, 2110799871, 'CN', 'China'), +('125.208.64.0', '125.208.127.255', 2110799872, 2110816255, 'KR', 'Korea, Republic of'), +('125.208.128.0', '125.208.191.255', 2110816256, 2110832639, 'ID', 'Indonesia'), +('125.208.192.0', '125.209.63.255', 2110832640, 2110865407, 'KR', 'Korea, Republic of'), +('125.209.64.0', '125.209.127.255', 2110865408, 2110881791, 'PK', 'Pakistan'), +('125.210.0.0', '125.211.255.255', 2110914560, 2111045631, 'CN', 'China'), +('125.212.0.0', '125.212.127.255', 2111045632, 2111078399, 'PH', 'Philippines'), +('125.212.128.0', '125.212.255.255', 2111078400, 2111111167, 'VN', 'Vietnam'), +('125.213.0.0', '125.213.127.255', 2111111168, 2111143935, 'CN', 'China'), +('125.213.128.0', '125.213.159.255', 2111143936, 2111152127, 'ID', 'Indonesia'), +('125.213.160.0', '125.213.191.255', 2111152128, 2111160319, 'AU', 'Australia'), +('125.213.192.0', '125.213.223.255', 2111160320, 2111168511, 'AF', 'Afghanistan'), +('125.213.224.0', '125.213.255.255', 2111168512, 2111176703, 'TH', 'Thailand'), +('125.214.0.0', '125.214.43.103', 2111176704, 2111187815, 'VN', 'Vietnam'), +('125.214.43.104', '125.214.43.111', 2111187816, 2111187823, 'KH', 'Cambodia'), +('125.214.43.112', '125.214.63.255', 2111187824, 2111193087, 'VN', 'Vietnam'), +('125.214.64.0', '125.214.95.255', 2111193088, 2111201279, 'AU', 'Australia'), +('125.214.96.0', '125.214.127.255', 2111201280, 2111209471, 'CN', 'China'), +('125.214.128.0', '125.214.159.255', 2111209472, 2111217663, 'JP', 'Japan'), +('125.214.160.0', '125.214.191.255', 2111217664, 2111225855, 'LK', 'Sri Lanka'), +('125.214.192.0', '125.214.255.255', 2111225856, 2111242239, 'HK', 'Hong Kong'), +('125.215.0.0', '125.215.63.255', 2111242240, 2111258623, 'CN', 'China'), +('125.215.64.0', '125.215.127.255', 2111258624, 2111275007, 'JP', 'Japan'), +('125.215.128.0', '125.215.255.255', 2111275008, 2111307775, 'HK', 'Hong Kong'), +('125.216.0.0', '125.223.255.255', 2111307776, 2111832063, 'CN', 'China'), +('125.224.0.0', '125.233.255.255', 2111832064, 2112487423, 'TW', 'Taiwan'), +('125.234.0.0', '125.235.255.255', 2112487424, 2112618495, 'VN', 'Vietnam'), +('125.236.0.0', '125.239.255.255', 2112618496, 2112880639, 'NZ', 'New Zealand'), +('125.240.0.0', '125.252.63.255', 2112880640, 2113683455, 'KR', 'Korea, Republic of'), +('125.252.64.0', '125.252.64.31', 2113683456, 2113683487, 'AP', 'Asia/Pacific Region'), +('125.252.64.32', '125.252.64.63', 2113683488, 2113683519, 'TW', 'Taiwan'), +('125.252.64.64', '125.252.64.127', 2113683520, 2113683583, 'PH', 'Philippines'), +('125.252.64.128', '125.252.64.159', 2113683584, 2113683615, 'AP', 'Asia/Pacific Region'), +('125.252.64.160', '125.252.64.191', 2113683616, 2113683647, 'PH', 'Philippines'), +('125.252.64.192', '125.252.64.223', 2113683648, 2113683679, 'AP', 'Asia/Pacific Region'), +('125.252.64.224', '125.252.65.31', 2113683680, 2113683743, 'TW', 'Taiwan'), +('125.252.65.32', '125.252.65.63', 2113683744, 2113683775, 'AP', 'Asia/Pacific Region'), +('125.252.65.64', '125.252.65.127', 2113683776, 2113683839, 'PH', 'Philippines'), +('125.252.65.128', '125.252.66.191', 2113683840, 2113684159, 'AP', 'Asia/Pacific Region'), +('125.252.66.192', '125.252.66.207', 2113684160, 2113684175, 'TW', 'Taiwan'), +('125.252.66.208', '125.252.67.31', 2113684176, 2113684255, 'PH', 'Philippines'), +('125.252.67.32', '125.252.67.47', 2113684256, 2113684271, 'TW', 'Taiwan'), +('125.252.67.48', '125.252.67.63', 2113684272, 2113684287, 'AP', 'Asia/Pacific Region'), +('125.252.67.64', '125.252.67.207', 2113684288, 2113684431, 'PH', 'Philippines'), +('125.252.67.208', '125.252.67.215', 2113684432, 2113684439, 'TW', 'Taiwan'), +('125.252.67.216', '125.252.67.223', 2113684440, 2113684447, 'PH', 'Philippines'), +('125.252.67.224', '125.252.68.63', 2113684448, 2113684543, 'AP', 'Asia/Pacific Region'), +('125.252.68.64', '125.252.68.255', 2113684544, 2113684735, 'PH', 'Philippines'), +('125.252.69.0', '125.252.69.255', 2113684736, 2113684991, 'TW', 'Taiwan'), +('125.252.70.0', '125.252.70.15', 2113684992, 2113685007, 'PH', 'Philippines'), +('125.252.70.16', '125.252.70.31', 2113685008, 2113685023, 'AP', 'Asia/Pacific Region'), +('125.252.70.32', '125.252.70.55', 2113685024, 2113685047, 'PH', 'Philippines'), +('125.252.70.56', '125.252.70.127', 2113685048, 2113685119, 'AP', 'Asia/Pacific Region'), +('125.252.70.128', '125.252.70.223', 2113685120, 2113685215, 'PH', 'Philippines'), +('125.252.70.224', '125.252.70.231', 2113685216, 2113685223, 'AP', 'Asia/Pacific Region'), +('125.252.70.232', '125.252.70.239', 2113685224, 2113685231, 'PH', 'Philippines'), +('125.252.70.240', '125.252.70.255', 2113685232, 2113685247, 'TW', 'Taiwan'), +('125.252.71.0', '125.252.71.159', 2113685248, 2113685407, 'AP', 'Asia/Pacific Region'), +('125.252.71.160', '125.252.73.255', 2113685408, 2113686015, 'PH', 'Philippines'), +('125.252.74.0', '125.252.74.63', 2113686016, 2113686079, 'AP', 'Asia/Pacific Region'), +('125.252.74.64', '125.252.74.191', 2113686080, 2113686207, 'TW', 'Taiwan'), +('125.252.74.192', '125.252.75.255', 2113686208, 2113686527, 'AP', 'Asia/Pacific Region'), +('125.252.76.0', '125.252.77.255', 2113686528, 2113687039, 'TW', 'Taiwan'), +('125.252.78.0', '125.252.79.255', 2113687040, 2113687551, 'JP', 'Japan'), +('125.252.80.0', '125.252.82.255', 2113687552, 2113688319, 'AP', 'Asia/Pacific Region'), +('125.252.83.0', '125.252.85.255', 2113688320, 2113689087, 'PH', 'Philippines'), +('125.252.86.0', '125.252.86.255', 2113689088, 2113689343, 'AP', 'Asia/Pacific Region'), +('125.252.87.0', '125.252.87.255', 2113689344, 2113689599, 'HK', 'Hong Kong'), +('125.252.88.0', '125.252.89.255', 2113689600, 2113690111, 'JP', 'Japan'), +('125.252.90.0', '125.252.90.255', 2113690112, 2113690367, 'PH', 'Philippines'), +('125.252.91.0', '125.252.91.255', 2113690368, 2113690623, 'AP', 'Asia/Pacific Region'), +('125.252.92.0', '125.252.95.255', 2113690624, 2113691647, 'AU', 'Australia'), +('125.252.96.0', '125.252.97.255', 2113691648, 2113692159, 'AP', 'Asia/Pacific Region'), +('125.252.98.0', '125.252.98.255', 2113692160, 2113692415, 'PH', 'Philippines'), +('125.252.99.0', '125.252.101.255', 2113692416, 2113693183, 'AP', 'Asia/Pacific Region'), +('125.252.102.0', '125.252.103.223', 2113693184, 2113693663, 'HK', 'Hong Kong'), +('125.252.103.224', '125.252.105.255', 2113693664, 2113694207, 'AP', 'Asia/Pacific Region'), +('125.252.106.0', '125.252.106.255', 2113694208, 2113694463, 'JP', 'Japan'), +('125.252.107.0', '125.252.107.255', 2113694464, 2113694719, 'HK', 'Hong Kong'), +('125.252.108.0', '125.252.108.255', 2113694720, 2113694975, 'AP', 'Asia/Pacific Region'), +('125.252.109.0', '125.252.109.255', 2113694976, 2113695231, 'PH', 'Philippines'), +('125.252.110.0', '125.252.127.255', 2113695232, 2113699839, 'AP', 'Asia/Pacific Region'), +('125.252.128.0', '125.252.191.255', 2113699840, 2113716223, 'JP', 'Japan'), +('125.252.192.0', '125.252.225.255', 2113716224, 2113724927, 'AP', 'Asia/Pacific Region'), +('125.252.226.0', '125.252.226.255', 2113724928, 2113725183, 'IN', 'India'), +('125.252.227.0', '125.252.239.255', 2113725184, 2113728511, 'AP', 'Asia/Pacific Region'), +('125.252.240.0', '125.252.255.255', 2113728512, 2113732607, 'JP', 'Japan'), +('125.253.0.0', '125.253.127.255', 2113732608, 2113765375, 'AU', 'Australia'), +('125.253.128.0', '125.253.255.255', 2113765376, 2113798143, 'HK', 'Hong Kong'), +('125.254.0.0', '125.254.127.255', 2113798144, 2113830911, 'AU', 'Australia'), +('125.254.128.0', '125.254.255.255', 2113830912, 2113863679, 'CN', 'China'), +('125.255.0.0', '125.255.255.255', 2113863680, 2113929215, 'AU', 'Australia'), +('126.0.0.0', '126.255.255.255', 2113929216, 2130706431, 'JP', 'Japan'), +('128.0.0.0', '128.6.255.255', 2147483647, 2147483647, 'US', 'United States'), +('128.7.0.0', '128.7.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('128.8.0.0', '128.11.62.99', 2147483647, 2147483647, 'US', 'United States'), +('128.11.62.100', '128.11.62.119', 2147483647, 2147483647, 'AU', 'Australia'), +('128.11.62.120', '128.11.96.31', 2147483647, 2147483647, 'US', 'United States'), +('128.11.96.32', '128.11.96.63', 2147483647, 2147483647, 'CA', 'Canada'), +('128.11.96.64', '128.15.255.255', 2147483647, 2147483647, 'US', 'United States'), +('128.16.0.0', '128.16.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('128.17.0.0', '128.38.255.255', 2147483647, 2147483647, 'US', 'United States'), +('128.39.0.0', '128.39.255.255', 2147483647, 2147483647, 'NO', 'Norway'), +('128.40.0.0', '128.41.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('128.42.0.0', '128.42.255.255', 2147483647, 2147483647, 'US', 'United States'), +('128.43.0.0', '128.43.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('128.44.0.0', '128.64.255.255', 2147483647, 2147483647, 'US', 'United States'), +('128.80.0.0', '128.85.255.255', 2147483647, 2147483647, 'US', 'United States'), +('128.86.0.0', '128.87.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('128.88.0.0', '128.92.255.255', 2147483647, 2147483647, 'US', 'United States'), +('128.93.0.0', '128.93.255.255', 2147483647, 2147483647, 'FR', 'France'), +('128.94.0.0', '128.97.255.255', 2147483647, 2147483647, 'US', 'United States'), +('128.98.0.0', '128.98.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('128.99.0.0', '128.99.255.255', 2147483647, 2147483647, 'US', 'United States'), +('128.100.0.0', '128.100.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('128.101.0.0', '128.129.255.255', 2147483647, 2147483647, 'US', 'United States'), +('128.130.0.0', '128.131.255.255', 2147483647, 2147483647, 'AT', 'Austria'), +('128.132.0.0', '128.133.255.255', 2147483647, 2147483647, 'US', 'United States'), +('128.134.0.0', '128.134.255.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('128.135.0.0', '128.138.255.255', 2147483647, 2147483647, 'US', 'United States'), +('128.139.0.0', '128.139.255.255', 2147483647, 2147483647, 'IL', 'Israel'), +('128.141.0.0', '128.142.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('128.143.0.0', '128.143.255.255', 2147483647, 2147483647, 'US', 'United States'), +('128.144.0.0', '128.144.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('128.145.0.0', '128.175.255.255', 2147483647, 2147483647, 'US', 'United States'), +('128.176.0.0', '128.176.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('128.177.0.0', '128.177.255.255', 2147483647, 2147483647, 'US', 'United States'), +('128.178.0.0', '128.179.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('128.180.0.0', '128.183.255.255', 2147483647, 2147483647, 'US', 'United States'), +('128.184.0.0', '128.184.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('128.185.0.0', '128.188.255.255', 2147483647, 2147483647, 'US', 'United States'), +('128.189.0.0', '128.189.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('128.190.0.0', '128.198.255.255', 2147483647, 2147483647, 'US', 'United States'), +('128.199.0.0', '128.199.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('128.200.0.0', '128.200.255.255', 2147483647, 2147483647, 'US', 'United States'), +('128.201.0.0', '128.201.255.255', 2147483647, 2147483647, 'FR', 'France'), +('128.202.0.0', '128.213.255.255', 2147483647, 2147483647, 'US', 'United States'), +('128.214.0.0', '128.214.255.255', 2147483647, 2147483647, 'FI', 'Finland'), +('128.215.0.0', '128.231.255.255', 2147483647, 2147483647, 'US', 'United States'), +('128.232.0.0', '128.232.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('128.233.0.0', '128.233.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('128.235.0.0', '128.239.255.255', 2147483647, 2147483647, 'US', 'United States'), +('128.240.0.0', '128.240.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('128.241.0.0', '128.241.39.255', 2147483647, 2147483647, 'US', 'United States'), +('128.241.40.0', '128.241.47.255', 2147483647, 2147483647, 'A1', 'Anonymous Proxy'), +('128.241.48.0', '128.241.87.255', 2147483647, 2147483647, 'US', 'United States'), +('128.241.88.0', '128.241.88.255', 2147483647, 2147483647, 'A1', 'Anonymous Proxy'), +('128.241.89.0', '128.241.103.255', 2147483647, 2147483647, 'US', 'United States'), +('128.241.104.0', '128.241.109.255', 2147483647, 2147483647, 'A1', 'Anonymous Proxy'), +('128.241.110.0', '128.242.255.255', 2147483647, 2147483647, 'US', 'United States'), +('128.243.0.0', '128.243.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('128.244.0.0', '128.245.255.255', 2147483647, 2147483647, 'US', 'United States'), +('128.246.0.0', '128.246.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('128.247.0.0', '128.249.255.255', 2147483647, 2147483647, 'US', 'United States'), +('128.250.0.0', '128.250.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('128.251.0.0', '129.10.255.255', 2147483647, 2147483647, 'US', 'United States'), +('129.11.0.0', '129.12.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('129.13.0.0', '129.13.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('129.14.0.0', '129.15.255.255', 2147483647, 2147483647, 'US', 'United States'), +('129.16.0.0', '129.16.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('129.17.0.0', '129.17.255.255', 2147483647, 2147483647, 'US', 'United States'), +('129.19.0.0', '129.19.255.255', 2147483647, 2147483647, 'US', 'United States'), +('129.20.0.0', '129.20.255.255', 2147483647, 2147483647, 'FR', 'France'), +('129.21.0.0', '129.25.255.255', 2147483647, 2147483647, 'US', 'United States'), +('129.26.0.0', '129.26.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('129.27.0.0', '129.27.255.255', 2147483647, 2147483647, 'AT', 'Austria'), +('129.28.0.0', '129.30.255.255', 2147483647, 2147483647, 'US', 'United States'), +('129.31.0.0', '129.31.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('129.32.0.0', '129.35.63.255', 2147483647, 2147483647, 'US', 'United States'), +('129.35.64.0', '129.35.79.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('129.35.80.0', '129.59.255.255', 2147483647, 2147483647, 'US', 'United States'), +('129.60.0.0', '129.60.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('129.61.0.0', '129.66.255.255', 2147483647, 2147483647, 'US', 'United States'), +('129.67.0.0', '129.67.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('129.68.0.0', '129.68.255.255', 2147483647, 2147483647, 'US', 'United States'), +('129.69.0.0', '129.70.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('129.71.0.0', '129.77.255.255', 2147483647, 2147483647, 'US', 'United States'), +('129.78.0.0', '129.78.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('129.79.0.0', '129.87.255.255', 2147483647, 2147483647, 'US', 'United States'), +('129.88.0.0', '129.88.255.255', 2147483647, 2147483647, 'FR', 'France'), +('129.89.0.0', '129.89.255.255', 2147483647, 2147483647, 'US', 'United States'), +('129.90.0.0', '129.90.255.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('129.91.0.0', '129.93.255.255', 2147483647, 2147483647, 'US', 'United States'), +('129.94.0.0', '129.94.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('129.95.0.0', '129.95.255.255', 2147483647, 2147483647, 'US', 'United States'), +('129.96.0.0', '129.96.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('129.97.0.0', '129.97.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('129.98.0.0', '129.99.255.255', 2147483647, 2147483647, 'US', 'United States'), +('129.100.0.0', '129.100.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('129.101.0.0', '129.101.255.255', 2147483647, 2147483647, 'US', 'United States'), +('129.102.0.0', '129.102.255.255', 2147483647, 2147483647, 'FR', 'France'), +('129.103.0.0', '129.103.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('129.104.0.0', '129.104.255.255', 2147483647, 2147483647, 'FR', 'France'), +('129.105.0.0', '129.124.255.255', 2147483647, 2147483647, 'US', 'United States'), +('129.125.0.0', '129.125.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('129.126.0.0', '129.126.255.255', 2147483647, 2147483647, 'US', 'United States'), +('129.127.0.0', '129.127.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('129.128.0.0', '129.128.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('129.129.0.0', '129.129.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('129.130.0.0', '129.131.255.255', 2147483647, 2147483647, 'US', 'United States'), +('129.132.0.0', '129.132.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('129.133.0.0', '129.135.255.255', 2147483647, 2147483647, 'US', 'United States'), +('129.136.0.0', '129.136.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('129.137.0.0', '129.139.255.255', 2147483647, 2147483647, 'US', 'United States'), +('129.141.0.0', '129.141.255.255', 2147483647, 2147483647, 'US', 'United States'), +('129.142.0.0', '129.142.255.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('129.143.0.0', '129.143.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('129.144.0.0', '129.168.255.255', 2147483647, 2147483647, 'US', 'United States'), +('129.169.0.0', '129.169.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('129.170.0.0', '129.172.255.255', 2147483647, 2147483647, 'US', 'United States'), +('129.173.0.0', '129.173.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('129.174.0.0', '129.174.255.255', 2147483647, 2147483647, 'US', 'United States'), +('129.175.0.0', '129.175.255.255', 2147483647, 2147483647, 'FR', 'France'), +('129.176.0.0', '129.176.255.255', 2147483647, 2147483647, 'US', 'United States'), +('129.177.0.0', '129.177.255.255', 2147483647, 2147483647, 'NO', 'Norway'), +('129.178.0.0', '129.178.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('129.179.0.0', '129.179.255.255', 2147483647, 2147483647, 'US', 'United States'), +('129.180.0.0', '129.180.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('129.181.0.0', '129.185.255.255', 2147483647, 2147483647, 'FR', 'France'), +('129.186.0.0', '129.186.255.255', 2147483647, 2147483647, 'US', 'United States'), +('129.187.0.0', '129.187.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('129.188.0.0', '129.193.255.255', 2147483647, 2147483647, 'US', 'United States'), +('129.194.0.0', '129.195.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('129.196.0.0', '129.198.255.255', 2147483647, 2147483647, 'US', 'United States'), +('129.199.0.0', '129.199.255.255', 2147483647, 2147483647, 'FR', 'France'), +('129.200.0.0', '129.204.255.255', 2147483647, 2147483647, 'US', 'United States'), +('129.206.0.0', '129.206.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('129.207.0.0', '129.207.255.255', 2147483647, 2147483647, 'US', 'United States'), +('129.208.0.0', '129.208.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('129.209.0.0', '129.214.255.255', 2147483647, 2147483647, 'US', 'United States'), +('129.215.0.0', '129.215.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('129.216.0.0', '129.216.255.255', 2147483647, 2147483647, 'US', 'United States'), +('129.217.0.0', '129.217.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('129.218.0.0', '129.231.255.255', 2147483647, 2147483647, 'US', 'United States'), +('129.233.0.0', '129.233.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('129.234.0.0', '129.234.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('129.235.0.0', '129.239.255.255', 2147483647, 2147483647, 'US', 'United States'), +('129.240.0.0', '129.242.255.255', 2147483647, 2147483647, 'NO', 'Norway'), +('129.243.0.0', '129.246.255.255', 2147483647, 2147483647, 'US', 'United States'), +('129.247.0.0', '129.247.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('129.248.0.0', '129.248.255.255', 2147483647, 2147483647, 'US', 'United States'), +('129.249.0.0', '129.249.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('129.250.0.0', '129.253.255.255', 2147483647, 2147483647, 'US', 'United States'), +('129.254.0.0', '129.254.255.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('129.255.0.0', '130.11.255.255', 2147483647, 2147483647, 'US', 'United States'), +('130.12.0.0', '130.12.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('130.13.0.0', '130.14.255.255', 2147483647, 2147483647, 'US', 'United States'), +('130.15.0.0', '130.15.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('130.16.0.0', '130.23.255.255', 2147483647, 2147483647, 'US', 'United States'), +('130.24.0.0', '130.24.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('130.26.0.0', '130.27.255.255', 2147483647, 2147483647, 'US', 'United States'), +('130.28.0.0', '130.28.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('130.29.0.0', '130.31.255.255', 2147483647, 2147483647, 'US', 'United States'), +('130.32.0.0', '130.32.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('130.33.0.0', '130.33.255.255', 2147483647, 2147483647, 'US', 'United States'), +('130.34.0.0', '130.34.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('130.35.0.0', '130.36.255.255', 2147483647, 2147483647, 'US', 'United States'), +('130.37.0.0', '130.37.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('130.38.0.0', '130.53.255.255', 2147483647, 2147483647, 'US', 'United States'), +('130.54.0.0', '130.54.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('130.55.0.0', '130.55.255.255', 2147483647, 2147483647, 'US', 'United States'), +('130.56.0.0', '130.56.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('130.57.0.0', '130.58.255.255', 2147483647, 2147483647, 'US', 'United States'), +('130.59.0.0', '130.60.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('130.61.0.0', '130.62.255.255', 2147483647, 2147483647, 'US', 'United States'), +('130.63.0.0', '130.63.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('130.64.0.0', '130.65.255.255', 2147483647, 2147483647, 'US', 'United States'), +('130.66.0.0', '130.66.255.255', 2147483647, 2147483647, 'FR', 'France'), +('130.67.0.0', '130.67.255.255', 2147483647, 2147483647, 'NO', 'Norway'), +('130.68.0.0', '130.68.255.255', 2147483647, 2147483647, 'US', 'United States'), +('130.69.0.0', '130.69.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('130.70.0.0', '130.72.255.255', 2147483647, 2147483647, 'US', 'United States'), +('130.73.0.0', '130.73.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('130.74.0.0', '130.74.255.255', 2147483647, 2147483647, 'US', 'United States'), +('130.75.0.0', '130.75.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('130.76.0.0', '130.77.255.255', 2147483647, 2147483647, 'US', 'United States'), +('130.78.0.0', '130.78.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('130.79.0.0', '130.79.255.255', 2147483647, 2147483647, 'FR', 'France'), +('130.80.0.0', '130.81.255.255', 2147483647, 2147483647, 'US', 'United States'), +('130.82.0.0', '130.82.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('130.83.0.0', '130.83.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('130.84.0.0', '130.84.255.255', 2147483647, 2147483647, 'FR', 'France'), +('130.85.0.0', '130.86.255.255', 2147483647, 2147483647, 'US', 'United States'), +('130.87.0.0', '130.87.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('130.88.0.0', '130.88.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('130.89.0.0', '130.89.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('130.90.0.0', '130.91.255.255', 2147483647, 2147483647, 'US', 'United States'), +('130.92.0.0', '130.92.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('130.93.0.0', '130.94.105.127', 2147483647, 2147483647, 'US', 'United States'), +('130.94.105.128', '130.94.105.255', 2147483647, 2147483647, 'A1', 'Anonymous Proxy'), +('130.94.106.0', '130.94.106.223', 2147483647, 2147483647, 'US', 'United States'), +('130.94.106.224', '130.94.106.255', 2147483647, 2147483647, 'A1', 'Anonymous Proxy'), +('130.94.107.0', '130.94.107.127', 2147483647, 2147483647, 'US', 'United States'), +('130.94.107.128', '130.94.107.255', 2147483647, 2147483647, 'A1', 'Anonymous Proxy'), +('130.94.108.0', '130.94.121.31', 2147483647, 2147483647, 'US', 'United States'), +('130.94.121.32', '130.94.121.39', 2147483647, 2147483647, 'A1', 'Anonymous Proxy'), +('130.94.121.40', '130.94.121.167', 2147483647, 2147483647, 'US', 'United States'), +('130.94.121.168', '130.94.121.175', 2147483647, 2147483647, 'A1', 'Anonymous Proxy'), +('130.94.121.176', '130.94.121.247', 2147483647, 2147483647, 'US', 'United States'), +('130.94.121.248', '130.94.121.255', 2147483647, 2147483647, 'A1', 'Anonymous Proxy'), +('130.94.122.0', '130.94.123.159', 2147483647, 2147483647, 'US', 'United States'), +('130.94.123.160', '130.94.123.191', 2147483647, 2147483647, 'A1', 'Anonymous Proxy'), +('130.94.123.192', '130.94.132.255', 2147483647, 2147483647, 'US', 'United States'), +('130.94.133.0', '130.94.133.127', 2147483647, 2147483647, 'A1', 'Anonymous Proxy'), +('130.94.133.128', '130.94.133.255', 2147483647, 2147483647, 'US', 'United States'), +('130.94.134.0', '130.94.134.255', 2147483647, 2147483647, 'A1', 'Anonymous Proxy'), +('130.94.135.0', '130.94.255.255', 2147483647, 2147483647, 'US', 'United States'), +('130.95.0.0', '130.95.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('130.96.0.0', '130.97.255.255', 2147483647, 2147483647, 'US', 'United States'), +('130.98.0.0', '130.98.255.255', 2147483647, 2147483647, 'FR', 'France'), +('130.99.0.0', '130.99.255.255', 2147483647, 2147483647, 'US', 'United States'), +('130.100.0.0', '130.100.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('130.101.0.0', '130.101.255.255', 2147483647, 2147483647, 'US', 'United States'), +('130.102.0.0', '130.102.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('130.103.0.0', '130.103.255.255', 2147483647, 2147483647, 'US', 'United States'), +('130.104.0.0', '130.104.255.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('130.105.0.0', '130.111.255.255', 2147483647, 2147483647, 'US', 'United States'), +('130.112.0.0', '130.112.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('130.113.0.0', '130.113.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('130.114.0.0', '130.114.255.255', 2147483647, 2147483647, 'US', 'United States'), +('130.115.0.0', '130.115.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('130.116.0.0', '130.116.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('130.117.0.0', '130.119.255.255', 2147483647, 2147483647, 'US', 'United States'), +('130.120.0.0', '130.120.255.255', 2147483647, 2147483647, 'FR', 'France'), +('130.121.0.0', '130.122.255.255', 2147483647, 2147483647, 'US', 'United States'), +('130.123.0.0', '130.123.255.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('130.124.0.0', '130.124.255.255', 2147483647, 2147483647, 'US', 'United States'), +('130.125.0.0', '130.125.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('130.126.0.0', '130.129.255.255', 2147483647, 2147483647, 'US', 'United States'), +('130.130.0.0', '130.130.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('130.131.0.0', '130.132.255.255', 2147483647, 2147483647, 'US', 'United States'), +('130.133.0.0', '130.133.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('130.134.0.0', '130.135.255.255', 2147483647, 2147483647, 'US', 'United States'), +('130.136.0.0', '130.136.255.255', 2147483647, 2147483647, 'IT', 'Italy'), +('130.137.0.0', '130.137.255.255', 2147483647, 2147483647, 'US', 'United States'), +('130.138.0.0', '130.147.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('130.148.0.0', '130.148.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('130.149.0.0', '130.149.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('130.150.0.0', '130.152.255.255', 2147483647, 2147483647, 'US', 'United States'), +('130.153.0.0', '130.153.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('130.154.0.0', '130.154.255.255', 2147483647, 2147483647, 'US', 'United States'), +('130.155.0.0', '130.155.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('130.156.0.0', '130.157.255.255', 2147483647, 2147483647, 'US', 'United States'), +('130.158.0.0', '130.158.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('130.159.0.0', '130.159.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('130.160.0.0', '130.160.255.255', 2147483647, 2147483647, 'US', 'United States'), +('130.161.0.0', '130.161.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('130.162.0.0', '130.178.255.255', 2147483647, 2147483647, 'US', 'United States'), +('130.179.0.0', '130.179.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('130.181.0.0', '130.182.255.255', 2147483647, 2147483647, 'US', 'United States'), +('130.183.0.0', '130.183.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('130.184.0.0', '130.184.255.255', 2147483647, 2147483647, 'US', 'United States'), +('130.186.0.0', '130.186.255.255', 2147483647, 2147483647, 'IT', 'Italy'), +('130.187.0.0', '130.187.255.255', 2147483647, 2147483647, 'US', 'United States'), +('130.188.0.0', '130.188.255.255', 2147483647, 2147483647, 'FI', 'Finland'), +('130.189.0.0', '130.189.255.255', 2147483647, 2147483647, 'US', 'United States'), +('130.190.0.0', '130.190.255.255', 2147483647, 2147483647, 'FR', 'France'), +('130.191.0.0', '130.191.255.255', 2147483647, 2147483647, 'US', 'United States'), +('130.192.0.0', '130.192.255.255', 2147483647, 2147483647, 'IT', 'Italy'), +('130.194.0.0', '130.194.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('130.195.0.0', '130.195.255.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('130.196.0.0', '130.197.255.255', 2147483647, 2147483647, 'US', 'United States'), +('130.198.0.0', '130.198.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('130.199.0.0', '130.203.255.255', 2147483647, 2147483647, 'US', 'United States'), +('130.205.0.0', '130.205.255.255', 2147483647, 2147483647, 'US', 'United States'), +('130.206.0.0', '130.206.255.255', 2147483647, 2147483647, 'ES', 'Spain'), +('130.207.0.0', '130.207.255.255', 2147483647, 2147483647, 'US', 'United States'), +('130.208.0.0', '130.208.255.255', 2147483647, 2147483647, 'IS', 'Iceland'), +('130.209.0.0', '130.209.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('130.210.0.0', '130.215.255.255', 2147483647, 2147483647, 'US', 'United States'), +('130.216.0.0', '130.217.255.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('130.218.0.0', '130.219.255.255', 2147483647, 2147483647, 'US', 'United States'), +('130.220.0.0', '130.220.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('130.221.0.0', '130.222.255.255', 2147483647, 2147483647, 'US', 'United States'), +('130.223.0.0', '130.223.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('130.224.0.0', '130.224.255.255', 2147483647, 2147483647, 'US', 'United States'), +('130.225.0.0', '130.228.255.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('130.229.0.0', '130.229.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('130.230.0.0', '130.234.255.255', 2147483647, 2147483647, 'FI', 'Finland'), +('130.235.0.0', '130.244.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('130.245.0.0', '130.245.255.255', 2147483647, 2147483647, 'US', 'United States'), +('130.246.0.0', '130.246.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('130.247.0.0', '130.249.255.255', 2147483647, 2147483647, 'US', 'United States'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('130.250.0.0', '130.250.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('130.251.0.0', '130.251.255.255', 2147483647, 2147483647, 'IT', 'Italy'), +('130.252.0.0', '130.255.255.255', 2147483647, 2147483647, 'US', 'United States'), +('131.1.0.0', '131.1.255.255', 2147483647, 2147483647, 'IT', 'Italy'), +('131.2.0.0', '131.96.255.255', 2147483647, 2147483647, 'US', 'United States'), +('131.97.0.0', '131.97.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('131.98.0.0', '131.98.255.255', 2147483647, 2147483647, 'US', 'United States'), +('131.99.0.0', '131.99.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('131.101.0.0', '131.101.255.255', 2147483647, 2147483647, 'US', 'United States'), +('131.102.0.0', '131.102.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('131.103.0.0', '131.103.255.255', 2147483647, 2147483647, 'US', 'United States'), +('131.104.0.0', '131.104.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('131.105.0.0', '131.107.255.255', 2147483647, 2147483647, 'US', 'United States'), +('131.109.0.0', '131.110.255.255', 2147483647, 2147483647, 'US', 'United States'), +('131.111.0.0', '131.111.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('131.112.0.0', '131.113.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('131.114.0.0', '131.114.255.255', 2147483647, 2147483647, 'IT', 'Italy'), +('131.115.0.0', '131.116.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('131.117.0.0', '131.117.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('131.118.0.0', '131.128.255.255', 2147483647, 2147483647, 'US', 'United States'), +('131.129.0.0', '131.129.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('131.130.0.0', '131.130.255.255', 2147483647, 2147483647, 'AT', 'Austria'), +('131.131.0.0', '131.131.255.255', 2147483647, 2147483647, 'US', 'United States'), +('131.132.0.0', '131.141.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('131.142.0.0', '131.146.255.255', 2147483647, 2147483647, 'US', 'United States'), +('131.147.0.0', '131.150.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('131.151.0.0', '131.151.255.255', 2147483647, 2147483647, 'US', 'United States'), +('131.152.0.0', '131.152.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('131.153.0.0', '131.153.255.255', 2147483647, 2147483647, 'US', 'United States'), +('131.154.0.0', '131.154.255.255', 2147483647, 2147483647, 'IT', 'Italy'), +('131.155.0.0', '131.155.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('131.156.0.0', '131.158.255.255', 2147483647, 2147483647, 'US', 'United States'), +('131.159.0.0', '131.159.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('131.160.0.0', '131.160.255.255', 2147483647, 2147483647, 'FI', 'Finland'), +('131.162.0.0', '131.163.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('131.164.0.0', '131.166.255.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('131.167.0.0', '131.168.255.255', 2147483647, 2147483647, 'US', 'United States'), +('131.169.0.0', '131.169.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('131.170.0.0', '131.170.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('131.171.0.0', '131.171.255.255', 2147483647, 2147483647, 'US', 'United States'), +('131.172.0.0', '131.172.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('131.173.0.0', '131.173.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('131.174.0.0', '131.174.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('131.175.0.0', '131.175.255.255', 2147483647, 2147483647, 'IT', 'Italy'), +('131.176.0.0', '131.176.255.255', 2147483647, 2147483647, 'US', 'United States'), +('131.177.0.0', '131.177.255.255', 2147483647, 2147483647, 'FI', 'Finland'), +('131.178.0.0', '131.178.255.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('131.179.0.0', '131.179.255.255', 2147483647, 2147483647, 'US', 'United States'), +('131.180.0.0', '131.180.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('131.181.0.0', '131.181.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('131.182.0.0', '131.184.255.255', 2147483647, 2147483647, 'US', 'United States'), +('131.185.0.0', '131.185.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('131.186.0.0', '131.187.255.255', 2147483647, 2147483647, 'US', 'United States'), +('131.188.0.0', '131.188.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('131.189.0.0', '131.194.255.255', 2147483647, 2147483647, 'US', 'United States'), +('131.195.0.0', '131.195.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('131.196.0.0', '131.196.255.255', 2147483647, 2147483647, 'FR', 'France'), +('131.197.0.0', '131.201.255.255', 2147483647, 2147483647, 'US', 'United States'), +('131.202.0.0', '131.202.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('131.203.0.0', '131.203.255.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('131.204.0.0', '131.204.255.255', 2147483647, 2147483647, 'US', 'United States'), +('131.205.0.0', '131.205.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('131.206.0.0', '131.206.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('131.207.0.0', '131.207.255.255', 2147483647, 2147483647, 'FI', 'Finland'), +('131.208.0.0', '131.210.255.255', 2147483647, 2147483647, 'US', 'United States'), +('131.211.0.0', '131.211.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('131.212.0.0', '131.212.255.255', 2147483647, 2147483647, 'US', 'United States'), +('131.213.0.0', '131.213.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('131.214.0.0', '131.216.255.255', 2147483647, 2147483647, 'US', 'United States'), +('131.217.0.0', '131.217.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('131.218.0.0', '131.219.255.255', 2147483647, 2147483647, 'US', 'United States'), +('131.220.0.0', '131.220.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('131.222.0.0', '131.223.255.255', 2147483647, 2147483647, 'US', 'United States'), +('131.224.0.0', '131.224.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('131.225.0.0', '131.226.255.255', 2147483647, 2147483647, 'US', 'United States'), +('131.227.0.0', '131.227.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('131.228.0.0', '131.228.255.255', 2147483647, 2147483647, 'FI', 'Finland'), +('131.229.0.0', '131.230.255.255', 2147483647, 2147483647, 'US', 'United States'), +('131.231.0.0', '131.231.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('131.232.0.0', '131.232.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('131.233.0.0', '131.233.255.255', 2147483647, 2147483647, 'US', 'United States'), +('131.234.0.0', '131.234.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('131.235.0.0', '131.235.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('131.236.0.0', '131.236.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('131.237.0.0', '131.237.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('131.238.0.0', '131.241.255.255', 2147483647, 2147483647, 'US', 'United States'), +('131.242.0.0', '131.242.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('131.243.0.0', '131.243.255.255', 2147483647, 2147483647, 'US', 'United States'), +('131.244.0.0', '131.245.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('131.246.0.0', '131.246.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('131.247.0.0', '131.247.255.255', 2147483647, 2147483647, 'US', 'United States'), +('131.248.0.0', '131.248.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('131.249.0.0', '131.250.255.255', 2147483647, 2147483647, 'US', 'United States'), +('131.251.0.0', '131.251.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('131.252.0.0', '131.252.255.255', 2147483647, 2147483647, 'US', 'United States'), +('131.253.0.0', '131.253.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('131.254.0.0', '131.254.255.255', 2147483647, 2147483647, 'FR', 'France'), +('132.0.0.0', '132.63.255.255', 2147483647, 2147483647, 'US', 'United States'), +('132.64.0.0', '132.78.255.255', 2147483647, 2147483647, 'IL', 'Israel'), +('132.79.0.0', '132.145.255.255', 2147483647, 2147483647, 'US', 'United States'), +('132.146.0.0', '132.146.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('132.147.0.0', '132.148.255.255', 2147483647, 2147483647, 'US', 'United States'), +('132.149.0.0', '132.149.255.255', 2147483647, 2147483647, 'FR', 'France'), +('132.150.0.0', '132.150.255.255', 2147483647, 2147483647, 'NO', 'Norway'), +('132.151.0.0', '132.152.255.255', 2147483647, 2147483647, 'US', 'United States'), +('132.153.0.0', '132.153.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('132.154.0.0', '132.154.255.255', 2147483647, 2147483647, 'US', 'United States'), +('132.155.0.0', '132.155.255.255', 2147483647, 2147483647, 'FI', 'Finland'), +('132.156.0.0', '132.156.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('132.158.0.0', '132.164.255.255', 2147483647, 2147483647, 'US', 'United States'), +('132.165.0.0', '132.169.255.255', 2147483647, 2147483647, 'FR', 'France'), +('132.170.0.0', '132.170.255.255', 2147483647, 2147483647, 'US', 'United States'), +('132.171.0.0', '132.171.255.255', 2147483647, 2147483647, 'FI', 'Finland'), +('132.172.0.0', '132.175.255.255', 2147483647, 2147483647, 'US', 'United States'), +('132.176.0.0', '132.176.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('132.177.0.0', '132.178.255.255', 2147483647, 2147483647, 'US', 'United States'), +('132.179.0.0', '132.179.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('132.180.0.0', '132.180.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('132.181.0.0', '132.181.255.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('132.182.0.0', '132.182.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('132.183.0.0', '132.183.255.255', 2147483647, 2147483647, 'US', 'United States'), +('132.185.0.0', '132.185.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('132.186.0.0', '132.186.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('132.187.0.0', '132.187.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('132.188.0.0', '132.194.255.255', 2147483647, 2147483647, 'US', 'United States'), +('132.195.0.0', '132.195.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('132.196.0.0', '132.196.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('132.197.0.0', '132.198.255.255', 2147483647, 2147483647, 'US', 'United States'), +('132.199.0.0', '132.199.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('132.200.0.0', '132.201.255.255', 2147483647, 2147483647, 'US', 'United States'), +('132.202.0.0', '132.221.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('132.222.0.0', '132.222.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('132.223.0.0', '132.224.255.255', 2147483647, 2147483647, 'US', 'United States'), +('132.225.0.0', '132.225.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('132.226.0.0', '132.226.255.255', 2147483647, 2147483647, 'US', 'United States'), +('132.227.0.0', '132.227.255.255', 2147483647, 2147483647, 'FR', 'France'), +('132.228.0.0', '132.228.255.255', 2147483647, 2147483647, 'US', 'United States'), +('132.229.0.0', '132.229.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('132.230.0.0', '132.231.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('132.232.0.0', '132.232.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('132.233.0.0', '132.233.255.255', 2147483647, 2147483647, 'US', 'United States'), +('132.234.0.0', '132.234.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('132.235.0.0', '132.243.255.255', 2147483647, 2147483647, 'US', 'United States'), +('132.244.0.0', '132.244.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('132.245.0.0', '132.245.255.255', 2147483647, 2147483647, 'US', 'United States'), +('132.246.0.0', '132.246.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('132.247.0.0', '132.248.255.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('132.249.0.0', '132.250.255.255', 2147483647, 2147483647, 'US', 'United States'), +('132.252.0.0', '132.252.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('132.253.0.0', '132.253.255.255', 2147483647, 2147483647, 'US', 'United States'), +('132.254.0.0', '132.254.255.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('133.0.0.0', '133.255.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('134.0.0.0', '134.3.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('134.4.0.0', '134.6.255.255', 2147483647, 2147483647, 'US', 'United States'), +('134.7.0.0', '134.7.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('134.8.0.0', '134.16.255.255', 2147483647, 2147483647, 'US', 'United States'), +('134.18.0.0', '134.18.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('134.20.0.0', '134.20.255.255', 2147483647, 2147483647, 'US', 'United States'), +('134.21.0.0', '134.21.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('134.22.0.0', '134.22.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('134.23.0.0', '134.24.239.255', 2147483647, 2147483647, 'US', 'United States'), +('134.24.240.0', '134.24.240.7', 2147483647, 2147483647, 'FR', 'France'), +('134.24.240.8', '134.24.255.255', 2147483647, 2147483647, 'US', 'United States'), +('134.25.0.0', '134.25.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('134.26.0.0', '134.26.255.255', 2147483647, 2147483647, 'US', 'United States'), +('134.27.0.0', '134.27.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('134.28.0.0', '134.28.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('134.29.0.0', '134.29.255.255', 2147483647, 2147483647, 'US', 'United States'), +('134.30.0.0', '134.30.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('134.31.0.0', '134.31.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('134.32.0.0', '134.33.255.255', 2147483647, 2147483647, 'US', 'United States'), +('134.34.0.0', '134.34.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('134.35.0.0', '134.35.255.255', 2147483647, 2147483647, 'US', 'United States'), +('134.36.0.0', '134.36.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('134.37.0.0', '134.37.255.255', 2147483647, 2147483647, 'FI', 'Finland'), +('134.38.0.0', '134.46.255.255', 2147483647, 2147483647, 'US', 'United States'), +('134.47.0.0', '134.47.255.255', 2147483647, 2147483647, 'NO', 'Norway'), +('134.48.0.0', '134.53.255.255', 2147483647, 2147483647, 'US', 'United States'), +('134.54.0.0', '134.54.255.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('134.55.0.0', '134.57.255.255', 2147483647, 2147483647, 'US', 'United States'), +('134.58.0.0', '134.58.255.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('134.59.0.0', '134.59.255.255', 2147483647, 2147483647, 'FR', 'France'), +('134.60.0.0', '134.61.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('134.62.0.0', '134.74.255.255', 2147483647, 2147483647, 'US', 'United States'), +('134.75.0.0', '134.75.255.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('134.76.0.0', '134.76.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('134.77.0.0', '134.80.255.255', 2147483647, 2147483647, 'US', 'United States'), +('134.81.0.0', '134.81.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('134.82.0.0', '134.82.255.255', 2147483647, 2147483647, 'US', 'United States'), +('134.83.0.0', '134.83.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('134.84.0.0', '134.86.255.255', 2147483647, 2147483647, 'US', 'United States'), +('134.87.0.0', '134.87.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('134.88.0.0', '134.89.255.255', 2147483647, 2147483647, 'US', 'United States'), +('134.91.0.0', '134.110.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('134.111.0.0', '134.114.255.255', 2147483647, 2147483647, 'US', 'United States'), +('134.115.0.0', '134.115.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('134.116.0.0', '134.116.255.255', 2147483647, 2147483647, 'US', 'United States'), +('134.117.0.0', '134.117.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('134.118.0.0', '134.118.255.255', 2147483647, 2147483647, 'US', 'United States'), +('134.119.0.0', '134.119.255.255', 2147483647, 2147483647, 'NO', 'Norway'), +('134.120.0.0', '134.129.255.255', 2147483647, 2147483647, 'US', 'United States'), +('134.130.0.0', '134.130.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('134.131.0.0', '134.137.255.255', 2147483647, 2147483647, 'US', 'United States'), +('134.138.0.0', '134.138.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('134.139.0.0', '134.141.255.255', 2147483647, 2147483647, 'US', 'United States'), +('134.142.0.0', '134.142.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('134.143.0.0', '134.143.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('134.144.0.0', '134.144.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('134.145.0.0', '134.146.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('134.147.0.0', '134.147.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('134.148.0.0', '134.148.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('134.149.0.0', '134.149.255.255', 2147483647, 2147483647, 'US', 'United States'), +('134.150.0.0', '134.150.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('134.151.0.0', '134.151.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('134.152.0.0', '134.152.255.255', 2147483647, 2147483647, 'US', 'United States'), +('134.153.0.0', '134.153.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('134.154.0.0', '134.154.255.255', 2147483647, 2147483647, 'US', 'United States'), +('134.155.0.0', '134.155.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('134.156.0.0', '134.156.255.255', 2147483647, 2147483647, 'US', 'United States'), +('134.157.0.0', '134.158.255.255', 2147483647, 2147483647, 'FR', 'France'), +('134.159.0.0', '134.159.1.255', 2147483647, 2147483647, 'US', 'United States'), +('134.159.2.0', '134.159.2.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('134.159.3.0', '134.159.3.255', 2147483647, 2147483647, 'US', 'United States'), +('134.159.4.0', '134.159.4.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('134.159.5.0', '134.159.63.255', 2147483647, 2147483647, 'US', 'United States'), +('134.159.64.0', '134.159.95.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('134.159.96.0', '134.159.96.95', 2147483647, 2147483647, 'AU', 'Australia'), +('134.159.96.96', '134.159.96.103', 2147483647, 2147483647, 'TW', 'Taiwan'), +('134.159.96.104', '134.159.96.111', 2147483647, 2147483647, 'JP', 'Japan'), +('134.159.96.112', '134.159.96.191', 2147483647, 2147483647, 'TW', 'Taiwan'), +('134.159.96.192', '134.159.96.223', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('134.159.96.224', '134.159.97.255', 2147483647, 2147483647, 'AU', 'Australia'), +('134.159.98.0', '134.159.98.127', 2147483647, 2147483647, 'JP', 'Japan'), +('134.159.98.128', '134.159.98.183', 2147483647, 2147483647, 'AU', 'Australia'), +('134.159.98.184', '134.159.98.191', 2147483647, 2147483647, 'JP', 'Japan'), +('134.159.98.192', '134.159.98.223', 2147483647, 2147483647, 'IN', 'India'), +('134.159.98.224', '134.159.98.239', 2147483647, 2147483647, 'AU', 'Australia'), +('134.159.98.240', '134.159.98.255', 2147483647, 2147483647, 'JP', 'Japan'), +('134.159.99.0', '134.159.100.255', 2147483647, 2147483647, 'AU', 'Australia'), +('134.159.101.0', '134.159.101.127', 2147483647, 2147483647, 'SG', 'Singapore'), +('134.159.101.128', '134.159.105.255', 2147483647, 2147483647, 'AU', 'Australia'), +('134.159.106.0', '134.159.106.255', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('134.159.107.0', '134.159.107.63', 2147483647, 2147483647, 'AU', 'Australia'), +('134.159.107.64', '134.159.107.79', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('134.159.107.80', '134.159.107.95', 2147483647, 2147483647, 'AU', 'Australia'), +('134.159.107.96', '134.159.107.127', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('134.159.107.128', '134.159.108.15', 2147483647, 2147483647, 'AU', 'Australia'), +('134.159.108.16', '134.159.108.23', 2147483647, 2147483647, 'JP', 'Japan'), +('134.159.108.24', '134.159.108.31', 2147483647, 2147483647, 'AU', 'Australia'), +('134.159.108.32', '134.159.108.63', 2147483647, 2147483647, 'JP', 'Japan'), +('134.159.108.64', '134.159.108.143', 2147483647, 2147483647, 'AU', 'Australia'), +('134.159.108.144', '134.159.108.151', 2147483647, 2147483647, 'JP', 'Japan'), +('134.159.108.152', '134.159.108.159', 2147483647, 2147483647, 'AU', 'Australia'), +('134.159.108.160', '134.159.108.175', 2147483647, 2147483647, 'JP', 'Japan'), +('134.159.108.176', '134.159.108.191', 2147483647, 2147483647, 'AU', 'Australia'), +('134.159.108.192', '134.159.108.207', 2147483647, 2147483647, 'TW', 'Taiwan'), +('134.159.108.208', '134.159.108.215', 2147483647, 2147483647, 'JP', 'Japan'), +('134.159.108.216', '134.159.109.63', 2147483647, 2147483647, 'AU', 'Australia'), +('134.159.109.64', '134.159.109.95', 2147483647, 2147483647, 'SG', 'Singapore'), +('134.159.109.96', '134.159.109.159', 2147483647, 2147483647, 'AU', 'Australia'), +('134.159.109.160', '134.159.109.191', 2147483647, 2147483647, 'TW', 'Taiwan'), +('134.159.109.192', '134.159.109.223', 2147483647, 2147483647, 'AU', 'Australia'), +('134.159.109.224', '134.159.109.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('134.159.110.0', '134.159.110.7', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('134.159.110.8', '134.159.110.15', 2147483647, 2147483647, 'TW', 'Taiwan'), +('134.159.110.16', '134.159.110.23', 2147483647, 2147483647, 'AU', 'Australia'), +('134.159.110.24', '134.159.110.31', 2147483647, 2147483647, 'JP', 'Japan'), +('134.159.110.32', '134.159.110.55', 2147483647, 2147483647, 'AU', 'Australia'), +('134.159.110.56', '134.159.110.63', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('134.159.110.64', '134.159.110.135', 2147483647, 2147483647, 'AU', 'Australia'), +('134.159.110.136', '134.159.110.143', 2147483647, 2147483647, 'TW', 'Taiwan'), +('134.159.110.144', '134.159.110.167', 2147483647, 2147483647, 'AU', 'Australia'), +('134.159.110.168', '134.159.110.175', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('134.159.110.176', '134.159.110.223', 2147483647, 2147483647, 'AU', 'Australia'), +('134.159.110.224', '134.159.110.239', 2147483647, 2147483647, 'JP', 'Japan'), +('134.159.110.240', '134.159.110.255', 2147483647, 2147483647, 'AU', 'Australia'), +('134.159.111.0', '134.159.111.7', 2147483647, 2147483647, 'TW', 'Taiwan'), +('134.159.111.8', '134.159.111.19', 2147483647, 2147483647, 'AU', 'Australia'), +('134.159.111.20', '134.159.111.23', 2147483647, 2147483647, 'JP', 'Japan'), +('134.159.111.24', '134.159.111.55', 2147483647, 2147483647, 'AU', 'Australia'), +('134.159.111.56', '134.159.111.59', 2147483647, 2147483647, 'JP', 'Japan'), +('134.159.111.60', '134.159.111.71', 2147483647, 2147483647, 'AU', 'Australia'), +('134.159.111.72', '134.159.111.79', 2147483647, 2147483647, 'IN', 'India'), +('134.159.111.80', '134.159.111.127', 2147483647, 2147483647, 'AU', 'Australia'), +('134.159.111.128', '134.159.111.191', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('134.159.111.192', '134.159.111.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('134.159.112.0', '134.159.112.239', 2147483647, 2147483647, 'AU', 'Australia'), +('134.159.112.240', '134.159.112.247', 2147483647, 2147483647, 'JP', 'Japan'), +('134.159.112.248', '134.159.115.255', 2147483647, 2147483647, 'AU', 'Australia'), +('134.159.116.0', '134.159.116.39', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('134.159.116.40', '134.159.116.63', 2147483647, 2147483647, 'AU', 'Australia'), +('134.159.116.64', '134.159.116.127', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('134.159.116.128', '134.159.116.207', 2147483647, 2147483647, 'AU', 'Australia'), +('134.159.116.208', '134.159.116.223', 2147483647, 2147483647, 'TW', 'Taiwan'), +('134.159.116.224', '134.159.120.7', 2147483647, 2147483647, 'AU', 'Australia'), +('134.159.120.8', '134.159.120.15', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('134.159.120.16', '134.159.120.39', 2147483647, 2147483647, 'AU', 'Australia'), +('134.159.120.40', '134.159.120.47', 2147483647, 2147483647, 'JP', 'Japan'), +('134.159.120.48', '134.159.120.63', 2147483647, 2147483647, 'AU', 'Australia'), +('134.159.120.64', '134.159.120.95', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('134.159.120.96', '134.159.120.111', 2147483647, 2147483647, 'JP', 'Japan'), +('134.159.120.112', '134.159.120.127', 2147483647, 2147483647, 'TW', 'Taiwan'), +('134.159.120.128', '134.159.120.255', 2147483647, 2147483647, 'AU', 'Australia'), +('134.159.121.0', '134.159.121.95', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('134.159.121.96', '134.159.121.111', 2147483647, 2147483647, 'AU', 'Australia'), +('134.159.121.112', '134.159.121.143', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('134.159.121.144', '134.159.121.175', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('134.159.121.176', '134.159.121.191', 2147483647, 2147483647, 'JP', 'Japan'), +('134.159.121.192', '134.159.121.207', 2147483647, 2147483647, 'TW', 'Taiwan'), +('134.159.121.208', '134.159.122.119', 2147483647, 2147483647, 'AU', 'Australia'), +('134.159.122.120', '134.159.122.127', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('134.159.122.128', '134.159.122.167', 2147483647, 2147483647, 'JP', 'Japan'), +('134.159.122.168', '134.159.122.191', 2147483647, 2147483647, 'AU', 'Australia'), +('134.159.122.192', '134.159.122.223', 2147483647, 2147483647, 'TW', 'Taiwan'), +('134.159.122.224', '134.159.122.239', 2147483647, 2147483647, 'AU', 'Australia'), +('134.159.122.240', '134.159.122.247', 2147483647, 2147483647, 'JP', 'Japan'), +('134.159.122.248', '134.159.122.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('134.159.123.0', '134.159.131.95', 2147483647, 2147483647, 'AU', 'Australia'), +('134.159.131.96', '134.159.131.127', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('134.159.131.128', '134.159.131.255', 2147483647, 2147483647, 'AU', 'Australia'), +('134.159.132.0', '134.159.132.127', 2147483647, 2147483647, 'SG', 'Singapore'), +('134.159.132.128', '134.159.132.239', 2147483647, 2147483647, 'AU', 'Australia'), +('134.159.132.240', '134.159.132.247', 2147483647, 2147483647, 'JP', 'Japan'), +('134.159.132.248', '134.159.133.255', 2147483647, 2147483647, 'AU', 'Australia'), +('134.159.134.0', '134.159.135.255', 2147483647, 2147483647, 'JP', 'Japan'), +('134.159.136.0', '134.159.137.255', 2147483647, 2147483647, 'AU', 'Australia'), +('134.159.138.0', '134.159.138.255', 2147483647, 2147483647, 'VN', 'Vietnam'), +('134.159.139.0', '134.159.140.255', 2147483647, 2147483647, 'AU', 'Australia'), +('134.159.141.0', '134.159.141.15', 2147483647, 2147483647, 'IN', 'India'), +('134.159.141.16', '134.159.142.159', 2147483647, 2147483647, 'AU', 'Australia'), +('134.159.142.160', '134.159.142.191', 2147483647, 2147483647, 'IN', 'India'), +('134.159.142.192', '134.159.142.207', 2147483647, 2147483647, 'AU', 'Australia'), +('134.159.142.208', '134.159.142.215', 2147483647, 2147483647, 'SG', 'Singapore'), +('134.159.142.216', '134.159.142.223', 2147483647, 2147483647, 'AU', 'Australia'), +('134.159.142.224', '134.159.142.231', 2147483647, 2147483647, 'TW', 'Taiwan'), +('134.159.142.232', '134.159.142.255', 2147483647, 2147483647, 'AU', 'Australia'), +('134.159.143.0', '134.159.143.255', 2147483647, 2147483647, 'MO', 'Macau'), +('134.159.144.0', '134.159.145.255', 2147483647, 2147483647, 'AU', 'Australia'), +('134.159.146.0', '134.159.146.31', 2147483647, 2147483647, 'IN', 'India'), +('134.159.146.32', '134.159.146.47', 2147483647, 2147483647, 'SG', 'Singapore'), +('134.159.146.48', '134.159.146.63', 2147483647, 2147483647, 'IN', 'India'), +('134.159.146.64', '134.159.146.95', 2147483647, 2147483647, 'SG', 'Singapore'), +('134.159.146.96', '134.159.146.127', 2147483647, 2147483647, 'AU', 'Australia'), +('134.159.146.128', '134.159.146.191', 2147483647, 2147483647, 'SG', 'Singapore'), +('134.159.146.192', '134.159.146.255', 2147483647, 2147483647, 'AU', 'Australia'), +('134.159.147.0', '134.159.147.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('134.159.148.0', '134.159.149.255', 2147483647, 2147483647, 'AU', 'Australia'), +('134.159.150.0', '134.159.150.63', 2147483647, 2147483647, 'SG', 'Singapore'), +('134.159.150.64', '134.159.151.143', 2147483647, 2147483647, 'AU', 'Australia'), +('134.159.151.144', '134.159.151.167', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('134.159.151.168', '134.159.151.207', 2147483647, 2147483647, 'AU', 'Australia'), +('134.159.151.208', '134.159.151.211', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('134.159.151.212', '134.159.153.127', 2147483647, 2147483647, 'AU', 'Australia'), +('134.159.153.128', '134.159.153.135', 2147483647, 2147483647, 'JP', 'Japan'), +('134.159.153.136', '134.159.153.255', 2147483647, 2147483647, 'AU', 'Australia'), +('134.159.154.0', '134.159.154.15', 2147483647, 2147483647, 'JP', 'Japan'), +('134.159.154.16', '134.159.154.95', 2147483647, 2147483647, 'AU', 'Australia'), +('134.159.154.96', '134.159.154.111', 2147483647, 2147483647, 'JP', 'Japan'), +('134.159.154.112', '134.159.156.239', 2147483647, 2147483647, 'AU', 'Australia'), +('134.159.156.240', '134.159.156.247', 2147483647, 2147483647, 'SG', 'Singapore'), +('134.159.156.248', '134.159.165.79', 2147483647, 2147483647, 'AU', 'Australia'), +('134.159.165.80', '134.159.165.95', 2147483647, 2147483647, 'IN', 'India'), +('134.159.165.96', '134.159.165.103', 2147483647, 2147483647, 'AU', 'Australia'), +('134.159.165.104', '134.159.165.119', 2147483647, 2147483647, 'IN', 'India'), +('134.159.165.120', '134.159.168.127', 2147483647, 2147483647, 'AU', 'Australia'), +('134.159.168.128', '134.159.168.255', 2147483647, 2147483647, 'IN', 'India'), +('134.159.169.0', '134.159.185.255', 2147483647, 2147483647, 'AU', 'Australia'), +('134.159.186.0', '134.159.186.15', 2147483647, 2147483647, 'TW', 'Taiwan'), +('134.159.186.16', '134.159.191.255', 2147483647, 2147483647, 'AU', 'Australia'), +('134.159.192.0', '134.159.255.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('134.160.0.0', '134.160.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('134.161.0.0', '134.168.255.255', 2147483647, 2147483647, 'US', 'United States'), +('134.169.0.0', '134.169.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('134.170.0.0', '134.170.255.255', 2147483647, 2147483647, 'US', 'United States'), +('134.171.0.0', '134.171.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('134.172.0.0', '134.175.255.255', 2147483647, 2147483647, 'US', 'United States'), +('134.176.0.0', '134.176.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('134.177.0.0', '134.177.255.255', 2147483647, 2147483647, 'US', 'United States'), +('134.178.0.0', '134.178.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('134.179.0.0', '134.179.255.255', 2147483647, 2147483647, 'US', 'United States'), +('134.180.0.0', '134.180.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('134.181.0.0', '134.182.255.255', 2147483647, 2147483647, 'US', 'United States'), +('134.183.0.0', '134.183.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('134.184.0.0', '134.184.255.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('134.185.0.0', '134.187.255.255', 2147483647, 2147483647, 'US', 'United States'), +('134.188.0.0', '134.188.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('134.189.0.0', '134.189.255.255', 2147483647, 2147483647, 'US', 'United States'), +('134.190.0.0', '134.190.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('134.191.0.0', '134.191.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('134.192.0.0', '134.195.255.255', 2147483647, 2147483647, 'US', 'United States'), +('134.196.0.0', '134.196.255.255', 2147483647, 2147483647, 'CN', 'China'), +('134.197.0.0', '134.198.255.255', 2147483647, 2147483647, 'US', 'United States'), +('134.199.0.0', '134.199.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('134.200.0.0', '134.201.255.255', 2147483647, 2147483647, 'US', 'United States'), +('134.202.0.0', '134.202.255.255', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('134.203.0.0', '134.203.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('134.204.0.0', '134.205.255.255', 2147483647, 2147483647, 'US', 'United States'), +('134.206.0.0', '134.206.255.255', 2147483647, 2147483647, 'FR', 'France'), +('134.207.0.0', '134.207.255.255', 2147483647, 2147483647, 'US', 'United States'), +('134.208.0.0', '134.208.255.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('134.209.0.0', '134.210.255.255', 2147483647, 2147483647, 'US', 'United States'), +('134.211.0.0', '134.211.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('134.212.0.0', '134.212.255.255', 2147483647, 2147483647, 'FR', 'France'), +('134.213.0.0', '134.213.255.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('134.214.0.0', '134.214.255.255', 2147483647, 2147483647, 'FR', 'France'), +('134.215.0.0', '134.218.255.255', 2147483647, 2147483647, 'US', 'United States'), +('134.219.0.0', '134.220.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('134.221.0.0', '134.222.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('134.223.0.0', '134.224.255.255', 2147483647, 2147483647, 'US', 'United States'), +('134.225.0.0', '134.225.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('134.226.0.0', '134.226.255.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('134.227.0.0', '134.227.255.255', 2147483647, 2147483647, 'FR', 'France'), +('134.228.0.0', '134.236.255.255', 2147483647, 2147483647, 'US', 'United States'), +('134.237.0.0', '134.237.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('134.238.0.0', '134.238.255.255', 2147483647, 2147483647, 'US', 'United States'), +('134.239.0.0', '134.239.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('134.240.0.0', '134.244.255.255', 2147483647, 2147483647, 'US', 'United States'), +('134.245.0.0', '134.245.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('134.246.0.0', '134.246.255.255', 2147483647, 2147483647, 'FR', 'France'), +('134.247.0.0', '134.247.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('134.248.0.0', '135.11.255.255', 2147483647, 2147483647, 'US', 'United States'), +('135.12.0.0', '135.12.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('135.13.0.0', '135.180.255.255', 2147483647, 2147483647, 'US', 'United States'), +('135.181.0.0', '135.181.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('135.182.0.0', '135.195.255.255', 2147483647, 2147483647, 'US', 'United States'), +('135.196.0.0', '135.196.12.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('135.196.13.0', '135.196.13.255', 2147483647, 2147483647, 'DE', 'Germany'), +('135.196.14.0', '135.196.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('135.197.0.0', '136.144.255.255', 2147483647, 2147483647, 'US', 'United States'), +('136.145.0.0', '136.145.255.255', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('136.146.0.0', '136.147.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('136.148.0.0', '136.148.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('136.149.0.0', '136.152.255.255', 2147483647, 2147483647, 'US', 'United States'), +('136.153.0.0', '136.154.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('136.155.0.0', '136.155.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('136.156.0.0', '136.156.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('136.157.0.0', '136.157.255.255', 2147483647, 2147483647, 'US', 'United States'), +('136.158.0.0', '136.158.255.255', 2147483647, 2147483647, 'NO', 'Norway'), +('136.159.0.0', '136.159.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('136.160.0.0', '136.162.255.255', 2147483647, 2147483647, 'US', 'United States'), +('136.163.0.0', '136.163.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('136.164.0.0', '136.164.255.255', 2147483647, 2147483647, 'NO', 'Norway'), +('136.165.0.0', '136.168.255.255', 2147483647, 2147483647, 'US', 'United States'), +('136.170.0.0', '136.170.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('136.171.0.0', '136.171.255.255', 2147483647, 2147483647, 'US', 'United States'), +('136.172.0.0', '136.172.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('136.173.0.0', '136.173.255.255', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('136.174.0.0', '136.185.255.255', 2147483647, 2147483647, 'US', 'United States'), +('136.186.0.0', '136.186.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('136.187.0.0', '136.187.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('136.188.0.0', '136.197.255.255', 2147483647, 2147483647, 'US', 'United States'), +('136.198.0.0', '136.198.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('136.199.0.0', '136.199.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('136.200.0.0', '136.200.255.255', 2147483647, 2147483647, 'US', 'United States'), +('136.201.0.0', '136.201.255.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('136.202.0.0', '136.205.255.255', 2147483647, 2147483647, 'US', 'United States'), +('136.206.0.0', '136.206.255.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('136.207.0.0', '136.224.255.255', 2147483647, 2147483647, 'US', 'United States'), +('136.225.0.0', '136.225.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('136.226.0.0', '136.229.255.255', 2147483647, 2147483647, 'US', 'United States'), +('136.230.0.0', '136.230.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('136.231.0.0', '136.231.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('136.232.0.0', '136.235.255.255', 2147483647, 2147483647, 'US', 'United States'), +('136.236.0.0', '136.236.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('136.237.0.0', '136.237.255.255', 2147483647, 2147483647, 'US', 'United States'), +('136.238.0.0', '136.238.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('136.239.0.0', '136.242.255.255', 2147483647, 2147483647, 'US', 'United States'), +('136.243.0.0', '136.243.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('136.244.0.0', '137.14.255.255', 2147483647, 2147483647, 'US', 'United States'), +('137.15.0.0', '137.15.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('137.16.0.0', '137.16.255.255', 2147483647, 2147483647, 'US', 'United States'), +('137.17.0.0', '137.17.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('137.18.0.0', '137.32.255.255', 2147483647, 2147483647, 'US', 'United States'), +('137.33.0.0', '137.33.255.255', 2147483647, 2147483647, 'FI', 'Finland'), +('137.34.0.0', '137.34.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('137.35.0.0', '137.42.255.255', 2147483647, 2147483647, 'US', 'United States'), +('137.43.0.0', '137.43.255.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('137.44.0.0', '137.44.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('137.45.0.0', '137.46.255.255', 2147483647, 2147483647, 'US', 'United States'), +('137.47.0.0', '137.47.255.255', 2147483647, 2147483647, 'NO', 'Norway'), +('137.48.0.0', '137.49.255.255', 2147483647, 2147483647, 'US', 'United States'), +('137.50.0.0', '137.50.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('137.51.0.0', '137.54.255.255', 2147483647, 2147483647, 'US', 'United States'), +('137.55.0.0', '137.56.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('137.57.0.0', '137.57.255.255', 2147483647, 2147483647, 'US', 'United States'), +('137.58.0.0', '137.61.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('137.62.0.0', '137.62.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('137.64.0.0', '137.67.255.255', 2147483647, 2147483647, 'US', 'United States'), +('137.68.0.0', '137.68.255.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('137.69.0.0', '137.72.255.255', 2147483647, 2147483647, 'US', 'United States'), +('137.73.0.0', '137.73.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('137.74.0.0', '137.74.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('137.75.0.0', '137.75.255.255', 2147483647, 2147483647, 'US', 'United States'), +('137.76.0.0', '137.76.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('137.77.0.0', '137.81.255.255', 2147483647, 2147483647, 'US', 'United States'), +('137.82.0.0', '137.82.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('137.83.0.0', '137.91.255.255', 2147483647, 2147483647, 'US', 'United States'), +('137.92.0.0', '137.92.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('137.93.0.0', '137.93.255.255', 2147483647, 2147483647, 'NO', 'Norway'), +('137.94.0.0', '137.94.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('137.95.0.0', '137.95.255.255', 2147483647, 2147483647, 'US', 'United States'), +('137.96.0.0', '137.96.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('137.97.0.0', '137.100.255.255', 2147483647, 2147483647, 'US', 'United States'), +('137.101.0.0', '137.101.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('137.102.0.0', '137.104.255.255', 2147483647, 2147483647, 'US', 'United States'), +('137.105.0.0', '137.105.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('137.106.0.0', '137.107.255.255', 2147483647, 2147483647, 'US', 'United States'), +('137.108.0.0', '137.108.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('137.109.0.0', '137.109.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('137.110.0.0', '137.110.255.255', 2147483647, 2147483647, 'US', 'United States'), +('137.111.0.0', '137.111.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('137.112.0.0', '137.116.255.255', 2147483647, 2147483647, 'US', 'United States'), +('137.117.0.0', '137.117.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('137.118.0.0', '137.119.255.255', 2147483647, 2147483647, 'US', 'United States'), +('137.120.0.0', '137.120.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('137.121.0.0', '137.121.255.255', 2147483647, 2147483647, 'FR', 'France'), +('137.122.0.0', '137.122.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('137.123.0.0', '137.128.255.255', 2147483647, 2147483647, 'US', 'United States'), +('137.129.0.0', '137.129.255.255', 2147483647, 2147483647, 'FR', 'France'), +('137.130.0.0', '137.131.255.255', 2147483647, 2147483647, 'US', 'United States'), +('137.132.0.0', '137.132.255.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('137.133.0.0', '137.133.255.255', 2147483647, 2147483647, 'NO', 'Norway'), +('137.134.0.0', '137.137.255.255', 2147483647, 2147483647, 'US', 'United States'), +('137.138.0.0', '137.138.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('137.139.0.0', '137.146.255.255', 2147483647, 2147483647, 'US', 'United States'), +('137.147.0.0', '137.147.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('137.148.0.0', '137.148.255.255', 2147483647, 2147483647, 'US', 'United States'), +('137.149.0.0', '137.149.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('137.150.0.0', '137.152.255.255', 2147483647, 2147483647, 'US', 'United States'), +('137.153.0.0', '137.153.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('137.154.0.0', '137.154.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('137.155.0.0', '137.155.255.255', 2147483647, 2147483647, 'US', 'United States'), +('137.156.0.0', '137.156.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('137.157.0.0', '137.157.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('137.158.0.0', '137.158.255.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('137.159.0.0', '137.162.255.255', 2147483647, 2147483647, 'US', 'United States'), +('137.163.0.0', '137.163.255.255', 2147483647, 2147483647, 'FI', 'Finland'), +('137.164.0.0', '137.165.255.255', 2147483647, 2147483647, 'US', 'United States'), +('137.166.0.0', '137.166.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('137.167.0.0', '137.171.255.255', 2147483647, 2147483647, 'US', 'United States'), +('137.172.0.0', '137.172.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('137.173.0.0', '137.173.255.255', 2147483647, 2147483647, 'US', 'United States'), +('137.174.0.0', '137.174.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('137.175.0.0', '137.185.255.255', 2147483647, 2147483647, 'US', 'United States'), +('137.186.0.0', '137.186.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('137.187.0.0', '137.188.255.255', 2147483647, 2147483647, 'US', 'United States'), +('137.189.0.0', '137.189.255.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('137.190.0.0', '137.190.255.255', 2147483647, 2147483647, 'US', 'United States'), +('137.191.0.0', '137.191.255.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('137.192.0.0', '137.192.255.255', 2147483647, 2147483647, 'US', 'United States'), +('137.193.0.0', '137.193.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('137.194.0.0', '137.194.255.255', 2147483647, 2147483647, 'FR', 'France'), +('137.195.0.0', '137.195.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('137.196.0.0', '137.203.255.255', 2147483647, 2147483647, 'US', 'United States'), +('137.204.0.0', '137.204.255.255', 2147483647, 2147483647, 'IT', 'Italy'), +('137.205.0.0', '137.205.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('137.206.0.0', '137.206.255.255', 2147483647, 2147483647, 'US', 'United States'), +('137.207.0.0', '137.207.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('137.208.0.0', '137.208.255.255', 2147483647, 2147483647, 'AT', 'Austria'), +('137.209.0.0', '137.212.255.255', 2147483647, 2147483647, 'US', 'United States'), +('137.213.0.0', '137.213.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('137.214.0.0', '137.215.255.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('137.216.0.0', '137.216.255.255', 2147483647, 2147483647, 'US', 'United States'), +('137.217.0.0', '137.217.255.255', 2147483647, 2147483647, 'NO', 'Norway'), +('137.218.0.0', '137.218.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('137.219.0.0', '137.219.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('137.220.0.0', '137.220.255.255', 2147483647, 2147483647, 'US', 'United States'), +('137.221.0.0', '137.222.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('137.223.0.0', '137.223.255.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('137.224.0.0', '137.224.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('137.225.0.0', '137.225.255.255', 2147483647, 2147483647, 'US', 'United States'), +('137.226.0.0', '137.226.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('137.227.0.0', '137.247.255.255', 2147483647, 2147483647, 'US', 'United States'), +('137.248.0.0', '137.248.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('137.249.0.0', '137.249.255.255', 2147483647, 2147483647, 'US', 'United States'), +('137.250.0.0', '137.251.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('137.252.0.0', '137.252.255.255', 2147483647, 2147483647, 'US', 'United States'), +('137.253.0.0', '137.253.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('137.254.0.0', '137.254.255.255', 2147483647, 2147483647, 'US', 'United States'), +('138.1.0.0', '138.2.255.255', 2147483647, 2147483647, 'US', 'United States'), +('138.3.0.0', '138.3.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('138.4.0.0', '138.4.255.255', 2147483647, 2147483647, 'ES', 'Spain'), +('138.5.0.0', '138.5.255.255', 2147483647, 2147483647, 'US', 'United States'), +('138.6.0.0', '138.6.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('138.7.0.0', '138.7.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('138.8.0.0', '138.9.255.255', 2147483647, 2147483647, 'US', 'United States'), +('138.10.0.0', '138.11.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('138.12.0.0', '138.13.255.255', 2147483647, 2147483647, 'US', 'United States'), +('138.14.0.0', '138.14.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('138.15.0.0', '138.18.255.255', 2147483647, 2147483647, 'US', 'United States'), +('138.19.0.0', '138.19.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('138.20.0.0', '138.20.255.255', 2147483647, 2147483647, 'US', 'United States'), +('138.21.0.0', '138.21.255.255', 2147483647, 2147483647, 'FR', 'France'), +('138.22.0.0', '138.22.255.255', 2147483647, 2147483647, 'AT', 'Austria'), +('138.23.0.0', '138.23.255.255', 2147483647, 2147483647, 'US', 'United States'), +('138.24.0.0', '138.25.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('138.26.0.0', '138.29.255.255', 2147483647, 2147483647, 'US', 'United States'), +('138.30.0.0', '138.30.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('138.31.0.0', '138.33.255.255', 2147483647, 2147483647, 'US', 'United States'), +('138.34.0.0', '138.34.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('138.35.0.0', '138.35.255.255', 2147483647, 2147483647, 'US', 'United States'), +('138.37.0.0', '138.38.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('138.39.0.0', '138.39.255.255', 2147483647, 2147483647, 'US', 'United States'), +('138.40.0.0', '138.40.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('138.41.0.0', '138.41.255.255', 2147483647, 2147483647, 'IT', 'Italy'), +('138.42.0.0', '138.43.255.255', 2147483647, 2147483647, 'US', 'United States'), +('138.44.0.0', '138.44.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('138.45.0.0', '138.47.255.255', 2147483647, 2147483647, 'US', 'United States'), +('138.48.0.0', '138.48.255.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('138.49.0.0', '138.50.255.255', 2147483647, 2147483647, 'US', 'United States'), +('138.51.0.0', '138.51.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('138.52.0.0', '138.60.255.255', 2147483647, 2147483647, 'US', 'United States'), +('138.61.0.0', '138.61.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('138.62.0.0', '138.62.255.255', 2147483647, 2147483647, 'NO', 'Norway'), +('138.63.0.0', '138.63.255.255', 2147483647, 2147483647, 'FR', 'France'), +('138.64.0.0', '138.65.255.255', 2147483647, 2147483647, 'US', 'United States'), +('138.66.0.0', '138.66.255.255', 2147483647, 2147483647, 'IT', 'Italy'), +('138.67.0.0', '138.69.255.255', 2147483647, 2147483647, 'US', 'United States'), +('138.70.0.0', '138.70.255.255', 2147483647, 2147483647, 'IT', 'Italy'), +('138.71.0.0', '138.71.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('138.72.0.0', '138.72.255.255', 2147483647, 2147483647, 'US', 'United States'), +('138.73.0.0', '138.73.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('138.74.0.0', '138.74.255.255', 2147483647, 2147483647, 'US', 'United States'), +('138.75.0.0', '138.75.255.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('138.76.0.0', '138.76.255.255', 2147483647, 2147483647, 'US', 'United States'), +('138.77.0.0', '138.77.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('138.78.0.0', '138.78.255.255', 2147483647, 2147483647, 'US', 'United States'), +('138.79.0.0', '138.80.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('138.81.0.0', '138.81.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('138.82.0.0', '138.82.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('138.83.0.0', '138.95.255.255', 2147483647, 2147483647, 'US', 'United States'), +('138.96.0.0', '138.96.255.255', 2147483647, 2147483647, 'FR', 'France'), +('138.98.0.0', '138.98.255.255', 2147483647, 2147483647, 'US', 'United States'), +('138.100.0.0', '138.100.255.255', 2147483647, 2147483647, 'ES', 'Spain'), +('138.101.0.0', '138.101.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('138.102.0.0', '138.102.255.255', 2147483647, 2147483647, 'FR', 'France'), +('138.103.0.0', '138.103.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('138.104.0.0', '138.104.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('138.105.0.0', '138.105.255.255', 2147483647, 2147483647, 'US', 'United States'), +('138.106.0.0', '138.106.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('138.107.0.0', '138.107.255.255', 2147483647, 2147483647, 'JP', 'Japan'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('138.108.0.0', '138.116.255.255', 2147483647, 2147483647, 'US', 'United States'), +('138.119.0.0', '138.120.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('138.123.0.0', '138.123.255.255', 2147483647, 2147483647, 'US', 'United States'), +('138.124.0.0', '138.124.255.255', 2147483647, 2147483647, 'NO', 'Norway'), +('138.125.0.0', '138.129.255.255', 2147483647, 2147483647, 'US', 'United States'), +('138.130.0.0', '138.130.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('138.131.0.0', '138.131.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('138.132.0.0', '138.132.255.255', 2147483647, 2147483647, 'IT', 'Italy'), +('138.133.0.0', '138.133.255.255', 2147483647, 2147483647, 'US', 'United States'), +('138.134.0.0', '138.134.255.255', 2147483647, 2147483647, 'IL', 'Israel'), +('138.135.0.0', '138.184.255.255', 2147483647, 2147483647, 'US', 'United States'), +('138.187.0.0', '138.191.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('138.192.0.0', '138.193.255.255', 2147483647, 2147483647, 'US', 'United States'), +('138.194.0.0', '138.194.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('138.195.0.0', '138.195.255.255', 2147483647, 2147483647, 'FR', 'France'), +('138.196.0.0', '138.197.255.255', 2147483647, 2147483647, 'US', 'United States'), +('138.198.0.0', '138.198.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('138.199.0.0', '138.199.63.255', 2147483647, 2147483647, 'EU', 'Europe'), +('138.199.64.0', '138.199.79.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('138.199.80.0', '138.199.175.255', 2147483647, 2147483647, 'EU', 'Europe'), +('138.199.176.0', '138.199.176.255', 2147483647, 2147483647, 'DE', 'Germany'), +('138.199.177.0', '138.199.254.255', 2147483647, 2147483647, 'EU', 'Europe'), +('138.199.255.0', '138.201.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('138.202.0.0', '138.202.255.255', 2147483647, 2147483647, 'US', 'United States'), +('138.203.0.0', '138.203.255.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('138.205.0.0', '138.205.255.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('138.206.0.0', '138.206.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('138.207.0.0', '138.210.255.255', 2147483647, 2147483647, 'US', 'United States'), +('138.211.0.0', '138.211.255.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('138.212.0.0', '138.213.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('138.214.0.0', '138.214.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('138.215.0.0', '138.215.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('138.216.0.0', '138.216.255.255', 2147483647, 2147483647, 'FI', 'Finland'), +('138.217.0.0', '138.217.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('138.218.0.0', '138.218.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('138.220.0.0', '138.220.255.255', 2147483647, 2147483647, 'US', 'United States'), +('138.221.0.0', '138.221.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('138.222.0.0', '138.222.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('138.223.0.0', '138.226.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('138.227.0.0', '138.227.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('138.228.0.0', '138.228.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('138.229.0.0', '138.230.255.255', 2147483647, 2147483647, 'US', 'United States'), +('138.231.0.0', '138.231.255.255', 2147483647, 2147483647, 'FR', 'France'), +('138.232.0.0', '138.232.255.255', 2147483647, 2147483647, 'AT', 'Austria'), +('138.233.0.0', '138.233.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('138.234.0.0', '138.234.255.255', 2147483647, 2147483647, 'US', 'United States'), +('138.235.0.0', '138.235.255.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('138.236.0.0', '138.242.255.255', 2147483647, 2147483647, 'US', 'United States'), +('138.243.0.0', '138.243.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('138.244.0.0', '138.246.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('138.247.0.0', '138.247.255.255', 2147483647, 2147483647, 'US', 'United States'), +('138.248.0.0', '138.248.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('138.249.0.0', '138.249.255.255', 2147483647, 2147483647, 'FI', 'Finland'), +('138.250.0.0', '138.251.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('138.252.0.0', '138.252.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('138.253.0.0', '138.253.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('138.254.0.0', '138.254.255.255', 2147483647, 2147483647, 'US', 'United States'), +('139.0.0.0', '139.8.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('139.10.0.0', '139.10.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('139.11.0.0', '139.30.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('139.31.0.0', '139.43.255.255', 2147483647, 2147483647, 'US', 'United States'), +('139.44.0.0', '139.44.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('139.45.0.0', '139.47.255.255', 2147483647, 2147483647, 'US', 'United States'), +('139.48.0.0', '139.48.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('139.49.0.0', '139.49.255.255', 2147483647, 2147483647, 'US', 'United States'), +('139.50.0.0', '139.50.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('139.51.0.0', '139.52.255.255', 2147483647, 2147483647, 'US', 'United States'), +('139.53.0.0', '139.53.255.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('139.54.0.0', '139.54.255.255', 2147483647, 2147483647, 'FR', 'France'), +('139.55.0.0', '139.56.255.255', 2147483647, 2147483647, 'US', 'United States'), +('139.57.0.0', '139.57.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('139.58.0.0', '139.58.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('139.59.0.0', '139.59.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('139.60.0.0', '139.62.255.255', 2147483647, 2147483647, 'US', 'United States'), +('139.63.0.0', '139.63.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('139.64.0.0', '139.65.255.255', 2147483647, 2147483647, 'US', 'United States'), +('139.66.0.0', '139.66.255.255', 2147483647, 2147483647, 'FI', 'Finland'), +('139.67.0.0', '139.73.255.255', 2147483647, 2147483647, 'US', 'United States'), +('139.74.0.0', '139.74.255.255', 2147483647, 2147483647, 'FI', 'Finland'), +('139.75.0.0', '139.75.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('139.76.0.0', '139.78.255.255', 2147483647, 2147483647, 'US', 'United States'), +('139.79.0.0', '139.79.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('139.80.0.0', '139.80.255.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('139.81.0.0', '139.81.255.255', 2147483647, 2147483647, 'US', 'United States'), +('139.82.0.0', '139.82.255.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('139.83.0.0', '139.83.255.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('139.84.0.0', '139.85.255.255', 2147483647, 2147483647, 'US', 'United States'), +('139.86.0.0', '139.86.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('139.87.0.0', '139.88.255.255', 2147483647, 2147483647, 'US', 'United States'), +('139.89.0.0', '139.89.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('139.90.0.0', '139.90.255.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('139.91.0.0', '139.91.255.255', 2147483647, 2147483647, 'GR', 'Greece'), +('139.92.0.0', '139.92.50.255', 2147483647, 2147483647, 'EU', 'Europe'), +('139.92.51.0', '139.92.51.255', 2147483647, 2147483647, 'IL', 'Israel'), +('139.92.52.0', '139.92.87.255', 2147483647, 2147483647, 'EU', 'Europe'), +('139.92.88.0', '139.92.89.255', 2147483647, 2147483647, 'IL', 'Israel'), +('139.92.90.0', '139.92.90.255', 2147483647, 2147483647, 'EU', 'Europe'), +('139.92.91.0', '139.92.92.255', 2147483647, 2147483647, 'IL', 'Israel'), +('139.92.93.0', '139.92.97.255', 2147483647, 2147483647, 'EU', 'Europe'), +('139.92.98.0', '139.92.98.255', 2147483647, 2147483647, 'IL', 'Israel'), +('139.92.99.0', '139.92.181.255', 2147483647, 2147483647, 'EU', 'Europe'), +('139.92.182.0', '139.92.185.255', 2147483647, 2147483647, 'IL', 'Israel'), +('139.92.186.0', '139.92.205.255', 2147483647, 2147483647, 'EU', 'Europe'), +('139.92.206.0', '139.92.208.255', 2147483647, 2147483647, 'IL', 'Israel'), +('139.92.209.0', '139.92.250.255', 2147483647, 2147483647, 'EU', 'Europe'), +('139.92.251.0', '139.92.254.255', 2147483647, 2147483647, 'IL', 'Israel'), +('139.92.255.0', '139.92.255.255', 2147483647, 2147483647, 'EU', 'Europe'), +('139.93.0.0', '139.95.255.255', 2147483647, 2147483647, 'US', 'United States'), +('139.96.0.0', '139.96.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('139.97.0.0', '139.97.255.255', 2147483647, 2147483647, 'FI', 'Finland'), +('139.98.0.0', '139.98.255.255', 2147483647, 2147483647, 'NO', 'Norway'), +('139.99.0.0', '139.99.255.255', 2147483647, 2147483647, 'US', 'United States'), +('139.100.0.0', '139.100.255.255', 2147483647, 2147483647, 'FR', 'France'), +('139.102.0.0', '139.102.255.255', 2147483647, 2147483647, 'US', 'United States'), +('139.103.0.0', '139.103.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('139.104.0.0', '139.104.255.255', 2147483647, 2147483647, 'US', 'United States'), +('139.105.0.0', '139.120.255.255', 2147483647, 2147483647, 'NO', 'Norway'), +('139.121.0.0', '139.121.255.255', 2147483647, 2147483647, 'US', 'United States'), +('139.122.0.0', '139.122.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('139.123.0.0', '139.123.255.255', 2147483647, 2147483647, 'FI', 'Finland'), +('139.124.0.0', '139.124.255.255', 2147483647, 2147483647, 'FR', 'France'), +('139.125.0.0', '139.127.255.255', 2147483647, 2147483647, 'US', 'United States'), +('139.128.0.0', '139.128.255.255', 2147483647, 2147483647, 'IT', 'Italy'), +('139.130.0.0', '139.130.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('139.131.0.0', '139.131.255.255', 2147483647, 2147483647, 'US', 'United States'), +('139.132.0.0', '139.132.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('139.133.0.0', '139.133.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('139.134.0.0', '139.134.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('139.135.0.0', '139.140.255.255', 2147483647, 2147483647, 'US', 'United States'), +('139.141.0.0', '139.141.255.255', 2147483647, 2147483647, 'KW', 'Kuwait'), +('139.142.0.0', '139.142.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('139.143.0.0', '139.143.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('139.144.0.0', '139.144.255.255', 2147483647, 2147483647, 'US', 'United States'), +('139.145.0.0', '139.145.255.255', 2147483647, 2147483647, 'NO', 'Norway'), +('139.146.0.0', '139.147.255.255', 2147483647, 2147483647, 'US', 'United States'), +('139.149.0.0', '139.149.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('139.151.0.0', '139.151.255.255', 2147483647, 2147483647, 'US', 'United States'), +('139.152.0.0', '139.152.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('139.153.0.0', '139.153.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('139.154.0.0', '139.154.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('139.156.0.0', '139.156.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('139.157.0.0', '139.157.255.255', 2147483647, 2147483647, 'FI', 'Finland'), +('139.158.0.0', '139.158.255.255', 2147483647, 2147483647, 'FR', 'France'), +('139.160.0.0', '139.160.255.255', 2147483647, 2147483647, 'FR', 'France'), +('139.161.0.0', '139.161.255.255', 2147483647, 2147483647, 'US', 'United States'), +('139.162.0.0', '139.162.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('139.163.0.0', '139.163.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('139.164.0.0', '139.164.255.255', 2147483647, 2147483647, 'NO', 'Norway'), +('139.165.0.0', '139.165.255.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('139.166.0.0', '139.166.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('139.167.0.0', '139.167.255.255', 2147483647, 2147483647, 'US', 'United States'), +('139.168.0.0', '139.168.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('139.169.0.0', '139.169.255.255', 2147483647, 2147483647, 'US', 'United States'), +('139.171.0.0', '139.172.255.255', 2147483647, 2147483647, 'US', 'United States'), +('139.173.0.0', '139.173.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('139.174.0.0', '139.174.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('139.175.0.0', '139.175.255.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('139.177.0.0', '139.177.255.255', 2147483647, 2147483647, 'US', 'United States'), +('139.178.0.0', '139.178.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('139.179.0.0', '139.179.255.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('139.180.0.0', '139.181.115.255', 2147483647, 2147483647, 'US', 'United States'), +('139.181.116.0', '139.181.119.255', 2147483647, 2147483647, 'IL', 'Israel'), +('139.181.120.0', '139.181.155.255', 2147483647, 2147483647, 'US', 'United States'), +('139.181.156.0', '139.181.159.255', 2147483647, 2147483647, 'IL', 'Israel'), +('139.181.160.0', '139.182.255.255', 2147483647, 2147483647, 'US', 'United States'), +('139.184.0.0', '139.184.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('139.185.0.0', '139.185.255.255', 2147483647, 2147483647, 'US', 'United States'), +('139.187.0.0', '139.187.255.255', 2147483647, 2147483647, 'US', 'United States'), +('139.188.0.0', '139.188.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('139.191.0.0', '139.191.255.255', 2147483647, 2147483647, 'EU', 'Europe'), +('139.222.0.0', '139.222.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('139.223.0.0', '139.223.255.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('139.225.0.0', '139.225.255.255', 2147483647, 2147483647, 'US', 'United States'), +('139.229.0.0', '139.229.255.255', 2147483647, 2147483647, 'US', 'United States'), +('139.230.0.0', '139.230.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('139.231.0.0', '140.76.255.255', 2147483647, 2147483647, 'US', 'United States'), +('140.77.0.0', '140.77.255.255', 2147483647, 2147483647, 'FR', 'France'), +('140.78.0.0', '140.78.255.255', 2147483647, 2147483647, 'AT', 'Austria'), +('140.79.0.0', '140.79.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('140.80.0.0', '140.80.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('140.81.0.0', '140.81.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('140.82.0.0', '140.82.255.255', 2147483647, 2147483647, 'US', 'United States'), +('140.83.0.0', '140.83.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('140.84.0.0', '140.84.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('140.85.0.0', '140.85.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('140.86.0.0', '140.86.255.255', 2147483647, 2147483647, 'FR', 'France'), +('140.87.0.0', '140.87.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('140.88.0.0', '140.91.255.255', 2147483647, 2147483647, 'US', 'United States'), +('140.92.0.0', '140.92.255.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('140.93.0.0', '140.94.255.255', 2147483647, 2147483647, 'FR', 'France'), +('140.95.0.0', '140.95.255.255', 2147483647, 2147483647, 'US', 'United States'), +('140.96.0.0', '140.96.255.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('140.97.0.0', '140.97.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('140.98.0.0', '140.99.28.111', 2147483647, 2147483647, 'US', 'United States'), +('140.99.28.112', '140.99.28.119', 2147483647, 2147483647, 'DK', 'Denmark'), +('140.99.28.120', '140.104.255.255', 2147483647, 2147483647, 'US', 'United States'), +('140.105.0.0', '140.105.255.255', 2147483647, 2147483647, 'IT', 'Italy'), +('140.106.0.0', '140.108.255.255', 2147483647, 2147483647, 'US', 'United States'), +('140.109.0.0', '140.138.255.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('140.139.0.0', '140.147.255.255', 2147483647, 2147483647, 'US', 'United States'), +('140.148.0.0', '140.148.255.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('140.150.0.0', '140.150.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('140.151.0.0', '140.151.255.255', 2147483647, 2147483647, 'FI', 'Finland'), +('140.152.0.0', '140.158.255.255', 2147483647, 2147483647, 'US', 'United States'), +('140.159.0.0', '140.159.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('140.160.0.0', '140.160.255.255', 2147483647, 2147483647, 'US', 'United States'), +('140.161.0.0', '140.161.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('140.162.0.0', '140.163.255.255', 2147483647, 2147483647, 'US', 'United States'), +('140.164.0.0', '140.164.255.255', 2147483647, 2147483647, 'IT', 'Italy'), +('140.165.0.0', '140.165.255.255', 2147483647, 2147483647, 'US', 'United States'), +('140.166.0.0', '140.166.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('140.167.0.0', '140.167.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('140.168.0.0', '140.168.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('140.169.0.0', '140.174.8.255', 2147483647, 2147483647, 'US', 'United States'), +('140.174.9.0', '140.174.9.255', 2147483647, 2147483647, 'A1', 'Anonymous Proxy'), +('140.174.10.0', '140.180.255.255', 2147483647, 2147483647, 'US', 'United States'), +('140.181.0.0', '140.181.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('140.182.0.0', '140.183.255.255', 2147483647, 2147483647, 'US', 'United States'), +('140.184.0.0', '140.184.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('140.185.0.0', '140.190.255.255', 2147483647, 2147483647, 'US', 'United States'), +('140.191.0.0', '140.191.255.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('140.192.0.0', '140.192.255.255', 2147483647, 2147483647, 'US', 'United States'), +('140.193.0.0', '140.193.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('140.194.0.0', '140.199.255.255', 2147483647, 2147483647, 'US', 'United States'), +('140.200.0.0', '140.200.255.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('140.201.0.0', '140.202.255.255', 2147483647, 2147483647, 'US', 'United States'), +('140.203.0.0', '140.203.255.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('140.204.0.0', '140.204.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('140.208.0.0', '140.229.255.255', 2147483647, 2147483647, 'US', 'United States'), +('140.230.0.0', '140.230.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('140.231.0.0', '140.239.255.255', 2147483647, 2147483647, 'US', 'United States'), +('140.241.0.0', '140.242.5.255', 2147483647, 2147483647, 'US', 'United States'), +('140.242.6.0', '140.242.6.255', 2147483647, 2147483647, 'CN', 'China'), +('140.242.7.0', '140.242.22.255', 2147483647, 2147483647, 'US', 'United States'), +('140.242.23.0', '140.242.23.255', 2147483647, 2147483647, 'CA', 'Canada'), +('140.242.24.0', '140.242.26.255', 2147483647, 2147483647, 'US', 'United States'), +('140.242.27.0', '140.242.27.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('140.242.28.0', '140.242.255.255', 2147483647, 2147483647, 'US', 'United States'), +('140.244.0.0', '140.252.255.255', 2147483647, 2147483647, 'US', 'United States'), +('140.253.0.0', '140.253.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('140.254.0.0', '140.254.255.255', 2147483647, 2147483647, 'US', 'United States'), +('141.0.0.0', '141.28.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('141.29.0.0', '141.29.255.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('141.30.0.0', '141.80.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('141.81.0.0', '141.81.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('141.82.0.0', '141.84.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('141.85.0.0', '141.85.255.255', 2147483647, 2147483647, 'RO', 'Romania'), +('141.86.0.0', '141.86.255.255', 2147483647, 2147483647, 'US', 'United States'), +('141.87.0.0', '141.91.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('141.92.0.0', '141.92.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('141.93.0.0', '141.93.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('141.94.0.0', '141.95.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('141.96.0.0', '141.96.255.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('141.97.0.0', '141.97.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('141.98.0.0', '141.98.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('141.99.0.0', '141.100.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('141.102.0.0', '141.102.255.255', 2147483647, 2147483647, 'US', 'United States'), +('141.103.0.0', '141.103.255.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('141.104.0.0', '141.107.255.255', 2147483647, 2147483647, 'US', 'United States'), +('141.108.0.0', '141.108.255.255', 2147483647, 2147483647, 'IT', 'Italy'), +('141.109.0.0', '141.109.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('141.110.0.0', '141.112.255.255', 2147483647, 2147483647, 'US', 'United States'), +('141.113.0.0', '141.113.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('141.114.0.0', '141.114.255.255', 2147483647, 2147483647, 'US', 'United States'), +('141.115.0.0', '141.115.255.255', 2147483647, 2147483647, 'FR', 'France'), +('141.116.0.0', '141.116.255.255', 2147483647, 2147483647, 'US', 'United States'), +('141.117.0.0', '141.119.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('141.120.0.0', '141.120.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('141.121.0.0', '141.121.255.255', 2147483647, 2147483647, 'US', 'United States'), +('141.122.0.0', '141.122.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('141.123.0.0', '141.126.255.255', 2147483647, 2147483647, 'US', 'United States'), +('141.127.0.0', '141.127.255.255', 2147483647, 2147483647, 'FI', 'Finland'), +('141.128.0.0', '141.129.255.255', 2147483647, 2147483647, 'US', 'United States'), +('141.130.0.0', '141.130.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('141.131.0.0', '141.131.255.255', 2147483647, 2147483647, 'US', 'United States'), +('141.132.0.0', '141.132.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('141.133.0.0', '141.133.255.255', 2147483647, 2147483647, 'US', 'United States'), +('141.137.0.0', '141.137.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('141.139.0.0', '141.142.255.255', 2147483647, 2147483647, 'US', 'United States'), +('141.143.0.0', '141.143.255.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('141.144.0.0', '141.144.255.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('141.145.0.0', '141.145.255.255', 2147483647, 2147483647, 'NO', 'Norway'), +('141.146.0.0', '141.146.255.255', 2147483647, 2147483647, 'FI', 'Finland'), +('141.147.0.0', '141.147.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('141.148.0.0', '141.148.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('141.149.0.0', '141.162.255.255', 2147483647, 2147483647, 'US', 'United States'), +('141.163.0.0', '141.163.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('141.164.0.0', '141.167.255.255', 2147483647, 2147483647, 'US', 'United States'), +('141.168.0.0', '141.168.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('141.169.0.0', '141.169.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('141.171.0.0', '141.171.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('141.172.0.0', '141.172.255.255', 2147483647, 2147483647, 'FI', 'Finland'), +('141.173.0.0', '141.174.255.255', 2147483647, 2147483647, 'US', 'United States'), +('141.175.0.0', '141.175.255.255', 2147483647, 2147483647, 'FR', 'France'), +('141.176.0.0', '141.176.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('141.177.0.0', '141.177.255.255', 2147483647, 2147483647, 'US', 'United States'), +('141.178.0.0', '141.178.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('141.179.0.0', '141.180.255.255', 2147483647, 2147483647, 'US', 'United States'), +('141.181.0.0', '141.181.255.255', 2147483647, 2147483647, 'FR', 'France'), +('141.182.0.0', '141.186.255.255', 2147483647, 2147483647, 'US', 'United States'), +('141.187.0.0', '141.187.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('141.188.0.0', '141.191.255.255', 2147483647, 2147483647, 'US', 'United States'), +('141.192.0.0', '141.192.255.255', 2147483647, 2147483647, 'FI', 'Finland'), +('141.193.0.0', '141.193.255.255', 2147483647, 2147483647, 'US', 'United States'), +('141.194.0.0', '141.194.255.255', 2147483647, 2147483647, 'FR', 'France'), +('141.195.0.0', '141.199.255.255', 2147483647, 2147483647, 'US', 'United States'), +('141.200.0.0', '141.200.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('141.201.0.0', '141.201.255.255', 2147483647, 2147483647, 'AT', 'Austria'), +('141.202.0.0', '141.202.255.255', 2147483647, 2147483647, 'US', 'United States'), +('141.203.0.0', '141.203.255.255', 2147483647, 2147483647, 'AT', 'Austria'), +('141.204.0.0', '141.207.255.255', 2147483647, 2147483647, 'US', 'United States'), +('141.208.0.0', '141.208.255.255', 2147483647, 2147483647, 'FI', 'Finland'), +('141.209.0.0', '141.222.255.255', 2147483647, 2147483647, 'US', 'United States'), +('141.223.0.0', '141.223.255.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('141.224.0.0', '141.225.255.255', 2147483647, 2147483647, 'US', 'United States'), +('141.226.0.0', '141.226.255.255', 2147483647, 2147483647, 'IL', 'Israel'), +('141.227.0.0', '141.227.255.255', 2147483647, 2147483647, 'FR', 'France'), +('141.228.0.0', '141.228.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('141.229.0.0', '141.229.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('141.230.0.0', '141.230.255.255', 2147483647, 2147483647, 'US', 'United States'), +('141.231.0.0', '141.231.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('141.232.0.0', '141.240.255.255', 2147483647, 2147483647, 'US', 'United States'), +('141.241.0.0', '141.241.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('141.242.0.0', '141.242.255.255', 2147483647, 2147483647, 'US', 'United States'), +('141.243.0.0', '141.243.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('141.244.0.0', '141.244.255.255', 2147483647, 2147483647, 'AT', 'Austria'), +('141.245.0.0', '141.245.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('141.246.0.0', '141.248.255.255', 2147483647, 2147483647, 'US', 'United States'), +('141.249.0.0', '141.249.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('141.250.0.0', '141.250.255.255', 2147483647, 2147483647, 'IT', 'Italy'), +('141.251.0.0', '141.251.255.255', 2147483647, 2147483647, 'US', 'United States'), +('141.252.0.0', '141.252.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('141.253.0.0', '141.253.255.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('141.254.0.0', '141.254.255.255', 2147483647, 2147483647, 'US', 'United States'), +('142.0.0.0', '142.46.199.47', 2147483647, 2147483647, 'CA', 'Canada'), +('142.46.199.48', '142.46.199.63', 2147483647, 2147483647, 'US', 'United States'), +('142.46.199.64', '142.46.200.127', 2147483647, 2147483647, 'CA', 'Canada'), +('142.46.200.128', '142.46.200.159', 2147483647, 2147483647, 'US', 'United States'), +('142.46.200.160', '142.56.127.255', 2147483647, 2147483647, 'CA', 'Canada'), +('142.56.128.0', '142.56.191.255', 2147483647, 2147483647, 'US', 'United States'), +('142.56.192.0', '142.64.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('142.65.0.0', '142.65.255.255', 2147483647, 2147483647, 'US', 'United States'), +('142.66.0.0', '142.76.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('142.77.0.0', '142.77.255.255', 2147483647, 2147483647, 'US', 'United States'), +('142.78.0.0', '142.78.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('142.79.0.0', '142.79.255.255', 2147483647, 2147483647, 'US', 'United States'), +('142.80.0.0', '142.191.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('142.192.0.0', '142.192.255.255', 2147483647, 2147483647, 'US', 'United States'), +('142.193.0.0', '142.195.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('142.198.0.0', '142.255.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('143.0.0.0', '143.40.255.255', 2147483647, 2147483647, 'US', 'United States'), +('143.41.0.0', '143.41.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('143.42.0.0', '143.46.255.255', 2147483647, 2147483647, 'US', 'United States'), +('143.47.0.0', '143.47.255.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('143.48.0.0', '143.49.255.255', 2147483647, 2147483647, 'US', 'United States'), +('143.50.0.0', '143.50.255.255', 2147483647, 2147483647, 'AT', 'Austria'), +('143.51.0.0', '143.51.255.255', 2147483647, 2147483647, 'FI', 'Finland'), +('143.52.0.0', '143.53.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('143.54.0.0', '143.54.255.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('143.55.0.0', '143.64.255.255', 2147483647, 2147483647, 'US', 'United States'), +('143.65.0.0', '143.65.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('143.66.0.0', '143.88.255.255', 2147483647, 2147483647, 'US', 'United States'), +('143.89.0.0', '143.89.255.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('143.90.0.0', '143.90.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('143.91.0.0', '143.91.255.255', 2147483647, 2147483647, 'US', 'United States'), +('143.92.0.0', '143.92.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('143.93.0.0', '143.93.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('143.94.0.0', '143.94.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('143.95.0.0', '143.95.255.255', 2147483647, 2147483647, 'US', 'United States'), +('143.96.0.0', '143.96.255.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('143.97.0.0', '143.97.255.255', 2147483647, 2147483647, 'NO', 'Norway'), +('143.98.0.0', '143.98.255.255', 2147483647, 2147483647, 'US', 'United States'), +('143.99.0.0', '143.99.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('143.100.0.0', '143.105.255.255', 2147483647, 2147483647, 'US', 'United States'), +('143.106.0.0', '143.108.255.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('143.109.0.0', '143.116.255.255', 2147483647, 2147483647, 'US', 'United States'), +('143.117.0.0', '143.117.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('143.118.0.0', '143.118.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('143.119.0.0', '143.119.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('143.120.0.0', '143.120.255.255', 2147483647, 2147483647, 'US', 'United States'), +('143.121.0.0', '143.121.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('143.122.0.0', '143.124.255.255', 2147483647, 2147483647, 'US', 'United States'), +('143.125.0.0', '143.125.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('143.126.0.0', '143.126.255.255', 2147483647, 2147483647, 'FR', 'France'), +('143.127.0.0', '143.127.255.255', 2147483647, 2147483647, 'US', 'United States'), +('143.128.0.0', '143.128.255.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('143.129.0.0', '143.129.255.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('143.130.0.0', '143.130.255.255', 2147483647, 2147483647, 'AT', 'Austria'), +('143.131.0.0', '143.135.255.255', 2147483647, 2147483647, 'US', 'United States'), +('143.136.0.0', '143.136.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('143.138.0.0', '143.159.255.255', 2147483647, 2147483647, 'US', 'United States'), +('143.160.0.0', '143.160.255.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('143.161.0.0', '143.161.255.255', 2147483647, 2147483647, 'AT', 'Austria'), +('143.162.0.0', '143.162.255.255', 2147483647, 2147483647, 'US', 'United States'), +('143.163.0.0', '143.164.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('143.165.0.0', '143.166.255.255', 2147483647, 2147483647, 'US', 'United States'), +('143.167.0.0', '143.167.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('143.168.0.0', '143.168.255.255', 2147483647, 2147483647, 'US', 'United States'), +('143.169.0.0', '143.169.255.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('143.170.0.0', '143.170.255.255', 2147483647, 2147483647, 'US', 'United States'), +('143.171.0.0', '143.171.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('143.172.0.0', '143.173.255.255', 2147483647, 2147483647, 'US', 'United States'), +('143.174.0.0', '143.174.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('143.175.0.0', '143.175.255.255', 2147483647, 2147483647, 'US', 'United States'), +('143.176.0.0', '143.179.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('143.180.0.0', '143.180.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('143.181.0.0', '143.187.255.255', 2147483647, 2147483647, 'US', 'United States'), +('143.188.0.0', '143.189.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('143.190.0.0', '143.195.255.255', 2147483647, 2147483647, 'US', 'United States'), +('143.196.0.0', '143.196.255.255', 2147483647, 2147483647, 'FR', 'France'), +('143.197.0.0', '143.200.255.255', 2147483647, 2147483647, 'US', 'United States'), +('143.201.0.0', '143.201.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('143.203.0.0', '143.204.255.255', 2147483647, 2147483647, 'US', 'United States'), +('143.205.0.0', '143.205.255.255', 2147483647, 2147483647, 'AT', 'Austria'), +('143.206.0.0', '143.207.255.255', 2147483647, 2147483647, 'US', 'United States'), +('143.209.0.0', '143.209.255.255', 2147483647, 2147483647, 'US', 'United States'), +('143.210.0.0', '143.210.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('143.211.0.0', '143.215.255.255', 2147483647, 2147483647, 'US', 'United States'), +('143.216.0.0', '143.216.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('143.217.0.0', '143.217.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('143.218.0.0', '143.218.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('143.219.0.0', '143.220.255.255', 2147483647, 2147483647, 'US', 'United States'), +('143.221.0.0', '143.221.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('143.222.0.0', '143.223.255.255', 2147483647, 2147483647, 'US', 'United States'), +('143.224.0.0', '143.224.255.255', 2147483647, 2147483647, 'AT', 'Austria'), +('143.225.0.0', '143.225.255.255', 2147483647, 2147483647, 'IT', 'Italy'), +('143.226.0.0', '143.232.255.255', 2147483647, 2147483647, 'US', 'United States'), +('143.233.0.0', '143.233.255.255', 2147483647, 2147483647, 'GR', 'Greece'), +('143.234.0.0', '143.234.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('143.235.0.0', '143.236.255.255', 2147483647, 2147483647, 'US', 'United States'), +('143.237.0.0', '143.237.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('143.238.0.0', '143.238.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('143.239.0.0', '143.239.255.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('143.240.0.0', '143.244.255.255', 2147483647, 2147483647, 'US', 'United States'), +('143.245.0.0', '143.245.255.255', 2147483647, 2147483647, 'AT', 'Austria'), +('143.246.0.0', '143.247.255.255', 2147483647, 2147483647, 'US', 'United States'), +('143.248.0.0', '143.248.255.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('143.249.0.0', '143.251.255.255', 2147483647, 2147483647, 'US', 'United States'), +('143.252.0.0', '143.252.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('143.253.0.0', '143.253.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('143.254.0.0', '143.254.255.255', 2147483647, 2147483647, 'US', 'United States'), +('144.1.0.0', '144.1.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('144.2.0.0', '144.2.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('144.3.0.0', '144.3.255.255', 2147483647, 2147483647, 'US', 'United States'), +('144.4.0.0', '144.4.255.255', 2147483647, 2147483647, 'FI', 'Finland'), +('144.5.0.0', '144.5.255.255', 2147483647, 2147483647, 'US', 'United States'), +('144.6.0.0', '144.6.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('144.8.0.0', '144.15.255.255', 2147483647, 2147483647, 'US', 'United States'), +('144.16.0.0', '144.16.255.255', 2147483647, 2147483647, 'IN', 'India'), +('144.17.0.0', '144.19.255.255', 2147483647, 2147483647, 'US', 'United States'), +('144.20.0.0', '144.20.255.255', 2147483647, 2147483647, 'ES', 'Spain'), +('144.21.0.0', '144.21.255.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('144.22.0.0', '144.22.255.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('144.23.0.0', '144.23.255.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('144.24.0.0', '144.24.255.255', 2147483647, 2147483647, 'GR', 'Greece'), +('144.25.0.0', '144.26.255.255', 2147483647, 2147483647, 'US', 'United States'), +('144.27.0.0', '144.27.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('144.28.0.0', '144.31.255.255', 2147483647, 2147483647, 'US', 'United States'), +('144.32.0.0', '144.32.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('144.33.0.0', '144.40.255.255', 2147483647, 2147483647, 'US', 'United States'), +('144.41.0.0', '144.41.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('144.42.0.0', '144.42.255.255', 2147483647, 2147483647, 'US', 'United States'), +('144.43.0.0', '144.43.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('144.44.0.0', '144.44.255.255', 2147483647, 2147483647, 'EU', 'Europe'), +('144.45.0.0', '144.51.255.255', 2147483647, 2147483647, 'US', 'United States'), +('144.53.0.0', '144.53.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('144.54.0.0', '144.54.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('144.55.0.0', '144.55.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('144.56.0.0', '144.56.255.255', 2147483647, 2147483647, 'FR', 'France'), +('144.57.0.0', '144.57.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('144.58.0.0', '144.62.255.255', 2147483647, 2147483647, 'US', 'United States'), +('144.63.0.0', '144.63.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('144.64.0.0', '144.64.255.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('144.65.0.0', '144.65.255.255', 2147483647, 2147483647, 'AT', 'Austria'), +('144.66.0.0', '144.66.255.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('144.67.0.0', '144.75.255.255', 2147483647, 2147483647, 'US', 'United States'), +('144.76.0.0', '144.76.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('144.77.0.0', '144.78.255.255', 2147483647, 2147483647, 'US', 'United States'), +('144.79.0.0', '144.79.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('144.80.0.0', '144.81.255.255', 2147483647, 2147483647, 'US', 'United States'), +('144.82.0.0', '144.82.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('144.83.0.0', '144.83.255.255', 2147483647, 2147483647, 'US', 'United States'), +('144.84.0.0', '144.84.255.255', 2147483647, 2147483647, 'NO', 'Norway'), +('144.85.0.0', '144.85.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('144.86.0.0', '144.86.255.255', 2147483647, 2147483647, 'US', 'United States'), +('144.87.0.0', '144.87.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('144.88.0.0', '144.94.255.255', 2147483647, 2147483647, 'US', 'United States'), +('144.95.0.0', '144.95.35.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('144.95.36.0', '144.95.39.255', 2147483647, 2147483647, 'US', 'United States'), +('144.95.40.0', '144.95.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('144.96.0.0', '144.96.255.255', 2147483647, 2147483647, 'US', 'United States'), +('144.97.0.0', '144.97.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('144.98.0.0', '144.98.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('144.99.0.0', '144.109.255.255', 2147483647, 2147483647, 'US', 'United States'), +('144.110.0.0', '144.110.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('144.111.0.0', '144.118.255.255', 2147483647, 2147483647, 'US', 'United States'), +('144.119.0.0', '144.119.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('144.120.0.0', '144.120.255.255', 2147483647, 2147483647, 'FJ', 'Fiji'), +('144.121.0.0', '144.121.255.255', 2147483647, 2147483647, 'US', 'United States'), +('144.122.0.0', '144.122.255.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('144.124.0.0', '144.124.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('144.125.0.0', '144.126.255.255', 2147483647, 2147483647, 'US', 'United States'), +('144.127.0.0', '144.127.255.255', 2147483647, 2147483647, 'NO', 'Norway'), +('144.128.0.0', '144.129.255.255', 2147483647, 2147483647, 'US', 'United States'), +('144.130.0.0', '144.140.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('144.141.0.0', '144.144.255.255', 2147483647, 2147483647, 'US', 'United States'), +('144.145.0.0', '144.145.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('144.146.0.0', '144.163.255.255', 2147483647, 2147483647, 'US', 'United States'), +('144.164.0.0', '144.164.255.255', 2147483647, 2147483647, 'NO', 'Norway'), +('144.165.0.0', '144.165.255.255', 2147483647, 2147483647, 'FR', 'France'), +('144.166.0.0', '144.167.255.255', 2147483647, 2147483647, 'US', 'United States'), +('144.168.0.0', '144.168.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('144.169.0.0', '144.172.255.255', 2147483647, 2147483647, 'US', 'United States'), +('144.173.0.0', '144.173.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('144.174.0.0', '144.175.255.255', 2147483647, 2147483647, 'US', 'United States'), +('144.176.0.0', '144.177.255.255', 2147483647, 2147483647, 'NO', 'Norway'), +('144.178.0.0', '144.178.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('144.179.0.0', '144.181.255.255', 2147483647, 2147483647, 'NO', 'Norway'), +('144.182.0.0', '144.192.255.255', 2147483647, 2147483647, 'US', 'United States'), +('144.193.0.0', '144.193.255.255', 2147483647, 2147483647, 'NO', 'Norway'), +('144.194.0.0', '144.194.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('144.195.0.0', '144.198.255.255', 2147483647, 2147483647, 'US', 'United States'), +('144.199.0.0', '144.199.255.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('144.200.0.0', '144.200.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('144.201.0.0', '144.203.255.255', 2147483647, 2147483647, 'US', 'United States'), +('144.204.0.0', '144.204.255.255', 2147483647, 2147483647, 'FR', 'France'), +('144.205.0.0', '144.205.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('144.206.0.0', '144.206.255.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('144.207.0.0', '144.208.255.255', 2147483647, 2147483647, 'US', 'United States'), +('144.209.0.0', '144.209.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('144.210.0.0', '144.212.255.255', 2147483647, 2147483647, 'US', 'United States'), +('144.213.0.0', '144.213.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('144.214.0.0', '144.214.255.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('144.215.0.0', '144.217.255.255', 2147483647, 2147483647, 'US', 'United States'), +('144.218.0.0', '144.218.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('144.219.0.0', '144.247.255.255', 2147483647, 2147483647, 'US', 'United States'), +('144.248.0.0', '144.248.255.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('144.249.0.0', '144.255.255.255', 2147483647, 2147483647, 'US', 'United States'), +('145.0.0.0', '145.16.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('145.17.0.0', '145.17.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('145.18.0.0', '145.54.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('145.55.0.0', '145.55.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('145.56.0.0', '145.61.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('145.62.0.0', '145.62.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('145.63.0.0', '145.223.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('145.224.0.0', '145.224.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('145.225.0.0', '145.225.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('145.226.0.0', '145.226.255.255', 2147483647, 2147483647, 'FR', 'France'), +('145.227.0.0', '145.227.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('145.228.0.0', '145.228.161.75', 2147483647, 2147483647, 'DE', 'Germany'), +('145.228.161.76', '145.228.161.95', 2147483647, 2147483647, 'IT', 'Italy'), +('145.228.161.96', '145.228.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('145.229.0.0', '145.229.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('145.230.0.0', '145.230.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('145.231.0.0', '145.231.255.255', 2147483647, 2147483647, 'FR', 'France'), +('145.232.0.0', '145.232.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('145.233.0.0', '145.233.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('145.234.0.0', '145.234.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('145.235.0.0', '145.235.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('145.236.0.0', '145.236.255.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('145.237.0.0', '145.237.255.255', 2147483647, 2147483647, 'PL', 'Poland'), +('145.238.0.0', '145.238.255.255', 2147483647, 2147483647, 'FR', 'France'), +('145.239.0.0', '145.239.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('145.240.0.0', '145.240.255.255', 2147483647, 2147483647, 'FR', 'France'), +('145.241.0.0', '145.241.255.255', 2147483647, 2147483647, 'AT', 'Austria'), +('145.242.0.0', '145.242.255.255', 2147483647, 2147483647, 'FR', 'France'), +('145.243.0.0', '145.243.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('145.244.0.0', '145.244.255.255', 2147483647, 2147483647, 'AT', 'Austria'), +('145.245.0.0', '145.245.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('145.246.0.0', '145.246.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('145.247.0.0', '145.247.150.255', 2147483647, 2147483647, 'FI', 'Finland'), +('145.247.151.0', '145.247.170.255', 2147483647, 2147483647, 'NO', 'Norway'), +('145.247.171.0', '145.247.255.255', 2147483647, 2147483647, 'FI', 'Finland'), +('145.248.0.0', '145.248.255.255', 2147483647, 2147483647, 'FR', 'France'), +('145.249.0.0', '145.249.255.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('145.250.0.0', '145.250.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('145.251.0.0', '145.251.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('145.252.0.0', '145.252.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('145.253.0.0', '145.254.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('146.1.0.0', '146.1.255.255', 2147483647, 2147483647, 'US', 'United States'), +('146.2.0.0', '146.2.255.255', 2147483647, 2147483647, 'NO', 'Norway'), +('146.3.0.0', '146.3.255.255', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('146.4.0.0', '146.4.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('146.5.0.0', '146.10.255.255', 2147483647, 2147483647, 'US', 'United States'), +('146.11.0.0', '146.11.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('146.12.0.0', '146.18.255.255', 2147483647, 2147483647, 'US', 'United States'), +('146.19.0.0', '146.19.255.255', 2147483647, 2147483647, 'FR', 'France'), +('146.20.0.0', '146.20.255.255', 2147483647, 2147483647, 'US', 'United States'), +('146.21.0.0', '146.21.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('146.22.0.0', '146.47.255.255', 2147483647, 2147483647, 'US', 'United States'), +('146.48.0.0', '146.48.255.255', 2147483647, 2147483647, 'IT', 'Italy'), +('146.49.0.0', '146.49.255.255', 2147483647, 2147483647, 'US', 'United States'), +('146.50.0.0', '146.50.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('146.51.0.0', '146.51.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('146.52.0.0', '146.55.255.255', 2147483647, 2147483647, 'US', 'United States'), +('146.56.0.0', '146.56.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('146.57.0.0', '146.58.255.255', 2147483647, 2147483647, 'US', 'United States'), +('146.59.0.0', '146.59.255.255', 2147483647, 2147483647, 'NO', 'Norway'), +('146.61.0.0', '146.61.255.255', 2147483647, 2147483647, 'US', 'United States'), +('146.62.0.0', '146.62.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('146.63.0.0', '146.63.255.255', 2147483647, 2147483647, 'US', 'United States'), +('146.64.0.0', '146.64.255.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('146.65.0.0', '146.65.255.255', 2147483647, 2147483647, 'US', 'United States'), +('146.67.0.0', '146.67.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('146.68.0.0', '146.69.255.255', 2147483647, 2147483647, 'US', 'United States'), +('146.70.0.0', '146.70.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('146.71.0.0', '146.71.255.255', 2147483647, 2147483647, 'US', 'United States'), +('146.72.0.0', '146.72.255.255', 2147483647, 2147483647, 'NO', 'Norway'), +('146.73.0.0', '146.74.255.255', 2147483647, 2147483647, 'US', 'United States'), +('146.75.0.0', '146.75.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('146.76.0.0', '146.76.255.255', 2147483647, 2147483647, 'US', 'United States'), +('146.77.0.0', '146.77.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('146.78.0.0', '146.79.255.255', 2147483647, 2147483647, 'US', 'United States'), +('146.80.0.0', '146.80.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('146.81.0.0', '146.81.255.255', 2147483647, 2147483647, 'FI', 'Finland'), +('146.82.0.0', '146.82.15.255', 2147483647, 2147483647, 'US', 'United States'), +('146.82.16.0', '146.82.16.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('146.82.17.0', '146.82.21.255', 2147483647, 2147483647, 'US', 'United States'), +('146.82.22.0', '146.82.22.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('146.82.23.0', '146.82.155.255', 2147483647, 2147483647, 'US', 'United States'), +('146.82.156.0', '146.82.156.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('146.82.157.0', '146.82.255.255', 2147483647, 2147483647, 'US', 'United States'), +('146.83.0.0', '146.83.255.255', 2147483647, 2147483647, 'CL', 'Chile'), +('146.84.0.0', '146.86.255.255', 2147483647, 2147483647, 'US', 'United States'), +('146.87.0.0', '146.87.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('146.88.0.0', '146.96.255.255', 2147483647, 2147483647, 'US', 'United States'), +('146.97.0.0', '146.97.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('146.98.0.0', '146.99.255.255', 2147483647, 2147483647, 'US', 'United States'), +('146.100.0.0', '146.100.255.255', 2147483647, 2147483647, 'IT', 'Italy'), +('146.101.0.0', '146.101.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('146.102.0.0', '146.102.255.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('146.103.0.0', '146.103.255.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('146.104.0.0', '146.104.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('146.105.0.0', '146.105.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('146.106.0.0', '146.106.255.255', 2147483647, 2147483647, 'EU', 'Europe'), +('146.107.0.0', '146.107.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('146.108.0.0', '146.108.255.255', 2147483647, 2147483647, 'AT', 'Austria'), +('146.109.0.0', '146.109.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('146.110.0.0', '146.110.255.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('146.111.0.0', '146.111.255.255', 2147483647, 2147483647, 'US', 'United States'), +('146.112.0.0', '146.112.255.255', 2147483647, 2147483647, 'AT', 'Austria'), +('146.113.0.0', '146.115.255.255', 2147483647, 2147483647, 'US', 'United States'), +('146.116.0.0', '146.116.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('146.117.0.0', '146.117.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('146.118.0.0', '146.118.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('146.119.0.0', '146.119.255.255', 2147483647, 2147483647, 'FI', 'Finland'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('146.120.0.0', '146.123.255.255', 2147483647, 2147483647, 'US', 'United States'), +('146.124.0.0', '146.124.255.255', 2147483647, 2147483647, 'GR', 'Greece'), +('146.125.0.0', '146.130.255.255', 2147483647, 2147483647, 'US', 'United States'), +('146.131.0.0', '146.131.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('146.132.0.0', '146.132.255.255', 2147483647, 2147483647, 'US', 'United States'), +('146.133.0.0', '146.133.255.255', 2147483647, 2147483647, 'IT', 'Italy'), +('146.134.0.0', '146.134.255.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('146.135.0.0', '146.135.255.255', 2147483647, 2147483647, 'US', 'United States'), +('146.136.0.0', '146.136.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('146.137.0.0', '146.139.255.255', 2147483647, 2147483647, 'US', 'United States'), +('146.140.0.0', '146.140.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('146.141.0.0', '146.141.255.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('146.142.0.0', '146.143.255.255', 2147483647, 2147483647, 'US', 'United States'), +('146.144.0.0', '146.144.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('146.145.0.0', '146.145.75.55', 2147483647, 2147483647, 'US', 'United States'), +('146.145.75.56', '146.145.75.63', 2147483647, 2147483647, 'PA', 'Panama'), +('146.145.75.64', '146.154.255.255', 2147483647, 2147483647, 'US', 'United States'), +('146.155.0.0', '146.155.255.255', 2147483647, 2147483647, 'CL', 'Chile'), +('146.156.0.0', '146.157.255.255', 2147483647, 2147483647, 'US', 'United States'), +('146.159.0.0', '146.159.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('146.160.0.0', '146.160.255.255', 2147483647, 2147483647, 'US', 'United States'), +('146.161.0.0', '146.161.255.255', 2147483647, 2147483647, 'FI', 'Finland'), +('146.162.0.0', '146.162.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('146.163.0.0', '146.163.255.255', 2147483647, 2147483647, 'US', 'United States'), +('146.164.0.0', '146.164.255.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('146.165.0.0', '146.168.255.255', 2147483647, 2147483647, 'US', 'United States'), +('146.169.0.0', '146.169.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('146.170.0.0', '146.170.255.255', 2147483647, 2147483647, 'US', 'United States'), +('146.171.0.0', '146.171.255.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('146.172.0.0', '146.172.255.255', 2147483647, 2147483647, 'NO', 'Norway'), +('146.173.0.0', '146.173.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('146.174.0.0', '146.174.255.255', 2147483647, 2147483647, 'US', 'United States'), +('146.175.0.0', '146.175.255.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('146.176.0.0', '146.177.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('146.178.0.0', '146.178.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('146.179.0.0', '146.179.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('146.180.0.0', '146.181.255.255', 2147483647, 2147483647, 'US', 'United States'), +('146.182.0.0', '146.182.255.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('146.183.0.0', '146.187.255.255', 2147483647, 2147483647, 'US', 'United States'), +('146.188.0.0', '146.188.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('146.189.0.0', '146.190.255.255', 2147483647, 2147483647, 'US', 'United States'), +('146.191.0.0', '146.191.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('146.192.0.0', '146.192.255.255', 2147483647, 2147483647, 'NO', 'Norway'), +('146.193.0.0', '146.193.255.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('146.194.0.0', '146.194.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('146.195.0.0', '146.196.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('146.197.0.0', '146.209.255.255', 2147483647, 2147483647, 'US', 'United States'), +('146.210.0.0', '146.210.255.255', 2147483647, 2147483647, 'AT', 'Austria'), +('146.211.0.0', '146.211.255.255', 2147483647, 2147483647, 'FI', 'Finland'), +('146.213.0.0', '146.213.255.255', 2147483647, 2147483647, 'NO', 'Norway'), +('146.214.0.0', '146.215.255.255', 2147483647, 2147483647, 'US', 'United States'), +('146.216.0.0', '146.216.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('146.217.0.0', '146.218.255.255', 2147483647, 2147483647, 'US', 'United States'), +('146.219.0.0', '146.219.255.255', 2147483647, 2147483647, 'ES', 'Spain'), +('146.220.0.0', '146.220.79.255', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('146.220.80.0', '146.220.95.255', 2147483647, 2147483647, 'FR', 'France'), +('146.220.96.0', '146.220.255.255', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('146.221.0.0', '146.221.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('146.222.0.0', '146.223.255.255', 2147483647, 2147483647, 'US', 'United States'), +('146.224.0.0', '146.224.255.255', 2147483647, 2147483647, 'NO', 'Norway'), +('146.225.0.0', '146.225.255.255', 2147483647, 2147483647, 'US', 'United States'), +('146.226.0.0', '146.226.255.255', 2147483647, 2147483647, 'VI', 'Virgin Islands, U.S.'), +('146.227.0.0', '146.227.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('146.228.0.0', '146.228.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('146.229.0.0', '146.229.255.255', 2147483647, 2147483647, 'US', 'United States'), +('146.230.0.0', '146.232.255.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('146.233.0.0', '146.233.255.255', 2147483647, 2147483647, 'US', 'United States'), +('146.234.0.0', '146.234.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('146.235.0.0', '146.247.255.255', 2147483647, 2147483647, 'US', 'United States'), +('146.248.0.0', '146.248.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('146.249.0.0', '146.249.255.255', 2147483647, 2147483647, 'FR', 'France'), +('146.250.0.0', '146.250.255.255', 2147483647, 2147483647, 'US', 'United States'), +('146.252.0.0', '146.252.255.255', 2147483647, 2147483647, 'US', 'United States'), +('146.253.0.0', '146.253.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('146.254.0.0', '146.254.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('147.0.0.0', '147.5.255.255', 2147483647, 2147483647, 'US', 'United States'), +('147.6.0.0', '147.6.255.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('147.7.0.0', '147.7.255.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('147.8.0.0', '147.8.255.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('147.9.0.0', '147.9.255.255', 2147483647, 2147483647, 'US', 'United States'), +('147.10.0.0', '147.10.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('147.11.0.0', '147.11.255.255', 2147483647, 2147483647, 'US', 'United States'), +('147.12.0.0', '147.12.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('147.13.0.0', '147.14.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('147.15.0.0', '147.26.255.255', 2147483647, 2147483647, 'US', 'United States'), +('147.27.0.0', '147.27.255.255', 2147483647, 2147483647, 'GR', 'Greece'), +('147.28.0.0', '147.28.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('147.29.0.0', '147.29.91.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('147.29.92.0', '147.29.93.255', 2147483647, 2147483647, 'NO', 'Norway'), +('147.29.94.0', '147.29.149.223', 2147483647, 2147483647, 'DK', 'Denmark'), +('147.29.149.224', '147.29.149.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('147.29.150.0', '147.29.255.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('147.30.0.0', '147.30.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('147.31.0.0', '147.31.255.255', 2147483647, 2147483647, 'US', 'United States'), +('147.32.0.0', '147.33.255.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('147.34.0.0', '147.40.255.255', 2147483647, 2147483647, 'US', 'United States'), +('147.41.0.0', '147.41.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('147.42.0.0', '147.42.255.255', 2147483647, 2147483647, 'US', 'United States'), +('147.43.0.0', '147.43.255.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('147.44.0.0', '147.44.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('147.45.0.0', '147.45.255.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('147.46.0.0', '147.47.255.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('147.48.0.0', '147.51.255.255', 2147483647, 2147483647, 'US', 'United States'), +('147.52.0.0', '147.52.255.255', 2147483647, 2147483647, 'GR', 'Greece'), +('147.53.0.0', '147.53.255.255', 2147483647, 2147483647, 'US', 'United States'), +('147.54.0.0', '147.54.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('147.55.0.0', '147.59.255.255', 2147483647, 2147483647, 'US', 'United States'), +('147.60.0.0', '147.60.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('147.61.0.0', '147.64.255.255', 2147483647, 2147483647, 'US', 'United States'), +('147.65.0.0', '147.65.255.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('147.66.0.0', '147.66.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('147.67.0.0', '147.67.255.255', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('147.68.0.0', '147.68.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('147.69.0.0', '147.69.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('147.70.0.0', '147.74.255.255', 2147483647, 2147483647, 'US', 'United States'), +('147.75.0.0', '147.75.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('147.76.0.0', '147.76.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('147.77.0.0', '147.77.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('147.78.0.0', '147.78.255.255', 2147483647, 2147483647, 'EU', 'Europe'), +('147.79.0.0', '147.82.255.255', 2147483647, 2147483647, 'US', 'United States'), +('147.83.0.0', '147.84.255.255', 2147483647, 2147483647, 'ES', 'Spain'), +('147.86.0.0', '147.88.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('147.89.0.0', '147.89.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('147.90.0.0', '147.90.255.255', 2147483647, 2147483647, 'US', 'United States'), +('147.91.0.0', '147.91.255.255', 2147483647, 2147483647, 'RS', 'Serbia'), +('147.92.0.0', '147.92.255.255', 2147483647, 2147483647, 'US', 'United States'), +('147.93.0.0', '147.93.255.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('147.94.0.0', '147.94.255.255', 2147483647, 2147483647, 'FR', 'France'), +('147.95.0.0', '147.95.255.255', 2147483647, 2147483647, 'GR', 'Greece'), +('147.96.0.0', '147.96.255.255', 2147483647, 2147483647, 'ES', 'Spain'), +('147.97.0.0', '147.97.255.255', 2147483647, 2147483647, 'US', 'United States'), +('147.98.0.0', '147.100.255.255', 2147483647, 2147483647, 'FR', 'France'), +('147.101.0.0', '147.101.255.255', 2147483647, 2147483647, 'US', 'United States'), +('147.102.0.0', '147.102.255.255', 2147483647, 2147483647, 'GR', 'Greece'), +('147.103.0.0', '147.108.255.255', 2147483647, 2147483647, 'US', 'United States'), +('147.109.0.0', '147.109.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('147.110.0.0', '147.110.255.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('147.111.0.0', '147.112.255.255', 2147483647, 2147483647, 'NO', 'Norway'), +('147.113.0.0', '147.118.255.255', 2147483647, 2147483647, 'US', 'United States'), +('147.119.0.0', '147.119.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('147.120.0.0', '147.121.255.255', 2147483647, 2147483647, 'US', 'United States'), +('147.122.0.0', '147.123.255.255', 2147483647, 2147483647, 'IT', 'Italy'), +('147.124.0.0', '147.124.255.255', 2147483647, 2147483647, 'US', 'United States'), +('147.125.0.0', '147.125.255.255', 2147483647, 2147483647, 'AT', 'Austria'), +('147.126.0.0', '147.126.255.255', 2147483647, 2147483647, 'US', 'United States'), +('147.127.0.0', '147.127.255.255', 2147483647, 2147483647, 'FR', 'France'), +('147.128.0.0', '147.131.255.255', 2147483647, 2147483647, 'US', 'United States'), +('147.132.0.0', '147.132.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('147.133.0.0', '147.141.255.255', 2147483647, 2147483647, 'US', 'United States'), +('147.142.0.0', '147.142.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('147.143.0.0', '147.143.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('147.144.0.0', '147.146.255.255', 2147483647, 2147483647, 'US', 'United States'), +('147.147.0.0', '147.152.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('147.153.0.0', '147.155.255.255', 2147483647, 2147483647, 'US', 'United States'), +('147.156.0.0', '147.156.255.255', 2147483647, 2147483647, 'ES', 'Spain'), +('147.157.0.0', '147.157.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('147.158.0.0', '147.158.255.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('147.159.0.0', '147.160.255.255', 2147483647, 2147483647, 'US', 'United States'), +('147.161.0.0', '147.161.255.255', 2147483647, 2147483647, 'IL', 'Israel'), +('147.162.0.0', '147.163.255.255', 2147483647, 2147483647, 'IT', 'Italy'), +('147.164.0.0', '147.166.255.255', 2147483647, 2147483647, 'US', 'United States'), +('147.167.0.0', '147.167.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('147.168.0.0', '147.170.255.255', 2147483647, 2147483647, 'US', 'United States'), +('147.171.0.0', '147.171.255.255', 2147483647, 2147483647, 'FR', 'France'), +('147.172.0.0', '147.172.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('147.173.0.0', '147.173.255.255', 2147483647, 2147483647, 'FR', 'France'), +('147.174.0.0', '147.174.255.255', 2147483647, 2147483647, 'US', 'United States'), +('147.175.0.0', '147.175.255.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('147.176.0.0', '147.176.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('147.177.0.0', '147.179.255.255', 2147483647, 2147483647, 'US', 'United States'), +('147.180.0.0', '147.180.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('147.181.0.0', '147.181.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('147.182.0.0', '147.183.255.255', 2147483647, 2147483647, 'US', 'United States'), +('147.184.0.0', '147.184.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('147.185.0.0', '147.185.255.255', 2147483647, 2147483647, 'US', 'United States'), +('147.186.0.0', '147.186.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('147.187.0.0', '147.187.255.255', 2147483647, 2147483647, 'US', 'United States'), +('147.188.0.0', '147.189.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('147.190.0.0', '147.192.255.255', 2147483647, 2147483647, 'US', 'United States'), +('147.193.0.0', '147.193.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('147.195.0.0', '147.195.255.255', 2147483647, 2147483647, 'US', 'United States'), +('147.196.0.0', '147.196.255.255', 2147483647, 2147483647, 'FR', 'France'), +('147.197.0.0', '147.197.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('147.198.0.0', '147.199.255.255', 2147483647, 2147483647, 'US', 'United States'), +('147.200.0.0', '147.200.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('147.201.0.0', '147.201.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('147.202.0.0', '147.203.255.255', 2147483647, 2147483647, 'US', 'United States'), +('147.204.0.0', '147.204.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('147.205.0.0', '147.208.255.255', 2147483647, 2147483647, 'US', 'United States'), +('147.209.0.0', '147.209.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('147.210.0.0', '147.210.255.255', 2147483647, 2147483647, 'FR', 'France'), +('147.211.0.0', '147.212.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('147.213.0.0', '147.213.255.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('147.214.0.0', '147.214.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('147.215.0.0', '147.215.255.255', 2147483647, 2147483647, 'FR', 'France'), +('147.216.0.0', '147.219.255.255', 2147483647, 2147483647, 'US', 'United States'), +('147.220.0.0', '147.220.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('147.221.0.0', '147.227.255.255', 2147483647, 2147483647, 'US', 'United States'), +('147.228.0.0', '147.231.255.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('147.232.0.0', '147.232.255.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('147.233.0.0', '147.237.255.255', 2147483647, 2147483647, 'IL', 'Israel'), +('147.238.0.0', '147.242.255.255', 2147483647, 2147483647, 'US', 'United States'), +('147.243.0.0', '147.243.127.255', 2147483647, 2147483647, 'FI', 'Finland'), +('147.243.128.0', '147.243.159.255', 2147483647, 2147483647, 'US', 'United States'), +('147.243.160.0', '147.243.191.255', 2147483647, 2147483647, 'FI', 'Finland'), +('147.243.192.0', '147.243.223.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('147.243.224.0', '147.243.255.255', 2147483647, 2147483647, 'CN', 'China'), +('147.244.0.0', '147.249.255.255', 2147483647, 2147483647, 'US', 'United States'), +('147.250.0.0', '147.250.255.255', 2147483647, 2147483647, 'FR', 'France'), +('147.251.0.0', '147.251.255.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('147.252.0.0', '147.252.255.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('147.253.0.0', '147.254.255.255', 2147483647, 2147483647, 'US', 'United States'), +('148.1.0.0', '148.1.255.255', 2147483647, 2147483647, 'US', 'United States'), +('148.2.0.0', '148.2.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('148.3.0.0', '148.3.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('148.4.0.0', '148.5.255.255', 2147483647, 2147483647, 'US', 'United States'), +('148.6.0.0', '148.6.255.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('148.7.0.0', '148.53.255.255', 2147483647, 2147483647, 'US', 'United States'), +('148.54.0.0', '148.54.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('148.55.0.0', '148.55.255.255', 2147483647, 2147483647, 'US', 'United States'), +('148.56.0.0', '148.56.255.255', 2147483647, 2147483647, 'AT', 'Austria'), +('148.57.0.0', '148.59.255.255', 2147483647, 2147483647, 'US', 'United States'), +('148.60.0.0', '148.60.255.255', 2147483647, 2147483647, 'FR', 'France'), +('148.61.0.0', '148.78.255.255', 2147483647, 2147483647, 'US', 'United States'), +('148.79.0.0', '148.79.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('148.80.0.0', '148.80.255.255', 2147483647, 2147483647, 'US', 'United States'), +('148.81.0.0', '148.81.255.255', 2147483647, 2147483647, 'PL', 'Poland'), +('148.82.0.0', '148.83.255.255', 2147483647, 2147483647, 'NO', 'Norway'), +('148.84.0.0', '148.87.255.255', 2147483647, 2147483647, 'US', 'United States'), +('148.88.0.0', '148.88.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('148.89.0.0', '148.109.255.255', 2147483647, 2147483647, 'US', 'United States'), +('148.110.0.0', '148.110.255.255', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('148.111.0.0', '148.116.255.255', 2147483647, 2147483647, 'US', 'United States'), +('148.117.0.0', '148.117.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('148.118.0.0', '148.123.255.255', 2147483647, 2147483647, 'NO', 'Norway'), +('148.124.0.0', '148.134.255.255', 2147483647, 2147483647, 'US', 'United States'), +('148.135.0.0', '148.136.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('148.137.0.0', '148.137.255.255', 2147483647, 2147483647, 'US', 'United States'), +('148.138.0.0', '148.138.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('148.139.0.0', '148.139.255.255', 2147483647, 2147483647, 'US', 'United States'), +('148.140.0.0', '148.140.255.255', 2147483647, 2147483647, 'NO', 'Norway'), +('148.141.0.0', '148.142.255.255', 2147483647, 2147483647, 'US', 'United States'), +('148.143.0.0', '148.143.255.255', 2147483647, 2147483647, 'FR', 'France'), +('148.144.0.0', '148.144.255.255', 2147483647, 2147483647, 'US', 'United States'), +('148.145.0.0', '148.145.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('148.146.0.0', '148.147.255.255', 2147483647, 2147483647, 'US', 'United States'), +('148.148.0.0', '148.148.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('148.149.0.0', '148.150.255.255', 2147483647, 2147483647, 'US', 'United States'), +('148.151.0.0', '148.151.255.255', 2147483647, 2147483647, 'OM', 'Oman'), +('148.152.0.0', '148.159.255.255', 2147483647, 2147483647, 'US', 'United States'), +('148.160.0.0', '148.160.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('148.161.0.0', '148.161.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('148.162.0.0', '148.168.255.255', 2147483647, 2147483647, 'US', 'United States'), +('148.169.0.0', '148.169.255.255', 2147483647, 2147483647, 'FR', 'France'), +('148.170.0.0', '148.175.255.255', 2147483647, 2147483647, 'US', 'United States'), +('148.176.0.0', '148.176.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('148.177.0.0', '148.180.255.255', 2147483647, 2147483647, 'US', 'United States'), +('148.181.0.0', '148.181.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('148.182.0.0', '148.182.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('148.183.0.0', '148.184.255.255', 2147483647, 2147483647, 'US', 'United States'), +('148.185.0.0', '148.185.255.255', 2147483647, 2147483647, 'EU', 'Europe'), +('148.186.0.0', '148.186.255.255', 2147483647, 2147483647, 'US', 'United States'), +('148.187.0.0', '148.187.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('148.188.0.0', '148.194.255.255', 2147483647, 2147483647, 'US', 'United States'), +('148.195.0.0', '148.195.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('148.196.0.0', '148.196.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('148.197.0.0', '148.197.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('148.198.0.0', '148.198.255.255', 2147483647, 2147483647, 'AT', 'Austria'), +('148.199.0.0', '148.199.255.255', 2147483647, 2147483647, 'US', 'United States'), +('148.200.0.0', '148.200.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('148.201.0.0', '148.223.155.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('148.223.156.0', '148.223.159.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('148.223.160.0', '148.235.179.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('148.235.180.0', '148.235.183.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('148.235.184.0', '148.250.255.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('148.251.0.0', '148.251.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('148.252.0.0', '148.253.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('148.254.0.0', '148.254.255.255', 2147483647, 2147483647, 'US', 'United States'), +('149.0.0.0', '149.48.255.255', 2147483647, 2147483647, 'US', 'United States'), +('149.49.0.0', '149.49.255.255', 2147483647, 2147483647, 'IL', 'Israel'), +('149.50.0.0', '149.58.255.255', 2147483647, 2147483647, 'US', 'United States'), +('149.59.0.0', '149.59.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('149.60.0.0', '149.98.255.255', 2147483647, 2147483647, 'US', 'United States'), +('149.99.0.0', '149.99.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('149.100.0.0', '149.131.255.255', 2147483647, 2147483647, 'US', 'United States'), +('149.132.0.0', '149.132.255.255', 2147483647, 2147483647, 'IT', 'Italy'), +('149.133.0.0', '149.133.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('149.134.0.0', '149.134.255.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('149.135.0.0', '149.135.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('149.136.0.0', '149.138.255.255', 2147483647, 2147483647, 'US', 'United States'), +('149.139.0.0', '149.139.255.255', 2147483647, 2147483647, 'IT', 'Italy'), +('149.140.0.0', '149.143.255.255', 2147483647, 2147483647, 'US', 'United States'), +('149.144.0.0', '149.144.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('149.145.0.0', '149.145.255.255', 2147483647, 2147483647, 'US', 'United States'), +('149.146.0.0', '149.146.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('149.148.0.0', '149.148.255.255', 2147483647, 2147483647, 'AT', 'Austria'), +('149.149.0.0', '149.152.255.255', 2147483647, 2147483647, 'US', 'United States'), +('149.153.0.0', '149.153.255.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('149.155.0.0', '149.155.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('149.156.0.0', '149.156.255.255', 2147483647, 2147483647, 'PL', 'Poland'), +('149.157.0.0', '149.157.255.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('149.158.0.0', '149.166.255.255', 2147483647, 2147483647, 'US', 'United States'), +('149.167.0.0', '149.167.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('149.168.0.0', '149.169.255.255', 2147483647, 2147483647, 'US', 'United States'), +('149.170.0.0', '149.170.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('149.171.0.0', '149.171.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('149.172.0.0', '149.175.255.255', 2147483647, 2147483647, 'US', 'United States'), +('149.176.0.0', '149.176.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('149.177.0.0', '149.196.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('149.197.0.0', '149.197.255.255', 2147483647, 2147483647, 'FI', 'Finland'), +('149.198.0.0', '149.199.255.255', 2147483647, 2147483647, 'US', 'United States'), +('149.200.0.0', '149.208.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('149.209.0.0', '149.209.255.255', 2147483647, 2147483647, 'NO', 'Norway'), +('149.211.0.0', '149.211.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('149.212.0.0', '149.212.255.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('149.213.0.0', '149.222.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('149.223.0.0', '149.223.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('149.224.0.0', '149.224.113.255', 2147483647, 2147483647, 'DE', 'Germany'), +('149.224.114.0', '149.224.114.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('149.224.115.0', '149.240.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('149.241.0.0', '149.241.255.255', 2147483647, 2147483647, 'EU', 'Europe'), +('149.242.0.0', '149.250.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('149.251.0.0', '149.251.255.255', 2147483647, 2147483647, 'FR', 'France'), +('149.252.0.0', '149.253.255.255', 2147483647, 2147483647, 'US', 'United States'), +('149.254.0.0', '149.254.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('150.0.0.0', '150.100.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('150.101.0.0', '150.101.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('150.102.0.0', '150.105.255.255', 2147483647, 2147483647, 'US', 'United States'), +('150.106.0.0', '150.106.255.255', 2147483647, 2147483647, 'NO', 'Norway'), +('150.107.0.0', '150.107.255.255', 2147483647, 2147483647, 'AT', 'Austria'), +('150.108.0.0', '150.127.255.255', 2147483647, 2147483647, 'US', 'United States'), +('150.128.0.0', '150.128.255.255', 2147483647, 2147483647, 'ES', 'Spain'), +('150.129.0.0', '150.129.255.255', 2147483647, 2147483647, 'EU', 'Europe'), +('150.130.0.0', '150.131.255.255', 2147483647, 2147483647, 'US', 'United States'), +('150.132.0.0', '150.132.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('150.133.0.0', '150.137.255.255', 2147483647, 2147483647, 'US', 'United States'), +('150.140.0.0', '150.140.255.255', 2147483647, 2147483647, 'GR', 'Greece'), +('150.141.0.0', '150.144.255.255', 2147483647, 2147483647, 'US', 'United States'), +('150.145.0.0', '150.146.255.255', 2147483647, 2147483647, 'IT', 'Italy'), +('150.147.0.0', '150.149.255.255', 2147483647, 2147483647, 'US', 'United States'), +('150.150.0.0', '150.150.255.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('150.151.0.0', '150.151.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('150.152.0.0', '150.157.255.255', 2147483647, 2147483647, 'US', 'United States'), +('150.158.0.0', '150.158.255.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('150.159.0.0', '150.160.255.255', 2147483647, 2147483647, 'US', 'United States'), +('150.161.0.0', '150.165.255.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('150.166.0.0', '150.172.255.255', 2147483647, 2147483647, 'US', 'United States'), +('150.173.0.0', '150.173.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('150.174.0.0', '150.174.255.255', 2147483647, 2147483647, 'US', 'United States'), +('150.175.0.0', '150.175.255.255', 2147483647, 2147483647, 'FR', 'France'), +('150.176.0.0', '150.177.255.255', 2147483647, 2147483647, 'US', 'United States'), +('150.178.0.0', '150.178.255.255', 2147483647, 2147483647, 'IT', 'Italy'), +('150.179.0.0', '150.182.255.255', 2147483647, 2147483647, 'US', 'United States'), +('150.183.0.0', '150.183.255.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('150.184.0.0', '150.184.255.255', 2147483647, 2147483647, 'US', 'United States'), +('150.185.0.0', '150.189.255.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('150.190.0.0', '150.190.255.255', 2147483647, 2147483647, 'US', 'United States'), +('150.191.0.0', '150.191.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('150.192.0.0', '150.196.255.255', 2147483647, 2147483647, 'US', 'United States'), +('150.197.0.0', '150.197.255.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('150.198.0.0', '150.202.255.255', 2147483647, 2147483647, 'US', 'United States'), +('150.203.0.0', '150.203.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('150.204.0.0', '150.204.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('150.205.0.0', '150.205.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('150.206.0.0', '150.206.255.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('150.207.0.0', '150.207.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('150.208.0.0', '150.212.255.255', 2147483647, 2147483647, 'US', 'United States'), +('150.213.0.0', '150.213.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('150.214.0.0', '150.214.255.255', 2147483647, 2147483647, 'ES', 'Spain'), +('150.215.0.0', '150.216.255.255', 2147483647, 2147483647, 'US', 'United States'), +('150.217.0.0', '150.217.255.255', 2147483647, 2147483647, 'IT', 'Italy'), +('150.218.0.0', '150.226.255.255', 2147483647, 2147483647, 'US', 'United States'), +('150.227.0.0', '150.227.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('150.228.0.0', '150.228.255.255', 2147483647, 2147483647, 'US', 'United States'), +('150.229.0.0', '150.229.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('150.230.0.0', '150.235.255.255', 2147483647, 2147483647, 'US', 'United States'), +('150.236.0.0', '150.236.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('150.237.0.0', '150.237.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('150.238.0.0', '150.240.255.255', 2147483647, 2147483647, 'US', 'United States'), +('150.241.0.0', '150.241.255.255', 2147483647, 2147483647, 'ES', 'Spain'), +('150.242.0.0', '150.242.255.255', 2147483647, 2147483647, 'FR', 'France'), +('150.243.0.0', '150.243.255.255', 2147483647, 2147483647, 'US', 'United States'), +('150.244.0.0', '150.244.255.255', 2147483647, 2147483647, 'ES', 'Spain'), +('150.245.0.0', '150.250.255.255', 2147483647, 2147483647, 'US', 'United States'), +('150.251.0.0', '150.251.255.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('150.252.0.0', '150.253.255.255', 2147483647, 2147483647, 'US', 'United States'), +('150.254.0.0', '150.254.255.255', 2147483647, 2147483647, 'PL', 'Poland'), +('151.0.0.0', '151.100.255.255', 2147483647, 2147483647, 'IT', 'Italy'), +('151.101.0.0', '151.104.255.255', 2147483647, 2147483647, 'US', 'United States'), +('151.105.0.0', '151.105.255.255', 2147483647, 2147483647, 'FI', 'Finland'), +('151.106.0.0', '151.114.255.255', 2147483647, 2147483647, 'US', 'United States'), +('151.115.0.0', '151.115.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('151.116.0.0', '151.119.255.255', 2147483647, 2147483647, 'US', 'United States'), +('151.120.0.0', '151.120.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('151.121.0.0', '151.126.255.255', 2147483647, 2147483647, 'US', 'United States'), +('151.127.0.0', '151.127.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('151.128.0.0', '151.128.255.255', 2147483647, 2147483647, 'US', 'United States'), +('151.129.0.0', '151.129.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('151.130.0.0', '151.130.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('151.131.0.0', '151.132.255.255', 2147483647, 2147483647, 'US', 'United States'), +('151.133.0.0', '151.133.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('151.134.0.0', '151.134.255.255', 2147483647, 2147483647, 'US', 'United States'), +('151.136.0.0', '151.136.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('151.137.0.0', '151.155.255.255', 2147483647, 2147483647, 'US', 'United States'), +('151.156.0.0', '151.156.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('151.157.0.0', '151.157.255.255', 2147483647, 2147483647, 'NO', 'Norway'), +('151.158.0.0', '151.158.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('151.159.0.0', '151.169.255.255', 2147483647, 2147483647, 'US', 'United States'), +('151.170.0.0', '151.170.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('151.171.0.0', '151.171.255.255', 2147483647, 2147483647, 'US', 'United States'), +('151.172.0.0', '151.172.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('151.173.0.0', '151.174.255.255', 2147483647, 2147483647, 'US', 'United States'), +('151.175.0.0', '151.175.255.255', 2147483647, 2147483647, 'EU', 'Europe'), +('151.176.0.0', '151.176.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('151.177.0.0', '151.177.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('151.178.0.0', '151.178.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('151.179.0.0', '151.179.255.255', 2147483647, 2147483647, 'US', 'United States'), +('151.180.0.0', '151.180.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('151.181.0.0', '151.181.255.255', 2147483647, 2147483647, 'US', 'United States'), +('151.182.0.0', '151.182.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('151.183.0.0', '151.183.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('151.184.0.0', '151.184.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('151.185.0.0', '151.186.255.255', 2147483647, 2147483647, 'US', 'United States'), +('151.187.0.0', '151.187.255.255', 2147483647, 2147483647, 'NO', 'Norway'), +('151.188.0.0', '151.188.255.255', 2147483647, 2147483647, 'US', 'United States'), +('151.189.0.0', '151.189.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('151.190.0.0', '151.210.255.255', 2147483647, 2147483647, 'US', 'United States'), +('151.211.0.0', '151.212.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('151.213.0.0', '151.215.255.255', 2147483647, 2147483647, 'US', 'United States'), +('152.0.0.0', '152.65.255.255', 2147483647, 2147483647, 'US', 'United States'), +('152.66.0.0', '152.66.255.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('152.67.0.0', '152.70.255.255', 2147483647, 2147483647, 'US', 'United States'), +('152.71.0.0', '152.71.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('152.72.0.0', '152.72.255.255', 2147483647, 2147483647, 'US', 'United States'), +('152.73.0.0', '152.73.255.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('152.74.0.0', '152.74.255.255', 2147483647, 2147483647, 'CL', 'Chile'), +('152.75.0.0', '152.75.255.255', 2147483647, 2147483647, 'US', 'United States'), +('152.76.0.0', '152.76.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('152.77.0.0', '152.77.255.255', 2147483647, 2147483647, 'FR', 'France'), +('152.78.0.0', '152.78.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('152.79.0.0', '152.80.255.255', 2147483647, 2147483647, 'US', 'United States'), +('152.81.0.0', '152.81.255.255', 2147483647, 2147483647, 'FR', 'France'), +('152.82.0.0', '152.82.255.255', 2147483647, 2147483647, 'US', 'United States'), +('152.83.0.0', '152.83.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('152.84.0.0', '152.84.255.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('152.85.0.0', '152.87.255.255', 2147483647, 2147483647, 'US', 'United States'), +('152.88.0.0', '152.88.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('152.89.0.0', '152.89.255.255', 2147483647, 2147483647, 'FR', 'France'), +('152.90.0.0', '152.90.255.255', 2147483647, 2147483647, 'NO', 'Norway'), +('152.91.0.0', '152.91.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('152.92.0.0', '152.92.255.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('152.93.0.0', '152.94.255.255', 2147483647, 2147483647, 'NO', 'Norway'), +('152.95.0.0', '152.95.255.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('152.96.0.0', '152.96.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('152.97.0.0', '152.97.255.255', 2147483647, 2147483647, 'US', 'United States'), +('152.98.0.0', '152.98.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('152.99.0.0', '152.99.255.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('152.100.0.0', '152.100.255.255', 2147483647, 2147483647, 'US', 'United States'), +('152.101.0.0', '152.104.255.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('152.105.0.0', '152.105.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('152.106.0.0', '152.112.255.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('152.113.0.0', '152.113.255.255', 2147483647, 2147483647, 'US', 'United States'), +('152.114.0.0', '152.114.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('152.115.0.0', '152.115.255.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('152.116.0.0', '152.117.255.255', 2147483647, 2147483647, 'US', 'United States'), +('152.118.0.0', '152.118.255.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('152.119.0.0', '152.133.255.255', 2147483647, 2147483647, 'US', 'United States'), +('152.134.0.0', '152.134.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('152.135.0.0', '152.138.255.255', 2147483647, 2147483647, 'US', 'United States'), +('152.139.0.0', '152.139.255.255', 2147483647, 2147483647, 'CL', 'Chile'), +('152.140.0.0', '152.142.255.255', 2147483647, 2147483647, 'US', 'United States'), +('152.143.0.0', '152.143.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('152.144.0.0', '152.146.255.255', 2147483647, 2147483647, 'US', 'United States'), +('152.147.0.0', '152.147.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('152.148.0.0', '152.148.255.255', 2147483647, 2147483647, 'US', 'United States'), +('152.149.0.0', '152.149.255.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('152.150.0.0', '152.150.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('152.151.0.0', '152.151.255.255', 2147483647, 2147483647, 'US', 'United States'), +('152.152.0.0', '152.152.255.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('152.153.0.0', '152.153.255.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('152.154.0.0', '152.160.85.255', 2147483647, 2147483647, 'US', 'United States'), +('152.160.86.0', '152.160.86.255', 2147483647, 2147483647, 'CA', 'Canada'), +('152.160.87.0', '152.165.255.255', 2147483647, 2147483647, 'US', 'United States'), +('152.176.0.0', '152.225.255.255', 2147483647, 2147483647, 'US', 'United States'), +('152.226.0.0', '152.226.255.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('152.227.0.0', '152.229.255.255', 2147483647, 2147483647, 'US', 'United States'), +('153.1.0.0', '153.1.255.255', 2147483647, 2147483647, 'FI', 'Finland'), +('153.2.0.0', '153.2.255.255', 2147483647, 2147483647, 'US', 'United States'), +('153.4.0.0', '153.4.255.255', 2147483647, 2147483647, 'US', 'United States'), +('153.5.0.0', '153.5.255.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('153.6.0.0', '153.14.255.255', 2147483647, 2147483647, 'US', 'United States'), +('153.15.0.0', '153.15.255.255', 2147483647, 2147483647, 'NO', 'Norway'), +('153.16.0.0', '153.16.255.255', 2147483647, 2147483647, 'US', 'United States'), +('153.17.0.0', '153.17.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('153.18.0.0', '153.18.255.255', 2147483647, 2147483647, 'US', 'United States'), +('153.19.0.0', '153.19.255.255', 2147483647, 2147483647, 'PL', 'Poland'), +('153.20.0.0', '153.20.255.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('153.21.0.0', '153.40.255.255', 2147483647, 2147483647, 'US', 'United States'), +('153.41.0.0', '153.41.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('153.42.0.0', '153.43.255.255', 2147483647, 2147483647, 'US', 'United States'), +('153.44.0.0', '153.44.255.255', 2147483647, 2147483647, 'NO', 'Norway'), +('153.45.0.0', '153.45.255.255', 2147483647, 2147483647, 'US', 'United States'), +('153.46.0.0', '153.46.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('153.47.0.0', '153.48.255.255', 2147483647, 2147483647, 'US', 'United States'), +('153.49.0.0', '153.49.255.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('153.50.0.0', '153.87.255.255', 2147483647, 2147483647, 'US', 'United States'), +('153.88.0.0', '153.88.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('153.89.0.0', '153.91.255.255', 2147483647, 2147483647, 'US', 'United States'), +('153.92.0.0', '153.92.4.255', 2147483647, 2147483647, 'EU', 'Europe'), +('153.92.5.0', '153.92.5.255', 2147483647, 2147483647, 'DE', 'Germany'), +('153.92.6.0', '153.92.9.255', 2147483647, 2147483647, 'EU', 'Europe'), +('153.92.10.0', '153.92.10.255', 2147483647, 2147483647, 'DE', 'Germany'), +('153.92.11.0', '153.92.255.255', 2147483647, 2147483647, 'EU', 'Europe'), +('153.93.0.0', '153.98.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('153.99.0.0', '153.99.255.255', 2147483647, 2147483647, 'EU', 'Europe'), +('153.100.0.0', '153.100.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('153.101.0.0', '153.101.255.255', 2147483647, 2147483647, 'EU', 'Europe'), +('153.102.0.0', '153.106.255.255', 2147483647, 2147483647, 'US', 'United States'), +('153.107.0.0', '153.107.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('153.108.0.0', '153.109.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('153.110.0.0', '153.110.255.255', 2147483647, 2147483647, 'NO', 'Norway'), +('153.111.0.0', '153.111.255.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('153.112.0.0', '153.112.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('153.113.0.0', '153.117.255.255', 2147483647, 2147483647, 'US', 'United States'), +('154.0.0.0', '154.4.255.255', 2147483647, 2147483647, 'US', 'United States'), +('154.5.0.0', '154.5.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('154.6.0.0', '154.7.255.255', 2147483647, 2147483647, 'US', 'United States'), +('154.8.0.0', '154.8.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('154.9.0.0', '154.9.255.255', 2147483647, 2147483647, 'US', 'United States'), +('154.10.0.0', '154.10.255.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('154.11.0.0', '154.11.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('154.12.0.0', '154.13.255.255', 2147483647, 2147483647, 'US', 'United States'), +('154.14.0.0', '154.16.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('154.17.0.0', '154.19.255.255', 2147483647, 2147483647, 'US', 'United States'), +('154.20.0.0', '154.20.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('154.21.0.0', '154.31.255.255', 2147483647, 2147483647, 'US', 'United States'), +('154.32.0.0', '154.32.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('154.33.0.0', '154.34.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('154.35.0.0', '154.64.255.255', 2147483647, 2147483647, 'US', 'United States'), +('155.1.0.0', '155.2.255.255', 2147483647, 2147483647, 'US', 'United States'), +('155.3.0.0', '155.3.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('155.4.0.0', '155.4.255.255', 2147483647, 2147483647, 'NO', 'Norway'), +('155.5.0.0', '155.9.255.255', 2147483647, 2147483647, 'US', 'United States'), +('155.10.0.0', '155.10.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('155.13.0.0', '155.14.255.255', 2147483647, 2147483647, 'US', 'United States'), +('155.15.0.0', '155.15.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('155.16.0.0', '155.31.255.255', 2147483647, 2147483647, 'US', 'United States'), +('155.32.0.0', '155.32.255.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('155.33.0.0', '155.53.255.255', 2147483647, 2147483647, 'US', 'United States'), +('155.54.0.0', '155.54.255.255', 2147483647, 2147483647, 'ES', 'Spain'), +('155.55.0.0', '155.55.255.255', 2147483647, 2147483647, 'NO', 'Norway'), +('155.56.0.0', '155.56.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('155.57.0.0', '155.58.255.255', 2147483647, 2147483647, 'US', 'United States'), +('155.59.0.0', '155.59.255.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('155.60.0.0', '155.60.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('155.61.0.0', '155.61.255.255', 2147483647, 2147483647, 'US', 'United States'), +('155.62.0.0', '155.62.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('155.63.0.0', '155.65.255.255', 2147483647, 2147483647, 'US', 'United States'), +('155.66.0.0', '155.66.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('155.67.0.0', '155.68.255.255', 2147483647, 2147483647, 'US', 'United States'), +('155.69.0.0', '155.69.255.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('155.70.0.0', '155.70.255.255', 2147483647, 2147483647, 'US', 'United States'), +('155.71.0.0', '155.71.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('155.72.0.0', '155.72.255.255', 2147483647, 2147483647, 'US', 'United States'), +('155.73.0.0', '155.73.255.255', 2147483647, 2147483647, 'AT', 'Austria'), +('155.74.0.0', '155.104.255.255', 2147483647, 2147483647, 'US', 'United States'), +('155.105.0.0', '155.105.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('155.106.0.0', '155.130.255.255', 2147483647, 2147483647, 'US', 'United States'), +('155.131.0.0', '155.131.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('155.132.0.0', '155.132.255.255', 2147483647, 2147483647, 'FR', 'France'), +('155.133.0.0', '155.133.255.255', 2147483647, 2147483647, 'EU', 'Europe'), +('155.134.0.0', '155.135.255.255', 2147483647, 2147483647, 'US', 'United States'), +('155.136.0.0', '155.136.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('155.137.0.0', '155.137.255.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('155.138.0.0', '155.139.255.255', 2147483647, 2147483647, 'US', 'United States'), +('155.140.0.0', '155.140.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('155.141.0.0', '155.142.255.255', 2147483647, 2147483647, 'US', 'United States'), +('155.143.0.0', '155.144.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('155.145.0.0', '155.145.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('155.146.0.0', '155.157.255.255', 2147483647, 2147483647, 'US', 'United States'), +('155.158.0.0', '155.158.255.255', 2147483647, 2147483647, 'PL', 'Poland'), +('155.159.0.0', '155.159.255.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('155.160.0.0', '155.160.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('155.161.0.0', '155.184.255.255', 2147483647, 2147483647, 'US', 'United States'), +('155.185.0.0', '155.185.255.255', 2147483647, 2147483647, 'IT', 'Italy'), +('155.186.0.0', '155.186.255.255', 2147483647, 2147483647, 'US', 'United States'), +('155.187.0.0', '155.187.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('155.188.0.0', '155.191.255.255', 2147483647, 2147483647, 'US', 'United States'), +('155.192.0.0', '155.192.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('155.193.0.0', '155.193.255.255', 2147483647, 2147483647, 'US', 'United States'), +('155.194.0.0', '155.194.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('155.195.0.0', '155.195.255.255', 2147483647, 2147483647, 'US', 'United States'), +('155.197.0.0', '155.197.255.255', 2147483647, 2147483647, 'US', 'United States'), +('155.198.0.0', '155.198.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('155.199.0.0', '155.201.255.255', 2147483647, 2147483647, 'US', 'United States'), +('155.202.0.0', '155.202.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('155.203.0.0', '155.203.255.255', 2147483647, 2147483647, 'US', 'United States'), +('155.204.0.0', '155.204.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('155.205.0.0', '155.205.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('155.206.0.0', '155.206.255.255', 2147483647, 2147483647, 'US', 'United States'), +('155.207.0.0', '155.207.255.255', 2147483647, 2147483647, 'GR', 'Greece'), +('155.208.0.0', '155.208.255.255', 2147483647, 2147483647, 'US', 'United States'), +('155.209.0.0', '155.209.255.255', 2147483647, 2147483647, 'NO', 'Norway'), +('155.210.0.0', '155.210.255.255', 2147483647, 2147483647, 'ES', 'Spain'), +('155.211.0.0', '155.211.255.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('155.212.0.0', '155.222.255.255', 2147483647, 2147483647, 'US', 'United States'), +('155.223.0.0', '155.223.255.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('155.224.0.0', '155.226.255.255', 2147483647, 2147483647, 'US', 'United States'), +('155.227.0.0', '155.227.255.255', 2147483647, 2147483647, 'NO', 'Norway'), +('155.228.0.0', '155.228.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('155.229.0.0', '155.229.255.255', 2147483647, 2147483647, 'US', 'United States'), +('155.230.0.0', '155.230.255.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('155.231.0.0', '155.231.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('155.232.0.0', '155.240.255.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('155.241.0.0', '155.244.255.255', 2147483647, 2147483647, 'US', 'United States'), +('155.245.0.0', '155.245.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('155.246.0.0', '155.248.255.255', 2147483647, 2147483647, 'US', 'United States'), +('155.249.0.0', '155.249.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('155.250.0.0', '155.250.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('155.251.0.0', '155.252.255.255', 2147483647, 2147483647, 'US', 'United States'), +('155.253.0.0', '155.253.255.255', 2147483647, 2147483647, 'IT', 'Italy'), +('155.254.0.0', '155.254.255.255', 2147483647, 2147483647, 'US', 'United States'), +('156.0.0.0', '156.7.255.255', 2147483647, 2147483647, 'US', 'United States'), +('156.8.0.0', '156.8.255.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('156.9.0.0', '156.9.255.255', 2147483647, 2147483647, 'US', 'United States'), +('156.10.0.0', '156.10.255.255', 2147483647, 2147483647, 'FI', 'Finland'), +('156.11.0.0', '156.11.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('156.12.0.0', '156.12.255.255', 2147483647, 2147483647, 'US', 'United States'), +('156.13.0.0', '156.13.255.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('156.14.0.0', '156.14.255.255', 2147483647, 2147483647, 'IT', 'Italy'), +('156.15.0.0', '156.15.255.255', 2147483647, 2147483647, 'US', 'United States'), +('156.16.0.0', '156.16.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('156.17.0.0', '156.17.255.255', 2147483647, 2147483647, 'PL', 'Poland'), +('156.18.0.0', '156.18.255.255', 2147483647, 2147483647, 'FR', 'France'), +('156.19.0.0', '156.21.255.255', 2147483647, 2147483647, 'US', 'United States'), +('156.22.0.0', '156.22.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('156.23.0.0', '156.24.255.255', 2147483647, 2147483647, 'US', 'United States'), +('156.25.0.0', '156.25.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('156.26.0.0', '156.27.255.255', 2147483647, 2147483647, 'US', 'United States'), +('156.28.0.0', '156.28.255.255', 2147483647, 2147483647, 'FR', 'France'), +('156.29.0.0', '156.30.255.255', 2147483647, 2147483647, 'US', 'United States'), +('156.31.0.0', '156.31.255.255', 2147483647, 2147483647, 'BN', 'Brunei Darussalam'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('156.32.0.0', '156.33.255.255', 2147483647, 2147483647, 'US', 'United States'), +('156.34.0.0', '156.34.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('156.35.0.0', '156.35.255.255', 2147483647, 2147483647, 'ES', 'Spain'), +('156.36.0.0', '156.42.255.255', 2147483647, 2147483647, 'US', 'United States'), +('156.43.0.0', '156.43.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('156.44.0.0', '156.44.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('156.45.0.0', '156.46.213.159', 2147483647, 2147483647, 'US', 'United States'), +('156.46.213.160', '156.46.213.183', 2147483647, 2147483647, 'DE', 'Germany'), +('156.46.213.184', '156.47.255.255', 2147483647, 2147483647, 'US', 'United States'), +('156.48.0.0', '156.48.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('156.49.0.0', '156.49.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('156.50.0.0', '156.50.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('156.51.0.0', '156.51.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('156.52.0.0', '156.52.255.255', 2147483647, 2147483647, 'NO', 'Norway'), +('156.53.0.0', '156.53.255.255', 2147483647, 2147483647, 'US', 'United States'), +('156.54.0.0', '156.54.255.255', 2147483647, 2147483647, 'IT', 'Italy'), +('156.55.0.0', '156.56.255.255', 2147483647, 2147483647, 'US', 'United States'), +('156.57.0.0', '156.57.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('156.58.0.0', '156.58.255.255', 2147483647, 2147483647, 'AT', 'Austria'), +('156.59.0.0', '156.59.255.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('156.60.0.0', '156.60.255.255', 2147483647, 2147483647, 'US', 'United States'), +('156.61.0.0', '156.61.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('156.62.0.0', '156.62.255.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('156.63.0.0', '156.66.255.255', 2147483647, 2147483647, 'US', 'United States'), +('156.67.0.0', '156.67.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('156.68.0.0', '156.68.255.255', 2147483647, 2147483647, 'US', 'United States'), +('156.69.0.0', '156.69.255.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('156.70.0.0', '156.78.255.255', 2147483647, 2147483647, 'US', 'United States'), +('156.79.0.0', '156.79.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('156.80.0.0', '156.82.255.255', 2147483647, 2147483647, 'US', 'United States'), +('156.83.0.0', '156.83.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('156.84.0.0', '156.96.255.255', 2147483647, 2147483647, 'US', 'United States'), +('156.97.0.0', '156.97.255.255', 2147483647, 2147483647, 'CL', 'Chile'), +('156.98.0.0', '156.105.255.255', 2147483647, 2147483647, 'US', 'United States'), +('156.106.0.0', '156.106.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('156.107.0.0', '156.113.255.255', 2147483647, 2147483647, 'US', 'United States'), +('156.114.0.0', '156.114.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('156.115.0.0', '156.115.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('156.116.0.0', '156.116.255.255', 2147483647, 2147483647, 'NO', 'Norway'), +('156.117.0.0', '156.117.255.255', 2147483647, 2147483647, 'US', 'United States'), +('156.118.0.0', '156.118.255.255', 2147483647, 2147483647, 'FR', 'France'), +('156.119.0.0', '156.132.255.255', 2147483647, 2147483647, 'US', 'United States'), +('156.133.0.0', '156.133.255.255', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('156.134.0.0', '156.134.255.255', 2147483647, 2147483647, 'US', 'United States'), +('156.135.0.0', '156.135.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('156.136.0.0', '156.146.255.255', 2147483647, 2147483647, 'US', 'United States'), +('156.147.0.0', '156.147.255.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('156.148.0.0', '156.148.255.255', 2147483647, 2147483647, 'IT', 'Italy'), +('156.149.0.0', '156.149.255.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('156.150.0.0', '156.150.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('156.151.0.0', '156.155.255.255', 2147483647, 2147483647, 'US', 'United States'), +('157.0.0.0', '157.20.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('157.21.0.0', '157.22.255.255', 2147483647, 2147483647, 'US', 'United States'), +('157.23.0.0', '157.23.255.255', 2147483647, 2147483647, 'FR', 'France'), +('157.24.0.0', '157.24.255.255', 2147483647, 2147483647, 'FI', 'Finland'), +('157.25.0.0', '157.25.255.255', 2147483647, 2147483647, 'PL', 'Poland'), +('157.26.0.0', '157.26.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('157.27.0.0', '157.29.255.255', 2147483647, 2147483647, 'IT', 'Italy'), +('157.30.0.0', '157.31.255.255', 2147483647, 2147483647, 'US', 'United States'), +('157.32.0.0', '157.53.255.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('157.54.0.0', '157.60.255.255', 2147483647, 2147483647, 'US', 'United States'), +('157.62.0.0', '157.62.255.255', 2147483647, 2147483647, 'US', 'United States'), +('157.63.0.0', '157.82.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('157.83.0.0', '157.84.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('157.85.0.0', '157.85.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('157.86.0.0', '157.86.255.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('157.87.0.0', '157.87.255.255', 2147483647, 2147483647, 'US', 'United States'), +('157.88.0.0', '157.88.255.255', 2147483647, 2147483647, 'ES', 'Spain'), +('157.89.0.0', '157.91.255.255', 2147483647, 2147483647, 'US', 'United States'), +('157.92.0.0', '157.92.255.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('157.93.0.0', '157.93.255.255', 2147483647, 2147483647, 'US', 'United States'), +('157.94.0.0', '157.94.255.255', 2147483647, 2147483647, 'FI', 'Finland'), +('157.95.0.0', '157.95.255.255', 2147483647, 2147483647, 'US', 'United States'), +('157.96.0.0', '157.96.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('157.97.0.0', '157.97.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('157.98.0.0', '157.98.255.255', 2147483647, 2147483647, 'US', 'United States'), +('157.99.0.0', '157.99.255.255', 2147483647, 2147483647, 'FR', 'France'), +('157.100.0.0', '157.100.255.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('157.101.0.0', '157.120.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('157.121.0.0', '157.121.255.255', 2147483647, 2147483647, 'US', 'United States'), +('157.123.0.0', '157.123.255.255', 2147483647, 2147483647, 'US', 'United States'), +('157.124.0.0', '157.124.255.255', 2147483647, 2147483647, 'FI', 'Finland'), +('157.125.0.0', '157.125.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('157.126.0.0', '157.127.255.255', 2147483647, 2147483647, 'US', 'United States'), +('157.128.0.0', '157.128.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('157.129.0.0', '157.129.255.255', 2147483647, 2147483647, 'FI', 'Finland'), +('157.130.0.0', '157.135.255.255', 2147483647, 2147483647, 'US', 'United States'), +('157.136.0.0', '157.136.255.255', 2147483647, 2147483647, 'FR', 'France'), +('157.137.0.0', '157.137.255.255', 2147483647, 2147483647, 'US', 'United States'), +('157.138.0.0', '157.138.255.255', 2147483647, 2147483647, 'IT', 'Italy'), +('157.139.0.0', '157.139.255.255', 2147483647, 2147483647, 'US', 'United States'), +('157.140.0.0', '157.140.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('157.141.0.0', '157.143.255.255', 2147483647, 2147483647, 'US', 'United States'), +('157.144.0.0', '157.144.255.255', 2147483647, 2147483647, 'FI', 'Finland'), +('157.145.0.0', '157.154.255.255', 2147483647, 2147483647, 'US', 'United States'), +('157.155.0.0', '157.155.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('157.157.0.0', '157.157.255.255', 2147483647, 2147483647, 'IS', 'Iceland'), +('157.158.0.0', '157.158.255.255', 2147483647, 2147483647, 'PL', 'Poland'), +('157.159.0.0', '157.159.255.255', 2147483647, 2147483647, 'FR', 'France'), +('157.160.0.0', '157.160.255.255', 2147483647, 2147483647, 'US', 'United States'), +('157.161.0.0', '157.161.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('157.162.0.0', '157.163.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('157.164.0.0', '157.164.255.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('157.165.0.0', '157.166.255.255', 2147483647, 2147483647, 'US', 'United States'), +('157.167.0.0', '157.168.255.255', 2147483647, 2147483647, 'AT', 'Austria'), +('157.169.0.0', '157.169.255.255', 2147483647, 2147483647, 'FR', 'France'), +('157.170.0.0', '157.170.255.255', 2147483647, 2147483647, 'US', 'United States'), +('157.171.0.0', '157.171.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('157.172.0.0', '157.172.255.255', 2147483647, 2147483647, 'FR', 'France'), +('157.173.0.0', '157.173.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('157.174.0.0', '157.176.255.255', 2147483647, 2147483647, 'US', 'United States'), +('157.177.0.0', '157.177.255.255', 2147483647, 2147483647, 'AT', 'Austria'), +('157.178.0.0', '157.178.255.255', 2147483647, 2147483647, 'US', 'United States'), +('157.179.0.0', '157.179.255.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('157.180.0.0', '157.180.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('157.181.0.0', '157.181.255.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('157.182.0.0', '157.185.255.255', 2147483647, 2147483647, 'US', 'United States'), +('157.186.0.0', '157.186.255.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('157.187.0.0', '157.189.255.255', 2147483647, 2147483647, 'US', 'United States'), +('157.190.0.0', '157.190.255.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('157.191.0.0', '157.191.255.255', 2147483647, 2147483647, 'US', 'United States'), +('157.192.0.0', '157.192.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('157.193.0.0', '157.193.255.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('157.194.0.0', '157.196.255.255', 2147483647, 2147483647, 'US', 'United States'), +('157.197.0.0', '157.197.255.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('157.198.0.0', '157.199.255.255', 2147483647, 2147483647, 'US', 'United States'), +('157.200.0.0', '157.200.255.255', 2147483647, 2147483647, 'FI', 'Finland'), +('157.201.0.0', '157.202.255.255', 2147483647, 2147483647, 'US', 'United States'), +('157.203.0.0', '157.203.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('157.204.0.0', '157.204.255.255', 2147483647, 2147483647, 'US', 'United States'), +('157.205.0.0', '157.205.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('157.206.0.0', '157.210.255.255', 2147483647, 2147483647, 'US', 'United States'), +('157.211.0.0', '157.211.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('157.212.0.0', '157.226.255.255', 2147483647, 2147483647, 'US', 'United States'), +('157.227.0.0', '157.227.255.255', 2147483647, 2147483647, 'IN', 'India'), +('157.228.0.0', '157.228.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('157.229.0.0', '157.235.255.255', 2147483647, 2147483647, 'US', 'United States'), +('157.236.0.0', '157.236.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('157.237.0.0', '157.237.255.255', 2147483647, 2147483647, 'NO', 'Norway'), +('157.238.0.0', '157.242.255.255', 2147483647, 2147483647, 'US', 'United States'), +('157.243.0.0', '157.243.255.255', 2147483647, 2147483647, 'FR', 'France'), +('157.244.0.0', '157.244.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('157.245.0.0', '157.246.255.255', 2147483647, 2147483647, 'US', 'United States'), +('157.247.0.0', '157.247.255.255', 2147483647, 2147483647, 'AT', 'Austria'), +('157.248.0.0', '157.248.255.255', 2147483647, 2147483647, 'US', 'United States'), +('157.249.0.0', '157.249.255.255', 2147483647, 2147483647, 'NO', 'Norway'), +('157.250.0.0', '157.252.255.255', 2147483647, 2147483647, 'US', 'United States'), +('157.253.0.0', '157.253.255.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('157.254.0.0', '157.254.255.255', 2147483647, 2147483647, 'US', 'United States'), +('158.0.0.0', '158.35.255.255', 2147483647, 2147483647, 'US', 'United States'), +('158.36.0.0', '158.39.255.255', 2147483647, 2147483647, 'NO', 'Norway'), +('158.40.0.0', '158.40.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('158.41.0.0', '158.41.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('158.42.0.0', '158.42.255.255', 2147483647, 2147483647, 'ES', 'Spain'), +('158.43.0.0', '158.43.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('158.44.0.0', '158.44.255.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('158.45.0.0', '158.45.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('158.47.0.0', '158.47.255.255', 2147483647, 2147483647, 'IT', 'Italy'), +('158.48.0.0', '158.48.255.255', 2147483647, 2147483647, 'US', 'United States'), +('158.49.0.0', '158.49.255.255', 2147483647, 2147483647, 'ES', 'Spain'), +('158.50.0.0', '158.50.255.255', 2147483647, 2147483647, 'FR', 'France'), +('158.51.0.0', '158.51.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('158.52.0.0', '158.53.255.255', 2147483647, 2147483647, 'US', 'United States'), +('158.54.0.0', '158.54.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('158.55.0.0', '158.63.255.255', 2147483647, 2147483647, 'US', 'United States'), +('158.64.0.0', '158.64.255.255', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('158.65.0.0', '158.65.255.255', 2147483647, 2147483647, 'US', 'United States'), +('158.66.0.0', '158.66.232.255', 2147483647, 2147483647, 'EU', 'Europe'), +('158.66.233.0', '158.66.240.0', 2147483647, 2147483647, 'PL', 'Poland'), +('158.66.240.1', '158.67.255.255', 2147483647, 2147483647, 'EU', 'Europe'), +('158.68.0.0', '158.74.255.255', 2147483647, 2147483647, 'US', 'United States'), +('158.75.0.0', '158.75.255.255', 2147483647, 2147483647, 'PL', 'Poland'), +('158.76.0.0', '158.88.255.255', 2147483647, 2147483647, 'US', 'United States'), +('158.89.0.0', '158.89.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('158.90.0.0', '158.90.255.255', 2147483647, 2147483647, 'FI', 'Finland'), +('158.91.0.0', '158.91.255.255', 2147483647, 2147483647, 'US', 'United States'), +('158.92.0.0', '158.92.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('158.93.0.0', '158.93.255.255', 2147483647, 2147483647, 'US', 'United States'), +('158.94.0.0', '158.94.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('158.95.0.0', '158.96.255.255', 2147483647, 2147483647, 'US', 'United States'), +('158.97.0.0', '158.97.255.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('158.98.0.0', '158.98.255.255', 2147483647, 2147483647, 'US', 'United States'), +('158.99.0.0', '158.99.255.255', 2147483647, 2147483647, 'ES', 'Spain'), +('158.100.0.0', '158.101.255.255', 2147483647, 2147483647, 'US', 'United States'), +('158.102.0.0', '158.102.255.255', 2147483647, 2147483647, 'IT', 'Italy'), +('158.103.0.0', '158.104.255.255', 2147483647, 2147483647, 'US', 'United States'), +('158.105.0.0', '158.105.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('158.106.0.0', '158.107.255.255', 2147483647, 2147483647, 'US', 'United States'), +('158.108.0.0', '158.108.255.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('158.109.0.0', '158.109.255.255', 2147483647, 2147483647, 'ES', 'Spain'), +('158.110.0.0', '158.110.255.255', 2147483647, 2147483647, 'IT', 'Italy'), +('158.111.0.0', '158.111.255.255', 2147483647, 2147483647, 'US', 'United States'), +('158.112.0.0', '158.112.255.255', 2147483647, 2147483647, 'NO', 'Norway'), +('158.113.0.0', '158.118.255.255', 2147483647, 2147483647, 'US', 'United States'), +('158.119.0.0', '158.119.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('158.120.0.0', '158.123.255.255', 2147483647, 2147483647, 'US', 'United States'), +('158.124.0.0', '158.125.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('158.126.0.0', '158.126.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('158.127.0.0', '158.127.255.255', 2147483647, 2147483647, 'FI', 'Finland'), +('158.128.0.0', '158.128.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('158.129.0.0', '158.129.255.255', 2147483647, 2147483647, 'LT', 'Lithuania'), +('158.130.0.0', '158.130.255.255', 2147483647, 2147483647, 'US', 'United States'), +('158.131.0.0', '158.131.255.255', 2147483647, 2147483647, 'FI', 'Finland'), +('158.132.0.0', '158.132.255.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('158.133.0.0', '158.133.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('158.134.0.0', '158.140.255.255', 2147483647, 2147483647, 'US', 'United States'), +('158.141.0.0', '158.141.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('158.142.0.0', '158.142.255.255', 2147483647, 2147483647, 'US', 'United States'), +('158.143.0.0', '158.143.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('158.144.0.0', '158.144.255.255', 2147483647, 2147483647, 'IN', 'India'), +('158.145.0.0', '158.147.255.255', 2147483647, 2147483647, 'US', 'United States'), +('158.149.0.0', '158.150.255.255', 2147483647, 2147483647, 'NO', 'Norway'), +('158.151.0.0', '158.151.255.255', 2147483647, 2147483647, 'US', 'United States'), +('158.152.0.0', '158.152.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('158.153.0.0', '158.155.255.255', 2147483647, 2147483647, 'US', 'United States'), +('158.156.0.0', '158.156.255.255', 2147483647, 2147483647, 'FR', 'France'), +('158.157.0.0', '158.159.255.255', 2147483647, 2147483647, 'US', 'United States'), +('158.160.0.0', '158.160.255.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('158.161.0.0', '158.161.255.255', 2147483647, 2147483647, 'BN', 'Brunei Darussalam'), +('158.162.0.0', '158.162.255.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('158.163.0.0', '158.163.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('158.164.0.0', '158.165.255.255', 2147483647, 2147483647, 'US', 'United States'), +('158.166.0.0', '158.169.255.255', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('158.170.0.0', '158.170.255.255', 2147483647, 2147483647, 'CL', 'Chile'), +('158.171.0.0', '158.171.255.255', 2147483647, 2147483647, 'US', 'United States'), +('158.172.0.0', '158.172.255.255', 2147483647, 2147483647, 'ES', 'Spain'), +('158.173.0.0', '158.173.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('158.174.0.0', '158.180.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('158.182.0.0', '158.182.255.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('158.183.0.0', '158.189.255.255', 2147483647, 2147483647, 'US', 'United States'), +('158.190.0.0', '158.192.255.255', 2147483647, 2147483647, 'FR', 'France'), +('158.193.0.0', '158.193.255.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('158.194.0.0', '158.194.255.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('158.195.0.0', '158.195.255.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('158.196.0.0', '158.196.255.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('158.197.0.0', '158.197.255.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('158.198.0.0', '158.215.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('158.216.0.0', '158.216.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('158.217.0.0', '158.217.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('158.218.0.0', '158.218.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('158.219.0.0', '158.219.255.255', 2147483647, 2147483647, 'US', 'United States'), +('158.220.0.0', '158.220.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('158.221.0.0', '158.222.127.255', 2147483647, 2147483647, 'US', 'United States'), +('158.223.0.0', '158.223.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('158.224.0.0', '158.224.255.255', 2147483647, 2147483647, 'US', 'United States'), +('158.225.0.0', '158.225.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('158.226.0.0', '158.226.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('158.227.0.0', '158.227.255.255', 2147483647, 2147483647, 'ES', 'Spain'), +('158.228.0.0', '158.229.255.255', 2147483647, 2147483647, 'US', 'United States'), +('158.230.0.0', '158.230.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('158.231.0.0', '158.231.255.255', 2147483647, 2147483647, 'FR', 'France'), +('158.232.0.0', '158.232.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('158.233.0.0', '158.233.255.255', 2147483647, 2147483647, 'FI', 'Finland'), +('158.234.0.0', '158.234.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('158.235.0.0', '158.247.255.255', 2147483647, 2147483647, 'US', 'United States'), +('158.248.0.0', '158.248.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('158.249.0.0', '158.249.255.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('158.250.0.0', '158.250.255.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('158.251.0.0', '158.251.255.255', 2147483647, 2147483647, 'CL', 'Chile'), +('158.252.0.0', '159.5.255.255', 2147483647, 2147483647, 'US', 'United States'), +('159.6.0.0', '159.6.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('159.7.0.0', '159.7.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('159.8.0.0', '159.8.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('159.9.0.0', '159.11.255.255', 2147483647, 2147483647, 'US', 'United States'), +('159.12.0.0', '159.12.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('159.13.0.0', '159.13.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('159.14.0.0', '159.14.255.255', 2147483647, 2147483647, 'US', 'United States'), +('159.15.0.0', '159.15.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('159.16.0.0', '159.16.255.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('159.17.0.0', '159.17.255.255', 2147483647, 2147483647, 'US', 'United States'), +('159.18.0.0', '159.18.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('159.19.0.0', '159.19.255.255', 2147483647, 2147483647, 'US', 'United States'), +('159.21.0.0', '159.21.255.255', 2147483647, 2147483647, 'US', 'United States'), +('159.22.0.0', '159.22.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('159.23.0.0', '159.23.255.255', 2147483647, 2147483647, 'ES', 'Spain'), +('159.24.0.0', '159.24.255.255', 2147483647, 2147483647, 'US', 'United States'), +('159.25.0.0', '159.25.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('159.26.0.0', '159.28.255.255', 2147483647, 2147483647, 'US', 'United States'), +('159.29.0.0', '159.29.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('159.30.0.0', '159.30.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('159.31.0.0', '159.31.255.255', 2147483647, 2147483647, 'FR', 'France'), +('159.32.0.0', '159.33.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('159.34.0.0', '159.34.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('159.35.0.0', '159.37.255.255', 2147483647, 2147483647, 'US', 'United States'), +('159.38.0.0', '159.38.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('159.39.0.0', '159.45.255.255', 2147483647, 2147483647, 'US', 'United States'), +('159.46.0.0', '159.46.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('159.47.0.0', '159.49.255.255', 2147483647, 2147483647, 'US', 'United States'), +('159.50.0.0', '159.50.255.255', 2147483647, 2147483647, 'FR', 'France'), +('159.51.0.0', '159.51.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('159.52.0.0', '159.52.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('159.53.0.0', '159.54.255.255', 2147483647, 2147483647, 'US', 'United States'), +('159.55.0.0', '159.55.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('159.56.0.0', '159.57.255.255', 2147483647, 2147483647, 'US', 'United States'), +('159.58.0.0', '159.58.255.255', 2147483647, 2147483647, 'NO', 'Norway'), +('159.59.0.0', '159.59.255.255', 2147483647, 2147483647, 'US', 'United States'), +('159.60.0.0', '159.60.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('159.61.0.0', '159.71.255.255', 2147483647, 2147483647, 'US', 'United States'), +('159.72.0.0', '159.72.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('159.73.0.0', '159.73.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('159.74.0.0', '159.79.255.255', 2147483647, 2147483647, 'US', 'United States'), +('159.80.0.0', '159.80.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('159.81.0.0', '159.81.255.255', 2147483647, 2147483647, 'NO', 'Norway'), +('159.82.0.0', '159.83.255.255', 2147483647, 2147483647, 'US', 'United States'), +('159.84.0.0', '159.84.255.255', 2147483647, 2147483647, 'FR', 'France'), +('159.85.0.0', '159.85.255.255', 2147483647, 2147483647, 'US', 'United States'), +('159.87.0.0', '159.88.255.255', 2147483647, 2147483647, 'US', 'United States'), +('159.89.0.0', '159.89.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('159.90.0.0', '159.90.255.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('159.91.0.0', '159.91.255.255', 2147483647, 2147483647, 'US', 'United States'), +('159.92.0.0', '159.92.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('159.93.0.0', '159.93.255.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('159.94.0.0', '159.94.255.255', 2147483647, 2147483647, 'US', 'United States'), +('159.95.0.0', '159.95.255.255', 2147483647, 2147483647, 'FR', 'France'), +('159.96.0.0', '159.99.255.255', 2147483647, 2147483647, 'US', 'United States'), +('159.100.0.0', '159.101.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('159.102.0.0', '159.102.255.255', 2147483647, 2147483647, 'US', 'United States'), +('159.103.0.0', '159.103.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('159.104.0.0', '159.104.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('159.105.0.0', '159.106.255.255', 2147483647, 2147483647, 'US', 'United States'), +('159.107.0.0', '159.107.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('159.108.0.0', '159.108.255.255', 2147483647, 2147483647, 'US', 'United States'), +('159.109.0.0', '159.109.255.255', 2147483647, 2147483647, 'FR', 'France'), +('159.110.0.0', '159.110.255.255', 2147483647, 2147483647, 'US', 'United States'), +('159.111.0.0', '159.111.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('159.112.0.0', '159.113.255.255', 2147483647, 2147483647, 'US', 'United States'), +('159.114.0.0', '159.114.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('159.115.0.0', '159.116.255.255', 2147483647, 2147483647, 'US', 'United States'), +('159.117.0.0', '159.117.255.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('159.118.0.0', '159.121.255.255', 2147483647, 2147483647, 'US', 'United States'), +('159.122.0.0', '159.122.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('159.123.0.0', '159.127.255.255', 2147483647, 2147483647, 'US', 'United States'), +('159.128.0.0', '159.128.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('159.129.0.0', '159.129.255.255', 2147483647, 2147483647, 'US', 'United States'), +('159.130.0.0', '159.130.255.255', 2147483647, 2147483647, 'NO', 'Norway'), +('159.131.0.0', '159.133.255.255', 2147483647, 2147483647, 'US', 'United States'), +('159.134.0.0', '159.134.255.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('159.135.0.0', '159.143.255.255', 2147483647, 2147483647, 'US', 'United States'), +('159.144.0.0', '159.144.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('159.145.0.0', '159.145.255.255', 2147483647, 2147483647, 'US', 'United States'), +('159.147.0.0', '159.147.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('159.148.0.0', '159.148.255.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('159.149.0.0', '159.149.255.255', 2147483647, 2147483647, 'IT', 'Italy'), +('159.150.0.0', '159.150.255.255', 2147483647, 2147483647, 'US', 'United States'), +('159.151.0.0', '159.151.255.255', 2147483647, 2147483647, 'FR', 'France'), +('159.152.0.0', '159.152.255.255', 2147483647, 2147483647, 'FI', 'Finland'), +('159.153.0.0', '159.153.255.255', 2147483647, 2147483647, 'US', 'United States'), +('159.154.0.0', '159.154.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('159.155.0.0', '159.155.255.255', 2147483647, 2147483647, 'US', 'United States'), +('159.156.0.0', '159.156.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('159.157.0.0', '159.158.255.255', 2147483647, 2147483647, 'US', 'United States'), +('159.159.0.0', '159.159.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('159.161.0.0', '159.161.255.255', 2147483647, 2147483647, 'US', 'United States'), +('159.162.0.0', '159.162.255.255', 2147483647, 2147483647, 'NO', 'Norway'), +('159.163.0.0', '159.166.255.255', 2147483647, 2147483647, 'US', 'United States'), +('159.167.0.0', '159.167.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('159.168.0.0', '159.168.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('159.169.0.0', '159.169.255.255', 2147483647, 2147483647, 'US', 'United States'), +('159.170.0.0', '159.170.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('159.171.0.0', '159.171.255.255', 2147483647, 2147483647, 'NO', 'Norway'), +('159.172.0.0', '159.172.255.255', 2147483647, 2147483647, 'US', 'United States'), +('159.173.0.0', '159.173.255.255', 2147483647, 2147483647, 'FR', 'France'), +('159.174.0.0', '159.174.255.255', 2147483647, 2147483647, 'US', 'United States'), +('159.175.0.0', '159.175.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('159.176.0.0', '159.176.255.255', 2147483647, 2147483647, 'US', 'United States'), +('159.177.0.0', '159.177.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('159.178.0.0', '159.178.255.255', 2147483647, 2147483647, 'US', 'United States'), +('159.179.0.0', '159.179.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('159.180.0.0', '159.180.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('159.181.0.0', '159.189.255.255', 2147483647, 2147483647, 'US', 'United States'), +('159.190.0.0', '159.190.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('159.191.0.0', '159.192.255.255', 2147483647, 2147483647, 'US', 'United States'), +('159.193.0.0', '159.194.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('159.195.0.0', '159.195.255.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('159.196.0.0', '159.196.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('159.197.0.0', '159.197.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('159.198.0.0', '159.199.255.255', 2147483647, 2147483647, 'US', 'United States'), +('159.200.0.0', '159.200.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('159.201.0.0', '159.204.255.255', 2147483647, 2147483647, 'US', 'United States'), +('159.206.0.0', '159.206.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('159.207.0.0', '159.207.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('159.208.0.0', '159.208.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('159.209.0.0', '159.209.255.255', 2147483647, 2147483647, 'US', 'United States'), +('159.210.0.0', '159.210.255.255', 2147483647, 2147483647, 'IT', 'Italy'), +('159.211.0.0', '159.211.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('159.212.0.0', '159.212.255.255', 2147483647, 2147483647, 'US', 'United States'), +('159.213.0.0', '159.213.255.255', 2147483647, 2147483647, 'IT', 'Italy'), +('159.214.0.0', '159.215.255.255', 2147483647, 2147483647, 'US', 'United States'), +('159.216.0.0', '159.216.255.255', 2147483647, 2147483647, 'NO', 'Norway'), +('159.217.0.0', '159.217.255.255', 2147483647, 2147483647, 'FR', 'France'), +('159.218.0.0', '159.218.255.255', 2147483647, 2147483647, 'US', 'United States'), +('159.219.0.0', '159.219.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('159.220.0.0', '159.223.255.255', 2147483647, 2147483647, 'US', 'United States'), +('159.225.0.0', '159.225.255.255', 2147483647, 2147483647, 'US', 'United States'), +('159.226.0.0', '159.226.255.255', 2147483647, 2147483647, 'CN', 'China'), +('159.227.0.0', '159.227.255.255', 2147483647, 2147483647, 'US', 'United States'), +('159.228.0.0', '159.228.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('159.229.0.0', '159.230.255.255', 2147483647, 2147483647, 'US', 'United States'), +('159.231.0.0', '159.231.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('159.232.0.0', '159.232.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('159.233.0.0', '159.235.255.255', 2147483647, 2147483647, 'US', 'United States'), +('159.236.0.0', '159.236.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('159.237.0.0', '159.237.255.255', 2147483647, 2147483647, 'ES', 'Spain'), +('159.238.0.0', '159.238.255.255', 2147483647, 2147483647, 'US', 'United States'), +('159.239.0.0', '159.239.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('159.240.0.0', '159.240.255.255', 2147483647, 2147483647, 'US', 'United States'), +('159.241.0.0', '159.241.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('159.242.0.0', '159.243.255.255', 2147483647, 2147483647, 'US', 'United States'), +('159.244.0.0', '159.245.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('159.246.0.0', '159.247.255.255', 2147483647, 2147483647, 'US', 'United States'), +('159.248.0.0', '159.248.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('159.249.0.0', '159.252.255.255', 2147483647, 2147483647, 'US', 'United States'), +('159.254.0.0', '159.254.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('160.0.0.0', '160.3.255.255', 2147483647, 2147483647, 'US', 'United States'), +('160.4.0.0', '160.4.255.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('160.5.0.0', '160.5.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('160.6.0.0', '160.6.255.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('160.7.0.0', '160.7.255.255', 2147483647, 2147483647, 'US', 'United States'), +('160.8.0.0', '160.8.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('160.9.0.0', '160.9.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('160.10.0.0', '160.10.255.255', 2147483647, 2147483647, 'US', 'United States'), +('160.11.0.0', '160.30.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('160.31.0.0', '160.37.255.255', 2147483647, 2147483647, 'US', 'United States'), +('160.38.0.0', '160.38.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('160.39.0.0', '160.39.255.255', 2147483647, 2147483647, 'US', 'United States'), +('160.40.0.0', '160.40.255.255', 2147483647, 2147483647, 'GR', 'Greece'), +('160.41.0.0', '160.43.255.255', 2147483647, 2147483647, 'US', 'United States'), +('160.44.0.0', '160.51.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('160.52.0.0', '160.52.255.255', 2147483647, 2147483647, 'AT', 'Austria'), +('160.53.0.0', '160.53.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('160.54.0.0', '160.58.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('160.59.0.0', '160.59.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('160.60.0.0', '160.60.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('160.61.0.0', '160.62.8.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('160.62.9.0', '160.62.9.255', 2147483647, 2147483647, 'CN', 'China'), +('160.62.10.0', '160.62.11.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('160.62.12.0', '160.62.13.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('160.62.14.0', '160.62.15.255', 2147483647, 2147483647, 'US', 'United States'), +('160.62.16.0', '160.63.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('160.64.0.0', '160.64.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('160.65.0.0', '160.65.255.255', 2147483647, 2147483647, 'US', 'United States'), +('160.66.0.0', '160.66.255.255', 2147483647, 2147483647, 'IT', 'Italy'), +('160.67.0.0', '160.68.255.255', 2147483647, 2147483647, 'NO', 'Norway'), +('160.69.0.0', '160.69.255.255', 2147483647, 2147483647, 'US', 'United States'), +('160.70.0.0', '160.70.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('160.71.0.0', '160.71.255.255', 2147483647, 2147483647, 'FI', 'Finland'), +('160.72.0.0', '160.72.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('160.73.0.0', '160.73.255.255', 2147483647, 2147483647, 'US', 'United States'), +('160.74.0.0', '160.74.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('160.75.0.0', '160.75.255.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('160.76.0.0', '160.76.255.255', 2147483647, 2147483647, 'US', 'United States'), +('160.78.0.0', '160.78.255.255', 2147483647, 2147483647, 'IT', 'Italy'), +('160.79.0.0', '160.79.195.31', 2147483647, 2147483647, 'US', 'United States'), +('160.79.195.32', '160.79.195.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('160.79.195.64', '160.79.255.255', 2147483647, 2147483647, 'US', 'United States'), +('160.80.0.0', '160.80.255.255', 2147483647, 2147483647, 'IT', 'Italy'), +('160.81.0.0', '160.84.255.255', 2147483647, 2147483647, 'US', 'United States'), +('160.85.0.0', '160.85.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('160.86.0.0', '160.91.255.255', 2147483647, 2147483647, 'US', 'United States'), +('160.92.0.0', '160.92.255.255', 2147483647, 2147483647, 'FR', 'France'), +('160.93.0.0', '160.95.255.255', 2147483647, 2147483647, 'US', 'United States'), +('160.96.0.0', '160.96.255.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('160.97.0.0', '160.97.255.255', 2147483647, 2147483647, 'IT', 'Italy'), +('160.98.0.0', '160.98.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('160.99.0.0', '160.99.255.255', 2147483647, 2147483647, 'RS', 'Serbia'), +('160.100.0.0', '160.100.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('160.101.0.0', '160.102.255.255', 2147483647, 2147483647, 'US', 'United States'), +('160.103.0.0', '160.103.255.255', 2147483647, 2147483647, 'FR', 'France'), +('160.104.0.0', '160.104.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('160.106.0.0', '160.106.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('160.107.0.0', '160.112.255.255', 2147483647, 2147483647, 'US', 'United States'), +('160.114.0.0', '160.114.255.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('160.115.0.0', '160.124.255.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('160.125.0.0', '160.159.255.255', 2147483647, 2147483647, 'US', 'United States'), +('160.180.0.0', '160.180.255.255', 2147483647, 2147483647, 'IT', 'Italy'), +('160.184.0.0', '160.204.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('160.205.0.0', '160.205.255.255', 2147483647, 2147483647, 'US', 'United States'), +('160.206.0.0', '160.206.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('160.207.0.0', '160.209.255.255', 2147483647, 2147483647, 'US', 'United States'), +('160.210.0.0', '160.210.255.255', 2147483647, 2147483647, 'IS', 'Iceland'), +('160.211.0.0', '160.211.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('160.212.0.0', '160.212.255.255', 2147483647, 2147483647, 'US', 'United States'), +('160.213.0.0', '160.213.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('160.214.0.0', '160.214.255.255', 2147483647, 2147483647, 'ES', 'Spain'), +('160.215.0.0', '160.215.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('160.216.0.0', '160.218.255.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('160.219.0.0', '160.219.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('160.220.0.0', '160.220.255.255', 2147483647, 2147483647, 'IT', 'Italy'), +('160.221.0.0', '160.221.255.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('160.222.0.0', '160.222.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('160.223.0.0', '160.223.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('160.227.0.0', '160.227.255.255', 2147483647, 2147483647, 'US', 'United States'), +('160.228.0.0', '160.228.255.255', 2147483647, 2147483647, 'FR', 'France'), +('160.229.0.0', '160.232.255.255', 2147483647, 2147483647, 'US', 'United States'), +('160.233.0.0', '160.252.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('160.253.0.0', '160.254.255.255', 2147483647, 2147483647, 'US', 'United States'), +('161.1.0.0', '161.1.255.255', 2147483647, 2147483647, 'US', 'United States'), +('161.2.0.0', '161.2.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('161.3.0.0', '161.3.255.255', 2147483647, 2147483647, 'FR', 'France'), +('161.4.0.0', '161.4.255.255', 2147483647, 2147483647, 'NO', 'Norway'), +('161.5.0.0', '161.5.255.255', 2147483647, 2147483647, 'AT', 'Austria'), +('161.6.0.0', '161.7.255.255', 2147483647, 2147483647, 'US', 'United States'), +('161.8.0.0', '161.8.255.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('161.9.0.0', '161.9.255.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('161.11.0.0', '161.11.255.255', 2147483647, 2147483647, 'US', 'United States'), +('161.12.0.0', '161.12.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('161.13.0.0', '161.16.255.255', 2147483647, 2147483647, 'US', 'United States'), +('161.17.0.0', '161.17.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('161.19.0.0', '161.19.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('161.20.0.0', '161.20.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('161.21.0.0', '161.21.255.255', 2147483647, 2147483647, 'US', 'United States'), +('161.23.0.0', '161.23.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('161.24.0.0', '161.24.255.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('161.25.0.0', '161.25.255.255', 2147483647, 2147483647, 'CL', 'Chile'), +('161.26.0.0', '161.26.255.255', 2147483647, 2147483647, 'US', 'United States'), +('161.27.0.0', '161.27.255.255', 2147483647, 2147483647, 'IT', 'Italy'), +('161.28.0.0', '161.28.255.255', 2147483647, 2147483647, 'US', 'United States'), +('161.29.0.0', '161.29.255.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('161.30.0.0', '161.30.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('161.31.0.0', '161.36.255.255', 2147483647, 2147483647, 'US', 'United States'), +('161.37.0.0', '161.37.255.255', 2147483647, 2147483647, 'ES', 'Spain'), +('161.38.0.0', '161.40.255.255', 2147483647, 2147483647, 'US', 'United States'), +('161.41.0.0', '161.41.255.255', 2147483647, 2147483647, 'FI', 'Finland'), +('161.42.0.0', '161.42.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('161.43.0.0', '161.43.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('161.44.0.0', '161.47.255.255', 2147483647, 2147483647, 'US', 'United States'), +('161.48.0.0', '161.48.255.255', 2147483647, 2147483647, 'FR', 'France'), +('161.49.0.0', '161.49.255.255', 2147483647, 2147483647, 'US', 'United States'), +('161.50.0.0', '161.50.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('161.51.0.0', '161.51.255.255', 2147483647, 2147483647, 'US', 'United States'), +('161.52.0.0', '161.52.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('161.53.0.0', '161.53.255.255', 2147483647, 2147483647, 'HR', 'Croatia'), +('161.54.0.0', '161.54.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('161.55.0.0', '161.55.255.255', 2147483647, 2147483647, 'US', 'United States'), +('161.57.0.0', '161.58.255.255', 2147483647, 2147483647, 'US', 'United States'), +('161.59.0.0', '161.59.255.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('161.60.0.0', '161.61.255.255', 2147483647, 2147483647, 'US', 'United States'), +('161.62.0.0', '161.62.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('161.63.0.0', '161.63.255.255', 2147483647, 2147483647, 'US', 'United States'), +('161.64.0.0', '161.64.255.255', 2147483647, 2147483647, 'MO', 'Macau'), +('161.65.0.0', '161.66.255.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('161.67.0.0', '161.67.255.255', 2147483647, 2147483647, 'ES', 'Spain'), +('161.68.0.0', '161.70.255.255', 2147483647, 2147483647, 'US', 'United States'), +('161.71.0.0', '161.71.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('161.72.0.0', '161.72.255.255', 2147483647, 2147483647, 'ES', 'Spain'), +('161.73.0.0', '161.74.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('161.75.0.0', '161.75.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('161.76.0.0', '161.76.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('161.77.0.0', '161.77.255.255', 2147483647, 2147483647, 'US', 'United States'), +('161.78.0.0', '161.78.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('161.79.0.0', '161.79.255.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('161.80.0.0', '161.82.255.255', 2147483647, 2147483647, 'US', 'United States'), +('161.83.0.0', '161.84.223.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('161.84.224.0', '161.84.255.255', 2147483647, 2147483647, 'US', 'United States'), +('161.85.0.0', '161.88.239.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('161.88.240.0', '161.88.255.255', 2147483647, 2147483647, 'US', 'United States'), +('161.89.0.0', '161.92.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('161.93.0.0', '161.96.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('161.97.0.0', '161.103.255.255', 2147483647, 2147483647, 'US', 'United States'), +('161.104.0.0', '161.106.255.255', 2147483647, 2147483647, 'FR', 'France'), +('161.107.0.0', '161.109.255.255', 2147483647, 2147483647, 'US', 'United States'), +('161.110.0.0', '161.110.255.255', 2147483647, 2147483647, 'AT', 'Austria'), +('161.111.0.0', '161.111.255.255', 2147483647, 2147483647, 'ES', 'Spain'), +('161.112.0.0', '161.112.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('161.113.0.0', '161.115.255.255', 2147483647, 2147483647, 'US', 'United States'), +('161.116.0.0', '161.116.255.255', 2147483647, 2147483647, 'ES', 'Spain'), +('161.117.0.0', '161.117.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('161.118.0.0', '161.118.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('161.119.0.0', '161.121.255.255', 2147483647, 2147483647, 'US', 'United States'), +('161.122.0.0', '161.122.255.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('161.123.0.0', '161.123.255.255', 2147483647, 2147483647, 'EU', 'Europe'), +('161.124.0.0', '161.125.255.255', 2147483647, 2147483647, 'US', 'United States'), +('161.126.0.0', '161.126.255.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('161.127.0.0', '161.130.255.255', 2147483647, 2147483647, 'US', 'United States'), +('161.131.0.0', '161.131.255.255', 2147483647, 2147483647, 'CL', 'Chile'), +('161.132.0.0', '161.132.255.255', 2147483647, 2147483647, 'PE', 'Peru'), +('161.133.0.0', '161.137.255.255', 2147483647, 2147483647, 'US', 'United States'), +('161.139.0.0', '161.139.255.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('161.141.0.0', '161.141.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('161.142.0.0', '161.142.255.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('161.143.0.0', '161.143.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('161.144.0.0', '161.145.255.255', 2147483647, 2147483647, 'US', 'United States'), +('161.146.0.0', '161.146.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('161.147.0.0', '161.147.255.255', 2147483647, 2147483647, 'IT', 'Italy'), +('161.148.0.0', '161.148.255.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('161.149.0.0', '161.151.255.255', 2147483647, 2147483647, 'US', 'United States'), +('161.152.0.0', '161.152.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('161.153.0.0', '161.157.255.255', 2147483647, 2147483647, 'US', 'United States'), +('161.158.0.0', '161.158.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('161.159.0.0', '161.183.255.255', 2147483647, 2147483647, 'US', 'United States'), +('161.184.0.0', '161.184.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('161.185.0.0', '161.186.255.255', 2147483647, 2147483647, 'US', 'United States'), +('161.187.0.0', '161.187.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('161.188.0.0', '161.189.255.255', 2147483647, 2147483647, 'US', 'United States'), +('161.190.0.0', '161.190.255.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('161.191.0.0', '161.195.255.255', 2147483647, 2147483647, 'US', 'United States'), +('161.196.0.0', '161.196.255.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('161.197.0.0', '161.199.255.255', 2147483647, 2147483647, 'US', 'United States'), +('161.200.0.0', '161.200.255.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('161.201.0.0', '161.201.255.255', 2147483647, 2147483647, 'US', 'United States'), +('161.202.0.0', '161.202.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('161.203.0.0', '161.206.255.255', 2147483647, 2147483647, 'US', 'United States'), +('161.207.0.0', '161.207.255.255', 2147483647, 2147483647, 'CN', 'China'), +('161.208.0.0', '161.215.255.255', 2147483647, 2147483647, 'US', 'United States'), +('161.216.0.0', '161.216.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('161.217.0.0', '161.228.255.255', 2147483647, 2147483647, 'US', 'United States'), +('161.229.0.0', '161.229.255.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('161.230.0.0', '161.237.255.255', 2147483647, 2147483647, 'US', 'United States'), +('161.238.0.0', '161.238.255.255', 2147483647, 2147483647, 'CL', 'Chile'), +('161.239.0.0', '161.245.255.255', 2147483647, 2147483647, 'US', 'United States'), +('161.246.0.0', '161.246.255.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('161.247.0.0', '161.247.255.255', 2147483647, 2147483647, 'US', 'United States'), +('161.248.0.0', '161.248.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('161.249.0.0', '161.251.255.255', 2147483647, 2147483647, 'US', 'United States'), +('161.252.0.0', '161.252.255.255', 2147483647, 2147483647, 'KW', 'Kuwait'), +('161.253.0.0', '161.254.255.255', 2147483647, 2147483647, 'US', 'United States'), +('162.0.0.0', '162.3.255.255', 2147483647, 2147483647, 'US', 'United States'), +('162.4.0.0', '162.4.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('162.5.0.0', '162.10.255.255', 2147483647, 2147483647, 'US', 'United States'), +('162.11.0.0', '162.11.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('162.12.0.0', '162.12.255.255', 2147483647, 2147483647, 'US', 'United States'), +('162.13.0.0', '162.13.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('162.14.0.0', '162.20.255.255', 2147483647, 2147483647, 'US', 'United States'), +('162.21.0.0', '162.21.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('162.22.0.0', '162.22.255.255', 2147483647, 2147483647, 'US', 'United States'), +('162.23.0.0', '162.23.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('162.24.0.0', '162.24.255.255', 2147483647, 2147483647, 'US', 'United States'), +('162.25.0.0', '162.25.255.255', 2147483647, 2147483647, 'AT', 'Austria'), +('162.26.0.0', '162.26.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('162.27.0.0', '162.37.255.255', 2147483647, 2147483647, 'US', 'United States'), +('162.38.0.0', '162.38.255.255', 2147483647, 2147483647, 'FR', 'France'), +('162.39.0.0', '162.52.255.255', 2147483647, 2147483647, 'US', 'United States'), +('162.53.0.0', '162.53.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('162.54.0.0', '162.71.255.255', 2147483647, 2147483647, 'US', 'United States'), +('162.73.0.0', '162.73.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('162.74.0.0', '162.84.255.255', 2147483647, 2147483647, 'US', 'United States'), +('162.85.0.0', '162.85.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('162.86.0.0', '162.86.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('162.87.0.0', '162.103.255.255', 2147483647, 2147483647, 'US', 'United States'), +('162.105.0.0', '162.105.255.255', 2147483647, 2147483647, 'CN', 'China'), +('162.106.0.0', '162.106.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('162.107.0.0', '162.111.255.255', 2147483647, 2147483647, 'US', 'United States'), +('162.112.0.0', '162.112.255.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('162.113.0.0', '162.121.255.255', 2147483647, 2147483647, 'US', 'United States'), +('162.122.0.0', '162.122.255.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('162.123.0.0', '162.138.255.255', 2147483647, 2147483647, 'US', 'United States'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('162.139.0.0', '162.139.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('162.140.0.0', '162.143.255.255', 2147483647, 2147483647, 'US', 'United States'), +('162.144.0.0', '162.147.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('163.1.0.0', '163.1.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('163.2.0.0', '163.2.255.255', 2147483647, 2147483647, 'US', 'United States'), +('163.3.0.0', '163.3.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('163.4.0.0', '163.4.255.255', 2147483647, 2147483647, 'US', 'United States'), +('163.5.0.0', '163.5.255.255', 2147483647, 2147483647, 'FR', 'France'), +('163.6.0.0', '163.6.255.255', 2147483647, 2147483647, 'US', 'United States'), +('163.7.0.0', '163.7.255.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('163.8.0.0', '163.8.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('163.9.0.0', '163.9.255.255', 2147483647, 2147483647, 'FR', 'France'), +('163.10.0.0', '163.10.255.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('163.11.0.0', '163.12.255.255', 2147483647, 2147483647, 'US', 'United States'), +('163.13.0.0', '163.32.255.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('163.33.0.0', '163.33.255.255', 2147483647, 2147483647, 'US', 'United States'), +('163.34.0.0', '163.34.255.255', 2147483647, 2147483647, 'NO', 'Norway'), +('163.35.0.0', '163.41.255.255', 2147483647, 2147483647, 'US', 'United States'), +('163.42.0.0', '163.61.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('163.62.0.0', '163.116.255.255', 2147483647, 2147483647, 'FR', 'France'), +('163.117.0.0', '163.117.255.255', 2147483647, 2147483647, 'ES', 'Spain'), +('163.118.0.0', '163.118.255.255', 2147483647, 2147483647, 'US', 'United States'), +('163.119.0.0', '163.119.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('163.120.0.0', '163.120.255.255', 2147483647, 2147483647, 'US', 'United States'), +('163.121.0.0', '163.121.255.255', 2147483647, 2147483647, 'EG', 'Egypt'), +('163.122.0.0', '163.122.255.255', 2147483647, 2147483647, 'IN', 'India'), +('163.123.0.0', '163.123.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('163.124.0.0', '163.124.255.255', 2147483647, 2147483647, 'US', 'United States'), +('163.126.0.0', '163.126.255.255', 2147483647, 2147483647, 'US', 'United States'), +('163.127.0.0', '163.128.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('163.129.0.0', '163.129.255.255', 2147483647, 2147483647, 'US', 'United States'), +('163.130.0.0', '163.149.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('163.150.0.0', '163.151.255.255', 2147483647, 2147483647, 'US', 'United States'), +('163.152.0.0', '163.152.255.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('163.153.0.0', '163.154.255.255', 2147483647, 2147483647, 'US', 'United States'), +('163.155.0.0', '163.155.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('163.156.0.0', '163.156.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('163.157.0.0', '163.157.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('163.158.0.0', '163.158.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('163.159.0.0', '163.159.255.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('163.160.0.0', '163.160.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('163.161.0.0', '163.161.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('163.162.0.0', '163.162.255.255', 2147483647, 2147483647, 'IT', 'Italy'), +('163.163.0.0', '163.163.255.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('163.164.0.0', '163.164.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('163.165.0.0', '163.165.191.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('163.165.192.0', '163.165.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('163.166.0.0', '163.167.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('163.168.0.0', '163.168.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('163.169.0.0', '163.172.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('163.173.0.0', '163.173.255.255', 2147483647, 2147483647, 'FR', 'France'), +('163.174.0.0', '163.174.255.255', 2147483647, 2147483647, 'NO', 'Norway'), +('163.175.0.0', '163.175.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('163.176.0.0', '163.176.255.255', 2147483647, 2147483647, 'US', 'United States'), +('163.178.0.0', '163.178.255.255', 2147483647, 2147483647, 'CR', 'Costa Rica'), +('163.180.0.0', '163.180.255.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('163.181.0.0', '163.188.255.255', 2147483647, 2147483647, 'US', 'United States'), +('163.189.0.0', '163.189.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('163.190.0.0', '163.194.255.255', 2147483647, 2147483647, 'US', 'United States'), +('163.195.0.0', '163.203.255.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('163.204.0.0', '163.207.255.255', 2147483647, 2147483647, 'US', 'United States'), +('163.208.0.0', '163.227.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('163.228.0.0', '163.231.255.255', 2147483647, 2147483647, 'US', 'United States'), +('163.232.0.0', '163.233.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('163.234.0.0', '163.238.255.255', 2147483647, 2147483647, 'US', 'United States'), +('163.239.0.0', '163.239.255.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('163.240.0.0', '163.246.255.255', 2147483647, 2147483647, 'US', 'United States'), +('163.247.0.0', '163.247.255.255', 2147483647, 2147483647, 'CL', 'Chile'), +('163.248.0.0', '163.249.255.255', 2147483647, 2147483647, 'US', 'United States'), +('163.250.0.0', '163.250.255.255', 2147483647, 2147483647, 'CL', 'Chile'), +('163.251.0.0', '163.255.255.255', 2147483647, 2147483647, 'US', 'United States'), +('164.1.0.0', '164.2.255.255', 2147483647, 2147483647, 'FR', 'France'), +('164.3.0.0', '164.3.255.255', 2147483647, 2147483647, 'AT', 'Austria'), +('164.4.0.0', '164.4.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('164.5.0.0', '164.5.255.255', 2147483647, 2147483647, 'FI', 'Finland'), +('164.6.0.0', '164.6.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('164.7.0.0', '164.7.255.255', 2147483647, 2147483647, 'FR', 'France'), +('164.8.0.0', '164.8.255.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('164.9.0.0', '164.10.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('164.11.0.0', '164.12.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('164.13.0.0', '164.13.255.255', 2147483647, 2147483647, 'FI', 'Finland'), +('164.14.0.0', '164.14.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('164.15.0.0', '164.15.255.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('164.16.0.0', '164.34.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('164.35.0.0', '164.35.255.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('164.36.0.0', '164.36.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('164.37.0.0', '164.37.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('164.38.0.0', '164.39.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('164.41.0.0', '164.41.255.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('164.42.0.0', '164.42.255.255', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('164.43.0.0', '164.43.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('164.44.0.0', '164.45.255.255', 2147483647, 2147483647, 'US', 'United States'), +('164.46.0.0', '164.46.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('164.47.0.0', '164.47.255.255', 2147483647, 2147483647, 'US', 'United States'), +('164.48.0.0', '164.48.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('164.49.0.0', '164.52.255.255', 2147483647, 2147483647, 'US', 'United States'), +('164.53.0.0', '164.53.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('164.54.0.0', '164.58.255.255', 2147483647, 2147483647, 'US', 'United States'), +('164.59.0.0', '164.59.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('164.60.0.0', '164.60.255.255', 2147483647, 2147483647, 'FR', 'France'), +('164.61.0.0', '164.61.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('164.62.0.0', '164.68.255.255', 2147483647, 2147483647, 'US', 'United States'), +('164.69.0.0', '164.71.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('164.72.0.0', '164.72.255.255', 2147483647, 2147483647, 'US', 'United States'), +('164.73.0.0', '164.73.255.255', 2147483647, 2147483647, 'UY', 'Uruguay'), +('164.74.0.0', '164.74.255.255', 2147483647, 2147483647, 'US', 'United States'), +('164.75.0.0', '164.75.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('164.76.0.0', '164.76.255.255', 2147483647, 2147483647, 'US', 'United States'), +('164.77.0.0', '164.77.182.255', 2147483647, 2147483647, 'CL', 'Chile'), +('164.77.183.0', '164.77.186.255', 2147483647, 2147483647, 'PE', 'Peru'), +('164.77.187.0', '164.77.255.255', 2147483647, 2147483647, 'CL', 'Chile'), +('164.78.0.0', '164.78.255.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('164.79.0.0', '164.79.255.255', 2147483647, 2147483647, 'US', 'United States'), +('164.80.0.0', '164.80.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('164.81.0.0', '164.81.255.255', 2147483647, 2147483647, 'FR', 'France'), +('164.82.0.0', '164.84.255.255', 2147483647, 2147483647, 'US', 'United States'), +('164.85.0.0', '164.85.255.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('164.86.0.0', '164.87.255.255', 2147483647, 2147483647, 'US', 'United States'), +('164.88.0.0', '164.88.255.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('164.89.0.0', '164.95.255.255', 2147483647, 2147483647, 'US', 'United States'), +('164.96.0.0', '164.96.255.255', 2147483647, 2147483647, 'CL', 'Chile'), +('164.97.0.0', '164.97.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('164.98.0.0', '164.98.255.255', 2147483647, 2147483647, 'CL', 'Chile'), +('164.99.0.0', '164.99.255.255', 2147483647, 2147483647, 'US', 'United States'), +('164.100.0.0', '164.100.255.255', 2147483647, 2147483647, 'IN', 'India'), +('164.101.0.0', '164.101.255.255', 2147483647, 2147483647, 'US', 'United States'), +('164.102.0.0', '164.102.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('164.103.0.0', '164.107.255.255', 2147483647, 2147483647, 'US', 'United States'), +('164.108.0.0', '164.108.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('164.109.0.0', '164.111.255.255', 2147483647, 2147483647, 'US', 'United States'), +('164.112.0.0', '164.112.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('164.113.0.0', '164.114.255.255', 2147483647, 2147483647, 'US', 'United States'), +('164.115.0.0', '164.115.255.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('164.116.0.0', '164.123.255.255', 2147483647, 2147483647, 'US', 'United States'), +('164.124.0.0', '164.125.255.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('164.128.0.0', '164.128.74.59', 2147483647, 2147483647, 'CH', 'Switzerland'), +('164.128.74.60', '164.128.74.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('164.128.74.64', '164.128.121.31', 2147483647, 2147483647, 'CH', 'Switzerland'), +('164.128.121.32', '164.128.121.35', 2147483647, 2147483647, 'LI', 'Liechtenstein'), +('164.128.121.36', '164.128.122.175', 2147483647, 2147483647, 'CH', 'Switzerland'), +('164.128.122.176', '164.128.122.179', 2147483647, 2147483647, 'LI', 'Liechtenstein'), +('164.128.122.180', '164.128.122.187', 2147483647, 2147483647, 'CH', 'Switzerland'), +('164.128.122.188', '164.128.122.191', 2147483647, 2147483647, 'LI', 'Liechtenstein'), +('164.128.122.192', '164.128.125.79', 2147483647, 2147483647, 'CH', 'Switzerland'), +('164.128.125.80', '164.128.125.83', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('164.128.125.84', '164.128.166.31', 2147483647, 2147483647, 'CH', 'Switzerland'), +('164.128.166.32', '164.128.166.35', 2147483647, 2147483647, 'LI', 'Liechtenstein'), +('164.128.166.36', '164.128.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('164.129.0.0', '164.129.255.255', 2147483647, 2147483647, 'FR', 'France'), +('164.130.0.0', '164.130.255.255', 2147483647, 2147483647, 'IT', 'Italy'), +('164.131.0.0', '164.131.255.255', 2147483647, 2147483647, 'FR', 'France'), +('164.132.0.0', '164.132.255.255', 2147483647, 2147483647, 'IT', 'Italy'), +('164.133.0.0', '164.133.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('164.134.0.0', '164.134.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('164.135.0.0', '164.135.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('164.136.0.0', '164.137.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('164.138.0.0', '164.138.255.255', 2147483647, 2147483647, 'FR', 'France'), +('164.139.0.0', '164.139.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('164.140.0.0', '164.140.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('164.141.0.0', '164.141.255.255', 2147483647, 2147483647, 'FI', 'Finland'), +('164.142.0.0', '164.142.255.255', 2147483647, 2147483647, 'IT', 'Italy'), +('164.143.0.0', '164.143.247.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('164.143.248.0', '164.143.251.255', 2147483647, 2147483647, 'US', 'United States'), +('164.143.252.0', '164.143.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('164.144.0.0', '164.145.255.255', 2147483647, 2147483647, 'US', 'United States'), +('164.146.0.0', '164.151.255.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('164.152.0.0', '164.154.255.255', 2147483647, 2147483647, 'US', 'United States'), +('164.155.0.0', '164.155.255.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('164.156.0.0', '164.159.255.255', 2147483647, 2147483647, 'US', 'United States'), +('164.160.0.0', '164.163.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('164.164.0.0', '164.164.255.255', 2147483647, 2147483647, 'IN', 'India'), +('164.165.0.0', '164.165.255.255', 2147483647, 2147483647, 'US', 'United States'), +('164.166.0.0', '164.166.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('164.167.0.0', '164.176.255.255', 2147483647, 2147483647, 'US', 'United States'), +('164.178.0.0', '164.178.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('164.179.0.0', '164.255.255.255', 2147483647, 2147483647, 'US', 'United States'), +('165.1.0.0', '165.2.255.255', 2147483647, 2147483647, 'US', 'United States'), +('165.3.0.0', '165.5.255.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('165.6.0.0', '165.7.255.255', 2147483647, 2147483647, 'US', 'United States'), +('165.8.0.0', '165.11.255.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('165.12.0.0', '165.12.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('165.13.0.0', '165.13.255.255', 2147483647, 2147483647, 'US', 'United States'), +('165.14.0.0', '165.15.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('165.17.0.0', '165.18.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('165.19.0.0', '165.20.255.255', 2147483647, 2147483647, 'US', 'United States'), +('165.21.0.0', '165.21.255.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('165.22.0.0', '165.22.255.255', 2147483647, 2147483647, 'US', 'United States'), +('165.23.0.0', '165.23.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('165.24.0.0', '165.24.255.255', 2147483647, 2147483647, 'US', 'United States'), +('165.25.0.0', '165.25.255.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('165.26.0.0', '165.30.255.255', 2147483647, 2147483647, 'US', 'United States'), +('165.31.0.0', '165.31.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('165.32.0.0', '165.66.255.255', 2147483647, 2147483647, 'US', 'United States'), +('165.67.0.0', '165.67.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('165.68.0.0', '165.68.255.255', 2147483647, 2147483647, 'US', 'United States'), +('165.69.0.0', '165.69.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('165.70.0.0', '165.75.255.255', 2147483647, 2147483647, 'US', 'United States'), +('165.76.0.0', '165.76.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('165.77.0.0', '165.77.255.255', 2147483647, 2147483647, 'US', 'United States'), +('165.78.0.0', '165.78.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('165.79.0.0', '165.83.255.255', 2147483647, 2147483647, 'US', 'United States'), +('165.84.0.0', '165.84.255.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('165.85.0.0', '165.85.255.255', 2147483647, 2147483647, 'US', 'United States'), +('165.86.0.0', '165.86.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('165.87.0.0', '165.92.255.255', 2147483647, 2147483647, 'US', 'United States'), +('165.93.0.0', '165.93.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('165.94.0.0', '165.95.255.255', 2147483647, 2147483647, 'US', 'United States'), +('165.96.0.0', '165.96.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('165.97.0.0', '165.97.255.255', 2147483647, 2147483647, 'US', 'United States'), +('165.98.0.0', '165.98.255.255', 2147483647, 2147483647, 'NI', 'Nicaragua'), +('165.99.0.0', '165.102.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('165.103.0.0', '165.107.255.255', 2147483647, 2147483647, 'US', 'United States'), +('165.108.0.0', '165.108.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('165.109.0.0', '165.113.255.255', 2147483647, 2147483647, 'US', 'United States'), +('165.114.0.0', '165.114.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('165.115.0.0', '165.115.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('165.116.0.0', '165.117.255.255', 2147483647, 2147483647, 'US', 'United States'), +('165.118.0.0', '165.118.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('165.119.0.0', '165.131.255.255', 2147483647, 2147483647, 'US', 'United States'), +('165.132.0.0', '165.133.255.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('165.134.0.0', '165.140.255.255', 2147483647, 2147483647, 'US', 'United States'), +('165.141.0.0', '165.141.255.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('165.142.0.0', '165.142.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('165.143.0.0', '165.149.255.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('165.150.0.0', '165.153.255.255', 2147483647, 2147483647, 'US', 'United States'), +('165.154.0.0', '165.154.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('165.155.0.0', '165.164.255.255', 2147483647, 2147483647, 'US', 'United States'), +('165.165.0.0', '165.165.255.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('165.166.0.0', '165.177.255.255', 2147483647, 2147483647, 'US', 'United States'), +('165.178.0.0', '165.178.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('165.179.0.0', '165.179.255.255', 2147483647, 2147483647, 'US', 'United States'), +('165.180.0.0', '165.180.255.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('165.181.0.0', '165.181.255.255', 2147483647, 2147483647, 'US', 'United States'), +('165.182.0.0', '165.183.255.255', 2147483647, 2147483647, 'CL', 'Chile'), +('165.184.0.0', '165.184.255.255', 2147483647, 2147483647, 'US', 'United States'), +('165.185.0.0', '165.185.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('165.186.0.0', '165.186.255.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('165.187.0.0', '165.187.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('165.188.0.0', '165.190.255.255', 2147483647, 2147483647, 'US', 'United States'), +('165.191.0.0', '165.191.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('165.192.0.0', '165.193.58.223', 2147483647, 2147483647, 'US', 'United States'), +('165.193.58.224', '165.193.58.255', 2147483647, 2147483647, 'CA', 'Canada'), +('165.193.59.0', '165.193.126.15', 2147483647, 2147483647, 'US', 'United States'), +('165.193.126.16', '165.193.126.23', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('165.193.126.24', '165.193.143.255', 2147483647, 2147483647, 'US', 'United States'), +('165.193.144.0', '165.193.144.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('165.193.145.0', '165.193.147.255', 2147483647, 2147483647, 'US', 'United States'), +('165.193.148.0', '165.193.149.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('165.193.150.0', '165.193.150.255', 2147483647, 2147483647, 'US', 'United States'), +('165.193.151.0', '165.193.151.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('165.193.152.0', '165.193.152.31', 2147483647, 2147483647, 'US', 'United States'), +('165.193.152.32', '165.193.152.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('165.193.152.96', '165.193.153.127', 2147483647, 2147483647, 'US', 'United States'), +('165.193.153.128', '165.193.153.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('165.193.153.160', '165.193.153.207', 2147483647, 2147483647, 'US', 'United States'), +('165.193.153.208', '165.193.153.215', 2147483647, 2147483647, 'DE', 'Germany'), +('165.193.153.216', '165.193.155.255', 2147483647, 2147483647, 'US', 'United States'), +('165.193.156.0', '165.193.156.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('165.193.157.0', '165.193.159.255', 2147483647, 2147483647, 'US', 'United States'), +('165.193.160.0', '165.193.161.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('165.193.162.0', '165.193.163.127', 2147483647, 2147483647, 'US', 'United States'), +('165.193.163.128', '165.193.163.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('165.193.163.144', '165.193.163.159', 2147483647, 2147483647, 'FR', 'France'), +('165.193.163.160', '165.193.163.255', 2147483647, 2147483647, 'US', 'United States'), +('165.193.164.0', '165.193.168.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('165.193.168.240', '165.193.169.255', 2147483647, 2147483647, 'US', 'United States'), +('165.193.170.0', '165.193.171.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('165.193.172.0', '165.193.172.31', 2147483647, 2147483647, 'US', 'United States'), +('165.193.172.32', '165.193.172.71', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('165.193.172.72', '165.193.172.127', 2147483647, 2147483647, 'US', 'United States'), +('165.193.172.128', '165.193.173.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('165.193.174.0', '165.193.174.255', 2147483647, 2147483647, 'US', 'United States'), +('165.193.175.0', '165.193.175.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('165.193.176.0', '165.193.200.79', 2147483647, 2147483647, 'US', 'United States'), +('165.193.200.80', '165.193.200.95', 2147483647, 2147483647, 'CA', 'Canada'), +('165.193.200.96', '165.193.202.255', 2147483647, 2147483647, 'US', 'United States'), +('165.193.203.0', '165.193.203.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('165.193.203.32', '165.193.205.151', 2147483647, 2147483647, 'US', 'United States'), +('165.193.205.152', '165.193.205.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('165.193.205.160', '165.193.220.255', 2147483647, 2147483647, 'US', 'United States'), +('165.193.221.0', '165.193.221.31', 2147483647, 2147483647, 'BM', 'Bermuda'), +('165.193.221.32', '165.193.222.207', 2147483647, 2147483647, 'US', 'United States'), +('165.193.222.208', '165.193.222.215', 2147483647, 2147483647, 'CA', 'Canada'), +('165.193.222.216', '165.193.255.255', 2147483647, 2147483647, 'US', 'United States'), +('165.194.0.0', '165.194.255.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('165.195.0.0', '165.201.255.255', 2147483647, 2147483647, 'US', 'United States'), +('165.202.0.0', '165.202.255.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('165.203.0.0', '165.204.255.255', 2147483647, 2147483647, 'US', 'United States'), +('165.205.0.0', '165.205.255.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('165.206.0.0', '165.208.255.255', 2147483647, 2147483647, 'US', 'United States'), +('165.209.0.0', '165.209.255.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('165.212.0.0', '165.212.255.255', 2147483647, 2147483647, 'US', 'United States'), +('165.213.0.0', '165.213.255.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('165.214.0.0', '165.219.255.255', 2147483647, 2147483647, 'US', 'United States'), +('165.220.0.0', '165.220.255.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('165.221.0.0', '165.221.255.255', 2147483647, 2147483647, 'US', 'United States'), +('165.222.0.0', '165.222.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('165.223.0.0', '165.227.255.255', 2147483647, 2147483647, 'US', 'United States'), +('165.228.0.0', '165.228.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('165.229.0.0', '165.229.255.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('165.230.0.0', '165.230.255.255', 2147483647, 2147483647, 'US', 'United States'), +('165.231.0.0', '165.231.255.255', 2147483647, 2147483647, 'GN', 'Guinea'), +('165.232.0.0', '165.232.255.255', 2147483647, 2147483647, 'US', 'United States'), +('165.233.0.0', '165.233.255.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('165.234.0.0', '165.239.255.255', 2147483647, 2147483647, 'US', 'United States'), +('165.240.0.0', '165.240.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('165.241.0.0', '165.242.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('165.243.0.0', '165.244.255.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('165.245.0.0', '165.245.255.255', 2147483647, 2147483647, 'US', 'United States'), +('165.246.0.0', '165.246.255.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('165.247.0.0', '166.7.255.255', 2147483647, 2147483647, 'US', 'United States'), +('166.8.0.0', '166.15.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('166.16.0.0', '166.47.255.255', 2147483647, 2147483647, 'US', 'United States'), +('166.49.0.0', '166.49.3.47', 2147483647, 2147483647, 'US', 'United States'), +('166.49.3.48', '166.49.3.55', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('166.49.3.56', '166.49.6.7', 2147483647, 2147483647, 'US', 'United States'), +('166.49.6.8', '166.49.6.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('166.49.6.16', '166.49.22.15', 2147483647, 2147483647, 'US', 'United States'), +('166.49.22.16', '166.49.22.23', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('166.49.22.24', '166.49.37.255', 2147483647, 2147483647, 'US', 'United States'), +('166.49.38.0', '166.49.38.7', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('166.49.38.8', '166.49.62.15', 2147483647, 2147483647, 'US', 'United States'), +('166.49.62.16', '166.49.62.31', 2147483647, 2147483647, 'CA', 'Canada'), +('166.49.62.32', '166.49.127.255', 2147483647, 2147483647, 'US', 'United States'), +('166.49.128.0', '166.49.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('166.50.0.0', '166.63.255.255', 2147483647, 2147483647, 'US', 'United States'), +('166.64.0.0', '166.64.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('166.65.0.0', '166.65.255.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('166.66.0.0', '166.74.255.255', 2147483647, 2147483647, 'US', 'United States'), +('166.75.0.0', '166.75.255.255', 2147483647, 2147483647, 'CL', 'Chile'), +('166.76.0.0', '166.77.255.255', 2147483647, 2147483647, 'US', 'United States'), +('166.79.0.0', '166.79.255.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('166.80.0.0', '166.80.255.255', 2147483647, 2147483647, 'US', 'United States'), +('166.81.0.0', '166.81.255.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('166.82.0.0', '166.82.72.255', 2147483647, 2147483647, 'US', 'United States'), +('166.82.73.0', '166.82.73.255', 2147483647, 2147483647, 'AQ', 'Antarctica'), +('166.82.74.0', '166.82.255.255', 2147483647, 2147483647, 'US', 'United States'), +('166.83.0.0', '166.83.255.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('166.84.0.0', '166.84.255.255', 2147483647, 2147483647, 'US', 'United States'), +('166.85.0.0', '166.85.255.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('166.86.0.0', '166.86.255.255', 2147483647, 2147483647, 'US', 'United States'), +('166.87.0.0', '166.87.255.255', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('166.88.0.0', '166.99.255.255', 2147483647, 2147483647, 'US', 'United States'), +('166.100.0.0', '166.100.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('166.101.0.0', '166.102.255.255', 2147483647, 2147483647, 'US', 'United States'), +('166.103.0.0', '166.104.255.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('166.105.0.0', '166.105.255.255', 2147483647, 2147483647, 'US', 'United States'), +('166.106.0.0', '166.106.255.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('166.107.0.0', '166.109.255.255', 2147483647, 2147483647, 'US', 'United States'), +('166.110.0.0', '166.110.255.255', 2147483647, 2147483647, 'CL', 'Chile'), +('166.111.0.0', '166.111.255.255', 2147483647, 2147483647, 'CN', 'China'), +('166.112.0.0', '166.113.255.255', 2147483647, 2147483647, 'US', 'United States'), +('166.114.0.0', '166.114.255.255', 2147483647, 2147483647, 'BO', 'Bolivia'), +('166.115.0.0', '166.117.255.255', 2147483647, 2147483647, 'US', 'United States'), +('166.118.0.0', '166.119.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('166.120.0.0', '166.120.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('166.121.0.0', '166.121.255.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('166.122.0.0', '166.124.255.255', 2147483647, 2147483647, 'US', 'United States'), +('166.125.0.0', '166.125.255.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('166.126.0.0', '167.10.255.255', 2147483647, 2147483647, 'US', 'United States'), +('167.11.0.0', '167.11.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('167.12.0.0', '167.16.255.255', 2147483647, 2147483647, 'US', 'United States'), +('167.17.0.0', '167.17.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('167.18.0.0', '167.27.255.255', 2147483647, 2147483647, 'US', 'United States'), +('167.28.0.0', '167.28.255.255', 2147483647, 2147483647, 'CL', 'Chile'), +('167.29.0.0', '167.29.255.255', 2147483647, 2147483647, 'US', 'United States'), +('167.30.0.0', '167.30.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('167.31.0.0', '167.31.255.255', 2147483647, 2147483647, 'US', 'United States'), +('167.32.0.0', '167.63.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('167.64.0.0', '167.73.255.255', 2147483647, 2147483647, 'US', 'United States'), +('167.74.0.0', '167.74.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('167.75.0.0', '167.80.255.255', 2147483647, 2147483647, 'US', 'United States'), +('167.81.0.0', '167.81.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('167.82.0.0', '167.91.255.255', 2147483647, 2147483647, 'US', 'United States'), +('167.92.0.0', '167.92.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('167.93.0.0', '167.102.255.255', 2147483647, 2147483647, 'US', 'United States'), +('167.103.0.0', '167.103.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('167.104.0.0', '167.107.255.255', 2147483647, 2147483647, 'US', 'United States'), +('167.109.0.0', '167.110.255.255', 2147483647, 2147483647, 'US', 'United States'), +('167.111.0.0', '167.111.255.255', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('167.112.0.0', '167.122.255.255', 2147483647, 2147483647, 'US', 'United States'), +('167.123.0.0', '167.123.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('167.124.0.0', '167.124.255.255', 2147483647, 2147483647, 'US', 'United States'), +('167.125.0.0', '167.125.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('167.126.0.0', '167.128.255.255', 2147483647, 2147483647, 'US', 'United States'), +('167.129.0.0', '167.129.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('167.130.0.0', '167.130.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('167.131.0.0', '167.133.255.255', 2147483647, 2147483647, 'US', 'United States'), +('167.134.0.0', '167.134.255.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('167.135.0.0', '167.138.255.255', 2147483647, 2147483647, 'US', 'United States'), +('167.139.0.0', '167.139.255.255', 2147483647, 2147483647, 'CN', 'China'), +('167.140.0.0', '167.148.255.255', 2147483647, 2147483647, 'US', 'United States'), +('167.149.0.0', '167.149.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('167.150.0.0', '167.156.255.255', 2147483647, 2147483647, 'US', 'United States'), +('167.157.0.0', '167.157.255.255', 2147483647, 2147483647, 'BO', 'Bolivia'), +('167.158.0.0', '167.161.255.255', 2147483647, 2147483647, 'US', 'United States'), +('167.162.0.0', '167.162.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('167.163.0.0', '167.167.255.255', 2147483647, 2147483647, 'US', 'United States'), +('167.168.0.0', '167.168.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('167.169.0.0', '167.169.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('167.170.0.0', '167.171.255.255', 2147483647, 2147483647, 'US', 'United States'), +('167.172.0.0', '167.172.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('167.173.0.0', '167.174.255.255', 2147483647, 2147483647, 'US', 'United States'), +('167.175.0.0', '167.175.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('167.176.0.0', '167.178.255.255', 2147483647, 2147483647, 'US', 'United States'), +('167.179.0.0', '167.179.255.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('167.180.0.0', '167.188.255.255', 2147483647, 2147483647, 'US', 'United States'), +('167.189.0.0', '167.189.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('167.190.0.0', '167.202.255.255', 2147483647, 2147483647, 'US', 'United States'), +('167.203.0.0', '167.203.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('167.204.0.0', '167.204.255.255', 2147483647, 2147483647, 'US', 'United States'), +('167.205.0.0', '167.205.255.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('167.206.0.0', '167.216.131.255', 2147483647, 2147483647, 'US', 'United States'), +('167.216.132.0', '167.216.134.255', 2147483647, 2147483647, 'IL', 'Israel'), +('167.216.135.0', '167.216.135.255', 2147483647, 2147483647, 'US', 'United States'), +('167.216.136.0', '167.216.139.255', 2147483647, 2147483647, 'IL', 'Israel'), +('167.216.140.0', '167.216.140.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('167.216.140.128', '167.216.140.143', 2147483647, 2147483647, 'IL', 'Israel'), +('167.216.140.144', '167.216.140.151', 2147483647, 2147483647, 'DE', 'Germany'), +('167.216.140.152', '167.216.140.191', 2147483647, 2147483647, 'IL', 'Israel'), +('167.216.140.192', '167.216.142.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('167.216.142.16', '167.216.142.31', 2147483647, 2147483647, 'IL', 'Israel'), +('167.216.142.32', '167.216.142.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('167.216.142.64', '167.216.142.127', 2147483647, 2147483647, 'IL', 'Israel'), +('167.216.142.128', '167.216.142.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('167.216.142.192', '167.216.142.255', 2147483647, 2147483647, 'IL', 'Israel'), +('167.216.143.0', '167.216.143.255', 2147483647, 2147483647, 'US', 'United States'), +('167.216.144.0', '167.216.159.255', 2147483647, 2147483647, 'IL', 'Israel'), +('167.216.160.0', '167.216.160.31', 2147483647, 2147483647, 'US', 'United States'), +('167.216.160.32', '167.216.193.127', 2147483647, 2147483647, 'IL', 'Israel'), +('167.216.193.128', '167.216.193.143', 2147483647, 2147483647, 'US', 'United States'), +('167.216.193.144', '167.216.193.191', 2147483647, 2147483647, 'IL', 'Israel'), +('167.216.193.192', '167.216.195.255', 2147483647, 2147483647, 'US', 'United States'), +('167.216.196.0', '167.216.196.127', 2147483647, 2147483647, 'IL', 'Israel'), +('167.216.196.128', '167.216.196.159', 2147483647, 2147483647, 'DE', 'Germany'), +('167.216.196.160', '167.216.199.255', 2147483647, 2147483647, 'IL', 'Israel'), +('167.216.200.0', '167.216.200.31', 2147483647, 2147483647, 'US', 'United States'), +('167.216.200.32', '167.216.200.191', 2147483647, 2147483647, 'IL', 'Israel'), +('167.216.200.192', '167.216.200.199', 2147483647, 2147483647, 'US', 'United States'), +('167.216.200.200', '167.216.202.255', 2147483647, 2147483647, 'IL', 'Israel'), +('167.216.203.0', '167.216.203.63', 2147483647, 2147483647, 'US', 'United States'), +('167.216.203.64', '167.216.203.95', 2147483647, 2147483647, 'IL', 'Israel'), +('167.216.203.96', '167.216.203.111', 2147483647, 2147483647, 'US', 'United States'), +('167.216.203.112', '167.216.205.31', 2147483647, 2147483647, 'IL', 'Israel'), +('167.216.205.32', '167.216.205.63', 2147483647, 2147483647, 'US', 'United States'), +('167.216.205.64', '167.216.205.111', 2147483647, 2147483647, 'IL', 'Israel'), +('167.216.205.112', '167.216.205.127', 2147483647, 2147483647, 'US', 'United States'), +('167.216.205.128', '167.216.207.15', 2147483647, 2147483647, 'IL', 'Israel'), +('167.216.207.16', '167.216.207.31', 2147483647, 2147483647, 'US', 'United States'), +('167.216.207.32', '167.216.232.255', 2147483647, 2147483647, 'IL', 'Israel'), +('167.216.233.0', '167.216.233.255', 2147483647, 2147483647, 'US', 'United States'), +('167.216.234.0', '167.216.247.159', 2147483647, 2147483647, 'IL', 'Israel'), +('167.216.247.160', '167.216.247.191', 2147483647, 2147483647, 'US', 'United States'), +('167.216.247.192', '167.216.251.215', 2147483647, 2147483647, 'IL', 'Israel'), +('167.216.251.216', '167.216.251.223', 2147483647, 2147483647, 'US', 'United States'), +('167.216.251.224', '167.216.251.231', 2147483647, 2147483647, 'IL', 'Israel'), +('167.216.251.232', '167.216.251.239', 2147483647, 2147483647, 'US', 'United States'), +('167.216.251.240', '167.216.251.255', 2147483647, 2147483647, 'IL', 'Israel'), +('167.216.252.0', '167.216.252.63', 2147483647, 2147483647, 'US', 'United States'), +('167.216.252.64', '167.216.255.255', 2147483647, 2147483647, 'IL', 'Israel'), +('167.217.0.0', '167.226.255.255', 2147483647, 2147483647, 'US', 'United States'), +('167.227.0.0', '167.227.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('167.228.0.0', '167.251.255.255', 2147483647, 2147483647, 'US', 'United States'), +('167.252.0.0', '167.252.255.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('167.253.0.0', '167.255.255.255', 2147483647, 2147483647, 'US', 'United States'), +('168.1.0.0', '168.1.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('168.2.0.0', '168.69.255.255', 2147483647, 2147483647, 'US', 'United States'), +('168.70.0.0', '168.70.255.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('168.71.0.0', '168.75.255.255', 2147483647, 2147483647, 'US', 'United States'), +('168.76.0.0', '168.76.255.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('168.77.0.0', '168.77.255.255', 2147483647, 2147483647, 'PA', 'Panama'), +('168.78.0.0', '168.78.255.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('168.79.0.0', '168.79.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('168.80.0.0', '168.81.255.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('168.82.0.0', '168.82.255.255', 2147483647, 2147483647, 'US', 'United States'), +('168.83.0.0', '168.83.255.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('168.84.0.0', '168.88.255.255', 2147483647, 2147483647, 'US', 'United States'), +('168.89.0.0', '168.89.255.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('168.91.0.0', '168.94.255.255', 2147483647, 2147483647, 'US', 'United States'), +('168.95.0.0', '168.95.255.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('168.96.0.0', '168.96.255.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('168.97.0.0', '168.100.255.255', 2147483647, 2147483647, 'US', 'United States'), +('168.101.0.0', '168.101.255.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('168.102.0.0', '168.105.255.255', 2147483647, 2147483647, 'US', 'United States'), +('168.106.0.0', '168.106.255.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('168.107.0.0', '168.114.255.255', 2147483647, 2147483647, 'US', 'United States'), +('168.115.0.0', '168.115.255.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('168.116.0.0', '168.119.255.255', 2147483647, 2147483647, 'US', 'United States'), +('168.120.0.0', '168.120.255.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('168.122.0.0', '168.122.255.255', 2147483647, 2147483647, 'US', 'United States'), +('168.123.0.0', '168.123.255.255', 2147483647, 2147483647, 'GU', 'Guam'), +('168.124.0.0', '168.125.255.255', 2147483647, 2147483647, 'US', 'United States'), +('168.126.0.0', '168.126.255.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('168.127.0.0', '168.127.255.255', 2147483647, 2147483647, 'US', 'United States'), +('168.128.0.0', '168.128.255.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('168.129.0.0', '168.129.255.255', 2147483647, 2147483647, 'US', 'United States'), +('168.130.0.0', '168.130.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('168.131.0.0', '168.131.255.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('168.132.0.0', '168.132.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('168.133.0.0', '168.133.255.255', 2147483647, 2147483647, 'US', 'United States'), +('168.134.0.0', '168.134.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('168.135.0.0', '168.138.255.255', 2147483647, 2147483647, 'US', 'United States'), +('168.139.0.0', '168.139.255.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('168.140.0.0', '168.140.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('168.141.0.0', '168.141.255.255', 2147483647, 2147483647, 'US', 'United States'), +('168.142.0.0', '168.142.255.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('168.143.0.0', '168.143.113.255', 2147483647, 2147483647, 'US', 'United States'), +('168.143.114.0', '168.143.114.255', 2147483647, 2147483647, 'A1', 'Anonymous Proxy'), +('168.143.115.0', '168.143.117.127', 2147483647, 2147483647, 'US', 'United States'), +('168.143.117.128', '168.143.117.255', 2147483647, 2147483647, 'A1', 'Anonymous Proxy'), +('168.143.118.0', '168.143.119.255', 2147483647, 2147483647, 'US', 'United States'), +('168.143.120.0', '168.143.120.127', 2147483647, 2147483647, 'A1', 'Anonymous Proxy'), +('168.143.120.128', '168.143.123.63', 2147483647, 2147483647, 'US', 'United States'), +('168.143.123.64', '168.143.123.127', 2147483647, 2147483647, 'A1', 'Anonymous Proxy'), +('168.143.123.128', '168.143.185.175', 2147483647, 2147483647, 'US', 'United States'), +('168.143.185.176', '168.143.185.191', 2147483647, 2147483647, 'A1', 'Anonymous Proxy'), +('168.143.185.192', '168.143.185.207', 2147483647, 2147483647, 'US', 'United States'), +('168.143.185.208', '168.143.185.223', 2147483647, 2147483647, 'A1', 'Anonymous Proxy'), +('168.143.185.224', '168.143.255.255', 2147483647, 2147483647, 'US', 'United States'), +('168.144.0.0', '168.144.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('168.145.0.0', '168.151.255.255', 2147483647, 2147483647, 'US', 'United States'), +('168.152.0.0', '168.153.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('168.154.0.0', '168.154.255.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('168.155.0.0', '168.155.255.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('168.156.0.0', '168.159.255.255', 2147483647, 2147483647, 'US', 'United States'), +('168.160.0.0', '168.160.255.255', 2147483647, 2147483647, 'CN', 'China'), +('168.161.0.0', '168.162.255.255', 2147483647, 2147483647, 'US', 'United States'), +('168.163.0.0', '168.163.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('168.164.0.0', '168.164.255.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('168.165.0.0', '168.165.255.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('168.166.0.0', '168.166.255.255', 2147483647, 2147483647, 'US', 'United States'), +('168.167.0.0', '168.167.255.255', 2147483647, 2147483647, 'BW', 'Botswana'), +('168.168.0.0', '168.171.255.255', 2147483647, 2147483647, 'US', 'United States'), +('168.172.0.0', '168.172.255.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('168.173.0.0', '168.175.255.255', 2147483647, 2147483647, 'US', 'United States'), +('168.176.0.0', '168.176.255.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('168.177.0.0', '168.185.255.255', 2147483647, 2147483647, 'US', 'United States'), +('168.186.0.0', '168.186.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('168.187.0.0', '168.187.255.255', 2147483647, 2147483647, 'KW', 'Kuwait'), +('168.188.0.0', '168.188.255.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('168.189.0.0', '168.193.255.255', 2147483647, 2147483647, 'US', 'United States'), +('168.198.0.0', '168.198.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('168.199.0.0', '168.201.255.255', 2147483647, 2147483647, 'US', 'United States'), +('168.202.0.0', '168.202.255.255', 2147483647, 2147483647, 'IT', 'Italy'), +('168.203.0.0', '168.205.255.255', 2147483647, 2147483647, 'US', 'United States'), +('168.206.0.0', '168.206.255.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('168.207.0.0', '168.208.255.255', 2147483647, 2147483647, 'US', 'United States'), +('168.209.0.0', '168.210.255.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('168.212.0.0', '168.215.119.255', 2147483647, 2147483647, 'US', 'United States'), +('168.215.120.0', '168.215.120.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('168.215.121.0', '168.216.255.255', 2147483647, 2147483647, 'US', 'United States'), +('168.217.0.0', '168.217.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('168.218.0.0', '168.218.255.255', 2147483647, 2147483647, 'US', 'United States'), +('168.219.0.0', '168.219.255.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('168.220.0.0', '168.225.255.255', 2147483647, 2147483647, 'US', 'United States'), +('168.226.0.0', '168.226.255.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('168.229.0.0', '168.230.255.255', 2147483647, 2147483647, 'US', 'United States'), +('168.231.0.0', '168.231.255.255', 2147483647, 2147483647, 'CL', 'Chile'), +('168.233.0.0', '168.233.255.255', 2147483647, 2147483647, 'US', 'United States'), +('168.234.0.0', '168.234.255.255', 2147483647, 2147483647, 'GT', 'Guatemala'), +('168.235.0.0', '168.242.255.255', 2147483647, 2147483647, 'US', 'United States'), +('168.243.0.0', '168.243.255.255', 2147483647, 2147483647, 'SV', 'El Salvador'), +('168.244.0.0', '168.247.255.255', 2147483647, 2147483647, 'US', 'United States'), +('168.248.0.0', '168.249.255.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('168.250.0.0', '168.251.255.255', 2147483647, 2147483647, 'US', 'United States'), +('168.252.0.0', '168.252.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('168.254.0.0', '168.254.255.255', 2147483647, 2147483647, 'US', 'United States'), +('168.255.0.0', '168.255.255.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('169.0.0.0', '169.31.255.255', 2147483647, 2147483647, 'US', 'United States'), +('169.32.0.0', '169.63.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('169.64.0.0', '169.71.49.255', 2147483647, 2147483647, 'US', 'United States'), +('169.71.50.0', '169.71.50.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('169.71.51.0', '169.128.255.255', 2147483647, 2147483647, 'US', 'United States'), +('169.129.0.0', '169.129.255.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('169.130.0.0', '169.139.255.255', 2147483647, 2147483647, 'US', 'United States'), +('169.140.0.0', '169.140.255.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('169.141.0.0', '169.157.255.255', 2147483647, 2147483647, 'US', 'United States'), +('169.158.0.0', '169.158.255.255', 2147483647, 2147483647, 'CU', 'Cuba'), +('169.160.0.0', '169.200.255.255', 2147483647, 2147483647, 'US', 'United States'), +('169.201.0.0', '169.201.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('169.202.0.0', '169.202.255.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('169.203.0.0', '169.207.255.255', 2147483647, 2147483647, 'US', 'United States'), +('169.211.0.0', '169.211.0.255', 2147483647, 2147483647, 'JP', 'Japan'), +('169.211.1.0', '169.211.1.255', 2147483647, 2147483647, 'CN', 'China'), +('169.211.2.0', '169.211.2.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('169.211.3.0', '169.211.3.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('169.211.4.0', '169.211.4.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('169.211.5.0', '169.211.5.255', 2147483647, 2147483647, 'VN', 'Vietnam'), +('169.222.0.0', '169.222.7.255', 2147483647, 2147483647, 'AU', 'Australia'), +('169.223.0.0', '169.223.255.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('169.224.0.0', '169.253.255.255', 2147483647, 2147483647, 'US', 'United States'), +('170.0.0.0', '170.17.255.255', 2147483647, 2147483647, 'US', 'United States'), +('170.18.0.0', '170.18.255.255', 2147483647, 2147483647, 'CL', 'Chile'), +('170.19.0.0', '170.24.255.255', 2147483647, 2147483647, 'US', 'United States'), +('170.25.0.0', '170.25.255.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('170.26.0.0', '170.37.255.255', 2147483647, 2147483647, 'US', 'United States'), +('170.38.0.0', '170.38.255.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('170.39.0.0', '170.50.255.255', 2147483647, 2147483647, 'US', 'United States'), +('170.51.0.0', '170.51.255.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('170.52.0.0', '170.59.255.255', 2147483647, 2147483647, 'US', 'United States'), +('170.60.0.0', '170.60.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('170.61.0.0', '170.65.255.255', 2147483647, 2147483647, 'US', 'United States'), +('170.66.0.0', '170.66.255.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('170.67.0.0', '170.69.255.255', 2147483647, 2147483647, 'US', 'United States'), +('170.70.0.0', '170.70.255.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('170.71.0.0', '170.79.255.255', 2147483647, 2147483647, 'US', 'United States'), +('170.84.0.0', '170.94.255.255', 2147483647, 2147483647, 'US', 'United States'), +('170.95.0.0', '170.95.255.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('170.96.0.0', '170.104.255.255', 2147483647, 2147483647, 'US', 'United States'), +('170.105.0.0', '170.105.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('170.106.0.0', '170.154.255.255', 2147483647, 2147483647, 'US', 'United States'), +('170.155.0.0', '170.155.255.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('170.156.0.0', '170.156.255.255', 2147483647, 2147483647, 'US', 'United States'), +('170.157.0.0', '170.157.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('170.158.0.0', '170.168.255.255', 2147483647, 2147483647, 'US', 'United States'), +('170.169.0.0', '170.169.255.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('170.170.0.0', '170.174.255.255', 2147483647, 2147483647, 'US', 'United States'), +('170.175.0.0', '170.175.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('170.176.0.0', '170.178.255.255', 2147483647, 2147483647, 'US', 'United States'), +('170.179.0.0', '170.179.255.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('170.180.0.0', '170.205.63.255', 2147483647, 2147483647, 'US', 'United States'), +('170.205.64.0', '170.205.191.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('170.205.192.0', '170.209.255.255', 2147483647, 2147483647, 'US', 'United States'), +('170.210.0.0', '170.210.255.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('170.211.0.0', '170.235.255.255', 2147483647, 2147483647, 'US', 'United States'), +('170.236.0.0', '170.236.179.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('170.236.180.0', '170.236.180.255', 2147483647, 2147483647, 'AT', 'Austria'), +('170.236.181.0', '170.237.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('170.240.0.0', '170.243.255.255', 2147483647, 2147483647, 'US', 'United States'), +('170.248.0.0', '170.253.255.255', 2147483647, 2147483647, 'US', 'United States'), +('170.255.0.0', '170.255.255.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('171.16.0.0', '171.16.255.255', 2147483647, 2147483647, 'FR', 'France'), +('171.17.0.0', '171.17.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('171.18.0.0', '171.18.255.255', 2147483647, 2147483647, 'FR', 'France'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('171.19.0.0', '171.19.255.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('171.20.0.0', '171.20.255.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('171.21.0.0', '171.21.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('171.22.0.0', '171.22.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('171.23.0.0', '171.23.255.255', 2147483647, 2147483647, 'NO', 'Norway'), +('171.24.0.0', '171.24.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('171.25.0.0', '171.25.127.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('171.25.128.0', '171.25.159.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('171.25.160.0', '171.25.163.255', 2147483647, 2147483647, 'NO', 'Norway'), +('171.26.0.0', '171.26.255.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('171.27.0.0', '171.27.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('171.28.0.0', '171.30.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('171.31.0.0', '171.31.255.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('171.32.0.0', '171.32.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('171.33.0.0', '171.33.63.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('171.64.0.0', '171.79.255.255', 2147483647, 2147483647, 'US', 'United States'), +('171.128.0.0', '171.255.255.255', 2147483647, 2147483647, 'US', 'United States'), +('172.128.0.0', '172.140.255.255', 2147483647, 2147483647, 'US', 'United States'), +('172.141.0.0', '172.143.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('172.144.0.0', '172.146.204.255', 2147483647, 2147483647, 'US', 'United States'), +('172.146.205.0', '172.146.205.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('172.146.206.0', '172.151.255.255', 2147483647, 2147483647, 'US', 'United States'), +('172.152.0.0', '172.152.255.255', 2147483647, 2147483647, 'FR', 'France'), +('172.153.0.0', '172.157.255.255', 2147483647, 2147483647, 'US', 'United States'), +('172.158.0.0', '172.158.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('172.159.0.0', '172.159.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('172.160.0.0', '172.172.255.255', 2147483647, 2147483647, 'US', 'United States'), +('172.173.0.0', '172.174.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('172.175.0.0', '172.175.255.255', 2147483647, 2147483647, 'US', 'United States'), +('172.176.0.0', '172.183.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('172.184.0.0', '172.187.255.255', 2147483647, 2147483647, 'FR', 'France'), +('172.188.0.0', '172.189.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('172.190.0.0', '172.199.255.255', 2147483647, 2147483647, 'US', 'United States'), +('172.200.0.0', '172.203.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('172.204.0.0', '172.204.255.255', 2147483647, 2147483647, 'FR', 'France'), +('172.205.0.0', '172.205.127.255', 2147483647, 2147483647, 'VN', 'Vietnam'), +('172.205.128.0', '172.205.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('172.206.0.0', '172.207.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('172.208.0.0', '172.208.255.255', 2147483647, 2147483647, 'FR', 'France'), +('172.209.0.0', '172.209.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('172.210.0.0', '172.211.255.255', 2147483647, 2147483647, 'FR', 'France'), +('172.212.0.0', '172.216.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('173.0.0.0', '173.31.255.255', 2147483647, 2147483647, 'US', 'United States'), +('173.32.0.0', '173.35.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('173.36.0.0', '173.45.255.255', 2147483647, 2147483647, 'US', 'United States'), +('173.46.0.0', '173.46.31.255', 2147483647, 2147483647, 'CA', 'Canada'), +('173.46.32.0', '173.175.255.255', 2147483647, 2147483647, 'US', 'United States'), +('173.176.0.0', '173.183.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('173.184.0.0', '173.191.255.255', 2147483647, 2147483647, 'US', 'United States'), +('174.0.0.0', '174.7.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('174.8.0.0', '174.23.255.255', 2147483647, 2147483647, 'US', 'United States'), +('174.32.0.0', '174.34.190.255', 2147483647, 2147483647, 'US', 'United States'), +('174.34.191.0', '174.34.191.255', 2147483647, 2147483647, 'CA', 'Canada'), +('174.34.192.0', '174.34.223.255', 2147483647, 2147483647, 'US', 'United States'), +('174.35.0.0', '174.35.127.255', 2147483647, 2147483647, 'US', 'United States'), +('174.35.128.0', '174.35.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('174.36.0.0', '174.87.255.255', 2147483647, 2147483647, 'US', 'United States'), +('174.88.0.0', '174.95.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('174.96.0.0', '174.111.255.255', 2147483647, 2147483647, 'US', 'United States'), +('174.112.0.0', '174.119.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('174.120.0.0', '174.137.47.255', 2147483647, 2147483647, 'US', 'United States'), +('174.137.48.0', '174.137.63.255', 2147483647, 2147483647, 'CA', 'Canada'), +('174.137.64.0', '174.137.184.255', 2147483647, 2147483647, 'US', 'United States'), +('174.137.185.0', '174.137.186.255', 2147483647, 2147483647, 'CA', 'Canada'), +('174.137.187.0', '174.137.191.255', 2147483647, 2147483647, 'US', 'United States'), +('174.137.192.0', '174.137.193.255', 2147483647, 2147483647, 'CA', 'Canada'), +('174.137.194.0', '174.137.194.7', 2147483647, 2147483647, 'US', 'United States'), +('174.137.194.8', '174.137.194.23', 2147483647, 2147483647, 'CA', 'Canada'), +('174.137.194.24', '174.137.194.31', 2147483647, 2147483647, 'US', 'United States'), +('174.137.194.32', '174.137.194.111', 2147483647, 2147483647, 'CA', 'Canada'), +('174.137.194.112', '174.137.194.119', 2147483647, 2147483647, 'US', 'United States'), +('174.137.194.120', '174.137.194.143', 2147483647, 2147483647, 'CA', 'Canada'), +('174.137.194.144', '174.137.194.151', 2147483647, 2147483647, 'US', 'United States'), +('174.137.194.152', '174.137.194.175', 2147483647, 2147483647, 'CA', 'Canada'), +('174.137.194.176', '174.137.194.191', 2147483647, 2147483647, 'US', 'United States'), +('174.137.194.192', '174.137.195.63', 2147483647, 2147483647, 'CA', 'Canada'), +('174.137.195.64', '174.137.195.71', 2147483647, 2147483647, 'US', 'United States'), +('174.137.195.72', '174.137.195.79', 2147483647, 2147483647, 'CA', 'Canada'), +('174.137.195.80', '174.137.195.87', 2147483647, 2147483647, 'US', 'United States'), +('174.137.195.88', '174.137.195.127', 2147483647, 2147483647, 'CA', 'Canada'), +('174.137.195.128', '174.137.195.159', 2147483647, 2147483647, 'US', 'United States'), +('174.137.195.160', '174.137.195.223', 2147483647, 2147483647, 'CA', 'Canada'), +('174.137.195.224', '174.137.195.231', 2147483647, 2147483647, 'US', 'United States'), +('174.137.195.232', '174.137.196.7', 2147483647, 2147483647, 'CA', 'Canada'), +('174.137.196.8', '174.137.196.15', 2147483647, 2147483647, 'US', 'United States'), +('174.137.196.16', '174.137.196.23', 2147483647, 2147483647, 'CA', 'Canada'), +('174.137.196.24', '174.137.196.31', 2147483647, 2147483647, 'US', 'United States'), +('174.137.196.32', '174.137.196.95', 2147483647, 2147483647, 'CA', 'Canada'), +('174.137.196.96', '174.137.196.111', 2147483647, 2147483647, 'US', 'United States'), +('174.137.196.112', '174.137.196.135', 2147483647, 2147483647, 'CA', 'Canada'), +('174.137.196.136', '174.137.196.143', 2147483647, 2147483647, 'NL', 'Netherlands'), +('174.137.196.144', '174.137.196.167', 2147483647, 2147483647, 'CA', 'Canada'), +('174.137.196.168', '174.137.196.183', 2147483647, 2147483647, 'US', 'United States'), +('174.137.196.184', '174.137.196.191', 2147483647, 2147483647, 'CA', 'Canada'), +('174.137.196.192', '174.137.196.199', 2147483647, 2147483647, 'US', 'United States'), +('174.137.196.200', '174.137.196.207', 2147483647, 2147483647, 'CA', 'Canada'), +('174.137.196.208', '174.137.196.231', 2147483647, 2147483647, 'US', 'United States'), +('174.137.196.232', '174.137.198.55', 2147483647, 2147483647, 'CA', 'Canada'), +('174.137.198.56', '174.137.198.71', 2147483647, 2147483647, 'US', 'United States'), +('174.137.198.72', '174.137.198.79', 2147483647, 2147483647, 'CA', 'Canada'), +('174.137.198.80', '174.137.198.127', 2147483647, 2147483647, 'US', 'United States'), +('174.137.198.128', '174.137.198.159', 2147483647, 2147483647, 'CA', 'Canada'), +('174.137.198.160', '174.137.198.167', 2147483647, 2147483647, 'US', 'United States'), +('174.137.198.168', '174.137.198.175', 2147483647, 2147483647, 'CA', 'Canada'), +('174.137.198.176', '174.137.199.7', 2147483647, 2147483647, 'US', 'United States'), +('174.137.199.8', '174.137.199.23', 2147483647, 2147483647, 'CA', 'Canada'), +('174.137.199.24', '174.137.199.47', 2147483647, 2147483647, 'US', 'United States'), +('174.137.199.48', '174.137.199.95', 2147483647, 2147483647, 'CA', 'Canada'), +('174.137.199.96', '174.137.199.143', 2147483647, 2147483647, 'US', 'United States'), +('174.137.199.144', '174.137.199.183', 2147483647, 2147483647, 'CA', 'Canada'), +('174.137.199.184', '174.137.199.255', 2147483647, 2147483647, 'US', 'United States'), +('174.137.200.0', '174.137.200.255', 2147483647, 2147483647, 'CA', 'Canada'), +('174.137.201.0', '174.137.201.7', 2147483647, 2147483647, 'US', 'United States'), +('174.137.201.8', '174.137.201.31', 2147483647, 2147483647, 'CA', 'Canada'), +('174.137.201.32', '174.137.201.55', 2147483647, 2147483647, 'US', 'United States'), +('174.137.201.56', '174.137.201.87', 2147483647, 2147483647, 'CA', 'Canada'), +('174.137.201.88', '174.137.201.95', 2147483647, 2147483647, 'US', 'United States'), +('174.137.201.96', '174.137.201.103', 2147483647, 2147483647, 'CA', 'Canada'), +('174.137.201.104', '174.137.201.151', 2147483647, 2147483647, 'US', 'United States'), +('174.137.201.152', '174.137.201.159', 2147483647, 2147483647, 'CA', 'Canada'), +('174.137.201.160', '174.137.201.175', 2147483647, 2147483647, 'US', 'United States'), +('174.137.201.176', '174.137.201.199', 2147483647, 2147483647, 'CA', 'Canada'), +('174.137.201.200', '174.137.201.215', 2147483647, 2147483647, 'US', 'United States'), +('174.137.201.216', '174.137.201.231', 2147483647, 2147483647, 'CA', 'Canada'), +('174.137.201.232', '174.137.201.239', 2147483647, 2147483647, 'US', 'United States'), +('174.137.201.240', '174.137.201.255', 2147483647, 2147483647, 'CA', 'Canada'), +('174.137.202.0', '174.137.202.7', 2147483647, 2147483647, 'US', 'United States'), +('174.137.202.8', '174.137.203.39', 2147483647, 2147483647, 'CA', 'Canada'), +('174.137.203.40', '174.137.203.47', 2147483647, 2147483647, 'US', 'United States'), +('174.137.203.48', '174.137.203.71', 2147483647, 2147483647, 'CA', 'Canada'), +('174.137.203.72', '174.137.203.79', 2147483647, 2147483647, 'US', 'United States'), +('174.137.203.80', '174.137.203.127', 2147483647, 2147483647, 'CA', 'Canada'), +('174.137.203.128', '174.137.203.135', 2147483647, 2147483647, 'US', 'United States'), +('174.137.203.136', '174.137.203.191', 2147483647, 2147483647, 'CA', 'Canada'), +('174.137.203.192', '174.137.203.207', 2147483647, 2147483647, 'US', 'United States'), +('174.137.203.208', '174.137.204.15', 2147483647, 2147483647, 'CA', 'Canada'), +('174.137.204.16', '174.137.204.23', 2147483647, 2147483647, 'US', 'United States'), +('174.137.204.24', '174.137.204.55', 2147483647, 2147483647, 'CA', 'Canada'), +('174.137.204.56', '174.137.204.71', 2147483647, 2147483647, 'US', 'United States'), +('174.137.204.72', '174.137.204.119', 2147483647, 2147483647, 'CA', 'Canada'), +('174.137.204.120', '174.137.204.127', 2147483647, 2147483647, 'US', 'United States'), +('174.137.204.128', '174.137.204.167', 2147483647, 2147483647, 'CA', 'Canada'), +('174.137.204.168', '174.137.204.175', 2147483647, 2147483647, 'US', 'United States'), +('174.137.204.176', '174.137.217.191', 2147483647, 2147483647, 'CA', 'Canada'), +('174.137.217.192', '174.137.217.207', 2147483647, 2147483647, 'US', 'United States'), +('174.137.217.208', '174.137.217.215', 2147483647, 2147483647, 'CA', 'Canada'), +('174.137.217.216', '174.137.217.239', 2147483647, 2147483647, 'US', 'United States'), +('174.137.217.240', '174.137.218.151', 2147483647, 2147483647, 'CA', 'Canada'), +('174.137.218.152', '174.137.218.159', 2147483647, 2147483647, 'US', 'United States'), +('174.137.218.160', '174.137.218.175', 2147483647, 2147483647, 'CA', 'Canada'), +('174.137.218.176', '174.137.218.183', 2147483647, 2147483647, 'US', 'United States'), +('174.137.218.184', '174.137.218.239', 2147483647, 2147483647, 'CA', 'Canada'), +('174.137.218.240', '174.137.218.247', 2147483647, 2147483647, 'US', 'United States'), +('174.137.218.248', '174.137.220.143', 2147483647, 2147483647, 'CA', 'Canada'), +('174.137.220.144', '174.137.220.151', 2147483647, 2147483647, 'NL', 'Netherlands'), +('174.137.220.152', '174.137.220.215', 2147483647, 2147483647, 'CA', 'Canada'), +('174.137.220.216', '174.137.220.223', 2147483647, 2147483647, 'US', 'United States'), +('174.137.220.224', '174.137.228.207', 2147483647, 2147483647, 'CA', 'Canada'), +('174.137.228.208', '174.137.228.215', 2147483647, 2147483647, 'US', 'United States'), +('174.137.228.216', '174.137.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('174.138.0.0', '174.138.127.255', 2147483647, 2147483647, 'US', 'United States'), +('174.138.128.0', '174.138.143.255', 2147483647, 2147483647, 'CA', 'Canada'), +('174.138.160.0', '174.138.175.255', 2147483647, 2147483647, 'US', 'United States'), +('174.138.192.0', '174.138.223.255', 2147483647, 2147483647, 'CA', 'Canada'), +('174.138.224.0', '174.141.255.255', 2147483647, 2147483647, 'US', 'United States'), +('174.142.0.0', '174.142.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('174.143.0.0', '174.255.255.255', 2147483647, 2147483647, 'US', 'United States'), +('180.0.0.0', '183.255.255.255', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('184.0.0.0', '184.7.255.255', 2147483647, 2147483647, 'US', 'United States'), +('186.0.0.0', '186.0.63.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('186.1.0.0', '186.1.63.255', 2147483647, 2147483647, 'NI', 'Nicaragua'), +('186.2.0.0', '186.2.63.255', 2147483647, 2147483647, 'BO', 'Bolivia'), +('186.3.0.0', '186.3.63.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('186.8.0.0', '186.8.63.255', 2147483647, 2147483647, 'UY', 'Uruguay'), +('186.9.0.0', '186.10.127.255', 2147483647, 2147483647, 'CL', 'Chile'), +('186.12.0.0', '186.13.255.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('186.14.0.0', '186.14.255.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('186.15.0.0', '186.15.255.255', 2147483647, 2147483647, 'CR', 'Costa Rica'), +('186.16.0.0', '186.16.255.255', 2147483647, 2147483647, 'PY', 'Paraguay'), +('186.18.0.0', '186.18.255.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('186.24.0.0', '186.27.255.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('186.28.0.0', '186.29.255.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('186.32.0.0', '186.32.255.255', 2147483647, 2147483647, 'GT', 'Guatemala'), +('186.36.0.0', '186.36.255.255', 2147483647, 2147483647, 'CL', 'Chile'), +('186.40.0.0', '186.40.127.255', 2147483647, 2147483647, 'CL', 'Chile'), +('186.42.0.0', '186.42.127.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('186.43.0.0', '186.43.127.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('186.56.0.0', '186.59.255.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('186.64.0.0', '186.64.63.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('186.66.0.0', '186.66.255.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('186.68.0.0', '186.69.255.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('186.72.0.0', '186.73.255.255', 2147483647, 2147483647, 'PA', 'Panama'), +('186.80.0.0', '186.87.255.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('186.96.0.0', '186.96.63.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('186.97.0.0', '186.97.63.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('186.100.0.0', '186.100.255.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('186.104.0.0', '186.105.255.255', 2147483647, 2147483647, 'CL', 'Chile'), +('186.112.0.0', '186.115.255.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('186.128.0.0', '186.128.255.255', 2147483647, 2147483647, 'UY', 'Uruguay'), +('186.136.0.0', '186.137.255.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('186.160.0.0', '186.163.255.255', 2147483647, 2147483647, 'PE', 'Peru'), +('187.0.0.0', '187.127.255.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('187.128.0.0', '187.159.255.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('188.1.0.0', '188.1.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('188.2.0.0', '188.2.255.255', 2147483647, 2147483647, 'RS', 'Serbia'), +('188.3.0.0', '188.3.255.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('188.4.0.0', '188.4.255.255', 2147483647, 2147483647, 'GR', 'Greece'), +('188.5.0.0', '188.5.255.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('188.6.0.0', '188.6.255.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('188.7.0.0', '188.7.255.255', 2147483647, 2147483647, 'FR', 'France'), +('188.8.0.0', '188.15.255.255', 2147483647, 2147483647, 'IT', 'Italy'), +('188.16.0.0', '188.19.255.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('188.20.0.0', '188.23.255.255', 2147483647, 2147483647, 'AT', 'Austria'), +('188.24.0.0', '188.27.255.255', 2147483647, 2147483647, 'RO', 'Romania'), +('188.28.0.0', '188.31.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('188.32.0.0', '188.32.255.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('188.33.0.0', '188.33.255.255', 2147483647, 2147483647, 'PL', 'Poland'), +('188.34.0.0', '188.34.255.255', 2147483647, 2147483647, 'IR', 'Iran, Islamic Republic of'), +('188.35.0.0', '188.35.255.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('188.36.0.0', '188.36.247.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('188.36.248.0', '188.36.248.255', 2147483647, 2147483647, 'RO', 'Romania'), +('188.36.249.0', '188.36.255.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('188.38.0.0', '188.38.255.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('188.39.0.0', '188.39.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('188.40.0.0', '188.40.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('188.41.0.0', '188.41.255.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('188.42.0.0', '188.42.255.255', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('188.43.0.0', '188.44.255.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('188.45.0.0', '188.45.255.255', 2147483647, 2147483647, 'AT', 'Austria'), +('188.46.0.0', '188.46.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('188.47.0.0', '188.47.255.255', 2147483647, 2147483647, 'PL', 'Poland'), +('188.48.0.0', '188.55.255.255', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('188.56.0.0', '188.59.255.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('188.60.0.0', '188.63.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('188.80.0.0', '188.83.255.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('188.84.0.0', '188.87.255.255', 2147483647, 2147483647, 'ES', 'Spain'), +('188.88.0.0', '188.91.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('188.92.0.0', '188.92.7.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('188.92.8.0', '188.92.15.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('188.92.16.0', '188.92.23.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('188.92.24.0', '188.92.31.255', 2147483647, 2147483647, 'IT', 'Italy'), +('188.92.32.0', '188.92.39.255', 2147483647, 2147483647, 'DE', 'Germany'), +('188.92.40.0', '188.92.47.255', 2147483647, 2147483647, 'AM', 'Armenia'), +('188.92.48.0', '188.92.55.255', 2147483647, 2147483647, 'BY', 'Belarus'), +('188.92.56.0', '188.92.63.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('188.92.64.0', '188.92.71.255', 2147483647, 2147483647, 'FR', 'France'), +('188.92.72.0', '188.92.79.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('188.92.80.0', '188.92.87.255', 2147483647, 2147483647, 'NO', 'Norway'), +('188.92.88.0', '188.92.95.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('188.92.96.0', '188.92.103.255', 2147483647, 2147483647, 'IT', 'Italy'), +('188.92.104.0', '188.92.111.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('188.92.112.0', '188.92.119.255', 2147483647, 2147483647, 'DE', 'Germany'), +('188.92.120.0', '188.92.127.255', 2147483647, 2147483647, 'IT', 'Italy'), +('188.92.128.0', '188.92.135.255', 2147483647, 2147483647, 'DE', 'Germany'), +('188.92.136.0', '188.92.143.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('188.92.144.0', '188.92.151.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('188.92.152.0', '188.92.159.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('188.92.160.0', '188.92.167.255', 2147483647, 2147483647, 'EE', 'Estonia'), +('188.92.168.0', '188.92.175.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('188.92.176.0', '188.92.183.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('188.92.184.0', '188.92.191.255', 2147483647, 2147483647, 'IT', 'Italy'), +('188.92.192.0', '188.92.199.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('188.92.200.0', '188.92.207.255', 2147483647, 2147483647, 'DE', 'Germany'), +('188.92.208.0', '188.92.215.255', 2147483647, 2147483647, 'GE', 'Georgia'), +('188.92.216.0', '188.92.223.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('188.92.224.0', '188.92.225.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('188.92.226.0', '188.92.226.7', 2147483647, 2147483647, 'DE', 'Germany'), +('188.92.226.8', '188.92.226.23', 2147483647, 2147483647, 'CH', 'Switzerland'), +('188.92.226.24', '188.92.226.39', 2147483647, 2147483647, 'FR', 'France'), +('188.92.226.40', '188.92.231.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('188.92.232.0', '188.92.239.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('188.92.240.0', '188.92.247.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('188.92.248.0', '188.92.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('188.93.0.0', '188.93.7.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('188.93.8.0', '188.93.15.255', 2147483647, 2147483647, 'DE', 'Germany'), +('188.93.16.0', '188.93.31.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('188.93.32.0', '188.93.39.255', 2147483647, 2147483647, 'ES', 'Spain'), +('188.93.40.0', '188.93.47.255', 2147483647, 2147483647, 'FR', 'France'), +('188.93.48.0', '188.93.63.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('188.93.64.0', '188.93.71.255', 2147483647, 2147483647, 'IR', 'Iran, Islamic Republic of'), +('188.93.72.0', '188.93.79.255', 2147483647, 2147483647, 'ES', 'Spain'), +('188.93.80.0', '188.93.87.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('188.93.88.0', '188.93.95.255', 2147483647, 2147483647, 'GE', 'Georgia'), +('188.93.96.0', '188.93.103.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('188.93.104.0', '188.93.111.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('188.93.112.0', '188.93.119.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('188.93.120.0', '188.93.127.255', 2147483647, 2147483647, 'RS', 'Serbia'), +('188.93.128.0', '188.93.135.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('188.93.136.0', '188.93.143.255', 2147483647, 2147483647, 'IT', 'Italy'), +('188.93.144.0', '188.93.151.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('188.93.152.0', '188.93.159.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('188.93.160.0', '188.93.167.255', 2147483647, 2147483647, 'PL', 'Poland'), +('188.93.168.0', '188.93.175.255', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('188.93.176.0', '188.93.183.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('188.93.184.0', '188.93.191.255', 2147483647, 2147483647, 'NO', 'Norway'), +('188.93.192.0', '188.93.199.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('188.93.200.0', '188.93.207.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('188.93.208.0', '188.93.215.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('188.93.216.0', '188.93.223.255', 2147483647, 2147483647, 'DE', 'Germany'), +('188.93.224.0', '188.93.236.63', 2147483647, 2147483647, 'PT', 'Portugal'), +('188.93.236.64', '188.93.236.79', 2147483647, 2147483647, 'ES', 'Spain'), +('188.93.236.80', '188.93.239.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('188.93.240.0', '188.93.247.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('188.93.248.0', '188.93.255.255', 2147483647, 2147483647, 'AT', 'Austria'), +('188.94.0.0', '188.94.7.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('188.94.8.0', '188.94.15.255', 2147483647, 2147483647, 'ES', 'Spain'), +('188.94.16.0', '188.94.23.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('188.94.24.0', '188.94.31.255', 2147483647, 2147483647, 'DE', 'Germany'), +('188.94.32.0', '188.94.39.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('188.94.40.0', '188.94.47.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('188.94.48.0', '188.94.55.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('188.94.56.0', '188.94.63.255', 2147483647, 2147483647, 'ES', 'Spain'), +('188.94.64.0', '188.94.71.255', 2147483647, 2147483647, 'FI', 'Finland'), +('188.94.72.0', '188.94.79.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('188.94.80.0', '188.94.87.255', 2147483647, 2147483647, 'MD', 'Moldova, Republic of'), +('188.94.88.0', '188.94.95.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('188.94.96.0', '188.94.103.255', 2147483647, 2147483647, 'DE', 'Germany'), +('188.94.104.0', '188.94.111.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('188.94.112.0', '188.94.119.255', 2147483647, 2147483647, 'DE', 'Germany'), +('188.94.120.0', '188.94.127.255', 2147483647, 2147483647, 'IT', 'Italy'), +('188.94.128.0', '188.94.135.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('188.94.136.0', '188.94.143.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('188.94.144.0', '188.94.151.255', 2147483647, 2147483647, 'IT', 'Italy'), +('188.94.152.0', '188.94.159.255', 2147483647, 2147483647, 'KZ', 'Kazakstan'), +('188.94.160.0', '188.94.175.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('188.94.176.0', '188.94.183.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('188.94.184.0', '188.94.199.255', 2147483647, 2147483647, 'IT', 'Italy'), +('188.94.200.0', '188.94.207.255', 2147483647, 2147483647, 'FR', 'France'), +('188.94.208.0', '188.94.215.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('188.94.216.0', '188.94.223.255', 2147483647, 2147483647, 'NO', 'Norway'), +('188.94.224.0', '188.94.231.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('188.94.232.0', '188.94.239.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('188.94.240.0', '188.94.247.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('188.94.248.0', '188.95.15.255', 2147483647, 2147483647, 'DE', 'Germany'), +('188.95.16.0', '188.95.23.255', 2147483647, 2147483647, 'IT', 'Italy'), +('188.95.24.0', '188.95.31.255', 2147483647, 2147483647, 'PL', 'Poland'), +('188.95.32.0', '188.95.39.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('188.95.40.0', '188.95.51.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('188.95.51.128', '188.95.55.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('188.95.56.0', '188.95.63.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('188.95.64.0', '188.95.71.255', 2147483647, 2147483647, 'JO', 'Jordan'), +('188.95.72.0', '188.95.79.255', 2147483647, 2147483647, 'IT', 'Italy'), +('188.95.80.0', '188.95.87.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('188.95.88.0', '188.95.103.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('188.95.104.0', '188.95.111.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('188.95.112.0', '188.95.119.255', 2147483647, 2147483647, 'ES', 'Spain'), +('188.96.0.0', '188.111.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('188.112.0.0', '188.112.63.255', 2147483647, 2147483647, 'PL', 'Poland'), +('188.112.64.0', '188.112.127.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('188.112.128.0', '188.112.191.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('188.112.192.0', '188.113.63.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('188.113.64.0', '188.113.127.255', 2147483647, 2147483647, 'NO', 'Norway'), +('188.113.128.0', '188.113.191.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('188.113.192.0', '188.113.255.255', 2147483647, 2147483647, 'UZ', 'Uzbekistan'), +('188.114.0.0', '188.114.127.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('188.114.128.0', '188.114.191.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('188.114.192.0', '188.114.255.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('188.115.0.0', '188.115.63.255', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('188.115.64.0', '188.115.127.255', 2147483647, 2147483647, 'FR', 'France'), +('188.115.128.0', '188.115.191.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('188.115.192.0', '188.115.255.255', 2147483647, 2147483647, 'AM', 'Armenia'), +('188.116.0.0', '188.116.63.255', 2147483647, 2147483647, 'PL', 'Poland'), +('188.116.64.0', '188.116.127.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('188.116.128.0', '188.116.191.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('188.116.192.0', '188.116.255.255', 2147483647, 2147483647, 'BH', 'Bahrain'), +('188.117.0.0', '188.117.63.255', 2147483647, 2147483647, 'FI', 'Finland'), +('188.117.64.0', '188.117.127.255', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('188.117.128.0', '188.117.191.255', 2147483647, 2147483647, 'PL', 'Poland'), +('188.117.192.0', '188.117.193.255', 2147483647, 2147483647, 'MK', 'Macedonia'), +('188.117.194.0', '188.117.195.255', 2147483647, 2147483647, 'AT', 'Austria'), +('188.117.196.0', '188.117.198.255', 2147483647, 2147483647, 'MK', 'Macedonia'), +('188.117.199.0', '188.117.255.255', 2147483647, 2147483647, 'AT', 'Austria'), +('188.118.0.0', '188.118.63.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('188.118.64.0', '188.118.127.255', 2147483647, 2147483647, 'IR', 'Iran, Islamic Republic of'), +('188.118.128.0', '188.118.191.255', 2147483647, 2147483647, 'DE', 'Germany'), +('188.118.192.0', '188.118.255.255', 2147483647, 2147483647, 'AT', 'Austria'), +('188.120.0.0', '188.120.31.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('188.120.32.0', '188.120.63.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('188.120.64.0', '188.120.95.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('188.120.96.0', '188.120.127.255', 2147483647, 2147483647, 'RS', 'Serbia'), +('188.120.128.0', '188.120.159.255', 2147483647, 2147483647, 'IL', 'Israel'), +('188.120.160.0', '188.120.191.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('188.120.192.0', '188.120.223.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('188.120.224.0', '188.120.255.255', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('188.121.0.0', '188.121.31.255', 2147483647, 2147483647, 'PL', 'Poland'), +('188.121.32.0', '188.121.63.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('188.121.64.0', '188.121.95.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('188.121.96.0', '188.121.159.255', 2147483647, 2147483647, 'IR', 'Iran, Islamic Republic of'), +('188.121.160.0', '188.121.191.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('188.121.192.0', '188.121.223.255', 2147483647, 2147483647, 'GE', 'Georgia'), +('188.121.224.0', '188.121.255.255', 2147483647, 2147483647, 'FR', 'France'), +('188.122.0.0', '188.122.31.255', 2147483647, 2147483647, 'PL', 'Poland'), +('188.122.32.0', '188.122.65.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('188.122.66.0', '188.122.67.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('188.122.68.0', '188.122.69.255', 2147483647, 2147483647, 'DE', 'Germany'), +('188.122.70.0', '188.122.95.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('188.122.128.0', '188.122.159.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('188.122.160.0', '188.122.191.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('188.122.192.0', '188.122.223.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('188.122.224.0', '188.122.255.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('188.123.0.0', '188.123.31.255', 2147483647, 2147483647, 'FI', 'Finland'), +('188.123.32.0', '188.123.63.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('188.123.64.0', '188.123.95.255', 2147483647, 2147483647, 'FR', 'France'), +('188.123.96.0', '188.123.127.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('188.123.128.0', '188.123.159.255', 2147483647, 2147483647, 'GE', 'Georgia'), +('188.123.160.0', '188.123.191.255', 2147483647, 2147483647, 'JO', 'Jordan'), +('188.123.192.0', '188.123.223.255', 2147483647, 2147483647, 'PL', 'Poland'), +('188.123.224.0', '188.123.255.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('188.124.0.0', '188.124.31.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('188.124.32.0', '188.124.63.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('188.124.64.0', '188.124.95.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('188.124.96.0', '188.124.127.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('188.124.128.0', '188.124.159.255', 2147483647, 2147483647, 'NO', 'Norway'), +('188.124.160.0', '188.124.191.255', 2147483647, 2147483647, 'PL', 'Poland'), +('188.124.192.0', '188.124.223.255', 2147483647, 2147483647, 'BA', 'Bosnia and Herzegovina'), +('188.124.224.0', '188.124.255.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('188.128.0.0', '188.128.127.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('188.128.128.0', '188.128.255.255', 2147483647, 2147483647, 'PL', 'Poland'), +('188.129.0.0', '188.129.127.255', 2147483647, 2147483647, 'HR', 'Croatia'), +('188.129.128.0', '188.129.255.255', 2147483647, 2147483647, 'GE', 'Georgia'), +('188.130.0.0', '188.130.127.255', 2147483647, 2147483647, 'FR', 'France'), +('188.130.128.0', '188.130.255.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('188.131.0.0', '188.131.127.255', 2147483647, 2147483647, 'MD', 'Moldova, Republic of'), +('188.131.128.0', '188.131.255.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('188.132.0.0', '188.132.127.255', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('188.132.128.0', '188.132.255.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('188.133.0.0', '188.133.127.255', 2147483647, 2147483647, 'GR', 'Greece'), +('188.133.128.0', '188.134.127.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('188.134.128.0', '188.134.255.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('188.135.0.0', '188.135.127.255', 2147483647, 2147483647, 'OM', 'Oman'), +('188.135.128.0', '188.135.255.255', 2147483647, 2147483647, 'IT', 'Italy'), +('188.136.0.0', '188.136.127.255', 2147483647, 2147483647, 'DE', 'Germany'), +('188.136.128.0', '188.136.255.255', 2147483647, 2147483647, 'IR', 'Iran, Islamic Republic of'), +('188.137.0.0', '188.137.127.255', 2147483647, 2147483647, 'PL', 'Poland'), +('188.138.0.0', '188.138.127.255', 2147483647, 2147483647, 'DE', 'Germany'), +('188.139.0.0', '188.139.127.255', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('188.139.128.0', '188.139.255.255', 2147483647, 2147483647, 'SY', 'Syrian Arab Republic'), +('188.140.0.0', '188.140.127.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('188.140.128.0', '188.140.255.255', 2147483647, 2147483647, 'OM', 'Oman'), +('188.141.0.0', '188.141.127.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('188.141.128.0', '188.141.255.255', 2147483647, 2147483647, 'FR', 'France'), +('188.142.0.0', '188.142.127.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('188.142.128.0', '188.142.255.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('188.143.0.0', '188.143.127.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('188.143.128.0', '188.143.255.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('188.144.0.0', '188.145.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('188.146.0.0', '188.147.255.255', 2147483647, 2147483647, 'PL', 'Poland'), +('188.148.0.0', '188.149.255.255', 2147483647, 2147483647, 'NO', 'Norway'), +('188.152.0.0', '188.153.255.255', 2147483647, 2147483647, 'IT', 'Italy'), +('188.154.0.0', '188.155.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('188.156.0.0', '188.157.255.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('188.158.0.0', '188.159.255.255', 2147483647, 2147483647, 'IR', 'Iran, Islamic Republic of'), +('188.160.0.0', '188.160.255.255', 2147483647, 2147483647, 'SY', 'Syrian Arab Republic'), +('188.161.0.0', '188.161.255.255', 2147483647, 2147483647, 'PS', 'Palestinian Territory, Occupied'), +('188.162.0.0', '188.162.255.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('188.163.0.0', '188.163.255.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('188.164.0.0', '188.164.255.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('188.165.0.0', '188.165.255.255', 2147483647, 2147483647, 'FR', 'France'), +('188.166.0.0', '188.166.255.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('188.167.0.0', '188.167.255.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('188.168.0.0', '188.168.255.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('188.169.0.0', '188.169.255.255', 2147483647, 2147483647, 'GE', 'Georgia'), +('188.170.0.0', '188.170.255.255', 2147483647, 2147483647, 'RO', 'Romania'), +('188.176.0.0', '188.183.255.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('188.184.0.0', '188.185.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('188.186.0.0', '188.187.255.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('188.188.0.0', '188.189.255.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('188.192.0.0', '188.195.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('188.200.0.0', '188.207.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('188.208.0.0', '188.214.255.255', 2147483647, 2147483647, 'RO', 'Romania'), +('188.215.0.0', '188.215.255.255', 2147483647, 2147483647, 'MD', 'Moldova, Republic of'), +('188.216.0.0', '188.219.255.255', 2147483647, 2147483647, 'IT', 'Italy'), +('188.220.0.0', '188.223.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('188.224.0.0', '188.224.127.255', 2147483647, 2147483647, 'FR', 'France'), +('188.224.128.0', '188.224.255.255', 2147483647, 2147483647, 'RO', 'Romania'), +('188.225.0.0', '188.225.127.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('188.240.0.0', '188.241.255.255', 2147483647, 2147483647, 'RO', 'Romania'), +('188.242.0.0', '188.243.255.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('188.248.0.0', '188.249.255.255', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('189.0.0.0', '189.127.255.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('189.128.0.0', '189.128.1.255', 2147483647, 2147483647, 'UY', 'Uruguay'), +('189.128.2.0', '189.128.2.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('189.128.3.0', '189.128.7.255', 2147483647, 2147483647, 'UY', 'Uruguay'), +('189.128.8.0', '189.255.255.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('190.0.0.0', '190.0.63.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('190.0.64.0', '190.0.95.255', 2147483647, 2147483647, 'DO', 'Dominican Republic'), +('190.0.96.0', '190.0.111.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('190.0.128.0', '190.0.159.255', 2147483647, 2147483647, 'UY', 'Uruguay'), +('190.0.160.0', '190.0.175.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('190.0.192.0', '190.0.223.255', 2147483647, 2147483647, 'GT', 'Guatemala'), +('190.1.0.0', '190.1.63.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('190.1.64.0', '190.1.95.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('190.1.128.0', '190.1.255.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('190.2.0.0', '190.2.63.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('190.2.64.0', '190.2.79.255', 2147483647, 2147483647, 'PY', 'Paraguay'), +('190.2.96.0', '190.2.111.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('190.2.128.0', '190.2.191.255', 2147483647, 2147483647, 'AN', 'Netherlands Antilles'), +('190.2.192.0', '190.2.207.255', 2147483647, 2147483647, 'PY', 'Paraguay'), +('190.2.224.0', '190.2.239.255', 2147483647, 2147483647, 'PA', 'Panama'), +('190.3.0.0', '190.3.159.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('190.3.192.0', '190.3.255.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('190.4.0.0', '190.4.13.211', 2147483647, 2147483647, 'GT', 'Guatemala'), +('190.4.13.212', '190.4.13.215', 2147483647, 2147483647, 'HN', 'Honduras'), +('190.4.13.216', '190.4.63.255', 2147483647, 2147483647, 'GT', 'Guatemala'), +('190.4.64.0', '190.4.79.255', 2147483647, 2147483647, 'AN', 'Netherlands Antilles'), +('190.4.96.0', '190.4.111.255', 2147483647, 2147483647, 'CL', 'Chile'), +('190.4.128.0', '190.4.159.255', 2147483647, 2147483647, 'AN', 'Netherlands Antilles'), +('190.4.192.0', '190.4.255.255', 2147483647, 2147483647, 'CL', 'Chile'), +('190.5.0.0', '190.5.31.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('190.5.64.0', '190.5.127.255', 2147483647, 2147483647, 'HN', 'Honduras'), +('190.5.128.0', '190.5.159.255', 2147483647, 2147483647, 'SV', 'El Salvador'), +('190.5.192.0', '190.5.207.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('190.5.224.0', '190.5.255.255', 2147483647, 2147483647, 'PA', 'Panama'), +('190.6.0.0', '190.6.63.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('190.6.64.0', '190.6.79.255', 2147483647, 2147483647, 'CU', 'Cuba'), +('190.6.96.0', '190.6.111.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('190.6.128.0', '190.6.159.255', 2147483647, 2147483647, 'DO', 'Dominican Republic'), +('190.6.160.0', '190.6.191.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('190.6.192.0', '190.6.207.255', 2147483647, 2147483647, 'HN', 'Honduras'), +('190.6.224.0', '190.6.239.255', 2147483647, 2147483647, 'TT', 'Trinidad and Tobago'), +('190.7.0.0', '190.7.63.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('190.7.64.0', '190.7.159.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('190.7.160.0', '190.7.175.255', 2147483647, 2147483647, 'CR', 'Costa Rica'), +('190.7.192.0', '190.7.223.255', 2147483647, 2147483647, 'CR', 'Costa Rica'), +('190.7.224.0', '190.7.239.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('190.8.0.0', '190.8.15.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('190.8.32.0', '190.8.47.255', 2147483647, 2147483647, 'DO', 'Dominican Republic'), +('190.8.64.0', '190.8.127.255', 2147483647, 2147483647, 'CL', 'Chile'), +('190.8.128.0', '190.8.159.255', 2147483647, 2147483647, 'PE', 'Peru'), +('190.8.192.0', '190.8.223.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('190.9.0.0', '190.9.15.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('190.9.32.0', '190.9.47.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('190.9.64.0', '190.9.127.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('190.9.128.0', '190.9.159.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('190.9.160.0', '190.9.191.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('190.9.192.0', '190.9.255.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('190.10.0.0', '190.10.127.255', 2147483647, 2147483647, 'CR', 'Costa Rica'), +('190.10.128.0', '190.11.31.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('190.11.32.0', '190.11.47.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('190.11.64.0', '190.11.95.255', 2147483647, 2147483647, 'BO', 'Bolivia'), +('190.11.96.0', '190.11.111.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('190.11.128.0', '190.11.159.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('190.11.192.0', '190.11.207.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('190.11.224.0', '190.11.239.255', 2147483647, 2147483647, 'HN', 'Honduras'), +('190.12.0.0', '190.12.63.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('190.12.64.0', '190.12.95.255', 2147483647, 2147483647, 'PE', 'Peru'), +('190.12.96.0', '190.12.127.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('190.12.128.0', '190.12.159.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('190.12.192.0', '190.12.217.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('190.12.218.0', '190.12.218.255', 2147483647, 2147483647, 'US', 'United States'), +('190.12.219.0', '190.12.255.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('190.13.0.0', '190.13.63.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('190.13.64.0', '190.13.79.255', 2147483647, 2147483647, 'CL', 'Chile'), +('190.13.96.0', '190.13.111.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('190.13.128.0', '190.13.191.255', 2147483647, 2147483647, 'CL', 'Chile'), +('190.13.192.0', '190.13.207.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('190.13.224.0', '190.13.239.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('190.14.0.0', '190.14.31.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('190.14.64.0', '190.14.68.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('190.14.69.0', '190.14.69.255', 2147483647, 2147483647, 'CL', 'Chile'), +('190.14.70.0', '190.14.80.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('190.14.81.0', '190.14.81.255', 2147483647, 2147483647, 'CL', 'Chile'), +('190.14.82.0', '190.14.83.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('190.14.84.0', '190.14.84.255', 2147483647, 2147483647, 'CL', 'Chile'), +('190.14.85.0', '190.14.91.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('190.14.92.0', '190.14.92.255', 2147483647, 2147483647, 'CL', 'Chile'), +('190.14.93.0', '190.14.127.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('190.14.128.0', '190.14.143.255', 2147483647, 2147483647, 'GT', 'Guatemala'), +('190.14.160.0', '190.14.191.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('190.14.192.0', '190.14.223.255', 2147483647, 2147483647, 'PA', 'Panama'), +('190.14.224.0', '190.15.31.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('190.15.64.0', '190.15.79.255', 2147483647, 2147483647, 'HN', 'Honduras'), +('190.15.96.0', '190.15.111.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('190.15.128.0', '190.15.143.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('190.15.160.0', '190.15.191.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('190.15.192.0', '190.15.223.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('190.16.0.0', '190.19.255.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('190.20.0.0', '190.23.255.255', 2147483647, 2147483647, 'CL', 'Chile'), +('190.24.0.0', '190.29.255.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('190.30.0.0', '190.31.255.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('190.32.0.0', '190.35.255.255', 2147483647, 2147483647, 'PA', 'Panama'), +('190.36.0.0', '190.39.255.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('190.40.0.0', '190.43.255.255', 2147483647, 2147483647, 'PE', 'Peru'), +('190.44.0.0', '190.47.255.255', 2147483647, 2147483647, 'CL', 'Chile'), +('190.48.0.0', '190.51.255.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('190.52.0.0', '190.52.31.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('190.52.64.0', '190.52.79.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('190.52.96.0', '190.52.111.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('190.52.128.0', '190.52.159.255', 2147483647, 2147483647, 'PY', 'Paraguay'), +('190.52.192.0', '190.52.207.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('190.52.224.0', '190.52.255.255', 2147483647, 2147483647, 'DO', 'Dominican Republic'), +('190.53.0.0', '190.53.34.255', 2147483647, 2147483647, 'SV', 'El Salvador'), +('190.53.35.0', '190.53.39.255', 2147483647, 2147483647, 'NI', 'Nicaragua'), +('190.53.40.0', '190.53.47.255', 2147483647, 2147483647, 'SV', 'El Salvador'), +('190.53.48.0', '190.53.95.255', 2147483647, 2147483647, 'HN', 'Honduras'), +('190.53.96.0', '190.53.191.255', 2147483647, 2147483647, 'SV', 'El Salvador'), +('190.53.192.0', '190.53.207.255', 2147483647, 2147483647, 'HN', 'Honduras'), +('190.53.208.0', '190.53.255.255', 2147483647, 2147483647, 'SV', 'El Salvador'), +('190.54.0.0', '190.54.255.255', 2147483647, 2147483647, 'CL', 'Chile'), +('190.55.0.0', '190.55.255.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('190.56.0.0', '190.56.255.255', 2147483647, 2147483647, 'GT', 'Guatemala'), +('190.57.0.0', '190.57.79.255', 2147483647, 2147483647, 'SV', 'El Salvador'), +('190.57.80.0', '190.57.109.255', 2147483647, 2147483647, 'GT', 'Guatemala'), +('190.57.110.0', '190.57.111.255', 2147483647, 2147483647, 'SV', 'El Salvador'), +('190.57.112.0', '190.57.113.255', 2147483647, 2147483647, 'GT', 'Guatemala'), +('190.57.114.0', '190.57.115.255', 2147483647, 2147483647, 'SV', 'El Salvador'), +('190.57.116.0', '190.57.123.255', 2147483647, 2147483647, 'GT', 'Guatemala'), +('190.57.124.0', '190.57.127.255', 2147483647, 2147483647, 'SV', 'El Salvador'), +('190.58.0.0', '190.59.255.255', 2147483647, 2147483647, 'TT', 'Trinidad and Tobago'), +('190.60.0.0', '190.60.19.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('190.60.20.0', '190.60.21.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('190.60.22.0', '190.60.22.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('190.60.23.0', '190.60.127.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('190.60.128.0', '190.60.133.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('190.60.134.0', '190.60.136.79', 2147483647, 2147483647, 'CO', 'Colombia'), +('190.60.136.80', '190.60.136.87', 2147483647, 2147483647, 'AR', 'Argentina'), +('190.60.136.88', '190.60.136.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('190.60.137.0', '190.60.137.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('190.60.138.0', '190.60.138.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('190.60.139.0', '190.60.139.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('190.60.140.0', '190.61.12.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('190.61.13.0', '190.61.13.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('190.61.14.0', '190.61.255.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('190.64.0.0', '190.64.255.255', 2147483647, 2147483647, 'UY', 'Uruguay'), +('190.65.0.0', '190.71.255.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('190.72.0.0', '190.79.255.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('190.80.0.0', '190.80.63.255', 2147483647, 2147483647, 'GY', 'Guyana'), +('190.80.128.0', '190.80.255.255', 2147483647, 2147483647, 'DO', 'Dominican Republic'), +('190.81.0.0', '190.81.255.255', 2147483647, 2147483647, 'PE', 'Peru'), +('190.82.0.0', '190.82.255.255', 2147483647, 2147483647, 'CL', 'Chile'), +('190.83.0.0', '190.83.127.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('190.84.0.0', '190.84.255.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('190.86.0.0', '190.87.255.255', 2147483647, 2147483647, 'SV', 'El Salvador'), +('190.88.0.0', '190.89.255.255', 2147483647, 2147483647, 'AN', 'Netherlands Antilles'), +('190.90.0.0', '190.90.255.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('190.92.0.0', '190.92.63.255', 2147483647, 2147483647, 'HN', 'Honduras'), +('190.92.128.0', '190.92.255.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('190.93.0.0', '190.93.127.255', 2147483647, 2147483647, 'TT', 'Trinidad and Tobago'), +('190.93.128.0', '190.93.159.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('190.94.0.0', '190.94.127.255', 2147483647, 2147483647, 'DO', 'Dominican Republic'), +('190.94.128.0', '190.94.159.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('190.95.0.0', '190.95.127.255', 2147483647, 2147483647, 'CL', 'Chile'), +('190.95.128.0', '190.95.255.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('190.96.0.0', '190.96.127.255', 2147483647, 2147483647, 'CL', 'Chile'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('190.96.128.0', '190.96.255.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('190.97.0.0', '190.97.63.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('190.97.64.0', '190.97.95.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('190.97.96.0', '190.97.111.255', 2147483647, 2147483647, 'TT', 'Trinidad and Tobago'), +('190.97.128.0', '190.97.255.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('190.98.0.0', '190.98.127.255', 2147483647, 2147483647, 'SR', 'Suriname'), +('190.98.128.0', '190.98.131.255', 2147483647, 2147483647, 'GT', 'Guatemala'), +('190.98.132.0', '190.98.135.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('190.98.136.0', '190.98.136.255', 2147483647, 2147483647, 'PE', 'Peru'), +('190.98.137.0', '190.98.159.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('190.99.0.0', '190.99.15.255', 2147483647, 2147483647, 'NI', 'Nicaragua'), +('190.99.16.0', '190.99.63.255', 2147483647, 2147483647, 'GT', 'Guatemala'), +('190.99.128.0', '190.99.255.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('190.100.0.0', '190.100.255.255', 2147483647, 2147483647, 'CL', 'Chile'), +('190.102.0.0', '190.102.15.255', 2147483647, 2147483647, 'AN', 'Netherlands Antilles'), +('190.102.32.0', '190.102.47.255', 2147483647, 2147483647, 'CR', 'Costa Rica'), +('190.102.64.0', '190.102.95.255', 2147483647, 2147483647, 'HT', 'Haiti'), +('190.102.192.0', '190.102.223.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('190.102.224.0', '190.102.255.255', 2147483647, 2147483647, 'CL', 'Chile'), +('190.103.0.0', '190.103.15.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('190.103.32.0', '190.103.63.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('190.103.64.0', '190.103.79.255', 2147483647, 2147483647, 'BO', 'Bolivia'), +('190.103.96.0', '190.103.111.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('190.103.128.0', '190.103.255.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('190.104.0.0', '190.104.31.255', 2147483647, 2147483647, 'BO', 'Bolivia'), +('190.104.128.0', '190.104.191.255', 2147483647, 2147483647, 'PY', 'Paraguay'), +('190.105.0.0', '190.105.63.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('190.106.0.0', '190.106.31.255', 2147483647, 2147483647, 'NI', 'Nicaragua'), +('190.106.64.0', '190.106.79.255', 2147483647, 2147483647, 'CR', 'Costa Rica'), +('190.106.96.0', '190.106.111.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('190.106.128.0', '190.106.138.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('190.106.139.0', '190.106.139.255', 2147483647, 2147483647, 'US', 'United States'), +('190.106.140.0', '190.106.191.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('190.107.0.0', '190.107.15.255', 2147483647, 2147483647, 'CU', 'Cuba'), +('190.107.32.0', '190.107.47.255', 2147483647, 2147483647, 'BO', 'Bolivia'), +('190.107.64.0', '190.107.79.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('190.107.96.0', '190.107.127.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('190.107.128.0', '190.107.143.255', 2147483647, 2147483647, 'HN', 'Honduras'), +('190.107.160.0', '190.107.175.255', 2147483647, 2147483647, 'PA', 'Panama'), +('190.107.192.0', '190.107.207.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('190.108.0.0', '190.108.31.255', 2147483647, 2147483647, 'UY', 'Uruguay'), +('190.108.128.0', '190.108.191.255', 2147483647, 2147483647, 'CL', 'Chile'), +('190.109.0.0', '190.109.31.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('190.109.128.0', '190.109.191.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('190.109.192.0', '190.109.223.255', 2147483647, 2147483647, 'HN', 'Honduras'), +('190.110.0.0', '190.110.31.255', 2147483647, 2147483647, 'DO', 'Dominican Republic'), +('190.110.128.0', '190.110.159.255', 2147483647, 2147483647, 'CL', 'Chile'), +('190.111.0.0', '190.111.31.255', 2147483647, 2147483647, 'GT', 'Guatemala'), +('190.111.128.0', '190.111.191.255', 2147483647, 2147483647, 'PA', 'Panama'), +('190.111.192.0', '190.111.223.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('190.112.0.0', '190.112.31.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('190.112.128.0', '190.112.159.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('190.113.0.0', '190.113.31.255', 2147483647, 2147483647, 'CL', 'Chile'), +('190.120.0.0', '190.120.15.255', 2147483647, 2147483647, 'SV', 'El Salvador'), +('190.120.32.0', '190.120.47.255', 2147483647, 2147483647, 'PE', 'Peru'), +('190.120.64.0', '190.120.79.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('190.120.96.0', '190.120.111.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('190.120.128.0', '190.120.143.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('190.120.160.0', '190.120.175.255', 2147483647, 2147483647, 'CL', 'Chile'), +('190.120.192.0', '190.120.223.255', 2147483647, 2147483647, 'HT', 'Haiti'), +('190.120.224.0', '190.120.239.255', 2147483647, 2147483647, 'PA', 'Panama'), +('190.121.0.0', '190.121.31.255', 2147483647, 2147483647, 'CL', 'Chile'), +('190.121.128.0', '190.121.143.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('190.121.160.0', '190.121.175.255', 2147483647, 2147483647, 'PY', 'Paraguay'), +('190.121.192.0', '190.121.207.255', 2147483647, 2147483647, 'GT', 'Guatemala'), +('190.121.224.0', '190.121.239.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('190.122.0.0', '190.122.79.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('190.122.96.0', '190.122.111.255', 2147483647, 2147483647, 'DO', 'Dominican Republic'), +('190.122.128.0', '190.122.143.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('190.122.160.0', '190.122.175.255', 2147483647, 2147483647, 'PA', 'Panama'), +('190.128.0.0', '190.128.7.255', 2147483647, 2147483647, 'UY', 'Uruguay'), +('190.128.8.0', '190.128.127.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('190.128.128.0', '190.128.255.255', 2147483647, 2147483647, 'PY', 'Paraguay'), +('190.129.0.0', '190.129.127.255', 2147483647, 2147483647, 'BO', 'Bolivia'), +('190.130.0.0', '190.130.63.255', 2147483647, 2147483647, 'HN', 'Honduras'), +('190.131.0.0', '190.131.127.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('190.132.0.0', '190.135.255.255', 2147483647, 2147483647, 'UY', 'Uruguay'), +('190.136.0.0', '190.137.160.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('190.137.161.0', '190.137.161.255', 2147483647, 2147483647, 'UY', 'Uruguay'), +('190.137.162.0', '190.139.255.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('190.140.0.0', '190.141.255.255', 2147483647, 2147483647, 'PA', 'Panama'), +('190.142.0.0', '190.142.255.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('190.143.0.0', '190.143.63.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('190.144.0.0', '190.147.255.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('190.148.0.0', '190.149.255.255', 2147483647, 2147483647, 'GT', 'Guatemala'), +('190.151.0.0', '190.151.127.255', 2147483647, 2147483647, 'CL', 'Chile'), +('190.152.0.0', '190.152.255.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('190.153.0.0', '190.153.127.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('190.154.0.0', '190.155.255.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('190.156.0.0', '190.159.255.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('190.160.0.0', '190.164.255.255', 2147483647, 2147483647, 'CL', 'Chile'), +('190.165.0.0', '190.165.255.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('190.166.0.0', '190.167.255.255', 2147483647, 2147483647, 'DO', 'Dominican Republic'), +('190.168.0.0', '190.171.255.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('190.172.0.0', '190.180.129.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('190.180.130.0', '190.180.131.255', 2147483647, 2147483647, 'US', 'United States'), +('190.180.132.0', '190.180.255.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('190.181.0.0', '190.181.63.255', 2147483647, 2147483647, 'BO', 'Bolivia'), +('190.182.0.0', '190.182.127.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('190.183.0.0', '190.183.255.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('190.184.0.0', '190.184.127.255', 2147483647, 2147483647, 'NI', 'Nicaragua'), +('190.185.0.0', '190.185.127.255', 2147483647, 2147483647, 'AN', 'Netherlands Antilles'), +('190.186.0.0', '190.186.255.255', 2147483647, 2147483647, 'BO', 'Bolivia'), +('190.187.0.0', '190.187.127.255', 2147483647, 2147483647, 'PE', 'Peru'), +('190.188.0.0', '190.193.255.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('190.196.0.0', '190.196.127.255', 2147483647, 2147483647, 'CL', 'Chile'), +('190.197.0.0', '190.197.127.255', 2147483647, 2147483647, 'BZ', 'Belize'), +('190.197.128.0', '190.197.255.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('190.198.0.0', '190.207.255.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('190.208.0.0', '190.209.255.255', 2147483647, 2147483647, 'CL', 'Chile'), +('190.210.0.0', '190.210.127.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('190.212.0.0', '190.212.255.255', 2147483647, 2147483647, 'NI', 'Nicaragua'), +('190.213.0.0', '190.213.255.255', 2147483647, 2147483647, 'TT', 'Trinidad and Tobago'), +('190.214.0.0', '190.214.127.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('190.216.0.0', '190.216.191.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('190.216.192.0', '190.216.207.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('190.216.208.0', '190.216.239.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('190.216.240.0', '190.216.255.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('190.218.0.0', '190.218.255.255', 2147483647, 2147483647, 'PA', 'Panama'), +('190.220.0.0', '190.220.255.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('190.222.0.0', '190.223.255.255', 2147483647, 2147483647, 'PE', 'Peru'), +('190.224.0.0', '190.231.255.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('190.232.0.0', '190.235.255.255', 2147483647, 2147483647, 'PE', 'Peru'), +('190.240.0.0', '190.240.127.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('190.241.0.0', '190.241.43.255', 2147483647, 2147483647, 'CR', 'Costa Rica'), +('190.241.44.0', '190.241.44.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('190.241.45.0', '190.241.45.255', 2147483647, 2147483647, 'CR', 'Costa Rica'), +('190.241.46.0', '190.241.47.127', 2147483647, 2147483647, 'CO', 'Colombia'), +('190.241.47.128', '190.241.255.255', 2147483647, 2147483647, 'CR', 'Costa Rica'), +('190.242.0.0', '190.242.31.255', 2147483647, 2147483647, 'NI', 'Nicaragua'), +('190.242.32.0', '190.242.255.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('190.244.0.0', '190.247.255.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('190.248.0.0', '190.255.255.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('192.0.0.0', '192.2.210.107', 2147483647, 2147483647, 'US', 'United States'), +('192.2.210.108', '192.2.210.108', 2147483647, 2147483647, 'FR', 'France'), +('192.2.210.109', '192.2.255.255', 2147483647, 2147483647, 'US', 'United States'), +('192.4.0.0', '192.5.27.255', 2147483647, 2147483647, 'US', 'United States'), +('192.5.28.0', '192.5.31.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.5.32.0', '192.5.35.255', 2147483647, 2147483647, 'US', 'United States'), +('192.5.36.0', '192.5.36.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('192.5.37.0', '192.5.49.255', 2147483647, 2147483647, 'US', 'United States'), +('192.5.50.0', '192.5.50.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('192.5.52.0', '192.5.56.255', 2147483647, 2147483647, 'US', 'United States'), +('192.5.59.0', '192.5.59.255', 2147483647, 2147483647, 'FR', 'France'), +('192.5.61.0', '192.5.62.255', 2147483647, 2147483647, 'FR', 'France'), +('192.5.63.0', '192.5.89.255', 2147483647, 2147483647, 'US', 'United States'), +('192.5.90.0', '192.5.90.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('192.5.91.0', '192.5.95.255', 2147483647, 2147483647, 'US', 'United States'), +('192.5.96.0', '192.5.96.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.5.97.0', '192.5.97.255', 2147483647, 2147483647, 'IT', 'Italy'), +('192.5.98.0', '192.5.141.255', 2147483647, 2147483647, 'US', 'United States'), +('192.5.142.0', '192.5.142.255', 2147483647, 2147483647, 'FR', 'France'), +('192.5.143.0', '192.5.143.255', 2147483647, 2147483647, 'US', 'United States'), +('192.5.144.0', '192.5.144.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.5.145.0', '192.5.145.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.5.146.0', '192.5.161.255', 2147483647, 2147483647, 'US', 'United States'), +('192.5.162.0', '192.5.162.255', 2147483647, 2147483647, 'AT', 'Austria'), +('192.5.163.0', '192.5.203.255', 2147483647, 2147483647, 'US', 'United States'), +('192.5.204.0', '192.5.205.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.5.206.0', '192.5.215.255', 2147483647, 2147483647, 'US', 'United States'), +('192.5.216.0', '192.5.216.255', 2147483647, 2147483647, 'JP', 'Japan'), +('192.5.217.0', '192.5.238.255', 2147483647, 2147483647, 'US', 'United States'), +('192.5.239.0', '192.5.239.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.5.240.0', '192.5.240.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.5.242.0', '192.5.253.255', 2147483647, 2147483647, 'US', 'United States'), +('192.5.254.0', '192.5.254.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.6.0.0', '192.6.0.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.6.1.0', '192.6.83.255', 2147483647, 2147483647, 'US', 'United States'), +('192.6.84.0', '192.6.84.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('192.6.85.0', '192.6.148.255', 2147483647, 2147483647, 'US', 'United States'), +('192.6.149.0', '192.6.149.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.6.150.0', '192.11.255.255', 2147483647, 2147483647, 'US', 'United States'), +('192.12.1.0', '192.12.1.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.12.3.0', '192.12.44.255', 2147483647, 2147483647, 'US', 'United States'), +('192.12.47.0', '192.12.47.255', 2147483647, 2147483647, 'IT', 'Italy'), +('192.12.48.0', '192.12.53.255', 2147483647, 2147483647, 'US', 'United States'), +('192.12.54.0', '192.12.54.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('192.12.56.0', '192.12.61.255', 2147483647, 2147483647, 'US', 'United States'), +('192.12.62.0', '192.12.62.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.12.63.0', '192.12.71.255', 2147483647, 2147483647, 'US', 'United States'), +('192.12.72.0', '192.12.73.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.12.74.0', '192.12.75.255', 2147483647, 2147483647, 'US', 'United States'), +('192.12.76.0', '192.12.76.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.12.77.0', '192.12.77.255', 2147483647, 2147483647, 'IT', 'Italy'), +('192.12.78.0', '192.12.80.255', 2147483647, 2147483647, 'US', 'United States'), +('192.12.81.0', '192.12.81.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.12.82.0', '192.12.95.255', 2147483647, 2147483647, 'US', 'United States'), +('192.12.96.0', '192.12.96.255', 2147483647, 2147483647, 'FR', 'France'), +('192.12.97.0', '192.12.97.255', 2147483647, 2147483647, 'US', 'United States'), +('192.12.98.0', '192.12.98.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.12.99.0', '192.12.99.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.12.100.0', '192.12.103.255', 2147483647, 2147483647, 'US', 'United States'), +('192.12.108.0', '192.12.127.255', 2147483647, 2147483647, 'US', 'United States'), +('192.12.129.0', '192.12.129.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.12.130.0', '192.12.171.255', 2147483647, 2147483647, 'US', 'United States'), +('192.12.173.0', '192.12.173.255', 2147483647, 2147483647, 'US', 'United States'), +('192.12.174.0', '192.12.183.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.12.184.0', '192.12.191.255', 2147483647, 2147483647, 'US', 'United States'), +('192.12.192.0', '192.12.194.255', 2147483647, 2147483647, 'IT', 'Italy'), +('192.12.195.0', '192.12.214.255', 2147483647, 2147483647, 'US', 'United States'), +('192.12.215.0', '192.12.215.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.12.216.0', '192.12.216.255', 2147483647, 2147483647, 'US', 'United States'), +('192.12.217.0', '192.12.218.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('192.12.220.0', '192.12.230.255', 2147483647, 2147483647, 'US', 'United States'), +('192.12.231.0', '192.12.231.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.12.232.0', '192.12.232.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('192.12.233.0', '192.12.234.255', 2147483647, 2147483647, 'US', 'United States'), +('192.12.235.0', '192.12.235.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('192.12.236.0', '192.12.246.255', 2147483647, 2147483647, 'US', 'United States'), +('192.12.247.0', '192.12.247.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('192.12.248.0', '192.15.255.255', 2147483647, 2147483647, 'US', 'United States'), +('192.16.64.0', '192.16.122.255', 2147483647, 2147483647, 'US', 'United States'), +('192.16.123.0', '192.16.136.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('192.16.137.0', '192.16.137.255', 2147483647, 2147483647, 'EU', 'Europe'), +('192.16.138.0', '192.16.154.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('192.16.155.0', '192.16.166.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('192.16.167.0', '192.16.177.255', 2147483647, 2147483647, 'US', 'United States'), +('192.16.178.0', '192.16.179.255', 2147483647, 2147483647, 'JP', 'Japan'), +('192.16.180.0', '192.16.180.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.16.181.0', '192.16.182.255', 2147483647, 2147483647, 'US', 'United States'), +('192.16.183.0', '192.16.202.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('192.16.203.0', '192.16.204.255', 2147483647, 2147483647, 'US', 'United States'), +('192.16.205.0', '192.16.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.17.0.0', '192.18.194.255', 2147483647, 2147483647, 'US', 'United States'), +('192.18.195.0', '192.18.195.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.18.196.0', '192.25.18.255', 2147483647, 2147483647, 'US', 'United States'), +('192.25.19.0', '192.25.19.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.25.20.0', '192.25.21.255', 2147483647, 2147483647, 'US', 'United States'), +('192.25.22.0', '192.25.22.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.25.23.0', '192.25.32.255', 2147483647, 2147483647, 'US', 'United States'), +('192.25.33.0', '192.25.33.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.25.34.0', '192.25.104.255', 2147483647, 2147483647, 'US', 'United States'), +('192.25.105.0', '192.25.105.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.25.106.0', '192.26.8.255', 2147483647, 2147483647, 'US', 'United States'), +('192.26.9.0', '192.26.9.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.26.10.0', '192.26.27.255', 2147483647, 2147483647, 'US', 'United States'), +('192.26.28.0', '192.26.44.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('192.26.45.0', '192.26.45.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.26.46.0', '192.26.47.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('192.26.48.0', '192.26.90.255', 2147483647, 2147483647, 'US', 'United States'), +('192.26.91.0', '192.26.91.255', 2147483647, 2147483647, 'JP', 'Japan'), +('192.26.92.0', '192.26.92.255', 2147483647, 2147483647, 'US', 'United States'), +('192.26.93.0', '192.26.94.255', 2147483647, 2147483647, 'JP', 'Japan'), +('192.26.95.0', '192.26.95.255', 2147483647, 2147483647, 'US', 'United States'), +('192.26.96.0', '192.26.96.255', 2147483647, 2147483647, 'JP', 'Japan'), +('192.26.97.0', '192.26.97.255', 2147483647, 2147483647, 'US', 'United States'), +('192.26.100.0', '192.26.103.255', 2147483647, 2147483647, 'US', 'United States'), +('192.26.104.0', '192.26.135.255', 2147483647, 2147483647, 'FI', 'Finland'), +('192.26.136.0', '192.26.136.255', 2147483647, 2147483647, 'US', 'United States'), +('192.26.144.0', '192.26.153.255', 2147483647, 2147483647, 'US', 'United States'), +('192.26.154.0', '192.26.173.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('192.26.174.0', '192.26.193.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.26.194.0', '192.26.209.255', 2147483647, 2147483647, 'US', 'United States'), +('192.26.210.0', '192.26.212.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.26.213.0', '192.26.214.255', 2147483647, 2147483647, 'US', 'United States'), +('192.26.215.0', '192.26.230.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.26.231.0', '192.26.231.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('192.26.232.0', '192.26.232.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.26.233.0', '192.26.233.255', 2147483647, 2147483647, 'US', 'United States'), +('192.26.234.0', '192.26.234.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.26.235.0', '192.26.235.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.26.236.0', '192.26.236.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('192.26.237.0', '192.26.237.255', 2147483647, 2147483647, 'EU', 'Europe'), +('192.26.238.0', '192.26.238.255', 2147483647, 2147483647, 'AT', 'Austria'), +('192.26.239.0', '192.26.239.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('192.26.240.0', '192.30.127.255', 2147483647, 2147483647, 'US', 'United States'), +('192.30.142.0', '192.30.142.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.30.147.0', '192.30.148.255', 2147483647, 2147483647, 'US', 'United States'), +('192.30.149.0', '192.30.149.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.30.191.0', '192.30.191.255', 2147483647, 2147483647, 'US', 'United States'), +('192.30.200.0', '192.30.200.255', 2147483647, 2147483647, 'US', 'United States'), +('192.30.202.0', '192.30.202.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.30.206.0', '192.30.209.255', 2147483647, 2147483647, 'US', 'United States'), +('192.30.226.0', '192.30.226.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.30.240.0', '192.31.5.255', 2147483647, 2147483647, 'US', 'United States'), +('192.31.6.0', '192.31.6.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.31.7.0', '192.31.13.255', 2147483647, 2147483647, 'US', 'United States'), +('192.31.14.0', '192.31.14.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.31.16.0', '192.31.22.255', 2147483647, 2147483647, 'US', 'United States'), +('192.31.23.0', '192.31.23.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('192.31.24.0', '192.31.25.255', 2147483647, 2147483647, 'US', 'United States'), +('192.31.26.0', '192.31.26.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.31.27.0', '192.31.27.255', 2147483647, 2147483647, 'FR', 'France'), +('192.31.28.0', '192.31.30.255', 2147483647, 2147483647, 'US', 'United States'), +('192.31.31.0', '192.31.31.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.31.32.0', '192.31.39.255', 2147483647, 2147483647, 'US', 'United States'), +('192.31.40.0', '192.31.40.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('192.31.41.0', '192.31.48.255', 2147483647, 2147483647, 'US', 'United States'), +('192.31.62.0', '192.31.62.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.31.63.0', '192.31.101.255', 2147483647, 2147483647, 'US', 'United States'), +('192.31.102.0', '192.31.102.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.31.104.0', '192.31.115.255', 2147483647, 2147483647, 'US', 'United States'), +('192.31.116.0', '192.31.127.255', 2147483647, 2147483647, 'JP', 'Japan'), +('192.31.144.0', '192.31.164.255', 2147483647, 2147483647, 'US', 'United States'), +('192.31.166.0', '192.31.171.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('192.31.172.0', '192.31.179.255', 2147483647, 2147483647, 'US', 'United States'), +('192.31.180.0', '192.31.180.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.31.181.0', '192.31.181.255', 2147483647, 2147483647, 'US', 'United States'), +('192.31.191.0', '192.31.196.255', 2147483647, 2147483647, 'US', 'United States'), +('192.31.197.0', '192.31.206.255', 2147483647, 2147483647, 'JP', 'Japan'), +('192.31.207.0', '192.31.207.255', 2147483647, 2147483647, 'US', 'United States'), +('192.31.209.0', '192.31.210.255', 2147483647, 2147483647, 'US', 'United States'), +('192.31.211.0', '192.31.211.255', 2147483647, 2147483647, 'FR', 'France'), +('192.31.212.0', '192.31.223.255', 2147483647, 2147483647, 'US', 'United States'), +('192.31.224.0', '192.31.224.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.31.225.0', '192.31.227.255', 2147483647, 2147483647, 'US', 'United States'), +('192.31.229.0', '192.31.230.255', 2147483647, 2147483647, 'US', 'United States'), +('192.31.231.0', '192.31.231.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('192.31.232.0', '192.31.251.255', 2147483647, 2147483647, 'US', 'United States'), +('192.31.252.0', '192.31.252.255', 2147483647, 2147483647, 'FR', 'France'), +('192.31.253.0', '192.31.254.255', 2147483647, 2147483647, 'US', 'United States'), +('192.32.0.0', '192.33.9.255', 2147483647, 2147483647, 'US', 'United States'), +('192.33.10.0', '192.33.10.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('192.33.12.0', '192.33.14.255', 2147483647, 2147483647, 'US', 'United States'), +('192.33.15.0', '192.33.15.255', 2147483647, 2147483647, 'FR', 'France'), +('192.33.16.0', '192.33.16.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.33.19.0', '192.33.23.255', 2147483647, 2147483647, 'US', 'United States'), +('192.33.32.0', '192.33.35.255', 2147483647, 2147483647, 'US', 'United States'), +('192.33.36.0', '192.33.36.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('192.33.37.0', '192.33.86.255', 2147483647, 2147483647, 'US', 'United States'), +('192.33.87.0', '192.33.111.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('192.33.112.0', '192.33.112.255', 2147483647, 2147483647, 'US', 'United States'), +('192.33.113.0', '192.33.114.255', 2147483647, 2147483647, 'FR', 'France'), +('192.33.115.0', '192.33.117.255', 2147483647, 2147483647, 'US', 'United States'), +('192.33.118.0', '192.33.127.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('192.33.128.0', '192.33.129.255', 2147483647, 2147483647, 'US', 'United States'), +('192.33.130.0', '192.33.130.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.33.131.0', '192.33.131.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('192.33.134.0', '192.33.134.255', 2147483647, 2147483647, 'US', 'United States'), +('192.33.135.0', '192.33.135.255', 2147483647, 2147483647, 'JP', 'Japan'), +('192.33.136.0', '192.33.142.255', 2147483647, 2147483647, 'US', 'United States'), +('192.33.143.0', '192.33.182.255', 2147483647, 2147483647, 'FR', 'France'), +('192.33.183.0', '192.33.191.255', 2147483647, 2147483647, 'US', 'United States'), +('192.33.192.0', '192.33.231.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('192.33.232.0', '192.33.232.255', 2147483647, 2147483647, 'US', 'United States'), +('192.33.233.0', '192.33.233.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('192.33.234.0', '192.33.251.255', 2147483647, 2147483647, 'US', 'United States'), +('192.33.253.0', '192.33.253.255', 2147483647, 2147483647, 'US', 'United States'), +('192.33.254.0', '192.33.254.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.34.19.0', '192.34.19.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.34.25.0', '192.34.25.255', 2147483647, 2147483647, 'US', 'United States'), +('192.34.35.0', '192.34.35.255', 2147483647, 2147483647, 'US', 'United States'), +('192.34.50.0', '192.34.50.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.34.70.0', '192.34.70.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.34.71.0', '192.34.72.255', 2147483647, 2147483647, 'US', 'United States'), +('192.34.90.0', '192.34.90.255', 2147483647, 2147483647, 'US', 'United States'), +('192.34.107.0', '192.34.107.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('192.34.116.0', '192.34.116.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('192.34.145.0', '192.34.145.255', 2147483647, 2147483647, 'US', 'United States'), +('192.34.169.0', '192.34.169.255', 2147483647, 2147483647, 'US', 'United States'), +('192.34.179.0', '192.34.179.255', 2147483647, 2147483647, 'FI', 'Finland'), +('192.34.180.0', '192.34.199.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.34.212.0', '192.34.215.255', 2147483647, 2147483647, 'US', 'United States'), +('192.34.224.0', '192.34.255.255', 2147483647, 2147483647, 'US', 'United States'), +('192.35.0.0', '192.35.19.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.35.20.0', '192.35.58.255', 2147483647, 2147483647, 'US', 'United States'), +('192.35.59.0', '192.35.59.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.35.60.0', '192.35.60.255', 2147483647, 2147483647, 'US', 'United States'), +('192.35.62.0', '192.35.62.255', 2147483647, 2147483647, 'US', 'United States'), +('192.35.63.0', '192.35.72.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.35.73.0', '192.35.89.255', 2147483647, 2147483647, 'US', 'United States'), +('192.35.90.0', '192.35.90.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.35.91.0', '192.35.93.255', 2147483647, 2147483647, 'US', 'United States'), +('192.35.94.0', '192.35.94.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.35.95.0', '192.35.107.255', 2147483647, 2147483647, 'US', 'United States'), +('192.35.108.0', '192.35.108.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.35.109.0', '192.35.137.255', 2147483647, 2147483647, 'US', 'United States'), +('192.35.138.0', '192.35.138.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.35.140.0', '192.35.143.255', 2147483647, 2147483647, 'US', 'United States'), +('192.35.144.0', '192.35.144.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.35.145.0', '192.35.145.255', 2147483647, 2147483647, 'US', 'United States'), +('192.35.146.0', '192.35.146.255', 2147483647, 2147483647, 'IT', 'Italy'), +('192.35.147.0', '192.35.148.255', 2147483647, 2147483647, 'US', 'United States'), +('192.35.149.0', '192.35.153.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.35.154.0', '192.35.171.255', 2147483647, 2147483647, 'US', 'United States'), +('192.35.172.0', '192.35.172.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.35.173.0', '192.35.180.255', 2147483647, 2147483647, 'US', 'United States'), +('192.35.182.0', '192.35.182.255', 2147483647, 2147483647, 'US', 'United States'), +('192.35.183.0', '192.35.192.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('192.35.193.0', '192.35.196.255', 2147483647, 2147483647, 'US', 'United States'), +('192.35.197.0', '192.35.198.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.35.204.0', '192.35.204.255', 2147483647, 2147483647, 'US', 'United States'), +('192.35.205.0', '192.35.206.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.35.207.0', '192.35.207.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('192.35.208.0', '192.35.228.255', 2147483647, 2147483647, 'US', 'United States'), +('192.35.229.0', '192.35.229.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.35.230.0', '192.35.239.255', 2147483647, 2147483647, 'US', 'United States'), +('192.35.240.0', '192.35.244.255', 2147483647, 2147483647, 'AT', 'Austria'), +('192.35.245.0', '192.35.245.255', 2147483647, 2147483647, 'US', 'United States'), +('192.35.246.0', '192.35.246.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('192.35.247.0', '192.35.247.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('192.35.248.0', '192.35.248.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.35.251.0', '192.35.255.255', 2147483647, 2147483647, 'US', 'United States'), +('192.36.0.0', '192.36.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('192.37.0.0', '192.37.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('192.38.0.0', '192.38.255.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('192.39.0.0', '192.39.165.255', 2147483647, 2147483647, 'US', 'United States'), +('192.39.166.0', '192.39.166.255', 2147483647, 2147483647, 'AT', 'Austria'), +('192.39.167.0', '192.40.63.255', 2147483647, 2147483647, 'US', 'United States'), +('192.40.65.0', '192.40.65.255', 2147483647, 2147483647, 'US', 'United States'), +('192.40.68.0', '192.40.80.255', 2147483647, 2147483647, 'FI', 'Finland'), +('192.40.96.0', '192.40.159.255', 2147483647, 2147483647, 'US', 'United States'), +('192.40.201.0', '192.40.201.255', 2147483647, 2147483647, 'US', 'United States'), +('192.40.217.0', '192.40.217.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.40.228.0', '192.40.228.255', 2147483647, 2147483647, 'FI', 'Finland'), +('192.40.244.0', '192.40.249.255', 2147483647, 2147483647, 'US', 'United States'), +('192.40.254.0', '192.40.254.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.41.0.0', '192.41.101.255', 2147483647, 2147483647, 'US', 'United States'), +('192.41.103.0', '192.41.131.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.41.132.0', '192.41.136.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('192.41.137.0', '192.41.137.255', 2147483647, 2147483647, 'US', 'United States'), +('192.41.140.0', '192.41.140.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('192.41.141.0', '192.41.145.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('192.41.146.0', '192.41.146.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.41.147.0', '192.41.147.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.41.148.0', '192.41.148.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.41.149.0', '192.41.160.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('192.41.161.0', '192.41.169.255', 2147483647, 2147483647, 'US', 'United States'), +('192.41.170.0', '192.41.170.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('192.41.171.0', '192.41.176.255', 2147483647, 2147483647, 'US', 'United States'), +('192.41.178.0', '192.41.197.255', 2147483647, 2147483647, 'JP', 'Japan'), +('192.41.198.0', '192.41.199.255', 2147483647, 2147483647, 'US', 'United States'), +('192.41.201.0', '192.41.201.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.41.202.0', '192.41.202.255', 2147483647, 2147483647, 'US', 'United States'), +('192.41.203.0', '192.41.203.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.41.204.0', '192.41.205.255', 2147483647, 2147483647, 'US', 'United States'), +('192.41.206.0', '192.41.206.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('192.41.207.0', '192.41.209.255', 2147483647, 2147483647, 'US', 'United States'), +('192.41.210.0', '192.41.210.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.41.211.0', '192.41.215.255', 2147483647, 2147483647, 'US', 'United States'), +('192.41.216.0', '192.41.216.255', 2147483647, 2147483647, 'EU', 'Europe'), +('192.41.217.0', '192.41.217.255', 2147483647, 2147483647, 'US', 'United States'), +('192.41.218.0', '192.41.218.255', 2147483647, 2147483647, 'IT', 'Italy'), +('192.41.219.0', '192.41.225.255', 2147483647, 2147483647, 'US', 'United States'), +('192.41.227.0', '192.41.227.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.41.228.0', '192.41.255.255', 2147483647, 2147483647, 'US', 'United States'), +('192.42.1.0', '192.42.1.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.42.3.0', '192.42.4.255', 2147483647, 2147483647, 'US', 'United States'), +('192.42.5.0', '192.42.6.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.42.7.0', '192.42.41.255', 2147483647, 2147483647, 'US', 'United States'), +('192.42.42.0', '192.42.47.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('192.42.48.0', '192.42.51.255', 2147483647, 2147483647, 'US', 'United States'), +('192.42.52.0', '192.42.52.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.42.53.0', '192.42.53.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.42.54.0', '192.42.54.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.42.55.0', '192.42.59.255', 2147483647, 2147483647, 'US', 'United States'), +('192.42.60.0', '192.42.62.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.42.63.0', '192.42.64.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.42.65.0', '192.42.65.255', 2147483647, 2147483647, 'NO', 'Norway'), +('192.42.66.0', '192.42.67.255', 2147483647, 2147483647, 'US', 'United States'), +('192.42.68.0', '192.42.68.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.42.69.0', '192.42.70.255', 2147483647, 2147483647, 'US', 'United States'), +('192.42.72.0', '192.42.83.255', 2147483647, 2147483647, 'US', 'United States'), +('192.42.84.0', '192.42.86.255', 2147483647, 2147483647, 'JP', 'Japan'), +('192.42.87.0', '192.42.87.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.42.88.0', '192.42.89.255', 2147483647, 2147483647, 'US', 'United States'), +('192.42.90.0', '192.42.90.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.42.91.0', '192.42.95.255', 2147483647, 2147483647, 'US', 'United States'), +('192.42.97.0', '192.42.98.255', 2147483647, 2147483647, 'US', 'United States'), +('192.42.99.0', '192.42.99.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('192.42.100.0', '192.42.100.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.42.101.0', '192.42.101.255', 2147483647, 2147483647, 'US', 'United States'), +('192.42.102.0', '192.42.102.255', 2147483647, 2147483647, 'FR', 'France'), +('192.42.103.0', '192.42.107.255', 2147483647, 2147483647, 'JP', 'Japan'), +('192.42.108.0', '192.42.111.255', 2147483647, 2147483647, 'US', 'United States'), +('192.42.112.0', '192.42.132.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('192.42.133.0', '192.42.142.255', 2147483647, 2147483647, 'US', 'United States'), +('192.42.143.0', '192.42.143.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.42.144.0', '192.42.150.255', 2147483647, 2147483647, 'US', 'United States'), +('192.42.151.0', '192.42.151.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.42.152.0', '192.42.175.255', 2147483647, 2147483647, 'US', 'United States'), +('192.42.179.0', '192.42.179.255', 2147483647, 2147483647, 'US', 'United States'), +('192.42.180.0', '192.42.201.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('192.42.202.0', '192.42.204.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.42.206.0', '192.42.206.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.42.207.0', '192.42.236.255', 2147483647, 2147483647, 'US', 'United States'), +('192.42.237.0', '192.42.237.255', 2147483647, 2147483647, 'JP', 'Japan'), +('192.42.238.0', '192.42.252.255', 2147483647, 2147483647, 'US', 'United States'), +('192.42.253.0', '192.42.253.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.42.254.0', '192.42.254.255', 2147483647, 2147483647, 'US', 'United States'), +('192.43.0.0', '192.43.161.255', 2147483647, 2147483647, 'US', 'United States'), +('192.43.162.0', '192.43.171.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('192.43.172.0', '192.43.173.255', 2147483647, 2147483647, 'US', 'United States'), +('192.43.174.0', '192.43.174.255', 2147483647, 2147483647, 'JP', 'Japan'), +('192.43.175.0', '192.43.184.255', 2147483647, 2147483647, 'US', 'United States'), +('192.43.185.0', '192.43.185.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.43.188.0', '192.43.188.255', 2147483647, 2147483647, 'US', 'United States'), +('192.43.189.0', '192.43.189.255', 2147483647, 2147483647, 'JP', 'Japan'), +('192.43.191.0', '192.43.191.255', 2147483647, 2147483647, 'US', 'United States'), +('192.43.192.0', '192.43.196.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('192.43.197.0', '192.43.197.255', 2147483647, 2147483647, 'US', 'United States'), +('192.43.198.0', '192.43.198.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.43.199.0', '192.43.200.255', 2147483647, 2147483647, 'US', 'United States'), +('192.43.201.0', '192.43.202.255', 2147483647, 2147483647, 'JP', 'Japan'), +('192.43.203.0', '192.43.205.255', 2147483647, 2147483647, 'US', 'United States'), +('192.43.207.0', '192.43.209.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.43.210.0', '192.43.210.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('192.43.211.0', '192.43.211.255', 2147483647, 2147483647, 'US', 'United States'), +('192.43.212.0', '192.43.212.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('192.43.213.0', '192.43.214.255', 2147483647, 2147483647, 'US', 'United States'), +('192.43.216.0', '192.43.218.255', 2147483647, 2147483647, 'US', 'United States'), +('192.43.219.0', '192.43.219.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.43.220.0', '192.43.223.255', 2147483647, 2147483647, 'US', 'United States'), +('192.43.225.0', '192.43.225.255', 2147483647, 2147483647, 'US', 'United States'), +('192.43.226.0', '192.43.229.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.43.234.0', '192.43.234.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.43.235.0', '192.43.237.255', 2147483647, 2147483647, 'US', 'United States'), +('192.43.239.0', '192.43.239.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.43.240.0', '192.43.255.255', 2147483647, 2147483647, 'US', 'United States'), +('192.44.0.0', '192.44.40.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.44.41.0', '192.44.80.255', 2147483647, 2147483647, 'FR', 'France'), +('192.44.81.0', '192.44.90.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.44.91.0', '192.44.239.255', 2147483647, 2147483647, 'US', 'United States'), +('192.44.240.0', '192.44.251.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('192.44.252.0', '192.46.69.255', 2147483647, 2147483647, 'US', 'United States'), +('192.46.70.0', '192.46.70.255', 2147483647, 2147483647, 'FI', 'Finland'), +('192.46.71.0', '192.46.71.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('192.46.72.0', '192.46.255.255', 2147483647, 2147483647, 'US', 'United States'), +('192.47.0.0', '192.47.241.255', 2147483647, 2147483647, 'JP', 'Japan'), +('192.47.242.0', '192.47.243.255', 2147483647, 2147483647, 'US', 'United States'), +('192.47.244.0', '192.47.249.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('192.47.250.0', '192.48.30.255', 2147483647, 2147483647, 'US', 'United States'), +('192.48.31.0', '192.48.31.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.48.32.0', '192.48.97.255', 2147483647, 2147483647, 'US', 'United States'), +('192.48.98.0', '192.48.98.255', 2147483647, 2147483647, 'FR', 'France'), +('192.48.99.0', '192.48.100.255', 2147483647, 2147483647, 'US', 'United States'), +('192.48.104.0', '192.48.104.255', 2147483647, 2147483647, 'US', 'United States'), +('192.48.106.0', '192.48.106.255', 2147483647, 2147483647, 'US', 'United States'), +('192.48.107.0', '192.48.107.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.48.108.0', '192.48.108.255', 2147483647, 2147483647, 'US', 'United States'), +('192.48.109.0', '192.48.110.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.48.111.0', '192.48.139.255', 2147483647, 2147483647, 'US', 'United States'), +('192.48.141.0', '192.48.141.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.48.143.0', '192.48.144.255', 2147483647, 2147483647, 'US', 'United States'), +('192.48.145.0', '192.48.145.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.48.146.0', '192.48.223.255', 2147483647, 2147483647, 'US', 'United States'), +('192.48.224.0', '192.48.224.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.48.225.0', '192.48.229.255', 2147483647, 2147483647, 'US', 'United States'), +('192.48.231.0', '192.48.231.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.48.232.0', '192.48.232.255', 2147483647, 2147483647, 'US', 'United States'), +('192.48.234.0', '192.48.234.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.48.235.0', '192.48.235.255', 2147483647, 2147483647, 'US', 'United States'), +('192.48.238.0', '192.48.238.255', 2147483647, 2147483647, 'US', 'United States'), +('192.48.240.0', '192.48.247.255', 2147483647, 2147483647, 'US', 'United States'), +('192.48.248.0', '192.48.248.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.48.249.0', '192.48.252.255', 2147483647, 2147483647, 'US', 'United States'), +('192.48.253.0', '192.48.253.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('192.48.254.0', '192.48.254.255', 2147483647, 2147483647, 'US', 'United States'), +('192.49.0.0', '192.49.255.255', 2147483647, 2147483647, 'FI', 'Finland'), +('192.50.0.0', '192.50.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('192.51.0.0', '192.51.15.255', 2147483647, 2147483647, 'NO', 'Norway'), +('192.51.16.0', '192.51.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('192.52.0.0', '192.52.50.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.52.51.0', '192.52.71.255', 2147483647, 2147483647, 'US', 'United States'), +('192.52.72.0', '192.52.73.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.52.76.0', '192.52.107.255', 2147483647, 2147483647, 'US', 'United States'), +('192.52.108.0', '192.52.108.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.52.110.0', '192.52.113.255', 2147483647, 2147483647, 'US', 'United States'), +('192.52.116.0', '192.52.117.255', 2147483647, 2147483647, 'US', 'United States'), +('192.52.119.0', '192.52.150.255', 2147483647, 2147483647, 'JP', 'Japan'), +('192.52.151.0', '192.52.151.255', 2147483647, 2147483647, 'US', 'United States'), +('192.52.152.0', '192.52.152.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('192.52.153.0', '192.52.157.255', 2147483647, 2147483647, 'US', 'United States'), +('192.52.159.0', '192.52.160.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.52.161.0', '192.52.161.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.52.163.0', '192.52.165.255', 2147483647, 2147483647, 'US', 'United States'), +('192.52.170.0', '192.52.170.255', 2147483647, 2147483647, 'US', 'United States'), +('192.52.171.0', '192.52.176.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.52.177.0', '192.52.184.255', 2147483647, 2147483647, 'US', 'United States'), +('192.52.185.0', '192.52.185.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.52.186.0', '192.52.187.255', 2147483647, 2147483647, 'US', 'United States'), +('192.52.192.0', '192.52.195.255', 2147483647, 2147483647, 'US', 'United States'), +('192.52.196.0', '192.52.197.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.52.198.0', '192.52.220.255', 2147483647, 2147483647, 'US', 'United States'), +('192.52.221.0', '192.52.223.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('192.52.224.0', '192.52.231.255', 2147483647, 2147483647, 'US', 'United States'), +('192.52.232.0', '192.52.232.255', 2147483647, 2147483647, 'DZ', 'Algeria'), +('192.52.233.0', '192.52.238.255', 2147483647, 2147483647, 'US', 'United States'), +('192.52.239.0', '192.52.239.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.52.240.0', '192.52.249.255', 2147483647, 2147483647, 'US', 'United States'), +('192.52.252.0', '192.52.252.255', 2147483647, 2147483647, 'US', 'United States'), +('192.52.253.0', '192.52.253.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.52.254.0', '192.52.254.255', 2147483647, 2147483647, 'FR', 'France'), +('192.53.0.0', '192.53.0.255', 2147483647, 2147483647, 'US', 'United States'), +('192.53.1.0', '192.53.2.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('192.53.3.0', '192.53.102.255', 2147483647, 2147483647, 'US', 'United States'), +('192.53.103.0', '192.53.103.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.53.104.0', '192.53.104.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('192.53.105.0', '192.53.156.255', 2147483647, 2147483647, 'US', 'United States'), +('192.53.157.0', '192.53.157.255', 2147483647, 2147483647, 'FI', 'Finland'), +('192.53.158.0', '192.54.30.255', 2147483647, 2147483647, 'US', 'United States'), +('192.54.31.0', '192.54.80.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.54.81.0', '192.54.103.255', 2147483647, 2147483647, 'US', 'United States'), +('192.54.104.0', '192.54.104.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.54.105.0', '192.54.106.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.54.107.0', '192.54.112.255', 2147483647, 2147483647, 'US', 'United States'), +('192.54.113.0', '192.54.113.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.54.114.0', '192.54.114.255', 2147483647, 2147483647, 'US', 'United States'), +('192.54.115.0', '192.54.120.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('192.54.121.0', '192.54.121.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.54.122.0', '192.54.122.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('192.54.124.0', '192.54.124.255', 2147483647, 2147483647, 'US', 'United States'), +('192.54.125.0', '192.54.128.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.54.129.0', '192.54.129.255', 2147483647, 2147483647, 'US', 'United States'), +('192.54.130.0', '192.54.130.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('192.54.131.0', '192.54.131.255', 2147483647, 2147483647, 'US', 'United States'), +('192.54.132.0', '192.54.132.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('192.54.133.0', '192.54.134.255', 2147483647, 2147483647, 'US', 'United States'), +('192.54.135.0', '192.54.135.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.54.137.0', '192.54.137.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.54.138.0', '192.54.138.255', 2147483647, 2147483647, 'US', 'United States'), +('192.54.139.0', '192.54.139.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.54.140.0', '192.54.203.255', 2147483647, 2147483647, 'FR', 'France'), +('192.54.204.0', '192.54.204.255', 2147483647, 2147483647, 'EU', 'Europe'), +('192.54.205.0', '192.54.219.255', 2147483647, 2147483647, 'FR', 'France'), +('192.54.220.0', '192.54.220.255', 2147483647, 2147483647, 'AT', 'Austria'), +('192.54.221.0', '192.54.221.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.54.222.0', '192.54.224.255', 2147483647, 2147483647, 'US', 'United States'), +('192.54.225.0', '192.54.225.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('192.54.226.0', '192.54.226.255', 2147483647, 2147483647, 'US', 'United States'), +('192.54.228.0', '192.54.241.255', 2147483647, 2147483647, 'US', 'United States'), +('192.54.242.0', '192.54.242.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.54.243.0', '192.54.243.255', 2147483647, 2147483647, 'US', 'United States'), +('192.54.244.0', '192.54.244.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('192.54.245.0', '192.54.245.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.54.246.0', '192.54.246.255', 2147483647, 2147483647, 'US', 'United States'), +('192.54.247.0', '192.54.247.255', 2147483647, 2147483647, 'JP', 'Japan'), +('192.54.248.0', '192.54.250.255', 2147483647, 2147483647, 'US', 'United States'), +('192.54.251.0', '192.54.251.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.54.253.0', '192.54.253.255', 2147483647, 2147483647, 'US', 'United States'), +('192.54.254.0', '192.54.254.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.55.0.0', '192.55.83.255', 2147483647, 2147483647, 'US', 'United States'), +('192.55.84.0', '192.55.84.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.55.86.0', '192.55.88.255', 2147483647, 2147483647, 'US', 'United States'), +('192.55.89.0', '192.55.89.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.55.90.0', '192.55.95.255', 2147483647, 2147483647, 'US', 'United States'), +('192.55.97.0', '192.55.97.255', 2147483647, 2147483647, 'US', 'United States'), +('192.55.98.0', '192.55.99.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.55.100.0', '192.55.100.255', 2147483647, 2147483647, 'US', 'United States'), +('192.55.101.0', '192.55.101.255', 2147483647, 2147483647, 'IT', 'Italy'), +('192.55.102.0', '192.55.103.255', 2147483647, 2147483647, 'US', 'United States'), +('192.55.105.0', '192.55.105.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('192.55.106.0', '192.55.108.255', 2147483647, 2147483647, 'US', 'United States'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('192.55.109.0', '192.55.109.255', 2147483647, 2147483647, 'EU', 'Europe'), +('192.55.110.0', '192.55.110.255', 2147483647, 2147483647, 'JP', 'Japan'), +('192.55.111.0', '192.55.111.255', 2147483647, 2147483647, 'US', 'United States'), +('192.55.112.0', '192.55.112.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.55.113.0', '192.55.114.255', 2147483647, 2147483647, 'US', 'United States'), +('192.55.115.0', '192.55.115.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('192.55.116.0', '192.55.117.255', 2147483647, 2147483647, 'US', 'United States'), +('192.55.118.0', '192.55.118.255', 2147483647, 2147483647, 'JP', 'Japan'), +('192.55.120.0', '192.55.127.255', 2147483647, 2147483647, 'US', 'United States'), +('192.55.129.0', '192.55.129.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('192.55.131.0', '192.55.131.255', 2147483647, 2147483647, 'US', 'United States'), +('192.55.132.0', '192.55.132.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.55.133.0', '192.55.187.255', 2147483647, 2147483647, 'US', 'United States'), +('192.55.188.0', '192.55.188.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.55.189.0', '192.55.189.255', 2147483647, 2147483647, 'US', 'United States'), +('192.55.190.0', '192.55.190.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.55.193.0', '192.55.193.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.55.194.0', '192.55.194.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.55.195.0', '192.55.196.255', 2147483647, 2147483647, 'US', 'United States'), +('192.55.197.0', '192.55.197.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.55.198.0', '192.55.198.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.55.199.0', '192.55.204.255', 2147483647, 2147483647, 'US', 'United States'), +('192.55.206.0', '192.55.206.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.55.207.0', '192.55.208.255', 2147483647, 2147483647, 'US', 'United States'), +('192.55.209.0', '192.55.209.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.55.210.0', '192.55.211.255', 2147483647, 2147483647, 'US', 'United States'), +('192.55.212.0', '192.55.212.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.55.213.0', '192.55.214.255', 2147483647, 2147483647, 'US', 'United States'), +('192.55.216.0', '192.55.216.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.55.218.0', '192.55.218.255', 2147483647, 2147483647, 'US', 'United States'), +('192.55.220.0', '192.55.220.255', 2147483647, 2147483647, 'JP', 'Japan'), +('192.55.221.0', '192.55.223.255', 2147483647, 2147483647, 'US', 'United States'), +('192.55.224.0', '192.55.224.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.55.226.0', '192.55.231.255', 2147483647, 2147483647, 'US', 'United States'), +('192.55.232.0', '192.55.232.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.55.233.0', '192.55.237.255', 2147483647, 2147483647, 'US', 'United States'), +('192.55.238.0', '192.55.238.255', 2147483647, 2147483647, 'JP', 'Japan'), +('192.55.239.0', '192.55.240.255', 2147483647, 2147483647, 'US', 'United States'), +('192.55.243.0', '192.55.243.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.55.244.0', '192.55.244.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.55.246.0', '192.55.246.255', 2147483647, 2147483647, 'US', 'United States'), +('192.55.248.0', '192.55.249.255', 2147483647, 2147483647, 'US', 'United States'), +('192.56.0.0', '192.56.13.255', 2147483647, 2147483647, 'US', 'United States'), +('192.56.14.0', '192.56.14.255', 2147483647, 2147483647, 'AT', 'Austria'), +('192.56.15.0', '192.56.99.255', 2147483647, 2147483647, 'US', 'United States'), +('192.56.100.0', '192.56.100.255', 2147483647, 2147483647, 'FI', 'Finland'), +('192.56.101.0', '192.56.127.255', 2147483647, 2147483647, 'US', 'United States'), +('192.56.128.0', '192.56.128.255', 2147483647, 2147483647, 'FI', 'Finland'), +('192.56.129.0', '192.58.8.255', 2147483647, 2147483647, 'US', 'United States'), +('192.58.9.0', '192.58.18.255', 2147483647, 2147483647, 'JP', 'Japan'), +('192.58.19.0', '192.58.27.255', 2147483647, 2147483647, 'US', 'United States'), +('192.58.28.0', '192.58.35.255', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('192.58.36.0', '192.58.40.255', 2147483647, 2147483647, 'US', 'United States'), +('192.58.41.0', '192.58.95.255', 2147483647, 2147483647, 'FI', 'Finland'), +('192.58.96.0', '192.58.101.255', 2147483647, 2147483647, 'JP', 'Japan'), +('192.58.102.0', '192.58.120.255', 2147483647, 2147483647, 'US', 'United States'), +('192.58.121.0', '192.58.121.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.58.122.0', '192.58.131.255', 2147483647, 2147483647, 'US', 'United States'), +('192.58.132.0', '192.58.136.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.58.144.0', '192.58.196.255', 2147483647, 2147483647, 'US', 'United States'), +('192.58.197.0', '192.58.197.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('192.58.199.0', '192.58.212.255', 2147483647, 2147483647, 'US', 'United States'), +('192.58.213.0', '192.58.213.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.58.215.0', '192.58.217.255', 2147483647, 2147483647, 'US', 'United States'), +('192.58.218.0', '192.58.218.255', 2147483647, 2147483647, 'IT', 'Italy'), +('192.58.220.0', '192.58.244.255', 2147483647, 2147483647, 'US', 'United States'), +('192.58.245.0', '192.58.245.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.58.246.0', '192.62.99.255', 2147483647, 2147483647, 'US', 'United States'), +('192.62.100.0', '192.62.100.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.62.101.0', '192.63.255.255', 2147483647, 2147483647, 'US', 'United States'), +('192.64.1.0', '192.64.1.255', 2147483647, 2147483647, 'US', 'United States'), +('192.64.16.0', '192.64.17.255', 2147483647, 2147483647, 'US', 'United States'), +('192.64.28.0', '192.64.28.255', 2147483647, 2147483647, 'AT', 'Austria'), +('192.64.38.0', '192.64.38.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.64.44.0', '192.64.45.255', 2147483647, 2147483647, 'EU', 'Europe'), +('192.64.46.0', '192.64.51.255', 2147483647, 2147483647, 'US', 'United States'), +('192.64.64.0', '192.64.96.255', 2147483647, 2147483647, 'US', 'United States'), +('192.64.100.0', '192.64.103.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('192.64.125.0', '192.64.125.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('192.64.157.0', '192.64.158.255', 2147483647, 2147483647, 'US', 'United States'), +('192.64.159.0', '192.64.167.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.64.198.0', '192.64.198.255', 2147483647, 2147483647, 'US', 'United States'), +('192.64.202.0', '192.64.202.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.64.203.0', '192.64.205.255', 2147483647, 2147483647, 'US', 'United States'), +('192.64.224.0', '192.64.239.255', 2147483647, 2147483647, 'US', 'United States'), +('192.65.0.0', '192.65.49.255', 2147483647, 2147483647, 'US', 'United States'), +('192.65.51.0', '192.65.70.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('192.65.71.0', '192.65.80.255', 2147483647, 2147483647, 'US', 'United States'), +('192.65.82.0', '192.65.91.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.65.92.0', '192.65.94.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('192.65.95.0', '192.65.95.255', 2147483647, 2147483647, 'US', 'United States'), +('192.65.96.0', '192.65.96.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('192.65.97.0', '192.65.129.255', 2147483647, 2147483647, 'US', 'United States'), +('192.65.130.0', '192.65.130.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.65.131.0', '192.65.131.255', 2147483647, 2147483647, 'IT', 'Italy'), +('192.65.132.0', '192.65.132.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.65.135.0', '192.65.137.255', 2147483647, 2147483647, 'US', 'United States'), +('192.65.139.0', '192.65.139.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.65.140.0', '192.65.143.255', 2147483647, 2147483647, 'US', 'United States'), +('192.65.144.0', '192.65.146.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.65.147.0', '192.65.151.255', 2147483647, 2147483647, 'US', 'United States'), +('192.65.152.0', '192.65.152.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('192.65.153.0', '192.65.153.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.65.168.0', '192.65.175.255', 2147483647, 2147483647, 'US', 'United States'), +('192.65.176.0', '192.65.176.255', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('192.65.177.0', '192.65.177.255', 2147483647, 2147483647, 'US', 'United States'), +('192.65.179.0', '192.65.180.255', 2147483647, 2147483647, 'US', 'United States'), +('192.65.182.0', '192.65.182.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.65.183.0', '192.65.197.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('192.65.198.0', '192.65.216.255', 2147483647, 2147483647, 'US', 'United States'), +('192.65.217.0', '192.65.217.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.65.218.0', '192.65.218.255', 2147483647, 2147483647, 'US', 'United States'), +('192.65.219.0', '192.65.231.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.65.244.0', '192.65.247.255', 2147483647, 2147483647, 'US', 'United States'), +('192.65.248.0', '192.65.248.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('192.65.249.0', '192.65.249.255', 2147483647, 2147483647, 'US', 'United States'), +('192.65.250.0', '192.65.250.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.65.251.0', '192.65.255.255', 2147483647, 2147483647, 'US', 'United States'), +('192.66.0.0', '192.66.255.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('192.67.1.0', '192.67.1.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.67.3.0', '192.67.3.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('192.67.4.0', '192.67.4.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.67.6.0', '192.67.6.255', 2147483647, 2147483647, 'US', 'United States'), +('192.67.8.0', '192.67.8.255', 2147483647, 2147483647, 'US', 'United States'), +('192.67.9.0', '192.67.9.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.67.11.0', '192.67.11.255', 2147483647, 2147483647, 'US', 'United States'), +('192.67.12.0', '192.67.12.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.67.13.0', '192.67.23.255', 2147483647, 2147483647, 'US', 'United States'), +('192.67.39.0', '192.67.39.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.67.41.0', '192.67.42.255', 2147483647, 2147483647, 'US', 'United States'), +('192.67.43.0', '192.67.43.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.67.44.0', '192.67.44.255', 2147483647, 2147483647, 'US', 'United States'), +('192.67.45.0', '192.67.45.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.67.46.0', '192.67.46.255', 2147483647, 2147483647, 'US', 'United States'), +('192.67.47.0', '192.67.47.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.67.48.0', '192.67.49.255', 2147483647, 2147483647, 'US', 'United States'), +('192.67.50.0', '192.67.50.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.67.51.0', '192.67.51.255', 2147483647, 2147483647, 'US', 'United States'), +('192.67.52.0', '192.67.52.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.67.53.0', '192.67.53.255', 2147483647, 2147483647, 'US', 'United States'), +('192.67.55.0', '192.67.55.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.67.56.0', '192.67.57.255', 2147483647, 2147483647, 'US', 'United States'), +('192.67.58.0', '192.67.58.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('192.67.59.0', '192.67.75.255', 2147483647, 2147483647, 'US', 'United States'), +('192.67.76.0', '192.67.76.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('192.67.77.0', '192.67.78.255', 2147483647, 2147483647, 'US', 'United States'), +('192.67.79.0', '192.67.79.255', 2147483647, 2147483647, 'ES', 'Spain'), +('192.67.80.0', '192.67.83.255', 2147483647, 2147483647, 'US', 'United States'), +('192.67.84.0', '192.67.85.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.67.86.0', '192.67.86.255', 2147483647, 2147483647, 'US', 'United States'), +('192.67.87.0', '192.67.87.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.67.90.0', '192.67.93.255', 2147483647, 2147483647, 'US', 'United States'), +('192.67.94.0', '192.67.94.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.67.95.0', '192.67.99.255', 2147483647, 2147483647, 'US', 'United States'), +('192.67.100.0', '192.67.104.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.67.105.0', '192.67.106.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.67.107.0', '192.67.134.255', 2147483647, 2147483647, 'US', 'United States'), +('192.67.135.0', '192.67.135.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.67.136.0', '192.67.159.255', 2147483647, 2147483647, 'US', 'United States'), +('192.67.165.0', '192.67.166.255', 2147483647, 2147483647, 'US', 'United States'), +('192.67.167.0', '192.67.167.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.67.168.0', '192.67.168.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('192.67.170.0', '192.67.170.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.67.171.0', '192.67.171.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.67.172.0', '192.67.187.255', 2147483647, 2147483647, 'US', 'United States'), +('192.67.188.0', '192.67.208.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.67.209.0', '192.67.216.255', 2147483647, 2147483647, 'US', 'United States'), +('192.67.217.0', '192.67.217.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.67.218.0', '192.67.218.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.67.219.0', '192.67.219.255', 2147483647, 2147483647, 'US', 'United States'), +('192.67.220.0', '192.67.221.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('192.67.223.0', '192.67.223.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('192.67.224.0', '192.67.229.255', 2147483647, 2147483647, 'US', 'United States'), +('192.67.230.0', '192.67.233.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.67.234.0', '192.67.247.255', 2147483647, 2147483647, 'US', 'United States'), +('192.67.248.0', '192.67.248.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.67.249.0', '192.67.249.255', 2147483647, 2147483647, 'GR', 'Greece'), +('192.67.251.0', '192.67.255.255', 2147483647, 2147483647, 'US', 'United States'), +('192.68.0.0', '192.68.3.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.68.4.0', '192.68.4.255', 2147483647, 2147483647, 'AT', 'Austria'), +('192.68.5.0', '192.68.19.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.68.20.0', '192.68.22.255', 2147483647, 2147483647, 'US', 'United States'), +('192.68.23.0', '192.68.23.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.68.24.0', '192.68.28.255', 2147483647, 2147483647, 'US', 'United States'), +('192.68.30.0', '192.68.30.255', 2147483647, 2147483647, 'US', 'United States'), +('192.68.31.0', '192.68.50.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('192.68.51.0', '192.68.51.255', 2147483647, 2147483647, 'EU', 'Europe'), +('192.68.52.0', '192.68.52.255', 2147483647, 2147483647, 'US', 'United States'), +('192.68.53.0', '192.68.74.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.68.75.0', '192.68.75.255', 2147483647, 2147483647, 'US', 'United States'), +('192.68.76.0', '192.68.107.255', 2147483647, 2147483647, 'NO', 'Norway'), +('192.68.108.0', '192.68.109.255', 2147483647, 2147483647, 'US', 'United States'), +('192.68.110.0', '192.68.111.255', 2147483647, 2147483647, 'JP', 'Japan'), +('192.68.112.0', '192.68.127.255', 2147483647, 2147483647, 'US', 'United States'), +('192.68.131.0', '192.68.131.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.68.132.0', '192.68.132.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.68.133.0', '192.68.136.255', 2147483647, 2147483647, 'US', 'United States'), +('192.68.137.0', '192.68.137.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.68.138.0', '192.68.138.255', 2147483647, 2147483647, 'TN', 'Tunisia'), +('192.68.139.0', '192.68.139.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.68.140.0', '192.68.148.255', 2147483647, 2147483647, 'US', 'United States'), +('192.68.151.0', '192.68.153.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.68.154.0', '192.68.163.255', 2147483647, 2147483647, 'US', 'United States'), +('192.68.164.0', '192.68.169.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.68.170.0', '192.68.170.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.68.171.0', '192.68.172.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.68.173.0', '192.68.173.255', 2147483647, 2147483647, 'US', 'United States'), +('192.68.174.0', '192.68.174.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.68.175.0', '192.68.175.255', 2147483647, 2147483647, 'US', 'United States'), +('192.68.176.0', '192.68.176.255', 2147483647, 2147483647, 'IT', 'Italy'), +('192.68.177.0', '192.68.177.255', 2147483647, 2147483647, 'US', 'United States'), +('192.68.179.0', '192.68.179.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.68.180.0', '192.68.181.255', 2147483647, 2147483647, 'US', 'United States'), +('192.68.182.0', '192.68.182.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('192.68.183.0', '192.68.183.255', 2147483647, 2147483647, 'US', 'United States'), +('192.68.184.0', '192.68.184.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.68.185.0', '192.68.185.255', 2147483647, 2147483647, 'US', 'United States'), +('192.68.186.0', '192.68.186.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('192.68.187.0', '192.68.207.255', 2147483647, 2147483647, 'US', 'United States'), +('192.68.209.0', '192.68.209.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('192.68.210.0', '192.68.210.255', 2147483647, 2147483647, 'US', 'United States'), +('192.68.211.0', '192.68.215.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.68.216.0', '192.68.216.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('192.68.217.0', '192.68.220.255', 2147483647, 2147483647, 'US', 'United States'), +('192.68.221.0', '192.68.221.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('192.68.222.0', '192.68.223.255', 2147483647, 2147483647, 'US', 'United States'), +('192.68.224.0', '192.68.224.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('192.68.225.0', '192.68.228.255', 2147483647, 2147483647, 'US', 'United States'), +('192.68.229.0', '192.68.229.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.68.230.0', '192.68.230.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('192.68.231.0', '192.68.233.255', 2147483647, 2147483647, 'US', 'United States'), +('192.68.235.0', '192.68.249.255', 2147483647, 2147483647, 'JP', 'Japan'), +('192.68.250.0', '192.68.252.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('192.68.253.0', '192.68.253.255', 2147483647, 2147483647, 'US', 'United States'), +('192.68.254.0', '192.68.254.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.69.0.0', '192.69.63.255', 2147483647, 2147483647, 'US', 'United States'), +('192.69.64.0', '192.69.64.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('192.69.74.0', '192.69.74.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.69.80.0', '192.69.87.255', 2147483647, 2147483647, 'US', 'United States'), +('192.69.101.0', '192.69.101.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.69.112.0', '192.69.112.255', 2147483647, 2147483647, 'US', 'United States'), +('192.69.116.0', '192.69.116.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.69.117.0', '192.69.117.255', 2147483647, 2147483647, 'US', 'United States'), +('192.69.128.0', '192.69.143.255', 2147483647, 2147483647, 'US', 'United States'), +('192.69.144.0', '192.69.159.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.69.190.0', '192.69.190.255', 2147483647, 2147483647, 'US', 'United States'), +('192.69.228.0', '192.69.231.255', 2147483647, 2147483647, 'US', 'United States'), +('192.69.234.0', '192.69.234.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.69.247.0', '192.69.247.255', 2147483647, 2147483647, 'US', 'United States'), +('192.70.0.0', '192.70.54.255', 2147483647, 2147483647, 'FR', 'France'), +('192.70.55.0', '192.70.55.255', 2147483647, 2147483647, 'US', 'United States'), +('192.70.56.0', '192.70.119.255', 2147483647, 2147483647, 'FR', 'France'), +('192.70.120.0', '192.70.132.255', 2147483647, 2147483647, 'US', 'United States'), +('192.70.133.0', '192.70.134.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('192.70.135.0', '192.70.135.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.70.136.0', '192.70.136.255', 2147483647, 2147483647, 'IT', 'Italy'), +('192.70.137.0', '192.70.139.255', 2147483647, 2147483647, 'US', 'United States'), +('192.70.140.0', '192.70.159.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.70.160.0', '192.70.171.255', 2147483647, 2147483647, 'US', 'United States'), +('192.70.172.0', '192.70.172.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.70.173.0', '192.70.173.255', 2147483647, 2147483647, 'US', 'United States'), +('192.70.174.0', '192.70.174.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.70.175.0', '192.70.175.255', 2147483647, 2147483647, 'US', 'United States'), +('192.70.176.0', '192.70.177.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.70.178.0', '192.70.178.255', 2147483647, 2147483647, 'US', 'United States'), +('192.70.179.0', '192.70.183.255', 2147483647, 2147483647, 'JP', 'Japan'), +('192.70.184.0', '192.70.215.255', 2147483647, 2147483647, 'US', 'United States'), +('192.70.216.0', '192.70.216.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.70.217.0', '192.70.218.255', 2147483647, 2147483647, 'US', 'United States'), +('192.70.219.0', '192.70.219.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.70.220.0', '192.70.223.255', 2147483647, 2147483647, 'US', 'United States'), +('192.70.224.0', '192.70.224.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.70.225.0', '192.70.236.255', 2147483647, 2147483647, 'US', 'United States'), +('192.70.237.0', '192.70.237.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('192.70.238.0', '192.70.241.255', 2147483647, 2147483647, 'US', 'United States'), +('192.70.242.0', '192.70.242.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.70.244.0', '192.70.245.255', 2147483647, 2147483647, 'US', 'United States'), +('192.70.248.0', '192.70.255.255', 2147483647, 2147483647, 'US', 'United States'), +('192.71.0.0', '192.71.6.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('192.71.7.0', '192.71.7.255', 2147483647, 2147483647, 'US', 'United States'), +('192.71.8.0', '192.71.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('192.72.0.0', '192.72.131.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('192.72.132.0', '192.72.132.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('192.72.133.0', '192.72.252.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('192.72.253.0', '192.72.254.255', 2147483647, 2147483647, 'US', 'United States'), +('192.73.0.0', '192.73.4.255', 2147483647, 2147483647, 'US', 'United States'), +('192.73.5.0', '192.73.5.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.73.6.0', '192.73.11.255', 2147483647, 2147483647, 'US', 'United States'), +('192.73.12.0', '192.73.12.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.73.13.0', '192.73.17.255', 2147483647, 2147483647, 'US', 'United States'), +('192.73.19.0', '192.73.20.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.73.21.0', '192.73.21.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('192.73.22.0', '192.73.22.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.73.24.0', '192.73.25.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('192.73.26.0', '192.73.33.255', 2147483647, 2147483647, 'US', 'United States'), +('192.73.34.0', '192.73.34.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.73.35.0', '192.73.44.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('192.73.45.0', '192.73.65.255', 2147483647, 2147483647, 'US', 'United States'), +('192.73.66.0', '192.73.66.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.73.67.0', '192.73.225.255', 2147483647, 2147483647, 'US', 'United States'), +('192.73.226.0', '192.73.226.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('192.73.227.0', '192.73.228.255', 2147483647, 2147483647, 'US', 'United States'), +('192.73.229.0', '192.73.229.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.73.230.0', '192.73.231.255', 2147483647, 2147483647, 'US', 'United States'), +('192.74.0.0', '192.74.127.255', 2147483647, 2147483647, 'US', 'United States'), +('192.74.137.0', '192.74.138.255', 2147483647, 2147483647, 'US', 'United States'), +('192.74.139.0', '192.74.208.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.74.209.0', '192.74.219.255', 2147483647, 2147483647, 'US', 'United States'), +('192.75.0.0', '192.75.191.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.75.198.0', '192.75.198.255', 2147483647, 2147483647, 'US', 'United States'), +('192.75.200.0', '192.75.238.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.75.239.0', '192.75.239.255', 2147483647, 2147483647, 'US', 'United States'), +('192.75.240.0', '192.75.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.76.0.0', '192.76.35.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.76.36.0', '192.76.119.255', 2147483647, 2147483647, 'US', 'United States'), +('192.76.121.0', '192.76.121.255', 2147483647, 2147483647, 'US', 'United States'), +('192.76.122.0', '192.76.122.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.76.123.0', '192.76.137.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.76.138.0', '192.76.138.255', 2147483647, 2147483647, 'EU', 'Europe'), +('192.76.139.0', '192.76.172.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.76.173.0', '192.76.175.255', 2147483647, 2147483647, 'US', 'United States'), +('192.76.176.0', '192.76.176.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.76.177.0', '192.76.240.255', 2147483647, 2147483647, 'US', 'United States'), +('192.76.241.0', '192.76.241.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.76.242.0', '192.76.242.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('192.76.243.0', '192.76.244.255', 2147483647, 2147483647, 'AT', 'Austria'), +('192.76.245.0', '192.76.248.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.76.249.0', '192.76.251.255', 2147483647, 2147483647, 'US', 'United States'), +('192.76.252.0', '192.76.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('192.77.0.0', '192.77.7.255', 2147483647, 2147483647, 'US', 'United States'), +('192.77.8.0', '192.77.8.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.77.9.0', '192.77.10.255', 2147483647, 2147483647, 'US', 'United States'), +('192.77.11.0', '192.77.11.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('192.77.12.0', '192.77.16.255', 2147483647, 2147483647, 'US', 'United States'), +('192.77.17.0', '192.77.17.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.77.18.0', '192.77.19.255', 2147483647, 2147483647, 'US', 'United States'), +('192.77.23.0', '192.77.45.255', 2147483647, 2147483647, 'US', 'United States'), +('192.77.46.0', '192.77.75.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.77.76.0', '192.77.113.255', 2147483647, 2147483647, 'US', 'United States'), +('192.77.114.0', '192.77.115.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.77.116.0', '192.77.119.255', 2147483647, 2147483647, 'US', 'United States'), +('192.77.120.0', '192.77.123.255', 2147483647, 2147483647, 'FI', 'Finland'), +('192.77.124.0', '192.77.131.255', 2147483647, 2147483647, 'US', 'United States'), +('192.77.132.0', '192.77.138.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.77.139.0', '192.77.139.255', 2147483647, 2147483647, 'US', 'United States'), +('192.77.140.0', '192.77.141.255', 2147483647, 2147483647, 'ES', 'Spain'), +('192.77.142.0', '192.78.109.255', 2147483647, 2147483647, 'US', 'United States'), +('192.78.110.0', '192.78.111.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.78.112.0', '192.78.115.255', 2147483647, 2147483647, 'US', 'United States'), +('192.78.116.0', '192.78.116.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.78.117.0', '192.78.143.255', 2147483647, 2147483647, 'US', 'United States'), +('192.78.144.0', '192.78.148.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.78.149.0', '192.78.153.255', 2147483647, 2147483647, 'US', 'United States'), +('192.78.154.0', '192.78.154.255', 2147483647, 2147483647, 'AT', 'Austria'), +('192.78.155.0', '192.78.184.255', 2147483647, 2147483647, 'US', 'United States'), +('192.78.185.0', '192.78.187.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('192.78.188.0', '192.79.255.255', 2147483647, 2147483647, 'US', 'United States'), +('192.80.8.0', '192.80.19.255', 2147483647, 2147483647, 'US', 'United States'), +('192.80.20.0', '192.80.21.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('192.80.22.0', '192.80.23.255', 2147483647, 2147483647, 'US', 'United States'), +('192.80.24.0', '192.80.24.255', 2147483647, 2147483647, 'CL', 'Chile'), +('192.80.27.0', '192.80.27.255', 2147483647, 2147483647, 'US', 'United States'), +('192.80.29.0', '192.80.30.255', 2147483647, 2147483647, 'US', 'United States'), +('192.80.31.0', '192.80.42.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('192.80.43.0', '192.80.44.255', 2147483647, 2147483647, 'US', 'United States'), +('192.80.46.0', '192.80.46.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.80.47.0', '192.80.50.255', 2147483647, 2147483647, 'US', 'United States'), +('192.80.51.0', '192.80.51.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.80.52.0', '192.80.95.255', 2147483647, 2147483647, 'US', 'United States'), +('192.80.207.0', '192.80.208.255', 2147483647, 2147483647, 'US', 'United States'), +('192.80.209.0', '192.80.209.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('192.80.210.0', '192.80.255.255', 2147483647, 2147483647, 'US', 'United States'), +('192.81.8.0', '192.81.8.255', 2147483647, 2147483647, 'US', 'United States'), +('192.81.48.0', '192.81.48.255', 2147483647, 2147483647, 'US', 'United States'), +('192.81.59.0', '192.81.59.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('192.81.60.0', '192.81.63.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.81.64.0', '192.81.79.255', 2147483647, 2147483647, 'US', 'United States'), +('192.81.85.0', '192.81.85.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.81.88.0', '192.81.88.255', 2147483647, 2147483647, 'US', 'United States'), +('192.81.97.0', '192.81.97.255', 2147483647, 2147483647, 'US', 'United States'), +('192.81.109.0', '192.81.109.255', 2147483647, 2147483647, 'NO', 'Norway'), +('192.81.114.0', '192.81.114.255', 2147483647, 2147483647, 'US', 'United States'), +('192.81.121.0', '192.81.121.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.81.123.0', '192.81.123.255', 2147483647, 2147483647, 'FI', 'Finland'), +('192.81.141.0', '192.81.141.255', 2147483647, 2147483647, 'US', 'United States'), +('192.81.160.0', '192.81.160.255', 2147483647, 2147483647, 'FI', 'Finland'), +('192.81.166.0', '192.81.166.255', 2147483647, 2147483647, 'US', 'United States'), +('192.81.182.0', '192.81.184.255', 2147483647, 2147483647, 'FI', 'Finland'), +('192.81.190.0', '192.81.190.255', 2147483647, 2147483647, 'US', 'United States'), +('192.81.192.0', '192.81.192.255', 2147483647, 2147483647, 'US', 'United States'), +('192.81.194.0', '192.81.194.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('192.81.230.0', '192.81.230.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.81.234.0', '192.81.234.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.81.252.0', '192.81.253.255', 2147483647, 2147483647, 'US', 'United States'), +('192.82.0.0', '192.82.103.255', 2147483647, 2147483647, 'US', 'United States'), +('192.82.104.0', '192.82.104.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.82.105.0', '192.82.116.255', 2147483647, 2147483647, 'US', 'United States'), +('192.82.117.0', '192.82.117.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.82.118.0', '192.82.120.255', 2147483647, 2147483647, 'US', 'United States'), +('192.82.121.0', '192.82.121.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.82.123.0', '192.82.123.255', 2147483647, 2147483647, 'US', 'United States'), +('192.82.124.0', '192.82.124.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('192.82.125.0', '192.82.126.255', 2147483647, 2147483647, 'US', 'United States'), +('192.82.127.0', '192.82.127.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('192.82.128.0', '192.82.131.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.82.132.0', '192.82.132.255', 2147483647, 2147483647, 'JP', 'Japan'), +('192.82.139.0', '192.82.139.255', 2147483647, 2147483647, 'US', 'United States'), +('192.82.140.0', '192.82.140.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.82.141.0', '192.82.141.255', 2147483647, 2147483647, 'US', 'United States'), +('192.82.142.0', '192.82.142.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('192.82.143.0', '192.82.143.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.82.147.0', '192.82.149.255', 2147483647, 2147483647, 'US', 'United States'), +('192.82.150.0', '192.82.150.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.82.151.0', '192.82.151.255', 2147483647, 2147483647, 'US', 'United States'), +('192.82.153.0', '192.82.153.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.82.154.0', '192.82.156.255', 2147483647, 2147483647, 'US', 'United States'), +('192.82.157.0', '192.82.158.255', 2147483647, 2147483647, 'AT', 'Austria'), +('192.82.159.0', '192.82.160.255', 2147483647, 2147483647, 'US', 'United States'), +('192.82.161.0', '192.82.161.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.82.162.0', '192.82.213.255', 2147483647, 2147483647, 'US', 'United States'), +('192.82.214.0', '192.82.214.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('192.82.215.0', '192.82.219.255', 2147483647, 2147483647, 'US', 'United States'), +('192.82.220.0', '192.82.221.255', 2147483647, 2147483647, 'IT', 'Italy'), +('192.82.222.0', '192.82.222.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.82.223.0', '192.82.229.255', 2147483647, 2147483647, 'US', 'United States'), +('192.82.230.0', '192.82.230.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.82.231.0', '192.82.240.255', 2147483647, 2147483647, 'US', 'United States'), +('192.82.241.0', '192.82.241.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.82.244.0', '192.82.244.255', 2147483647, 2147483647, 'US', 'United States'), +('192.83.0.0', '192.83.100.255', 2147483647, 2147483647, 'FI', 'Finland'), +('192.83.101.0', '192.83.101.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.83.102.0', '192.83.102.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.83.104.0', '192.83.104.255', 2147483647, 2147483647, 'JP', 'Japan'), +('192.83.105.0', '192.83.117.255', 2147483647, 2147483647, 'US', 'United States'), +('192.83.118.0', '192.83.119.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.83.120.0', '192.83.120.255', 2147483647, 2147483647, 'US', 'United States'), +('192.83.121.0', '192.83.121.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.83.122.0', '192.83.122.255', 2147483647, 2147483647, 'CN', 'China'), +('192.83.123.0', '192.83.123.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.83.157.0', '192.83.157.255', 2147483647, 2147483647, 'JP', 'Japan'), +('192.83.158.0', '192.83.159.255', 2147483647, 2147483647, 'US', 'United States'), +('192.83.160.0', '192.83.160.255', 2147483647, 2147483647, 'FR', 'France'), +('192.83.161.0', '192.83.163.255', 2147483647, 2147483647, 'US', 'United States'), +('192.83.165.0', '192.83.165.255', 2147483647, 2147483647, 'EU', 'Europe'), +('192.83.166.0', '192.83.196.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('192.83.197.0', '192.83.197.255', 2147483647, 2147483647, 'US', 'United States'), +('192.83.198.0', '192.83.198.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.83.199.0', '192.83.199.255', 2147483647, 2147483647, 'US', 'United States'), +('192.83.200.0', '192.83.200.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.83.202.0', '192.83.202.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.83.203.0', '192.83.204.255', 2147483647, 2147483647, 'US', 'United States'), +('192.83.206.0', '192.83.206.255', 2147483647, 2147483647, 'US', 'United States'), +('192.83.207.0', '192.83.216.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.83.217.0', '192.83.219.255', 2147483647, 2147483647, 'JP', 'Japan'), +('192.83.220.0', '192.83.221.255', 2147483647, 2147483647, 'US', 'United States'), +('192.83.223.0', '192.83.223.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('192.83.224.0', '192.83.224.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.83.225.0', '192.83.228.255', 2147483647, 2147483647, 'US', 'United States'), +('192.83.229.0', '192.83.229.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.83.230.0', '192.83.230.255', 2147483647, 2147483647, 'JP', 'Japan'), +('192.83.231.0', '192.83.231.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.83.232.0', '192.83.236.255', 2147483647, 2147483647, 'US', 'United States'), +('192.83.237.0', '192.83.238.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.83.239.0', '192.83.246.255', 2147483647, 2147483647, 'US', 'United States'), +('192.83.247.0', '192.83.247.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.83.248.0', '192.83.255.255', 2147483647, 2147483647, 'US', 'United States'), +('192.84.2.0', '192.84.3.255', 2147483647, 2147483647, 'US', 'United States'), +('192.84.5.0', '192.84.5.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.84.7.0', '192.84.11.255', 2147483647, 2147483647, 'US', 'United States'), +('192.84.12.0', '192.84.12.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('192.84.13.0', '192.84.13.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('192.84.14.0', '192.84.14.255', 2147483647, 2147483647, 'US', 'United States'), +('192.84.15.0', '192.84.15.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('192.84.16.0', '192.84.26.255', 2147483647, 2147483647, 'US', 'United States'), +('192.84.27.0', '192.84.27.255', 2147483647, 2147483647, 'AT', 'Austria'), +('192.84.28.0', '192.84.29.255', 2147483647, 2147483647, 'US', 'United States'), +('192.84.30.0', '192.84.30.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('192.84.31.0', '192.84.31.255', 2147483647, 2147483647, 'US', 'United States'), +('192.84.32.0', '192.84.33.255', 2147483647, 2147483647, 'NO', 'Norway'), +('192.84.40.0', '192.84.47.255', 2147483647, 2147483647, 'US', 'United States'), +('192.84.55.0', '192.84.61.255', 2147483647, 2147483647, 'US', 'United States'), +('192.84.62.0', '192.84.62.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('192.84.63.0', '192.84.70.255', 2147483647, 2147483647, 'US', 'United States'), +('192.84.71.0', '192.84.73.255', 2147483647, 2147483647, 'JP', 'Japan'), +('192.84.74.0', '192.84.74.255', 2147483647, 2147483647, 'US', 'United States'), +('192.84.75.0', '192.84.84.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.84.85.0', '192.84.86.255', 2147483647, 2147483647, 'US', 'United States'), +('192.84.87.0', '192.84.87.255', 2147483647, 2147483647, 'IT', 'Italy'), +('192.84.88.0', '192.84.88.255', 2147483647, 2147483647, 'US', 'United States'), +('192.84.89.0', '192.84.89.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.84.90.0', '192.84.90.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('192.84.91.0', '192.84.92.255', 2147483647, 2147483647, 'HR', 'Croatia'), +('192.84.93.0', '192.84.104.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('192.84.105.0', '192.84.106.255', 2147483647, 2147483647, 'HR', 'Croatia'), +('192.84.107.0', '192.84.109.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('192.84.111.0', '192.84.125.255', 2147483647, 2147483647, 'US', 'United States'), +('192.84.127.0', '192.84.156.255', 2147483647, 2147483647, 'IT', 'Italy'), +('192.84.157.0', '192.84.165.255', 2147483647, 2147483647, 'US', 'United States'), +('192.84.166.0', '192.84.166.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('192.84.167.0', '192.84.172.255', 2147483647, 2147483647, 'US', 'United States'), +('192.84.173.0', '192.84.173.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.84.174.0', '192.84.174.255', 2147483647, 2147483647, 'US', 'United States'), +('192.84.176.0', '192.84.207.255', 2147483647, 2147483647, 'FI', 'Finland'), +('192.84.208.0', '192.84.211.255', 2147483647, 2147483647, 'US', 'United States'), +('192.84.212.0', '192.84.212.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.84.213.0', '192.84.218.255', 2147483647, 2147483647, 'US', 'United States'), +('192.84.219.0', '192.84.219.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.84.220.0', '192.84.220.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.84.221.0', '192.84.221.255', 2147483647, 2147483647, 'AT', 'Austria'), +('192.84.222.0', '192.84.224.255', 2147483647, 2147483647, 'US', 'United States'), +('192.84.226.0', '192.84.229.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('192.84.230.0', '192.84.230.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.84.231.0', '192.84.236.255', 2147483647, 2147483647, 'US', 'United States'), +('192.84.237.0', '192.84.238.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.84.239.0', '192.84.240.255', 2147483647, 2147483647, 'US', 'United States'), +('192.84.241.0', '192.84.242.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.84.243.0', '192.84.243.255', 2147483647, 2147483647, 'US', 'United States'), +('192.84.244.0', '192.84.244.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('192.84.245.0', '192.84.247.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.84.248.0', '192.84.252.255', 2147483647, 2147483647, 'US', 'United States'), +('192.84.253.0', '192.84.253.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('192.84.254.0', '192.84.254.255', 2147483647, 2147483647, 'US', 'United States'), +('192.85.0.0', '192.85.15.255', 2147483647, 2147483647, 'US', 'United States'), +('192.85.16.0', '192.85.17.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.85.18.0', '192.85.59.255', 2147483647, 2147483647, 'US', 'United States'), +('192.85.60.0', '192.85.60.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.85.61.0', '192.85.109.255', 2147483647, 2147483647, 'US', 'United States'), +('192.85.110.0', '192.85.110.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.85.111.0', '192.85.255.255', 2147483647, 2147483647, 'US', 'United States'), +('192.86.1.0', '192.86.1.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.86.2.0', '192.86.10.255', 2147483647, 2147483647, 'US', 'United States'), +('192.86.11.0', '192.86.11.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('192.86.12.0', '192.86.12.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('192.86.13.0', '192.86.13.255', 2147483647, 2147483647, 'US', 'United States'), +('192.86.14.0', '192.86.14.255', 2147483647, 2147483647, 'PL', 'Poland'), +('192.86.15.0', '192.86.17.255', 2147483647, 2147483647, 'US', 'United States'), +('192.86.18.0', '192.86.18.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.86.19.0', '192.86.24.255', 2147483647, 2147483647, 'US', 'United States'), +('192.86.25.0', '192.86.25.255', 2147483647, 2147483647, 'IL', 'Israel'), +('192.86.26.0', '192.86.26.255', 2147483647, 2147483647, 'US', 'United States'), +('192.86.27.0', '192.86.27.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.86.28.0', '192.86.88.255', 2147483647, 2147483647, 'US', 'United States'), +('192.86.89.0', '192.86.89.255', 2147483647, 2147483647, 'IL', 'Israel'), +('192.86.90.0', '192.86.124.255', 2147483647, 2147483647, 'US', 'United States'), +('192.86.125.0', '192.86.126.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('192.86.127.0', '192.86.127.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.86.128.0', '192.86.128.255', 2147483647, 2147483647, 'US', 'United States'), +('192.86.129.0', '192.86.129.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.86.131.0', '192.86.131.255', 2147483647, 2147483647, 'US', 'United States'), +('192.86.132.0', '192.86.133.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('192.86.134.0', '192.86.134.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.86.135.0', '192.86.136.255', 2147483647, 2147483647, 'US', 'United States'), +('192.86.137.0', '192.86.137.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.86.138.0', '192.86.138.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('192.86.139.0', '192.86.159.255', 2147483647, 2147483647, 'US', 'United States'), +('192.86.162.0', '192.86.162.255', 2147483647, 2147483647, 'US', 'United States'), +('192.86.163.0', '192.86.163.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.86.164.0', '192.86.164.255', 2147483647, 2147483647, 'US', 'United States'), +('192.86.165.0', '192.86.165.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.86.166.0', '192.86.166.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('192.86.167.0', '192.86.167.255', 2147483647, 2147483647, 'FR', 'France'), +('192.86.168.0', '192.86.168.255', 2147483647, 2147483647, 'US', 'United States'), +('192.86.169.0', '192.86.169.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.86.170.0', '192.86.253.255', 2147483647, 2147483647, 'US', 'United States'), +('192.86.254.0', '192.86.254.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('192.87.0.0', '192.87.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('192.88.1.0', '192.88.1.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('192.88.2.0', '192.88.3.255', 2147483647, 2147483647, 'US', 'United States'), +('192.88.4.0', '192.88.4.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.88.5.0', '192.88.5.255', 2147483647, 2147483647, 'US', 'United States'), +('192.88.6.0', '192.88.7.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.88.8.0', '192.88.8.255', 2147483647, 2147483647, 'US', 'United States'), +('192.88.9.0', '192.88.10.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.88.11.0', '192.88.15.255', 2147483647, 2147483647, 'US', 'United States'), +('192.88.17.0', '192.88.17.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('192.88.21.0', '192.88.22.255', 2147483647, 2147483647, 'US', 'United States'), +('192.88.23.0', '192.88.24.255', 2147483647, 2147483647, 'AT', 'Austria'), +('192.88.25.0', '192.88.79.255', 2147483647, 2147483647, 'US', 'United States'), +('192.88.80.0', '192.88.80.255', 2147483647, 2147483647, 'JP', 'Japan'), +('192.88.81.0', '192.88.82.255', 2147483647, 2147483647, 'US', 'United States'), +('192.88.83.0', '192.88.84.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.88.85.0', '192.88.85.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('192.88.86.0', '192.88.86.255', 2147483647, 2147483647, 'FI', 'Finland'), +('192.88.87.0', '192.88.95.255', 2147483647, 2147483647, 'US', 'United States'), +('192.88.96.0', '192.88.99.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.88.101.0', '192.88.102.255', 2147483647, 2147483647, 'JP', 'Japan'), +('192.88.103.0', '192.88.107.255', 2147483647, 2147483647, 'US', 'United States'), +('192.88.108.0', '192.88.108.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.88.110.0', '192.88.117.255', 2147483647, 2147483647, 'US', 'United States'), +('192.88.118.0', '192.88.118.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.88.119.0', '192.88.119.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('192.88.120.0', '192.88.120.255', 2147483647, 2147483647, 'US', 'United States'), +('192.88.122.0', '192.88.122.255', 2147483647, 2147483647, 'US', 'United States'), +('192.88.123.0', '192.88.123.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('192.88.124.0', '192.88.125.255', 2147483647, 2147483647, 'US', 'United States'), +('192.88.128.0', '192.88.128.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.88.129.0', '192.88.129.255', 2147483647, 2147483647, 'US', 'United States'), +('192.88.130.0', '192.88.130.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.88.131.0', '192.88.132.255', 2147483647, 2147483647, 'US', 'United States'), +('192.88.133.0', '192.88.133.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.88.136.0', '192.88.177.255', 2147483647, 2147483647, 'US', 'United States'), +('192.88.184.0', '192.88.185.255', 2147483647, 2147483647, 'US', 'United States'), +('192.88.187.0', '192.88.187.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.88.188.0', '192.88.189.255', 2147483647, 2147483647, 'US', 'United States'), +('192.88.190.0', '192.88.190.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('192.88.191.0', '192.88.195.255', 2147483647, 2147483647, 'US', 'United States'), +('192.88.196.0', '192.88.196.255', 2147483647, 2147483647, 'IT', 'Italy'), +('192.88.197.0', '192.88.197.255', 2147483647, 2147483647, 'US', 'United States'), +('192.88.199.0', '192.88.203.255', 2147483647, 2147483647, 'US', 'United States'), +('192.88.204.0', '192.88.204.255', 2147483647, 2147483647, 'EU', 'Europe'), +('192.88.205.0', '192.88.237.255', 2147483647, 2147483647, 'US', 'United States'), +('192.88.238.0', '192.88.238.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.88.239.0', '192.88.239.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.88.240.0', '192.88.249.255', 2147483647, 2147483647, 'US', 'United States'), +('192.88.250.0', '192.88.255.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('192.89.0.0', '192.89.3.7', 2147483647, 2147483647, 'FI', 'Finland'), +('192.89.3.8', '192.89.3.11', 2147483647, 2147483647, 'AX', 'Aland Islands'), +('192.89.3.12', '192.89.9.255', 2147483647, 2147483647, 'FI', 'Finland'), +('192.89.10.0', '192.89.10.63', 2147483647, 2147483647, 'AX', 'Aland Islands'), +('192.89.10.64', '192.89.53.255', 2147483647, 2147483647, 'FI', 'Finland'), +('192.89.54.0', '192.89.54.127', 2147483647, 2147483647, 'AX', 'Aland Islands'), +('192.89.54.128', '192.89.54.171', 2147483647, 2147483647, 'FI', 'Finland'), +('192.89.54.172', '192.89.54.175', 2147483647, 2147483647, 'AX', 'Aland Islands'), +('192.89.54.176', '192.89.98.255', 2147483647, 2147483647, 'FI', 'Finland'), +('192.89.99.0', '192.89.99.255', 2147483647, 2147483647, 'ES', 'Spain'), +('192.89.100.0', '192.89.240.63', 2147483647, 2147483647, 'FI', 'Finland'), +('192.89.240.64', '192.89.240.95', 2147483647, 2147483647, 'AX', 'Aland Islands'), +('192.89.240.96', '192.89.253.255', 2147483647, 2147483647, 'FI', 'Finland'), +('192.89.254.0', '192.89.254.255', 2147483647, 2147483647, 'AX', 'Aland Islands'), +('192.89.255.0', '192.89.255.255', 2147483647, 2147483647, 'FI', 'Finland'), +('192.90.0.0', '192.91.139.255', 2147483647, 2147483647, 'US', 'United States'), +('192.91.140.0', '192.91.141.255', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('192.91.142.0', '192.91.176.255', 2147483647, 2147483647, 'US', 'United States'), +('192.91.177.0', '192.91.177.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('192.91.178.0', '192.91.178.255', 2147483647, 2147483647, 'US', 'United States'), +('192.91.179.0', '192.91.179.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.91.180.0', '192.91.184.255', 2147483647, 2147483647, 'US', 'United States'), +('192.91.185.0', '192.91.185.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.91.186.0', '192.91.186.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('192.91.187.0', '192.91.188.255', 2147483647, 2147483647, 'US', 'United States'), +('192.91.189.0', '192.91.189.255', 2147483647, 2147483647, 'NO', 'Norway'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('192.91.190.0', '192.91.190.255', 2147483647, 2147483647, 'US', 'United States'), +('192.91.191.0', '192.91.191.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.91.192.0', '192.91.197.255', 2147483647, 2147483647, 'US', 'United States'), +('192.91.199.0', '192.91.199.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.91.200.0', '192.91.200.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('192.91.201.0', '192.91.201.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.91.202.0', '192.91.209.255', 2147483647, 2147483647, 'US', 'United States'), +('192.91.210.0', '192.91.210.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.91.211.0', '192.91.211.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.91.212.0', '192.91.212.255', 2147483647, 2147483647, 'US', 'United States'), +('192.91.213.0', '192.91.213.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.91.214.0', '192.91.233.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('192.91.235.0', '192.91.235.255', 2147483647, 2147483647, 'US', 'United States'), +('192.91.236.0', '192.91.247.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('192.91.248.0', '192.91.253.255', 2147483647, 2147483647, 'US', 'United States'), +('192.91.254.0', '192.91.254.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('192.92.8.0', '192.92.14.255', 2147483647, 2147483647, 'US', 'United States'), +('192.92.15.0', '192.92.15.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('192.92.16.0', '192.92.74.255', 2147483647, 2147483647, 'US', 'United States'), +('192.92.75.0', '192.92.75.255', 2147483647, 2147483647, 'FI', 'Finland'), +('192.92.76.0', '192.92.76.255', 2147483647, 2147483647, 'US', 'United States'), +('192.92.77.0', '192.92.77.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('192.92.78.0', '192.92.84.255', 2147483647, 2147483647, 'US', 'United States'), +('192.92.86.0', '192.92.86.255', 2147483647, 2147483647, 'FR', 'France'), +('192.92.88.0', '192.92.93.255', 2147483647, 2147483647, 'US', 'United States'), +('192.92.94.0', '192.92.94.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('192.92.95.0', '192.92.103.255', 2147483647, 2147483647, 'US', 'United States'), +('192.92.104.0', '192.92.106.255', 2147483647, 2147483647, 'IT', 'Italy'), +('192.92.107.0', '192.92.107.255', 2147483647, 2147483647, 'US', 'United States'), +('192.92.108.0', '192.92.108.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('192.92.109.0', '192.92.109.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.92.110.0', '192.92.115.255', 2147483647, 2147483647, 'US', 'United States'), +('192.92.116.0', '192.92.116.255', 2147483647, 2147483647, 'FI', 'Finland'), +('192.92.118.0', '192.92.124.255', 2147483647, 2147483647, 'US', 'United States'), +('192.92.125.0', '192.92.125.255', 2147483647, 2147483647, 'AT', 'Austria'), +('192.92.126.0', '192.92.126.255', 2147483647, 2147483647, 'IT', 'Italy'), +('192.92.127.0', '192.92.127.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('192.92.128.0', '192.92.128.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('192.92.129.0', '192.92.129.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('192.92.130.0', '192.92.130.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('192.92.131.0', '192.92.132.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('192.92.133.0', '192.92.133.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('192.92.134.0', '192.92.134.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('192.92.135.0', '192.92.135.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('192.92.136.0', '192.92.137.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('192.92.138.0', '192.92.138.255', 2147483647, 2147483647, 'AT', 'Austria'), +('192.92.139.0', '192.92.139.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('192.92.141.0', '192.92.141.255', 2147483647, 2147483647, 'AT', 'Austria'), +('192.92.142.0', '192.92.154.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('192.92.155.0', '192.92.156.255', 2147483647, 2147483647, 'GR', 'Greece'), +('192.92.158.0', '192.92.199.255', 2147483647, 2147483647, 'US', 'United States'), +('192.92.215.0', '192.92.215.255', 2147483647, 2147483647, 'US', 'United States'), +('192.92.216.0', '192.92.216.255', 2147483647, 2147483647, 'NO', 'Norway'), +('192.92.217.0', '192.92.223.255', 2147483647, 2147483647, 'US', 'United States'), +('192.92.224.0', '192.92.224.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('192.92.225.0', '192.92.235.255', 2147483647, 2147483647, 'US', 'United States'), +('192.93.0.0', '192.93.161.255', 2147483647, 2147483647, 'FR', 'France'), +('192.93.162.0', '192.93.163.255', 2147483647, 2147483647, 'US', 'United States'), +('192.93.164.0', '192.93.255.255', 2147483647, 2147483647, 'FR', 'France'), +('192.94.0.0', '192.94.23.255', 2147483647, 2147483647, 'US', 'United States'), +('192.94.24.0', '192.94.24.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('192.94.25.0', '192.94.27.255', 2147483647, 2147483647, 'US', 'United States'), +('192.94.28.0', '192.94.28.255', 2147483647, 2147483647, 'AT', 'Austria'), +('192.94.29.0', '192.94.40.255', 2147483647, 2147483647, 'US', 'United States'), +('192.94.41.0', '192.94.41.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.94.42.0', '192.94.56.255', 2147483647, 2147483647, 'US', 'United States'), +('192.94.57.0', '192.94.57.255', 2147483647, 2147483647, 'AT', 'Austria'), +('192.94.58.0', '192.94.58.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.94.59.0', '192.94.60.255', 2147483647, 2147483647, 'US', 'United States'), +('192.94.61.0', '192.94.61.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('192.94.62.0', '192.94.64.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.94.65.0', '192.94.66.255', 2147483647, 2147483647, 'US', 'United States'), +('192.94.67.0', '192.94.68.255', 2147483647, 2147483647, 'GR', 'Greece'), +('192.94.69.0', '192.94.69.255', 2147483647, 2147483647, 'US', 'United States'), +('192.94.72.0', '192.94.75.255', 2147483647, 2147483647, 'US', 'United States'), +('192.94.76.0', '192.94.76.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.94.77.0', '192.94.109.255', 2147483647, 2147483647, 'US', 'United States'), +('192.94.111.0', '192.94.115.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.94.116.0', '192.94.116.255', 2147483647, 2147483647, 'US', 'United States'), +('192.94.117.0', '192.94.117.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.94.118.0', '192.94.121.255', 2147483647, 2147483647, 'US', 'United States'), +('192.94.122.0', '192.94.122.255', 2147483647, 2147483647, 'BN', 'Brunei Darussalam'), +('192.94.123.0', '192.94.123.255', 2147483647, 2147483647, 'US', 'United States'), +('192.94.125.0', '192.94.125.255', 2147483647, 2147483647, 'US', 'United States'), +('192.94.126.0', '192.94.126.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.94.127.0', '192.94.155.255', 2147483647, 2147483647, 'US', 'United States'), +('192.94.156.0', '192.94.162.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('192.94.163.0', '192.94.163.255', 2147483647, 2147483647, 'ES', 'Spain'), +('192.94.164.0', '192.94.168.255', 2147483647, 2147483647, 'US', 'United States'), +('192.94.169.0', '192.94.169.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('192.94.170.0', '192.94.171.255', 2147483647, 2147483647, 'US', 'United States'), +('192.94.172.0', '192.94.172.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.94.173.0', '192.94.173.255', 2147483647, 2147483647, 'US', 'United States'), +('192.94.174.0', '192.94.174.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('192.94.175.0', '192.94.199.255', 2147483647, 2147483647, 'FR', 'France'), +('192.94.200.0', '192.94.200.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.94.201.0', '192.94.202.255', 2147483647, 2147483647, 'US', 'United States'), +('192.94.207.0', '192.94.207.255', 2147483647, 2147483647, 'US', 'United States'), +('192.94.208.0', '192.94.209.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.94.210.0', '192.94.210.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('192.94.211.0', '192.94.211.255', 2147483647, 2147483647, 'US', 'United States'), +('192.94.212.0', '192.94.212.255', 2147483647, 2147483647, 'IT', 'Italy'), +('192.94.213.0', '192.94.219.255', 2147483647, 2147483647, 'US', 'United States'), +('192.94.220.0', '192.94.220.255', 2147483647, 2147483647, 'JP', 'Japan'), +('192.94.221.0', '192.94.221.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('192.94.222.0', '192.94.225.255', 2147483647, 2147483647, 'US', 'United States'), +('192.94.226.0', '192.94.226.255', 2147483647, 2147483647, 'EU', 'Europe'), +('192.94.227.0', '192.94.227.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.94.228.0', '192.94.232.255', 2147483647, 2147483647, 'US', 'United States'), +('192.94.233.0', '192.94.233.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('192.94.234.0', '192.94.234.255', 2147483647, 2147483647, 'US', 'United States'), +('192.94.235.0', '192.94.235.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.94.236.0', '192.94.237.255', 2147483647, 2147483647, 'US', 'United States'), +('192.94.238.0', '192.94.238.255', 2147483647, 2147483647, 'JP', 'Japan'), +('192.94.239.0', '192.94.239.255', 2147483647, 2147483647, 'AT', 'Austria'), +('192.94.240.0', '192.94.241.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('192.94.242.0', '192.94.242.255', 2147483647, 2147483647, 'US', 'United States'), +('192.94.243.0', '192.94.244.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.94.245.0', '192.94.245.255', 2147483647, 2147483647, 'US', 'United States'), +('192.94.246.0', '192.94.246.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('192.94.247.0', '192.94.251.255', 2147483647, 2147483647, 'US', 'United States'), +('192.95.65.0', '192.95.65.255', 2147483647, 2147483647, 'US', 'United States'), +('192.96.0.0', '192.96.255.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('192.97.0.0', '192.97.217.255', 2147483647, 2147483647, 'US', 'United States'), +('192.97.218.0', '192.97.218.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.97.219.0', '192.97.255.255', 2147483647, 2147483647, 'US', 'United States'), +('192.98.0.0', '192.98.45.255', 2147483647, 2147483647, 'FI', 'Finland'), +('192.98.46.0', '192.98.46.255', 2147483647, 2147483647, 'JP', 'Japan'), +('192.98.47.0', '192.98.48.255', 2147483647, 2147483647, 'FI', 'Finland'), +('192.98.49.0', '192.98.49.255', 2147483647, 2147483647, 'EE', 'Estonia'), +('192.98.50.0', '192.98.255.255', 2147483647, 2147483647, 'FI', 'Finland'), +('192.100.1.0', '192.100.1.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('192.100.2.0', '192.100.2.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('192.100.3.0', '192.100.17.255', 2147483647, 2147483647, 'US', 'United States'), +('192.100.18.0', '192.100.18.255', 2147483647, 2147483647, 'FR', 'France'), +('192.100.19.0', '192.100.21.255', 2147483647, 2147483647, 'US', 'United States'), +('192.100.22.0', '192.100.22.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.100.23.0', '192.100.25.255', 2147483647, 2147483647, 'AT', 'Austria'), +('192.100.26.0', '192.100.51.255', 2147483647, 2147483647, 'US', 'United States'), +('192.100.52.0', '192.100.52.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.100.53.0', '192.100.53.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('192.100.54.0', '192.100.60.255', 2147483647, 2147483647, 'US', 'United States'), +('192.100.61.0', '192.100.61.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.100.62.0', '192.100.62.255', 2147483647, 2147483647, 'US', 'United States'), +('192.100.63.0', '192.100.63.255', 2147483647, 2147483647, 'NO', 'Norway'), +('192.100.64.0', '192.100.71.255', 2147483647, 2147483647, 'US', 'United States'), +('192.100.76.0', '192.100.76.255', 2147483647, 2147483647, 'US', 'United States'), +('192.100.77.0', '192.100.77.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('192.100.78.0', '192.100.78.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.100.79.0', '192.100.79.255', 2147483647, 2147483647, 'US', 'United States'), +('192.100.80.0', '192.100.80.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.100.81.0', '192.100.81.255', 2147483647, 2147483647, 'US', 'United States'), +('192.100.83.0', '192.100.95.255', 2147483647, 2147483647, 'US', 'United States'), +('192.100.96.0', '192.100.98.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.100.99.0', '192.100.99.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.100.100.0', '192.100.100.255', 2147483647, 2147483647, 'US', 'United States'), +('192.100.101.0', '192.100.101.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.100.102.0', '192.100.133.255', 2147483647, 2147483647, 'FI', 'Finland'), +('192.100.134.0', '192.100.134.255', 2147483647, 2147483647, 'US', 'United States'), +('192.100.135.0', '192.100.140.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.100.141.0', '192.100.143.255', 2147483647, 2147483647, 'US', 'United States'), +('192.100.144.0', '192.100.144.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.100.145.0', '192.100.153.255', 2147483647, 2147483647, 'US', 'United States'), +('192.100.154.0', '192.100.154.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.100.155.0', '192.100.255.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('192.101.1.0', '192.101.1.255', 2147483647, 2147483647, 'ES', 'Spain'), +('192.101.2.0', '192.101.3.255', 2147483647, 2147483647, 'US', 'United States'), +('192.101.4.0', '192.101.4.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('192.101.6.0', '192.101.7.255', 2147483647, 2147483647, 'US', 'United States'), +('192.101.8.0', '192.101.8.255', 2147483647, 2147483647, 'ES', 'Spain'), +('192.101.11.0', '192.101.11.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.101.12.0', '192.101.15.255', 2147483647, 2147483647, 'US', 'United States'), +('192.101.16.0', '192.101.16.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('192.101.17.0', '192.101.27.255', 2147483647, 2147483647, 'US', 'United States'), +('192.101.28.0', '192.101.28.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.101.29.0', '192.101.32.255', 2147483647, 2147483647, 'US', 'United States'), +('192.101.34.0', '192.101.34.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.101.35.0', '192.101.63.255', 2147483647, 2147483647, 'US', 'United States'), +('192.101.75.0', '192.101.75.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.101.76.0', '192.101.80.255', 2147483647, 2147483647, 'US', 'United States'), +('192.101.81.0', '192.101.90.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('192.101.91.0', '192.101.91.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('192.101.92.0', '192.101.117.255', 2147483647, 2147483647, 'US', 'United States'), +('192.101.118.0', '192.101.118.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('192.101.119.0', '192.101.133.255', 2147483647, 2147483647, 'US', 'United States'), +('192.101.134.0', '192.101.134.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.101.135.0', '192.101.136.255', 2147483647, 2147483647, 'US', 'United States'), +('192.101.137.0', '192.101.137.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.101.139.0', '192.101.141.255', 2147483647, 2147483647, 'US', 'United States'), +('192.101.142.0', '192.101.142.255', 2147483647, 2147483647, 'EG', 'Egypt'), +('192.101.143.0', '192.101.159.255', 2147483647, 2147483647, 'US', 'United States'), +('192.101.160.0', '192.101.168.255', 2147483647, 2147483647, 'ES', 'Spain'), +('192.101.169.0', '192.101.169.255', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('192.101.170.0', '192.101.170.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('192.101.171.0', '192.101.175.255', 2147483647, 2147483647, 'US', 'United States'), +('192.101.176.0', '192.101.176.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('192.101.177.0', '192.101.178.255', 2147483647, 2147483647, 'US', 'United States'), +('192.101.179.0', '192.101.180.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.101.181.0', '192.101.182.255', 2147483647, 2147483647, 'US', 'United States'), +('192.101.183.0', '192.101.183.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.101.184.0', '192.101.191.255', 2147483647, 2147483647, 'US', 'United States'), +('192.101.192.0', '192.101.192.255', 2147483647, 2147483647, 'FI', 'Finland'), +('192.101.193.0', '192.101.196.255', 2147483647, 2147483647, 'US', 'United States'), +('192.101.197.0', '192.101.198.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.101.199.0', '192.101.251.255', 2147483647, 2147483647, 'US', 'United States'), +('192.101.252.0', '192.101.252.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('192.101.253.0', '192.101.253.255', 2147483647, 2147483647, 'US', 'United States'), +('192.101.254.0', '192.101.254.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.102.1.0', '192.102.1.255', 2147483647, 2147483647, 'AT', 'Austria'), +('192.102.2.0', '192.102.5.255', 2147483647, 2147483647, 'US', 'United States'), +('192.102.6.0', '192.102.7.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('192.102.8.0', '192.102.8.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.102.9.0', '192.102.9.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('192.102.10.0', '192.102.10.255', 2147483647, 2147483647, 'US', 'United States'), +('192.102.11.0', '192.102.11.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.102.12.0', '192.102.16.255', 2147483647, 2147483647, 'US', 'United States'), +('192.102.17.0', '192.102.17.255', 2147483647, 2147483647, 'AT', 'Austria'), +('192.102.18.0', '192.102.32.255', 2147483647, 2147483647, 'FI', 'Finland'), +('192.102.33.0', '192.102.33.255', 2147483647, 2147483647, 'US', 'United States'), +('192.102.34.0', '192.102.81.255', 2147483647, 2147483647, 'FI', 'Finland'), +('192.102.82.0', '192.102.82.255', 2147483647, 2147483647, 'US', 'United States'), +('192.102.83.0', '192.102.83.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('192.102.84.0', '192.102.84.255', 2147483647, 2147483647, 'PE', 'Peru'), +('192.102.88.0', '192.102.88.255', 2147483647, 2147483647, 'US', 'United States'), +('192.102.89.0', '192.102.89.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.102.90.0', '192.102.91.255', 2147483647, 2147483647, 'US', 'United States'), +('192.102.92.0', '192.102.92.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('192.102.93.0', '192.102.94.255', 2147483647, 2147483647, 'US', 'United States'), +('192.102.95.0', '192.102.95.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('192.102.96.0', '192.102.145.255', 2147483647, 2147483647, 'US', 'United States'), +('192.102.146.0', '192.102.177.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.102.178.0', '192.102.213.255', 2147483647, 2147483647, 'US', 'United States'), +('192.102.214.0', '192.102.214.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.102.215.0', '192.102.223.255', 2147483647, 2147483647, 'US', 'United States'), +('192.102.224.0', '192.102.224.255', 2147483647, 2147483647, 'FR', 'France'), +('192.102.225.0', '192.102.225.255', 2147483647, 2147483647, 'PL', 'Poland'), +('192.102.226.0', '192.102.226.255', 2147483647, 2147483647, 'US', 'United States'), +('192.102.227.0', '192.102.228.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.102.229.0', '192.102.229.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('192.102.230.0', '192.102.238.255', 2147483647, 2147483647, 'US', 'United States'), +('192.102.239.0', '192.102.239.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.102.240.0', '192.102.249.255', 2147483647, 2147483647, 'US', 'United States'), +('192.102.250.0', '192.102.251.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.102.252.0', '192.102.253.255', 2147483647, 2147483647, 'US', 'United States'), +('192.103.1.0', '192.103.1.255', 2147483647, 2147483647, 'US', 'United States'), +('192.103.2.0', '192.103.2.255', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('192.103.3.0', '192.103.6.255', 2147483647, 2147483647, 'US', 'United States'), +('192.103.7.0', '192.103.7.255', 2147483647, 2147483647, 'FR', 'France'), +('192.103.8.0', '192.103.11.255', 2147483647, 2147483647, 'US', 'United States'), +('192.103.13.0', '192.103.13.255', 2147483647, 2147483647, 'US', 'United States'), +('192.103.14.0', '192.103.14.255', 2147483647, 2147483647, 'AE', 'United Arab Emirates'), +('192.103.15.0', '192.103.19.255', 2147483647, 2147483647, 'US', 'United States'), +('192.103.20.0', '192.103.20.255', 2147483647, 2147483647, 'GR', 'Greece'), +('192.103.21.0', '192.103.22.255', 2147483647, 2147483647, 'US', 'United States'), +('192.103.23.0', '192.103.23.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.103.24.0', '192.103.26.255', 2147483647, 2147483647, 'US', 'United States'), +('192.103.27.0', '192.103.27.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.103.28.0', '192.103.39.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.103.40.0', '192.103.40.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.103.41.0', '192.103.41.255', 2147483647, 2147483647, 'US', 'United States'), +('192.103.42.0', '192.103.43.255', 2147483647, 2147483647, 'JP', 'Japan'), +('192.103.44.0', '192.103.45.255', 2147483647, 2147483647, 'US', 'United States'), +('192.103.46.0', '192.103.46.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.103.47.0', '192.103.84.255', 2147483647, 2147483647, 'US', 'United States'), +('192.103.85.0', '192.103.116.255', 2147483647, 2147483647, 'FI', 'Finland'), +('192.103.117.0', '192.103.129.255', 2147483647, 2147483647, 'US', 'United States'), +('192.103.130.0', '192.103.130.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.103.132.0', '192.103.132.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.103.133.0', '192.103.136.255', 2147483647, 2147483647, 'US', 'United States'), +('192.103.137.0', '192.103.139.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.103.140.0', '192.103.146.255', 2147483647, 2147483647, 'US', 'United States'), +('192.103.147.0', '192.103.147.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('192.103.148.0', '192.104.14.255', 2147483647, 2147483647, 'US', 'United States'), +('192.104.15.0', '192.104.15.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('192.104.16.0', '192.104.19.255', 2147483647, 2147483647, 'US', 'United States'), +('192.104.21.0', '192.104.22.255', 2147483647, 2147483647, 'US', 'United States'), +('192.104.23.0', '192.104.23.255', 2147483647, 2147483647, 'IT', 'Italy'), +('192.104.24.0', '192.104.27.255', 2147483647, 2147483647, 'US', 'United States'), +('192.104.28.0', '192.104.29.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.104.30.0', '192.104.34.255', 2147483647, 2147483647, 'US', 'United States'), +('192.104.35.0', '192.104.37.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('192.104.39.0', '192.104.39.255', 2147483647, 2147483647, 'US', 'United States'), +('192.104.40.0', '192.104.40.255', 2147483647, 2147483647, 'JP', 'Japan'), +('192.104.41.0', '192.104.41.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('192.104.42.0', '192.104.42.255', 2147483647, 2147483647, 'US', 'United States'), +('192.104.43.0', '192.104.45.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.104.46.0', '192.104.47.255', 2147483647, 2147483647, 'US', 'United States'), +('192.104.48.0', '192.104.48.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('192.104.50.0', '192.104.52.255', 2147483647, 2147483647, 'US', 'United States'), +('192.104.53.0', '192.104.53.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.104.54.0', '192.104.54.255', 2147483647, 2147483647, 'US', 'United States'), +('192.104.55.0', '192.104.56.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('192.104.57.0', '192.104.58.255', 2147483647, 2147483647, 'NO', 'Norway'), +('192.104.59.0', '192.104.71.255', 2147483647, 2147483647, 'US', 'United States'), +('192.104.72.0', '192.104.72.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('192.104.74.0', '192.104.76.255', 2147483647, 2147483647, 'US', 'United States'), +('192.104.77.0', '192.104.77.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.104.78.0', '192.104.79.255', 2147483647, 2147483647, 'US', 'United States'), +('192.104.80.0', '192.104.80.255', 2147483647, 2147483647, 'JP', 'Japan'), +('192.104.81.0', '192.104.81.255', 2147483647, 2147483647, 'US', 'United States'), +('192.104.82.0', '192.104.82.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.104.83.0', '192.104.111.255', 2147483647, 2147483647, 'US', 'United States'), +('192.104.136.0', '192.104.139.255', 2147483647, 2147483647, 'US', 'United States'), +('192.104.140.0', '192.104.140.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('192.104.141.0', '192.104.141.255', 2147483647, 2147483647, 'US', 'United States'), +('192.104.142.0', '192.104.142.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('192.104.143.0', '192.104.146.255', 2147483647, 2147483647, 'US', 'United States'), +('192.104.147.0', '192.104.147.255', 2147483647, 2147483647, 'GR', 'Greece'), +('192.104.148.0', '192.104.153.255', 2147483647, 2147483647, 'US', 'United States'), +('192.104.154.0', '192.104.154.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('192.104.155.0', '192.104.155.255', 2147483647, 2147483647, 'FR', 'France'), +('192.104.156.0', '192.104.159.255', 2147483647, 2147483647, 'US', 'United States'), +('192.104.163.0', '192.104.166.255', 2147483647, 2147483647, 'US', 'United States'), +('192.104.167.0', '192.104.168.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('192.104.169.0', '192.104.171.255', 2147483647, 2147483647, 'US', 'United States'), +('192.104.172.0', '192.104.172.255', 2147483647, 2147483647, 'JP', 'Japan'), +('192.104.173.0', '192.104.231.255', 2147483647, 2147483647, 'US', 'United States'), +('192.104.232.0', '192.104.233.255', 2147483647, 2147483647, 'JP', 'Japan'), +('192.104.234.0', '192.104.237.255', 2147483647, 2147483647, 'US', 'United States'), +('192.104.238.0', '192.104.238.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.104.239.0', '192.104.244.255', 2147483647, 2147483647, 'US', 'United States'), +('192.104.245.0', '192.104.245.255', 2147483647, 2147483647, 'FR', 'France'), +('192.104.246.0', '192.104.247.255', 2147483647, 2147483647, 'JP', 'Japan'), +('192.104.248.0', '192.104.248.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('192.104.249.0', '192.104.250.255', 2147483647, 2147483647, 'US', 'United States'), +('192.104.251.0', '192.104.251.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('192.104.252.0', '192.104.252.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('192.104.253.0', '192.104.254.255', 2147483647, 2147483647, 'US', 'United States'), +('192.105.0.0', '192.105.9.255', 2147483647, 2147483647, 'US', 'United States'), +('192.105.10.0', '192.105.10.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('192.105.11.0', '192.105.74.255', 2147483647, 2147483647, 'US', 'United States'), +('192.105.75.0', '192.105.75.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.105.76.0', '192.105.103.255', 2147483647, 2147483647, 'US', 'United States'), +('192.105.104.0', '192.105.108.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.105.109.0', '192.105.169.255', 2147483647, 2147483647, 'US', 'United States'), +('192.105.170.0', '192.105.170.255', 2147483647, 2147483647, 'FI', 'Finland'), +('192.105.171.0', '192.105.194.255', 2147483647, 2147483647, 'US', 'United States'), +('192.105.195.0', '192.105.195.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('192.105.196.0', '192.105.253.255', 2147483647, 2147483647, 'US', 'United States'), +('192.105.254.0', '192.105.254.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.105.255.0', '192.105.255.255', 2147483647, 2147483647, 'US', 'United States'), +('192.106.0.0', '192.106.255.255', 2147483647, 2147483647, 'IT', 'Italy'), +('192.107.1.0', '192.107.1.255', 2147483647, 2147483647, 'NO', 'Norway'), +('192.107.2.0', '192.107.2.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.107.3.0', '192.107.3.255', 2147483647, 2147483647, 'US', 'United States'), +('192.107.4.0', '192.107.5.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.107.7.0', '192.107.8.255', 2147483647, 2147483647, 'US', 'United States'), +('192.107.9.0', '192.107.9.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.107.10.0', '192.107.10.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('192.107.11.0', '192.107.13.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.107.14.0', '192.107.48.255', 2147483647, 2147483647, 'US', 'United States'), +('192.107.50.0', '192.107.50.255', 2147483647, 2147483647, 'US', 'United States'), +('192.107.51.0', '192.107.100.255', 2147483647, 2147483647, 'IT', 'Italy'), +('192.107.101.0', '192.107.101.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.107.102.0', '192.107.103.255', 2147483647, 2147483647, 'US', 'United States'), +('192.107.104.0', '192.107.104.255', 2147483647, 2147483647, 'NI', 'Nicaragua'), +('192.107.105.0', '192.107.109.255', 2147483647, 2147483647, 'US', 'United States'), +('192.107.110.0', '192.107.110.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('192.107.112.0', '192.107.113.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('192.107.114.0', '192.107.114.255', 2147483647, 2147483647, 'NO', 'Norway'), +('192.107.115.0', '192.107.119.255', 2147483647, 2147483647, 'US', 'United States'), +('192.107.122.0', '192.107.122.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('192.107.123.0', '192.107.123.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.107.124.0', '192.107.125.255', 2147483647, 2147483647, 'AT', 'Austria'), +('192.107.126.0', '192.107.129.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.107.130.0', '192.107.130.255', 2147483647, 2147483647, 'US', 'United States'), +('192.107.131.0', '192.107.131.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.107.132.0', '192.107.132.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.107.134.0', '192.107.134.255', 2147483647, 2147483647, 'US', 'United States'), +('192.107.144.0', '192.107.167.255', 2147483647, 2147483647, 'US', 'United States'), +('192.107.168.0', '192.107.168.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.107.169.0', '192.107.170.255', 2147483647, 2147483647, 'US', 'United States'), +('192.107.171.0', '192.107.172.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('192.107.173.0', '192.107.173.255', 2147483647, 2147483647, 'US', 'United States'), +('192.107.174.0', '192.107.174.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.107.175.0', '192.107.176.255', 2147483647, 2147483647, 'US', 'United States'), +('192.107.177.0', '192.107.177.255', 2147483647, 2147483647, 'GR', 'Greece'), +('192.107.178.0', '192.107.178.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.107.179.0', '192.107.186.255', 2147483647, 2147483647, 'US', 'United States'), +('192.107.187.0', '192.107.187.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('192.107.188.0', '192.107.199.255', 2147483647, 2147483647, 'US', 'United States'), +('192.107.200.0', '192.107.231.255', 2147483647, 2147483647, 'FI', 'Finland'), +('192.107.232.0', '192.107.233.255', 2147483647, 2147483647, 'AT', 'Austria'), +('192.107.234.0', '192.107.234.255', 2147483647, 2147483647, 'US', 'United States'), +('192.107.235.0', '192.107.236.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.107.237.0', '192.108.22.255', 2147483647, 2147483647, 'US', 'United States'), +('192.108.23.0', '192.108.92.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.108.93.0', '192.108.98.255', 2147483647, 2147483647, 'US', 'United States'), +('192.108.99.0', '192.108.99.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.108.100.0', '192.108.101.255', 2147483647, 2147483647, 'NO', 'Norway'), +('192.108.102.0', '192.108.106.255', 2147483647, 2147483647, 'US', 'United States'), +('192.108.107.0', '192.108.108.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('192.108.109.0', '192.108.112.255', 2147483647, 2147483647, 'US', 'United States'), +('192.108.113.0', '192.108.113.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.108.114.0', '192.108.114.255', 2147483647, 2147483647, 'GR', 'Greece'), +('192.108.115.0', '192.108.119.255', 2147483647, 2147483647, 'FR', 'France'), +('192.108.120.0', '192.108.120.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.108.121.0', '192.108.121.255', 2147483647, 2147483647, 'AT', 'Austria'), +('192.108.122.0', '192.108.124.255', 2147483647, 2147483647, 'US', 'United States'), +('192.108.125.0', '192.108.125.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('192.108.126.0', '192.108.126.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('192.108.128.0', '192.108.129.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('192.108.130.0', '192.108.133.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('192.108.134.0', '192.108.136.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('192.108.137.0', '192.108.145.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('192.108.146.0', '192.108.147.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('192.108.148.0', '192.108.149.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('192.108.150.0', '192.108.151.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('192.108.152.0', '192.108.153.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('192.108.154.0', '192.108.154.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('192.108.155.0', '192.108.155.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('192.108.156.0', '192.108.156.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('192.108.157.0', '192.108.158.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('192.108.159.0', '192.108.160.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('192.108.161.0', '192.108.170.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('192.108.171.0', '192.108.171.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('192.108.172.0', '192.108.174.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('192.108.175.0', '192.108.194.255', 2147483647, 2147483647, 'US', 'United States'), +('192.108.195.0', '192.108.214.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('192.108.215.0', '192.108.229.255', 2147483647, 2147483647, 'US', 'United States'), +('192.108.230.0', '192.108.230.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('192.108.231.0', '192.108.231.255', 2147483647, 2147483647, 'US', 'United States'), +('192.108.233.0', '192.108.233.255', 2147483647, 2147483647, 'US', 'United States'), +('192.108.234.0', '192.108.234.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('192.108.235.0', '192.108.237.255', 2147483647, 2147483647, 'US', 'United States'), +('192.108.238.0', '192.108.238.255', 2147483647, 2147483647, 'AT', 'Austria'), +('192.108.240.0', '192.108.255.255', 2147483647, 2147483647, 'US', 'United States'), +('192.109.0.0', '192.109.147.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.109.148.0', '192.109.148.255', 2147483647, 2147483647, 'FR', 'France'), +('192.109.149.0', '192.109.172.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.109.173.0', '192.109.173.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('192.109.174.0', '192.109.190.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.109.191.0', '192.109.193.255', 2147483647, 2147483647, 'AT', 'Austria'), +('192.109.194.0', '192.109.194.255', 2147483647, 2147483647, 'IN', 'India'), +('192.109.195.0', '192.109.203.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.109.204.0', '192.109.204.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('192.109.205.0', '192.109.213.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.109.214.0', '192.109.215.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('192.109.216.0', '192.109.241.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.109.242.0', '192.109.242.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('192.109.243.0', '192.109.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.110.0.0', '192.110.36.255', 2147483647, 2147483647, 'US', 'United States'), +('192.110.37.0', '192.110.37.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.110.38.0', '192.110.84.255', 2147483647, 2147483647, 'US', 'United States'), +('192.110.85.0', '192.110.85.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.110.86.0', '192.110.89.255', 2147483647, 2147483647, 'US', 'United States'), +('192.110.90.0', '192.110.90.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.110.91.0', '192.110.94.255', 2147483647, 2147483647, 'US', 'United States'), +('192.110.95.0', '192.110.95.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.110.96.0', '192.110.105.255', 2147483647, 2147483647, 'US', 'United States'), +('192.110.106.0', '192.110.106.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.110.107.0', '192.110.115.255', 2147483647, 2147483647, 'US', 'United States'), +('192.110.116.0', '192.110.116.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.110.117.0', '192.110.191.255', 2147483647, 2147483647, 'US', 'United States'), +('192.110.223.0', '192.110.240.255', 2147483647, 2147483647, 'US', 'United States'), +('192.110.241.0', '192.110.241.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.110.242.0', '192.111.31.255', 2147483647, 2147483647, 'US', 'United States'), +('192.111.32.0', '192.111.32.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.111.33.0', '192.111.33.255', 2147483647, 2147483647, 'NO', 'Norway'), +('192.111.34.0', '192.111.36.255', 2147483647, 2147483647, 'US', 'United States'), +('192.111.39.0', '192.111.39.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('192.111.40.0', '192.111.43.255', 2147483647, 2147483647, 'US', 'United States'), +('192.111.44.0', '192.111.44.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('192.111.45.0', '192.111.46.255', 2147483647, 2147483647, 'US', 'United States'), +('192.111.47.0', '192.111.47.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.111.48.0', '192.111.48.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('192.111.49.0', '192.111.53.255', 2147483647, 2147483647, 'US', 'United States'), +('192.111.86.0', '192.111.87.255', 2147483647, 2147483647, 'US', 'United States'), +('192.111.88.0', '192.111.88.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.111.89.0', '192.111.100.255', 2147483647, 2147483647, 'US', 'United States'), +('192.111.101.0', '192.111.101.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('192.111.102.0', '192.111.102.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('192.111.103.0', '192.111.103.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('192.111.104.0', '192.111.104.255', 2147483647, 2147483647, 'AT', 'Austria'), +('192.111.105.0', '192.111.105.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.111.106.0', '192.111.123.255', 2147483647, 2147483647, 'US', 'United States'), +('192.111.124.0', '192.111.125.255', 2147483647, 2147483647, 'NO', 'Norway'), +('192.111.126.0', '192.111.126.255', 2147483647, 2147483647, 'US', 'United States'), +('192.111.127.0', '192.111.127.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.111.160.0', '192.111.228.255', 2147483647, 2147483647, 'US', 'United States'), +('192.111.229.0', '192.111.230.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('192.111.231.0', '192.111.251.255', 2147483647, 2147483647, 'US', 'United States'), +('192.111.252.0', '192.111.252.255', 2147483647, 2147483647, 'AT', 'Austria'), +('192.111.253.0', '192.111.254.255', 2147483647, 2147483647, 'US', 'United States'), +('192.112.0.0', '192.112.28.255', 2147483647, 2147483647, 'US', 'United States'), +('192.112.30.0', '192.112.32.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('192.112.33.0', '192.112.34.255', 2147483647, 2147483647, 'US', 'United States'), +('192.112.36.0', '192.112.44.255', 2147483647, 2147483647, 'US', 'United States'), +('192.112.45.0', '192.112.45.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('192.112.46.0', '192.112.48.255', 2147483647, 2147483647, 'US', 'United States'), +('192.112.49.0', '192.112.49.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.112.50.0', '192.112.60.255', 2147483647, 2147483647, 'US', 'United States'), +('192.112.61.0', '192.112.61.255', 2147483647, 2147483647, 'AT', 'Austria'), +('192.112.62.0', '192.112.68.255', 2147483647, 2147483647, 'US', 'United States'), +('192.112.70.0', '192.112.79.255', 2147483647, 2147483647, 'ES', 'Spain'), +('192.112.80.0', '192.112.97.255', 2147483647, 2147483647, 'US', 'United States'), +('192.112.98.0', '192.112.98.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.112.99.0', '192.112.99.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('192.112.100.0', '192.112.100.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.112.101.0', '192.112.203.255', 2147483647, 2147483647, 'US', 'United States'), +('192.112.204.0', '192.112.204.255', 2147483647, 2147483647, 'FI', 'Finland'), +('192.112.205.0', '192.112.205.255', 2147483647, 2147483647, 'US', 'United States'), +('192.112.206.0', '192.112.206.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('192.112.207.0', '192.112.207.255', 2147483647, 2147483647, 'US', 'United States'), +('192.112.208.0', '192.112.208.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.112.209.0', '192.112.212.255', 2147483647, 2147483647, 'US', 'United States'), +('192.112.213.0', '192.112.213.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.112.214.0', '192.112.214.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('192.112.215.0', '192.112.215.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.112.216.0', '192.112.246.255', 2147483647, 2147483647, 'US', 'United States'), +('192.112.247.0', '192.112.247.255', 2147483647, 2147483647, 'ES', 'Spain'), +('192.112.248.0', '192.112.253.255', 2147483647, 2147483647, 'US', 'United States'), +('192.112.254.0', '192.112.254.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('192.113.0.0', '192.113.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('192.114.0.0', '192.115.255.255', 2147483647, 2147483647, 'IL', 'Israel'), +('192.116.0.0', '192.116.1.255', 2147483647, 2147483647, 'PS', 'Palestinian Territory, Occupied'), +('192.116.2.0', '192.116.5.255', 2147483647, 2147483647, 'IL', 'Israel'), +('192.116.6.0', '192.116.7.255', 2147483647, 2147483647, 'PS', 'Palestinian Territory, Occupied'), +('192.116.8.0', '192.116.9.255', 2147483647, 2147483647, 'IL', 'Israel'), +('192.116.10.0', '192.116.23.255', 2147483647, 2147483647, 'PS', 'Palestinian Territory, Occupied'), +('192.116.24.0', '192.116.72.255', 2147483647, 2147483647, 'IL', 'Israel'), +('192.116.73.0', '192.116.73.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('192.116.74.0', '192.116.84.255', 2147483647, 2147483647, 'IL', 'Israel'), +('192.116.85.0', '192.116.85.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('192.116.86.0', '192.116.87.255', 2147483647, 2147483647, 'IL', 'Israel'), +('192.116.88.0', '192.116.88.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('192.116.89.0', '192.116.118.255', 2147483647, 2147483647, 'IL', 'Israel'), +('192.116.119.0', '192.116.119.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('192.116.120.0', '192.116.142.255', 2147483647, 2147483647, 'IL', 'Israel'), +('192.116.143.0', '192.116.143.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('192.116.144.0', '192.118.255.255', 2147483647, 2147483647, 'IL', 'Israel'), +('192.119.0.0', '192.120.8.255', 2147483647, 2147483647, 'US', 'United States'), +('192.120.9.0', '192.120.15.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.120.16.0', '192.120.46.255', 2147483647, 2147483647, 'US', 'United States'), +('192.120.47.0', '192.120.49.255', 2147483647, 2147483647, 'FI', 'Finland'), +('192.120.50.0', '192.120.58.255', 2147483647, 2147483647, 'US', 'United States'), +('192.120.59.0', '192.120.59.255', 2147483647, 2147483647, 'ES', 'Spain'), +('192.120.60.0', '192.120.119.255', 2147483647, 2147483647, 'US', 'United States'), +('192.120.120.0', '192.120.120.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('192.120.121.0', '192.120.240.255', 2147483647, 2147483647, 'US', 'United States'), +('192.120.241.0', '192.120.241.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('192.120.242.0', '192.120.255.255', 2147483647, 2147483647, 'US', 'United States'), +('192.121.0.0', '192.121.250.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('192.121.251.0', '192.121.251.255', 2147483647, 2147483647, 'EE', 'Estonia'), +('192.121.252.0', '192.121.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('192.122.0.0', '192.122.95.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.122.96.0', '192.122.100.255', 2147483647, 2147483647, 'US', 'United States'), +('192.122.101.0', '192.122.116.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.122.117.0', '192.122.117.255', 2147483647, 2147483647, 'US', 'United States'), +('192.122.118.0', '192.122.130.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.122.131.0', '192.122.140.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('192.122.141.0', '192.122.146.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.122.147.0', '192.122.148.255', 2147483647, 2147483647, 'US', 'United States'), +('192.122.151.0', '192.122.170.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.122.171.0', '192.122.171.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('192.122.172.0', '192.122.175.255', 2147483647, 2147483647, 'US', 'United States'), +('192.122.176.0', '192.122.176.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.122.177.0', '192.122.179.255', 2147483647, 2147483647, 'US', 'United States'), +('192.122.180.0', '192.122.180.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('192.122.181.0', '192.122.209.255', 2147483647, 2147483647, 'US', 'United States'), +('192.122.210.0', '192.122.210.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.122.211.0', '192.122.213.255', 2147483647, 2147483647, 'US', 'United States'), +('192.122.214.0', '192.122.214.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.122.216.0', '192.122.234.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('192.122.235.0', '192.122.237.255', 2147483647, 2147483647, 'US', 'United States'), +('192.122.238.0', '192.122.242.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('192.122.243.0', '192.122.253.255', 2147483647, 2147483647, 'US', 'United States'), +('192.122.254.0', '192.122.254.255', 2147483647, 2147483647, 'NO', 'Norway'), +('192.123.0.0', '192.124.9.255', 2147483647, 2147483647, 'US', 'United States'), +('192.124.10.0', '192.124.14.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.124.15.0', '192.124.23.255', 2147483647, 2147483647, 'US', 'United States'), +('192.124.24.0', '192.124.24.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('192.124.25.0', '192.124.28.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.124.31.0', '192.124.31.255', 2147483647, 2147483647, 'US', 'United States'), +('192.124.32.0', '192.124.32.255', 2147483647, 2147483647, 'AT', 'Austria'), +('192.124.33.0', '192.124.38.255', 2147483647, 2147483647, 'US', 'United States'), +('192.124.39.0', '192.124.39.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('192.124.40.0', '192.124.43.255', 2147483647, 2147483647, 'US', 'United States'), +('192.124.45.0', '192.124.45.255', 2147483647, 2147483647, 'US', 'United States'), +('192.124.46.0', '192.124.46.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.124.47.0', '192.124.111.255', 2147483647, 2147483647, 'US', 'United States'), +('192.124.112.0', '192.124.112.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.124.113.0', '192.124.114.255', 2147483647, 2147483647, 'US', 'United States'), +('192.124.115.0', '192.124.115.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.124.116.0', '192.124.116.255', 2147483647, 2147483647, 'PL', 'Poland'), +('192.124.117.0', '192.124.117.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.124.118.0', '192.124.118.255', 2147483647, 2147483647, 'US', 'United States'), +('192.124.120.0', '192.124.151.255', 2147483647, 2147483647, 'US', 'United States'), +('192.124.152.0', '192.124.152.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.124.153.0', '192.124.153.255', 2147483647, 2147483647, 'US', 'United States'), +('192.124.154.0', '192.124.154.255', 2147483647, 2147483647, 'CN', 'China'), +('192.124.155.0', '192.124.155.255', 2147483647, 2147483647, 'AT', 'Austria'), +('192.124.156.0', '192.124.167.255', 2147483647, 2147483647, 'US', 'United States'), +('192.124.168.0', '192.124.219.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('192.124.220.0', '192.124.234.255', 2147483647, 2147483647, 'US', 'United States'), +('192.124.235.0', '192.125.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.126.0.0', '192.126.64.255', 2147483647, 2147483647, 'FI', 'Finland'), +('192.126.65.0', '192.126.68.255', 2147483647, 2147483647, 'US', 'United States'), +('192.127.0.0', '192.128.255.255', 2147483647, 2147483647, 'US', 'United States'), +('192.129.1.0', '192.129.2.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.129.3.0', '192.129.4.255', 2147483647, 2147483647, 'RO', 'Romania'), +('192.129.5.0', '192.129.52.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.129.53.0', '192.129.53.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('192.129.54.0', '192.129.61.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.129.62.0', '192.129.79.255', 2147483647, 2147483647, 'US', 'United States'), +('192.129.80.0', '192.129.80.255', 2147483647, 2147483647, 'AT', 'Austria'), +('192.129.81.0', '192.129.86.255', 2147483647, 2147483647, 'US', 'United States'), +('192.129.87.0', '192.129.87.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('192.129.88.0', '192.129.97.255', 2147483647, 2147483647, 'US', 'United States'), +('192.129.98.0', '192.129.98.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.129.100.0', '192.129.111.255', 2147483647, 2147483647, 'US', 'United States'), +('192.130.0.0', '192.130.17.255', 2147483647, 2147483647, 'FI', 'Finland'), +('192.130.18.0', '192.130.18.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('192.130.19.0', '192.130.255.255', 2147483647, 2147483647, 'FI', 'Finland'), +('192.131.0.0', '192.131.12.255', 2147483647, 2147483647, 'US', 'United States'), +('192.131.13.0', '192.131.13.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.131.14.0', '192.131.19.255', 2147483647, 2147483647, 'US', 'United States'), +('192.131.20.0', '192.131.20.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.131.22.0', '192.131.24.255', 2147483647, 2147483647, 'US', 'United States'), +('192.131.25.0', '192.131.26.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('192.131.27.0', '192.131.30.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.131.31.0', '192.131.78.255', 2147483647, 2147483647, 'US', 'United States'), +('192.131.79.0', '192.131.79.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.131.80.0', '192.131.87.255', 2147483647, 2147483647, 'US', 'United States'), +('192.131.89.0', '192.131.89.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.131.90.0', '192.131.91.255', 2147483647, 2147483647, 'IN', 'India'), +('192.131.92.0', '192.131.92.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.131.93.0', '192.131.93.255', 2147483647, 2147483647, 'US', 'United States'), +('192.131.94.0', '192.131.94.255', 2147483647, 2147483647, 'CA', 'Canada'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('192.131.95.0', '192.131.95.255', 2147483647, 2147483647, 'US', 'United States'), +('192.131.96.0', '192.131.96.255', 2147483647, 2147483647, 'FI', 'Finland'), +('192.131.97.0', '192.131.97.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.131.98.0', '192.131.107.255', 2147483647, 2147483647, 'US', 'United States'), +('192.131.108.0', '192.131.108.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.131.109.0', '192.131.109.255', 2147483647, 2147483647, 'US', 'United States'), +('192.131.111.0', '192.131.131.255', 2147483647, 2147483647, 'US', 'United States'), +('192.131.132.0', '192.131.132.255', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('192.131.133.0', '192.131.133.255', 2147483647, 2147483647, 'US', 'United States'), +('192.131.135.0', '192.131.135.255', 2147483647, 2147483647, 'US', 'United States'), +('192.131.136.0', '192.131.142.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.131.143.0', '192.131.250.255', 2147483647, 2147483647, 'US', 'United States'), +('192.131.251.0', '192.131.252.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.131.253.0', '192.131.254.255', 2147483647, 2147483647, 'US', 'United States'), +('192.132.0.0', '192.132.7.255', 2147483647, 2147483647, 'US', 'United States'), +('192.132.9.0', '192.132.9.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.132.10.0', '192.132.10.255', 2147483647, 2147483647, 'IT', 'Italy'), +('192.132.11.0', '192.132.11.255', 2147483647, 2147483647, 'NO', 'Norway'), +('192.132.12.0', '192.132.14.255', 2147483647, 2147483647, 'US', 'United States'), +('192.132.15.0', '192.132.15.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('192.132.16.0', '192.132.18.255', 2147483647, 2147483647, 'US', 'United States'), +('192.132.19.0', '192.132.19.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.132.20.0', '192.132.27.255', 2147483647, 2147483647, 'US', 'United States'), +('192.132.29.0', '192.132.29.255', 2147483647, 2147483647, 'US', 'United States'), +('192.132.31.0', '192.132.31.255', 2147483647, 2147483647, 'JP', 'Japan'), +('192.132.34.0', '192.132.34.255', 2147483647, 2147483647, 'IT', 'Italy'), +('192.132.35.0', '192.132.35.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('192.132.36.0', '192.132.40.255', 2147483647, 2147483647, 'US', 'United States'), +('192.132.41.0', '192.132.41.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.132.42.0', '192.132.52.255', 2147483647, 2147483647, 'US', 'United States'), +('192.132.53.0', '192.132.53.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('192.132.54.0', '192.132.54.255', 2147483647, 2147483647, 'US', 'United States'), +('192.132.55.0', '192.132.55.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('192.132.56.0', '192.132.59.255', 2147483647, 2147483647, 'US', 'United States'), +('192.132.60.0', '192.132.60.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.132.64.0', '192.132.92.255', 2147483647, 2147483647, 'US', 'United States'), +('192.132.93.0', '192.132.93.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.132.94.0', '192.132.98.255', 2147483647, 2147483647, 'US', 'United States'), +('192.132.99.0', '192.132.99.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.132.100.0', '192.132.101.255', 2147483647, 2147483647, 'US', 'United States'), +('192.132.102.0', '192.132.102.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.132.103.0', '192.132.238.255', 2147483647, 2147483647, 'US', 'United States'), +('192.132.239.0', '192.132.239.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.132.240.0', '192.132.240.255', 2147483647, 2147483647, 'US', 'United States'), +('192.132.241.0', '192.132.241.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.132.242.0', '192.132.242.255', 2147483647, 2147483647, 'US', 'United States'), +('192.132.244.0', '192.132.244.255', 2147483647, 2147483647, 'IL', 'Israel'), +('192.132.245.0', '192.132.245.255', 2147483647, 2147483647, 'AT', 'Austria'), +('192.132.246.0', '192.132.246.255', 2147483647, 2147483647, 'US', 'United States'), +('192.132.247.0', '192.132.251.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('192.132.252.0', '192.132.252.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('192.132.253.0', '192.132.253.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.132.254.0', '192.132.254.255', 2147483647, 2147483647, 'US', 'United States'), +('192.133.0.0', '192.133.9.255', 2147483647, 2147483647, 'US', 'United States'), +('192.133.10.0', '192.133.10.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('192.133.11.0', '192.133.13.255', 2147483647, 2147483647, 'US', 'United States'), +('192.133.14.0', '192.133.14.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.133.15.0', '192.133.15.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('192.133.16.0', '192.133.20.255', 2147483647, 2147483647, 'US', 'United States'), +('192.133.21.0', '192.133.21.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.133.22.0', '192.133.27.255', 2147483647, 2147483647, 'US', 'United States'), +('192.133.28.0', '192.133.28.255', 2147483647, 2147483647, 'IT', 'Italy'), +('192.133.29.0', '192.133.30.255', 2147483647, 2147483647, 'US', 'United States'), +('192.133.31.0', '192.133.31.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('192.133.32.0', '192.133.32.255', 2147483647, 2147483647, 'NO', 'Norway'), +('192.133.33.0', '192.133.35.255', 2147483647, 2147483647, 'US', 'United States'), +('192.133.36.0', '192.133.36.255', 2147483647, 2147483647, 'IL', 'Israel'), +('192.133.37.0', '192.133.40.255', 2147483647, 2147483647, 'US', 'United States'), +('192.133.41.0', '192.133.41.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.133.42.0', '192.133.52.255', 2147483647, 2147483647, 'US', 'United States'), +('192.133.53.0', '192.133.53.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('192.133.54.0', '192.133.55.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('192.133.56.0', '192.133.57.255', 2147483647, 2147483647, 'US', 'United States'), +('192.133.58.0', '192.133.58.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.133.59.0', '192.133.63.255', 2147483647, 2147483647, 'US', 'United States'), +('192.133.64.0', '192.133.64.255', 2147483647, 2147483647, 'NO', 'Norway'), +('192.133.65.0', '192.133.65.255', 2147483647, 2147483647, 'US', 'United States'), +('192.133.66.0', '192.133.66.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('192.133.67.0', '192.133.67.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('192.133.68.0', '192.133.75.255', 2147483647, 2147483647, 'US', 'United States'), +('192.133.80.0', '192.133.100.255', 2147483647, 2147483647, 'US', 'United States'), +('192.133.102.0', '192.133.102.255', 2147483647, 2147483647, 'US', 'United States'), +('192.133.103.0', '192.133.103.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('192.133.104.0', '192.133.105.255', 2147483647, 2147483647, 'US', 'United States'), +('192.133.108.0', '192.133.108.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('192.133.109.0', '192.133.109.255', 2147483647, 2147483647, 'AT', 'Austria'), +('192.133.110.0', '192.133.111.255', 2147483647, 2147483647, 'FI', 'Finland'), +('192.133.116.0', '192.133.120.255', 2147483647, 2147483647, 'US', 'United States'), +('192.133.121.0', '192.133.121.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('192.133.122.0', '192.133.130.255', 2147483647, 2147483647, 'US', 'United States'), +('192.133.131.0', '192.133.131.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.133.132.0', '192.133.135.255', 2147483647, 2147483647, 'US', 'United States'), +('192.133.144.0', '192.133.243.255', 2147483647, 2147483647, 'US', 'United States'), +('192.133.244.0', '192.133.244.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.133.245.0', '192.133.246.255', 2147483647, 2147483647, 'US', 'United States'), +('192.133.250.0', '192.133.250.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('192.133.251.0', '192.133.255.255', 2147483647, 2147483647, 'US', 'United States'), +('192.134.0.0', '192.134.142.255', 2147483647, 2147483647, 'FR', 'France'), +('192.134.143.0', '192.134.143.255', 2147483647, 2147483647, 'CM', 'Cameroon'), +('192.134.144.0', '192.134.255.255', 2147483647, 2147483647, 'FR', 'France'), +('192.135.0.0', '192.135.6.255', 2147483647, 2147483647, 'US', 'United States'), +('192.135.7.0', '192.135.7.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.135.8.0', '192.135.37.255', 2147483647, 2147483647, 'IT', 'Italy'), +('192.135.38.0', '192.135.38.255', 2147483647, 2147483647, 'US', 'United States'), +('192.135.40.0', '192.135.45.255', 2147483647, 2147483647, 'US', 'United States'), +('192.135.46.0', '192.135.46.255', 2147483647, 2147483647, 'NO', 'Norway'), +('192.135.47.0', '192.135.47.255', 2147483647, 2147483647, 'US', 'United States'), +('192.135.48.0', '192.135.48.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.135.49.0', '192.135.49.255', 2147483647, 2147483647, 'US', 'United States'), +('192.135.51.0', '192.135.51.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.135.52.0', '192.135.53.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.135.63.0', '192.135.63.255', 2147483647, 2147483647, 'AT', 'Austria'), +('192.135.64.0', '192.135.65.255', 2147483647, 2147483647, 'US', 'United States'), +('192.135.66.0', '192.135.66.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.135.67.0', '192.135.67.255', 2147483647, 2147483647, 'US', 'United States'), +('192.135.68.0', '192.135.68.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.135.69.0', '192.135.76.255', 2147483647, 2147483647, 'US', 'United States'), +('192.135.77.0', '192.135.77.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.135.78.0', '192.135.81.255', 2147483647, 2147483647, 'US', 'United States'), +('192.135.82.0', '192.135.82.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('192.135.83.0', '192.135.83.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.135.84.0', '192.135.88.255', 2147483647, 2147483647, 'US', 'United States'), +('192.135.89.0', '192.135.111.255', 2147483647, 2147483647, 'JP', 'Japan'), +('192.135.112.0', '192.135.128.255', 2147483647, 2147483647, 'US', 'United States'), +('192.135.129.0', '192.135.129.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('192.135.130.0', '192.135.132.255', 2147483647, 2147483647, 'US', 'United States'), +('192.135.133.0', '192.135.133.255', 2147483647, 2147483647, 'AT', 'Austria'), +('192.135.134.0', '192.135.142.255', 2147483647, 2147483647, 'US', 'United States'), +('192.135.143.0', '192.135.143.255', 2147483647, 2147483647, 'NO', 'Norway'), +('192.135.144.0', '192.135.144.255', 2147483647, 2147483647, 'US', 'United States'), +('192.135.145.0', '192.135.164.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('192.135.165.0', '192.135.165.255', 2147483647, 2147483647, 'IT', 'Italy'), +('192.135.166.0', '192.135.166.255', 2147483647, 2147483647, 'GR', 'Greece'), +('192.135.167.0', '192.135.168.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('192.135.169.0', '192.135.174.255', 2147483647, 2147483647, 'US', 'United States'), +('192.135.175.0', '192.135.175.255', 2147483647, 2147483647, 'FR', 'France'), +('192.135.176.0', '192.135.184.255', 2147483647, 2147483647, 'US', 'United States'), +('192.135.185.0', '192.135.185.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('192.135.186.0', '192.135.186.255', 2147483647, 2147483647, 'US', 'United States'), +('192.135.187.0', '192.135.187.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('192.135.188.0', '192.135.199.255', 2147483647, 2147483647, 'US', 'United States'), +('192.135.205.0', '192.135.205.255', 2147483647, 2147483647, 'US', 'United States'), +('192.135.207.0', '192.135.208.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.135.209.0', '192.135.209.255', 2147483647, 2147483647, 'US', 'United States'), +('192.135.210.0', '192.135.210.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.135.211.0', '192.135.217.255', 2147483647, 2147483647, 'US', 'United States'), +('192.135.219.0', '192.135.219.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('192.135.220.0', '192.135.221.255', 2147483647, 2147483647, 'US', 'United States'), +('192.135.222.0', '192.135.222.255', 2147483647, 2147483647, 'JP', 'Japan'), +('192.135.224.0', '192.135.224.255', 2147483647, 2147483647, 'US', 'United States'), +('192.135.225.0', '192.135.225.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('192.135.226.0', '192.135.230.255', 2147483647, 2147483647, 'US', 'United States'), +('192.135.231.0', '192.135.234.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.135.235.0', '192.135.252.255', 2147483647, 2147483647, 'US', 'United States'), +('192.135.253.0', '192.135.253.255', 2147483647, 2147483647, 'NO', 'Norway'), +('192.135.254.0', '192.135.254.255', 2147483647, 2147483647, 'PL', 'Poland'), +('192.136.0.0', '192.136.6.255', 2147483647, 2147483647, 'US', 'United States'), +('192.136.7.0', '192.136.7.255', 2147483647, 2147483647, 'MT', 'Malta'), +('192.136.8.0', '192.136.8.255', 2147483647, 2147483647, 'US', 'United States'), +('192.136.9.0', '192.136.9.255', 2147483647, 2147483647, 'FI', 'Finland'), +('192.136.10.0', '192.136.17.255', 2147483647, 2147483647, 'US', 'United States'), +('192.136.18.0', '192.136.18.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.136.19.0', '192.136.19.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('192.136.20.0', '192.136.22.255', 2147483647, 2147483647, 'US', 'United States'), +('192.136.23.0', '192.136.23.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('192.136.24.0', '192.136.26.255', 2147483647, 2147483647, 'US', 'United States'), +('192.136.27.0', '192.136.27.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.136.28.0', '192.136.28.255', 2147483647, 2147483647, 'US', 'United States'), +('192.136.29.0', '192.136.29.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.136.30.0', '192.136.30.255', 2147483647, 2147483647, 'FR', 'France'), +('192.136.31.0', '192.136.31.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('192.136.32.0', '192.136.35.255', 2147483647, 2147483647, 'US', 'United States'), +('192.136.37.0', '192.136.38.255', 2147483647, 2147483647, 'US', 'United States'), +('192.136.39.0', '192.136.39.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.136.40.0', '192.136.40.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.136.41.0', '192.136.41.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('192.136.42.0', '192.136.47.255', 2147483647, 2147483647, 'NI', 'Nicaragua'), +('192.136.48.0', '192.136.48.255', 2147483647, 2147483647, 'US', 'United States'), +('192.136.49.0', '192.136.49.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('192.136.50.0', '192.136.50.255', 2147483647, 2147483647, 'US', 'United States'), +('192.136.51.0', '192.136.51.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('192.136.52.0', '192.136.52.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('192.136.54.0', '192.136.54.255', 2147483647, 2147483647, 'FR', 'France'), +('192.136.55.0', '192.136.56.255', 2147483647, 2147483647, 'BF', 'Burkina Faso'), +('192.136.57.0', '192.136.57.255', 2147483647, 2147483647, 'NE', 'Niger'), +('192.136.58.0', '192.136.58.255', 2147483647, 2147483647, 'FR', 'France'), +('192.136.59.0', '192.136.59.255', 2147483647, 2147483647, 'PF', 'French Polynesia'), +('192.136.60.0', '192.136.60.255', 2147483647, 2147483647, 'US', 'United States'), +('192.136.61.0', '192.136.61.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('192.136.62.0', '192.136.70.255', 2147483647, 2147483647, 'US', 'United States'), +('192.136.71.0', '192.136.103.255', 2147483647, 2147483647, 'FI', 'Finland'), +('192.136.104.0', '192.136.112.255', 2147483647, 2147483647, 'US', 'United States'), +('192.136.114.0', '192.136.115.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.136.119.0', '192.136.140.255', 2147483647, 2147483647, 'US', 'United States'), +('192.136.141.0', '192.136.143.255', 2147483647, 2147483647, 'IN', 'India'), +('192.136.144.0', '192.136.153.255', 2147483647, 2147483647, 'US', 'United States'), +('192.136.154.0', '192.136.155.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.136.156.0', '192.136.156.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('192.137.0.0', '192.137.23.255', 2147483647, 2147483647, 'US', 'United States'), +('192.137.24.0', '192.137.24.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.137.25.0', '192.137.30.255', 2147483647, 2147483647, 'US', 'United States'), +('192.137.31.0', '192.137.31.255', 2147483647, 2147483647, 'CN', 'China'), +('192.137.32.0', '192.137.42.255', 2147483647, 2147483647, 'US', 'United States'), +('192.137.43.0', '192.137.43.255', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('192.137.44.0', '192.137.61.255', 2147483647, 2147483647, 'US', 'United States'), +('192.137.62.0', '192.137.62.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('192.137.63.0', '192.137.63.255', 2147483647, 2147483647, 'US', 'United States'), +('192.137.64.0', '192.137.73.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('192.137.74.0', '192.137.74.255', 2147483647, 2147483647, 'ES', 'Spain'), +('192.137.75.0', '192.137.75.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.137.76.0', '192.137.76.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('192.137.77.0', '192.137.85.255', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('192.137.86.0', '192.137.86.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.137.87.0', '192.137.87.255', 2147483647, 2147483647, 'ES', 'Spain'), +('192.137.88.0', '192.137.88.255', 2147483647, 2147483647, 'US', 'United States'), +('192.137.89.0', '192.137.89.255', 2147483647, 2147483647, 'NO', 'Norway'), +('192.137.90.0', '192.137.94.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.137.95.0', '192.137.95.255', 2147483647, 2147483647, 'ES', 'Spain'), +('192.137.96.0', '192.137.96.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.137.97.0', '192.137.97.255', 2147483647, 2147483647, 'US', 'United States'), +('192.137.98.0', '192.137.98.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.137.99.0', '192.137.99.255', 2147483647, 2147483647, 'US', 'United States'), +('192.137.100.0', '192.137.100.255', 2147483647, 2147483647, 'ES', 'Spain'), +('192.137.101.0', '192.137.101.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.137.102.0', '192.137.125.255', 2147483647, 2147483647, 'US', 'United States'), +('192.137.126.0', '192.137.126.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.137.127.0', '192.137.127.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.137.128.0', '192.137.128.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.137.129.0', '192.137.143.255', 2147483647, 2147483647, 'US', 'United States'), +('192.137.144.0', '192.137.144.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('192.137.145.0', '192.137.147.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.137.148.0', '192.137.149.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('192.137.150.0', '192.137.155.255', 2147483647, 2147483647, 'US', 'United States'), +('192.137.156.0', '192.137.156.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('192.137.157.0', '192.137.157.255', 2147483647, 2147483647, 'US', 'United States'), +('192.137.158.0', '192.137.158.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.137.159.0', '192.137.160.255', 2147483647, 2147483647, 'FR', 'France'), +('192.137.161.0', '192.137.164.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('192.137.165.0', '192.137.167.255', 2147483647, 2147483647, 'US', 'United States'), +('192.137.168.0', '192.137.168.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('192.137.169.0', '192.137.170.255', 2147483647, 2147483647, 'US', 'United States'), +('192.137.171.0', '192.137.171.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('192.137.172.0', '192.137.172.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.137.173.0', '192.137.183.255', 2147483647, 2147483647, 'US', 'United States'), +('192.137.184.0', '192.137.184.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('192.137.185.0', '192.137.185.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('192.137.186.0', '192.137.187.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('192.137.188.0', '192.137.198.255', 2147483647, 2147483647, 'US', 'United States'), +('192.137.199.0', '192.137.200.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('192.137.201.0', '192.137.201.255', 2147483647, 2147483647, 'ES', 'Spain'), +('192.137.202.0', '192.137.203.255', 2147483647, 2147483647, 'US', 'United States'), +('192.137.204.0', '192.137.204.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.137.205.0', '192.137.210.255', 2147483647, 2147483647, 'US', 'United States'), +('192.137.211.0', '192.137.215.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('192.137.216.0', '192.137.233.255', 2147483647, 2147483647, 'US', 'United States'), +('192.137.234.0', '192.137.234.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('192.137.235.0', '192.137.235.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('192.137.236.0', '192.137.242.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('192.137.243.0', '192.137.246.255', 2147483647, 2147483647, 'US', 'United States'), +('192.137.247.0', '192.137.249.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.137.250.0', '192.137.255.255', 2147483647, 2147483647, 'US', 'United States'), +('192.138.0.0', '192.138.15.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.138.24.0', '192.138.85.255', 2147483647, 2147483647, 'US', 'United States'), +('192.138.86.0', '192.138.86.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('192.138.87.0', '192.138.99.255', 2147483647, 2147483647, 'US', 'United States'), +('192.138.100.0', '192.138.100.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.138.101.0', '192.138.104.255', 2147483647, 2147483647, 'US', 'United States'), +('192.138.105.0', '192.138.108.255', 2147483647, 2147483647, 'NO', 'Norway'), +('192.138.109.0', '192.138.117.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('192.138.118.0', '192.138.125.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('192.138.126.0', '192.138.127.255', 2147483647, 2147483647, 'US', 'United States'), +('192.138.128.0', '192.138.130.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.138.131.0', '192.138.154.255', 2147483647, 2147483647, 'US', 'United States'), +('192.138.155.0', '192.138.155.255', 2147483647, 2147483647, 'NO', 'Norway'), +('192.138.156.0', '192.138.158.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.138.159.0', '192.138.182.255', 2147483647, 2147483647, 'US', 'United States'), +('192.138.183.0', '192.138.183.255', 2147483647, 2147483647, 'IT', 'Italy'), +('192.138.184.0', '192.138.184.255', 2147483647, 2147483647, 'US', 'United States'), +('192.138.185.0', '192.138.186.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.138.187.0', '192.138.187.255', 2147483647, 2147483647, 'US', 'United States'), +('192.138.188.0', '192.138.188.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('192.138.189.0', '192.138.191.255', 2147483647, 2147483647, 'US', 'United States'), +('192.138.192.0', '192.138.192.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.138.193.0', '192.138.203.255', 2147483647, 2147483647, 'US', 'United States'), +('192.138.204.0', '192.138.204.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('192.138.205.0', '192.138.205.255', 2147483647, 2147483647, 'US', 'United States'), +('192.138.207.0', '192.138.227.255', 2147483647, 2147483647, 'US', 'United States'), +('192.138.228.0', '192.138.228.255', 2147483647, 2147483647, 'AT', 'Austria'), +('192.138.229.0', '192.138.229.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.138.230.0', '192.138.232.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('192.138.233.0', '192.138.247.255', 2147483647, 2147483647, 'US', 'United States'), +('192.138.248.0', '192.138.248.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.138.249.0', '192.138.250.255', 2147483647, 2147483647, 'US', 'United States'), +('192.138.251.0', '192.138.251.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('192.138.252.0', '192.138.255.255', 2147483647, 2147483647, 'US', 'United States'), +('192.139.0.0', '192.139.77.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.139.78.0', '192.139.78.255', 2147483647, 2147483647, 'FR', 'France'), +('192.139.79.0', '192.139.131.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.139.132.0', '192.139.137.255', 2147483647, 2147483647, 'US', 'United States'), +('192.139.138.0', '192.139.138.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.139.140.0', '192.139.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.140.0.0', '192.142.232.255', 2147483647, 2147483647, 'FR', 'France'), +('192.142.233.0', '192.142.233.255', 2147483647, 2147483647, 'FI', 'Finland'), +('192.142.234.0', '192.143.111.255', 2147483647, 2147483647, 'FR', 'France'), +('192.143.112.0', '192.143.112.255', 2147483647, 2147483647, 'FI', 'Finland'), +('192.143.113.0', '192.143.225.159', 2147483647, 2147483647, 'FR', 'France'), +('192.143.225.160', '192.143.225.175', 2147483647, 2147483647, 'HU', 'Hungary'), +('192.143.225.176', '192.145.255.255', 2147483647, 2147483647, 'FR', 'France'), +('192.146.0.0', '192.146.116.255', 2147483647, 2147483647, 'US', 'United States'), +('192.146.117.0', '192.146.117.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('192.146.119.0', '192.146.119.255', 2147483647, 2147483647, 'FR', 'France'), +('192.146.120.0', '192.146.122.255', 2147483647, 2147483647, 'US', 'United States'), +('192.146.123.0', '192.146.123.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.146.124.0', '192.146.126.255', 2147483647, 2147483647, 'ES', 'Spain'), +('192.146.127.0', '192.146.129.255', 2147483647, 2147483647, 'US', 'United States'), +('192.146.132.0', '192.146.132.255', 2147483647, 2147483647, 'AT', 'Austria'), +('192.146.133.0', '192.146.133.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('192.146.134.0', '192.146.135.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('192.146.136.0', '192.146.141.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.146.142.0', '192.146.149.255', 2147483647, 2147483647, 'US', 'United States'), +('192.146.150.0', '192.146.150.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('192.146.151.0', '192.146.151.255', 2147483647, 2147483647, 'US', 'United States'), +('192.146.152.0', '192.146.152.255', 2147483647, 2147483647, 'FI', 'Finland'), +('192.146.153.0', '192.146.155.255', 2147483647, 2147483647, 'US', 'United States'), +('192.146.156.0', '192.146.156.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.146.157.0', '192.146.157.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('192.146.158.0', '192.146.162.255', 2147483647, 2147483647, 'US', 'United States'), +('192.146.163.0', '192.146.170.255', 2147483647, 2147483647, 'NO', 'Norway'), +('192.146.171.0', '192.146.171.255', 2147483647, 2147483647, 'US', 'United States'), +('192.146.172.0', '192.146.172.255', 2147483647, 2147483647, 'ES', 'Spain'), +('192.146.173.0', '192.146.181.255', 2147483647, 2147483647, 'IT', 'Italy'), +('192.146.182.0', '192.146.182.255', 2147483647, 2147483647, 'FR', 'France'), +('192.146.183.0', '192.146.183.255', 2147483647, 2147483647, 'US', 'United States'), +('192.146.184.0', '192.146.184.255', 2147483647, 2147483647, 'JP', 'Japan'), +('192.146.185.0', '192.146.185.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.146.187.0', '192.146.187.255', 2147483647, 2147483647, 'ES', 'Spain'), +('192.146.188.0', '192.146.188.255', 2147483647, 2147483647, 'US', 'United States'), +('192.146.189.0', '192.146.189.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.146.191.0', '192.146.192.255', 2147483647, 2147483647, 'US', 'United States'), +('192.146.193.0', '192.146.193.255', 2147483647, 2147483647, 'NO', 'Norway'), +('192.146.194.0', '192.146.199.255', 2147483647, 2147483647, 'US', 'United States'), +('192.146.200.0', '192.146.200.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.146.201.0', '192.146.203.255', 2147483647, 2147483647, 'US', 'United States'), +('192.146.204.0', '192.146.204.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('192.146.205.0', '192.146.217.255', 2147483647, 2147483647, 'US', 'United States'), +('192.146.218.0', '192.146.219.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('192.146.220.0', '192.146.226.255', 2147483647, 2147483647, 'US', 'United States'), +('192.146.227.0', '192.146.227.255', 2147483647, 2147483647, 'NO', 'Norway'), +('192.146.228.0', '192.146.228.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.146.229.0', '192.146.229.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('192.146.232.0', '192.146.232.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.146.233.0', '192.146.234.255', 2147483647, 2147483647, 'FR', 'France'), +('192.146.235.0', '192.146.236.255', 2147483647, 2147483647, 'US', 'United States'), +('192.146.237.0', '192.146.237.255', 2147483647, 2147483647, 'UY', 'Uruguay'), +('192.146.238.0', '192.146.239.255', 2147483647, 2147483647, 'NO', 'Norway'), +('192.146.240.0', '192.146.241.255', 2147483647, 2147483647, 'US', 'United States'), +('192.146.242.0', '192.146.242.255', 2147483647, 2147483647, 'IT', 'Italy'), +('192.146.243.0', '192.146.250.255', 2147483647, 2147483647, 'US', 'United States'), +('192.146.251.0', '192.146.253.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.146.254.0', '192.146.254.255', 2147483647, 2147483647, 'US', 'United States'), +('192.147.0.0', '192.147.22.255', 2147483647, 2147483647, 'US', 'United States'), +('192.147.23.0', '192.147.23.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.147.24.0', '192.147.33.255', 2147483647, 2147483647, 'US', 'United States'), +('192.147.34.0', '192.147.34.255', 2147483647, 2147483647, 'IS', 'Iceland'), +('192.147.35.0', '192.147.35.255', 2147483647, 2147483647, 'US', 'United States'), +('192.147.36.0', '192.147.36.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.147.38.0', '192.147.41.255', 2147483647, 2147483647, 'US', 'United States'), +('192.147.42.0', '192.147.42.255', 2147483647, 2147483647, 'PL', 'Poland'), +('192.147.43.0', '192.147.75.255', 2147483647, 2147483647, 'US', 'United States'), +('192.147.76.0', '192.147.78.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('192.147.79.0', '192.147.79.255', 2147483647, 2147483647, 'FR', 'France'), +('192.147.80.0', '192.147.113.255', 2147483647, 2147483647, 'US', 'United States'), +('192.147.114.0', '192.147.114.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.147.115.0', '192.147.140.255', 2147483647, 2147483647, 'US', 'United States'), +('192.147.141.0', '192.147.141.255', 2147483647, 2147483647, 'PL', 'Poland'), +('192.147.142.0', '192.147.147.255', 2147483647, 2147483647, 'US', 'United States'), +('192.147.149.0', '192.147.149.255', 2147483647, 2147483647, 'US', 'United States'), +('192.147.150.0', '192.147.150.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.147.151.0', '192.147.153.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('192.147.154.0', '192.147.154.255', 2147483647, 2147483647, 'US', 'United States'), +('192.147.155.0', '192.147.155.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('192.147.156.0', '192.147.209.255', 2147483647, 2147483647, 'US', 'United States'), +('192.147.210.0', '192.147.210.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('192.147.211.0', '192.147.211.255', 2147483647, 2147483647, 'US', 'United States'), +('192.147.212.0', '192.147.212.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.147.213.0', '192.147.213.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.147.214.0', '192.147.214.255', 2147483647, 2147483647, 'US', 'United States'), +('192.147.215.0', '192.147.216.255', 2147483647, 2147483647, 'FI', 'Finland'), +('192.147.217.0', '192.147.217.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.147.218.0', '192.147.218.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('192.147.219.0', '192.147.219.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.147.220.0', '192.147.227.255', 2147483647, 2147483647, 'US', 'United States'), +('192.147.228.0', '192.147.228.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.147.229.0', '192.147.230.255', 2147483647, 2147483647, 'US', 'United States'), +('192.147.232.0', '192.147.234.255', 2147483647, 2147483647, 'US', 'United States'), +('192.147.235.0', '192.147.235.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.147.236.0', '192.147.245.255', 2147483647, 2147483647, 'US', 'United States'), +('192.147.246.0', '192.147.246.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.147.247.0', '192.147.247.255', 2147483647, 2147483647, 'IT', 'Italy'), +('192.147.248.0', '192.147.250.255', 2147483647, 2147483647, 'US', 'United States'), +('192.147.251.0', '192.147.251.255', 2147483647, 2147483647, 'EU', 'Europe'), +('192.147.252.0', '192.147.252.255', 2147483647, 2147483647, 'US', 'United States'), +('192.147.253.0', '192.147.253.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.147.254.0', '192.147.254.255', 2147483647, 2147483647, 'US', 'United States'), +('192.148.0.0', '192.148.32.255', 2147483647, 2147483647, 'US', 'United States'), +('192.148.33.0', '192.148.92.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('192.148.93.0', '192.148.102.255', 2147483647, 2147483647, 'US', 'United States'), +('192.148.103.0', '192.148.103.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('192.148.104.0', '192.148.111.255', 2147483647, 2147483647, 'US', 'United States'), +('192.148.112.0', '192.148.165.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.148.166.0', '192.148.166.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('192.148.167.0', '192.148.167.255', 2147483647, 2147483647, 'ES', 'Spain'), +('192.148.168.0', '192.148.172.255', 2147483647, 2147483647, 'US', 'United States'), +('192.148.174.0', '192.148.174.255', 2147483647, 2147483647, 'US', 'United States'), +('192.148.175.0', '192.148.175.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('192.148.176.0', '192.148.176.255', 2147483647, 2147483647, 'US', 'United States'), +('192.148.177.0', '192.148.186.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.148.187.0', '192.148.191.255', 2147483647, 2147483647, 'US', 'United States'), +('192.148.192.0', '192.148.192.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('192.148.193.0', '192.148.193.255', 2147483647, 2147483647, 'IT', 'Italy'), +('192.148.194.0', '192.148.194.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.148.195.0', '192.148.197.255', 2147483647, 2147483647, 'US', 'United States'), +('192.148.198.0', '192.148.199.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.148.200.0', '192.148.200.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('192.148.201.0', '192.148.215.255', 2147483647, 2147483647, 'ES', 'Spain'), +('192.148.216.0', '192.148.216.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.148.217.0', '192.148.217.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.148.218.0', '192.148.218.255', 2147483647, 2147483647, 'US', 'United States'), +('192.148.220.0', '192.148.220.255', 2147483647, 2147483647, 'IT', 'Italy'), +('192.148.221.0', '192.148.221.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('192.148.222.0', '192.148.222.255', 2147483647, 2147483647, 'US', 'United States'), +('192.148.223.0', '192.148.230.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.148.231.0', '192.148.255.255', 2147483647, 2147483647, 'US', 'United States'), +('192.149.1.0', '192.149.2.255', 2147483647, 2147483647, 'US', 'United States'), +('192.149.3.0', '192.149.3.255', 2147483647, 2147483647, 'PL', 'Poland'), +('192.149.4.0', '192.149.4.255', 2147483647, 2147483647, 'US', 'United States'), +('192.149.5.0', '192.149.5.255', 2147483647, 2147483647, 'FI', 'Finland'), +('192.149.6.0', '192.149.14.255', 2147483647, 2147483647, 'US', 'United States'), +('192.149.15.0', '192.149.15.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.149.16.0', '192.149.16.255', 2147483647, 2147483647, 'US', 'United States'), +('192.149.18.0', '192.149.18.255', 2147483647, 2147483647, 'US', 'United States'), +('192.149.19.0', '192.149.19.255', 2147483647, 2147483647, 'ES', 'Spain'), +('192.149.20.0', '192.149.20.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.149.21.0', '192.149.22.255', 2147483647, 2147483647, 'US', 'United States'), +('192.149.24.0', '192.149.26.255', 2147483647, 2147483647, 'US', 'United States'), +('192.149.27.0', '192.149.27.255', 2147483647, 2147483647, 'AT', 'Austria'), +('192.149.28.0', '192.149.28.255', 2147483647, 2147483647, 'US', 'United States'), +('192.149.29.0', '192.149.33.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('192.149.34.0', '192.149.34.255', 2147483647, 2147483647, 'US', 'United States'), +('192.149.35.0', '192.149.35.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('192.149.36.0', '192.149.36.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.149.37.0', '192.149.38.255', 2147483647, 2147483647, 'US', 'United States'), +('192.149.40.0', '192.149.40.255', 2147483647, 2147483647, 'US', 'United States'), +('192.149.41.0', '192.149.41.255', 2147483647, 2147483647, 'FR', 'France'), +('192.149.42.0', '192.149.52.255', 2147483647, 2147483647, 'US', 'United States'), +('192.149.53.0', '192.149.53.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.149.54.0', '192.149.54.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.149.55.0', '192.149.56.255', 2147483647, 2147483647, 'US', 'United States'), +('192.149.57.0', '192.149.57.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.149.59.0', '192.149.59.255', 2147483647, 2147483647, 'FR', 'France'), +('192.149.60.0', '192.149.60.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.149.61.0', '192.149.67.255', 2147483647, 2147483647, 'US', 'United States'), +('192.149.74.0', '192.149.75.255', 2147483647, 2147483647, 'US', 'United States'), +('192.149.77.0', '192.149.77.255', 2147483647, 2147483647, 'FR', 'France'), +('192.149.78.0', '192.149.79.255', 2147483647, 2147483647, 'NO', 'Norway'), +('192.149.80.0', '192.149.80.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.149.81.0', '192.149.87.255', 2147483647, 2147483647, 'US', 'United States'), +('192.149.89.0', '192.149.89.255', 2147483647, 2147483647, 'US', 'United States'), +('192.149.90.0', '192.149.90.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.149.92.0', '192.149.95.255', 2147483647, 2147483647, 'US', 'United States'), +('192.149.97.0', '192.149.97.255', 2147483647, 2147483647, 'US', 'United States'), +('192.149.98.0', '192.149.98.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.149.99.0', '192.149.99.255', 2147483647, 2147483647, 'US', 'United States'), +('192.149.100.0', '192.149.100.255', 2147483647, 2147483647, 'NO', 'Norway'), +('192.149.101.0', '192.149.101.255', 2147483647, 2147483647, 'US', 'United States'), +('192.149.102.0', '192.149.102.255', 2147483647, 2147483647, 'NO', 'Norway'), +('192.149.103.0', '192.149.109.255', 2147483647, 2147483647, 'US', 'United States'), +('192.149.110.0', '192.149.110.255', 2147483647, 2147483647, 'IT', 'Italy'), +('192.149.111.0', '192.149.111.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.149.112.0', '192.149.116.255', 2147483647, 2147483647, 'US', 'United States'), +('192.149.117.0', '192.149.117.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.149.118.0', '192.149.118.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('192.149.119.0', '192.149.121.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.149.122.0', '192.149.122.255', 2147483647, 2147483647, 'US', 'United States'), +('192.149.123.0', '192.149.123.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.149.124.0', '192.149.125.255', 2147483647, 2147483647, 'US', 'United States'), +('192.149.126.0', '192.149.126.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.149.127.0', '192.149.148.255', 2147483647, 2147483647, 'US', 'United States'), +('192.149.149.0', '192.149.149.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.149.150.0', '192.149.201.255', 2147483647, 2147483647, 'US', 'United States'), +('192.149.202.0', '192.149.202.255', 2147483647, 2147483647, 'GU', 'Guam'), +('192.149.203.0', '192.149.208.255', 2147483647, 2147483647, 'US', 'United States'), +('192.149.209.0', '192.149.209.255', 2147483647, 2147483647, 'JP', 'Japan'), +('192.149.211.0', '192.149.226.255', 2147483647, 2147483647, 'US', 'United States'), +('192.149.227.0', '192.149.227.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('192.149.228.0', '192.149.231.255', 2147483647, 2147483647, 'US', 'United States'), +('192.149.232.0', '192.149.232.255', 2147483647, 2147483647, 'AT', 'Austria'), +('192.149.233.0', '192.149.233.255', 2147483647, 2147483647, 'US', 'United States'), +('192.149.235.0', '192.149.237.255', 2147483647, 2147483647, 'US', 'United States'), +('192.149.238.0', '192.149.238.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.149.239.0', '192.149.239.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('192.149.240.0', '192.150.56.255', 2147483647, 2147483647, 'US', 'United States'), +('192.150.58.0', '192.150.82.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('192.150.83.0', '192.150.83.255', 2147483647, 2147483647, 'EU', 'Europe'), +('192.150.84.0', '192.150.84.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('192.150.87.0', '192.150.88.255', 2147483647, 2147483647, 'US', 'United States'), +('192.150.89.0', '192.150.89.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.150.90.0', '192.150.91.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.150.92.0', '192.150.92.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.150.93.0', '192.150.93.255', 2147483647, 2147483647, 'US', 'United States'), +('192.150.94.0', '192.150.94.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('192.150.95.0', '192.150.95.255', 2147483647, 2147483647, 'US', 'United States'), +('192.150.96.0', '192.150.96.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.150.97.0', '192.150.103.255', 2147483647, 2147483647, 'US', 'United States'), +('192.150.104.0', '192.150.104.255', 2147483647, 2147483647, 'PL', 'Poland'), +('192.150.105.0', '192.150.105.255', 2147483647, 2147483647, 'US', 'United States'), +('192.150.106.0', '192.150.106.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.150.107.0', '192.150.107.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.150.108.0', '192.150.123.255', 2147483647, 2147483647, 'US', 'United States'), +('192.150.124.0', '192.150.124.255', 2147483647, 2147483647, 'NO', 'Norway'), +('192.150.125.0', '192.150.125.255', 2147483647, 2147483647, 'US', 'United States'), +('192.150.126.0', '192.150.126.255', 2147483647, 2147483647, 'GT', 'Guatemala'), +('192.150.127.0', '192.150.128.255', 2147483647, 2147483647, 'US', 'United States'), +('192.150.129.0', '192.150.139.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.150.140.0', '192.150.140.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.150.141.0', '192.150.141.255', 2147483647, 2147483647, 'US', 'United States'), +('192.150.143.0', '192.150.143.255', 2147483647, 2147483647, 'US', 'United States'), +('192.150.144.0', '192.150.144.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('192.150.145.0', '192.150.145.255', 2147483647, 2147483647, 'US', 'United States'), +('192.150.146.0', '192.150.146.255', 2147483647, 2147483647, 'IT', 'Italy'), +('192.150.147.0', '192.150.151.255', 2147483647, 2147483647, 'US', 'United States'), +('192.150.160.0', '192.150.176.255', 2147483647, 2147483647, 'US', 'United States'), +('192.150.177.0', '192.150.184.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.150.186.0', '192.150.187.255', 2147483647, 2147483647, 'US', 'United States'), +('192.150.188.0', '192.150.188.255', 2147483647, 2147483647, 'NO', 'Norway'), +('192.150.189.0', '192.150.190.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.150.191.0', '192.150.191.255', 2147483647, 2147483647, 'US', 'United States'), +('192.150.192.0', '192.150.193.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('192.150.194.0', '192.150.196.255', 2147483647, 2147483647, 'IT', 'Italy'), +('192.150.197.0', '192.150.197.255', 2147483647, 2147483647, 'NO', 'Norway'), +('192.150.198.0', '192.150.198.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.150.199.0', '192.150.199.255', 2147483647, 2147483647, 'US', 'United States'), +('192.150.200.0', '192.150.200.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.150.201.0', '192.150.201.255', 2147483647, 2147483647, 'US', 'United States'), +('192.150.202.0', '192.150.202.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.150.203.0', '192.150.203.255', 2147483647, 2147483647, 'AT', 'Austria'), +('192.150.204.0', '192.150.204.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.150.205.0', '192.150.205.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('192.150.206.0', '192.150.206.255', 2147483647, 2147483647, 'US', 'United States'), +('192.150.208.0', '192.150.208.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.150.209.0', '192.150.209.255', 2147483647, 2147483647, 'NO', 'Norway'), +('192.150.210.0', '192.150.210.255', 2147483647, 2147483647, 'US', 'United States'), +('192.150.212.0', '192.150.212.255', 2147483647, 2147483647, 'US', 'United States'), +('192.150.216.0', '192.150.217.255', 2147483647, 2147483647, 'US', 'United States'), +('192.150.218.0', '192.150.220.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('192.150.221.0', '192.150.222.255', 2147483647, 2147483647, 'US', 'United States'), +('192.150.223.0', '192.150.223.255', 2147483647, 2147483647, 'NO', 'Norway'), +('192.150.224.0', '192.150.226.255', 2147483647, 2147483647, 'US', 'United States'), +('192.150.227.0', '192.150.233.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.150.234.0', '192.150.237.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.150.238.0', '192.150.238.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('192.150.239.0', '192.150.243.255', 2147483647, 2147483647, 'US', 'United States'), +('192.150.245.0', '192.150.245.255', 2147483647, 2147483647, 'US', 'United States'), +('192.150.246.0', '192.150.246.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.150.247.0', '192.150.247.255', 2147483647, 2147483647, 'US', 'United States'), +('192.150.248.0', '192.150.248.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.150.249.0', '192.150.251.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('192.150.252.0', '192.150.252.255', 2147483647, 2147483647, 'NO', 'Norway'), +('192.150.253.0', '192.150.253.255', 2147483647, 2147483647, 'US', 'United States'), +('192.150.254.0', '192.150.254.255', 2147483647, 2147483647, 'NO', 'Norway'), +('192.151.0.0', '192.151.108.255', 2147483647, 2147483647, 'US', 'United States'), +('192.151.109.0', '192.151.109.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.151.110.0', '192.151.128.255', 2147483647, 2147483647, 'US', 'United States'), +('192.151.129.0', '192.151.129.255', 2147483647, 2147483647, 'IN', 'India'), +('192.152.0.0', '192.152.5.255', 2147483647, 2147483647, 'US', 'United States'), +('192.152.6.0', '192.152.6.255', 2147483647, 2147483647, 'NO', 'Norway'), +('192.152.7.0', '192.152.13.255', 2147483647, 2147483647, 'US', 'United States'), +('192.152.14.0', '192.152.14.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.152.15.0', '192.152.16.255', 2147483647, 2147483647, 'US', 'United States'), +('192.152.17.0', '192.152.17.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.152.18.0', '192.152.21.255', 2147483647, 2147483647, 'US', 'United States'), +('192.152.26.0', '192.152.27.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.152.28.0', '192.152.41.255', 2147483647, 2147483647, 'US', 'United States'), +('192.152.42.0', '192.152.42.255', 2147483647, 2147483647, 'FR', 'France'), +('192.152.43.0', '192.152.43.255', 2147483647, 2147483647, 'US', 'United States'), +('192.152.44.0', '192.152.44.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.152.45.0', '192.152.46.255', 2147483647, 2147483647, 'US', 'United States'), +('192.152.47.0', '192.152.47.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('192.152.48.0', '192.152.48.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.152.49.0', '192.152.51.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('192.152.52.0', '192.152.53.255', 2147483647, 2147483647, 'US', 'United States'), +('192.152.54.0', '192.152.54.255', 2147483647, 2147483647, 'AT', 'Austria'), +('192.152.55.0', '192.152.60.255', 2147483647, 2147483647, 'US', 'United States'), +('192.152.61.0', '192.152.62.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.152.63.0', '192.152.63.255', 2147483647, 2147483647, 'AT', 'Austria'), +('192.152.64.0', '192.152.67.255', 2147483647, 2147483647, 'US', 'United States'), +('192.152.68.0', '192.152.68.255', 2147483647, 2147483647, 'FI', 'Finland'), +('192.152.69.0', '192.152.69.255', 2147483647, 2147483647, 'JP', 'Japan'), +('192.152.70.0', '192.152.81.255', 2147483647, 2147483647, 'US', 'United States'), +('192.152.82.0', '192.152.82.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.152.83.0', '192.152.85.255', 2147483647, 2147483647, 'US', 'United States'), +('192.152.86.0', '192.152.87.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.152.88.0', '192.152.96.255', 2147483647, 2147483647, 'US', 'United States'), +('192.152.97.0', '192.152.97.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.152.98.0', '192.152.98.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('192.152.99.0', '192.152.106.255', 2147483647, 2147483647, 'US', 'United States'), +('192.152.107.0', '192.152.107.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.152.108.0', '192.152.109.255', 2147483647, 2147483647, 'US', 'United States'), +('192.152.111.0', '192.152.111.255', 2147483647, 2147483647, 'NO', 'Norway'), +('192.152.112.0', '192.152.112.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.152.113.0', '192.152.117.255', 2147483647, 2147483647, 'US', 'United States'), +('192.152.119.0', '192.152.119.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.152.120.0', '192.152.121.255', 2147483647, 2147483647, 'US', 'United States'), +('192.152.122.0', '192.152.122.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.152.123.0', '192.152.123.255', 2147483647, 2147483647, 'US', 'United States'), +('192.152.124.0', '192.152.124.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('192.152.125.0', '192.152.140.255', 2147483647, 2147483647, 'US', 'United States'), +('192.152.141.0', '192.152.141.255', 2147483647, 2147483647, 'IT', 'Italy'), +('192.152.142.0', '192.152.143.255', 2147483647, 2147483647, 'US', 'United States'), +('192.152.144.0', '192.152.144.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.152.145.0', '192.152.145.255', 2147483647, 2147483647, 'US', 'United States'), +('192.152.146.0', '192.152.146.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.152.147.0', '192.152.150.255', 2147483647, 2147483647, 'US', 'United States'), +('192.152.151.0', '192.152.151.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.152.154.0', '192.152.155.255', 2147483647, 2147483647, 'US', 'United States'), +('192.152.156.0', '192.152.156.255', 2147483647, 2147483647, 'GB', 'United Kingdom'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('192.152.159.0', '192.152.163.255', 2147483647, 2147483647, 'US', 'United States'), +('192.152.164.0', '192.152.164.255', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('192.152.165.0', '192.152.165.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.152.166.0', '192.152.166.255', 2147483647, 2147483647, 'IT', 'Italy'), +('192.152.167.0', '192.152.167.255', 2147483647, 2147483647, 'FR', 'France'), +('192.152.168.0', '192.152.173.255', 2147483647, 2147483647, 'US', 'United States'), +('192.152.174.0', '192.152.174.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('192.152.175.0', '192.152.183.255', 2147483647, 2147483647, 'US', 'United States'), +('192.152.184.0', '192.152.187.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.152.188.0', '192.152.191.255', 2147483647, 2147483647, 'US', 'United States'), +('192.152.194.0', '192.152.194.255', 2147483647, 2147483647, 'US', 'United States'), +('192.152.195.0', '192.152.195.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.152.196.0', '192.152.196.255', 2147483647, 2147483647, 'US', 'United States'), +('192.152.197.0', '192.152.197.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.152.198.0', '192.152.211.255', 2147483647, 2147483647, 'US', 'United States'), +('192.152.212.0', '192.152.212.255', 2147483647, 2147483647, 'JP', 'Japan'), +('192.152.215.0', '192.152.240.255', 2147483647, 2147483647, 'US', 'United States'), +('192.152.241.0', '192.152.241.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.152.242.0', '192.152.243.255', 2147483647, 2147483647, 'US', 'United States'), +('192.152.244.0', '192.152.244.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.152.245.0', '192.152.247.255', 2147483647, 2147483647, 'US', 'United States'), +('192.152.248.0', '192.152.248.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.152.249.0', '192.152.252.255', 2147483647, 2147483647, 'US', 'United States'), +('192.152.253.0', '192.152.253.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.152.254.0', '192.152.254.255', 2147483647, 2147483647, 'AT', 'Austria'), +('192.153.1.0', '192.153.1.255', 2147483647, 2147483647, 'US', 'United States'), +('192.153.2.0', '192.153.3.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.153.4.0', '192.153.8.255', 2147483647, 2147483647, 'US', 'United States'), +('192.153.9.0', '192.153.9.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.153.10.0', '192.153.11.255', 2147483647, 2147483647, 'US', 'United States'), +('192.153.12.0', '192.153.12.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.153.13.0', '192.153.13.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('192.153.14.0', '192.153.17.255', 2147483647, 2147483647, 'US', 'United States'), +('192.153.18.0', '192.153.19.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('192.153.20.0', '192.153.87.255', 2147483647, 2147483647, 'US', 'United States'), +('192.153.88.0', '192.153.88.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('192.153.89.0', '192.153.89.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('192.153.90.0', '192.153.92.255', 2147483647, 2147483647, 'US', 'United States'), +('192.153.93.0', '192.153.93.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.153.94.0', '192.153.94.255', 2147483647, 2147483647, 'US', 'United States'), +('192.153.95.0', '192.153.114.255', 2147483647, 2147483647, 'JP', 'Japan'), +('192.153.115.0', '192.153.115.255', 2147483647, 2147483647, 'US', 'United States'), +('192.153.116.0', '192.153.116.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('192.153.117.0', '192.153.118.255', 2147483647, 2147483647, 'US', 'United States'), +('192.153.119.0', '192.153.119.255', 2147483647, 2147483647, 'CL', 'Chile'), +('192.153.120.0', '192.153.120.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('192.153.121.0', '192.153.126.255', 2147483647, 2147483647, 'US', 'United States'), +('192.153.127.0', '192.153.127.255', 2147483647, 2147483647, 'PL', 'Poland'), +('192.153.128.0', '192.153.152.255', 2147483647, 2147483647, 'US', 'United States'), +('192.153.153.0', '192.153.153.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.153.154.0', '192.153.154.255', 2147483647, 2147483647, 'US', 'United States'), +('192.153.155.0', '192.153.155.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('192.153.156.0', '192.153.157.255', 2147483647, 2147483647, 'US', 'United States'), +('192.153.158.0', '192.153.158.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.153.159.0', '192.153.165.255', 2147483647, 2147483647, 'US', 'United States'), +('192.153.166.0', '192.153.166.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.153.167.0', '192.153.167.255', 2147483647, 2147483647, 'CR', 'Costa Rica'), +('192.153.168.0', '192.153.168.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('192.153.169.0', '192.153.170.255', 2147483647, 2147483647, 'US', 'United States'), +('192.153.171.0', '192.153.171.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('192.153.172.0', '192.153.172.255', 2147483647, 2147483647, 'US', 'United States'), +('192.153.173.0', '192.153.182.255', 2147483647, 2147483647, 'AT', 'Austria'), +('192.153.183.0', '192.153.183.255', 2147483647, 2147483647, 'US', 'United States'), +('192.153.187.0', '192.153.187.255', 2147483647, 2147483647, 'US', 'United States'), +('192.153.188.0', '192.153.188.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('192.153.189.0', '192.153.189.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.153.190.0', '192.153.193.255', 2147483647, 2147483647, 'US', 'United States'), +('192.153.194.0', '192.153.194.255', 2147483647, 2147483647, 'NO', 'Norway'), +('192.153.195.0', '192.153.195.255', 2147483647, 2147483647, 'US', 'United States'), +('192.153.196.0', '192.153.197.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.153.198.0', '192.153.212.255', 2147483647, 2147483647, 'US', 'United States'), +('192.153.213.0', '192.153.213.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.153.214.0', '192.153.216.255', 2147483647, 2147483647, 'US', 'United States'), +('192.153.217.0', '192.153.217.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.153.218.0', '192.153.219.255', 2147483647, 2147483647, 'US', 'United States'), +('192.153.220.0', '192.153.220.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.153.221.0', '192.153.228.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('192.153.229.0', '192.153.250.255', 2147483647, 2147483647, 'US', 'United States'), +('192.153.251.0', '192.153.251.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('192.153.252.0', '192.154.15.255', 2147483647, 2147483647, 'US', 'United States'), +('192.154.16.0', '192.154.31.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('192.154.32.0', '192.154.131.255', 2147483647, 2147483647, 'US', 'United States'), +('192.155.0.0', '192.155.7.255', 2147483647, 2147483647, 'NO', 'Norway'), +('192.155.8.0', '192.155.71.255', 2147483647, 2147483647, 'US', 'United States'), +('192.155.128.0', '192.155.159.255', 2147483647, 2147483647, 'US', 'United States'), +('192.156.0.0', '192.156.131.255', 2147483647, 2147483647, 'US', 'United States'), +('192.156.132.0', '192.156.132.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('192.156.133.0', '192.156.139.255', 2147483647, 2147483647, 'US', 'United States'), +('192.156.140.0', '192.156.159.255', 2147483647, 2147483647, 'JP', 'Japan'), +('192.156.160.0', '192.156.161.255', 2147483647, 2147483647, 'US', 'United States'), +('192.156.162.0', '192.156.162.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.156.163.0', '192.156.163.255', 2147483647, 2147483647, 'US', 'United States'), +('192.156.165.0', '192.156.165.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('192.156.166.0', '192.156.166.255', 2147483647, 2147483647, 'US', 'United States'), +('192.156.167.0', '192.156.167.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.156.168.0', '192.156.173.255', 2147483647, 2147483647, 'US', 'United States'), +('192.156.174.0', '192.156.174.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('192.156.175.0', '192.156.195.255', 2147483647, 2147483647, 'US', 'United States'), +('192.156.197.0', '192.156.198.255', 2147483647, 2147483647, 'US', 'United States'), +('192.156.199.0', '192.156.199.255', 2147483647, 2147483647, 'BM', 'Bermuda'), +('192.156.200.0', '192.156.206.255', 2147483647, 2147483647, 'US', 'United States'), +('192.156.207.0', '192.156.208.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.156.209.0', '192.156.209.255', 2147483647, 2147483647, 'US', 'United States'), +('192.156.210.0', '192.156.210.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('192.156.211.0', '192.156.212.255', 2147483647, 2147483647, 'US', 'United States'), +('192.156.213.0', '192.156.213.255', 2147483647, 2147483647, 'IT', 'Italy'), +('192.156.214.0', '192.156.215.255', 2147483647, 2147483647, 'US', 'United States'), +('192.156.217.0', '192.156.217.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.156.218.0', '192.156.219.255', 2147483647, 2147483647, 'US', 'United States'), +('192.156.220.0', '192.156.220.255', 2147483647, 2147483647, 'JP', 'Japan'), +('192.156.221.0', '192.156.224.255', 2147483647, 2147483647, 'US', 'United States'), +('192.156.225.0', '192.156.225.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('192.156.226.0', '192.156.226.255', 2147483647, 2147483647, 'US', 'United States'), +('192.156.227.0', '192.156.227.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('192.156.228.0', '192.156.231.255', 2147483647, 2147483647, 'US', 'United States'), +('192.156.234.0', '192.156.234.255', 2147483647, 2147483647, 'US', 'United States'), +('192.156.239.0', '192.156.239.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.156.240.0', '192.156.243.255', 2147483647, 2147483647, 'US', 'United States'), +('192.156.248.0', '192.156.248.255', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('192.156.249.0', '192.156.249.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.156.250.0', '192.156.250.255', 2147483647, 2147483647, 'US', 'United States'), +('192.156.252.0', '192.156.255.255', 2147483647, 2147483647, 'US', 'United States'), +('192.157.0.0', '192.157.3.255', 2147483647, 2147483647, 'NO', 'Norway'), +('192.157.4.0', '192.157.5.255', 2147483647, 2147483647, 'US', 'United States'), +('192.157.8.0', '192.157.17.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('192.157.31.0', '192.157.39.255', 2147483647, 2147483647, 'US', 'United States'), +('192.157.64.0', '192.157.79.255', 2147483647, 2147483647, 'US', 'United States'), +('192.157.128.0', '192.157.128.255', 2147483647, 2147483647, 'US', 'United States'), +('192.157.129.0', '192.157.129.255', 2147483647, 2147483647, 'NO', 'Norway'), +('192.157.130.0', '192.157.137.255', 2147483647, 2147483647, 'US', 'United States'), +('192.157.138.0', '192.157.138.255', 2147483647, 2147483647, 'JP', 'Japan'), +('192.157.139.0', '192.157.140.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.157.141.0', '192.157.141.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.157.142.0', '192.157.142.255', 2147483647, 2147483647, 'US', 'United States'), +('192.157.143.0', '192.157.145.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.157.146.0', '192.157.149.255', 2147483647, 2147483647, 'US', 'United States'), +('192.157.150.0', '192.157.152.255', 2147483647, 2147483647, 'JP', 'Japan'), +('192.157.153.0', '192.157.153.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('192.157.154.0', '192.157.158.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.157.159.0', '192.157.161.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.157.162.0', '192.157.162.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('192.157.163.0', '192.157.164.255', 2147483647, 2147483647, 'US', 'United States'), +('192.157.165.0', '192.157.165.255', 2147483647, 2147483647, 'AT', 'Austria'), +('192.157.166.0', '192.157.168.255', 2147483647, 2147483647, 'US', 'United States'), +('192.157.169.0', '192.157.170.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.157.171.0', '192.157.171.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.157.172.0', '192.157.172.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.157.173.0', '192.157.173.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.157.174.0', '192.157.174.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.157.175.0', '192.157.175.255', 2147483647, 2147483647, 'US', 'United States'), +('192.157.176.0', '192.157.176.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.157.177.0', '192.157.184.255', 2147483647, 2147483647, 'US', 'United States'), +('192.157.185.0', '192.157.185.255', 2147483647, 2147483647, 'IT', 'Italy'), +('192.157.186.0', '192.157.186.255', 2147483647, 2147483647, 'US', 'United States'), +('192.157.187.0', '192.157.187.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.157.188.0', '192.157.188.255', 2147483647, 2147483647, 'US', 'United States'), +('192.157.189.0', '192.157.189.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('192.157.190.0', '192.157.190.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('192.157.191.0', '192.157.191.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('192.158.0.0', '192.159.15.255', 2147483647, 2147483647, 'US', 'United States'), +('192.159.16.0', '192.159.31.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('192.159.32.0', '192.159.39.255', 2147483647, 2147483647, 'US', 'United States'), +('192.159.70.0', '192.159.70.255', 2147483647, 2147483647, 'FI', 'Finland'), +('192.159.71.0', '192.159.71.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.159.72.0', '192.159.72.255', 2147483647, 2147483647, 'US', 'United States'), +('192.159.73.0', '192.159.73.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.159.74.0', '192.159.76.255', 2147483647, 2147483647, 'US', 'United States'), +('192.159.77.0', '192.159.77.255', 2147483647, 2147483647, 'IT', 'Italy'), +('192.159.78.0', '192.159.83.255', 2147483647, 2147483647, 'US', 'United States'), +('192.159.84.0', '192.159.85.255', 2147483647, 2147483647, 'ES', 'Spain'), +('192.159.86.0', '192.159.89.255', 2147483647, 2147483647, 'US', 'United States'), +('192.159.90.0', '192.159.90.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('192.159.92.0', '192.159.92.255', 2147483647, 2147483647, 'US', 'United States'), +('192.159.94.0', '192.159.94.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.159.95.0', '192.159.95.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.159.96.0', '192.159.98.255', 2147483647, 2147483647, 'US', 'United States'), +('192.159.99.0', '192.159.103.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.159.104.0', '192.159.104.255', 2147483647, 2147483647, 'US', 'United States'), +('192.159.105.0', '192.159.105.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('192.159.106.0', '192.159.107.255', 2147483647, 2147483647, 'US', 'United States'), +('192.159.108.0', '192.159.108.255', 2147483647, 2147483647, 'NO', 'Norway'), +('192.159.109.0', '192.159.109.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('192.159.110.0', '192.159.110.255', 2147483647, 2147483647, 'US', 'United States'), +('192.159.111.0', '192.159.111.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.159.112.0', '192.159.115.255', 2147483647, 2147483647, 'US', 'United States'), +('192.159.116.0', '192.159.117.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('192.159.118.0', '192.159.118.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('192.159.121.0', '192.159.121.255', 2147483647, 2147483647, 'FR', 'France'), +('192.159.122.0', '192.159.122.255', 2147483647, 2147483647, 'FI', 'Finland'), +('192.159.128.0', '192.159.143.255', 2147483647, 2147483647, 'US', 'United States'), +('192.160.0.0', '192.160.6.255', 2147483647, 2147483647, 'US', 'United States'), +('192.160.7.0', '192.160.7.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.160.8.0', '192.160.9.255', 2147483647, 2147483647, 'US', 'United States'), +('192.160.10.0', '192.160.10.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('192.160.11.0', '192.160.14.255', 2147483647, 2147483647, 'US', 'United States'), +('192.160.15.0', '192.160.15.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('192.160.16.0', '192.160.16.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.160.17.0', '192.160.18.255', 2147483647, 2147483647, 'US', 'United States'), +('192.160.19.0', '192.160.19.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.160.20.0', '192.160.20.255', 2147483647, 2147483647, 'US', 'United States'), +('192.160.21.0', '192.160.21.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('192.160.22.0', '192.160.22.255', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('192.160.23.0', '192.160.23.255', 2147483647, 2147483647, 'NO', 'Norway'), +('192.160.25.0', '192.160.26.255', 2147483647, 2147483647, 'US', 'United States'), +('192.160.27.0', '192.160.27.255', 2147483647, 2147483647, 'IT', 'Italy'), +('192.160.28.0', '192.160.28.255', 2147483647, 2147483647, 'US', 'United States'), +('192.160.29.0', '192.160.29.255', 2147483647, 2147483647, 'PG', 'Papua New Guinea'), +('192.160.30.0', '192.160.32.255', 2147483647, 2147483647, 'US', 'United States'), +('192.160.33.0', '192.160.33.255', 2147483647, 2147483647, 'ES', 'Spain'), +('192.160.35.0', '192.160.36.255', 2147483647, 2147483647, 'US', 'United States'), +('192.160.37.0', '192.160.37.255', 2147483647, 2147483647, 'IT', 'Italy'), +('192.160.38.0', '192.160.44.255', 2147483647, 2147483647, 'US', 'United States'), +('192.160.45.0', '192.160.45.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('192.160.46.0', '192.160.47.255', 2147483647, 2147483647, 'US', 'United States'), +('192.160.49.0', '192.160.49.255', 2147483647, 2147483647, 'US', 'United States'), +('192.160.50.0', '192.160.50.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('192.160.51.0', '192.160.64.255', 2147483647, 2147483647, 'US', 'United States'), +('192.160.65.0', '192.160.65.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.160.67.0', '192.160.67.255', 2147483647, 2147483647, 'AT', 'Austria'), +('192.160.68.0', '192.160.70.255', 2147483647, 2147483647, 'US', 'United States'), +('192.160.71.0', '192.160.71.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.160.72.0', '192.160.94.255', 2147483647, 2147483647, 'US', 'United States'), +('192.160.95.0', '192.160.96.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('192.160.97.0', '192.160.108.255', 2147483647, 2147483647, 'US', 'United States'), +('192.160.109.0', '192.160.109.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.160.110.0', '192.160.110.255', 2147483647, 2147483647, 'PL', 'Poland'), +('192.160.111.0', '192.160.111.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('192.160.112.0', '192.160.122.255', 2147483647, 2147483647, 'US', 'United States'), +('192.160.123.0', '192.160.123.255', 2147483647, 2147483647, 'FR', 'France'), +('192.160.124.0', '192.160.125.255', 2147483647, 2147483647, 'US', 'United States'), +('192.160.126.0', '192.160.126.255', 2147483647, 2147483647, 'NO', 'Norway'), +('192.160.127.0', '192.160.127.255', 2147483647, 2147483647, 'US', 'United States'), +('192.160.128.0', '192.160.128.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('192.160.129.0', '192.160.141.255', 2147483647, 2147483647, 'US', 'United States'), +('192.160.142.0', '192.160.142.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.160.143.0', '192.160.143.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.160.144.0', '192.160.151.255', 2147483647, 2147483647, 'US', 'United States'), +('192.160.152.0', '192.160.152.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('192.160.153.0', '192.160.154.255', 2147483647, 2147483647, 'US', 'United States'), +('192.160.155.0', '192.160.155.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.160.156.0', '192.160.156.255', 2147483647, 2147483647, 'IT', 'Italy'), +('192.160.157.0', '192.160.159.255', 2147483647, 2147483647, 'US', 'United States'), +('192.160.160.0', '192.160.160.255', 2147483647, 2147483647, 'IT', 'Italy'), +('192.160.161.0', '192.160.161.255', 2147483647, 2147483647, 'JP', 'Japan'), +('192.160.162.0', '192.160.166.255', 2147483647, 2147483647, 'US', 'United States'), +('192.160.167.0', '192.160.167.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.160.168.0', '192.160.168.255', 2147483647, 2147483647, 'US', 'United States'), +('192.160.169.0', '192.160.171.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.160.172.0', '192.160.172.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('192.160.173.0', '192.160.173.255', 2147483647, 2147483647, 'US', 'United States'), +('192.160.174.0', '192.160.176.255', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('192.160.177.0', '192.160.179.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.160.180.0', '192.160.187.255', 2147483647, 2147483647, 'US', 'United States'), +('192.160.188.0', '192.160.188.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('192.160.189.0', '192.160.193.255', 2147483647, 2147483647, 'US', 'United States'), +('192.160.194.0', '192.160.195.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.160.196.0', '192.160.204.255', 2147483647, 2147483647, 'US', 'United States'), +('192.160.205.0', '192.160.205.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.160.206.0', '192.160.223.255', 2147483647, 2147483647, 'US', 'United States'), +('192.160.224.0', '192.160.224.255', 2147483647, 2147483647, 'EU', 'Europe'), +('192.160.225.0', '192.160.225.255', 2147483647, 2147483647, 'NO', 'Norway'), +('192.160.226.0', '192.160.226.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('192.160.227.0', '192.160.228.255', 2147483647, 2147483647, 'US', 'United States'), +('192.160.229.0', '192.160.229.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.160.230.0', '192.160.230.255', 2147483647, 2147483647, 'US', 'United States'), +('192.160.231.0', '192.160.232.255', 2147483647, 2147483647, 'AT', 'Austria'), +('192.160.233.0', '192.160.233.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('192.160.234.0', '192.160.244.255', 2147483647, 2147483647, 'US', 'United States'), +('192.160.245.0', '192.160.251.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('192.160.252.0', '192.160.252.255', 2147483647, 2147483647, 'IL', 'Israel'), +('192.160.253.0', '192.160.254.255', 2147483647, 2147483647, 'US', 'United States'), +('192.161.0.0', '192.161.63.255', 2147483647, 2147483647, 'US', 'United States'), +('192.161.64.0', '192.161.65.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('192.161.128.0', '192.161.129.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('192.162.0.0', '192.162.15.255', 2147483647, 2147483647, 'EU', 'Europe'), +('192.162.16.0', '192.162.16.255', 2147483647, 2147483647, 'RO', 'Romania'), +('192.162.17.0', '192.162.255.255', 2147483647, 2147483647, 'EU', 'Europe'), +('192.163.0.0', '192.163.31.255', 2147483647, 2147483647, 'US', 'United States'), +('192.163.32.0', '192.163.159.255', 2147483647, 2147483647, 'FI', 'Finland'), +('192.164.0.0', '192.164.255.255', 2147483647, 2147483647, 'AT', 'Austria'), +('192.165.0.0', '192.165.209.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('192.165.210.0', '192.165.211.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.165.212.0', '192.165.212.255', 2147483647, 2147483647, 'US', 'United States'), +('192.165.213.0', '192.165.215.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.165.216.0', '192.165.217.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('192.165.218.0', '192.165.219.255', 2147483647, 2147483647, 'US', 'United States'), +('192.165.220.0', '192.165.223.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.165.224.0', '192.165.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('192.166.0.0', '192.166.11.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.166.12.0', '192.166.15.255', 2147483647, 2147483647, 'EU', 'Europe'), +('192.166.16.0', '192.166.95.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.166.96.0', '192.166.103.255', 2147483647, 2147483647, 'EU', 'Europe'), +('192.166.104.0', '192.166.111.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.166.112.0', '192.166.113.255', 2147483647, 2147483647, 'EU', 'Europe'), +('192.166.114.0', '192.166.115.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.166.116.0', '192.166.145.255', 2147483647, 2147483647, 'EU', 'Europe'), +('192.166.146.0', '192.166.201.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.166.202.0', '192.166.203.255', 2147483647, 2147483647, 'EU', 'Europe'), +('192.166.204.0', '192.166.215.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.166.216.0', '192.166.219.255', 2147483647, 2147483647, 'EU', 'Europe'), +('192.166.220.0', '192.166.231.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.166.232.0', '192.166.239.255', 2147483647, 2147483647, 'EU', 'Europe'), +('192.166.240.0', '192.166.254.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.166.255.0', '192.166.255.255', 2147483647, 2147483647, 'EU', 'Europe'), +('192.167.0.0', '192.167.255.255', 2147483647, 2147483647, 'IT', 'Italy'), +('192.169.0.0', '192.169.31.255', 2147483647, 2147483647, 'US', 'United States'), +('192.169.32.0', '192.169.47.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('192.169.64.0', '192.169.65.255', 2147483647, 2147483647, 'US', 'United States'), +('192.170.0.0', '192.170.57.255', 2147483647, 2147483647, 'US', 'United States'), +('192.170.58.0', '192.170.60.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.170.61.0', '192.170.128.255', 2147483647, 2147483647, 'US', 'United States'), +('192.171.0.0', '192.171.5.255', 2147483647, 2147483647, 'EU', 'Europe'), +('192.171.7.0', '192.171.17.255', 2147483647, 2147483647, 'US', 'United States'), +('192.171.64.0', '192.171.127.255', 2147483647, 2147483647, 'US', 'United States'), +('192.171.128.0', '192.171.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.172.0.0', '192.172.223.255', 2147483647, 2147483647, 'US', 'United States'), +('192.172.225.0', '192.172.226.255', 2147483647, 2147483647, 'US', 'United States'), +('192.172.227.0', '192.172.246.255', 2147483647, 2147483647, 'JP', 'Japan'), +('192.172.247.0', '192.172.249.255', 2147483647, 2147483647, 'US', 'United States'), +('192.172.250.0', '192.172.250.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.172.251.0', '192.172.252.255', 2147483647, 2147483647, 'US', 'United States'), +('192.172.253.0', '192.172.253.255', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('192.172.254.0', '192.172.254.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.173.0.0', '192.173.7.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.173.8.0', '192.173.15.255', 2147483647, 2147483647, 'US', 'United States'), +('192.173.16.0', '192.173.31.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('192.173.32.0', '192.173.63.255', 2147483647, 2147483647, 'US', 'United States'), +('192.173.128.0', '192.173.135.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.174.0.0', '192.174.63.255', 2147483647, 2147483647, 'US', 'United States'), +('192.174.64.0', '192.174.71.255', 2147483647, 2147483647, 'AT', 'Austria'), +('192.174.128.0', '192.174.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('192.175.0.0', '192.175.31.255', 2147483647, 2147483647, 'US', 'United States'), +('192.175.32.0', '192.175.47.255', 2147483647, 2147483647, 'FI', 'Finland'), +('192.175.48.0', '192.175.48.255', 2147483647, 2147483647, 'US', 'United States'), +('192.175.64.0', '192.175.95.255', 2147483647, 2147483647, 'US', 'United States'), +('192.175.128.0', '192.175.255.255', 2147483647, 2147483647, 'US', 'United States'), +('192.176.0.0', '192.176.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('192.184.4.0', '192.184.4.255', 2147483647, 2147483647, 'US', 'United States'), +('192.187.0.0', '192.187.15.255', 2147483647, 2147483647, 'US', 'United States'), +('192.187.16.0', '192.187.31.255', 2147483647, 2147483647, 'ES', 'Spain'), +('192.187.32.0', '192.187.95.255', 2147483647, 2147483647, 'US', 'United States'), +('192.187.128.0', '192.188.7.255', 2147483647, 2147483647, 'US', 'United States'), +('192.188.10.0', '192.188.10.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('192.188.11.0', '192.188.11.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('192.188.12.0', '192.188.42.255', 2147483647, 2147483647, 'US', 'United States'), +('192.188.43.0', '192.188.43.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('192.188.44.0', '192.188.60.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('192.188.61.0', '192.188.62.255', 2147483647, 2147483647, 'US', 'United States'), +('192.188.63.0', '192.188.64.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.188.65.0', '192.188.65.255', 2147483647, 2147483647, 'FR', 'France'), +('192.188.66.0', '192.188.68.255', 2147483647, 2147483647, 'US', 'United States'), +('192.188.69.0', '192.188.69.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.188.70.0', '192.188.70.255', 2147483647, 2147483647, 'US', 'United States'), +('192.188.71.0', '192.188.71.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('192.188.72.0', '192.188.72.255', 2147483647, 2147483647, 'US', 'United States'), +('192.188.73.0', '192.188.92.255', 2147483647, 2147483647, 'JP', 'Japan'), +('192.188.93.0', '192.188.94.255', 2147483647, 2147483647, 'US', 'United States'), +('192.188.96.0', '192.188.96.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.188.97.0', '192.188.100.255', 2147483647, 2147483647, 'US', 'United States'), +('192.188.101.0', '192.188.101.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.188.102.0', '192.188.104.255', 2147483647, 2147483647, 'US', 'United States'), +('192.188.105.0', '192.188.105.255', 2147483647, 2147483647, 'NO', 'Norway'), +('192.188.106.0', '192.188.106.255', 2147483647, 2147483647, 'US', 'United States'), +('192.188.107.0', '192.188.107.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.188.108.0', '192.188.114.255', 2147483647, 2147483647, 'US', 'United States'), +('192.188.115.0', '192.188.115.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.188.116.0', '192.188.116.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('192.188.117.0', '192.188.117.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.188.118.0', '192.188.120.255', 2147483647, 2147483647, 'US', 'United States'), +('192.188.121.0', '192.188.121.255', 2147483647, 2147483647, 'AT', 'Austria'), +('192.188.122.0', '192.188.122.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.188.124.0', '192.188.124.255', 2147483647, 2147483647, 'US', 'United States'), +('192.188.125.0', '192.188.125.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.188.126.0', '192.188.126.255', 2147483647, 2147483647, 'US', 'United States'), +('192.188.127.0', '192.188.127.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('192.188.128.0', '192.188.128.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.188.129.0', '192.188.129.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.188.130.0', '192.188.131.255', 2147483647, 2147483647, 'US', 'United States'), +('192.188.132.0', '192.188.132.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.188.133.0', '192.188.135.255', 2147483647, 2147483647, 'US', 'United States'), +('192.188.136.0', '192.188.136.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.188.137.0', '192.188.144.255', 2147483647, 2147483647, 'US', 'United States'), +('192.188.145.0', '192.188.145.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.188.146.0', '192.188.150.255', 2147483647, 2147483647, 'US', 'United States'), +('192.188.151.0', '192.188.151.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.188.152.0', '192.188.156.255', 2147483647, 2147483647, 'US', 'United States'), +('192.188.157.0', '192.188.158.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.188.159.0', '192.188.163.255', 2147483647, 2147483647, 'US', 'United States'), +('192.188.164.0', '192.188.167.255', 2147483647, 2147483647, 'GA', 'Gabon'), +('192.188.168.0', '192.188.169.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.188.170.0', '192.188.170.255', 2147483647, 2147483647, 'CN', 'China'), +('192.188.171.0', '192.188.171.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('192.188.172.0', '192.188.172.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('192.188.173.0', '192.188.173.255', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('192.188.174.0', '192.188.174.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('192.188.175.0', '192.188.175.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('192.188.176.0', '192.188.184.255', 2147483647, 2147483647, 'US', 'United States'), +('192.188.185.0', '192.188.185.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('192.188.186.0', '192.188.186.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.188.187.0', '192.188.187.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('192.188.188.0', '192.188.188.255', 2147483647, 2147483647, 'US', 'United States'), +('192.188.189.0', '192.188.189.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('192.188.190.0', '192.188.193.255', 2147483647, 2147483647, 'US', 'United States'), +('192.188.194.0', '192.188.197.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('192.188.198.0', '192.188.232.255', 2147483647, 2147483647, 'US', 'United States'), +('192.188.233.0', '192.188.237.255', 2147483647, 2147483647, 'PL', 'Poland'), +('192.188.238.0', '192.188.240.255', 2147483647, 2147483647, 'US', 'United States'), +('192.188.241.0', '192.188.241.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('192.188.242.0', '192.188.247.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('192.188.248.0', '192.188.248.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('192.188.249.0', '192.188.250.255', 2147483647, 2147483647, 'US', 'United States'), +('192.188.252.0', '192.188.255.255', 2147483647, 2147483647, 'US', 'United States'), +('192.189.1.0', '192.189.1.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.189.3.0', '192.189.7.255', 2147483647, 2147483647, 'US', 'United States'), +('192.189.8.0', '192.189.11.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.189.13.0', '192.189.13.255', 2147483647, 2147483647, 'US', 'United States'), +('192.189.14.0', '192.189.14.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.189.15.0', '192.189.20.255', 2147483647, 2147483647, 'US', 'United States'), +('192.189.22.0', '192.189.22.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.189.23.0', '192.189.23.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.189.24.0', '192.189.24.255', 2147483647, 2147483647, 'JP', 'Japan'), +('192.189.30.0', '192.189.33.255', 2147483647, 2147483647, 'US', 'United States'), +('192.189.34.0', '192.189.34.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('192.189.35.0', '192.189.35.255', 2147483647, 2147483647, 'US', 'United States'), +('192.189.41.0', '192.189.41.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.189.42.0', '192.189.50.255', 2147483647, 2147483647, 'US', 'United States'), +('192.189.51.0', '192.189.51.255', 2147483647, 2147483647, 'AT', 'Austria'), +('192.189.52.0', '192.189.52.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.189.53.0', '192.189.53.255', 2147483647, 2147483647, 'US', 'United States'), +('192.189.54.0', '192.189.54.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.189.55.0', '192.189.55.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.189.56.0', '192.189.65.255', 2147483647, 2147483647, 'US', 'United States'), +('192.189.66.0', '192.189.66.255', 2147483647, 2147483647, 'FR', 'France'), +('192.189.67.0', '192.189.68.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.189.69.0', '192.189.69.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.189.70.0', '192.189.70.255', 2147483647, 2147483647, 'IL', 'Israel'), +('192.189.71.0', '192.189.72.255', 2147483647, 2147483647, 'US', 'United States'), +('192.189.73.0', '192.189.73.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('192.189.74.0', '192.189.74.255', 2147483647, 2147483647, 'US', 'United States'), +('192.189.75.0', '192.189.75.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('192.189.76.0', '192.189.76.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.189.77.0', '192.189.77.255', 2147483647, 2147483647, 'US', 'United States'), +('192.189.79.0', '192.189.93.255', 2147483647, 2147483647, 'US', 'United States'), +('192.189.94.0', '192.189.94.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.189.95.0', '192.189.118.255', 2147483647, 2147483647, 'US', 'United States'), +('192.189.119.0', '192.189.119.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.189.120.0', '192.189.135.255', 2147483647, 2147483647, 'US', 'United States'), +('192.189.136.0', '192.189.136.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.189.137.0', '192.189.138.255', 2147483647, 2147483647, 'US', 'United States'), +('192.189.139.0', '192.189.140.255', 2147483647, 2147483647, 'GA', 'Gabon'), +('192.189.141.0', '192.189.147.255', 2147483647, 2147483647, 'US', 'United States'), +('192.189.148.0', '192.189.148.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.189.149.0', '192.189.150.255', 2147483647, 2147483647, 'US', 'United States'), +('192.189.151.0', '192.189.151.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.189.154.0', '192.189.154.255', 2147483647, 2147483647, 'IT', 'Italy'), +('192.189.155.0', '192.189.156.255', 2147483647, 2147483647, 'US', 'United States'), +('192.189.157.0', '192.189.157.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.189.158.0', '192.189.158.255', 2147483647, 2147483647, 'US', 'United States'), +('192.189.159.0', '192.189.159.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.189.160.0', '192.189.160.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.189.161.0', '192.189.165.255', 2147483647, 2147483647, 'US', 'United States'), +('192.189.166.0', '192.189.170.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.189.171.0', '192.189.199.255', 2147483647, 2147483647, 'US', 'United States'), +('192.189.202.0', '192.189.203.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.189.204.0', '192.189.207.255', 2147483647, 2147483647, 'US', 'United States'), +('192.189.208.0', '192.189.211.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.189.212.0', '192.189.222.255', 2147483647, 2147483647, 'US', 'United States'), +('192.189.223.0', '192.189.223.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('192.189.224.0', '192.189.228.255', 2147483647, 2147483647, 'US', 'United States'), +('192.189.229.0', '192.189.233.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.189.234.0', '192.189.247.255', 2147483647, 2147483647, 'US', 'United States'), +('192.189.249.0', '192.189.250.255', 2147483647, 2147483647, 'US', 'United States'), +('192.189.251.0', '192.189.251.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.189.252.0', '192.190.29.255', 2147483647, 2147483647, 'US', 'United States'), +('192.190.30.0', '192.190.31.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('192.190.32.0', '192.190.41.255', 2147483647, 2147483647, 'US', 'United States'), +('192.190.44.0', '192.190.44.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.190.45.0', '192.190.57.255', 2147483647, 2147483647, 'US', 'United States'), +('192.190.58.0', '192.190.59.255', 2147483647, 2147483647, 'NO', 'Norway'), +('192.190.60.0', '192.190.60.255', 2147483647, 2147483647, 'US', 'United States'), +('192.190.61.0', '192.190.61.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.190.62.0', '192.190.63.255', 2147483647, 2147483647, 'US', 'United States'), +('192.190.64.0', '192.190.64.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.190.65.0', '192.190.65.255', 2147483647, 2147483647, 'US', 'United States'), +('192.190.66.0', '192.190.66.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.190.67.0', '192.190.67.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.190.68.0', '192.190.68.255', 2147483647, 2147483647, 'US', 'United States'), +('192.190.69.0', '192.190.69.255', 2147483647, 2147483647, 'FR', 'France'), +('192.190.70.0', '192.190.74.255', 2147483647, 2147483647, 'US', 'United States'), +('192.190.75.0', '192.190.75.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.190.76.0', '192.190.79.255', 2147483647, 2147483647, 'US', 'United States'), +('192.190.95.0', '192.190.95.255', 2147483647, 2147483647, 'NO', 'Norway'), +('192.190.96.0', '192.190.107.255', 2147483647, 2147483647, 'US', 'United States'), +('192.190.108.0', '192.190.108.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('192.190.109.0', '192.190.128.255', 2147483647, 2147483647, 'US', 'United States'), +('192.190.129.0', '192.190.132.255', 2147483647, 2147483647, 'FR', 'France'), +('192.190.133.0', '192.190.172.255', 2147483647, 2147483647, 'US', 'United States'), +('192.190.173.0', '192.190.173.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('192.190.174.0', '192.190.174.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('192.190.175.0', '192.190.179.255', 2147483647, 2147483647, 'US', 'United States'), +('192.190.180.0', '192.190.181.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.190.182.0', '192.190.183.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.190.184.0', '192.190.187.255', 2147483647, 2147483647, 'US', 'United States'), +('192.190.190.0', '192.190.193.255', 2147483647, 2147483647, 'NO', 'Norway'), +('192.190.194.0', '192.190.200.255', 2147483647, 2147483647, 'US', 'United States'), +('192.190.201.0', '192.190.202.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.190.203.0', '192.190.203.255', 2147483647, 2147483647, 'US', 'United States'), +('192.190.204.0', '192.190.205.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('192.190.208.0', '192.190.215.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.190.216.0', '192.190.219.255', 2147483647, 2147483647, 'US', 'United States'), +('192.190.224.0', '192.190.232.255', 2147483647, 2147483647, 'US', 'United States'), +('192.190.233.0', '192.190.236.255', 2147483647, 2147483647, 'FR', 'France'), +('192.190.237.0', '192.190.239.255', 2147483647, 2147483647, 'US', 'United States'), +('192.190.240.0', '192.190.240.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.190.241.0', '192.190.241.255', 2147483647, 2147483647, 'US', 'United States'), +('192.190.242.0', '192.190.242.255', 2147483647, 2147483647, 'FR', 'France'), +('192.190.243.0', '192.190.246.255', 2147483647, 2147483647, 'US', 'United States'), +('192.190.247.0', '192.190.249.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.190.250.0', '192.191.1.255', 2147483647, 2147483647, 'US', 'United States'), +('192.191.2.0', '192.191.2.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.191.3.0', '192.191.5.255', 2147483647, 2147483647, 'US', 'United States'), +('192.191.6.0', '192.191.6.255', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('192.191.7.0', '192.191.10.255', 2147483647, 2147483647, 'US', 'United States'), +('192.191.11.0', '192.191.11.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.191.12.0', '192.191.15.255', 2147483647, 2147483647, 'US', 'United States'), +('192.191.16.0', '192.191.16.255', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('192.191.17.0', '192.191.22.255', 2147483647, 2147483647, 'US', 'United States'), +('192.191.23.0', '192.191.23.255', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('192.191.24.0', '192.191.25.255', 2147483647, 2147483647, 'US', 'United States'), +('192.191.26.0', '192.191.27.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.191.28.0', '192.191.38.255', 2147483647, 2147483647, 'US', 'United States'), +('192.191.39.0', '192.191.39.255', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('192.191.40.0', '192.191.78.255', 2147483647, 2147483647, 'US', 'United States'), +('192.191.79.0', '192.191.79.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.191.80.0', '192.191.89.255', 2147483647, 2147483647, 'US', 'United States'), +('192.191.90.0', '192.191.90.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.191.91.0', '192.191.99.255', 2147483647, 2147483647, 'US', 'United States'), +('192.191.100.0', '192.191.100.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.191.101.0', '192.191.101.255', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('192.191.102.0', '192.191.137.255', 2147483647, 2147483647, 'US', 'United States'), +('192.191.138.0', '192.191.138.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.191.139.0', '192.191.142.255', 2147483647, 2147483647, 'US', 'United States'), +('192.191.143.0', '192.191.143.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.191.144.0', '192.191.150.255', 2147483647, 2147483647, 'US', 'United States'), +('192.191.151.0', '192.191.151.255', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('192.191.152.0', '192.191.159.255', 2147483647, 2147483647, 'US', 'United States'), +('192.191.160.0', '192.191.160.255', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('192.191.161.0', '192.191.161.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.191.162.0', '192.191.168.255', 2147483647, 2147483647, 'US', 'United States'), +('192.191.169.0', '192.191.169.255', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('192.191.170.0', '192.191.184.255', 2147483647, 2147483647, 'US', 'United States'), +('192.191.185.0', '192.191.185.255', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('192.191.186.0', '192.191.186.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.191.187.0', '192.191.187.255', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('192.191.188.0', '192.191.188.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.191.189.0', '192.191.189.255', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('192.191.190.0', '192.191.195.255', 2147483647, 2147483647, 'US', 'United States'), +('192.191.196.0', '192.191.196.255', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('192.191.197.0', '192.191.199.255', 2147483647, 2147483647, 'US', 'United States'), +('192.191.200.0', '192.191.200.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.191.201.0', '192.191.216.255', 2147483647, 2147483647, 'US', 'United States'), +('192.191.217.0', '192.191.217.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.191.218.0', '192.191.224.255', 2147483647, 2147483647, 'US', 'United States'), +('192.191.225.0', '192.191.225.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.191.226.0', '192.191.226.255', 2147483647, 2147483647, 'US', 'United States'), +('192.191.227.0', '192.191.227.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.191.228.0', '192.191.230.255', 2147483647, 2147483647, 'US', 'United States'), +('192.191.231.0', '192.191.231.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.191.232.0', '192.191.232.255', 2147483647, 2147483647, 'US', 'United States'), +('192.191.233.0', '192.191.233.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.191.234.0', '192.191.234.255', 2147483647, 2147483647, 'US', 'United States'), +('192.191.235.0', '192.191.235.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.191.236.0', '192.191.236.255', 2147483647, 2147483647, 'US', 'United States'), +('192.191.237.0', '192.191.237.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.191.238.0', '192.191.255.255', 2147483647, 2147483647, 'US', 'United States'), +('192.192.0.0', '192.192.255.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('192.193.0.0', '192.193.255.255', 2147483647, 2147483647, 'US', 'United States'), +('192.194.0.0', '192.194.160.255', 2147483647, 2147483647, 'FI', 'Finland'), +('192.194.161.0', '192.194.161.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.194.162.0', '192.194.201.255', 2147483647, 2147483647, 'FI', 'Finland'), +('192.194.202.0', '192.194.202.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.194.203.0', '192.194.214.111', 2147483647, 2147483647, 'FI', 'Finland'), +('192.194.214.112', '192.194.214.127', 2147483647, 2147483647, 'AX', 'Aland Islands'), +('192.194.214.128', '192.194.243.75', 2147483647, 2147483647, 'FI', 'Finland'), +('192.194.243.76', '192.194.243.79', 2147483647, 2147483647, 'AX', 'Aland Islands'), +('192.194.243.80', '192.194.255.255', 2147483647, 2147483647, 'FI', 'Finland'), +('192.195.1.0', '192.195.1.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.195.2.0', '192.195.2.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.195.6.0', '192.195.7.255', 2147483647, 2147483647, 'US', 'United States'), +('192.195.8.0', '192.195.8.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('192.195.9.0', '192.195.9.255', 2147483647, 2147483647, 'US', 'United States'), +('192.195.10.0', '192.195.10.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.195.11.0', '192.195.11.255', 2147483647, 2147483647, 'US', 'United States'), +('192.195.12.0', '192.195.14.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('192.195.15.0', '192.195.31.255', 2147483647, 2147483647, 'US', 'United States'), +('192.195.33.0', '192.195.33.255', 2147483647, 2147483647, 'US', 'United States'), +('192.195.34.0', '192.195.34.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.195.35.0', '192.195.35.255', 2147483647, 2147483647, 'US', 'United States'), +('192.195.37.0', '192.195.38.255', 2147483647, 2147483647, 'US', 'United States'), +('192.195.39.0', '192.195.40.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('192.195.41.0', '192.195.41.255', 2147483647, 2147483647, 'US', 'United States'), +('192.195.42.0', '192.195.42.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('192.195.43.0', '192.195.43.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.195.44.0', '192.195.55.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.195.56.0', '192.195.57.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('192.195.58.0', '192.195.71.255', 2147483647, 2147483647, 'US', 'United States'), +('192.195.72.0', '192.195.72.255', 2147483647, 2147483647, 'PL', 'Poland'), +('192.195.73.0', '192.195.76.255', 2147483647, 2147483647, 'US', 'United States'), +('192.195.80.0', '192.195.97.255', 2147483647, 2147483647, 'US', 'United States'), +('192.195.98.0', '192.195.98.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.195.99.0', '192.195.101.255', 2147483647, 2147483647, 'US', 'United States'), +('192.195.102.0', '192.195.102.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.195.103.0', '192.195.104.255', 2147483647, 2147483647, 'US', 'United States'), +('192.195.105.0', '192.195.105.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.195.106.0', '192.195.106.255', 2147483647, 2147483647, 'PL', 'Poland'), +('192.195.107.0', '192.195.108.255', 2147483647, 2147483647, 'US', 'United States'), +('192.195.110.0', '192.195.110.255', 2147483647, 2147483647, 'IT', 'Italy'), +('192.195.111.0', '192.195.111.255', 2147483647, 2147483647, 'US', 'United States'), +('192.195.112.0', '192.195.112.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.195.113.0', '192.195.115.255', 2147483647, 2147483647, 'US', 'United States'), +('192.195.116.0', '192.195.118.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.195.119.0', '192.195.133.255', 2147483647, 2147483647, 'US', 'United States'), +('192.195.134.0', '192.195.148.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('192.195.149.0', '192.195.151.255', 2147483647, 2147483647, 'US', 'United States'), +('192.195.152.0', '192.195.152.255', 2147483647, 2147483647, 'AU', 'Australia'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('192.195.153.0', '192.195.169.255', 2147483647, 2147483647, 'US', 'United States'), +('192.195.170.0', '192.195.170.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.195.171.0', '192.195.182.255', 2147483647, 2147483647, 'US', 'United States'), +('192.195.183.0', '192.195.183.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('192.195.184.0', '192.195.184.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.195.185.0', '192.195.185.255', 2147483647, 2147483647, 'US', 'United States'), +('192.195.186.0', '192.195.186.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('192.195.187.0', '192.195.194.255', 2147483647, 2147483647, 'US', 'United States'), +('192.195.195.0', '192.195.195.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('192.195.196.0', '192.195.196.255', 2147483647, 2147483647, 'US', 'United States'), +('192.195.197.0', '192.195.197.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.195.198.0', '192.195.218.255', 2147483647, 2147483647, 'US', 'United States'), +('192.195.219.0', '192.195.219.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('192.195.220.0', '192.195.232.255', 2147483647, 2147483647, 'US', 'United States'), +('192.195.233.0', '192.195.233.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.195.234.0', '192.195.235.255', 2147483647, 2147483647, 'US', 'United States'), +('192.195.236.0', '192.195.236.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.195.237.0', '192.195.237.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('192.195.238.0', '192.195.255.255', 2147483647, 2147483647, 'US', 'United States'), +('192.196.0.0', '192.196.255.255', 2147483647, 2147483647, 'FR', 'France'), +('192.197.0.0', '192.197.106.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.197.107.0', '192.197.107.255', 2147483647, 2147483647, 'US', 'United States'), +('192.197.108.0', '192.197.143.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.197.144.0', '192.197.147.255', 2147483647, 2147483647, 'US', 'United States'), +('192.197.148.0', '192.197.155.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.197.156.0', '192.197.160.255', 2147483647, 2147483647, 'US', 'United States'), +('192.197.161.0', '192.197.198.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.197.199.0', '192.197.200.255', 2147483647, 2147483647, 'US', 'United States'), +('192.197.201.0', '192.197.212.127', 2147483647, 2147483647, 'CA', 'Canada'), +('192.197.212.128', '192.197.213.127', 2147483647, 2147483647, 'A1', 'Anonymous Proxy'), +('192.197.213.128', '192.197.219.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.197.220.0', '192.197.224.255', 2147483647, 2147483647, 'US', 'United States'), +('192.197.225.0', '192.197.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.198.4.0', '192.198.7.255', 2147483647, 2147483647, 'US', 'United States'), +('192.198.8.0', '192.198.15.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('192.198.16.0', '192.198.79.255', 2147483647, 2147483647, 'US', 'United States'), +('192.198.128.0', '192.198.191.255', 2147483647, 2147483647, 'US', 'United States'), +('192.199.0.0', '192.199.15.255', 2147483647, 2147483647, 'US', 'United States'), +('192.199.16.0', '192.199.31.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('192.199.32.0', '192.199.47.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.199.64.0', '192.199.191.255', 2147483647, 2147483647, 'US', 'United States'), +('192.200.0.0', '192.200.63.255', 2147483647, 2147483647, 'US', 'United States'), +('192.200.64.0', '192.200.79.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('192.200.128.0', '192.200.135.255', 2147483647, 2147483647, 'US', 'United States'), +('192.201.0.0', '192.201.9.167', 2147483647, 2147483647, 'US', 'United States'), +('192.201.9.168', '192.201.9.175', 2147483647, 2147483647, 'NA', 'Namibia'), +('192.201.9.176', '192.203.36.255', 2147483647, 2147483647, 'US', 'United States'), +('192.203.38.0', '192.203.39.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.203.40.0', '192.203.79.255', 2147483647, 2147483647, 'US', 'United States'), +('192.203.80.0', '192.203.80.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('192.203.81.0', '192.203.95.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('192.203.96.0', '192.203.97.255', 2147483647, 2147483647, 'US', 'United States'), +('192.203.99.0', '192.203.99.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('192.203.104.0', '192.203.105.255', 2147483647, 2147483647, 'US', 'United States'), +('192.203.106.0', '192.203.107.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.203.108.0', '192.203.109.255', 2147483647, 2147483647, 'FI', 'Finland'), +('192.203.110.0', '192.203.137.255', 2147483647, 2147483647, 'US', 'United States'), +('192.203.138.0', '192.203.146.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('192.203.147.0', '192.203.153.255', 2147483647, 2147483647, 'US', 'United States'), +('192.203.154.0', '192.203.154.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('192.203.155.0', '192.203.155.255', 2147483647, 2147483647, 'US', 'United States'), +('192.203.156.0', '192.203.157.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.203.158.0', '192.203.158.255', 2147483647, 2147483647, 'CL', 'Chile'), +('192.203.159.0', '192.203.175.255', 2147483647, 2147483647, 'US', 'United States'), +('192.203.176.0', '192.203.176.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.203.177.0', '192.203.177.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('192.203.178.0', '192.203.182.255', 2147483647, 2147483647, 'US', 'United States'), +('192.203.183.0', '192.203.185.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('192.203.186.0', '192.203.192.255', 2147483647, 2147483647, 'US', 'United States'), +('192.203.193.0', '192.203.193.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.203.194.0', '192.203.196.255', 2147483647, 2147483647, 'US', 'United States'), +('192.203.197.0', '192.203.197.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.203.198.0', '192.203.202.255', 2147483647, 2147483647, 'US', 'United States'), +('192.203.203.0', '192.203.203.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.203.204.0', '192.203.207.255', 2147483647, 2147483647, 'US', 'United States'), +('192.203.208.0', '192.203.209.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('192.203.210.0', '192.203.212.255', 2147483647, 2147483647, 'US', 'United States'), +('192.203.213.0', '192.203.213.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.203.214.0', '192.203.215.255', 2147483647, 2147483647, 'US', 'United States'), +('192.203.216.0', '192.203.216.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('192.203.217.0', '192.203.218.255', 2147483647, 2147483647, 'US', 'United States'), +('192.203.220.0', '192.203.226.255', 2147483647, 2147483647, 'US', 'United States'), +('192.203.227.0', '192.203.227.255', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('192.203.228.0', '192.203.231.255', 2147483647, 2147483647, 'US', 'United States'), +('192.203.232.0', '192.203.232.255', 2147483647, 2147483647, 'MO', 'Macau'), +('192.203.233.0', '192.203.234.255', 2147483647, 2147483647, 'US', 'United States'), +('192.203.235.0', '192.203.235.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.203.236.0', '192.203.246.255', 2147483647, 2147483647, 'US', 'United States'), +('192.203.247.0', '192.203.247.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('192.203.248.0', '192.205.255.255', 2147483647, 2147483647, 'US', 'United States'), +('192.206.1.0', '192.206.1.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.206.2.0', '192.206.3.255', 2147483647, 2147483647, 'US', 'United States'), +('192.206.8.0', '192.206.27.255', 2147483647, 2147483647, 'US', 'United States'), +('192.206.28.0', '192.206.28.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.206.29.0', '192.206.71.255', 2147483647, 2147483647, 'US', 'United States'), +('192.206.74.0', '192.206.76.255', 2147483647, 2147483647, 'US', 'United States'), +('192.206.77.0', '192.206.81.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.206.82.0', '192.206.85.255', 2147483647, 2147483647, 'US', 'United States'), +('192.206.86.0', '192.206.86.255', 2147483647, 2147483647, 'IL', 'Israel'), +('192.206.87.0', '192.206.91.255', 2147483647, 2147483647, 'US', 'United States'), +('192.206.92.0', '192.206.95.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.206.96.0', '192.206.101.255', 2147483647, 2147483647, 'US', 'United States'), +('192.206.102.0', '192.206.102.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('192.206.103.0', '192.206.107.255', 2147483647, 2147483647, 'US', 'United States'), +('192.206.108.0', '192.206.108.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.206.109.0', '192.206.109.255', 2147483647, 2147483647, 'US', 'United States'), +('192.206.112.0', '192.206.116.255', 2147483647, 2147483647, 'US', 'United States'), +('192.206.117.0', '192.206.117.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.206.118.0', '192.206.143.255', 2147483647, 2147483647, 'US', 'United States'), +('192.206.144.0', '192.206.151.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.206.152.0', '192.206.157.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('192.206.158.0', '192.206.180.255', 2147483647, 2147483647, 'US', 'United States'), +('192.206.181.0', '192.206.181.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.206.182.0', '192.206.182.255', 2147483647, 2147483647, 'US', 'United States'), +('192.206.184.0', '192.206.216.255', 2147483647, 2147483647, 'US', 'United States'), +('192.206.217.0', '192.206.218.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.206.219.0', '192.206.221.255', 2147483647, 2147483647, 'US', 'United States'), +('192.206.222.0', '192.206.226.255', 2147483647, 2147483647, 'IL', 'Israel'), +('192.206.227.0', '192.207.11.255', 2147483647, 2147483647, 'US', 'United States'), +('192.207.13.0', '192.207.13.255', 2147483647, 2147483647, 'US', 'United States'), +('192.207.14.0', '192.207.14.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.207.15.0', '192.207.30.255', 2147483647, 2147483647, 'US', 'United States'), +('192.207.31.0', '192.207.31.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('192.207.32.0', '192.207.32.255', 2147483647, 2147483647, 'US', 'United States'), +('192.207.33.0', '192.207.33.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.207.36.0', '192.207.36.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.207.37.0', '192.207.39.255', 2147483647, 2147483647, 'US', 'United States'), +('192.207.40.0', '192.207.42.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('192.207.43.0', '192.207.47.255', 2147483647, 2147483647, 'US', 'United States'), +('192.207.48.0', '192.207.48.255', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('192.207.50.0', '192.207.63.255', 2147483647, 2147483647, 'US', 'United States'), +('192.207.64.0', '192.207.64.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('192.207.65.0', '192.207.68.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('192.207.69.0', '192.207.75.255', 2147483647, 2147483647, 'US', 'United States'), +('192.207.76.0', '192.207.76.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.207.77.0', '192.207.90.255', 2147483647, 2147483647, 'US', 'United States'), +('192.207.91.0', '192.207.91.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('192.207.92.0', '192.207.95.255', 2147483647, 2147483647, 'US', 'United States'), +('192.207.96.0', '192.207.98.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.207.99.0', '192.207.112.255', 2147483647, 2147483647, 'US', 'United States'), +('192.207.113.0', '192.207.113.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.207.114.0', '192.207.118.255', 2147483647, 2147483647, 'US', 'United States'), +('192.207.119.0', '192.207.121.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.207.122.0', '192.207.137.255', 2147483647, 2147483647, 'US', 'United States'), +('192.207.138.0', '192.207.138.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.207.139.0', '192.207.140.255', 2147483647, 2147483647, 'US', 'United States'), +('192.207.141.0', '192.207.141.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.207.142.0', '192.207.142.255', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('192.207.143.0', '192.207.143.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('192.207.144.0', '192.207.145.255', 2147483647, 2147483647, 'US', 'United States'), +('192.207.146.0', '192.207.146.255', 2147483647, 2147483647, 'CL', 'Chile'), +('192.207.147.0', '192.207.150.255', 2147483647, 2147483647, 'US', 'United States'), +('192.207.151.0', '192.207.158.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.207.159.0', '192.207.160.255', 2147483647, 2147483647, 'US', 'United States'), +('192.207.161.0', '192.207.161.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.207.162.0', '192.207.164.255', 2147483647, 2147483647, 'US', 'United States'), +('192.207.165.0', '192.207.165.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.207.166.0', '192.207.182.255', 2147483647, 2147483647, 'US', 'United States'), +('192.207.183.0', '192.207.183.255', 2147483647, 2147483647, 'GT', 'Guatemala'), +('192.207.184.0', '192.207.186.255', 2147483647, 2147483647, 'US', 'United States'), +('192.207.187.0', '192.207.187.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.207.188.0', '192.207.193.255', 2147483647, 2147483647, 'US', 'United States'), +('192.207.194.0', '192.207.195.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('192.207.196.0', '192.207.196.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('192.207.197.0', '192.207.198.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.207.199.0', '192.207.199.255', 2147483647, 2147483647, 'US', 'United States'), +('192.207.200.0', '192.207.206.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('192.207.207.0', '192.207.241.255', 2147483647, 2147483647, 'US', 'United States'), +('192.207.242.0', '192.207.242.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('192.207.243.0', '192.207.243.255', 2147483647, 2147483647, 'US', 'United States'), +('192.207.244.0', '192.207.244.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('192.207.245.0', '192.207.247.255', 2147483647, 2147483647, 'US', 'United States'), +('192.207.248.0', '192.207.248.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.207.249.0', '192.207.251.255', 2147483647, 2147483647, 'US', 'United States'), +('192.207.253.0', '192.207.253.255', 2147483647, 2147483647, 'US', 'United States'), +('192.207.254.0', '192.207.254.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('192.208.0.0', '192.208.15.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.208.16.0', '192.208.159.255', 2147483647, 2147483647, 'US', 'United States'), +('192.209.0.0', '192.209.255.255', 2147483647, 2147483647, 'US', 'United States'), +('192.210.0.0', '192.210.15.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.210.32.0', '192.210.47.255', 2147483647, 2147483647, 'US', 'United States'), +('192.210.64.0', '192.210.127.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.211.0.0', '192.211.127.255', 2147483647, 2147483647, 'US', 'United States'), +('192.212.0.0', '192.212.255.255', 2147483647, 2147483647, 'US', 'United States'), +('192.213.0.0', '192.213.0.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.213.1.0', '192.216.31.255', 2147483647, 2147483647, 'US', 'United States'), +('192.216.32.0', '192.216.33.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('192.216.34.0', '192.216.140.127', 2147483647, 2147483647, 'US', 'United States'), +('192.216.140.128', '192.216.140.135', 2147483647, 2147483647, 'BR', 'Brazil'), +('192.216.140.136', '192.217.255.255', 2147483647, 2147483647, 'US', 'United States'), +('192.218.0.0', '192.218.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('192.219.0.0', '192.219.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.220.0.0', '192.221.255.255', 2147483647, 2147483647, 'US', 'United States'), +('192.222.0.0', '192.222.15.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.222.16.0', '192.222.127.255', 2147483647, 2147483647, 'US', 'United States'), +('192.223.0.0', '192.223.63.255', 2147483647, 2147483647, 'US', 'United States'), +('192.223.64.0', '192.223.127.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('192.223.128.0', '192.224.2.255', 2147483647, 2147483647, 'US', 'United States'), +('192.224.3.0', '192.224.3.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.224.4.0', '192.224.12.255', 2147483647, 2147483647, 'US', 'United States'), +('192.224.13.0', '192.224.13.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.224.14.0', '192.224.26.255', 2147483647, 2147483647, 'US', 'United States'), +('192.224.27.0', '192.224.27.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.224.28.0', '192.224.34.255', 2147483647, 2147483647, 'US', 'United States'), +('192.224.35.0', '192.224.35.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.224.36.0', '192.224.42.255', 2147483647, 2147483647, 'US', 'United States'), +('192.224.43.0', '192.224.43.255', 2147483647, 2147483647, 'VI', 'Virgin Islands, U.S.'), +('192.224.44.0', '192.224.46.255', 2147483647, 2147483647, 'US', 'United States'), +('192.224.47.0', '192.224.47.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.224.48.0', '192.224.53.255', 2147483647, 2147483647, 'US', 'United States'), +('192.224.54.0', '192.224.54.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.224.55.0', '192.224.60.255', 2147483647, 2147483647, 'US', 'United States'), +('192.224.61.0', '192.224.61.255', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('192.224.62.0', '192.224.77.255', 2147483647, 2147483647, 'US', 'United States'), +('192.224.78.0', '192.224.78.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.224.79.0', '192.224.80.255', 2147483647, 2147483647, 'US', 'United States'), +('192.224.81.0', '192.224.81.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.224.82.0', '192.224.84.255', 2147483647, 2147483647, 'US', 'United States'), +('192.224.85.0', '192.224.86.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.224.87.0', '192.224.88.255', 2147483647, 2147483647, 'US', 'United States'), +('192.224.89.0', '192.224.92.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.224.93.0', '192.224.93.255', 2147483647, 2147483647, 'US', 'United States'), +('192.224.94.0', '192.224.94.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.224.95.0', '192.224.103.255', 2147483647, 2147483647, 'US', 'United States'), +('192.224.104.0', '192.224.106.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.224.107.0', '192.224.120.255', 2147483647, 2147483647, 'US', 'United States'), +('192.224.121.0', '192.224.121.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.224.122.0', '192.224.122.255', 2147483647, 2147483647, 'US', 'United States'), +('192.224.123.0', '192.224.124.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.224.125.0', '192.224.125.255', 2147483647, 2147483647, 'US', 'United States'), +('192.224.126.0', '192.224.126.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.224.127.0', '192.224.140.255', 2147483647, 2147483647, 'US', 'United States'), +('192.224.141.0', '192.224.141.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.224.142.0', '192.224.157.255', 2147483647, 2147483647, 'US', 'United States'), +('192.224.158.0', '192.224.158.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.224.159.0', '192.224.160.255', 2147483647, 2147483647, 'US', 'United States'), +('192.224.161.0', '192.224.162.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.224.163.0', '192.224.170.255', 2147483647, 2147483647, 'US', 'United States'), +('192.224.171.0', '192.224.174.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.224.175.0', '192.224.175.255', 2147483647, 2147483647, 'US', 'United States'), +('192.224.176.0', '192.224.176.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.224.177.0', '192.224.180.255', 2147483647, 2147483647, 'US', 'United States'), +('192.224.181.0', '192.224.181.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.224.182.0', '192.224.201.255', 2147483647, 2147483647, 'US', 'United States'), +('192.224.202.0', '192.224.202.255', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('192.224.203.0', '192.224.203.255', 2147483647, 2147483647, 'US', 'United States'), +('192.224.204.0', '192.224.204.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.224.205.0', '192.224.210.255', 2147483647, 2147483647, 'US', 'United States'), +('192.224.211.0', '192.224.211.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.224.212.0', '192.224.213.255', 2147483647, 2147483647, 'US', 'United States'), +('192.224.214.0', '192.224.214.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.224.215.0', '192.224.218.255', 2147483647, 2147483647, 'US', 'United States'), +('192.224.219.0', '192.224.219.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.224.220.0', '192.224.220.255', 2147483647, 2147483647, 'US', 'United States'), +('192.224.221.0', '192.224.221.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.224.222.0', '192.224.226.255', 2147483647, 2147483647, 'US', 'United States'), +('192.224.227.0', '192.224.227.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.224.228.0', '192.224.239.255', 2147483647, 2147483647, 'US', 'United States'), +('192.224.240.0', '192.224.240.255', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('192.224.241.0', '192.224.242.255', 2147483647, 2147483647, 'US', 'United States'), +('192.224.243.0', '192.224.243.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.224.244.0', '192.224.245.255', 2147483647, 2147483647, 'US', 'United States'), +('192.224.246.0', '192.224.246.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.224.247.0', '192.224.253.255', 2147483647, 2147483647, 'US', 'United States'), +('192.224.254.0', '192.224.254.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.224.255.0', '192.226.31.255', 2147483647, 2147483647, 'US', 'United States'), +('192.226.32.0', '192.226.63.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.226.64.0', '192.226.127.255', 2147483647, 2147483647, 'US', 'United States'), +('192.227.0.0', '192.227.15.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('192.227.16.0', '192.227.127.255', 2147483647, 2147483647, 'US', 'United States'), +('192.228.0.0', '192.228.31.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.228.32.0', '192.228.95.255', 2147483647, 2147483647, 'US', 'United States'), +('192.228.128.0', '192.228.255.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('192.229.0.0', '192.229.63.255', 2147483647, 2147483647, 'US', 'United States'), +('192.230.0.0', '192.230.15.255', 2147483647, 2147483647, 'US', 'United States'), +('192.230.16.0', '192.230.31.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('192.231.0.0', '192.231.14.255', 2147483647, 2147483647, 'US', 'United States'), +('192.231.15.0', '192.231.15.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('192.231.16.0', '192.231.33.255', 2147483647, 2147483647, 'US', 'United States'), +('192.231.34.0', '192.231.34.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.231.36.0', '192.231.58.255', 2147483647, 2147483647, 'US', 'United States'), +('192.231.59.0', '192.231.59.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.231.60.0', '192.231.64.255', 2147483647, 2147483647, 'US', 'United States'), +('192.231.66.0', '192.231.66.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.231.67.0', '192.231.67.255', 2147483647, 2147483647, 'AT', 'Austria'), +('192.231.68.0', '192.231.76.255', 2147483647, 2147483647, 'US', 'United States'), +('192.231.77.0', '192.231.77.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.231.78.0', '192.231.81.255', 2147483647, 2147483647, 'US', 'United States'), +('192.231.82.0', '192.231.82.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.231.83.0', '192.231.83.255', 2147483647, 2147483647, 'US', 'United States'), +('192.231.86.0', '192.231.88.255', 2147483647, 2147483647, 'US', 'United States'), +('192.231.89.0', '192.231.89.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.231.90.0', '192.231.91.255', 2147483647, 2147483647, 'US', 'United States'), +('192.231.92.0', '192.231.97.255', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('192.231.98.0', '192.231.109.255', 2147483647, 2147483647, 'US', 'United States'), +('192.231.110.0', '192.231.110.255', 2147483647, 2147483647, 'CL', 'Chile'), +('192.231.111.0', '192.231.113.255', 2147483647, 2147483647, 'US', 'United States'), +('192.231.114.0', '192.231.121.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('192.231.122.0', '192.231.126.255', 2147483647, 2147483647, 'US', 'United States'), +('192.231.127.0', '192.231.127.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.231.128.0', '192.231.133.255', 2147483647, 2147483647, 'US', 'United States'), +('192.231.135.0', '192.231.137.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.231.138.0', '192.231.139.255', 2147483647, 2147483647, 'US', 'United States'), +('192.231.140.0', '192.231.140.255', 2147483647, 2147483647, 'CL', 'Chile'), +('192.231.141.0', '192.231.143.255', 2147483647, 2147483647, 'US', 'United States'), +('192.231.144.0', '192.231.144.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.231.145.0', '192.231.165.255', 2147483647, 2147483647, 'US', 'United States'), +('192.231.166.0', '192.231.168.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.231.169.0', '192.231.170.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('192.231.171.0', '192.231.171.255', 2147483647, 2147483647, 'US', 'United States'), +('192.231.172.0', '192.231.174.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.231.175.0', '192.231.176.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('192.231.177.0', '192.231.182.255', 2147483647, 2147483647, 'US', 'United States'), +('192.231.183.0', '192.231.183.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('192.231.184.0', '192.231.192.255', 2147483647, 2147483647, 'US', 'United States'), +('192.231.193.0', '192.231.193.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.231.194.0', '192.231.202.255', 2147483647, 2147483647, 'US', 'United States'), +('192.231.203.0', '192.231.203.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.231.204.0', '192.231.210.255', 2147483647, 2147483647, 'US', 'United States'), +('192.231.211.0', '192.231.212.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.231.213.0', '192.231.215.255', 2147483647, 2147483647, 'US', 'United States'), +('192.231.216.0', '192.231.216.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.231.217.0', '192.231.217.255', 2147483647, 2147483647, 'US', 'United States'), +('192.231.218.0', '192.231.218.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.231.219.0', '192.231.236.255', 2147483647, 2147483647, 'US', 'United States'), +('192.231.237.0', '192.231.237.255', 2147483647, 2147483647, 'MZ', 'Mozambique'), +('192.231.238.0', '192.231.246.255', 2147483647, 2147483647, 'US', 'United States'), +('192.231.247.0', '192.231.247.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.231.248.0', '192.231.248.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('192.231.252.0', '192.231.253.255', 2147483647, 2147483647, 'US', 'United States'), +('192.231.254.0', '192.231.254.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('192.232.0.0', '192.232.31.255', 2147483647, 2147483647, 'US', 'United States'), +('192.232.32.0', '192.232.63.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.232.64.0', '192.232.127.255', 2147483647, 2147483647, 'US', 'United States'), +('192.232.128.0', '192.232.159.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.233.0.0', '192.234.22.255', 2147483647, 2147483647, 'US', 'United States'), +('192.234.23.0', '192.234.23.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.234.24.0', '192.234.57.255', 2147483647, 2147483647, 'US', 'United States'), +('192.234.58.0', '192.234.58.255', 2147483647, 2147483647, 'JP', 'Japan'), +('192.234.59.0', '192.234.97.255', 2147483647, 2147483647, 'US', 'United States'), +('192.234.98.0', '192.234.98.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.234.99.0', '192.234.170.255', 2147483647, 2147483647, 'US', 'United States'), +('192.234.171.0', '192.234.171.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.234.172.0', '192.234.220.255', 2147483647, 2147483647, 'US', 'United States'), +('192.234.222.0', '192.234.222.255', 2147483647, 2147483647, 'US', 'United States'), +('192.234.223.0', '192.234.229.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.234.230.0', '192.234.230.255', 2147483647, 2147483647, 'US', 'United States'), +('192.234.231.0', '192.234.231.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.234.232.0', '192.234.244.255', 2147483647, 2147483647, 'US', 'United States'), +('192.234.245.0', '192.234.245.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.234.246.0', '192.234.253.255', 2147483647, 2147483647, 'US', 'United States'), +('192.234.254.0', '192.234.254.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.235.0.0', '192.235.63.255', 2147483647, 2147483647, 'US', 'United States'), +('192.236.0.0', '192.236.63.255', 2147483647, 2147483647, 'US', 'United States'), +('192.237.0.0', '192.237.31.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.237.32.0', '192.237.67.255', 2147483647, 2147483647, 'US', 'United States'), +('192.237.68.0', '192.237.69.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('192.237.70.0', '192.237.70.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('192.237.71.0', '192.237.72.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.237.73.0', '192.237.73.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.237.74.0', '192.237.75.255', 2147483647, 2147483647, 'US', 'United States'), +('192.237.76.0', '192.237.76.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.237.77.0', '192.237.79.255', 2147483647, 2147483647, 'US', 'United States'), +('192.237.80.0', '192.237.80.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.237.81.0', '192.237.82.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.237.83.0', '192.237.88.255', 2147483647, 2147483647, 'US', 'United States'), +('192.237.89.0', '192.237.89.255', 2147483647, 2147483647, 'FR', 'France'), +('192.237.90.0', '192.237.90.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('192.237.91.0', '192.237.94.31', 2147483647, 2147483647, 'US', 'United States'), +('192.237.94.32', '192.237.94.47', 2147483647, 2147483647, 'NL', 'Netherlands'), +('192.237.94.48', '192.237.94.159', 2147483647, 2147483647, 'US', 'United States'), +('192.237.94.160', '192.237.94.191', 2147483647, 2147483647, 'NL', 'Netherlands'), +('192.237.94.192', '192.237.94.255', 2147483647, 2147483647, 'US', 'United States'), +('192.237.95.0', '192.237.96.255', 2147483647, 2147483647, 'ES', 'Spain'), +('192.237.97.0', '192.237.98.127', 2147483647, 2147483647, 'US', 'United States'), +('192.237.98.128', '192.237.98.159', 2147483647, 2147483647, 'BE', 'Belgium'), +('192.237.98.160', '192.237.98.255', 2147483647, 2147483647, 'US', 'United States'), +('192.237.99.0', '192.237.99.63', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('192.237.99.64', '192.237.104.255', 2147483647, 2147483647, 'US', 'United States'), +('192.237.105.0', '192.237.106.255', 2147483647, 2147483647, 'IT', 'Italy'), +('192.237.107.0', '192.237.109.255', 2147483647, 2147483647, 'US', 'United States'), +('192.237.110.0', '192.237.110.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.237.111.0', '192.237.111.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('192.237.112.0', '192.237.112.255', 2147483647, 2147483647, 'US', 'United States'), +('192.237.113.0', '192.237.113.255', 2147483647, 2147483647, 'FR', 'France'), +('192.237.114.0', '192.237.115.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.237.116.0', '192.237.118.255', 2147483647, 2147483647, 'US', 'United States'), +('192.237.119.0', '192.237.119.255', 2147483647, 2147483647, 'JP', 'Japan'), +('192.237.120.0', '192.237.120.255', 2147483647, 2147483647, 'US', 'United States'), +('192.237.121.0', '192.237.124.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.237.125.0', '192.237.127.255', 2147483647, 2147483647, 'US', 'United States'), +('192.238.0.0', '192.238.15.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('192.238.16.0', '192.238.23.255', 2147483647, 2147483647, 'US', 'United States'), +('192.238.32.0', '192.238.127.255', 2147483647, 2147483647, 'US', 'United States'), +('192.239.0.0', '192.240.15.255', 2147483647, 2147483647, 'US', 'United States'), +('192.240.16.0', '192.240.31.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.240.32.0', '192.240.47.255', 2147483647, 2147483647, 'US', 'United States'), +('192.240.64.0', '192.240.95.255', 2147483647, 2147483647, 'US', 'United States'), +('192.240.128.0', '192.240.159.255', 2147483647, 2147483647, 'US', 'United States'), +('192.241.0.0', '192.241.63.255', 2147483647, 2147483647, 'US', 'United States'), +('192.242.0.0', '192.243.15.255', 2147483647, 2147483647, 'US', 'United States'), +('192.243.16.0', '192.243.19.255', 2147483647, 2147483647, 'ES', 'Spain'), +('192.243.20.0', '192.243.23.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.243.32.0', '192.243.39.255', 2147483647, 2147483647, 'US', 'United States'), +('192.243.128.0', '192.243.255.255', 2147483647, 2147483647, 'US', 'United States'), +('192.244.0.0', '192.244.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('192.245.0.0', '192.245.10.255', 2147483647, 2147483647, 'US', 'United States'), +('192.245.11.0', '192.245.11.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.245.12.0', '192.245.12.255', 2147483647, 2147483647, 'US', 'United States'), +('192.245.13.0', '192.245.14.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.245.15.0', '192.245.23.255', 2147483647, 2147483647, 'US', 'United States'), +('192.245.24.0', '192.245.24.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.245.25.0', '192.245.33.255', 2147483647, 2147483647, 'US', 'United States'), +('192.245.34.0', '192.245.35.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.245.36.0', '192.245.36.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('192.245.37.0', '192.245.50.255', 2147483647, 2147483647, 'US', 'United States'), +('192.245.51.0', '192.245.51.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.245.52.0', '192.245.57.255', 2147483647, 2147483647, 'US', 'United States'), +('192.245.58.0', '192.245.59.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('192.245.60.0', '192.245.60.255', 2147483647, 2147483647, 'CL', 'Chile'), +('192.245.61.0', '192.245.72.255', 2147483647, 2147483647, 'US', 'United States'), +('192.245.73.0', '192.245.80.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('192.245.81.0', '192.245.90.255', 2147483647, 2147483647, 'US', 'United States'), +('192.245.91.0', '192.245.91.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.245.92.0', '192.245.93.255', 2147483647, 2147483647, 'US', 'United States'), +('192.245.94.0', '192.245.94.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('192.245.95.0', '192.245.104.255', 2147483647, 2147483647, 'US', 'United States'), +('192.245.105.0', '192.245.112.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.245.113.0', '192.245.120.255', 2147483647, 2147483647, 'US', 'United States'), +('192.245.121.0', '192.245.121.255', 2147483647, 2147483647, 'BO', 'Bolivia'), +('192.245.122.0', '192.245.147.255', 2147483647, 2147483647, 'US', 'United States'), +('192.245.148.0', '192.245.148.255', 2147483647, 2147483647, 'DZ', 'Algeria'), +('192.245.149.0', '192.245.151.255', 2147483647, 2147483647, 'US', 'United States'), +('192.245.152.0', '192.245.152.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('192.245.153.0', '192.245.154.255', 2147483647, 2147483647, 'US', 'United States'), +('192.245.155.0', '192.245.155.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('192.245.156.0', '192.245.156.255', 2147483647, 2147483647, 'US', 'United States'), +('192.245.160.0', '192.245.168.255', 2147483647, 2147483647, 'US', 'United States'), +('192.245.169.0', '192.245.169.255', 2147483647, 2147483647, 'PL', 'Poland'), +('192.245.170.0', '192.245.171.255', 2147483647, 2147483647, 'US', 'United States'), +('192.245.172.0', '192.245.172.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.245.173.0', '192.245.180.255', 2147483647, 2147483647, 'US', 'United States'), +('192.245.182.0', '192.245.182.255', 2147483647, 2147483647, 'US', 'United States'), +('192.245.183.0', '192.245.183.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.245.184.0', '192.245.184.255', 2147483647, 2147483647, 'US', 'United States'), +('192.245.185.0', '192.245.185.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('192.245.186.0', '192.245.191.255', 2147483647, 2147483647, 'US', 'United States'), +('192.245.192.0', '192.245.192.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.245.194.0', '192.245.195.255', 2147483647, 2147483647, 'US', 'United States'), +('192.245.196.0', '192.245.196.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('192.245.197.0', '192.245.207.255', 2147483647, 2147483647, 'US', 'United States'), +('192.245.208.0', '192.245.208.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('192.245.209.0', '192.245.209.255', 2147483647, 2147483647, 'US', 'United States'), +('192.245.210.0', '192.245.217.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.245.218.0', '192.245.218.255', 2147483647, 2147483647, 'US', 'United States'), +('192.245.219.0', '192.245.219.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.245.220.0', '192.245.220.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('192.245.221.0', '192.245.224.255', 2147483647, 2147483647, 'US', 'United States'), +('192.245.225.0', '192.245.225.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.245.226.0', '192.245.227.255', 2147483647, 2147483647, 'US', 'United States'), +('192.245.228.0', '192.245.228.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.245.229.0', '192.245.248.255', 2147483647, 2147483647, 'US', 'United States'), +('192.245.249.0', '192.245.251.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('192.245.252.0', '192.246.6.255', 2147483647, 2147483647, 'US', 'United States'), +('192.246.7.0', '192.246.7.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.246.8.0', '192.246.72.255', 2147483647, 2147483647, 'US', 'United States'), +('192.246.73.0', '192.246.73.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.246.74.0', '192.246.255.255', 2147483647, 2147483647, 'US', 'United States'), +('192.247.0.0', '192.247.15.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('192.247.16.0', '192.247.95.255', 2147483647, 2147483647, 'US', 'United States'), +('192.247.128.0', '192.247.255.255', 2147483647, 2147483647, 'US', 'United States'), +('192.248.0.0', '192.248.127.255', 2147483647, 2147483647, 'LK', 'Sri Lanka'), +('192.248.128.0', '192.249.15.255', 2147483647, 2147483647, 'US', 'United States'), +('192.249.16.0', '192.249.31.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('192.249.32.0', '192.249.63.255', 2147483647, 2147483647, 'US', 'United States'), +('192.250.0.0', '192.250.15.255', 2147483647, 2147483647, 'US', 'United States'), +('192.250.22.0', '192.250.23.255', 2147483647, 2147483647, 'US', 'United States'), +('192.250.24.0', '192.250.28.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.250.30.0', '192.250.191.255', 2147483647, 2147483647, 'US', 'United States'), +('192.251.0.0', '192.251.25.255', 2147483647, 2147483647, 'US', 'United States'), +('192.251.26.0', '192.251.30.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.251.31.0', '192.251.38.255', 2147483647, 2147483647, 'US', 'United States'), +('192.251.39.0', '192.251.39.255', 2147483647, 2147483647, 'CL', 'Chile'), +('192.251.40.0', '192.251.51.255', 2147483647, 2147483647, 'US', 'United States'), +('192.251.52.0', '192.251.55.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.251.56.0', '192.251.60.255', 2147483647, 2147483647, 'US', 'United States'), +('192.251.61.0', '192.251.65.255', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('192.251.66.0', '192.251.90.255', 2147483647, 2147483647, 'US', 'United States'), +('192.251.91.0', '192.251.91.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.251.92.0', '192.251.147.255', 2147483647, 2147483647, 'US', 'United States'), +('192.251.148.0', '192.251.148.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.251.149.0', '192.251.163.255', 2147483647, 2147483647, 'US', 'United States'), +('192.251.164.0', '192.251.164.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.251.165.0', '192.251.165.255', 2147483647, 2147483647, 'US', 'United States'), +('192.251.166.0', '192.251.166.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.251.167.0', '192.251.194.255', 2147483647, 2147483647, 'US', 'United States'), +('192.251.195.0', '192.251.195.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.251.196.0', '192.251.196.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.251.197.0', '192.251.197.255', 2147483647, 2147483647, 'US', 'United States'), +('192.251.201.0', '192.251.201.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.251.202.0', '192.251.202.255', 2147483647, 2147483647, 'GH', 'Ghana'), +('192.251.203.0', '192.251.203.255', 2147483647, 2147483647, 'US', 'United States'), +('192.251.204.0', '192.251.207.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.251.208.0', '192.251.225.255', 2147483647, 2147483647, 'US', 'United States'), +('192.251.226.0', '192.251.226.255', 2147483647, 2147483647, 'DE', 'Germany'), +('192.251.227.0', '192.251.228.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('192.251.229.0', '192.251.229.255', 2147483647, 2147483647, 'AU', 'Australia'), +('192.251.230.0', '192.251.230.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('192.251.231.0', '192.251.231.255', 2147483647, 2147483647, 'CA', 'Canada'), +('192.251.232.0', '192.251.239.255', 2147483647, 2147483647, 'US', 'United States'), +('192.252.0.0', '192.255.255.255', 2147483647, 2147483647, 'US', 'United States'), +('193.0.0.0', '193.0.15.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.0.16.0', '193.0.16.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.0.17.0', '193.0.31.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.0.32.0', '193.0.55.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.0.56.0', '193.0.60.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('193.0.61.0', '193.0.61.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('193.0.64.0', '193.0.127.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.0.128.0', '193.0.223.255', 2147483647, 2147483647, 'FR', 'France'), +('193.0.224.0', '193.0.224.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.0.225.0', '193.0.225.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.0.226.0', '193.0.226.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('193.0.227.0', '193.0.228.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.0.229.0', '193.0.229.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.0.230.0', '193.0.230.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.0.231.0', '193.0.231.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('193.0.232.0', '193.0.233.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.0.234.0', '193.0.234.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.0.235.0', '193.0.235.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.0.236.0', '193.0.236.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.0.237.0', '193.0.237.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.0.238.0', '193.0.238.255', 2147483647, 2147483647, 'IT', 'Italy'), +('193.0.239.0', '193.0.239.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.0.240.0', '193.0.240.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.0.241.0', '193.0.241.255', 2147483647, 2147483647, 'ES', 'Spain'), +('193.0.242.0', '193.0.242.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.0.243.0', '193.0.243.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('193.0.244.0', '193.0.244.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('193.0.245.0', '193.0.245.255', 2147483647, 2147483647, 'FR', 'France'), +('193.0.246.0', '193.0.246.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.0.247.0', '193.0.247.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.0.248.0', '193.0.248.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.0.249.0', '193.0.249.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.0.250.0', '193.0.250.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.0.251.0', '193.0.251.255', 2147483647, 2147483647, 'LT', 'Lithuania'), +('193.0.252.0', '193.0.252.255', 2147483647, 2147483647, 'NO', 'Norway'), +('193.0.253.0', '193.0.253.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.0.254.0', '193.0.254.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.0.255.0', '193.0.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.1.0.0', '193.1.255.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('193.2.0.0', '193.2.255.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('193.3.0.0', '193.3.8.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('193.3.9.0', '193.3.11.255', 2147483647, 2147483647, 'US', 'United States'), +('193.3.12.0', '193.3.255.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('193.4.0.0', '193.4.255.255', 2147483647, 2147483647, 'IS', 'Iceland'), +('193.5.0.0', '193.5.25.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.5.26.0', '193.5.27.255', 2147483647, 2147483647, 'LI', 'Liechtenstein'), +('193.5.28.0', '193.5.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.6.0.0', '193.6.255.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('193.7.0.0', '193.7.159.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.7.160.0', '193.7.167.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.7.168.0', '193.7.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.8.0.0', '193.8.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.9.0.0', '193.9.1.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.9.2.0', '193.9.6.255', 2147483647, 2147483647, 'EU', 'Europe'), +('193.9.7.0', '193.9.7.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.9.8.0', '193.9.11.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('193.9.12.0', '193.9.12.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('193.9.13.0', '193.9.15.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.9.16.0', '193.9.16.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('193.9.17.0', '193.9.17.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.9.18.0', '193.9.18.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.9.19.0', '193.9.19.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('193.9.20.0', '193.9.20.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.9.21.0', '193.9.21.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('193.9.22.0', '193.9.22.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.9.23.0', '193.9.23.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.9.24.0', '193.9.24.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.9.25.0', '193.9.25.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.9.26.0', '193.9.27.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('193.9.28.0', '193.9.28.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.9.29.0', '193.9.31.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('193.9.32.0', '193.9.47.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.9.48.0', '193.9.53.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.9.54.0', '193.9.54.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.9.55.0', '193.9.57.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.9.58.0', '193.9.59.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.9.60.0', '193.9.63.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.9.64.0', '193.9.111.255', 2147483647, 2147483647, 'EU', 'Europe'), +('193.9.112.0', '193.9.112.255', 2147483647, 2147483647, 'FI', 'Finland'), +('193.9.113.0', '193.9.113.255', 2147483647, 2147483647, 'FR', 'France'), +('193.9.114.0', '193.9.114.255', 2147483647, 2147483647, 'IT', 'Italy'), +('193.9.115.0', '193.9.115.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.9.116.0', '193.9.116.255', 2147483647, 2147483647, 'NO', 'Norway'), +('193.9.117.0', '193.9.117.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.9.118.0', '193.9.118.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('193.9.119.0', '193.9.119.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.9.121.0', '193.9.121.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.9.122.0', '193.9.122.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.9.123.0', '193.9.123.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.9.124.0', '193.9.127.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('193.9.128.0', '193.9.147.255', 2147483647, 2147483647, 'EU', 'Europe'), +('193.9.148.0', '193.9.148.255', 2147483647, 2147483647, 'GR', 'Greece'), +('193.9.149.0', '193.9.157.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.9.158.0', '193.9.158.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.9.159.0', '193.9.254.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('193.9.255.0', '193.9.255.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.10.0.0', '193.10.67.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.10.68.0', '193.10.68.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('193.10.69.0', '193.10.253.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.10.254.0', '193.10.254.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('193.10.255.0', '193.12.23.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.12.24.0', '193.12.25.255', 2147483647, 2147483647, 'IT', 'Italy'), +('193.12.26.0', '193.12.47.127', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.12.47.128', '193.12.47.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.12.47.192', '193.15.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.16.0.0', '193.16.0.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.16.1.0', '193.16.42.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.16.43.0', '193.16.43.255', 2147483647, 2147483647, 'ES', 'Spain'), +('193.16.44.0', '193.16.44.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.16.45.0', '193.16.45.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.16.46.0', '193.16.46.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.16.47.0', '193.16.47.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.16.48.0', '193.16.95.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.16.96.0', '193.16.96.255', 2147483647, 2147483647, 'MT', 'Malta'), +('193.16.97.0', '193.16.97.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.16.98.0', '193.16.98.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.16.99.0', '193.16.99.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.16.100.0', '193.16.100.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.16.101.0', '193.16.101.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.16.102.0', '193.16.102.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('193.16.103.0', '193.16.103.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('193.16.104.0', '193.16.104.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('193.16.105.0', '193.16.105.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.16.106.0', '193.16.106.255', 2147483647, 2147483647, 'RU', 'Russian Federation'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('193.16.107.0', '193.16.107.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.16.108.0', '193.16.108.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.16.109.0', '193.16.109.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('193.16.110.0', '193.16.110.255', 2147483647, 2147483647, 'FR', 'France'), +('193.16.111.0', '193.16.111.255', 2147483647, 2147483647, 'MD', 'Moldova, Republic of'), +('193.16.112.0', '193.16.143.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.16.144.0', '193.16.145.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.16.146.0', '193.16.146.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('193.16.147.0', '193.16.147.255', 2147483647, 2147483647, 'IL', 'Israel'), +('193.16.148.0', '193.16.148.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.16.149.0', '193.16.150.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.16.151.0', '193.16.151.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.16.152.0', '193.16.152.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('193.16.153.0', '193.16.153.255', 2147483647, 2147483647, 'ES', 'Spain'), +('193.16.154.0', '193.16.154.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.16.155.0', '193.16.155.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.16.156.0', '193.16.156.255', 2147483647, 2147483647, 'FR', 'France'), +('193.16.157.0', '193.16.157.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('193.16.158.0', '193.16.158.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.16.159.0', '193.16.159.255', 2147483647, 2147483647, 'FR', 'France'), +('193.16.160.0', '193.16.207.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.16.208.0', '193.16.210.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.16.211.0', '193.16.211.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.16.212.0', '193.16.212.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.16.213.0', '193.16.213.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.16.214.0', '193.16.215.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.16.216.0', '193.16.216.255', 2147483647, 2147483647, 'ES', 'Spain'), +('193.16.217.0', '193.16.217.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.16.218.0', '193.16.218.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.16.219.0', '193.16.219.255', 2147483647, 2147483647, 'GR', 'Greece'), +('193.16.220.0', '193.16.220.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.16.221.0', '193.16.221.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.16.222.0', '193.16.228.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.16.229.0', '193.16.229.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.16.230.0', '193.16.231.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.16.232.0', '193.16.232.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.16.233.0', '193.16.233.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.16.234.0', '193.16.234.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.16.235.0', '193.16.236.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.16.237.0', '193.16.237.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.16.238.0', '193.16.238.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.16.239.0', '193.16.240.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.16.241.0', '193.16.241.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.16.242.0', '193.16.242.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.16.243.0', '193.16.243.255', 2147483647, 2147483647, 'ES', 'Spain'), +('193.16.244.0', '193.16.244.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.16.245.0', '193.16.245.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.16.246.0', '193.16.246.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('193.16.247.0', '193.16.247.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.16.248.0', '193.16.254.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.16.255.0', '193.16.255.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.17.0.0', '193.17.0.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('193.17.1.0', '193.17.11.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.17.12.0', '193.17.12.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.17.13.0', '193.17.13.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('193.17.14.0', '193.17.14.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.17.15.0', '193.17.15.255', 2147483647, 2147483647, 'FR', 'France'), +('193.17.16.0', '193.17.18.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.17.19.0', '193.17.19.255', 2147483647, 2147483647, 'FR', 'France'), +('193.17.20.0', '193.17.39.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.17.40.0', '193.17.40.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('193.17.41.0', '193.17.41.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.17.42.0', '193.17.42.255', 2147483647, 2147483647, 'IL', 'Israel'), +('193.17.43.0', '193.17.43.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.17.44.0', '193.17.44.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.17.45.0', '193.17.45.255', 2147483647, 2147483647, 'IT', 'Italy'), +('193.17.46.0', '193.17.46.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.17.47.0', '193.17.47.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('193.17.48.0', '193.17.51.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.17.52.0', '193.17.52.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.17.53.0', '193.17.53.255', 2147483647, 2147483647, 'JO', 'Jordan'), +('193.17.54.0', '193.17.55.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.17.56.0', '193.17.63.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.17.64.0', '193.17.64.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.17.65.0', '193.17.65.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.17.66.0', '193.17.66.255', 2147483647, 2147483647, 'ES', 'Spain'), +('193.17.67.0', '193.17.67.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.17.68.0', '193.17.68.255', 2147483647, 2147483647, 'IL', 'Israel'), +('193.17.69.0', '193.17.69.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.17.70.0', '193.17.70.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.17.71.0', '193.17.71.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.17.72.0', '193.17.72.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.17.73.0', '193.17.73.255', 2147483647, 2147483647, 'FR', 'France'), +('193.17.74.0', '193.17.74.255', 2147483647, 2147483647, 'IL', 'Israel'), +('193.17.75.0', '193.17.75.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.17.76.0', '193.17.76.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.17.77.0', '193.17.77.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.17.78.0', '193.17.78.255', 2147483647, 2147483647, 'MD', 'Moldova, Republic of'), +('193.17.79.0', '193.17.79.255', 2147483647, 2147483647, 'LI', 'Liechtenstein'), +('193.17.80.0', '193.17.83.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.17.84.0', '193.17.84.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.17.85.0', '193.17.85.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.17.86.0', '193.17.127.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.17.128.0', '193.17.169.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.17.170.0', '193.17.170.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.17.171.0', '193.17.171.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.17.172.0', '193.17.172.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.17.173.0', '193.17.173.255', 2147483647, 2147483647, 'BY', 'Belarus'), +('193.17.174.0', '193.17.174.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.17.175.0', '193.17.175.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('193.17.176.0', '193.17.178.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.17.179.0', '193.17.179.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('193.17.180.0', '193.17.186.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.17.187.0', '193.17.187.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.17.188.0', '193.17.188.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('193.17.189.0', '193.17.191.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.17.192.0', '193.17.192.255', 2147483647, 2147483647, 'FR', 'France'), +('193.17.193.0', '193.17.193.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.17.194.0', '193.17.194.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.17.195.0', '193.17.195.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.17.196.0', '193.17.196.255', 2147483647, 2147483647, 'FR', 'France'), +('193.17.197.0', '193.17.197.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.17.198.0', '193.17.198.255', 2147483647, 2147483647, 'FR', 'France'), +('193.17.199.0', '193.17.201.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.17.202.0', '193.17.202.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.17.203.0', '193.17.203.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.17.204.0', '193.17.205.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.17.206.0', '193.17.206.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('193.17.207.0', '193.17.207.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.17.208.0', '193.17.208.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.17.209.0', '193.17.209.255', 2147483647, 2147483647, 'FR', 'France'), +('193.17.210.0', '193.17.210.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.17.211.0', '193.17.211.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.17.212.0', '193.17.212.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.17.213.0', '193.17.213.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.17.214.0', '193.17.214.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.17.215.0', '193.17.215.255', 2147483647, 2147483647, 'CM', 'Cameroon'), +('193.17.216.0', '193.17.217.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.17.218.0', '193.17.218.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.17.219.0', '193.17.219.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.17.220.0', '193.17.220.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.17.221.0', '193.17.221.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.17.222.0', '193.17.222.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.17.223.0', '193.17.223.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.17.224.0', '193.17.224.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.17.225.0', '193.17.225.255', 2147483647, 2147483647, 'FR', 'France'), +('193.17.227.0', '193.17.227.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('193.17.228.0', '193.17.228.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.17.229.0', '193.17.229.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('193.17.230.0', '193.17.230.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.17.231.0', '193.17.231.255', 2147483647, 2147483647, 'FI', 'Finland'), +('193.17.232.0', '193.17.251.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.17.252.0', '193.17.252.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.17.253.0', '193.17.253.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.17.254.0', '193.19.63.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.19.64.0', '193.19.65.255', 2147483647, 2147483647, 'NO', 'Norway'), +('193.19.66.0', '193.19.71.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.19.72.0', '193.19.73.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.19.74.0', '193.19.75.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.19.76.0', '193.19.77.255', 2147483647, 2147483647, 'FR', 'France'), +('193.19.78.0', '193.19.79.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.19.80.0', '193.19.81.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.19.82.0', '193.19.83.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.19.84.0', '193.19.87.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.19.88.0', '193.19.89.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.19.90.0', '193.19.91.255', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('193.19.92.0', '193.19.93.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.19.94.0', '193.19.95.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.19.96.0', '193.19.97.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.19.98.0', '193.19.99.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.19.100.0', '193.19.101.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.19.102.0', '193.19.103.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.19.104.0', '193.19.105.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.19.106.0', '193.19.107.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.19.108.0', '193.19.111.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.19.112.0', '193.19.113.255', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('193.19.114.0', '193.19.115.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.19.116.0', '193.19.117.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.19.118.0', '193.19.119.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.19.120.0', '193.19.121.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.19.122.0', '193.19.125.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.19.126.0', '193.19.127.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.19.128.0', '193.19.131.255', 2147483647, 2147483647, 'IR', 'Iran, Islamic Republic of'), +('193.19.132.0', '193.19.135.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.19.140.0', '193.19.143.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.19.144.0', '193.19.147.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.19.148.0', '193.19.151.255', 2147483647, 2147483647, 'KW', 'Kuwait'), +('193.19.152.0', '193.19.155.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.19.156.0', '193.19.159.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.19.160.0', '193.19.163.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.19.164.0', '193.19.167.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.19.168.0', '193.19.171.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.19.172.0', '193.19.175.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('193.19.176.0', '193.19.179.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('193.19.180.0', '193.19.183.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.19.184.0', '193.19.187.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.19.188.0', '193.19.191.255', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('193.19.192.0', '193.19.195.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.19.196.0', '193.19.199.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.19.200.0', '193.19.207.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.19.208.0', '193.19.211.255', 2147483647, 2147483647, 'FR', 'France'), +('193.19.212.0', '193.19.215.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.19.216.0', '193.19.219.255', 2147483647, 2147483647, 'FR', 'France'), +('193.19.220.0', '193.19.223.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('193.19.224.0', '193.19.227.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.19.228.0', '193.19.231.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.19.232.0', '193.19.235.255', 2147483647, 2147483647, 'EG', 'Egypt'), +('193.19.236.0', '193.19.239.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.19.240.0', '193.19.247.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.19.248.0', '193.19.251.255', 2147483647, 2147483647, 'FR', 'France'), +('193.19.252.0', '193.19.255.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.20.0.0', '193.22.4.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.22.5.0', '193.22.5.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.22.6.0', '193.22.6.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.22.7.0', '193.22.7.255', 2147483647, 2147483647, 'FR', 'France'), +('193.22.8.0', '193.22.27.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.22.28.0', '193.22.28.255', 2147483647, 2147483647, 'NO', 'Norway'), +('193.22.29.0', '193.22.29.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.22.30.0', '193.22.30.255', 2147483647, 2147483647, 'CY', 'Cyprus'), +('193.22.31.0', '193.22.31.255', 2147483647, 2147483647, 'HR', 'Croatia'), +('193.22.32.0', '193.22.79.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.22.80.0', '193.22.80.255', 2147483647, 2147483647, 'IL', 'Israel'), +('193.22.81.0', '193.22.81.255', 2147483647, 2147483647, 'HR', 'Croatia'), +('193.22.82.0', '193.22.82.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.22.83.0', '193.22.83.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.22.84.0', '193.22.84.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.22.85.0', '193.22.85.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.22.86.0', '193.22.86.255', 2147483647, 2147483647, 'FI', 'Finland'), +('193.22.87.0', '193.22.87.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.22.88.0', '193.22.88.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.22.89.0', '193.22.89.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.22.90.0', '193.22.90.255', 2147483647, 2147483647, 'IT', 'Italy'), +('193.22.91.0', '193.22.91.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.22.92.0', '193.22.92.255', 2147483647, 2147483647, 'FR', 'France'), +('193.22.93.0', '193.22.93.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.22.94.0', '193.22.94.255', 2147483647, 2147483647, 'NO', 'Norway'), +('193.22.95.0', '193.22.95.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.22.96.0', '193.22.101.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.22.102.0', '193.22.102.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.22.103.0', '193.22.103.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('193.22.104.0', '193.22.106.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.22.107.0', '193.22.107.255', 2147483647, 2147483647, 'FR', 'France'), +('193.22.108.0', '193.22.118.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.22.119.0', '193.22.119.255', 2147483647, 2147483647, 'ES', 'Spain'), +('193.22.120.0', '193.22.137.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.22.138.0', '193.22.138.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.22.139.0', '193.22.139.255', 2147483647, 2147483647, 'FR', 'France'), +('193.22.140.0', '193.22.140.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.22.141.0', '193.22.141.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.22.142.0', '193.22.142.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.22.143.0', '193.22.143.255', 2147483647, 2147483647, 'FR', 'France'), +('193.22.144.0', '193.22.164.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.22.165.0', '193.22.165.255', 2147483647, 2147483647, 'ES', 'Spain'), +('193.22.166.0', '193.22.167.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.22.168.0', '193.22.168.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.22.169.0', '193.22.169.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.22.170.0', '193.22.170.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.22.171.0', '193.22.171.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.22.172.0', '193.22.172.255', 2147483647, 2147483647, 'KW', 'Kuwait'), +('193.22.173.0', '193.22.173.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.22.174.0', '193.22.174.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.22.175.0', '193.22.175.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.22.176.0', '193.22.223.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.22.224.0', '193.22.239.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('193.22.240.0', '193.22.241.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.22.242.0', '193.22.242.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.22.243.0', '193.22.245.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.22.246.0', '193.22.247.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.22.248.0', '193.22.248.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('193.22.249.0', '193.22.249.255', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('193.22.250.0', '193.22.250.255', 2147483647, 2147483647, 'NO', 'Norway'), +('193.22.251.0', '193.22.251.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.22.252.0', '193.22.252.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.22.253.0', '193.22.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.23.0.0', '193.23.0.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.23.1.0', '193.23.47.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.23.48.0', '193.23.48.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.23.49.0', '193.23.49.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('193.23.50.0', '193.23.50.255', 2147483647, 2147483647, 'LT', 'Lithuania'), +('193.23.51.0', '193.23.51.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.23.52.0', '193.23.52.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('193.23.53.0', '193.23.53.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.23.54.0', '193.23.54.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.23.55.0', '193.23.55.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.23.56.0', '193.23.56.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.23.57.0', '193.23.57.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.23.58.0', '193.23.58.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.23.59.0', '193.23.59.255', 2147483647, 2147483647, 'LT', 'Lithuania'), +('193.23.60.0', '193.23.60.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.23.61.0', '193.23.61.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.23.62.0', '193.23.62.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('193.23.63.0', '193.23.63.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.23.64.0', '193.23.111.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.23.112.0', '193.23.113.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.23.114.0', '193.23.114.255', 2147483647, 2147483647, 'IT', 'Italy'), +('193.23.115.0', '193.23.115.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('193.23.116.0', '193.23.116.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.23.117.0', '193.23.117.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.23.118.0', '193.23.118.255', 2147483647, 2147483647, 'GR', 'Greece'), +('193.23.119.0', '193.23.119.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.23.120.0', '193.23.120.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.23.121.0', '193.23.121.255', 2147483647, 2147483647, 'FR', 'France'), +('193.23.122.0', '193.23.122.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.23.123.0', '193.23.123.255', 2147483647, 2147483647, 'FR', 'France'), +('193.23.124.0', '193.23.124.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.23.125.0', '193.23.125.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.23.126.0', '193.23.126.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.23.127.0', '193.23.127.255', 2147483647, 2147483647, 'FR', 'France'), +('193.23.128.0', '193.23.135.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.23.136.0', '193.23.136.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.23.137.0', '193.23.137.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('193.23.138.0', '193.23.139.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('193.23.140.0', '193.23.140.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.23.141.0', '193.23.141.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.23.142.0', '193.23.142.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.23.143.0', '193.23.143.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.23.144.0', '193.23.155.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.23.156.0', '193.23.156.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('193.23.157.0', '193.23.157.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.23.158.0', '193.23.158.255', 2147483647, 2147483647, 'FR', 'France'), +('193.23.159.0', '193.23.159.255', 2147483647, 2147483647, 'NO', 'Norway'), +('193.23.160.0', '193.23.171.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.23.172.0', '193.23.172.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.23.173.0', '193.23.173.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('193.23.174.0', '193.23.174.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.23.175.0', '193.23.175.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.23.176.0', '193.23.179.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.23.180.0', '193.23.180.255', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('193.23.181.0', '193.23.181.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.23.182.0', '193.23.182.255', 2147483647, 2147483647, 'HR', 'Croatia'), +('193.23.183.0', '193.23.183.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.23.184.0', '193.23.223.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.23.224.0', '193.23.224.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.23.225.0', '193.23.225.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.23.226.0', '193.23.226.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.23.227.0', '193.23.227.255', 2147483647, 2147483647, 'FR', 'France'), +('193.23.228.0', '193.23.228.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.23.229.0', '193.23.229.255', 2147483647, 2147483647, 'NO', 'Norway'), +('193.23.230.0', '193.23.254.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.23.255.0', '193.23.255.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('193.24.0.0', '193.24.0.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.24.1.0', '193.24.13.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.24.14.0', '193.24.14.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.24.15.0', '193.24.23.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.24.24.0', '193.24.24.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.24.25.0', '193.24.25.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.24.26.0', '193.24.26.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.24.27.0', '193.24.27.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.24.28.0', '193.24.28.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.24.29.0', '193.24.29.255', 2147483647, 2147483647, 'IT', 'Italy'), +('193.24.30.0', '193.24.30.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.24.31.0', '193.24.31.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.24.32.0', '193.24.63.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.24.64.0', '193.24.71.255', 2147483647, 2147483647, 'FI', 'Finland'), +('193.24.72.0', '193.24.191.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.24.192.0', '193.24.195.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.24.196.0', '193.24.207.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.24.208.0', '193.24.211.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.24.212.0', '193.24.215.255', 2147483647, 2147483647, 'FR', 'France'), +('193.24.216.0', '193.24.219.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.24.220.0', '193.24.223.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.24.224.0', '193.24.227.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.24.228.0', '193.24.231.255', 2147483647, 2147483647, 'FR', 'France'), +('193.24.232.0', '193.24.235.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.24.236.0', '193.24.239.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.24.240.0', '193.24.243.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('193.24.244.0', '193.24.247.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.24.248.0', '193.24.251.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('193.24.252.0', '193.24.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.25.0.0', '193.25.7.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.25.8.0', '193.25.15.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.25.16.0', '193.25.95.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.25.96.0', '193.25.97.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('193.25.98.0', '193.25.99.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.25.100.0', '193.25.101.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.25.102.0', '193.25.103.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.25.104.0', '193.25.105.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.25.106.0', '193.25.107.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.25.108.0', '193.25.109.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.25.110.0', '193.25.113.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.25.114.0', '193.25.115.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.25.116.0', '193.25.117.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.25.118.0', '193.25.119.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.25.120.0', '193.25.121.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.25.122.0', '193.25.123.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.25.124.0', '193.25.125.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('193.25.126.0', '193.25.127.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.25.128.0', '193.25.159.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.25.160.0', '193.25.161.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.25.162.0', '193.25.163.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('193.25.164.0', '193.25.165.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('193.25.166.0', '193.25.169.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.25.170.0', '193.25.171.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.25.172.0', '193.25.175.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.25.176.0', '193.25.177.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.25.178.0', '193.25.179.255', 2147483647, 2147483647, 'IT', 'Italy'), +('193.25.180.0', '193.25.181.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.25.182.0', '193.25.183.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.25.184.0', '193.25.185.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.25.186.0', '193.25.189.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.25.190.0', '193.25.191.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.25.192.0', '193.25.192.255', 2147483647, 2147483647, 'ES', 'Spain'), +('193.25.193.0', '193.25.193.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.25.194.0', '193.25.195.255', 2147483647, 2147483647, 'FR', 'France'), +('193.25.196.0', '193.25.196.255', 2147483647, 2147483647, 'IT', 'Italy'), +('193.25.197.0', '193.25.198.255', 2147483647, 2147483647, 'FR', 'France'), +('193.25.199.0', '193.25.199.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.25.200.0', '193.25.219.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.25.220.0', '193.25.220.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.25.221.0', '193.25.221.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.25.222.0', '193.25.223.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.25.224.0', '193.25.254.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.25.255.0', '193.25.255.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.26.0.0', '193.26.0.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.26.1.0', '193.26.1.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.26.2.0', '193.26.2.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.26.3.0', '193.26.3.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.26.4.0', '193.26.4.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.26.5.0', '193.26.5.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.26.6.0', '193.26.6.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.26.7.0', '193.26.7.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.26.8.0', '193.26.8.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.26.9.0', '193.26.9.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.26.10.0', '193.26.10.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.26.11.0', '193.26.11.255', 2147483647, 2147483647, 'FR', 'France'), +('193.26.12.0', '193.26.12.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.26.13.0', '193.26.13.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.26.14.0', '193.26.14.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('193.26.15.0', '193.26.15.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.26.16.0', '193.26.16.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.26.17.0', '193.26.17.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.26.18.0', '193.26.18.255', 2147483647, 2147483647, 'BY', 'Belarus'), +('193.26.19.0', '193.26.19.255', 2147483647, 2147483647, 'FR', 'France'), +('193.26.20.0', '193.26.20.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.26.21.0', '193.26.21.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.26.22.0', '193.26.22.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.26.23.0', '193.26.23.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.26.24.0', '193.26.24.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.26.25.0', '193.26.25.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.26.26.0', '193.26.26.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('193.26.27.0', '193.26.27.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.26.28.0', '193.26.28.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.26.29.0', '193.26.29.255', 2147483647, 2147483647, 'FR', 'France'), +('193.26.30.0', '193.26.30.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.26.31.0', '193.26.31.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('193.26.32.0', '193.26.63.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.26.64.0', '193.26.95.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.26.96.0', '193.26.127.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.26.128.0', '193.26.128.255', 2147483647, 2147483647, 'IT', 'Italy'), +('193.26.129.0', '193.26.129.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.26.130.0', '193.26.130.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.26.131.0', '193.26.131.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.26.132.0', '193.26.132.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('193.26.133.0', '193.26.133.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.26.134.0', '193.26.134.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.26.135.0', '193.26.135.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.26.136.0', '193.26.207.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.26.208.0', '193.26.208.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.26.209.0', '193.26.209.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.26.210.0', '193.26.211.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.26.212.0', '193.26.212.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.26.213.0', '193.26.213.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.26.214.0', '193.26.214.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.26.215.0', '193.26.215.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.26.216.0', '193.26.216.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('193.26.217.0', '193.26.217.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.26.218.0', '193.26.218.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('193.26.219.0', '193.26.219.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.26.220.0', '193.26.220.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.26.221.0', '193.26.221.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.26.222.0', '193.26.223.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.26.224.0', '193.26.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.27.0.0', '193.27.0.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.27.1.0', '193.27.1.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.27.2.0', '193.27.3.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('193.27.4.0', '193.27.4.255', 2147483647, 2147483647, 'FR', 'France'), +('193.27.5.0', '193.27.6.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.27.7.0', '193.27.7.255', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('193.27.8.0', '193.27.8.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.27.9.0', '193.27.9.255', 2147483647, 2147483647, 'ES', 'Spain'), +('193.27.10.0', '193.27.10.255', 2147483647, 2147483647, 'FR', 'France'), +('193.27.11.0', '193.27.11.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('193.27.12.0', '193.27.39.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.27.40.0', '193.27.40.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.27.41.0', '193.27.41.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.27.42.0', '193.27.42.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.27.43.0', '193.27.43.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.27.44.0', '193.27.44.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('193.27.45.0', '193.27.45.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.27.46.0', '193.27.46.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.27.47.0', '193.27.47.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.27.48.0', '193.27.63.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.27.64.0', '193.27.65.255', 2147483647, 2147483647, 'EU', 'Europe'), +('193.27.66.0', '193.27.67.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.27.68.0', '193.27.69.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.27.70.0', '193.27.73.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.27.74.0', '193.27.77.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.27.78.0', '193.27.79.255', 2147483647, 2147483647, 'FR', 'France'), +('193.27.80.0', '193.27.81.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.27.82.0', '193.27.83.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.27.84.0', '193.27.85.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.27.86.0', '193.27.87.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.27.88.0', '193.27.89.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.27.90.0', '193.27.91.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.27.92.0', '193.27.93.255', 2147483647, 2147483647, 'IL', 'Israel'), +('193.27.94.0', '193.27.95.255', 2147483647, 2147483647, 'NO', 'Norway'), +('193.27.96.0', '193.27.191.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.27.192.0', '193.27.193.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.27.194.0', '193.27.195.255', 2147483647, 2147483647, 'FR', 'France'), +('193.27.196.0', '193.27.197.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.27.198.0', '193.27.199.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.27.200.0', '193.27.201.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.27.202.0', '193.27.203.255', 2147483647, 2147483647, 'IT', 'Italy'), +('193.27.204.0', '193.27.205.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.27.206.0', '193.27.207.255', 2147483647, 2147483647, 'UZ', 'Uzbekistan'), +('193.27.208.0', '193.27.209.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.27.210.0', '193.27.211.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.27.212.0', '193.27.213.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.27.214.0', '193.27.215.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.27.216.0', '193.27.217.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('193.27.218.0', '193.27.219.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.27.220.0', '193.27.221.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.27.222.0', '193.27.225.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.27.226.0', '193.27.227.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.27.228.0', '193.27.229.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.27.230.0', '193.27.233.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.27.234.0', '193.27.235.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.27.236.0', '193.27.241.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.27.242.0', '193.27.243.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.27.244.0', '193.27.245.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.27.246.0', '193.27.249.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.27.250.0', '193.27.251.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('193.27.252.0', '193.27.253.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.27.254.0', '193.27.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.28.0.0', '193.28.0.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.28.1.0', '193.28.5.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.28.6.0', '193.28.6.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.28.7.0', '193.28.7.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.28.8.0', '193.28.8.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('193.28.9.0', '193.28.10.255', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('193.28.11.0', '193.28.11.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.28.12.0', '193.28.12.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.28.13.0', '193.28.13.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.28.14.0', '193.28.41.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.28.42.0', '193.28.42.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.28.43.0', '193.28.43.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.28.44.0', '193.28.44.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.28.45.0', '193.28.45.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.28.46.0', '193.28.46.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.28.47.0', '193.28.47.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.28.48.0', '193.28.83.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.28.84.0', '193.28.84.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.28.85.0', '193.28.85.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.28.86.0', '193.28.86.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('193.28.87.0', '193.28.87.255', 2147483647, 2147483647, 'CA', 'Canada'), +('193.28.88.0', '193.28.88.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.28.89.0', '193.28.89.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.28.90.0', '193.28.91.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.28.92.0', '193.28.92.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.28.93.0', '193.28.93.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.28.94.0', '193.28.94.255', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('193.28.95.0', '193.28.95.255', 2147483647, 2147483647, 'IT', 'Italy'), +('193.28.96.0', '193.28.143.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.28.144.0', '193.28.144.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.28.145.0', '193.28.145.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.28.146.0', '193.28.146.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('193.28.147.0', '193.28.147.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('193.28.148.0', '193.28.148.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.28.149.0', '193.28.149.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('193.28.150.0', '193.28.150.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.28.151.0', '193.28.151.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.28.152.0', '193.28.152.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.28.153.0', '193.28.153.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.28.154.0', '193.28.154.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.28.155.0', '193.28.155.255', 2147483647, 2147483647, 'IL', 'Israel'), +('193.28.156.0', '193.28.156.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.28.157.0', '193.28.157.255', 2147483647, 2147483647, 'IT', 'Italy'), +('193.28.158.0', '193.28.158.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.28.159.0', '193.28.175.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.28.176.0', '193.28.176.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.28.177.0', '193.28.177.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.28.178.0', '193.28.179.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.28.180.0', '193.28.180.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.28.181.0', '193.28.181.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.28.182.0', '193.28.182.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.28.183.0', '193.28.183.255', 2147483647, 2147483647, 'FR', 'France'), +('193.28.184.0', '193.28.184.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.28.185.0', '193.28.185.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.28.186.0', '193.28.186.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.28.187.0', '193.28.187.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.28.188.0', '193.28.188.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.28.189.0', '193.28.189.255', 2147483647, 2147483647, 'ES', 'Spain'), +('193.28.190.0', '193.28.190.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.28.191.0', '193.28.191.255', 2147483647, 2147483647, 'FR', 'France'), +('193.28.192.0', '193.28.199.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.28.200.0', '193.28.200.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.28.201.0', '193.28.201.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.28.202.0', '193.28.202.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('193.28.203.0', '193.28.203.255', 2147483647, 2147483647, 'FI', 'Finland'), +('193.28.204.0', '193.28.204.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.28.205.0', '193.28.205.255', 2147483647, 2147483647, 'FR', 'France'), +('193.28.206.0', '193.28.206.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.28.207.0', '193.28.223.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.28.224.0', '193.28.224.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('193.28.226.0', '193.28.226.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.28.227.0', '193.28.227.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('193.28.228.0', '193.28.229.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.28.230.0', '193.28.230.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.28.231.0', '193.28.231.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('193.28.232.0', '193.28.232.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.28.233.0', '193.28.233.255', 2147483647, 2147483647, 'FR', 'France'), +('193.28.234.0', '193.28.234.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.28.235.0', '193.28.235.255', 2147483647, 2147483647, 'FR', 'France'), +('193.28.236.0', '193.28.236.255', 2147483647, 2147483647, 'NO', 'Norway'), +('193.28.237.0', '193.28.237.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.28.238.0', '193.28.238.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.28.239.0', '193.28.239.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.28.240.0', '193.28.249.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.28.250.0', '193.28.250.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('193.28.251.0', '193.28.251.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.28.252.0', '193.28.252.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.28.253.0', '193.28.253.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.28.254.0', '193.28.254.255', 2147483647, 2147483647, 'EE', 'Estonia'), +('193.28.255.0', '193.28.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.29.0.0', '193.29.38.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.29.39.0', '193.29.39.255', 2147483647, 2147483647, 'LT', 'Lithuania'), +('193.29.40.0', '193.29.47.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.29.48.0', '193.29.48.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.29.49.0', '193.29.49.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('193.29.50.0', '193.29.50.255', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('193.29.51.0', '193.29.51.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.29.52.0', '193.29.52.255', 2147483647, 2147483647, 'FR', 'France'), +('193.29.53.0', '193.29.53.255', 2147483647, 2147483647, 'KZ', 'Kazakstan'), +('193.29.54.0', '193.29.54.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.29.55.0', '193.29.55.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('193.29.56.0', '193.29.127.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.29.128.0', '193.29.128.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.29.129.0', '193.29.129.255', 2147483647, 2147483647, 'FR', 'France'), +('193.29.130.0', '193.29.138.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.29.139.0', '193.29.139.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.29.140.0', '193.29.186.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.29.187.0', '193.29.187.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.29.188.0', '193.29.199.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.29.200.0', '193.29.200.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('193.29.201.0', '193.29.201.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('193.29.202.0', '193.29.202.255', 2147483647, 2147483647, 'ES', 'Spain'), +('193.29.203.0', '193.29.204.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.29.205.0', '193.29.205.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.29.206.0', '193.29.206.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('193.29.207.0', '193.29.207.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.29.208.0', '193.29.219.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.29.220.0', '193.29.220.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.29.221.0', '193.29.221.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('193.29.222.0', '193.29.222.255', 2147483647, 2147483647, 'FR', 'France'), +('193.29.223.0', '193.29.223.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.29.224.0', '193.29.254.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.29.255.0', '193.29.255.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.30.0.0', '193.30.0.255', 2147483647, 2147483647, 'NO', 'Norway'), +('193.30.1.0', '193.30.23.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.30.24.0', '193.30.27.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.30.28.0', '193.30.38.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.30.39.0', '193.30.39.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.30.40.0', '193.30.40.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.30.41.0', '193.30.41.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.30.42.0', '193.30.42.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.30.43.0', '193.30.43.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('193.30.44.0', '193.30.107.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.30.108.0', '193.30.108.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.30.109.0', '193.30.109.255', 2147483647, 2147483647, 'PL', 'Poland'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('193.30.110.0', '193.30.110.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('193.30.111.0', '193.30.111.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.30.112.0', '193.30.140.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.30.141.0', '193.30.141.255', 2147483647, 2147483647, 'FR', 'France'), +('193.30.142.0', '193.30.142.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.30.143.0', '193.30.143.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.30.144.0', '193.30.159.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.30.160.0', '193.30.160.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.30.161.0', '193.30.161.255', 2147483647, 2147483647, 'IL', 'Israel'), +('193.30.162.0', '193.30.162.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.30.163.0', '193.30.163.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.30.164.0', '193.30.164.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('193.30.165.0', '193.30.165.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.30.166.0', '193.30.166.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.30.167.0', '193.30.167.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.30.168.0', '193.30.223.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.30.224.0', '193.30.227.255', 2147483647, 2147483647, 'FR', 'France'), +('193.30.228.0', '193.30.231.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('193.30.232.0', '193.30.235.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.30.236.0', '193.30.239.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.30.240.0', '193.30.247.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.30.248.0', '193.30.251.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.30.252.0', '193.30.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.31.0.0', '193.31.0.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.31.1.0', '193.31.13.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.31.14.0', '193.31.14.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.31.15.0', '193.31.15.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('193.31.16.0', '193.31.251.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.31.252.0', '193.31.253.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.31.254.0', '193.31.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.32.0.0', '193.32.18.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.32.19.0', '193.32.19.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.32.20.0', '193.32.20.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.32.21.0', '193.32.21.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.32.22.0', '193.32.35.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.32.36.0', '193.32.37.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.32.38.0', '193.32.99.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.32.100.0', '193.32.100.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.32.101.0', '193.32.101.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('193.32.102.0', '193.32.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.33.0.0', '193.33.1.255', 2147483647, 2147483647, 'IT', 'Italy'), +('193.33.2.0', '193.33.3.255', 2147483647, 2147483647, 'ES', 'Spain'), +('193.33.4.0', '193.33.5.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.33.6.0', '193.33.7.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.33.8.0', '193.33.9.255', 2147483647, 2147483647, 'MD', 'Moldova, Republic of'), +('193.33.10.0', '193.33.11.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.33.12.0', '193.33.13.255', 2147483647, 2147483647, 'FR', 'France'), +('193.33.14.0', '193.33.15.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('193.33.16.0', '193.33.17.255', 2147483647, 2147483647, 'IL', 'Israel'), +('193.33.18.0', '193.33.19.255', 2147483647, 2147483647, 'IT', 'Italy'), +('193.33.20.0', '193.33.21.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.33.22.0', '193.33.23.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('193.33.24.0', '193.33.25.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.33.26.0', '193.33.29.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.33.30.0', '193.33.31.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.33.32.0', '193.33.33.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.33.34.0', '193.33.35.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.33.36.0', '193.33.37.255', 2147483647, 2147483647, 'FR', 'France'), +('193.33.38.0', '193.33.41.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.33.42.0', '193.33.43.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.33.44.0', '193.33.45.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.33.46.0', '193.33.47.255', 2147483647, 2147483647, 'FR', 'France'), +('193.33.48.0', '193.33.49.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.33.50.0', '193.33.51.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.33.52.0', '193.33.53.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('193.33.54.0', '193.33.55.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.33.56.0', '193.33.57.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.33.58.0', '193.33.59.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.33.60.0', '193.33.61.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.33.62.0', '193.33.63.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.33.64.0', '193.33.65.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.33.66.0', '193.33.67.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.33.68.0', '193.33.69.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.33.70.0', '193.33.71.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.33.71.64', '193.33.71.95', 2147483647, 2147483647, 'CR', 'Costa Rica'), +('193.33.71.96', '193.33.71.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.33.72.0', '193.33.73.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.33.74.0', '193.33.75.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.33.76.0', '193.33.77.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.33.78.0', '193.33.79.255', 2147483647, 2147483647, 'FR', 'France'), +('193.33.80.0', '193.33.85.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.33.86.0', '193.33.87.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.33.88.0', '193.33.89.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.33.90.0', '193.33.91.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.33.92.0', '193.33.93.255', 2147483647, 2147483647, 'MD', 'Moldova, Republic of'), +('193.33.94.0', '193.33.95.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.33.96.0', '193.33.97.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.33.98.0', '193.33.99.255', 2147483647, 2147483647, 'IT', 'Italy'), +('193.33.100.0', '193.33.101.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.33.102.0', '193.33.103.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.33.104.0', '193.33.105.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.33.106.0', '193.33.107.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.33.108.0', '193.33.109.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.33.110.0', '193.33.111.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.33.112.0', '193.33.113.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.33.114.0', '193.33.115.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.33.116.0', '193.33.117.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.33.118.0', '193.33.119.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.33.120.0', '193.33.123.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.33.124.0', '193.33.125.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.33.126.0', '193.33.127.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('193.33.128.0', '193.33.129.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.33.130.0', '193.33.131.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.33.132.0', '193.33.133.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('193.33.134.0', '193.33.135.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.33.136.0', '193.33.137.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.33.138.0', '193.33.139.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.33.140.0', '193.33.141.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.33.142.0', '193.33.143.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.33.144.0', '193.33.145.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.33.146.0', '193.33.147.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.33.150.0', '193.33.153.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.33.154.0', '193.33.155.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.33.156.0', '193.33.157.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.33.158.0', '193.33.159.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.33.160.0', '193.33.161.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.33.162.0', '193.33.165.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.33.166.0', '193.33.167.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.33.168.0', '193.33.169.255', 2147483647, 2147483647, 'FR', 'France'), +('193.33.170.0', '193.33.171.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.33.172.0', '193.33.173.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.33.174.0', '193.33.177.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.33.178.0', '193.33.179.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.33.180.0', '193.33.181.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.33.182.0', '193.33.183.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('193.33.184.0', '193.33.185.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.33.186.0', '193.33.187.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.33.188.0', '193.33.189.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.33.190.0', '193.33.191.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('193.33.192.0', '193.33.195.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.33.196.0', '193.33.197.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.33.198.0', '193.33.199.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.33.200.0', '193.33.201.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.33.202.0', '193.33.203.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.33.204.0', '193.33.205.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.33.206.0', '193.33.207.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.33.208.0', '193.33.209.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.33.210.0', '193.33.211.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.33.212.0', '193.33.213.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.33.214.0', '193.33.215.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.33.216.0', '193.33.217.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.33.218.0', '193.33.219.255', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('193.33.220.0', '193.33.221.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.33.222.0', '193.33.223.255', 2147483647, 2147483647, 'FR', 'France'), +('193.33.224.0', '193.33.225.255', 2147483647, 2147483647, 'KW', 'Kuwait'), +('193.33.226.0', '193.33.227.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.33.228.0', '193.33.229.255', 2147483647, 2147483647, 'MT', 'Malta'), +('193.33.230.0', '193.33.233.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.33.234.0', '193.33.235.255', 2147483647, 2147483647, 'IL', 'Israel'), +('193.33.236.0', '193.33.237.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.33.238.0', '193.33.239.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.33.240.0', '193.33.243.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.33.244.0', '193.33.245.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.33.246.0', '193.33.247.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.33.248.0', '193.33.249.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.33.250.0', '193.33.253.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.33.254.0', '193.33.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.34.0.0', '193.34.3.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.34.4.0', '193.34.7.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.34.8.0', '193.34.15.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.34.16.0', '193.34.19.255', 2147483647, 2147483647, 'FR', 'France'), +('193.34.20.0', '193.34.23.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.34.24.0', '193.34.27.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.34.28.0', '193.34.31.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.34.32.0', '193.34.35.255', 2147483647, 2147483647, 'FR', 'France'), +('193.34.36.0', '193.34.39.255', 2147483647, 2147483647, 'US', 'United States'), +('193.34.40.0', '193.34.43.255', 2147483647, 2147483647, 'FI', 'Finland'), +('193.34.44.0', '193.34.47.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.34.48.0', '193.34.51.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.34.52.0', '193.34.55.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.34.56.0', '193.34.59.255', 2147483647, 2147483647, 'IL', 'Israel'), +('193.34.60.0', '193.34.63.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.34.64.0', '193.34.67.255', 2147483647, 2147483647, 'RS', 'Serbia'), +('193.34.68.0', '193.34.71.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.34.72.0', '193.34.79.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.34.80.0', '193.34.83.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('193.34.84.0', '193.34.87.255', 2147483647, 2147483647, 'LT', 'Lithuania'), +('193.34.88.0', '193.34.91.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('193.34.92.0', '193.34.99.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.34.100.0', '193.34.103.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.34.104.0', '193.34.107.255', 2147483647, 2147483647, 'FO', 'Faroe Islands'), +('193.34.108.0', '193.34.111.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.34.112.0', '193.34.115.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.34.116.0', '193.34.123.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.34.124.0', '193.34.127.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.34.128.0', '193.34.129.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.34.130.0', '193.34.131.255', 2147483647, 2147483647, 'FR', 'France'), +('193.34.132.0', '193.34.133.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('193.34.134.0', '193.34.135.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.34.136.0', '193.34.137.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.34.138.0', '193.34.139.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.34.140.0', '193.34.141.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.34.142.0', '193.34.143.255', 2147483647, 2147483647, 'RS', 'Serbia'), +('193.34.144.0', '193.34.145.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.34.146.0', '193.34.149.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.34.150.0', '193.34.151.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.34.152.0', '193.34.153.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.34.154.0', '193.34.155.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.34.156.0', '193.34.157.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.34.158.0', '193.34.159.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.34.160.0', '193.34.161.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.34.162.0', '193.34.163.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.34.164.0', '193.34.165.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.34.166.0', '193.34.167.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.34.168.0', '193.34.169.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.34.170.0', '193.34.171.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.34.172.0', '193.34.173.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.34.174.0', '193.34.175.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.34.176.0', '193.34.177.255', 2147483647, 2147483647, 'GR', 'Greece'), +('193.34.178.0', '193.34.179.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.34.180.0', '193.34.183.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.34.184.0', '193.34.185.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.34.186.0', '193.34.187.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.34.188.0', '193.34.189.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.34.190.0', '193.34.191.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.34.192.0', '193.34.192.127', 2147483647, 2147483647, 'DE', 'Germany'), +('193.34.192.128', '193.34.193.127', 2147483647, 2147483647, 'PL', 'Poland'), +('193.34.193.128', '193.34.193.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.34.194.0', '193.34.194.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.34.194.128', '193.34.194.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.34.195.0', '193.34.195.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.34.195.128', '193.34.196.127', 2147483647, 2147483647, 'PL', 'Poland'), +('193.34.196.128', '193.34.196.255', 2147483647, 2147483647, 'FR', 'France'), +('193.34.197.0', '193.34.197.127', 2147483647, 2147483647, 'PL', 'Poland'), +('193.34.197.128', '193.34.197.255', 2147483647, 2147483647, 'IR', 'Iran, Islamic Republic of'), +('193.34.198.0', '193.34.198.127', 2147483647, 2147483647, 'CY', 'Cyprus'), +('193.34.198.128', '193.34.198.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.34.199.0', '193.34.199.127', 2147483647, 2147483647, 'DE', 'Germany'), +('193.34.224.0', '193.34.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.35.0.0', '193.35.0.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.35.1.0', '193.35.24.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.35.25.0', '193.35.25.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.35.26.0', '193.35.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.36.0.0', '193.36.0.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('193.36.1.0', '193.36.31.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.36.32.0', '193.36.32.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.36.33.0', '193.36.33.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.36.34.0', '193.36.34.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.36.35.0', '193.36.35.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.36.36.0', '193.36.36.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.36.37.0', '193.36.37.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.36.38.0', '193.36.38.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.36.39.0', '193.36.39.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('193.36.40.0', '193.36.40.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('193.36.41.0', '193.36.42.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.36.43.0', '193.36.43.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('193.36.44.0', '193.36.44.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.36.45.0', '193.36.45.255', 2147483647, 2147483647, 'FR', 'France'), +('193.36.46.0', '193.36.46.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.36.47.0', '193.36.175.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.36.176.0', '193.36.176.255', 2147483647, 2147483647, 'IL', 'Israel'), +('193.36.177.0', '193.36.177.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.36.178.0', '193.36.178.255', 2147483647, 2147483647, 'NO', 'Norway'), +('193.36.179.0', '193.36.179.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.36.180.0', '193.36.180.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.36.181.0', '193.36.181.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.36.182.0', '193.36.182.255', 2147483647, 2147483647, 'FR', 'France'), +('193.36.183.0', '193.36.183.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.36.184.0', '193.36.184.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('193.36.185.0', '193.36.185.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.36.186.0', '193.36.186.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.36.187.0', '193.36.187.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.36.188.0', '193.36.188.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.36.189.0', '193.36.189.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.36.190.0', '193.36.190.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('193.36.191.0', '193.36.191.255', 2147483647, 2147483647, 'NO', 'Norway'), +('193.36.192.0', '193.36.225.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.36.226.0', '193.36.226.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.36.227.0', '193.36.227.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.36.228.0', '193.36.228.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.36.229.0', '193.36.229.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.36.230.0', '193.37.127.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.37.128.0', '193.37.130.255', 2147483647, 2147483647, 'IL', 'Israel'), +('193.37.131.0', '193.37.132.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.37.133.0', '193.37.133.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.37.134.0', '193.37.134.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.37.135.0', '193.37.135.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('193.37.136.0', '193.37.136.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.37.137.0', '193.37.137.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.37.138.0', '193.37.138.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.37.139.0', '193.37.139.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.37.140.0', '193.37.140.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.37.141.0', '193.37.141.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.37.142.0', '193.37.142.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.37.143.0', '193.37.143.255', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('193.37.144.0', '193.37.144.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.37.145.0', '193.37.145.255', 2147483647, 2147483647, 'FR', 'France'), +('193.37.146.0', '193.37.146.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.37.147.0', '193.37.147.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.37.148.0', '193.37.149.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.37.150.0', '193.37.150.255', 2147483647, 2147483647, 'FR', 'France'), +('193.37.151.0', '193.37.152.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.37.153.0', '193.37.153.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('193.37.154.0', '193.37.154.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('193.37.155.0', '193.37.155.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.37.156.0', '193.37.156.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.37.157.0', '193.37.157.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.37.158.0', '193.37.158.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.37.159.0', '193.37.159.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.37.160.0', '193.37.235.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.37.236.0', '193.37.236.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.37.237.0', '193.37.237.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.37.238.0', '193.37.238.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('193.37.239.0', '193.37.239.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.37.240.0', '193.39.65.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.39.66.0', '193.39.66.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.39.67.0', '193.39.67.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.39.68.0', '193.39.68.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.39.69.0', '193.39.69.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.39.70.0', '193.39.70.255', 2147483647, 2147483647, 'FR', 'France'), +('193.39.71.0', '193.39.71.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.39.72.0', '193.39.72.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.39.73.0', '193.39.73.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.39.74.0', '193.39.74.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.39.75.0', '193.39.77.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.39.78.0', '193.39.78.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.39.79.0', '193.39.79.255', 2147483647, 2147483647, 'IL', 'Israel'), +('193.39.80.0', '193.39.111.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.39.112.0', '193.39.112.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.39.113.0', '193.39.113.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.39.114.0', '193.39.114.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.39.115.0', '193.39.115.255', 2147483647, 2147483647, 'US', 'United States'), +('193.39.116.0', '193.39.116.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.39.117.0', '193.39.117.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.39.118.0', '193.39.118.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.39.119.0', '193.39.119.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.39.120.0', '193.39.135.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.39.136.0', '193.39.138.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.39.139.0', '193.39.139.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('193.39.140.0', '193.39.247.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.39.248.0', '193.39.249.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.39.250.0', '193.39.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.40.0.0', '193.40.255.255', 2147483647, 2147483647, 'EE', 'Estonia'), +('193.41.0.0', '193.41.1.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.41.2.0', '193.41.3.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('193.41.4.0', '193.41.5.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.41.6.0', '193.41.7.255', 2147483647, 2147483647, 'IT', 'Italy'), +('193.41.8.0', '193.41.11.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.41.12.0', '193.41.13.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('193.41.14.0', '193.41.15.255', 2147483647, 2147483647, 'ES', 'Spain'), +('193.41.16.0', '193.41.23.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('193.41.24.0', '193.41.31.255', 2147483647, 2147483647, 'ES', 'Spain'), +('193.41.32.0', '193.41.32.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.41.33.0', '193.41.33.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('193.41.34.0', '193.41.34.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.41.35.0', '193.41.36.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('193.41.37.0', '193.41.37.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.41.38.0', '193.41.38.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.41.39.0', '193.41.39.255', 2147483647, 2147483647, 'NO', 'Norway'), +('193.41.40.0', '193.41.40.255', 2147483647, 2147483647, 'LT', 'Lithuania'), +('193.41.41.0', '193.41.41.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.41.42.0', '193.41.42.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('193.41.43.0', '193.41.43.255', 2147483647, 2147483647, 'ES', 'Spain'), +('193.41.44.0', '193.41.44.255', 2147483647, 2147483647, 'FR', 'France'), +('193.41.45.0', '193.41.45.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('193.41.46.0', '193.41.46.255', 2147483647, 2147483647, 'ES', 'Spain'), +('193.41.47.0', '193.41.47.255', 2147483647, 2147483647, 'FR', 'France'), +('193.41.48.0', '193.41.51.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.41.52.0', '193.41.55.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.41.56.0', '193.41.59.255', 2147483647, 2147483647, 'GR', 'Greece'), +('193.41.60.0', '193.41.63.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.41.64.0', '193.41.67.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('193.41.68.0', '193.41.70.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.41.71.0', '193.41.75.255', 2147483647, 2147483647, 'FR', 'France'), +('193.41.76.0', '193.41.79.255', 2147483647, 2147483647, 'IT', 'Italy'), +('193.41.80.0', '193.41.80.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.41.81.0', '193.41.81.255', 2147483647, 2147483647, 'LT', 'Lithuania'), +('193.41.82.0', '193.41.82.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.41.83.0', '193.41.83.255', 2147483647, 2147483647, 'FR', 'France'), +('193.41.84.0', '193.41.85.255', 2147483647, 2147483647, 'IT', 'Italy'), +('193.41.86.0', '193.41.86.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.41.87.0', '193.41.87.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.41.88.0', '193.41.88.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.41.89.0', '193.41.89.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('193.41.90.0', '193.41.90.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.41.91.0', '193.41.91.255', 2147483647, 2147483647, 'IT', 'Italy'), +('193.41.92.0', '193.41.92.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.41.93.0', '193.41.93.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.41.94.0', '193.41.94.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.41.95.0', '193.41.95.255', 2147483647, 2147483647, 'FR', 'France'), +('193.41.96.0', '193.41.103.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.41.104.0', '193.41.111.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.41.112.0', '193.41.113.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.41.114.0', '193.41.115.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('193.41.116.0', '193.41.117.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.41.118.0', '193.41.119.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.41.120.0', '193.41.121.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.41.122.0', '193.41.123.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.41.124.0', '193.41.125.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.41.126.0', '193.41.127.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.41.128.0', '193.41.131.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.41.132.0', '193.41.135.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.41.136.0', '193.41.137.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.41.138.0', '193.41.139.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.41.140.0', '193.41.143.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.41.144.0', '193.41.145.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.41.146.0', '193.41.147.255', 2147483647, 2147483647, 'DZ', 'Algeria'), +('193.41.148.0', '193.41.149.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.41.150.0', '193.41.151.255', 2147483647, 2147483647, 'GR', 'Greece'), +('193.41.152.0', '193.41.155.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.41.156.0', '193.41.157.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('193.41.158.0', '193.41.159.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('193.41.160.0', '193.41.163.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.41.164.0', '193.41.167.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.41.168.0', '193.41.171.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.41.172.0', '193.41.175.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.41.176.0', '193.41.179.255', 2147483647, 2147483647, 'IT', 'Italy'), +('193.41.180.0', '193.41.181.255', 2147483647, 2147483647, 'FR', 'France'), +('193.41.182.0', '193.41.183.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('193.41.184.0', '193.41.187.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.41.188.0', '193.41.191.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('193.41.192.0', '193.41.192.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.41.193.0', '193.41.193.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.41.194.0', '193.41.194.255', 2147483647, 2147483647, 'FR', 'France'), +('193.41.195.0', '193.41.195.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('193.41.196.0', '193.41.196.255', 2147483647, 2147483647, 'US', 'United States'), +('193.41.197.0', '193.41.197.255', 2147483647, 2147483647, 'LT', 'Lithuania'), +('193.41.198.0', '193.41.198.255', 2147483647, 2147483647, 'IT', 'Italy'), +('193.41.199.0', '193.41.200.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.41.201.0', '193.41.201.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.41.202.0', '193.41.202.255', 2147483647, 2147483647, 'IL', 'Israel'), +('193.41.203.0', '193.41.203.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('193.41.204.0', '193.41.204.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('193.41.205.0', '193.41.205.255', 2147483647, 2147483647, 'IT', 'Italy'), +('193.41.206.0', '193.41.206.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('193.41.207.0', '193.41.207.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.41.208.0', '193.41.209.255', 2147483647, 2147483647, 'IL', 'Israel'), +('193.41.210.0', '193.41.211.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('193.41.212.0', '193.41.213.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.41.214.0', '193.41.215.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.41.216.0', '193.41.217.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.41.218.0', '193.41.219.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.41.220.0', '193.41.221.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.41.222.0', '193.41.223.255', 2147483647, 2147483647, 'FR', 'France'), +('193.41.224.0', '193.41.224.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.41.225.0', '193.41.225.255', 2147483647, 2147483647, 'US', 'United States'), +('193.41.226.0', '193.41.226.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.41.227.0', '193.41.227.255', 2147483647, 2147483647, 'ES', 'Spain'), +('193.41.228.0', '193.41.228.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.41.229.0', '193.41.229.255', 2147483647, 2147483647, 'GR', 'Greece'), +('193.41.230.0', '193.41.231.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.41.232.0', '193.41.232.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.41.233.0', '193.41.233.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('193.41.234.0', '193.41.234.255', 2147483647, 2147483647, 'ES', 'Spain'), +('193.41.235.0', '193.41.236.255', 2147483647, 2147483647, 'IT', 'Italy'), +('193.41.237.0', '193.41.237.255', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('193.41.238.0', '193.41.238.255', 2147483647, 2147483647, 'FR', 'France'), +('193.41.239.0', '193.41.239.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.41.240.0', '193.41.243.255', 2147483647, 2147483647, 'ES', 'Spain'), +('193.41.244.0', '193.41.251.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.41.252.0', '193.41.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.42.0.0', '193.42.0.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('193.42.1.0', '193.42.141.255', 2147483647, 2147483647, 'IT', 'Italy'), +('193.42.142.0', '193.42.142.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.42.143.0', '193.42.143.255', 2147483647, 2147483647, 'ES', 'Spain'), +('193.42.144.0', '193.42.144.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.42.145.0', '193.42.145.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.42.146.0', '193.42.146.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.42.147.0', '193.42.147.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.42.148.0', '193.42.148.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.42.149.0', '193.42.149.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.42.150.0', '193.42.151.255', 2147483647, 2147483647, 'FR', 'France'), +('193.42.152.0', '193.42.152.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.42.153.0', '193.42.154.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.42.155.0', '193.42.155.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.42.156.0', '193.42.156.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('193.42.157.0', '193.42.157.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.42.158.0', '193.42.158.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.42.159.0', '193.42.159.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.42.160.0', '193.42.209.255', 2147483647, 2147483647, 'IT', 'Italy'), +('193.42.210.0', '193.42.210.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.42.211.0', '193.42.211.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.42.212.0', '193.42.212.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.42.213.0', '193.42.213.255', 2147483647, 2147483647, 'FR', 'France'), +('193.42.214.0', '193.42.214.255', 2147483647, 2147483647, 'GR', 'Greece'), +('193.42.215.0', '193.42.215.255', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('193.42.216.0', '193.42.216.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('193.42.217.0', '193.42.217.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.42.218.0', '193.42.218.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.42.219.0', '193.42.219.255', 2147483647, 2147483647, 'FR', 'France'), +('193.42.220.0', '193.42.220.255', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('193.42.221.0', '193.42.221.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.42.222.0', '193.42.222.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('193.42.223.0', '193.42.223.255', 2147483647, 2147483647, 'KW', 'Kuwait'), +('193.42.224.0', '193.42.227.255', 2147483647, 2147483647, 'IT', 'Italy'), +('193.42.228.0', '193.42.231.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.42.232.0', '193.42.247.255', 2147483647, 2147483647, 'IT', 'Italy'), +('193.42.248.0', '193.42.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.43.0.0', '193.43.0.63', 2147483647, 2147483647, 'EU', 'Europe'), +('193.43.0.64', '193.43.0.95', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.43.0.96', '193.43.24.255', 2147483647, 2147483647, 'IT', 'Italy'), +('193.43.25.0', '193.43.25.255', 2147483647, 2147483647, 'FR', 'France'), +('193.43.26.0', '193.43.26.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('193.43.27.0', '193.43.27.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.43.28.0', '193.43.28.255', 2147483647, 2147483647, 'IT', 'Italy'), +('193.43.29.0', '193.43.29.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.43.30.0', '193.43.63.255', 2147483647, 2147483647, 'IT', 'Italy'), +('193.43.64.0', '193.43.64.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.43.65.0', '193.43.76.255', 2147483647, 2147483647, 'IT', 'Italy'), +('193.43.77.0', '193.43.77.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.43.78.0', '193.43.78.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.43.79.0', '193.43.79.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.43.80.0', '193.43.87.255', 2147483647, 2147483647, 'IT', 'Italy'), +('193.43.88.0', '193.43.89.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.43.90.0', '193.43.90.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.43.91.0', '193.43.92.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.43.93.0', '193.43.93.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.43.94.0', '193.43.94.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.43.95.0', '193.43.95.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.43.96.0', '193.43.101.255', 2147483647, 2147483647, 'IT', 'Italy'), +('193.43.102.0', '193.43.103.255', 2147483647, 2147483647, 'VA', 'Holy See (Vatican City State)'), +('193.43.104.0', '193.43.124.255', 2147483647, 2147483647, 'IT', 'Italy'), +('193.43.125.0', '193.43.125.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.43.126.0', '193.43.126.255', 2147483647, 2147483647, 'IT', 'Italy'), +('193.43.127.0', '193.43.127.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.43.128.0', '193.43.133.255', 2147483647, 2147483647, 'VA', 'Holy See (Vatican City State)'), +('193.43.134.0', '193.43.143.255', 2147483647, 2147483647, 'IT', 'Italy'), +('193.43.144.0', '193.43.144.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.43.145.0', '193.43.147.255', 2147483647, 2147483647, 'IT', 'Italy'), +('193.43.148.0', '193.43.148.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.43.149.0', '193.43.149.255', 2147483647, 2147483647, 'IT', 'Italy'), +('193.43.150.0', '193.43.150.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.43.151.0', '193.43.151.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.43.152.0', '193.43.157.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.43.158.0', '193.43.159.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.43.160.0', '193.43.179.255', 2147483647, 2147483647, 'IT', 'Italy'), +('193.43.180.0', '193.43.180.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.43.181.0', '193.43.181.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.43.182.0', '193.43.182.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.43.183.0', '193.43.183.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.43.184.0', '193.43.207.255', 2147483647, 2147483647, 'IT', 'Italy'), +('193.43.208.0', '193.43.209.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.43.210.0', '193.43.211.255', 2147483647, 2147483647, 'FR', 'France'), +('193.43.212.0', '193.43.213.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.43.214.0', '193.43.215.255', 2147483647, 2147483647, 'FR', 'France'), +('193.43.216.0', '193.43.217.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('193.43.218.0', '193.43.219.255', 2147483647, 2147483647, 'GR', 'Greece'), +('193.43.220.0', '193.43.221.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.43.222.0', '193.43.227.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.43.228.0', '193.43.231.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.43.232.0', '193.43.235.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.43.236.0', '193.43.239.255', 2147483647, 2147483647, 'EU', 'Europe'), +('193.43.240.0', '193.43.243.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.43.244.0', '193.43.247.255', 2147483647, 2147483647, 'IL', 'Israel'), +('193.43.248.0', '193.43.255.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.44.0.0', '193.45.38.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.45.39.0', '193.45.39.7', 2147483647, 2147483647, 'FI', 'Finland'), +('193.45.39.8', '193.45.65.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.45.66.0', '193.45.66.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.45.67.0', '193.45.67.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.45.68.0', '193.45.68.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.45.68.16', '193.45.141.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.45.142.0', '193.45.142.7', 2147483647, 2147483647, 'PL', 'Poland'), +('193.45.142.8', '193.45.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.46.0.0', '193.46.1.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.46.2.0', '193.46.2.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.46.3.0', '193.46.45.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.46.46.0', '193.46.46.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.46.47.0', '193.46.47.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.46.48.0', '193.46.59.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.46.60.0', '193.46.60.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.46.61.0', '193.46.61.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.46.62.0', '193.46.63.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.46.64.0', '193.46.64.255', 2147483647, 2147483647, 'IL', 'Israel'), +('193.46.65.0', '193.46.65.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.46.66.0', '193.46.66.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.46.67.0', '193.46.67.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.46.68.0', '193.46.68.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.46.69.0', '193.46.69.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('193.46.70.0', '193.46.70.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.46.71.0', '193.46.71.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('193.46.72.0', '193.46.72.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.46.73.0', '193.46.73.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.46.74.0', '193.46.74.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.46.75.0', '193.46.75.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('193.46.76.0', '193.46.76.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.46.77.0', '193.46.77.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.46.78.0', '193.46.78.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('193.46.79.0', '193.46.79.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('193.46.80.0', '193.46.80.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.46.81.0', '193.46.81.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.46.82.0', '193.46.82.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.46.83.0', '193.46.84.255', 2147483647, 2147483647, 'LT', 'Lithuania'), +('193.46.85.0', '193.46.85.255', 2147483647, 2147483647, 'FR', 'France'), +('193.46.86.0', '193.46.86.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.46.87.0', '193.46.87.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.46.88.0', '193.46.88.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.46.89.0', '193.46.89.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.46.90.0', '193.46.90.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.46.91.0', '193.46.91.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.46.92.0', '193.46.179.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.46.180.0', '193.46.180.255', 2147483647, 2147483647, 'IT', 'Italy'), +('193.46.181.0', '193.46.181.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.46.182.0', '193.46.182.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.46.183.0', '193.46.183.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.46.184.0', '193.46.184.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.46.185.0', '193.46.187.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.46.188.0', '193.46.199.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.46.200.0', '193.46.200.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.46.201.0', '193.46.201.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.46.202.0', '193.46.202.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.46.203.0', '193.46.203.255', 2147483647, 2147483647, 'FR', 'France'), +('193.46.204.0', '193.46.205.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.46.206.0', '193.46.206.255', 2147483647, 2147483647, 'FR', 'France'), +('193.46.207.0', '193.46.208.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.46.209.0', '193.46.209.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.46.210.0', '193.46.210.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.46.211.0', '193.46.211.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.46.212.0', '193.46.212.255', 2147483647, 2147483647, 'MD', 'Moldova, Republic of'), +('193.46.213.0', '193.46.213.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.46.214.0', '193.46.214.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('193.46.215.0', '193.46.215.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.46.216.0', '193.46.220.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.46.221.0', '193.46.221.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.46.222.0', '193.46.231.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.46.232.0', '193.46.232.255', 2147483647, 2147483647, 'GR', 'Greece'), +('193.46.233.0', '193.46.235.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.46.236.0', '193.46.236.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('193.46.237.0', '193.46.237.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.46.238.0', '193.46.238.255', 2147483647, 2147483647, 'ES', 'Spain'), +('193.46.239.0', '193.46.239.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.46.240.0', '193.46.255.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.47.0.0', '193.47.0.255', 2147483647, 2147483647, 'FR', 'France'), +('193.47.1.0', '193.47.69.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.47.70.0', '193.47.70.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.47.71.0', '193.47.71.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('193.47.72.0', '193.47.72.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.47.73.0', '193.47.73.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.47.74.0', '193.47.74.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('193.47.75.0', '193.47.75.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.47.76.0', '193.47.76.255', 2147483647, 2147483647, 'ES', 'Spain'), +('193.47.77.0', '193.47.77.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.47.78.0', '193.47.79.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.47.80.0', '193.47.80.255', 2147483647, 2147483647, 'FR', 'France'), +('193.47.81.0', '193.47.81.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('193.47.82.0', '193.47.82.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.47.83.0', '193.47.83.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.47.84.0', '193.47.84.255', 2147483647, 2147483647, 'ES', 'Spain'), +('193.47.85.0', '193.47.85.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.47.86.0', '193.47.86.255', 2147483647, 2147483647, 'ES', 'Spain'), +('193.47.87.0', '193.47.87.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.47.88.0', '193.47.98.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.47.99.0', '193.47.100.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.47.101.0', '193.47.101.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.47.102.0', '193.47.102.255', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('193.47.103.0', '193.47.135.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.47.136.0', '193.47.136.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('193.47.137.0', '193.47.137.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.47.138.0', '193.47.138.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.47.139.0', '193.47.139.255', 2147483647, 2147483647, 'FR', 'France'), +('193.47.140.0', '193.47.140.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.47.141.0', '193.47.141.255', 2147483647, 2147483647, 'FR', 'France'), +('193.47.142.0', '193.47.142.255', 2147483647, 2147483647, 'MD', 'Moldova, Republic of'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('193.47.143.0', '193.47.143.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('193.47.144.0', '193.47.144.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.47.145.0', '193.47.145.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.47.146.0', '193.47.146.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('193.47.147.0', '193.47.147.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.47.148.0', '193.47.148.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.47.149.0', '193.47.149.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.47.150.0', '193.47.150.255', 2147483647, 2147483647, 'FR', 'France'), +('193.47.151.0', '193.47.151.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.47.152.0', '193.47.152.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.47.153.0', '193.47.153.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.47.154.0', '193.47.154.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.47.155.0', '193.47.157.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.47.158.0', '193.47.160.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.47.161.0', '193.47.161.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.47.162.0', '193.47.162.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.47.163.0', '193.47.163.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.47.164.0', '193.47.164.255', 2147483647, 2147483647, 'ES', 'Spain'), +('193.47.165.0', '193.47.165.255', 2147483647, 2147483647, 'IL', 'Israel'), +('193.47.166.0', '193.47.166.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.47.167.0', '193.47.167.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.47.168.0', '193.47.183.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.47.184.0', '193.47.184.255', 2147483647, 2147483647, 'FR', 'France'), +('193.47.185.0', '193.47.185.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('193.47.186.0', '193.47.186.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('193.47.187.0', '193.47.187.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.47.188.0', '193.47.188.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.47.189.0', '193.47.189.255', 2147483647, 2147483647, 'FR', 'France'), +('193.47.190.0', '193.47.190.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.47.191.0', '193.47.191.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('193.47.192.0', '193.47.245.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.47.246.0', '193.47.246.255', 2147483647, 2147483647, 'HR', 'Croatia'), +('193.47.247.0', '193.47.247.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.47.248.0', '193.47.248.255', 2147483647, 2147483647, 'IL', 'Israel'), +('193.47.249.0', '193.47.249.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.47.250.0', '193.47.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.48.0.0', '193.52.255.255', 2147483647, 2147483647, 'FR', 'France'), +('193.53.0.0', '193.53.0.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.53.1.0', '193.53.20.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('193.53.21.0', '193.53.21.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.53.22.0', '193.53.22.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('193.53.23.0', '193.53.23.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.53.24.0', '193.53.33.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.53.34.0', '193.53.35.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('193.53.36.0', '193.53.36.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.53.37.0', '193.53.79.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('193.53.80.0', '193.53.80.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.53.81.0', '193.53.82.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('193.53.83.0', '193.53.83.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.53.84.0', '193.53.84.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.53.85.0', '193.53.85.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('193.53.86.0', '193.53.86.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('193.53.87.0', '193.53.87.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.53.88.0', '193.53.88.255', 2147483647, 2147483647, 'NO', 'Norway'), +('193.53.89.0', '193.53.89.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.53.90.0', '193.53.92.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('193.53.93.0', '193.53.93.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.53.94.0', '193.53.95.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.53.96.0', '193.53.104.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('193.53.105.0', '193.53.105.255', 2147483647, 2147483647, 'GR', 'Greece'), +('193.53.106.0', '193.53.106.255', 2147483647, 2147483647, 'FR', 'France'), +('193.53.107.0', '193.53.124.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('193.53.125.0', '193.53.125.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.53.126.0', '193.53.254.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('193.53.255.0', '193.53.255.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.54.0.0', '193.57.255.255', 2147483647, 2147483647, 'FR', 'France'), +('193.58.0.0', '193.58.0.39', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.58.0.40', '193.58.0.47', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.58.0.48', '193.58.0.55', 2147483647, 2147483647, 'EU', 'Europe'), +('193.58.0.56', '193.58.0.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.58.0.64', '193.58.0.127', 2147483647, 2147483647, 'PT', 'Portugal'), +('193.58.0.128', '193.58.0.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.58.1.0', '193.58.63.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('193.58.64.0', '193.58.69.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.58.70.0', '193.58.71.255', 2147483647, 2147483647, 'GR', 'Greece'), +('193.58.72.0', '193.58.79.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('193.58.80.0', '193.58.154.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('193.58.155.0', '193.58.155.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.58.156.0', '193.58.172.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('193.58.173.0', '193.58.185.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.58.186.0', '193.58.187.255', 2147483647, 2147483647, 'GR', 'Greece'), +('193.58.188.0', '193.58.191.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.58.192.0', '193.58.197.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('193.58.198.0', '193.58.199.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.58.200.0', '193.58.203.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.58.204.0', '193.58.208.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.58.209.0', '193.58.209.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.58.210.0', '193.58.215.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.58.216.0', '193.58.223.255', 2147483647, 2147483647, 'US', 'United States'), +('193.58.224.0', '193.58.231.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('193.58.232.0', '193.58.232.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.58.233.0', '193.58.233.255', 2147483647, 2147483647, 'FR', 'France'), +('193.58.234.0', '193.58.234.255', 2147483647, 2147483647, 'GR', 'Greece'), +('193.58.235.0', '193.58.235.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.58.236.0', '193.58.236.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('193.58.237.0', '193.58.237.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.58.238.0', '193.58.238.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.58.239.0', '193.58.239.255', 2147483647, 2147483647, 'IT', 'Italy'), +('193.58.240.0', '193.58.240.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.58.241.0', '193.58.241.255', 2147483647, 2147483647, 'NO', 'Norway'), +('193.58.242.0', '193.58.242.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.58.243.0', '193.58.243.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.58.244.0', '193.58.245.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.58.246.0', '193.58.246.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.58.247.0', '193.58.247.255', 2147483647, 2147483647, 'FR', 'France'), +('193.58.248.0', '193.58.248.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.58.249.0', '193.58.249.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.58.250.0', '193.58.250.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.58.251.0', '193.58.251.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.58.252.0', '193.58.252.255', 2147483647, 2147483647, 'HR', 'Croatia'), +('193.58.253.0', '193.58.253.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.58.254.0', '193.58.254.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.58.255.0', '193.58.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.59.0.0', '193.59.255.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.60.0.0', '193.63.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.64.0.0', '193.64.3.215', 2147483647, 2147483647, 'FI', 'Finland'), +('193.64.3.216', '193.64.3.227', 2147483647, 2147483647, 'NO', 'Norway'), +('193.64.3.228', '193.64.42.103', 2147483647, 2147483647, 'FI', 'Finland'), +('193.64.42.104', '193.64.42.111', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.64.42.112', '193.65.217.207', 2147483647, 2147483647, 'FI', 'Finland'), +('193.65.217.208', '193.65.217.223', 2147483647, 2147483647, 'AX', 'Aland Islands'), +('193.65.217.224', '193.66.255.255', 2147483647, 2147483647, 'FI', 'Finland'), +('193.67.0.0', '193.67.39.199', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.67.39.200', '193.67.39.207', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.67.39.208', '193.67.115.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.67.115.64', '193.67.115.95', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.67.115.96', '193.67.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.68.0.0', '193.68.31.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('193.68.32.0', '193.68.63.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('193.68.64.0', '193.68.95.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('193.68.96.0', '193.68.255.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('193.69.0.0', '193.69.255.255', 2147483647, 2147483647, 'NO', 'Norway'), +('193.70.0.0', '193.70.255.255', 2147483647, 2147483647, 'IT', 'Italy'), +('193.71.0.0', '193.71.255.255', 2147483647, 2147483647, 'NO', 'Norway'), +('193.72.0.0', '193.72.228.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.72.229.0', '193.72.229.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.72.230.0', '193.73.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.74.0.0', '193.74.229.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('193.74.230.0', '193.74.231.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.74.232.0', '193.74.255.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('193.75.0.0', '193.75.127.255', 2147483647, 2147483647, 'NO', 'Norway'), +('193.75.128.0', '193.75.255.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('193.76.0.0', '193.76.255.255', 2147483647, 2147483647, 'IT', 'Italy'), +('193.77.0.0', '193.77.255.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('193.78.0.0', '193.78.141.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.78.142.0', '193.78.142.255', 2147483647, 2147483647, 'IT', 'Italy'), +('193.78.143.0', '193.79.143.183', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.79.143.184', '193.79.143.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.79.143.192', '193.79.170.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.79.170.64', '193.79.170.71', 2147483647, 2147483647, 'NO', 'Norway'), +('193.79.170.72', '193.79.170.143', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.79.170.144', '193.79.170.151', 2147483647, 2147483647, 'PT', 'Portugal'), +('193.79.170.152', '193.79.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.80.0.0', '193.80.203.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.80.204.0', '193.80.204.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('193.80.205.0', '193.81.255.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.82.0.0', '193.82.254.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.82.255.0', '193.82.255.255', 2147483647, 2147483647, 'MT', 'Malta'), +('193.83.0.0', '193.83.7.199', 2147483647, 2147483647, 'AT', 'Austria'), +('193.83.7.200', '193.83.7.215', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.83.7.216', '193.83.255.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.84.0.0', '193.84.0.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.84.1.0', '193.84.7.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('193.84.8.0', '193.84.8.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.84.9.0', '193.84.9.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.84.10.0', '193.84.15.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('193.84.16.0', '193.84.16.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.84.17.0', '193.84.17.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.84.18.0', '193.84.18.255', 2147483647, 2147483647, 'FR', 'France'), +('193.84.19.0', '193.84.19.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.84.20.0', '193.84.20.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.84.21.0', '193.84.21.255', 2147483647, 2147483647, 'GR', 'Greece'), +('193.84.22.0', '193.84.23.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.84.24.0', '193.84.24.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('193.84.25.0', '193.84.25.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.84.26.0', '193.84.26.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('193.84.27.0', '193.84.27.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('193.84.28.0', '193.84.28.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.84.29.0', '193.84.29.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.84.30.0', '193.84.30.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.84.31.0', '193.84.31.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.84.32.0', '193.84.49.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('193.84.50.0', '193.84.50.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.84.51.0', '193.84.51.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.84.52.0', '193.84.52.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.84.53.0', '193.84.53.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('193.84.54.0', '193.84.54.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.84.55.0', '193.84.63.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('193.84.64.0', '193.84.64.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.84.65.0', '193.84.65.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.84.66.0', '193.84.66.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.84.67.0', '193.84.67.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.84.68.0', '193.84.68.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('193.84.69.0', '193.84.69.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.84.70.0', '193.84.70.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('193.84.71.0', '193.84.71.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.84.72.0', '193.84.72.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.84.73.0', '193.84.73.255', 2147483647, 2147483647, 'FR', 'France'), +('193.84.74.0', '193.84.74.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.84.75.0', '193.84.75.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.84.76.0', '193.84.77.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.84.78.0', '193.84.78.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.84.79.0', '193.84.79.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.84.80.0', '193.84.83.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('193.84.84.0', '193.84.84.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('193.84.85.0', '193.84.85.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.84.86.0', '193.84.86.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('193.84.87.0', '193.84.87.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.84.88.0', '193.84.88.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.84.89.0', '193.84.89.255', 2147483647, 2147483647, 'FR', 'France'), +('193.84.90.0', '193.84.90.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.84.91.0', '193.84.91.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.84.92.0', '193.84.93.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('193.84.94.0', '193.84.94.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.84.95.0', '193.84.95.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.84.96.0', '193.84.111.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('193.84.112.0', '193.84.112.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.84.113.0', '193.84.113.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.84.114.0', '193.84.114.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('193.84.115.0', '193.84.115.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.84.116.0', '193.84.141.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('193.84.142.0', '193.84.142.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.84.143.0', '193.84.143.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.84.144.0', '193.84.175.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('193.84.176.0', '193.84.176.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.84.177.0', '193.84.177.255', 2147483647, 2147483647, 'FR', 'France'), +('193.84.178.0', '193.84.178.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.84.179.0', '193.84.179.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.84.180.0', '193.84.181.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.84.182.0', '193.84.182.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.84.183.0', '193.84.183.255', 2147483647, 2147483647, 'MD', 'Moldova, Republic of'), +('193.84.184.0', '193.84.184.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('193.84.185.0', '193.84.185.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.84.186.0', '193.84.186.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('193.84.187.0', '193.84.187.255', 2147483647, 2147483647, 'FR', 'France'), +('193.84.188.0', '193.84.223.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('193.84.224.0', '193.84.239.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.84.240.0', '193.84.245.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('193.84.246.0', '193.84.246.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.84.247.0', '193.84.249.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('193.84.250.0', '193.84.250.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.84.251.0', '193.84.251.255', 2147483647, 2147483647, 'GR', 'Greece'), +('193.84.252.0', '193.84.254.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('193.84.255.0', '193.84.255.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.85.0.0', '193.86.255.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('193.87.0.0', '193.87.255.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('193.88.0.0', '193.89.255.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('193.90.0.0', '193.90.255.255', 2147483647, 2147483647, 'NO', 'Norway'), +('193.91.0.0', '193.91.31.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.91.32.0', '193.91.47.255', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('193.91.48.0', '193.91.63.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.91.64.0', '193.91.95.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('193.91.96.0', '193.91.127.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('193.91.128.0', '193.91.255.255', 2147483647, 2147483647, 'NO', 'Norway'), +('193.92.0.0', '193.92.255.255', 2147483647, 2147483647, 'GR', 'Greece'), +('193.93.0.0', '193.93.3.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.93.4.0', '193.93.7.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.93.8.0', '193.93.11.255', 2147483647, 2147483647, 'FR', 'France'), +('193.93.12.0', '193.93.19.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.93.20.0', '193.93.23.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.93.24.0', '193.93.27.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('193.93.28.0', '193.93.31.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.93.32.0', '193.93.39.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.93.40.0', '193.93.43.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.93.44.0', '193.93.47.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.93.48.0', '193.93.51.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.93.52.0', '193.93.55.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.93.56.0', '193.93.59.255', 2147483647, 2147483647, 'KZ', 'Kazakstan'), +('193.93.60.0', '193.93.63.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.93.64.0', '193.93.67.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.93.68.0', '193.93.71.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.93.72.0', '193.93.75.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('193.93.76.0', '193.93.79.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.93.80.0', '193.93.87.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.93.88.0', '193.93.95.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.93.96.0', '193.93.99.255', 2147483647, 2147483647, 'NG', 'Nigeria'), +('193.93.100.0', '193.93.103.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.93.104.0', '193.93.107.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.93.108.0', '193.93.111.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.93.112.0', '193.93.115.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('193.93.116.0', '193.93.119.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.93.124.0', '193.93.127.255', 2147483647, 2147483647, 'FR', 'France'), +('193.93.128.0', '193.93.131.255', 2147483647, 2147483647, 'NO', 'Norway'), +('193.93.132.0', '193.93.139.255', 2147483647, 2147483647, 'FI', 'Finland'), +('193.93.140.0', '193.93.143.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.93.144.0', '193.93.147.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.93.148.0', '193.93.155.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.93.156.0', '193.93.159.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.93.160.0', '193.93.163.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.93.164.0', '193.93.167.255', 2147483647, 2147483647, 'GR', 'Greece'), +('193.93.168.0', '193.93.171.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.93.172.0', '193.93.175.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.93.176.0', '193.93.179.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.93.180.0', '193.93.183.255', 2147483647, 2147483647, 'FR', 'France'), +('193.93.184.0', '193.93.195.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.93.196.0', '193.93.203.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.93.204.0', '193.93.207.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.93.208.0', '193.93.211.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.93.212.0', '193.93.215.255', 2147483647, 2147483647, 'KZ', 'Kazakstan'), +('193.93.220.0', '193.93.223.255', 2147483647, 2147483647, 'NO', 'Norway'), +('193.93.224.0', '193.93.227.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.93.228.0', '193.93.231.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.93.232.0', '193.93.239.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.93.240.0', '193.93.243.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.93.244.0', '193.93.247.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.93.248.0', '193.93.255.255', 2147483647, 2147483647, 'NO', 'Norway'), +('193.94.0.0', '193.94.15.127', 2147483647, 2147483647, 'FI', 'Finland'), +('193.94.15.128', '193.94.15.191', 2147483647, 2147483647, 'AX', 'Aland Islands'), +('193.94.15.192', '193.94.255.255', 2147483647, 2147483647, 'FI', 'Finland'), +('193.95.0.0', '193.95.127.255', 2147483647, 2147483647, 'TN', 'Tunisia'), +('193.95.128.0', '193.95.145.95', 2147483647, 2147483647, 'IE', 'Ireland'), +('193.95.145.96', '193.95.145.103', 2147483647, 2147483647, 'ES', 'Spain'), +('193.95.145.104', '193.95.171.191', 2147483647, 2147483647, 'IE', 'Ireland'), +('193.95.171.192', '193.95.171.255', 2147483647, 2147483647, 'US', 'United States'), +('193.95.172.0', '193.95.176.23', 2147483647, 2147483647, 'IE', 'Ireland'), +('193.95.176.24', '193.95.176.31', 2147483647, 2147483647, 'US', 'United States'), +('193.95.176.32', '193.95.178.103', 2147483647, 2147483647, 'IE', 'Ireland'), +('193.95.178.104', '193.95.178.111', 2147483647, 2147483647, 'US', 'United States'), +('193.95.178.112', '193.95.190.111', 2147483647, 2147483647, 'IE', 'Ireland'), +('193.95.190.112', '193.95.190.119', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.95.190.120', '193.95.191.127', 2147483647, 2147483647, 'IE', 'Ireland'), +('193.95.191.128', '193.95.191.191', 2147483647, 2147483647, 'US', 'United States'), +('193.95.191.192', '193.95.191.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('193.95.192.0', '193.95.255.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('193.96.0.0', '193.97.190.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.97.191.0', '193.97.191.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.97.192.0', '193.100.139.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.100.140.0', '193.100.141.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.100.142.0', '193.103.161.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.103.162.0', '193.103.163.255', 2147483647, 2147483647, 'CA', 'Canada'), +('193.103.164.0', '193.103.235.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.103.236.0', '193.103.237.255', 2147483647, 2147483647, 'CA', 'Canada'), +('193.103.238.0', '193.103.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.104.0.0', '193.105.255.255', 2147483647, 2147483647, 'FR', 'France'), +('193.108.0.0', '193.108.7.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.108.8.0', '193.108.16.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.108.17.0', '193.108.17.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.108.18.0', '193.108.18.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.108.19.0', '193.108.19.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.108.20.0', '193.108.21.255', 2147483647, 2147483647, 'FR', 'France'), +('193.108.22.0', '193.108.22.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.108.23.0', '193.108.23.255', 2147483647, 2147483647, 'GH', 'Ghana'), +('193.108.24.0', '193.108.24.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('193.108.25.0', '193.108.25.255', 2147483647, 2147483647, 'IT', 'Italy'), +('193.108.26.0', '193.108.26.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.108.27.0', '193.108.27.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.108.28.0', '193.108.28.255', 2147483647, 2147483647, 'GH', 'Ghana'), +('193.108.29.0', '193.108.29.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('193.108.30.0', '193.108.30.255', 2147483647, 2147483647, 'KW', 'Kuwait'), +('193.108.31.0', '193.108.31.255', 2147483647, 2147483647, 'FR', 'France'), +('193.108.32.0', '193.108.33.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('193.108.34.0', '193.108.35.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.108.36.0', '193.108.37.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('193.108.38.0', '193.108.39.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.108.40.0', '193.108.41.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.108.42.0', '193.108.43.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.108.44.0', '193.108.51.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.108.52.0', '193.108.55.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.108.56.0', '193.108.59.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.108.60.0', '193.108.63.255', 2147483647, 2147483647, 'IT', 'Italy'), +('193.108.64.0', '193.108.71.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('193.108.72.0', '193.108.87.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.108.88.0', '193.108.95.255', 2147483647, 2147483647, 'EU', 'Europe'), +('193.108.96.0', '193.108.97.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.108.98.0', '193.108.99.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.108.100.0', '193.108.101.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.108.102.0', '193.108.105.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.108.106.0', '193.108.109.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('193.108.110.0', '193.108.111.255', 2147483647, 2147483647, 'FR', 'France'), +('193.108.112.0', '193.108.129.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.108.130.0', '193.108.131.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.108.132.0', '193.108.133.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('193.108.134.0', '193.108.135.255', 2147483647, 2147483647, 'JO', 'Jordan'), +('193.108.136.0', '193.108.137.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.108.138.0', '193.108.139.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.108.140.0', '193.108.141.255', 2147483647, 2147483647, 'FR', 'France'), +('193.108.142.0', '193.108.143.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.108.144.0', '193.108.147.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('193.108.148.0', '193.108.151.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.108.152.0', '193.108.155.255', 2147483647, 2147483647, 'EU', 'Europe'), +('193.108.156.0', '193.108.159.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.108.160.0', '193.108.161.255', 2147483647, 2147483647, 'GR', 'Greece'), +('193.108.162.0', '193.108.163.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.108.164.0', '193.108.165.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.108.166.0', '193.108.167.255', 2147483647, 2147483647, 'FR', 'France'), +('193.108.168.0', '193.108.169.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.108.170.0', '193.108.171.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.108.172.0', '193.108.173.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.108.174.0', '193.108.175.255', 2147483647, 2147483647, 'ES', 'Spain'), +('193.108.176.0', '193.108.176.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.108.177.0', '193.108.177.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.108.178.0', '193.108.178.255', 2147483647, 2147483647, 'FR', 'France'), +('193.108.179.0', '193.108.179.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.108.180.0', '193.108.180.255', 2147483647, 2147483647, 'FR', 'France'), +('193.108.181.0', '193.108.181.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.108.182.0', '193.108.182.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.108.183.0', '193.108.183.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.108.184.0', '193.108.184.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.108.185.0', '193.108.185.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('193.108.186.0', '193.108.186.255', 2147483647, 2147483647, 'IT', 'Italy'), +('193.108.187.0', '193.108.187.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.108.188.0', '193.108.188.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.108.189.0', '193.108.190.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('193.108.191.0', '193.108.192.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.108.193.0', '193.108.193.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.108.194.0', '193.108.194.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.108.195.0', '193.108.195.255', 2147483647, 2147483647, 'IL', 'Israel'), +('193.108.196.0', '193.108.196.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.108.197.0', '193.108.198.255', 2147483647, 2147483647, 'FR', 'France'), +('193.108.199.0', '193.108.200.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.108.201.0', '193.108.201.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('193.108.202.0', '193.108.202.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.108.203.0', '193.108.203.255', 2147483647, 2147483647, 'FR', 'France'), +('193.108.204.0', '193.108.205.255', 2147483647, 2147483647, 'IT', 'Italy'), +('193.108.206.0', '193.108.206.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.108.207.0', '193.108.207.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.108.208.0', '193.108.208.255', 2147483647, 2147483647, 'NO', 'Norway'), +('193.108.209.0', '193.108.209.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.108.210.0', '193.108.210.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.108.211.0', '193.108.211.255', 2147483647, 2147483647, 'IL', 'Israel'), +('193.108.212.0', '193.108.212.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.108.213.0', '193.108.213.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('193.108.214.0', '193.108.214.255', 2147483647, 2147483647, 'UG', 'Uganda'), +('193.108.215.0', '193.108.215.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('193.108.216.0', '193.108.216.255', 2147483647, 2147483647, 'FR', 'France'), +('193.108.217.0', '193.108.217.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.108.218.0', '193.108.218.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.108.219.0', '193.108.219.255', 2147483647, 2147483647, 'EU', 'Europe'), +('193.108.220.0', '193.108.220.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.108.221.0', '193.108.221.255', 2147483647, 2147483647, 'IT', 'Italy'), +('193.108.222.0', '193.108.222.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.108.223.0', '193.108.223.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.108.224.0', '193.108.225.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('193.108.226.0', '193.108.227.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.108.228.0', '193.108.229.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.108.230.0', '193.108.231.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.108.232.0', '193.108.233.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.108.234.0', '193.108.235.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.108.236.0', '193.108.237.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.108.238.0', '193.108.239.255', 2147483647, 2147483647, 'IT', 'Italy'), +('193.108.240.0', '193.108.243.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.108.244.0', '193.108.247.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.108.248.0', '193.108.251.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.108.252.0', '193.108.255.255', 2147483647, 2147483647, 'UG', 'Uganda'), +('193.109.0.0', '193.109.3.255', 2147483647, 2147483647, 'FR', 'France'), +('193.109.4.0', '193.109.7.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.109.8.0', '193.109.11.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.109.12.0', '193.109.15.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.109.16.0', '193.109.31.255', 2147483647, 2147483647, 'IS', 'Iceland'), +('193.109.32.0', '193.109.47.255', 2147483647, 2147483647, 'IT', 'Italy'), +('193.109.48.0', '193.109.49.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.109.50.0', '193.109.51.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.109.52.0', '193.109.53.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.109.54.0', '193.109.55.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('193.109.56.0', '193.109.57.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('193.109.58.0', '193.109.59.255', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('193.109.60.0', '193.109.61.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.109.62.0', '193.109.63.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('193.109.64.0', '193.109.65.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.109.66.0', '193.109.67.255', 2147483647, 2147483647, 'KE', 'Kenya'), +('193.109.68.0', '193.109.69.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.109.72.0', '193.109.73.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('193.109.74.0', '193.109.75.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.109.76.0', '193.109.77.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.109.78.0', '193.109.79.255', 2147483647, 2147483647, 'TZ', 'Tanzania, United Republic of'), +('193.109.80.0', '193.109.80.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.109.81.0', '193.109.81.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.109.82.0', '193.109.82.255', 2147483647, 2147483647, 'IL', 'Israel'), +('193.109.83.0', '193.109.83.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.109.84.0', '193.109.84.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.109.85.0', '193.109.85.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('193.109.86.0', '193.109.86.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.109.87.0', '193.109.87.255', 2147483647, 2147483647, 'FR', 'France'), +('193.109.88.0', '193.109.88.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.109.89.0', '193.109.89.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.109.90.0', '193.109.90.255', 2147483647, 2147483647, 'IT', 'Italy'), +('193.109.91.0', '193.109.92.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.109.93.0', '193.109.93.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.109.94.0', '193.109.94.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.109.95.0', '193.109.95.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.109.96.0', '193.109.99.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.109.100.0', '193.109.103.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.109.104.0', '193.109.107.255', 2147483647, 2147483647, 'IT', 'Italy'), +('193.109.108.0', '193.109.111.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.109.112.0', '193.109.112.255', 2147483647, 2147483647, 'IT', 'Italy'), +('193.109.113.0', '193.109.113.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.109.114.0', '193.109.114.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.109.115.0', '193.109.115.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.109.116.0', '193.109.116.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.109.117.0', '193.109.117.255', 2147483647, 2147483647, 'IT', 'Italy'), +('193.109.118.0', '193.109.118.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.109.119.0', '193.109.119.255', 2147483647, 2147483647, 'FR', 'France'), +('193.109.120.0', '193.109.121.255', 2147483647, 2147483647, 'ES', 'Spain'), +('193.109.122.0', '193.109.122.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.109.123.0', '193.109.123.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.109.124.0', '193.109.124.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('193.109.125.0', '193.109.126.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('193.109.127.0', '193.109.127.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.109.128.0', '193.109.129.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.109.130.0', '193.109.131.255', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('193.109.132.0', '193.109.133.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.109.134.0', '193.109.135.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('193.109.136.0', '193.109.137.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.109.138.0', '193.109.139.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.109.140.0', '193.109.141.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.109.142.0', '193.109.143.255', 2147483647, 2147483647, 'FR', 'France'), +('193.109.144.0', '193.109.147.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.109.148.0', '193.109.151.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.109.152.0', '193.109.159.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.109.160.0', '193.109.171.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.109.172.0', '193.109.175.255', 2147483647, 2147483647, 'ES', 'Spain'), +('193.109.176.0', '193.109.183.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('193.109.184.0', '193.109.191.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('193.109.192.0', '193.109.199.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.109.200.0', '193.109.207.255', 2147483647, 2147483647, 'IT', 'Italy'), +('193.109.208.0', '193.109.208.255', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('193.109.209.0', '193.109.209.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.109.210.0', '193.109.210.255', 2147483647, 2147483647, 'NO', 'Norway'), +('193.109.211.0', '193.109.211.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('193.109.212.0', '193.109.212.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.109.213.0', '193.109.213.255', 2147483647, 2147483647, 'GR', 'Greece'), +('193.109.214.0', '193.109.214.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.109.215.0', '193.109.215.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.109.216.0', '193.109.216.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.109.217.0', '193.109.217.255', 2147483647, 2147483647, 'NO', 'Norway'), +('193.109.218.0', '193.109.218.255', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('193.109.219.0', '193.109.220.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.109.221.0', '193.109.223.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.109.224.0', '193.109.224.255', 2147483647, 2147483647, 'FR', 'France'), +('193.109.225.0', '193.109.226.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.109.227.0', '193.109.227.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('193.109.228.0', '193.109.228.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('193.109.229.0', '193.109.230.255', 2147483647, 2147483647, 'ES', 'Spain'), +('193.109.231.0', '193.109.231.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.109.232.0', '193.109.232.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.109.233.0', '193.109.233.255', 2147483647, 2147483647, 'IT', 'Italy'), +('193.109.234.0', '193.109.234.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('193.109.235.0', '193.109.235.255', 2147483647, 2147483647, 'LT', 'Lithuania'), +('193.109.236.0', '193.109.239.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.109.240.0', '193.109.241.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.109.242.0', '193.109.243.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.109.244.0', '193.109.245.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.109.246.0', '193.109.247.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.109.248.0', '193.109.249.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.109.250.0', '193.109.251.255', 2147483647, 2147483647, 'FR', 'France'), +('193.109.252.0', '193.109.253.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('193.109.254.0', '193.109.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.110.0.0', '193.110.1.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.110.2.0', '193.110.3.255', 2147483647, 2147483647, 'NG', 'Nigeria'), +('193.110.4.0', '193.110.5.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.110.6.0', '193.110.7.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.110.8.0', '193.110.9.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('193.110.10.0', '193.110.11.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.110.12.0', '193.110.13.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.110.14.0', '193.110.15.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('193.110.16.0', '193.110.23.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.110.24.0', '193.110.27.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.110.28.0', '193.110.31.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.110.32.0', '193.110.39.255', 2147483647, 2147483647, 'FI', 'Finland'), +('193.110.40.0', '193.110.47.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.110.48.0', '193.110.55.255', 2147483647, 2147483647, 'IL', 'Israel'), +('193.110.56.0', '193.110.63.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('193.110.64.0', '193.110.67.255', 2147483647, 2147483647, 'FI', 'Finland'), +('193.110.68.0', '193.110.71.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.110.72.0', '193.110.79.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.110.80.0', '193.110.80.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.110.81.0', '193.110.81.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('193.110.82.0', '193.110.82.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('193.110.83.0', '193.110.83.255', 2147483647, 2147483647, 'IT', 'Italy'), +('193.110.84.0', '193.110.84.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('193.110.85.0', '193.110.85.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.110.86.0', '193.110.86.255', 2147483647, 2147483647, 'GR', 'Greece'), +('193.110.87.0', '193.110.87.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('193.110.88.0', '193.110.88.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.110.89.0', '193.110.89.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.110.90.0', '193.110.90.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.110.91.0', '193.110.91.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.110.92.0', '193.110.92.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('193.110.93.0', '193.110.93.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.110.94.0', '193.110.94.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.110.95.0', '193.110.95.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.110.96.0', '193.110.99.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.110.100.0', '193.110.101.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.110.102.0', '193.110.103.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.110.104.0', '193.110.105.255', 2147483647, 2147483647, 'CD', 'Congo, The Democratic Republic of the'), +('193.110.106.0', '193.110.107.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.110.108.0', '193.110.111.255', 2147483647, 2147483647, 'FI', 'Finland'), +('193.110.112.0', '193.110.115.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.110.116.0', '193.110.119.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.110.120.0', '193.110.123.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.110.124.0', '193.110.127.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.110.128.0', '193.110.128.255', 2147483647, 2147483647, 'ES', 'Spain'), +('193.110.129.0', '193.110.129.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.110.130.0', '193.110.130.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('193.110.131.0', '193.110.131.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.110.132.0', '193.110.132.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('193.110.133.0', '193.110.133.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.110.134.0', '193.110.134.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.110.135.0', '193.110.135.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.110.136.0', '193.110.136.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.110.137.0', '193.110.137.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.110.138.0', '193.110.138.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.110.139.0', '193.110.139.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.110.140.0', '193.110.141.255', 2147483647, 2147483647, 'FR', 'France'), +('193.110.142.0', '193.110.142.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.110.143.0', '193.110.143.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.110.144.0', '193.110.144.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.110.145.0', '193.110.145.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('193.110.146.0', '193.110.146.255', 2147483647, 2147483647, 'FR', 'France'), +('193.110.147.0', '193.110.147.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.110.148.0', '193.110.148.255', 2147483647, 2147483647, 'FR', 'France'), +('193.110.149.0', '193.110.149.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.110.150.0', '193.110.150.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.110.151.0', '193.110.151.255', 2147483647, 2147483647, 'IT', 'Italy'), +('193.110.152.0', '193.110.152.255', 2147483647, 2147483647, 'FR', 'France'), +('193.110.153.0', '193.110.153.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.110.154.0', '193.110.154.255', 2147483647, 2147483647, 'ES', 'Spain'), +('193.110.155.0', '193.110.155.255', 2147483647, 2147483647, 'MT', 'Malta'), +('193.110.156.0', '193.110.156.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.110.157.0', '193.110.157.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.110.158.0', '193.110.158.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('193.110.159.0', '193.110.159.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('193.110.160.0', '193.110.163.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.110.164.0', '193.110.165.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('193.110.166.0', '193.110.167.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('193.110.168.0', '193.110.169.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.110.170.0', '193.110.171.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('193.110.172.0', '193.110.177.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.110.178.0', '193.110.179.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.110.180.0', '193.110.181.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.110.182.0', '193.110.183.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.110.184.0', '193.110.185.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.110.186.0', '193.110.187.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('193.110.188.0', '193.110.189.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.110.190.0', '193.110.191.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('193.110.192.0', '193.110.195.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.110.196.0', '193.110.199.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('193.110.200.0', '193.110.203.255', 2147483647, 2147483647, 'IT', 'Italy'), +('193.110.204.0', '193.110.207.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.110.208.0', '193.110.215.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('193.110.216.0', '193.110.223.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('193.110.224.0', '193.110.227.255', 2147483647, 2147483647, 'FI', 'Finland'), +('193.110.228.0', '193.110.231.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.110.232.0', '193.110.235.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.110.236.0', '193.110.239.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.110.240.0', '193.110.247.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.110.248.0', '193.110.255.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('193.111.0.0', '193.111.1.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.111.2.0', '193.111.3.255', 2147483647, 2147483647, 'RU', 'Russian Federation'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('193.111.4.0', '193.111.5.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.111.6.0', '193.111.9.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.111.10.0', '193.111.11.255', 2147483647, 2147483647, 'TJ', 'Tajikistan'), +('193.111.12.0', '193.111.13.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('193.111.14.0', '193.111.15.255', 2147483647, 2147483647, 'FR', 'France'), +('193.111.16.0', '193.111.17.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.111.18.0', '193.111.19.255', 2147483647, 2147483647, 'ES', 'Spain'), +('193.111.20.0', '193.111.21.255', 2147483647, 2147483647, 'IT', 'Italy'), +('193.111.22.0', '193.111.23.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.111.24.0', '193.111.25.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.111.26.0', '193.111.27.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.111.28.0', '193.111.29.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.111.30.0', '193.111.31.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.111.32.0', '193.111.32.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.111.33.0', '193.111.33.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.111.34.0', '193.111.34.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.111.35.0', '193.111.35.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.111.36.0', '193.111.39.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.111.40.0', '193.111.40.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.111.41.0', '193.111.41.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.111.42.0', '193.111.42.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('193.111.43.0', '193.111.44.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.111.45.0', '193.111.45.255', 2147483647, 2147483647, 'FI', 'Finland'), +('193.111.46.0', '193.111.46.255', 2147483647, 2147483647, 'IT', 'Italy'), +('193.111.47.0', '193.111.47.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.111.48.0', '193.111.51.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.111.52.0', '193.111.55.255', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('193.111.56.0', '193.111.59.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.111.60.0', '193.111.63.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.111.64.0', '193.111.65.255', 2147483647, 2147483647, 'FI', 'Finland'), +('193.111.66.0', '193.111.67.255', 2147483647, 2147483647, 'ES', 'Spain'), +('193.111.68.0', '193.111.69.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.111.70.0', '193.111.73.255', 2147483647, 2147483647, 'IT', 'Italy'), +('193.111.74.0', '193.111.75.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.111.76.0', '193.111.77.255', 2147483647, 2147483647, 'TJ', 'Tajikistan'), +('193.111.78.0', '193.111.79.255', 2147483647, 2147483647, 'IT', 'Italy'), +('193.111.80.0', '193.111.80.255', 2147483647, 2147483647, 'FR', 'France'), +('193.111.81.0', '193.111.81.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.111.82.0', '193.111.82.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.111.83.0', '193.111.83.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.111.84.0', '193.111.84.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.111.85.0', '193.111.85.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.111.86.0', '193.111.86.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.111.87.0', '193.111.87.255', 2147483647, 2147483647, 'CY', 'Cyprus'), +('193.111.88.0', '193.111.88.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.111.89.0', '193.111.89.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('193.111.90.0', '193.111.90.255', 2147483647, 2147483647, 'FR', 'France'), +('193.111.91.0', '193.111.92.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.111.93.0', '193.111.93.255', 2147483647, 2147483647, 'FI', 'Finland'), +('193.111.94.0', '193.111.94.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('193.111.95.0', '193.111.95.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('193.111.96.0', '193.111.99.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('193.111.100.0', '193.111.103.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.111.104.0', '193.111.107.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.111.108.0', '193.111.113.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.111.114.0', '193.111.115.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.111.116.0', '193.111.117.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.111.118.0', '193.111.119.255', 2147483647, 2147483647, 'FI', 'Finland'), +('193.111.120.0', '193.111.121.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.111.122.0', '193.111.123.255', 2147483647, 2147483647, 'ES', 'Spain'), +('193.111.124.0', '193.111.125.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.111.126.0', '193.111.127.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.111.128.0', '193.111.135.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('193.111.136.0', '193.111.143.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.111.144.0', '193.111.147.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.111.148.0', '193.111.151.255', 2147483647, 2147483647, 'IT', 'Italy'), +('193.111.152.0', '193.111.155.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.111.156.0', '193.111.159.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.111.160.0', '193.111.160.255', 2147483647, 2147483647, 'IT', 'Italy'), +('193.111.161.0', '193.111.161.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.111.162.0', '193.111.162.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('193.111.163.0', '193.111.163.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.111.164.0', '193.111.164.255', 2147483647, 2147483647, 'HR', 'Croatia'), +('193.111.165.0', '193.111.165.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.111.166.0', '193.111.166.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.111.167.0', '193.111.167.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.111.168.0', '193.111.169.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.111.170.0', '193.111.170.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.111.171.0', '193.111.171.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('193.111.172.0', '193.111.172.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.111.173.0', '193.111.173.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.111.174.0', '193.111.174.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.111.175.0', '193.111.175.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.111.176.0', '193.111.179.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.111.180.0', '193.111.187.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.111.188.0', '193.111.191.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.111.192.0', '193.111.193.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('193.111.194.0', '193.111.195.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('193.111.196.0', '193.111.197.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.111.198.0', '193.111.199.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.111.200.0', '193.111.201.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.111.202.0', '193.111.203.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.111.204.0', '193.111.205.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.111.206.0', '193.111.219.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.111.220.0', '193.111.223.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('193.111.224.0', '193.111.224.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('193.111.225.0', '193.111.225.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('193.111.226.0', '193.111.227.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.111.228.0', '193.111.228.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('193.111.229.0', '193.111.229.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.111.230.0', '193.111.231.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.111.232.0', '193.111.232.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.111.233.0', '193.111.233.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.111.234.0', '193.111.234.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.111.235.0', '193.111.235.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('193.111.236.0', '193.111.236.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.111.237.0', '193.111.238.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.111.239.0', '193.111.243.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.111.244.0', '193.111.247.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('193.111.248.0', '193.111.251.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.111.252.0', '193.111.255.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.112.0.0', '193.119.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.120.0.0', '193.120.44.31', 2147483647, 2147483647, 'IE', 'Ireland'), +('193.120.44.32', '193.120.44.63', 2147483647, 2147483647, 'US', 'United States'), +('193.120.44.64', '193.120.84.191', 2147483647, 2147483647, 'IE', 'Ireland'), +('193.120.84.192', '193.120.84.255', 2147483647, 2147483647, 'US', 'United States'), +('193.120.85.0', '193.120.100.31', 2147483647, 2147483647, 'IE', 'Ireland'), +('193.120.100.32', '193.120.100.39', 2147483647, 2147483647, 'US', 'United States'), +('193.120.100.40', '193.120.106.247', 2147483647, 2147483647, 'IE', 'Ireland'), +('193.120.106.248', '193.120.106.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.120.107.0', '193.120.108.63', 2147483647, 2147483647, 'IE', 'Ireland'), +('193.120.108.64', '193.120.108.95', 2147483647, 2147483647, 'US', 'United States'), +('193.120.108.96', '193.120.114.119', 2147483647, 2147483647, 'IE', 'Ireland'), +('193.120.114.120', '193.120.114.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.120.114.128', '193.120.117.31', 2147483647, 2147483647, 'IE', 'Ireland'), +('193.120.117.32', '193.120.117.47', 2147483647, 2147483647, 'US', 'United States'), +('193.120.117.48', '193.120.126.79', 2147483647, 2147483647, 'IE', 'Ireland'), +('193.120.126.80', '193.120.126.87', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.120.126.88', '193.120.136.7', 2147483647, 2147483647, 'IE', 'Ireland'), +('193.120.136.8', '193.120.136.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.120.136.16', '193.120.140.39', 2147483647, 2147483647, 'IE', 'Ireland'), +('193.120.140.40', '193.120.140.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.120.140.48', '193.120.140.55', 2147483647, 2147483647, 'IE', 'Ireland'), +('193.120.140.56', '193.120.140.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.120.140.64', '193.120.144.87', 2147483647, 2147483647, 'IE', 'Ireland'), +('193.120.144.88', '193.120.144.95', 2147483647, 2147483647, 'FR', 'France'), +('193.120.144.96', '193.120.153.191', 2147483647, 2147483647, 'IE', 'Ireland'), +('193.120.153.192', '193.120.153.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.120.154.0', '193.120.171.47', 2147483647, 2147483647, 'IE', 'Ireland'), +('193.120.171.48', '193.120.171.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.120.171.64', '193.120.211.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('193.120.212.0', '193.120.212.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('193.120.213.0', '193.120.225.39', 2147483647, 2147483647, 'IE', 'Ireland'), +('193.120.225.40', '193.120.225.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.120.225.48', '193.120.225.63', 2147483647, 2147483647, 'IE', 'Ireland'), +('193.120.225.64', '193.120.225.71', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.120.225.72', '193.120.225.79', 2147483647, 2147483647, 'IE', 'Ireland'), +('193.120.225.80', '193.120.225.87', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.120.225.88', '193.120.250.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('193.120.251.0', '193.120.251.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.120.252.0', '193.120.255.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('193.121.0.0', '193.121.255.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('193.122.0.0', '193.123.143.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.123.143.128', '193.123.143.143', 2147483647, 2147483647, 'DE', 'Germany'), +('193.123.143.144', '193.123.253.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.123.253.96', '193.123.253.111', 2147483647, 2147483647, 'DE', 'Germany'), +('193.123.253.112', '193.123.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.124.0.0', '193.124.47.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.124.48.0', '193.124.48.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.124.49.0', '193.124.53.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.124.54.0', '193.124.54.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.124.55.0', '193.124.56.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.124.57.0', '193.124.57.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.124.58.0', '193.124.58.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.124.59.0', '193.124.61.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.124.62.0', '193.124.72.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.124.73.0', '193.124.73.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.124.74.0', '193.124.75.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.124.76.0', '193.124.79.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.124.80.0', '193.125.255.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.126.0.0', '193.126.255.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('193.127.0.0', '193.127.11.255', 2147483647, 2147483647, 'ES', 'Spain'), +('193.127.12.0', '193.127.12.255', 2147483647, 2147483647, 'EU', 'Europe'), +('193.127.13.0', '193.127.15.255', 2147483647, 2147483647, 'ES', 'Spain'), +('193.127.16.0', '193.127.97.255', 2147483647, 2147483647, 'EU', 'Europe'), +('193.127.98.0', '193.127.98.255', 2147483647, 2147483647, 'ES', 'Spain'), +('193.127.99.0', '193.127.100.255', 2147483647, 2147483647, 'EU', 'Europe'), +('193.127.101.0', '193.127.104.255', 2147483647, 2147483647, 'ES', 'Spain'), +('193.127.105.0', '193.127.192.247', 2147483647, 2147483647, 'EU', 'Europe'), +('193.127.192.248', '193.127.193.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.127.194.0', '193.127.205.255', 2147483647, 2147483647, 'EU', 'Europe'), +('193.127.206.0', '193.127.207.255', 2147483647, 2147483647, 'ES', 'Spain'), +('193.127.208.0', '193.127.255.255', 2147483647, 2147483647, 'EU', 'Europe'), +('193.128.0.0', '193.128.107.199', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.128.107.200', '193.128.107.207', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.128.107.208', '193.128.109.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.128.110.0', '193.128.110.7', 2147483647, 2147483647, 'IT', 'Italy'), +('193.128.110.8', '193.129.73.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.129.73.16', '193.129.73.31', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.129.73.32', '193.130.60.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.130.60.160', '193.130.60.175', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.130.60.176', '193.131.99.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.131.100.0', '193.131.103.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('193.131.104.0', '193.133.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.134.0.0', '193.135.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.136.0.0', '193.137.255.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('193.138.0.0', '193.138.0.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.138.1.0', '193.138.7.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('193.138.8.0', '193.138.8.255', 2147483647, 2147483647, 'EE', 'Estonia'), +('193.138.9.0', '193.138.9.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('193.138.10.0', '193.138.28.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.138.29.0', '193.138.29.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.138.30.0', '193.138.30.255', 2147483647, 2147483647, 'LT', 'Lithuania'), +('193.138.31.0', '193.138.31.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.138.32.0', '193.138.63.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('193.138.64.0', '193.138.64.255', 2147483647, 2147483647, 'FR', 'France'), +('193.138.65.0', '193.138.65.255', 2147483647, 2147483647, 'GR', 'Greece'), +('193.138.66.0', '193.138.66.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.138.67.0', '193.138.67.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('193.138.68.0', '193.138.68.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.138.69.0', '193.138.69.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.138.70.0', '193.138.70.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.138.71.0', '193.138.71.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.138.72.0', '193.138.72.255', 2147483647, 2147483647, 'US', 'United States'), +('193.138.73.0', '193.138.73.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.138.74.0', '193.138.74.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.138.75.0', '193.138.75.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.138.76.0', '193.138.76.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('193.138.77.0', '193.138.77.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.138.78.0', '193.138.78.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('193.138.79.0', '193.138.79.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.138.80.0', '193.138.81.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.138.82.0', '193.138.82.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.138.83.0', '193.138.83.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.138.84.0', '193.138.84.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.138.85.0', '193.138.85.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.138.86.0', '193.138.86.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.138.87.0', '193.138.87.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.138.88.0', '193.138.88.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.138.89.0', '193.138.89.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.138.90.0', '193.138.90.255', 2147483647, 2147483647, 'FR', 'France'), +('193.138.91.0', '193.138.91.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.138.92.0', '193.138.92.255', 2147483647, 2147483647, 'IL', 'Israel'), +('193.138.93.0', '193.138.93.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.138.94.0', '193.138.94.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.138.95.0', '193.138.95.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.138.96.0', '193.138.96.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.138.97.0', '193.138.99.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.138.100.0', '193.138.100.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('193.138.101.0', '193.138.101.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('193.138.102.0', '193.138.102.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.138.103.0', '193.138.103.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.138.104.0', '193.138.104.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.138.105.0', '193.138.105.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.138.106.0', '193.138.106.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('193.138.107.0', '193.138.107.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.138.108.0', '193.138.108.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.138.109.0', '193.138.109.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.138.110.0', '193.138.110.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.138.111.0', '193.138.111.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('193.138.112.0', '193.138.113.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.138.114.0', '193.138.114.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.138.115.0', '193.138.115.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('193.138.116.0', '193.138.116.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.138.117.0', '193.138.117.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.138.118.0', '193.138.118.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.138.119.0', '193.138.119.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.138.120.0', '193.138.120.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.138.121.0', '193.138.121.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.138.122.0', '193.138.122.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.138.123.0', '193.138.123.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.138.124.0', '193.138.124.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('193.138.125.0', '193.138.125.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('193.138.126.0', '193.138.126.255', 2147483647, 2147483647, 'FI', 'Finland'), +('193.138.127.0', '193.138.127.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('193.138.128.0', '193.138.131.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.138.132.0', '193.138.135.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.138.136.0', '193.138.143.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.138.144.0', '193.138.147.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.138.148.0', '193.138.155.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.138.156.0', '193.138.159.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.138.160.0', '193.138.163.255', 2147483647, 2147483647, 'IT', 'Italy'), +('193.138.164.0', '193.138.167.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.138.168.0', '193.138.171.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.138.172.0', '193.138.175.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('193.138.176.0', '193.138.179.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.138.180.0', '193.138.183.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.138.184.0', '193.138.187.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.138.188.0', '193.138.191.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('193.138.192.0', '193.138.199.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.138.200.0', '193.138.203.255', 2147483647, 2147483647, 'FI', 'Finland'), +('193.138.204.0', '193.138.207.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.138.208.0', '193.138.211.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.138.212.0', '193.138.215.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.138.216.0', '193.138.219.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.138.220.0', '193.138.231.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.138.232.0', '193.138.235.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.138.236.0', '193.138.239.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.138.240.0', '193.138.243.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.138.244.0', '193.138.247.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.138.248.0', '193.138.251.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.138.252.0', '193.138.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.139.0.0', '193.139.255.255', 2147483647, 2147483647, 'FR', 'France'), +('193.140.0.0', '193.140.255.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('193.141.0.0', '193.141.3.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.4.0', '193.141.4.71', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.4.72', '193.141.4.79', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.4.80', '193.141.4.167', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.4.168', '193.141.4.175', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.4.176', '193.141.5.191', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.5.192', '193.141.5.199', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.5.200', '193.141.5.215', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.5.216', '193.141.5.223', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.5.224', '193.141.6.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.6.64', '193.141.6.71', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.6.72', '193.141.6.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.7.0', '193.141.7.7', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.7.8', '193.141.8.79', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.8.80', '193.141.8.87', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.8.88', '193.141.8.223', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.8.224', '193.141.8.231', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.8.232', '193.141.9.31', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.9.32', '193.141.9.39', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.9.40', '193.141.9.47', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.9.48', '193.141.9.55', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.9.56', '193.141.9.103', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.9.104', '193.141.9.111', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.9.112', '193.141.9.119', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.9.120', '193.141.9.127', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.9.128', '193.141.9.223', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.9.224', '193.141.9.231', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.9.232', '193.141.10.23', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.10.24', '193.141.10.31', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.10.32', '193.141.11.15', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.11.16', '193.141.11.23', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.11.24', '193.141.13.71', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.13.72', '193.141.13.79', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.13.80', '193.141.14.119', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.14.120', '193.141.14.127', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.14.128', '193.141.14.135', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.14.136', '193.141.14.143', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.14.144', '193.141.15.71', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.15.72', '193.141.15.79', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.15.80', '193.141.16.183', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.16.184', '193.141.16.191', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.16.192', '193.141.18.135', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.18.136', '193.141.18.143', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.18.144', '193.141.19.31', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.19.32', '193.141.19.39', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.19.40', '193.141.19.231', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.19.232', '193.141.19.239', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.19.240', '193.141.19.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.20.0', '193.141.27.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.28.0', '193.141.28.55', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.28.56', '193.141.28.63', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.28.64', '193.141.28.135', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.28.136', '193.141.28.143', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.28.144', '193.141.29.15', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.29.16', '193.141.29.23', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.29.24', '193.141.30.47', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.30.48', '193.141.30.63', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.30.64', '193.141.31.55', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.31.56', '193.141.31.63', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.31.64', '193.141.32.183', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.32.184', '193.141.32.191', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.32.192', '193.141.32.215', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.32.216', '193.141.32.223', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.32.224', '193.141.33.15', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.33.16', '193.141.33.23', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.33.24', '193.141.33.111', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.33.112', '193.141.33.119', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.33.120', '193.141.33.143', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.33.144', '193.141.33.151', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.33.152', '193.141.33.175', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.33.176', '193.141.33.183', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.33.184', '193.141.33.191', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.33.192', '193.141.33.199', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.33.200', '193.141.33.231', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.33.232', '193.141.33.239', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.33.240', '193.141.34.7', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.34.8', '193.141.34.15', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.34.16', '193.141.34.175', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.34.176', '193.141.34.183', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.34.184', '193.141.35.7', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.35.8', '193.141.35.15', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.35.16', '193.141.35.47', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.35.48', '193.141.35.55', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.35.56', '193.141.35.143', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.35.144', '193.141.35.151', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.35.152', '193.141.36.87', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.36.88', '193.141.36.95', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.36.96', '193.141.36.103', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.36.104', '193.141.36.111', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.36.112', '193.141.36.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.36.128', '193.141.36.135', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.36.136', '193.141.37.199', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.37.200', '193.141.37.207', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.37.208', '193.141.38.15', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.38.16', '193.141.38.23', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.38.24', '193.141.38.103', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.38.104', '193.141.38.111', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.38.112', '193.141.38.175', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.38.176', '193.141.38.183', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.38.184', '193.141.38.223', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.38.224', '193.141.38.231', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.38.232', '193.141.38.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.39.0', '193.141.39.7', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.39.8', '193.141.39.87', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.39.88', '193.141.39.95', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.39.96', '193.141.39.143', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.39.144', '193.141.39.151', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.39.152', '193.141.39.215', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.39.216', '193.141.39.223', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.39.224', '193.141.39.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.40.0', '193.141.46.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.47.0', '193.141.47.55', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.47.56', '193.141.47.63', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.47.64', '193.141.47.103', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.47.104', '193.141.47.111', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.47.112', '193.141.47.183', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.47.184', '193.141.47.191', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.47.192', '193.141.48.191', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.48.192', '193.141.48.199', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.48.200', '193.141.48.239', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.48.240', '193.141.48.247', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.48.248', '193.141.49.39', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.49.40', '193.141.49.47', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.49.48', '193.141.49.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.49.128', '193.141.49.159', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.49.160', '193.141.49.239', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.49.240', '193.141.49.247', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.49.248', '193.141.50.55', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.50.56', '193.141.50.63', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.50.64', '193.141.50.151', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.50.152', '193.141.50.159', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.50.160', '193.141.51.119', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.51.120', '193.141.51.127', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.51.128', '193.141.51.175', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.51.176', '193.141.51.183', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.51.184', '193.141.52.39', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.52.40', '193.141.52.47', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.52.48', '193.141.52.207', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.52.208', '193.141.52.215', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.52.216', '193.141.52.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.53.0', '193.141.67.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.68.0', '193.141.68.39', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.68.40', '193.141.68.47', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.68.48', '193.141.68.207', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.68.208', '193.141.68.215', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.68.216', '193.141.70.79', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.70.80', '193.141.70.103', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.70.104', '193.141.70.143', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.70.144', '193.141.70.151', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.70.152', '193.141.70.159', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.70.160', '193.141.70.167', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.70.168', '193.141.71.31', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.71.32', '193.141.71.39', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.71.40', '193.141.71.183', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.71.184', '193.141.71.191', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.71.192', '193.141.72.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.73.0', '193.141.73.7', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.73.8', '193.141.73.55', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.73.56', '193.141.73.63', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.73.64', '193.141.73.199', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.73.200', '193.141.73.207', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.73.208', '193.141.74.47', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.74.48', '193.141.74.55', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.74.56', '193.141.75.31', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.75.32', '193.141.75.39', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.75.40', '193.141.76.15', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.76.16', '193.141.76.23', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.76.24', '193.141.76.239', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.76.240', '193.141.76.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.77.0', '193.141.77.15', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.77.16', '193.141.77.23', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.77.24', '193.141.77.207', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.77.208', '193.141.77.215', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.77.216', '193.141.78.143', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.78.144', '193.141.78.151', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.78.152', '193.141.79.7', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.79.8', '193.141.79.15', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.79.16', '193.141.79.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.79.64', '193.141.79.71', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.79.72', '193.141.79.199', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.79.200', '193.141.79.207', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.79.208', '193.141.80.215', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.80.216', '193.141.80.223', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.80.224', '193.141.81.119', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.81.120', '193.141.81.127', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.81.128', '193.141.82.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.82.64', '193.141.82.71', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.82.72', '193.141.83.103', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.83.104', '193.141.83.111', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.83.112', '193.141.84.119', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.84.120', '193.141.84.127', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.84.128', '193.141.86.55', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.86.56', '193.141.86.79', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.86.80', '193.141.86.159', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.86.160', '193.141.86.167', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.86.168', '193.141.86.207', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.86.208', '193.141.86.215', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.86.216', '193.141.87.71', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.87.72', '193.141.87.79', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.87.80', '193.141.89.207', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.89.208', '193.141.89.215', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.89.216', '193.141.90.95', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.90.96', '193.141.90.103', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.90.104', '193.141.90.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.91.0', '193.141.110.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.111.0', '193.141.113.87', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.113.88', '193.141.113.95', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.113.96', '193.141.113.159', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.113.160', '193.141.113.167', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.113.168', '193.141.115.71', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.115.72', '193.141.115.79', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.115.80', '193.141.119.23', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.119.24', '193.141.119.31', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.119.32', '193.141.120.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.121.0', '193.141.121.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.122.0', '193.141.123.111', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.123.112', '193.141.123.119', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.123.120', '193.141.124.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.124.128', '193.141.124.135', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.124.136', '193.141.124.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.125.0', '193.141.127.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.128.0', '193.141.128.79', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.128.80', '193.141.128.87', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.128.88', '193.141.128.239', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.128.240', '193.141.128.247', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.128.248', '193.141.130.207', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.130.208', '193.141.130.215', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.130.216', '193.141.131.15', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.131.16', '193.141.131.23', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.131.24', '193.141.132.143', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.132.144', '193.141.132.151', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.132.152', '193.141.132.191', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.132.192', '193.141.132.199', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.132.200', '193.141.133.159', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.133.160', '193.141.133.167', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.133.168', '193.141.134.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.134.64', '193.141.134.71', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.134.72', '193.141.137.7', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.137.8', '193.141.137.15', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.137.16', '193.141.138.199', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.138.200', '193.141.138.207', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.138.208', '193.141.138.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.139.0', '193.141.143.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.144.0', '193.141.144.191', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.144.192', '193.141.144.199', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.144.200', '193.141.145.215', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.145.216', '193.141.145.223', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.145.224', '193.141.145.231', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.145.232', '193.141.145.239', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.145.240', '193.141.147.23', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.147.24', '193.141.147.31', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.147.32', '193.141.147.231', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.147.232', '193.141.147.239', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.147.240', '193.141.148.7', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.148.8', '193.141.148.15', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.148.16', '193.141.148.31', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.148.32', '193.141.148.39', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.148.40', '193.141.148.55', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.148.56', '193.141.148.63', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.148.64', '193.141.148.175', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.148.176', '193.141.148.183', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.148.184', '193.141.148.231', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.148.232', '193.141.148.239', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.148.240', '193.141.149.119', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.149.120', '193.141.149.127', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.149.128', '193.141.149.199', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.149.200', '193.141.149.207', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.149.208', '193.141.149.223', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.149.224', '193.141.149.231', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.149.232', '193.141.150.103', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.150.104', '193.141.150.111', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.150.112', '193.141.150.167', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.150.168', '193.141.150.175', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.150.176', '193.141.150.183', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.150.184', '193.141.150.191', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.150.192', '193.141.151.87', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.151.88', '193.141.151.95', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.151.96', '193.141.151.247', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.151.248', '193.141.151.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.152.0', '193.141.152.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.152.64', '193.141.152.71', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.152.72', '193.141.152.207', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.152.208', '193.141.152.215', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.152.216', '193.141.152.231', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.152.232', '193.141.152.239', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.152.240', '193.141.153.31', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.153.32', '193.141.153.39', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.153.40', '193.141.155.55', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.155.56', '193.141.155.63', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.155.64', '193.141.155.135', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.155.136', '193.141.155.143', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.155.144', '193.141.158.15', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.158.16', '193.141.158.23', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.158.24', '193.141.158.207', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.158.208', '193.141.158.215', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.158.216', '193.141.159.199', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.159.200', '193.141.159.207', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.159.208', '193.141.160.39', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.160.40', '193.141.160.47', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.160.48', '193.141.161.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.161.128', '193.141.161.135', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.161.136', '193.141.161.143', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.161.144', '193.141.161.151', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.161.152', '193.141.161.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.162.0', '193.141.162.7', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.162.8', '193.141.162.39', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.162.40', '193.141.162.47', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.162.48', '193.141.162.119', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.162.120', '193.141.162.127', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.162.128', '193.141.164.143', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.164.144', '193.141.164.151', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.164.152', '193.141.164.207', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.164.208', '193.141.164.215', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.164.216', '193.141.165.47', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.165.48', '193.141.165.55', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.165.56', '193.141.165.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.165.128', '193.141.165.135', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.165.136', '193.141.165.159', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.165.160', '193.141.165.167', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.165.168', '193.141.166.239', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.166.240', '193.141.166.247', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.166.248', '193.141.168.23', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.168.24', '193.141.168.31', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.168.32', '193.141.169.23', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.169.24', '193.141.169.31', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.169.32', '193.141.169.159', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.169.160', '193.141.169.167', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.169.168', '193.141.171.15', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.171.16', '193.141.171.23', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.171.24', '193.141.171.95', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.171.96', '193.141.171.103', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.171.104', '193.141.171.159', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.171.160', '193.141.171.167', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.171.168', '193.141.171.223', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.171.224', '193.141.171.231', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.171.232', '193.141.175.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.176.0', '193.141.231.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.232.0', '193.141.232.55', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.232.56', '193.141.232.63', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.232.64', '193.141.233.199', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.233.200', '193.141.233.207', 2147483647, 2147483647, 'DE', 'Germany'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('193.141.233.208', '193.141.234.103', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.234.104', '193.141.234.111', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.234.112', '193.141.236.95', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.236.96', '193.141.236.103', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.236.104', '193.141.237.15', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.237.16', '193.141.237.23', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.237.24', '193.141.237.87', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.237.88', '193.141.237.95', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.237.96', '193.141.238.79', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.238.80', '193.141.238.87', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.238.88', '193.141.239.71', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.239.72', '193.141.239.79', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.239.80', '193.141.239.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.240.0', '193.141.240.7', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.240.8', '193.141.240.23', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.240.24', '193.141.240.31', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.240.32', '193.141.241.223', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.241.224', '193.141.241.231', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.241.232', '193.141.241.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.242.0', '193.141.242.15', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.242.16', '193.141.242.47', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.242.48', '193.141.242.55', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.242.56', '193.141.244.47', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.244.48', '193.141.244.55', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.244.56', '193.141.244.239', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.244.240', '193.141.244.247', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.244.248', '193.141.245.215', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.245.216', '193.141.245.223', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.245.224', '193.141.246.71', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.246.72', '193.141.246.79', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.246.80', '193.141.246.207', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.246.208', '193.141.246.215', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.246.216', '193.141.247.87', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.247.88', '193.141.247.103', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.247.104', '193.141.248.143', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.248.144', '193.141.248.151', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.248.152', '193.141.250.151', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.250.152', '193.141.250.159', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.250.160', '193.141.251.23', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.251.24', '193.141.251.31', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.251.32', '193.141.251.71', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.251.72', '193.141.251.79', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.251.80', '193.141.252.215', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.252.216', '193.141.252.223', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.252.224', '193.141.253.47', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.253.48', '193.141.253.55', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.253.56', '193.141.254.191', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.254.192', '193.141.254.199', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.254.200', '193.141.255.183', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.141.255.184', '193.141.255.191', 2147483647, 2147483647, 'DE', 'Germany'), +('193.141.255.192', '193.141.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.142.0.0', '193.142.0.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('193.142.1.0', '193.142.29.255', 2147483647, 2147483647, 'FI', 'Finland'), +('193.142.30.0', '193.142.30.255', 2147483647, 2147483647, 'NO', 'Norway'), +('193.142.31.0', '193.142.52.255', 2147483647, 2147483647, 'FI', 'Finland'), +('193.142.53.0', '193.142.53.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.142.54.0', '193.142.55.255', 2147483647, 2147483647, 'FI', 'Finland'), +('193.142.56.0', '193.142.57.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.142.58.0', '193.142.60.255', 2147483647, 2147483647, 'FI', 'Finland'), +('193.142.61.0', '193.142.61.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.142.62.0', '193.142.62.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.142.63.0', '193.142.96.255', 2147483647, 2147483647, 'FI', 'Finland'), +('193.142.97.0', '193.142.97.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.142.98.0', '193.142.99.255', 2147483647, 2147483647, 'FI', 'Finland'), +('193.142.100.0', '193.142.100.255', 2147483647, 2147483647, 'NO', 'Norway'), +('193.142.101.0', '193.142.102.255', 2147483647, 2147483647, 'FI', 'Finland'), +('193.142.103.0', '193.142.103.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('193.142.104.0', '193.142.107.255', 2147483647, 2147483647, 'FI', 'Finland'), +('193.142.108.0', '193.142.110.255', 2147483647, 2147483647, 'NO', 'Norway'), +('193.142.111.0', '193.142.111.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.142.112.0', '193.142.113.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.142.114.0', '193.142.114.255', 2147483647, 2147483647, 'FI', 'Finland'), +('193.142.115.0', '193.142.115.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.142.116.0', '193.142.116.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('193.142.117.0', '193.142.119.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.142.120.0', '193.142.123.255', 2147483647, 2147483647, 'FI', 'Finland'), +('193.142.124.0', '193.142.124.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.142.125.0', '193.142.125.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.142.126.0', '193.142.126.255', 2147483647, 2147483647, 'FI', 'Finland'), +('193.142.127.0', '193.142.127.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.142.128.0', '193.142.144.255', 2147483647, 2147483647, 'FI', 'Finland'), +('193.142.145.0', '193.142.145.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('193.142.146.0', '193.142.148.255', 2147483647, 2147483647, 'FI', 'Finland'), +('193.142.149.0', '193.142.149.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('193.142.150.0', '193.142.150.255', 2147483647, 2147483647, 'FI', 'Finland'), +('193.142.151.0', '193.142.151.255', 2147483647, 2147483647, 'IL', 'Israel'), +('193.142.152.0', '193.142.152.255', 2147483647, 2147483647, 'FI', 'Finland'), +('193.142.153.0', '193.142.153.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('193.142.154.0', '193.142.156.255', 2147483647, 2147483647, 'FI', 'Finland'), +('193.142.157.0', '193.142.157.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.142.158.0', '193.142.159.255', 2147483647, 2147483647, 'FI', 'Finland'), +('193.142.160.0', '193.142.175.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.142.176.0', '193.142.207.255', 2147483647, 2147483647, 'FI', 'Finland'), +('193.142.208.0', '193.142.208.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.142.209.0', '193.142.209.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('193.142.210.0', '193.142.210.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.142.211.0', '193.142.211.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('193.142.212.0', '193.142.212.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.142.213.0', '193.142.213.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.142.214.0', '193.142.214.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('193.142.215.0', '193.142.215.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.142.216.0', '193.142.216.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.142.217.0', '193.142.217.255', 2147483647, 2147483647, 'ES', 'Spain'), +('193.142.218.0', '193.142.219.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.142.220.0', '193.142.220.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.142.221.0', '193.142.221.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.142.222.0', '193.142.222.255', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('193.142.223.0', '193.142.223.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.142.224.0', '193.142.242.255', 2147483647, 2147483647, 'FI', 'Finland'), +('193.142.243.0', '193.142.243.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.142.244.0', '193.142.244.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.142.245.0', '193.142.245.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.142.246.0', '193.142.255.255', 2147483647, 2147483647, 'FI', 'Finland'), +('193.143.0.0', '193.143.0.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.143.1.0', '193.143.76.255', 2147483647, 2147483647, 'FI', 'Finland'), +('193.143.77.0', '193.143.77.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.143.78.0', '193.143.97.255', 2147483647, 2147483647, 'FI', 'Finland'), +('193.143.98.0', '193.143.98.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.143.99.0', '193.143.118.255', 2147483647, 2147483647, 'FI', 'Finland'), +('193.143.119.0', '193.143.119.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.143.120.0', '193.143.120.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.143.121.0', '193.143.121.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.143.122.0', '193.143.122.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.143.123.0', '193.143.225.255', 2147483647, 2147483647, 'FI', 'Finland'), +('193.143.226.0', '193.143.226.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('193.143.227.0', '193.143.248.255', 2147483647, 2147483647, 'FI', 'Finland'), +('193.143.249.0', '193.143.249.255', 2147483647, 2147483647, 'IT', 'Italy'), +('193.143.250.0', '193.143.255.255', 2147483647, 2147483647, 'FI', 'Finland'), +('193.144.0.0', '193.147.255.255', 2147483647, 2147483647, 'ES', 'Spain'), +('193.148.0.0', '193.148.0.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.148.1.0', '193.148.10.255', 2147483647, 2147483647, 'ES', 'Spain'), +('193.148.11.0', '193.148.11.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.148.12.0', '193.148.14.255', 2147483647, 2147483647, 'ES', 'Spain'), +('193.148.15.0', '193.148.15.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.148.16.0', '193.148.37.255', 2147483647, 2147483647, 'ES', 'Spain'), +('193.148.38.0', '193.148.39.255', 2147483647, 2147483647, 'IT', 'Italy'), +('193.148.40.0', '193.148.43.255', 2147483647, 2147483647, 'ES', 'Spain'), +('193.148.44.0', '193.148.44.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.148.45.0', '193.148.45.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('193.148.46.0', '193.148.46.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('193.148.47.0', '193.148.47.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.148.48.0', '193.148.55.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.148.56.0', '193.148.61.255', 2147483647, 2147483647, 'ES', 'Spain'), +('193.148.62.0', '193.148.63.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.148.64.0', '193.149.7.255', 2147483647, 2147483647, 'ES', 'Spain'), +('193.149.8.0', '193.149.15.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.149.16.0', '193.149.31.255', 2147483647, 2147483647, 'ES', 'Spain'), +('193.149.32.0', '193.149.47.63', 2147483647, 2147483647, 'DE', 'Germany'), +('193.149.47.64', '193.149.47.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('193.149.48.0', '193.149.63.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.149.64.0', '193.149.95.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.149.96.0', '193.149.127.255', 2147483647, 2147483647, 'FR', 'France'), +('193.149.128.0', '193.149.191.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('193.149.192.0', '193.149.194.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('193.149.195.0', '193.149.195.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.149.196.0', '193.149.207.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('193.149.208.0', '193.149.213.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.149.214.0', '193.149.216.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.149.217.0', '193.149.219.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.149.220.0', '193.149.224.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('193.149.225.0', '193.149.227.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.149.228.0', '193.149.231.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('193.149.232.0', '193.149.239.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.149.240.0', '193.149.255.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('193.150.0.0', '193.150.127.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.150.128.0', '193.150.151.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.150.152.0', '193.150.164.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.150.165.0', '193.150.165.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('193.150.166.0', '193.150.167.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.150.168.0', '193.150.168.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.150.169.0', '193.150.169.255', 2147483647, 2147483647, 'FR', 'France'), +('193.150.170.0', '193.150.170.255', 2147483647, 2147483647, 'ES', 'Spain'), +('193.150.171.0', '193.150.171.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.150.172.0', '193.150.173.255', 2147483647, 2147483647, 'GR', 'Greece'), +('193.150.174.0', '193.150.179.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.150.180.0', '193.150.191.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.150.192.0', '193.150.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.151.0.0', '193.151.3.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.151.4.0', '193.151.7.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.151.8.0', '193.151.11.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.151.12.0', '193.151.15.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.151.16.0', '193.151.19.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.151.20.0', '193.151.23.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('193.151.24.0', '193.151.27.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.151.28.0', '193.151.31.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.151.32.0', '193.151.35.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.151.36.0', '193.151.39.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.151.40.0', '193.151.43.255', 2147483647, 2147483647, 'BY', 'Belarus'), +('193.151.44.0', '193.151.47.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.151.48.0', '193.151.55.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.151.56.0', '193.151.59.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.151.60.0', '193.151.63.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.151.64.0', '193.151.71.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.151.72.0', '193.151.75.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.151.76.0', '193.151.79.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.151.80.0', '193.151.83.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('193.151.84.0', '193.151.87.255', 2147483647, 2147483647, 'FR', 'France'), +('193.151.88.0', '193.151.91.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.151.92.0', '193.151.95.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.151.96.0', '193.151.103.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.151.104.0', '193.151.107.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.151.108.0', '193.151.111.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.151.112.0', '193.151.115.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.151.116.0', '193.151.119.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('193.151.120.0', '193.151.127.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.151.128.0', '193.151.239.255', 2147483647, 2147483647, 'FR', 'France'), +('193.151.240.0', '193.151.247.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.151.248.0', '193.151.251.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.151.252.0', '193.151.255.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.152.0.0', '193.153.255.255', 2147483647, 2147483647, 'ES', 'Spain'), +('193.154.0.0', '193.154.2.79', 2147483647, 2147483647, 'AT', 'Austria'), +('193.154.2.80', '193.154.2.87', 2147483647, 2147483647, 'HU', 'Hungary'), +('193.154.2.88', '193.154.255.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.155.0.0', '193.155.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.156.0.0', '193.156.33.255', 2147483647, 2147483647, 'NO', 'Norway'), +('193.156.34.0', '193.156.34.255', 2147483647, 2147483647, 'PK', 'Pakistan'), +('193.156.35.0', '193.157.255.255', 2147483647, 2147483647, 'NO', 'Norway'), +('193.158.0.0', '193.158.3.223', 2147483647, 2147483647, 'DE', 'Germany'), +('193.158.3.224', '193.158.3.239', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('193.158.3.240', '193.158.51.79', 2147483647, 2147483647, 'DE', 'Germany'), +('193.158.51.80', '193.158.51.87', 2147483647, 2147483647, 'AT', 'Austria'), +('193.158.51.88', '193.158.56.31', 2147483647, 2147483647, 'DE', 'Germany'), +('193.158.56.32', '193.158.56.39', 2147483647, 2147483647, 'PL', 'Poland'), +('193.158.56.40', '193.158.58.15', 2147483647, 2147483647, 'DE', 'Germany'), +('193.158.58.16', '193.158.58.23', 2147483647, 2147483647, 'AT', 'Austria'), +('193.158.58.24', '193.158.58.31', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.158.58.32', '193.158.58.39', 2147483647, 2147483647, 'AT', 'Austria'), +('193.158.58.40', '193.158.58.47', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.158.58.48', '193.158.58.95', 2147483647, 2147483647, 'DE', 'Germany'), +('193.158.58.96', '193.158.58.103', 2147483647, 2147483647, 'BE', 'Belgium'), +('193.158.58.104', '193.159.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.160.0.0', '193.160.143.255', 2147483647, 2147483647, 'NO', 'Norway'), +('193.160.144.0', '193.160.144.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.160.145.0', '193.160.145.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('193.160.146.0', '193.161.255.255', 2147483647, 2147483647, 'NO', 'Norway'), +('193.162.0.0', '193.162.73.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('193.162.74.0', '193.162.74.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.162.75.0', '193.163.255.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('193.164.0.0', '193.164.0.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('193.164.1.0', '193.164.6.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.164.7.0', '193.164.7.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.164.8.0', '193.164.8.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.164.9.0', '193.164.9.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('193.164.10.0', '193.164.11.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.164.12.0', '193.164.12.255', 2147483647, 2147483647, 'FR', 'France'), +('193.164.13.0', '193.164.14.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.164.15.0', '193.164.15.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.164.16.0', '193.164.31.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.164.32.0', '193.164.91.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.164.92.0', '193.164.95.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.164.96.0', '193.164.128.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.164.129.0', '193.164.129.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.164.130.0', '193.164.130.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.164.131.0', '193.164.135.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.164.136.0', '193.164.136.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.164.137.0', '193.164.141.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('193.164.142.0', '193.164.142.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.164.143.0', '193.164.143.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.164.144.0', '193.164.144.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.164.145.0', '193.164.145.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.164.146.0', '193.164.146.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.164.147.0', '193.164.147.255', 2147483647, 2147483647, 'ES', 'Spain'), +('193.164.148.0', '193.164.148.255', 2147483647, 2147483647, 'FR', 'France'), +('193.164.149.0', '193.164.149.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.164.150.0', '193.164.151.255', 2147483647, 2147483647, 'FR', 'France'), +('193.164.152.0', '193.164.152.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.164.153.0', '193.164.153.255', 2147483647, 2147483647, 'FR', 'France'), +('193.164.154.0', '193.164.154.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.164.155.0', '193.164.155.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('193.164.156.0', '193.164.156.255', 2147483647, 2147483647, 'FR', 'France'), +('193.164.157.0', '193.164.157.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.164.158.0', '193.164.158.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('193.164.159.0', '193.164.159.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.164.160.0', '193.164.163.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.164.163.16', '193.164.179.191', 2147483647, 2147483647, 'EU', 'Europe'), +('193.164.179.192', '193.164.180.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.164.180.192', '193.164.187.183', 2147483647, 2147483647, 'EU', 'Europe'), +('193.164.187.184', '193.164.187.187', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.164.187.188', '193.164.188.255', 2147483647, 2147483647, 'EU', 'Europe'), +('193.164.189.0', '193.164.189.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.164.190.0', '193.164.191.247', 2147483647, 2147483647, 'EU', 'Europe'), +('193.164.191.248', '193.164.191.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.164.224.0', '193.164.225.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.164.226.0', '193.164.227.255', 2147483647, 2147483647, 'GR', 'Greece'), +('193.164.228.0', '193.164.232.95', 2147483647, 2147483647, 'FR', 'France'), +('193.164.232.96', '193.164.232.127', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.164.232.128', '193.164.232.159', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.164.232.160', '193.164.232.191', 2147483647, 2147483647, 'HR', 'Croatia'), +('193.164.232.192', '193.164.232.223', 2147483647, 2147483647, 'FR', 'France'), +('193.164.232.224', '193.164.232.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.164.233.0', '193.164.233.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.164.234.0', '193.164.241.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.164.242.0', '193.164.243.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.164.244.0', '193.164.245.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.164.246.0', '193.164.247.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.164.248.0', '193.164.251.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('193.164.252.0', '193.164.253.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.165.0.0', '193.165.255.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('193.166.0.0', '193.167.255.255', 2147483647, 2147483647, 'FI', 'Finland'), +('193.168.0.0', '193.168.0.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.168.1.0', '193.168.5.255', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('193.168.6.0', '193.168.7.255', 2147483647, 2147483647, 'EU', 'Europe'), +('193.168.8.0', '193.168.49.255', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('193.168.50.0', '193.168.50.255', 2147483647, 2147483647, 'FR', 'France'), +('193.168.51.0', '193.168.53.255', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('193.168.54.0', '193.168.54.255', 2147483647, 2147483647, 'EU', 'Europe'), +('193.168.55.0', '193.168.127.255', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('193.168.128.0', '193.168.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.169.0.0', '193.169.1.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.169.2.0', '193.169.3.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.169.4.0', '193.169.5.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.169.6.0', '193.169.9.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.169.10.0', '193.169.11.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.169.12.0', '193.169.13.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.169.14.0', '193.169.15.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.169.16.0', '193.169.17.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('193.169.18.0', '193.169.19.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.169.20.0', '193.169.21.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.169.22.0', '193.169.29.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.169.30.0', '193.169.31.255', 2147483647, 2147483647, 'GI', 'Gibraltar'), +('193.169.32.0', '193.169.39.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.169.40.0', '193.169.41.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.169.42.0', '193.169.43.255', 2147483647, 2147483647, 'NO', 'Norway'), +('193.169.44.0', '193.169.45.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.169.46.0', '193.169.47.255', 2147483647, 2147483647, 'FR', 'France'), +('193.169.48.0', '193.169.49.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('193.169.50.0', '193.169.51.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.169.52.0', '193.169.53.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.169.54.0', '193.169.55.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.169.56.0', '193.169.57.255', 2147483647, 2147483647, 'IT', 'Italy'), +('193.169.58.0', '193.169.59.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.169.60.0', '193.169.63.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.169.64.0', '193.169.67.255', 2147483647, 2147483647, 'FR', 'France'), +('193.169.68.0', '193.169.69.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.169.70.0', '193.169.71.255', 2147483647, 2147483647, 'IL', 'Israel'), +('193.169.72.0', '193.169.73.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.169.74.0', '193.169.75.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('193.169.76.0', '193.169.77.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.169.78.0', '193.169.79.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.169.80.0', '193.169.81.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.169.82.0', '193.169.83.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.169.84.0', '193.169.85.255', 2147483647, 2147483647, 'FI', 'Finland'), +('193.169.86.0', '193.169.87.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.169.88.0', '193.169.89.255', 2147483647, 2147483647, 'IL', 'Israel'), +('193.169.90.0', '193.169.91.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.169.92.0', '193.169.93.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.169.94.0', '193.169.95.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.169.96.0', '193.169.97.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.169.98.0', '193.169.99.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.169.100.0', '193.169.101.255', 2147483647, 2147483647, 'FI', 'Finland'), +('193.169.102.0', '193.169.103.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.169.104.0', '193.169.105.255', 2147483647, 2147483647, 'IL', 'Israel'), +('193.169.106.0', '193.169.107.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.169.108.0', '193.169.109.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.169.110.0', '193.169.111.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.169.112.0', '193.169.119.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.170.0.0', '193.171.255.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.172.0.0', '193.172.11.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.172.11.64', '193.172.11.79', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('193.172.11.80', '193.172.59.159', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.172.59.160', '193.172.59.175', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('193.172.59.176', '193.172.215.191', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.172.215.192', '193.172.215.223', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('193.172.215.224', '193.173.37.207', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.173.37.208', '193.173.37.223', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('193.173.37.224', '193.173.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.174.0.0', '193.174.3.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.174.4.0', '193.174.4.255', 2147483647, 2147483647, 'IT', 'Italy'), +('193.174.5.0', '193.175.194.127', 2147483647, 2147483647, 'DE', 'Germany'), +('193.175.194.128', '193.175.194.191', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.175.194.192', '193.175.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.176.0.0', '193.176.0.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('193.176.1.0', '193.176.2.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.176.3.0', '193.176.3.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.176.4.0', '193.176.55.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.176.56.0', '193.176.60.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.176.61.0', '193.177.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.178.0.0', '193.178.33.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('193.178.34.0', '193.178.34.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.178.35.0', '193.178.35.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.178.36.0', '193.178.42.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('193.178.43.0', '193.178.43.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.178.44.0', '193.178.59.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('193.178.60.0', '193.178.63.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.178.64.0', '193.178.116.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('193.178.117.0', '193.178.117.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.178.118.0', '193.178.118.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.178.119.0', '193.178.119.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('193.178.120.0', '193.178.123.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.178.124.0', '193.178.127.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.178.128.0', '193.178.130.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.178.131.0', '193.178.131.255', 2147483647, 2147483647, 'GR', 'Greece'), +('193.178.132.0', '193.178.132.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.178.133.0', '193.178.133.255', 2147483647, 2147483647, 'FI', 'Finland'), +('193.178.134.0', '193.178.134.255', 2147483647, 2147483647, 'FR', 'France'), +('193.178.135.0', '193.178.135.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.178.136.0', '193.178.138.255', 2147483647, 2147483647, 'FR', 'France'), +('193.178.139.0', '193.178.139.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.178.140.0', '193.178.140.255', 2147483647, 2147483647, 'FR', 'France'), +('193.178.141.0', '193.178.141.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.178.142.0', '193.178.142.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.178.143.0', '193.178.143.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.178.144.0', '193.178.147.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.178.148.0', '193.178.149.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.178.150.0', '193.178.151.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('193.178.152.0', '193.178.153.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('193.178.154.0', '193.178.155.255', 2147483647, 2147483647, 'FR', 'France'), +('193.178.156.0', '193.178.157.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.178.158.0', '193.178.159.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.178.160.0', '193.178.160.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.178.161.0', '193.178.161.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.178.162.0', '193.178.162.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.178.163.0', '193.178.163.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.178.164.0', '193.178.164.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.178.165.0', '193.178.165.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.178.166.0', '193.178.166.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('193.178.167.0', '193.178.167.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.178.168.0', '193.178.168.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('193.178.169.0', '193.178.170.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.178.171.0', '193.178.171.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.178.172.0', '193.178.172.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.178.173.0', '193.178.173.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.178.174.0', '193.178.174.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('193.178.175.0', '193.178.175.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('193.178.176.0', '193.178.183.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('193.178.184.0', '193.178.184.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.178.185.0', '193.178.185.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.178.186.0', '193.178.186.255', 2147483647, 2147483647, 'FR', 'France'), +('193.178.187.0', '193.178.187.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.178.188.0', '193.178.188.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('193.178.189.0', '193.178.189.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.178.190.0', '193.178.191.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.178.192.0', '193.178.195.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('193.178.196.0', '193.178.199.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.178.200.0', '193.178.203.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.178.204.0', '193.178.207.255', 2147483647, 2147483647, 'IT', 'Italy'), +('193.178.208.0', '193.178.208.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.178.209.0', '193.178.209.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('193.178.210.0', '193.178.212.255', 2147483647, 2147483647, 'FR', 'France'), +('193.178.213.0', '193.178.214.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.178.215.0', '193.178.215.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.178.216.0', '193.178.216.255', 2147483647, 2147483647, 'IT', 'Italy'), +('193.178.217.0', '193.178.217.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.178.218.0', '193.178.218.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('193.178.219.0', '193.178.219.255', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('193.178.220.0', '193.178.220.255', 2147483647, 2147483647, 'IL', 'Israel'), +('193.178.221.0', '193.178.221.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.178.222.0', '193.178.222.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('193.178.223.0', '193.178.223.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.178.224.0', '193.178.225.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.178.226.0', '193.178.227.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.178.228.0', '193.178.229.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.178.230.0', '193.178.231.255', 2147483647, 2147483647, 'IT', 'Italy'), +('193.178.232.0', '193.178.233.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('193.178.234.0', '193.178.235.255', 2147483647, 2147483647, 'IT', 'Italy'), +('193.178.236.0', '193.178.237.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.178.238.0', '193.178.239.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.178.240.0', '193.178.243.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.178.244.0', '193.178.247.255', 2147483647, 2147483647, 'IT', 'Italy'), +('193.178.248.0', '193.178.251.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.178.252.0', '193.178.255.255', 2147483647, 2147483647, 'IT', 'Italy'), +('193.179.0.0', '193.179.255.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('193.180.0.0', '193.183.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.184.0.0', '193.184.1.67', 2147483647, 2147483647, 'FI', 'Finland'), +('193.184.1.68', '193.184.1.71', 2147483647, 2147483647, 'AX', 'Aland Islands'), +('193.184.1.72', '193.184.87.59', 2147483647, 2147483647, 'FI', 'Finland'), +('193.184.87.60', '193.184.87.63', 2147483647, 2147483647, 'AX', 'Aland Islands'), +('193.184.87.64', '193.184.247.167', 2147483647, 2147483647, 'FI', 'Finland'), +('193.184.247.168', '193.184.247.171', 2147483647, 2147483647, 'AX', 'Aland Islands'), +('193.184.247.172', '193.185.67.11', 2147483647, 2147483647, 'FI', 'Finland'), +('193.185.67.12', '193.185.67.15', 2147483647, 2147483647, 'AX', 'Aland Islands'), +('193.185.67.16', '193.185.67.71', 2147483647, 2147483647, 'FI', 'Finland'), +('193.185.67.72', '193.185.67.75', 2147483647, 2147483647, 'AX', 'Aland Islands'), +('193.185.67.76', '193.185.220.31', 2147483647, 2147483647, 'FI', 'Finland'), +('193.185.220.32', '193.185.220.47', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.185.220.48', '193.185.255.255', 2147483647, 2147483647, 'FI', 'Finland'), +('193.186.0.0', '193.186.0.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.186.1.0', '193.186.1.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.186.2.0', '193.186.2.255', 2147483647, 2147483647, 'IL', 'Israel'), +('193.186.3.0', '193.186.3.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.186.4.0', '193.186.4.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.186.5.0', '193.186.6.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.186.7.0', '193.186.7.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.186.8.0', '193.186.8.255', 2147483647, 2147483647, 'FR', 'France'), +('193.186.9.0', '193.186.9.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.186.10.0', '193.186.11.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.186.12.0', '193.186.12.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.186.13.0', '193.186.14.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.186.15.0', '193.186.15.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.186.16.0', '193.186.31.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.186.32.0', '193.186.32.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('193.186.33.0', '193.186.33.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.186.34.0', '193.186.34.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.186.35.0', '193.186.35.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('193.186.36.0', '193.186.161.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.186.162.0', '193.186.162.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.186.163.0', '193.186.163.255', 2147483647, 2147483647, 'GR', 'Greece'), +('193.186.164.0', '193.186.207.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.186.208.0', '193.186.208.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('193.186.209.0', '193.186.209.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.186.210.0', '193.186.210.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.186.211.0', '193.186.254.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.186.255.0', '193.186.255.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.187.0.0', '193.187.0.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.187.1.0', '193.187.254.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.187.255.0', '193.187.255.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.188.0.0', '193.188.0.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.188.1.0', '193.188.3.255', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('193.188.4.0', '193.188.5.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.188.6.0', '193.188.6.255', 2147483647, 2147483647, 'AE', 'United Arab Emirates'), +('193.188.7.0', '193.188.7.255', 2147483647, 2147483647, 'MA', 'Morocco'), +('193.188.8.0', '193.188.11.255', 2147483647, 2147483647, 'OM', 'Oman'), +('193.188.12.0', '193.188.13.255', 2147483647, 2147483647, 'BH', 'Bahrain'), +('193.188.14.0', '193.188.31.255', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('193.188.32.0', '193.188.47.255', 2147483647, 2147483647, 'MT', 'Malta'), +('193.188.48.0', '193.188.63.255', 2147483647, 2147483647, 'KW', 'Kuwait'), +('193.188.64.0', '193.188.95.255', 2147483647, 2147483647, 'JO', 'Jordan'), +('193.188.96.0', '193.188.127.255', 2147483647, 2147483647, 'BH', 'Bahrain'), +('193.188.128.0', '193.188.131.255', 2147483647, 2147483647, 'LB', 'Lebanon'), +('193.188.132.0', '193.188.134.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.188.134.64', '193.188.134.95', 2147483647, 2147483647, 'FR', 'France'), +('193.188.134.96', '193.188.134.111', 2147483647, 2147483647, 'EE', 'Estonia'), +('193.188.134.112', '193.188.134.119', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.188.134.160', '193.188.134.167', 2147483647, 2147483647, 'PL', 'Poland'), +('193.188.134.168', '193.188.134.199', 2147483647, 2147483647, 'CY', 'Cyprus'), +('193.188.134.200', '193.188.134.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.188.135.0', '193.188.136.255', 2147483647, 2147483647, 'LB', 'Lebanon'), +('193.188.137.0', '193.188.137.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('193.188.138.0', '193.188.139.255', 2147483647, 2147483647, 'LB', 'Lebanon'), +('193.188.140.0', '193.188.141.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('193.188.142.0', '193.188.153.255', 2147483647, 2147483647, 'KW', 'Kuwait'), +('193.188.154.0', '193.188.155.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.188.156.0', '193.188.157.255', 2147483647, 2147483647, 'EU', 'Europe'), +('193.188.158.0', '193.188.159.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.188.160.0', '193.188.191.255', 2147483647, 2147483647, 'KW', 'Kuwait'), +('193.188.192.0', '193.188.194.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('193.188.195.0', '193.188.195.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.188.196.0', '193.188.197.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.188.198.0', '193.188.199.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('193.188.200.0', '193.188.200.255', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('193.188.201.0', '193.188.203.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.188.204.0', '193.188.207.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.188.208.0', '193.188.223.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.188.224.0', '193.188.224.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('193.188.225.0', '193.188.247.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.188.248.0', '193.188.248.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.188.249.0', '193.188.249.255', 2147483647, 2147483647, 'FR', 'France'), +('193.188.250.0', '193.188.250.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.188.251.0', '193.188.251.255', 2147483647, 2147483647, 'FR', 'France'), +('193.188.252.0', '193.188.252.255', 2147483647, 2147483647, 'JO', 'Jordan'), +('193.188.253.0', '193.188.253.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.188.254.0', '193.188.254.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.188.255.0', '193.188.255.255', 2147483647, 2147483647, 'FR', 'France'), +('193.189.0.0', '193.189.65.255', 2147483647, 2147483647, 'NG', 'Nigeria'), +('193.189.66.0', '193.189.67.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('193.189.68.0', '193.189.69.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.189.70.0', '193.189.71.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.189.72.0', '193.189.73.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.189.74.0', '193.189.75.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.189.76.0', '193.189.77.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.189.78.0', '193.189.79.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.189.80.0', '193.189.81.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.189.82.0', '193.189.83.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.189.84.0', '193.189.85.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.189.86.0', '193.189.87.255', 2147483647, 2147483647, 'LT', 'Lithuania'), +('193.189.88.0', '193.189.89.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.189.90.0', '193.189.91.255', 2147483647, 2147483647, 'FR', 'France'), +('193.189.92.0', '193.189.93.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('193.189.94.0', '193.189.95.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.189.96.0', '193.189.97.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.189.98.0', '193.189.99.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.189.100.0', '193.189.101.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.189.102.0', '193.189.103.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.189.104.0', '193.189.105.255', 2147483647, 2147483647, 'FR', 'France'), +('193.189.106.0', '193.189.111.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.189.112.0', '193.189.113.255', 2147483647, 2147483647, 'IT', 'Italy'), +('193.189.114.0', '193.189.115.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.189.116.0', '193.189.117.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.189.118.0', '193.189.119.255', 2147483647, 2147483647, 'NO', 'Norway'), +('193.189.120.0', '193.189.121.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.189.122.0', '193.189.123.255', 2147483647, 2147483647, 'IR', 'Iran, Islamic Republic of'), +('193.189.124.0', '193.189.125.255', 2147483647, 2147483647, 'FR', 'France'), +('193.189.126.0', '193.189.127.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.189.128.0', '193.189.128.255', 2147483647, 2147483647, 'NG', 'Nigeria'), +('193.189.129.0', '193.189.133.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.189.134.0', '193.189.134.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.189.135.0', '193.189.135.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('193.189.136.0', '193.189.136.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.189.137.0', '193.189.137.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.189.138.0', '193.189.139.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.189.140.0', '193.189.141.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.189.142.0', '193.189.142.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('193.189.143.0', '193.189.143.255', 2147483647, 2147483647, 'FR', 'France'), +('193.189.144.0', '193.189.144.255', 2147483647, 2147483647, 'LT', 'Lithuania'), +('193.189.145.0', '193.189.145.255', 2147483647, 2147483647, 'NO', 'Norway'), +('193.189.146.0', '193.189.146.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.189.147.0', '193.189.147.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('193.189.148.0', '193.189.148.255', 2147483647, 2147483647, 'JO', 'Jordan'), +('193.189.149.0', '193.189.149.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.189.150.0', '193.189.159.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.189.160.0', '193.189.191.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('193.189.192.0', '193.189.192.63', 2147483647, 2147483647, 'FR', 'France'), +('193.189.192.64', '193.189.192.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.189.193.0', '193.189.193.31', 2147483647, 2147483647, 'FR', 'France'), +('193.189.193.32', '193.189.212.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.189.213.0', '193.189.213.7', 2147483647, 2147483647, 'DE', 'Germany'), +('193.189.213.8', '193.189.213.23', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.189.213.24', '193.189.213.31', 2147483647, 2147483647, 'DE', 'Germany'), +('193.189.213.32', '193.189.223.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.189.224.0', '193.189.244.127', 2147483647, 2147483647, 'DE', 'Germany'), +('193.189.244.128', '193.189.244.143', 2147483647, 2147483647, 'AT', 'Austria'), +('193.189.244.144', '193.189.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.190.0.0', '193.191.255.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('193.192.0.0', '193.192.0.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.192.1.0', '193.192.11.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('193.192.12.0', '193.192.12.127', 2147483647, 2147483647, 'IE', 'Ireland'), +('193.192.12.128', '193.192.12.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.192.13.0', '193.192.13.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.192.14.0', '193.192.14.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.192.15.0', '193.192.15.31', 2147483647, 2147483647, 'IE', 'Ireland'), +('193.192.15.32', '193.192.15.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.192.15.64', '193.192.15.127', 2147483647, 2147483647, 'HR', 'Croatia'), +('193.192.15.128', '193.192.15.191', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.192.15.192', '193.192.15.255', 2147483647, 2147483647, 'NO', 'Norway'), +('193.192.16.0', '193.192.31.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.192.32.0', '193.192.35.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.192.36.0', '193.192.37.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.192.38.0', '193.192.39.255', 2147483647, 2147483647, 'GR', 'Greece'), +('193.192.40.0', '193.192.41.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.192.42.0', '193.192.47.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.192.48.0', '193.192.49.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('193.192.50.0', '193.192.51.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.192.52.0', '193.192.53.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.192.54.0', '193.192.55.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.192.56.0', '193.192.57.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('193.192.58.0', '193.192.61.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.192.62.0', '193.192.63.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.192.64.0', '193.192.95.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.192.96.0', '193.192.127.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('193.192.128.0', '193.192.159.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.192.160.0', '193.192.191.255', 2147483647, 2147483647, 'PL', 'Poland'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('193.192.192.0', '193.192.223.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.192.224.0', '193.192.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.193.0.0', '193.193.31.255', 2147483647, 2147483647, 'IT', 'Italy'), +('193.193.32.0', '193.193.63.255', 2147483647, 2147483647, 'EU', 'Europe'), +('193.193.64.0', '193.193.95.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.193.96.0', '193.193.127.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.193.128.0', '193.193.159.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.193.160.0', '193.193.160.255', 2147483647, 2147483647, 'NO', 'Norway'), +('193.193.161.0', '193.193.161.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.193.162.0', '193.193.164.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('193.193.165.0', '193.193.168.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('193.193.169.0', '193.193.169.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.193.170.0', '193.193.170.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('193.193.171.0', '193.193.171.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.193.172.0', '193.193.173.255', 2147483647, 2147483647, 'IT', 'Italy'), +('193.193.174.0', '193.193.180.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.193.181.0', '193.193.181.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.193.182.0', '193.193.182.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('193.193.183.0', '193.193.183.255', 2147483647, 2147483647, 'IT', 'Italy'), +('193.193.184.0', '193.193.185.255', 2147483647, 2147483647, 'GR', 'Greece'), +('193.193.186.0', '193.193.189.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.193.190.0', '193.193.191.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.193.192.0', '193.193.223.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.193.224.0', '193.193.255.255', 2147483647, 2147483647, 'KZ', 'Kazakstan'), +('193.194.0.0', '193.194.0.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.194.1.0', '193.194.5.255', 2147483647, 2147483647, 'MA', 'Morocco'), +('193.194.6.0', '193.194.15.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.194.16.0', '193.194.20.255', 2147483647, 2147483647, 'IT', 'Italy'), +('193.194.21.0', '193.194.21.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.194.22.0', '193.194.31.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.194.32.0', '193.194.63.255', 2147483647, 2147483647, 'MA', 'Morocco'), +('193.194.64.0', '193.194.95.255', 2147483647, 2147483647, 'DZ', 'Algeria'), +('193.194.96.0', '193.194.127.255', 2147483647, 2147483647, 'EU', 'Europe'), +('193.194.128.0', '193.194.128.255', 2147483647, 2147483647, 'GH', 'Ghana'), +('193.194.129.0', '193.194.129.255', 2147483647, 2147483647, 'IT', 'Italy'), +('193.194.130.0', '193.194.131.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.194.132.0', '193.194.135.255', 2147483647, 2147483647, 'FR', 'France'), +('193.194.136.0', '193.194.137.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.194.138.0', '193.194.139.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.194.140.0', '193.194.141.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('193.194.142.0', '193.194.145.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.194.146.0', '193.194.146.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.194.147.0', '193.194.147.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.194.147.176', '193.194.147.191', 2147483647, 2147483647, 'IE', 'Ireland'), +('193.194.147.192', '193.194.147.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.194.148.0', '193.194.149.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.194.150.0', '193.194.151.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.194.152.0', '193.194.152.255', 2147483647, 2147483647, 'FR', 'France'), +('193.194.153.0', '193.194.154.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.194.155.0', '193.194.155.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('193.194.156.0', '193.194.156.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('193.194.157.0', '193.194.157.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.194.158.0', '193.194.158.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('193.194.159.0', '193.194.159.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('193.194.160.0', '193.194.191.255', 2147483647, 2147483647, 'GH', 'Ghana'), +('193.194.192.0', '193.194.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.195.0.0', '193.195.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.196.0.0', '193.197.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.198.0.0', '193.198.40.255', 2147483647, 2147483647, 'HR', 'Croatia'), +('193.198.41.0', '193.198.41.31', 2147483647, 2147483647, 'BA', 'Bosnia and Herzegovina'), +('193.198.41.32', '193.198.255.255', 2147483647, 2147483647, 'HR', 'Croatia'), +('193.199.0.0', '193.199.255.255', 2147483647, 2147483647, 'FI', 'Finland'), +('193.200.0.0', '193.200.0.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('193.200.1.0', '193.200.2.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('193.200.3.0', '193.200.3.255', 2147483647, 2147483647, 'IT', 'Italy'), +('193.200.4.0', '193.200.4.255', 2147483647, 2147483647, 'FR', 'France'), +('193.200.5.0', '193.200.5.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.200.6.0', '193.200.6.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.200.7.0', '193.200.7.255', 2147483647, 2147483647, 'ES', 'Spain'), +('193.200.8.0', '193.200.8.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('193.200.9.0', '193.200.9.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('193.200.10.0', '193.200.10.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.200.11.0', '193.200.11.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.200.12.0', '193.200.12.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('193.200.13.0', '193.200.13.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.200.14.0', '193.200.17.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('193.200.18.0', '193.200.18.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.200.19.0', '193.200.19.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.200.20.0', '193.200.20.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.200.21.0', '193.200.21.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.200.22.0', '193.200.22.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.200.23.0', '193.200.23.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('193.200.24.0', '193.200.24.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('193.200.25.0', '193.200.25.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.200.26.0', '193.200.26.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('193.200.27.0', '193.200.27.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.200.28.0', '193.200.28.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('193.200.29.0', '193.200.29.255', 2147483647, 2147483647, 'FR', 'France'), +('193.200.30.0', '193.200.30.255', 2147483647, 2147483647, 'IL', 'Israel'), +('193.200.31.0', '193.200.31.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.200.32.0', '193.200.33.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.200.34.0', '193.200.35.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.200.36.0', '193.200.39.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.200.40.0', '193.200.41.255', 2147483647, 2147483647, 'KW', 'Kuwait'), +('193.200.42.0', '193.200.43.255', 2147483647, 2147483647, 'FR', 'France'), +('193.200.44.0', '193.200.45.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('193.200.46.0', '193.200.47.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.200.48.0', '193.200.49.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.200.50.0', '193.200.51.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.200.52.0', '193.200.53.255', 2147483647, 2147483647, 'FR', 'France'), +('193.200.54.0', '193.200.55.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.200.56.0', '193.200.57.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.200.58.0', '193.200.59.255', 2147483647, 2147483647, 'FR', 'France'), +('193.200.60.0', '193.200.61.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('193.200.62.0', '193.200.63.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.200.64.0', '193.200.65.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.200.66.0', '193.200.67.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.200.68.0', '193.200.69.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.200.70.0', '193.200.71.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.200.72.0', '193.200.73.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.200.74.0', '193.200.75.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.200.76.0', '193.200.77.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.200.78.0', '193.200.79.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.200.80.0', '193.200.81.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.200.82.0', '193.200.83.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.200.84.0', '193.200.85.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.200.86.0', '193.200.87.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.200.88.0', '193.200.89.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.200.90.0', '193.200.91.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('193.200.92.0', '193.200.93.255', 2147483647, 2147483647, 'NO', 'Norway'), +('193.200.94.0', '193.200.95.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.200.96.0', '193.200.97.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.200.98.0', '193.200.101.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.200.102.0', '193.200.103.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.200.104.0', '193.200.105.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('193.200.106.0', '193.200.107.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.200.108.0', '193.200.109.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.200.110.0', '193.200.111.255', 2147483647, 2147483647, 'FR', 'France'), +('193.200.112.0', '193.200.113.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.200.114.0', '193.200.115.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.200.116.0', '193.200.117.255', 2147483647, 2147483647, 'FR', 'France'), +('193.200.118.0', '193.200.123.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.200.124.0', '193.200.125.255', 2147483647, 2147483647, 'LT', 'Lithuania'), +('193.200.126.0', '193.200.127.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.200.128.0', '193.200.128.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.200.129.0', '193.200.129.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.200.130.0', '193.200.130.255', 2147483647, 2147483647, 'AM', 'Armenia'), +('193.200.131.0', '193.200.131.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('193.200.132.0', '193.200.132.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.200.133.0', '193.200.133.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.200.134.0', '193.200.134.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('193.200.135.0', '193.200.135.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('193.200.136.0', '193.200.136.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('193.200.137.0', '193.200.138.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.200.139.0', '193.200.139.255', 2147483647, 2147483647, 'FR', 'France'), +('193.200.140.0', '193.200.140.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.200.141.0', '193.200.141.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.200.142.0', '193.200.142.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.200.143.0', '193.200.143.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('193.200.144.0', '193.200.144.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.200.145.0', '193.200.145.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.200.146.0', '193.200.146.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.200.147.0', '193.200.147.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.200.148.0', '193.200.148.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.200.149.0', '193.200.149.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.200.150.0', '193.200.150.255', 2147483647, 2147483647, 'SC', 'Seychelles'), +('193.200.151.0', '193.200.151.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.200.152.0', '193.200.152.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('193.200.153.0', '193.200.153.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.200.154.0', '193.200.154.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.200.155.0', '193.200.155.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('193.200.156.0', '193.200.156.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.200.157.0', '193.200.157.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.200.158.0', '193.200.158.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.200.159.0', '193.200.159.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.200.160.0', '193.200.161.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.200.162.0', '193.200.162.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.200.163.0', '193.200.163.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.200.164.0', '193.200.164.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.200.165.0', '193.200.166.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.200.167.0', '193.200.167.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.200.168.0', '193.200.168.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.200.169.0', '193.200.169.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.200.170.0', '193.200.170.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('193.200.171.0', '193.200.171.255', 2147483647, 2147483647, 'FR', 'France'), +('193.200.172.0', '193.200.172.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.200.173.0', '193.200.173.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.200.174.0', '193.200.174.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.200.175.0', '193.200.175.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.200.176.0', '193.200.177.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.200.178.0', '193.200.178.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.200.179.0', '193.200.179.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.200.180.0', '193.200.180.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('193.200.181.0', '193.200.182.255', 2147483647, 2147483647, 'FR', 'France'), +('193.200.183.0', '193.200.183.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.200.184.0', '193.200.184.255', 2147483647, 2147483647, 'FR', 'France'), +('193.200.185.0', '193.200.185.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('193.200.186.0', '193.200.187.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.200.188.0', '193.200.188.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('193.200.189.0', '193.200.189.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.200.190.0', '193.200.190.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.200.191.0', '193.200.192.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.200.193.0', '193.200.193.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.200.194.0', '193.200.194.255', 2147483647, 2147483647, 'ES', 'Spain'), +('193.200.195.0', '193.200.195.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.200.196.0', '193.200.196.255', 2147483647, 2147483647, 'JO', 'Jordan'), +('193.200.197.0', '193.200.197.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.200.198.0', '193.200.198.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.200.199.0', '193.200.199.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.200.200.0', '193.200.200.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.200.201.0', '193.200.201.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('193.200.202.0', '193.200.202.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.200.203.0', '193.200.203.255', 2147483647, 2147483647, 'HR', 'Croatia'), +('193.200.204.0', '193.200.204.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('193.200.205.0', '193.200.205.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.200.206.0', '193.200.206.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.200.207.0', '193.200.207.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('193.200.208.0', '193.200.208.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.200.209.0', '193.200.209.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.200.210.0', '193.200.210.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.200.211.0', '193.200.211.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.200.212.0', '193.200.212.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.200.213.0', '193.200.213.255', 2147483647, 2147483647, 'IT', 'Italy'), +('193.200.214.0', '193.200.214.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.200.215.0', '193.200.216.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.200.217.0', '193.200.217.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.200.218.0', '193.200.218.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.200.219.0', '193.200.219.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.200.220.0', '193.200.220.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.200.221.0', '193.200.221.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.200.222.0', '193.200.222.255', 2147483647, 2147483647, 'FR', 'France'), +('193.200.223.0', '193.200.223.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.200.224.0', '193.200.224.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('193.200.225.0', '193.200.225.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('193.200.226.0', '193.200.226.255', 2147483647, 2147483647, 'FR', 'France'), +('193.200.227.0', '193.200.227.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.200.228.0', '193.200.228.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.200.229.0', '193.200.229.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.200.230.0', '193.200.230.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.200.231.0', '193.200.231.255', 2147483647, 2147483647, 'FR', 'France'), +('193.200.232.0', '193.200.234.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.200.235.0', '193.200.235.255', 2147483647, 2147483647, 'NO', 'Norway'), +('193.200.236.0', '193.200.236.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.200.237.0', '193.200.237.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.200.238.0', '193.200.238.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.200.239.0', '193.200.239.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.200.240.0', '193.200.241.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.200.242.0', '193.200.242.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.200.243.0', '193.200.243.255', 2147483647, 2147483647, 'ES', 'Spain'), +('193.200.244.0', '193.200.244.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.200.245.0', '193.200.245.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.200.246.0', '193.200.246.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.200.247.0', '193.200.247.255', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('193.200.248.0', '193.200.248.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.200.249.0', '193.200.249.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.200.250.0', '193.200.250.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('193.200.251.0', '193.200.251.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.200.252.0', '193.200.252.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.200.253.0', '193.200.253.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.200.254.0', '193.200.254.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.200.255.0', '193.200.255.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.201.0.0', '193.201.4.255', 2147483647, 2147483647, 'FR', 'France'), +('193.201.5.0', '193.201.5.255', 2147483647, 2147483647, 'IT', 'Italy'), +('193.201.6.0', '193.201.7.255', 2147483647, 2147483647, 'FR', 'France'), +('193.201.8.0', '193.201.15.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.201.16.0', '193.201.17.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.201.18.0', '193.201.19.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.201.20.0', '193.201.21.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.201.22.0', '193.201.23.255', 2147483647, 2147483647, 'GR', 'Greece'), +('193.201.24.0', '193.201.25.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.201.26.0', '193.201.27.255', 2147483647, 2147483647, 'FR', 'France'), +('193.201.28.0', '193.201.29.255', 2147483647, 2147483647, 'IT', 'Italy'), +('193.201.30.0', '193.201.31.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.201.32.0', '193.201.32.255', 2147483647, 2147483647, 'NO', 'Norway'), +('193.201.33.0', '193.201.33.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.201.34.0', '193.201.34.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.201.35.0', '193.201.35.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('193.201.36.0', '193.201.36.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.201.37.0', '193.201.38.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.201.39.0', '193.201.39.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('193.201.40.0', '193.201.40.255', 2147483647, 2147483647, 'IT', 'Italy'), +('193.201.41.0', '193.201.41.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.201.42.0', '193.201.42.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.201.43.0', '193.201.43.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.201.44.0', '193.201.44.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.201.45.0', '193.201.45.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('193.201.46.0', '193.201.46.255', 2147483647, 2147483647, 'GR', 'Greece'), +('193.201.47.0', '193.201.47.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.201.48.0', '193.201.51.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.201.52.0', '193.201.55.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.201.56.0', '193.201.59.255', 2147483647, 2147483647, 'IT', 'Italy'), +('193.201.60.0', '193.201.63.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.201.64.0', '193.201.65.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.201.66.0', '193.201.67.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('193.201.68.0', '193.201.69.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('193.201.70.0', '193.201.71.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.201.72.0', '193.201.73.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.201.74.0', '193.201.75.255', 2147483647, 2147483647, 'NO', 'Norway'), +('193.201.76.0', '193.201.77.255', 2147483647, 2147483647, 'FR', 'France'), +('193.201.78.0', '193.201.79.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('193.201.80.0', '193.201.83.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.201.84.0', '193.201.87.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.201.88.0', '193.201.91.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.201.92.0', '193.201.95.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.201.96.0', '193.201.97.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.201.98.0', '193.201.100.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.201.101.0', '193.201.101.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('193.201.102.0', '193.201.102.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.201.103.0', '193.201.103.255', 2147483647, 2147483647, 'FR', 'France'), +('193.201.104.0', '193.201.104.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.201.105.0', '193.201.105.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.201.106.0', '193.201.106.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.201.107.0', '193.201.108.255', 2147483647, 2147483647, 'ES', 'Spain'), +('193.201.109.0', '193.201.109.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('193.201.110.0', '193.201.110.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('193.201.111.0', '193.201.111.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.201.112.0', '193.201.113.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.201.114.0', '193.201.115.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('193.201.116.0', '193.201.117.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.201.118.0', '193.201.119.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.201.120.0', '193.201.121.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.201.122.0', '193.201.123.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.201.124.0', '193.201.125.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.201.126.0', '193.201.127.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.201.128.0', '193.201.131.255', 2147483647, 2147483647, 'CY', 'Cyprus'), +('193.201.132.0', '193.201.135.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.201.136.0', '193.201.139.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.201.140.0', '193.201.143.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.201.144.0', '193.201.144.127', 2147483647, 2147483647, 'DE', 'Germany'), +('193.201.144.128', '193.201.144.255', 2147483647, 2147483647, 'FI', 'Finland'), +('193.201.145.128', '193.201.145.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.201.146.0', '193.201.146.127', 2147483647, 2147483647, 'FR', 'France'), +('193.201.146.128', '193.201.146.255', 2147483647, 2147483647, 'LT', 'Lithuania'), +('193.201.147.0', '193.201.147.63', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.201.147.64', '193.201.147.95', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.201.147.128', '193.201.147.159', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.201.147.160', '193.201.147.191', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.201.147.192', '193.201.147.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.201.148.0', '193.201.148.127', 2147483647, 2147483647, 'DE', 'Germany'), +('193.201.148.128', '193.201.148.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.201.148.192', '193.201.148.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.201.149.0', '193.201.149.63', 2147483647, 2147483647, 'FR', 'France'), +('193.201.149.128', '193.201.149.191', 2147483647, 2147483647, 'LV', 'Latvia'), +('193.201.149.192', '193.201.149.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('193.201.150.0', '193.201.150.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.201.150.64', '193.201.150.191', 2147483647, 2147483647, 'FI', 'Finland'), +('193.201.150.192', '193.201.150.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.201.151.0', '193.201.151.63', 2147483647, 2147483647, 'FR', 'France'), +('193.201.151.64', '193.201.151.127', 2147483647, 2147483647, 'MC', 'Monaco'), +('193.201.151.128', '193.201.151.191', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.201.151.192', '193.201.151.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.201.152.0', '193.201.152.127', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.201.152.128', '193.201.152.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.201.153.0', '193.201.154.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.201.154.128', '193.201.154.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.201.155.0', '193.201.155.127', 2147483647, 2147483647, 'SI', 'Slovenia'), +('193.201.155.128', '193.201.155.255', 2147483647, 2147483647, 'IL', 'Israel'), +('193.201.156.0', '193.201.156.127', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.201.156.128', '193.201.156.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.201.157.0', '193.201.157.127', 2147483647, 2147483647, 'TR', 'Turkey'), +('193.201.157.128', '193.201.157.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.201.158.0', '193.201.158.127', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.201.158.128', '193.201.158.255', 2147483647, 2147483647, 'LI', 'Liechtenstein'), +('193.201.159.0', '193.201.159.127', 2147483647, 2147483647, 'FI', 'Finland'), +('193.201.159.128', '193.201.159.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.201.160.0', '193.201.160.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.201.161.0', '193.201.161.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.201.162.0', '193.201.162.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('193.201.163.0', '193.201.163.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.201.164.0', '193.201.164.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.201.165.0', '193.201.165.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('193.201.166.0', '193.201.166.255', 2147483647, 2147483647, 'GR', 'Greece'), +('193.201.167.0', '193.201.167.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.201.168.0', '193.201.170.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.201.171.0', '193.201.171.255', 2147483647, 2147483647, 'IT', 'Italy'), +('193.201.172.0', '193.201.172.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('193.201.173.0', '193.201.174.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.201.175.0', '193.201.175.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.201.176.0', '193.201.183.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.201.184.0', '193.201.191.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.201.192.0', '193.201.193.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.201.194.0', '193.201.195.255', 2147483647, 2147483647, 'FR', 'France'), +('193.201.196.0', '193.201.197.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.201.198.0', '193.201.199.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.201.200.0', '193.201.201.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.201.202.0', '193.201.203.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.201.204.0', '193.201.205.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.201.206.0', '193.201.211.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.201.212.0', '193.201.215.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('193.201.216.0', '193.201.219.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.201.220.0', '193.201.223.255', 2147483647, 2147483647, 'NO', 'Norway'), +('193.201.224.0', '193.201.227.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.201.228.0', '193.201.231.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.201.232.0', '193.201.235.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.201.236.0', '193.201.239.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.201.240.0', '193.201.243.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('193.201.244.0', '193.201.247.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('193.201.248.0', '193.201.251.255', 2147483647, 2147483647, 'FR', 'France'), +('193.201.252.0', '193.201.255.255', 2147483647, 2147483647, 'US', 'United States'), +('193.202.0.0', '193.202.0.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.202.1.0', '193.202.7.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.202.8.0', '193.202.15.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('193.202.16.0', '193.202.16.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.202.17.0', '193.202.17.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('193.202.18.0', '193.202.18.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('193.202.19.0', '193.202.19.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.202.20.0', '193.202.20.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.202.21.0', '193.202.21.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.202.22.0', '193.202.22.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.202.23.0', '193.202.23.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.202.24.0', '193.202.24.255', 2147483647, 2147483647, 'FR', 'France'), +('193.202.25.0', '193.202.26.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.202.27.0', '193.202.27.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.202.28.0', '193.202.28.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.202.29.0', '193.202.29.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.202.30.0', '193.202.30.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.202.31.0', '193.202.31.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.202.32.0', '193.202.39.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.202.40.0', '193.202.40.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('193.202.41.0', '193.202.41.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.202.42.0', '193.202.42.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.202.43.0', '193.202.43.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('193.202.44.0', '193.202.44.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.202.45.0', '193.202.45.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.202.46.0', '193.202.61.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.202.62.0', '193.202.63.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.202.64.0', '193.202.73.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('193.202.74.0', '193.202.76.255', 2147483647, 2147483647, 'FR', 'France'), +('193.202.77.0', '193.202.78.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('193.202.79.0', '193.202.79.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('193.202.80.0', '193.202.90.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.202.91.0', '193.202.91.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('193.202.92.0', '193.202.92.255', 2147483647, 2147483647, 'IT', 'Italy'), +('193.202.93.0', '193.202.93.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.202.94.0', '193.202.94.255', 2147483647, 2147483647, 'ES', 'Spain'), +('193.202.95.0', '193.202.95.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.202.96.0', '193.202.104.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.202.105.0', '193.202.106.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.202.107.0', '193.202.109.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.202.110.0', '193.202.110.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.202.111.0', '193.202.111.255', 2147483647, 2147483647, 'FR', 'France'), +('193.202.112.0', '193.202.112.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.202.113.0', '193.202.113.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.202.114.0', '193.202.114.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.202.115.0', '193.202.115.255', 2147483647, 2147483647, 'NO', 'Norway'), +('193.202.116.0', '193.202.116.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.202.117.0', '193.202.117.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.202.118.0', '193.202.118.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.202.119.0', '193.202.119.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.202.120.0', '193.202.120.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('193.202.121.0', '193.202.121.255', 2147483647, 2147483647, 'FR', 'France'), +('193.202.122.0', '193.202.122.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.202.123.0', '193.202.123.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.202.124.0', '193.202.124.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.202.125.0', '193.202.126.255', 2147483647, 2147483647, 'FR', 'France'), +('193.202.127.0', '193.202.191.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.202.192.0', '193.202.239.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.202.240.0', '193.202.254.255', 2147483647, 2147483647, 'LI', 'Liechtenstein'), +('193.202.255.0', '193.202.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.203.0.0', '193.203.0.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.203.1.0', '193.203.1.255', 2147483647, 2147483647, 'MK', 'Macedonia'), +('193.203.2.0', '193.203.3.255', 2147483647, 2147483647, 'RS', 'Serbia'), +('193.203.4.0', '193.203.4.255', 2147483647, 2147483647, 'MK', 'Macedonia'), +('193.203.5.0', '193.203.5.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.203.6.0', '193.203.7.255', 2147483647, 2147483647, 'RS', 'Serbia'), +('193.203.8.0', '193.203.15.255', 2147483647, 2147483647, 'EU', 'Europe'), +('193.203.16.0', '193.203.17.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('193.203.18.0', '193.203.19.255', 2147483647, 2147483647, 'RS', 'Serbia'), +('193.203.20.0', '193.203.21.255', 2147483647, 2147483647, 'EU', 'Europe'), +('193.203.22.0', '193.203.22.255', 2147483647, 2147483647, 'RS', 'Serbia'), +('193.203.23.0', '193.203.23.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.203.24.0', '193.203.25.255', 2147483647, 2147483647, 'RS', 'Serbia'), +('193.203.26.0', '193.203.27.255', 2147483647, 2147483647, 'EU', 'Europe'), +('193.203.28.0', '193.203.29.255', 2147483647, 2147483647, 'RS', 'Serbia'), +('193.203.30.0', '193.203.31.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.203.32.0', '193.203.35.255', 2147483647, 2147483647, 'FR', 'France'), +('193.203.36.0', '193.203.43.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.203.44.0', '193.203.47.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.203.48.0', '193.203.51.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.203.52.0', '193.203.55.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('193.203.56.0', '193.203.59.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.203.60.0', '193.203.63.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.203.64.0', '193.203.89.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.203.90.0', '193.203.90.31', 2147483647, 2147483647, 'FR', 'France'), +('193.203.90.32', '193.203.90.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.203.90.192', '193.203.90.255', 2147483647, 2147483647, 'FR', 'France'), +('193.203.91.0', '193.203.91.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.203.92.0', '193.203.92.31', 2147483647, 2147483647, 'IT', 'Italy'), +('193.203.92.32', '193.203.92.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.203.92.192', '193.203.92.255', 2147483647, 2147483647, 'IT', 'Italy'), +('193.203.93.0', '193.203.95.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.203.96.0', '193.203.97.255', 2147483647, 2147483647, 'FR', 'France'), +('193.203.98.0', '193.203.99.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.203.100.0', '193.203.103.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.203.104.0', '193.203.105.255', 2147483647, 2147483647, 'IT', 'Italy'), +('193.203.106.0', '193.203.107.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('193.203.108.0', '193.203.109.255', 2147483647, 2147483647, 'FR', 'France'), +('193.203.110.0', '193.203.111.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.203.112.0', '193.203.113.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.203.114.0', '193.203.115.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.203.116.0', '193.203.117.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.203.118.0', '193.203.119.255', 2147483647, 2147483647, 'ES', 'Spain'), +('193.203.120.0', '193.203.121.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.203.122.0', '193.203.123.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.203.124.0', '193.203.127.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.203.128.0', '193.203.159.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('193.203.160.0', '193.203.191.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.203.192.0', '193.203.193.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.203.194.0', '193.203.195.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.203.196.0', '193.203.197.255', 2147483647, 2147483647, 'EE', 'Estonia'), +('193.203.198.0', '193.203.199.255', 2147483647, 2147483647, 'IL', 'Israel'), +('193.203.200.0', '193.203.201.255', 2147483647, 2147483647, 'ES', 'Spain'), +('193.203.202.0', '193.203.203.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.203.204.0', '193.203.205.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.203.206.0', '193.203.209.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.203.210.0', '193.203.211.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.203.212.0', '193.203.213.255', 2147483647, 2147483647, 'FR', 'France'), +('193.203.214.0', '193.203.215.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.203.216.0', '193.203.217.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.203.218.0', '193.203.219.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.203.220.0', '193.203.221.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.203.222.0', '193.203.223.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.203.224.0', '193.203.224.255', 2147483647, 2147483647, 'MK', 'Macedonia'), +('193.203.225.0', '193.203.226.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.203.227.0', '193.203.227.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.203.228.0', '193.203.235.255', 2147483647, 2147483647, 'IT', 'Italy'), +('193.203.236.0', '193.203.237.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.203.238.0', '193.203.239.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.203.240.0', '193.203.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.204.0.0', '193.207.139.223', 2147483647, 2147483647, 'IT', 'Italy'), +('193.207.139.224', '193.207.139.231', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.207.139.232', '193.207.255.255', 2147483647, 2147483647, 'IT', 'Italy'), +('193.208.0.0', '193.208.105.255', 2147483647, 2147483647, 'FI', 'Finland'), +('193.208.106.0', '193.208.106.255', 2147483647, 2147483647, 'NO', 'Norway'), +('193.208.107.0', '193.208.149.255', 2147483647, 2147483647, 'FI', 'Finland'), +('193.208.150.0', '193.208.150.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.208.151.0', '193.208.158.255', 2147483647, 2147483647, 'FI', 'Finland'), +('193.208.159.0', '193.208.159.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('193.208.160.0', '193.209.21.255', 2147483647, 2147483647, 'FI', 'Finland'), +('193.209.22.0', '193.209.22.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('193.209.23.0', '193.209.29.255', 2147483647, 2147483647, 'FI', 'Finland'), +('193.209.30.0', '193.209.30.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.209.31.0', '193.209.40.255', 2147483647, 2147483647, 'FI', 'Finland'), +('193.209.41.0', '193.209.41.7', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.209.41.8', '193.209.41.15', 2147483647, 2147483647, 'FI', 'Finland'), +('193.209.41.16', '193.209.41.31', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.209.41.32', '193.209.134.255', 2147483647, 2147483647, 'FI', 'Finland'), +('193.209.135.0', '193.209.135.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.209.136.0', '193.209.136.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.209.137.0', '193.209.255.255', 2147483647, 2147483647, 'FI', 'Finland'), +('193.210.0.0', '193.210.0.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.210.1.0', '193.210.34.255', 2147483647, 2147483647, 'FI', 'Finland'), +('193.210.35.0', '193.210.35.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.210.36.0', '193.210.70.255', 2147483647, 2147483647, 'FI', 'Finland'), +('193.210.71.0', '193.210.71.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.210.72.0', '193.210.117.255', 2147483647, 2147483647, 'FI', 'Finland'), +('193.210.118.0', '193.210.118.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.210.119.0', '193.210.146.255', 2147483647, 2147483647, 'FI', 'Finland'), +('193.210.147.0', '193.210.147.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('193.210.148.0', '193.210.159.255', 2147483647, 2147483647, 'FI', 'Finland'), +('193.210.160.0', '193.210.194.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('193.210.195.0', '193.210.196.255', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('193.210.197.0', '193.210.207.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('193.210.208.0', '193.211.76.255', 2147483647, 2147483647, 'FI', 'Finland'), +('193.211.77.0', '193.211.77.255', 2147483647, 2147483647, 'FR', 'France'), +('193.211.78.0', '193.211.78.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.211.79.0', '193.211.255.255', 2147483647, 2147483647, 'FI', 'Finland'), +('193.212.0.0', '193.212.123.183', 2147483647, 2147483647, 'NO', 'Norway'), +('193.212.123.184', '193.212.123.191', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.212.123.192', '193.213.210.71', 2147483647, 2147483647, 'NO', 'Norway'), +('193.213.210.72', '193.213.210.79', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.213.210.80', '193.217.255.255', 2147483647, 2147483647, 'NO', 'Norway'), +('193.218.0.0', '193.218.6.255', 2147483647, 2147483647, 'GR', 'Greece'), +('193.218.7.0', '193.218.7.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('193.218.8.0', '193.218.15.255', 2147483647, 2147483647, 'FR', 'France'), +('193.218.16.0', '193.218.32.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.218.33.0', '193.218.93.255', 2147483647, 2147483647, 'GR', 'Greece'), +('193.218.94.0', '193.218.94.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('193.218.95.0', '193.218.95.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.218.96.0', '193.218.97.255', 2147483647, 2147483647, 'GR', 'Greece'), +('193.218.98.0', '193.218.98.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('193.218.99.0', '193.218.99.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.218.100.0', '193.218.104.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.218.105.0', '193.218.105.255', 2147483647, 2147483647, 'FR', 'France'), +('193.218.106.0', '193.218.112.255', 2147483647, 2147483647, 'GR', 'Greece'), +('193.218.113.0', '193.218.113.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('193.218.114.0', '193.218.114.255', 2147483647, 2147483647, 'GP', 'Guadeloupe'), +('193.218.115.0', '193.218.115.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.218.116.0', '193.218.117.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.218.118.0', '193.218.125.255', 2147483647, 2147483647, 'GR', 'Greece'), +('193.218.126.0', '193.218.127.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.218.128.0', '193.218.131.255', 2147483647, 2147483647, 'NO', 'Norway'), +('193.218.132.0', '193.218.135.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.218.136.0', '193.218.143.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.218.144.0', '193.218.147.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.218.148.0', '193.218.155.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.218.156.0', '193.218.159.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.218.160.0', '193.218.191.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.218.192.0', '193.218.199.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('193.218.200.0', '193.218.200.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('193.218.201.0', '193.218.204.255', 2147483647, 2147483647, 'GR', 'Greece'), +('193.218.205.0', '193.218.205.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.218.205.64', '193.218.205.127', 2147483647, 2147483647, 'IR', 'Iran, Islamic Republic of'), +('193.218.205.128', '193.218.205.191', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('193.218.205.192', '193.218.205.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.218.205.224', '193.218.205.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.218.207.0', '193.218.207.15', 2147483647, 2147483647, 'NO', 'Norway'), +('193.218.208.0', '193.218.221.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.218.222.0', '193.218.222.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.218.223.0', '193.218.255.255', 2147483647, 2147483647, 'GR', 'Greece'), +('193.219.0.0', '193.219.0.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.219.1.0', '193.219.14.255', 2147483647, 2147483647, 'LT', 'Lithuania'), +('193.219.15.0', '193.219.15.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.219.15.16', '193.219.15.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.219.16.0', '193.219.27.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('193.219.28.0', '193.219.28.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.219.29.0', '193.219.29.255', 2147483647, 2147483647, 'IT', 'Italy'), +('193.219.30.0', '193.219.31.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('193.219.32.0', '193.219.95.255', 2147483647, 2147483647, 'LT', 'Lithuania'), +('193.219.96.0', '193.219.96.255', 2147483647, 2147483647, 'ES', 'Spain'), +('193.219.97.0', '193.219.97.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.219.98.0', '193.219.98.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('193.219.99.0', '193.219.99.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.219.100.0', '193.219.100.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('193.219.101.0', '193.219.101.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.219.102.0', '193.219.102.255', 2147483647, 2147483647, 'IT', 'Italy'), +('193.219.103.0', '193.219.103.255', 2147483647, 2147483647, 'ES', 'Spain'), +('193.219.104.0', '193.219.104.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.219.105.0', '193.219.105.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.219.106.0', '193.219.106.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('193.219.107.0', '193.219.107.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.219.108.0', '193.219.108.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.219.109.0', '193.219.109.255', 2147483647, 2147483647, 'IT', 'Italy'), +('193.219.110.0', '193.219.111.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.219.112.0', '193.219.112.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.219.113.0', '193.219.114.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.219.115.0', '193.219.115.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.219.116.0', '193.219.116.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.219.117.0', '193.219.117.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.219.118.0', '193.219.118.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.219.119.0', '193.219.119.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.219.120.0', '193.219.120.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.219.121.0', '193.219.121.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('193.219.122.0', '193.219.122.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.219.123.0', '193.219.123.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('193.219.124.0', '193.219.124.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.219.125.0', '193.219.125.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.219.126.0', '193.219.126.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.219.127.0', '193.219.127.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.219.128.0', '193.219.191.255', 2147483647, 2147483647, 'LT', 'Lithuania'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('193.219.192.0', '193.219.200.255', 2147483647, 2147483647, 'NO', 'Norway'), +('193.219.201.0', '193.219.203.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.219.204.0', '193.219.205.31', 2147483647, 2147483647, 'NO', 'Norway'), +('193.219.205.32', '193.219.205.47', 2147483647, 2147483647, 'NG', 'Nigeria'), +('193.219.205.48', '193.219.205.63', 2147483647, 2147483647, 'BJ', 'Benin'), +('193.219.205.64', '193.219.205.159', 2147483647, 2147483647, 'NO', 'Norway'), +('193.219.205.160', '193.219.205.191', 2147483647, 2147483647, 'NG', 'Nigeria'), +('193.219.205.192', '193.219.205.199', 2147483647, 2147483647, 'NO', 'Norway'), +('193.219.205.200', '193.219.205.207', 2147483647, 2147483647, 'AO', 'Angola'), +('193.219.205.208', '193.219.205.255', 2147483647, 2147483647, 'NO', 'Norway'), +('193.219.206.0', '193.219.206.191', 2147483647, 2147483647, 'GN', 'Guinea'), +('193.219.206.192', '193.219.207.95', 2147483647, 2147483647, 'NO', 'Norway'), +('193.219.207.96', '193.219.207.127', 2147483647, 2147483647, 'GQ', 'Equatorial Guinea'), +('193.219.207.128', '193.219.207.255', 2147483647, 2147483647, 'NO', 'Norway'), +('193.219.208.0', '193.219.208.15', 2147483647, 2147483647, 'TR', 'Turkey'), +('193.219.208.16', '193.219.208.47', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.219.208.48', '193.219.208.63', 2147483647, 2147483647, 'NG', 'Nigeria'), +('193.219.208.64', '193.219.208.71', 2147483647, 2147483647, 'BI', 'Burundi'), +('193.219.208.72', '193.219.208.95', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.219.208.96', '193.219.208.159', 2147483647, 2147483647, 'NO', 'Norway'), +('193.219.208.160', '193.219.208.175', 2147483647, 2147483647, 'FI', 'Finland'), +('193.219.208.176', '193.219.208.191', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.219.208.192', '193.219.208.207', 2147483647, 2147483647, 'SO', 'Somalia'), +('193.219.208.208', '193.219.208.223', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.219.208.224', '193.219.208.231', 2147483647, 2147483647, 'AF', 'Afghanistan'), +('193.219.208.232', '193.219.208.239', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.219.208.240', '193.219.208.255', 2147483647, 2147483647, 'IQ', 'Iraq'), +('193.219.209.0', '193.219.209.31', 2147483647, 2147483647, 'SO', 'Somalia'), +('193.219.209.32', '193.219.209.63', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.219.209.64', '193.219.209.95', 2147483647, 2147483647, 'CF', 'Central African Republic'), +('193.219.209.96', '193.219.209.111', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.219.209.112', '193.219.209.127', 2147483647, 2147483647, 'SO', 'Somalia'), +('193.219.209.128', '193.219.209.175', 2147483647, 2147483647, 'NG', 'Nigeria'), +('193.219.209.176', '193.219.209.191', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.219.209.192', '193.219.209.207', 2147483647, 2147483647, 'NG', 'Nigeria'), +('193.219.209.208', '193.219.209.223', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.219.209.224', '193.219.209.255', 2147483647, 2147483647, 'SO', 'Somalia'), +('193.219.210.0', '193.219.210.7', 2147483647, 2147483647, 'NG', 'Nigeria'), +('193.219.210.8', '193.219.210.15', 2147483647, 2147483647, 'KE', 'Kenya'), +('193.219.210.16', '193.219.210.23', 2147483647, 2147483647, 'LR', 'Liberia'), +('193.219.210.24', '193.219.210.31', 2147483647, 2147483647, 'CM', 'Cameroon'), +('193.219.210.32', '193.219.210.39', 2147483647, 2147483647, 'LR', 'Liberia'), +('193.219.210.40', '193.219.210.47', 2147483647, 2147483647, 'CI', 'Cote D''Ivoire'), +('193.219.210.48', '193.219.210.143', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.219.210.144', '193.219.210.151', 2147483647, 2147483647, 'IQ', 'Iraq'), +('193.219.210.152', '193.219.210.159', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.219.210.160', '193.219.210.175', 2147483647, 2147483647, 'IQ', 'Iraq'), +('193.219.210.176', '193.219.210.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.219.211.0', '193.219.211.7', 2147483647, 2147483647, 'RW', 'Rwanda'), +('193.219.211.8', '193.219.211.15', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.219.211.16', '193.219.211.23', 2147483647, 2147483647, 'SD', 'Sudan'), +('193.219.211.24', '193.219.211.31', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.219.211.32', '193.219.211.39', 2147483647, 2147483647, 'NG', 'Nigeria'), +('193.219.211.40', '193.219.211.47', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.219.211.48', '193.219.211.55', 2147483647, 2147483647, 'AO', 'Angola'), +('193.219.211.56', '193.219.211.79', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.219.211.80', '193.219.211.87', 2147483647, 2147483647, 'UG', 'Uganda'), +('193.219.211.88', '193.219.211.95', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.219.211.96', '193.219.211.103', 2147483647, 2147483647, 'UG', 'Uganda'), +('193.219.211.104', '193.219.211.159', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.219.211.160', '193.219.211.175', 2147483647, 2147483647, 'IQ', 'Iraq'), +('193.219.211.176', '193.219.211.255', 2147483647, 2147483647, 'SO', 'Somalia'), +('193.219.212.0', '193.219.212.31', 2147483647, 2147483647, 'TD', 'Chad'), +('193.219.212.32', '193.219.212.63', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.219.212.64', '193.219.212.127', 2147483647, 2147483647, 'BI', 'Burundi'), +('193.219.212.128', '193.219.212.175', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.219.212.176', '193.219.212.183', 2147483647, 2147483647, 'NG', 'Nigeria'), +('193.219.212.184', '193.219.212.191', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.219.212.192', '193.219.212.199', 2147483647, 2147483647, 'BI', 'Burundi'), +('193.219.212.200', '193.219.212.207', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.219.212.208', '193.219.212.223', 2147483647, 2147483647, 'CG', 'Congo'), +('193.219.212.224', '193.219.212.255', 2147483647, 2147483647, 'TZ', 'Tanzania, United Republic of'), +('193.219.213.0', '193.219.213.63', 2147483647, 2147483647, 'NG', 'Nigeria'), +('193.219.213.64', '193.219.213.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.219.214.0', '193.219.216.15', 2147483647, 2147483647, 'BW', 'Botswana'), +('193.219.216.16', '193.219.217.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.219.218.0', '193.219.218.127', 2147483647, 2147483647, 'IQ', 'Iraq'), +('193.219.218.128', '193.219.218.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.219.219.0', '193.219.219.31', 2147483647, 2147483647, 'IQ', 'Iraq'), +('193.219.219.32', '193.219.219.191', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.219.219.192', '193.219.219.255', 2147483647, 2147483647, 'UG', 'Uganda'), +('193.219.220.0', '193.219.220.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.219.221.0', '193.219.221.31', 2147483647, 2147483647, 'BI', 'Burundi'), +('193.219.221.32', '193.219.221.47', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.219.221.48', '193.219.221.63', 2147483647, 2147483647, 'UG', 'Uganda'), +('193.219.221.64', '193.219.221.95', 2147483647, 2147483647, 'NG', 'Nigeria'), +('193.219.221.96', '193.219.221.127', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.219.221.128', '193.219.221.135', 2147483647, 2147483647, 'GH', 'Ghana'), +('193.219.221.136', '193.219.221.143', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.219.221.144', '193.219.221.175', 2147483647, 2147483647, 'NG', 'Nigeria'), +('193.219.221.176', '193.219.221.191', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.219.221.192', '193.219.221.207', 2147483647, 2147483647, 'NG', 'Nigeria'), +('193.219.221.208', '193.219.221.231', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.219.221.232', '193.219.221.247', 2147483647, 2147483647, 'CD', 'Congo, The Democratic Republic of the'), +('193.219.221.248', '193.219.223.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.219.224.0', '193.219.224.63', 2147483647, 2147483647, 'IQ', 'Iraq'), +('193.219.224.64', '193.219.225.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.219.226.0', '193.219.227.255', 2147483647, 2147483647, 'NG', 'Nigeria'), +('193.219.228.0', '193.219.231.15', 2147483647, 2147483647, 'ZM', 'Zambia'), +('193.219.231.16', '193.219.231.31', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.219.231.32', '193.219.231.63', 2147483647, 2147483647, 'ZM', 'Zambia'), +('193.219.231.64', '193.219.231.127', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.219.231.128', '193.219.231.159', 2147483647, 2147483647, 'ZM', 'Zambia'), +('193.219.231.160', '193.219.231.191', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.219.231.192', '193.219.231.207', 2147483647, 2147483647, 'ZM', 'Zambia'), +('193.219.231.208', '193.219.231.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.219.232.0', '193.219.232.15', 2147483647, 2147483647, 'GH', 'Ghana'), +('193.219.232.16', '193.219.232.31', 2147483647, 2147483647, 'ML', 'Mali'), +('193.219.232.32', '193.219.232.47', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.219.232.48', '193.219.232.63', 2147483647, 2147483647, 'MR', 'Mauritania'), +('193.219.232.64', '193.219.232.143', 2147483647, 2147483647, 'GH', 'Ghana'), +('193.219.232.144', '193.219.232.159', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.219.232.160', '193.219.232.175', 2147483647, 2147483647, 'TZ', 'Tanzania, United Republic of'), +('193.219.232.176', '193.219.232.191', 2147483647, 2147483647, 'GH', 'Ghana'), +('193.219.232.192', '193.219.232.255', 2147483647, 2147483647, 'ER', 'Eritrea'), +('193.219.233.0', '193.219.233.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.219.234.0', '193.219.234.255', 2147483647, 2147483647, 'NG', 'Nigeria'), +('193.219.235.0', '193.219.235.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.219.236.0', '193.219.236.15', 2147483647, 2147483647, 'SD', 'Sudan'), +('193.219.236.16', '193.219.236.31', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.219.236.32', '193.219.236.47', 2147483647, 2147483647, 'NG', 'Nigeria'), +('193.219.236.48', '193.219.236.63', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.219.236.64', '193.219.236.79', 2147483647, 2147483647, 'NG', 'Nigeria'), +('193.219.236.80', '193.219.236.191', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.219.236.192', '193.219.236.255', 2147483647, 2147483647, 'SO', 'Somalia'), +('193.219.237.0', '193.219.237.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.219.237.32', '193.219.237.223', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.219.237.224', '193.219.237.255', 2147483647, 2147483647, 'CM', 'Cameroon'), +('193.219.238.0', '193.219.238.255', 2147483647, 2147483647, 'BW', 'Botswana'), +('193.219.239.0', '193.219.239.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.219.240.0', '193.219.240.255', 2147483647, 2147483647, 'GN', 'Guinea'), +('193.219.241.0', '193.219.241.31', 2147483647, 2147483647, 'CD', 'Congo, The Democratic Republic of the'), +('193.219.241.32', '193.219.241.63', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.219.241.64', '193.219.241.159', 2147483647, 2147483647, 'GN', 'Guinea'), +('193.219.241.160', '193.219.241.191', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.219.241.192', '193.219.241.255', 2147483647, 2147483647, 'GN', 'Guinea'), +('193.219.242.0', '193.219.243.255', 2147483647, 2147483647, 'SO', 'Somalia'), +('193.219.244.0', '193.219.245.63', 2147483647, 2147483647, 'NG', 'Nigeria'), +('193.219.245.64', '193.219.245.127', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.219.245.128', '193.219.245.143', 2147483647, 2147483647, 'MW', 'Malawi'), +('193.219.245.144', '193.219.245.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.219.246.0', '193.219.246.31', 2147483647, 2147483647, 'IQ', 'Iraq'), +('193.219.246.32', '193.219.246.191', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.219.246.192', '193.219.246.255', 2147483647, 2147483647, 'JO', 'Jordan'), +('193.219.247.0', '193.219.247.63', 2147483647, 2147483647, 'NG', 'Nigeria'), +('193.219.247.64', '193.219.247.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.219.248.0', '193.219.248.63', 2147483647, 2147483647, 'JO', 'Jordan'), +('193.219.248.64', '193.219.248.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.219.249.0', '193.219.249.31', 2147483647, 2147483647, 'KE', 'Kenya'), +('193.219.249.32', '193.219.249.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.219.250.0', '193.219.250.15', 2147483647, 2147483647, 'ZM', 'Zambia'), +('193.219.250.16', '193.219.250.31', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.219.250.32', '193.219.250.47', 2147483647, 2147483647, 'SL', 'Sierra Leone'), +('193.219.250.48', '193.219.250.55', 2147483647, 2147483647, 'GH', 'Ghana'), +('193.219.250.56', '193.219.250.63', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.219.250.64', '193.219.250.95', 2147483647, 2147483647, 'SL', 'Sierra Leone'), +('193.219.250.96', '193.219.250.127', 2147483647, 2147483647, 'CD', 'Congo, The Democratic Republic of the'), +('193.219.250.128', '193.219.250.143', 2147483647, 2147483647, 'GH', 'Ghana'), +('193.219.250.144', '193.219.250.175', 2147483647, 2147483647, 'GN', 'Guinea'), +('193.219.250.176', '193.219.250.191', 2147483647, 2147483647, 'SN', 'Senegal'), +('193.219.250.192', '193.219.250.207', 2147483647, 2147483647, 'TZ', 'Tanzania, United Republic of'), +('193.219.250.208', '193.219.250.239', 2147483647, 2147483647, 'SN', 'Senegal'), +('193.219.250.240', '193.219.250.255', 2147483647, 2147483647, 'ZM', 'Zambia'), +('193.219.251.0', '193.219.251.15', 2147483647, 2147483647, 'GH', 'Ghana'), +('193.219.251.16', '193.219.251.31', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.219.251.32', '193.219.251.95', 2147483647, 2147483647, 'GH', 'Ghana'), +('193.219.251.96', '193.219.251.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.219.252.0', '193.219.252.191', 2147483647, 2147483647, 'IQ', 'Iraq'), +('193.219.252.192', '193.219.252.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.219.253.0', '193.219.254.15', 2147483647, 2147483647, 'IQ', 'Iraq'), +('193.219.254.16', '193.219.254.23', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.219.254.24', '193.219.254.159', 2147483647, 2147483647, 'IQ', 'Iraq'), +('193.219.254.160', '193.219.254.167', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.219.254.168', '193.219.254.183', 2147483647, 2147483647, 'IQ', 'Iraq'), +('193.219.254.184', '193.219.254.191', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.219.254.192', '193.219.255.63', 2147483647, 2147483647, 'IQ', 'Iraq'), +('193.219.255.64', '193.219.255.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.219.255.80', '193.219.255.95', 2147483647, 2147483647, 'IQ', 'Iraq'), +('193.219.255.96', '193.219.255.103', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.219.255.104', '193.219.255.111', 2147483647, 2147483647, 'IQ', 'Iraq'), +('193.219.255.112', '193.219.255.127', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.219.255.128', '193.219.255.255', 2147483647, 2147483647, 'IQ', 'Iraq'), +('193.220.0.0', '193.220.1.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.220.2.0', '193.220.15.255', 2147483647, 2147483647, 'NO', 'Norway'), +('193.220.16.0', '193.220.16.15', 2147483647, 2147483647, 'GN', 'Guinea'), +('193.220.16.16', '193.220.16.31', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.220.16.32', '193.220.16.63', 2147483647, 2147483647, 'MA', 'Morocco'), +('193.220.16.64', '193.220.16.95', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.220.16.96', '193.220.16.111', 2147483647, 2147483647, 'NE', 'Niger'), +('193.220.16.112', '193.220.16.127', 2147483647, 2147483647, 'CD', 'Congo, The Democratic Republic of the'), +('193.220.16.128', '193.220.16.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.220.17.0', '193.220.17.7', 2147483647, 2147483647, 'KE', 'Kenya'), +('193.220.17.8', '193.220.17.63', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.220.17.64', '193.220.17.255', 2147483647, 2147483647, 'SO', 'Somalia'), +('193.220.18.0', '193.220.18.127', 2147483647, 2147483647, 'TD', 'Chad'), +('193.220.18.128', '193.220.18.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.220.19.0', '193.220.19.71', 2147483647, 2147483647, 'AO', 'Angola'), +('193.220.19.72', '193.220.19.79', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.220.19.80', '193.220.19.95', 2147483647, 2147483647, 'AO', 'Angola'), +('193.220.19.96', '193.220.19.127', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.220.19.128', '193.220.19.159', 2147483647, 2147483647, 'AF', 'Afghanistan'), +('193.220.19.160', '193.220.19.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.220.20.0', '193.220.20.127', 2147483647, 2147483647, 'ZM', 'Zambia'), +('193.220.20.128', '193.220.23.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.220.24.0', '193.220.25.255', 2147483647, 2147483647, 'MZ', 'Mozambique'), +('193.220.26.0', '193.220.26.255', 2147483647, 2147483647, 'NG', 'Nigeria'), +('193.220.27.0', '193.220.27.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.220.28.0', '193.220.29.255', 2147483647, 2147483647, 'MW', 'Malawi'), +('193.220.30.0', '193.220.30.63', 2147483647, 2147483647, 'NG', 'Nigeria'), +('193.220.30.64', '193.220.30.95', 2147483647, 2147483647, 'AO', 'Angola'), +('193.220.30.96', '193.220.30.127', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.220.30.128', '193.220.30.159', 2147483647, 2147483647, 'KE', 'Kenya'), +('193.220.30.160', '193.220.30.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.220.31.0', '193.220.31.127', 2147483647, 2147483647, 'CG', 'Congo'), +('193.220.31.128', '193.220.32.63', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.220.32.64', '193.220.32.79', 2147483647, 2147483647, 'IQ', 'Iraq'), +('193.220.32.80', '193.220.33.191', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.220.33.192', '193.220.33.207', 2147483647, 2147483647, 'IQ', 'Iraq'), +('193.220.33.208', '193.220.35.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.220.36.0', '193.220.36.127', 2147483647, 2147483647, 'NE', 'Niger'), +('193.220.36.128', '193.220.36.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.220.37.0', '193.220.37.255', 2147483647, 2147483647, 'BJ', 'Benin'), +('193.220.38.0', '193.220.38.127', 2147483647, 2147483647, 'NE', 'Niger'), +('193.220.38.128', '193.220.38.183', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.220.38.184', '193.220.38.199', 2147483647, 2147483647, 'BF', 'Burkina Faso'), +('193.220.38.200', '193.220.38.207', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.220.38.208', '193.220.38.223', 2147483647, 2147483647, 'BJ', 'Benin'), +('193.220.38.224', '193.220.38.255', 2147483647, 2147483647, 'BF', 'Burkina Faso'), +('193.220.39.0', '193.220.39.255', 2147483647, 2147483647, 'GN', 'Guinea'), +('193.220.40.0', '193.220.41.255', 2147483647, 2147483647, 'MW', 'Malawi'), +('193.220.42.0', '193.220.43.255', 2147483647, 2147483647, 'NG', 'Nigeria'), +('193.220.44.0', '193.220.44.255', 2147483647, 2147483647, 'SO', 'Somalia'), +('193.220.45.0', '193.220.45.255', 2147483647, 2147483647, 'LR', 'Liberia'), +('193.220.46.0', '193.220.46.15', 2147483647, 2147483647, 'MW', 'Malawi'), +('193.220.46.16', '193.220.46.63', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.220.46.64', '193.220.46.79', 2147483647, 2147483647, 'MW', 'Malawi'), +('193.220.46.80', '193.220.46.127', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.220.46.128', '193.220.46.143', 2147483647, 2147483647, 'MW', 'Malawi'), +('193.220.46.144', '193.220.46.191', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.220.46.192', '193.220.46.207', 2147483647, 2147483647, 'MW', 'Malawi'), +('193.220.46.208', '193.220.47.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.220.48.0', '193.220.49.255', 2147483647, 2147483647, 'SO', 'Somalia'), +('193.220.50.0', '193.220.50.255', 2147483647, 2147483647, 'NG', 'Nigeria'), +('193.220.51.0', '193.220.51.255', 2147483647, 2147483647, 'SO', 'Somalia'), +('193.220.52.0', '193.220.52.255', 2147483647, 2147483647, 'MZ', 'Mozambique'), +('193.220.53.0', '193.220.54.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.220.55.0', '193.220.55.15', 2147483647, 2147483647, 'GH', 'Ghana'), +('193.220.55.16', '193.220.55.23', 2147483647, 2147483647, 'TZ', 'Tanzania, United Republic of'), +('193.220.55.24', '193.220.56.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.220.57.0', '193.220.57.63', 2147483647, 2147483647, 'TZ', 'Tanzania, United Republic of'), +('193.220.57.64', '193.220.57.95', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.220.57.96', '193.220.57.111', 2147483647, 2147483647, 'TZ', 'Tanzania, United Republic of'), +('193.220.57.112', '193.220.57.119', 2147483647, 2147483647, 'MG', 'Madagascar'), +('193.220.57.120', '193.220.57.127', 2147483647, 2147483647, 'MZ', 'Mozambique'), +('193.220.57.128', '193.220.57.143', 2147483647, 2147483647, 'CD', 'Congo, The Democratic Republic of the'), +('193.220.57.144', '193.220.57.159', 2147483647, 2147483647, 'BF', 'Burkina Faso'), +('193.220.57.160', '193.220.57.175', 2147483647, 2147483647, 'CD', 'Congo, The Democratic Republic of the'), +('193.220.57.176', '193.220.57.215', 2147483647, 2147483647, 'GN', 'Guinea'), +('193.220.57.216', '193.220.57.239', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.220.57.240', '193.220.57.255', 2147483647, 2147483647, 'GN', 'Guinea'), +('193.220.58.0', '193.220.58.255', 2147483647, 2147483647, 'TZ', 'Tanzania, United Republic of'), +('193.220.59.0', '193.220.59.175', 2147483647, 2147483647, 'GH', 'Ghana'), +('193.220.59.176', '193.220.59.207', 2147483647, 2147483647, 'BW', 'Botswana'), +('193.220.59.208', '193.220.59.223', 2147483647, 2147483647, 'BF', 'Burkina Faso'), +('193.220.59.224', '193.220.59.255', 2147483647, 2147483647, 'CF', 'Central African Republic'), +('193.220.60.0', '193.220.60.255', 2147483647, 2147483647, 'TZ', 'Tanzania, United Republic of'), +('193.220.61.0', '193.220.61.15', 2147483647, 2147483647, 'GN', 'Guinea'), +('193.220.61.16', '193.220.61.31', 2147483647, 2147483647, 'NA', 'Namibia'), +('193.220.61.32', '193.220.61.47', 2147483647, 2147483647, 'ML', 'Mali'), +('193.220.61.48', '193.220.61.63', 2147483647, 2147483647, 'BF', 'Burkina Faso'), +('193.220.61.64', '193.220.61.95', 2147483647, 2147483647, 'ZM', 'Zambia'), +('193.220.61.96', '193.220.61.111', 2147483647, 2147483647, 'GH', 'Ghana'), +('193.220.61.112', '193.220.61.127', 2147483647, 2147483647, 'ZM', 'Zambia'), +('193.220.61.128', '193.220.61.159', 2147483647, 2147483647, 'GN', 'Guinea'), +('193.220.61.160', '193.220.61.175', 2147483647, 2147483647, 'ZM', 'Zambia'), +('193.220.61.176', '193.220.61.207', 2147483647, 2147483647, 'TZ', 'Tanzania, United Republic of'), +('193.220.61.208', '193.220.61.223', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.220.61.224', '193.220.61.255', 2147483647, 2147483647, 'ER', 'Eritrea'), +('193.220.62.0', '193.220.62.255', 2147483647, 2147483647, 'NG', 'Nigeria'), +('193.220.63.0', '193.220.63.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.220.64.0', '193.220.64.255', 2147483647, 2147483647, 'NG', 'Nigeria'), +('193.220.65.0', '193.220.66.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.220.67.0', '193.220.67.255', 2147483647, 2147483647, 'ZM', 'Zambia'), +('193.220.68.0', '193.220.68.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('193.220.69.0', '193.220.69.255', 2147483647, 2147483647, 'MD', 'Moldova, Republic of'), +('193.220.70.0', '193.220.70.255', 2147483647, 2147483647, 'CM', 'Cameroon'), +('193.220.71.0', '193.220.71.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.220.72.0', '193.220.72.15', 2147483647, 2147483647, 'BJ', 'Benin'), +('193.220.72.16', '193.220.72.31', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.220.72.32', '193.220.72.39', 2147483647, 2147483647, 'BJ', 'Benin'), +('193.220.72.40', '193.220.72.247', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.220.72.248', '193.220.72.255', 2147483647, 2147483647, 'SN', 'Senegal'), +('193.220.73.0', '193.220.73.95', 2147483647, 2147483647, 'SO', 'Somalia'), +('193.220.73.96', '193.220.74.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.220.75.0', '193.220.75.63', 2147483647, 2147483647, 'SO', 'Somalia'), +('193.220.75.64', '193.220.75.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.220.76.0', '193.220.76.255', 2147483647, 2147483647, 'MW', 'Malawi'), +('193.220.77.0', '193.220.77.63', 2147483647, 2147483647, 'NG', 'Nigeria'), +('193.220.77.64', '193.220.77.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.220.78.0', '193.220.79.255', 2147483647, 2147483647, 'NG', 'Nigeria'), +('193.220.80.0', '193.220.81.255', 2147483647, 2147483647, 'TZ', 'Tanzania, United Republic of'), +('193.220.82.0', '193.220.83.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.220.84.0', '193.220.84.31', 2147483647, 2147483647, 'TZ', 'Tanzania, United Republic of'), +('193.220.84.32', '193.220.84.63', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.220.84.64', '193.220.84.79', 2147483647, 2147483647, 'TZ', 'Tanzania, United Republic of'), +('193.220.84.80', '193.220.85.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.220.86.0', '193.220.86.127', 2147483647, 2147483647, 'TZ', 'Tanzania, United Republic of'), +('193.220.86.128', '193.220.86.159', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.220.86.160', '193.220.86.191', 2147483647, 2147483647, 'TZ', 'Tanzania, United Republic of'), +('193.220.86.192', '193.220.86.207', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.220.86.208', '193.220.86.239', 2147483647, 2147483647, 'TZ', 'Tanzania, United Republic of'), +('193.220.86.240', '193.220.86.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.220.87.0', '193.220.87.255', 2147483647, 2147483647, 'TZ', 'Tanzania, United Republic of'), +('193.220.88.0', '193.220.88.191', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.220.88.192', '193.220.90.255', 2147483647, 2147483647, 'TZ', 'Tanzania, United Republic of'), +('193.220.91.0', '193.220.92.31', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.220.92.32', '193.220.94.255', 2147483647, 2147483647, 'TZ', 'Tanzania, United Republic of'), +('193.220.95.0', '193.220.95.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.220.96.0', '193.220.96.79', 2147483647, 2147483647, 'GN', 'Guinea'), +('193.220.96.80', '193.220.97.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.220.98.0', '193.220.99.255', 2147483647, 2147483647, 'NG', 'Nigeria'), +('193.220.100.0', '193.220.101.239', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.220.101.240', '193.220.101.255', 2147483647, 2147483647, 'NO', 'Norway'), +('193.220.102.0', '193.220.103.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.220.104.0', '193.220.107.255', 2147483647, 2147483647, 'NO', 'Norway'), +('193.220.108.0', '193.220.108.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.220.109.0', '193.220.109.255', 2147483647, 2147483647, 'NO', 'Norway'), +('193.220.110.0', '193.220.111.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.220.112.0', '193.220.112.255', 2147483647, 2147483647, 'CN', 'China'), +('193.220.113.0', '193.220.113.79', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.220.113.80', '193.220.113.87', 2147483647, 2147483647, 'DK', 'Denmark'), +('193.220.113.88', '193.220.113.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.220.114.0', '193.220.114.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.220.115.0', '193.220.115.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.220.116.0', '193.220.117.255', 2147483647, 2147483647, 'NO', 'Norway'), +('193.220.118.0', '193.220.118.7', 2147483647, 2147483647, 'ET', 'Ethiopia'), +('193.220.118.8', '193.220.118.63', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.220.118.64', '193.220.118.95', 2147483647, 2147483647, 'NO', 'Norway'), +('193.220.118.96', '193.220.118.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.220.119.0', '193.220.119.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.220.120.0', '193.220.120.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('193.220.121.0', '193.220.121.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.220.122.0', '193.220.122.15', 2147483647, 2147483647, 'NO', 'Norway'), +('193.220.122.16', '193.220.122.127', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.220.122.128', '193.220.122.159', 2147483647, 2147483647, 'NO', 'Norway'), +('193.220.122.160', '193.220.122.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.220.123.0', '193.220.123.31', 2147483647, 2147483647, 'NO', 'Norway'), +('193.220.123.32', '193.220.123.39', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.220.123.40', '193.220.123.47', 2147483647, 2147483647, 'NO', 'Norway'), +('193.220.123.48', '193.220.123.63', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.220.123.64', '193.220.123.79', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.220.123.80', '193.220.123.95', 2147483647, 2147483647, 'NO', 'Norway'), +('193.220.123.96', '193.220.123.119', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.220.123.120', '193.220.123.127', 2147483647, 2147483647, 'NO', 'Norway'), +('193.220.123.128', '193.220.123.131', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.220.123.132', '193.220.123.135', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.220.123.136', '193.220.123.143', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.220.123.144', '193.220.123.175', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.220.123.176', '193.220.124.63', 2147483647, 2147483647, 'NO', 'Norway'), +('193.220.124.64', '193.220.124.127', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.220.124.128', '193.220.124.135', 2147483647, 2147483647, 'KE', 'Kenya'), +('193.220.124.136', '193.220.124.143', 2147483647, 2147483647, 'MW', 'Malawi'), +('193.220.124.144', '193.220.124.151', 2147483647, 2147483647, 'ZM', 'Zambia'), +('193.220.124.152', '193.220.124.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.220.125.0', '193.220.125.127', 2147483647, 2147483647, 'TD', 'Chad'), +('193.220.125.128', '193.220.125.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.220.126.0', '193.220.126.15', 2147483647, 2147483647, 'TZ', 'Tanzania, United Republic of'), +('193.220.126.16', '193.220.126.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.220.127.0', '193.220.127.31', 2147483647, 2147483647, 'NG', 'Nigeria'), +('193.220.127.32', '193.220.127.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.220.128.0', '193.220.132.127', 2147483647, 2147483647, 'NO', 'Norway'), +('193.220.132.128', '193.220.132.183', 2147483647, 2147483647, 'IQ', 'Iraq'), +('193.220.132.184', '193.220.132.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.220.133.0', '193.220.133.255', 2147483647, 2147483647, 'IQ', 'Iraq'), +('193.220.134.0', '193.220.134.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.220.135.0', '193.220.135.127', 2147483647, 2147483647, 'NG', 'Nigeria'), +('193.220.135.128', '193.220.136.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.220.137.0', '193.220.137.127', 2147483647, 2147483647, 'BI', 'Burundi'), +('193.220.137.128', '193.220.137.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.220.138.0', '193.220.138.255', 2147483647, 2147483647, 'MW', 'Malawi'), +('193.220.139.0', '193.220.139.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.220.140.0', '193.220.140.255', 2147483647, 2147483647, 'NG', 'Nigeria'), +('193.220.141.0', '193.220.141.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.220.142.0', '193.220.143.255', 2147483647, 2147483647, 'NG', 'Nigeria'), +('193.220.144.0', '193.220.151.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.220.152.0', '193.220.175.255', 2147483647, 2147483647, 'NO', 'Norway'), +('193.220.176.0', '193.220.176.255', 2147483647, 2147483647, 'GH', 'Ghana'), +('193.220.177.0', '193.220.177.31', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.220.177.32', '193.220.177.63', 2147483647, 2147483647, 'GH', 'Ghana'), +('193.220.177.64', '193.220.177.127', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.220.177.128', '193.220.177.255', 2147483647, 2147483647, 'GH', 'Ghana'), +('193.220.178.0', '193.220.178.255', 2147483647, 2147483647, 'UG', 'Uganda'), +('193.220.179.0', '193.220.179.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.220.180.0', '193.220.181.255', 2147483647, 2147483647, 'NE', 'Niger'), +('193.220.182.0', '193.220.182.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.220.183.0', '193.220.184.255', 2147483647, 2147483647, 'CG', 'Congo'), +('193.220.185.0', '193.220.185.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.220.186.0', '193.220.186.7', 2147483647, 2147483647, 'CM', 'Cameroon'), +('193.220.186.8', '193.220.186.15', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.220.186.16', '193.220.186.255', 2147483647, 2147483647, 'CM', 'Cameroon'), +('193.220.187.0', '193.220.187.255', 2147483647, 2147483647, 'CG', 'Congo'), +('193.220.188.0', '193.220.189.255', 2147483647, 2147483647, 'ZM', 'Zambia'), +('193.220.190.0', '193.220.199.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.220.200.0', '193.220.203.255', 2147483647, 2147483647, 'NG', 'Nigeria'), +('193.220.204.0', '193.220.205.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.220.206.0', '193.220.207.255', 2147483647, 2147483647, 'CD', 'Congo, The Democratic Republic of the'), +('193.220.208.0', '193.220.211.255', 2147483647, 2147483647, 'SO', 'Somalia'), +('193.220.212.0', '193.220.214.15', 2147483647, 2147483647, 'NG', 'Nigeria'), +('193.220.214.16', '193.220.215.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.220.216.0', '193.220.217.255', 2147483647, 2147483647, 'BW', 'Botswana'), +('193.220.218.0', '193.220.218.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.220.219.0', '193.220.219.127', 2147483647, 2147483647, 'NG', 'Nigeria'), +('193.220.219.128', '193.220.219.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.220.220.0', '193.220.220.255', 2147483647, 2147483647, 'GW', 'Guinea-Bissau'), +('193.220.221.0', '193.220.221.127', 2147483647, 2147483647, 'NG', 'Nigeria'), +('193.220.221.128', '193.220.223.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.220.224.0', '193.220.225.255', 2147483647, 2147483647, 'KE', 'Kenya'), +('193.220.226.0', '193.220.228.63', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.220.228.64', '193.220.228.71', 2147483647, 2147483647, 'KE', 'Kenya'), +('193.220.228.72', '193.220.228.79', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.220.228.80', '193.220.228.87', 2147483647, 2147483647, 'KE', 'Kenya'), +('193.220.228.88', '193.220.228.111', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.220.228.112', '193.220.228.127', 2147483647, 2147483647, 'KE', 'Kenya'), +('193.220.228.128', '193.220.228.167', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.220.228.168', '193.220.228.175', 2147483647, 2147483647, 'NO', 'Norway'), +('193.220.228.176', '193.220.229.127', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.220.229.128', '193.220.229.143', 2147483647, 2147483647, 'KE', 'Kenya'), +('193.220.229.144', '193.220.229.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.220.230.0', '193.220.230.255', 2147483647, 2147483647, 'KE', 'Kenya'), +('193.220.231.0', '193.220.231.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.220.232.0', '193.220.232.255', 2147483647, 2147483647, 'KE', 'Kenya'), +('193.220.233.0', '193.220.233.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.220.234.0', '193.220.235.127', 2147483647, 2147483647, 'CG', 'Congo'), +('193.220.235.128', '193.220.235.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.220.236.0', '193.220.237.255', 2147483647, 2147483647, 'MZ', 'Mozambique'), +('193.220.238.0', '193.220.239.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.220.240.0', '193.220.243.255', 2147483647, 2147483647, 'GW', 'Guinea-Bissau'), +('193.220.244.0', '193.220.245.255', 2147483647, 2147483647, 'KW', 'Kuwait'), +('193.220.246.0', '193.220.247.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.220.248.0', '193.220.255.255', 2147483647, 2147483647, 'KW', 'Kuwait'), +('193.221.0.0', '193.221.15.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('193.221.16.0', '193.221.37.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.221.38.0', '193.221.38.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('193.221.39.0', '193.221.74.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.221.75.0', '193.221.76.255', 2147483647, 2147483647, 'US', 'United States'), +('193.221.77.0', '193.221.81.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.221.82.0', '193.221.83.255', 2147483647, 2147483647, 'EU', 'Europe'), +('193.221.84.0', '193.221.92.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.221.93.0', '193.221.95.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.221.96.0', '193.221.111.255', 2147483647, 2147483647, 'FR', 'France'), +('193.221.112.0', '193.221.112.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('193.221.113.0', '193.221.113.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.221.114.0', '193.221.114.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.221.115.0', '193.221.115.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('193.221.116.0', '193.221.116.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.221.117.0', '193.221.117.255', 2147483647, 2147483647, 'FR', 'France'), +('193.221.118.0', '193.221.118.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.221.119.0', '193.221.119.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.221.120.0', '193.221.120.255', 2147483647, 2147483647, 'FR', 'France'), +('193.221.121.0', '193.221.121.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.221.122.0', '193.221.122.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.221.123.0', '193.221.123.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('193.221.124.0', '193.221.124.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('193.221.125.0', '193.221.125.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.221.126.0', '193.221.126.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.221.127.0', '193.221.127.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.221.128.0', '193.221.159.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.221.160.0', '193.221.191.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('193.221.192.0', '193.221.207.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.221.208.0', '193.221.211.255', 2147483647, 2147483647, 'EU', 'Europe'), +('193.221.212.0', '193.221.217.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.221.218.0', '193.221.218.255', 2147483647, 2147483647, 'CI', 'Cote D''Ivoire'), +('193.221.219.0', '193.221.255.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('193.222.0.0', '193.222.60.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.222.61.0', '193.222.61.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.222.62.0', '193.222.62.255', 2147483647, 2147483647, 'ES', 'Spain'), +('193.222.63.0', '193.222.63.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.222.64.0', '193.222.107.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.222.108.0', '193.222.108.255', 2147483647, 2147483647, 'FR', 'France'), +('193.222.109.0', '193.222.109.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.222.110.0', '193.222.110.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.222.111.0', '193.222.111.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.222.112.0', '193.222.127.255', 2147483647, 2147483647, 'LI', 'Liechtenstein'), +('193.222.128.0', '193.222.128.255', 2147483647, 2147483647, 'FR', 'France'), +('193.222.129.0', '193.222.129.255', 2147483647, 2147483647, 'IL', 'Israel'), +('193.222.130.0', '193.222.130.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('193.222.131.0', '193.222.131.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.222.132.0', '193.222.132.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.222.133.0', '193.222.133.255', 2147483647, 2147483647, 'FI', 'Finland'), +('193.222.134.0', '193.222.134.255', 2147483647, 2147483647, 'FR', 'France'), +('193.222.135.0', '193.222.135.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.222.136.0', '193.222.136.255', 2147483647, 2147483647, 'IT', 'Italy'), +('193.222.137.0', '193.222.137.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.222.138.0', '193.222.138.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.222.139.0', '193.222.139.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.222.140.0', '193.222.140.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.222.141.0', '193.222.141.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.222.142.0', '193.222.189.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.222.190.0', '193.222.191.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.222.192.0', '193.222.253.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.222.254.0', '193.222.254.255', 2147483647, 2147483647, 'ES', 'Spain'), +('193.222.255.0', '193.222.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.223.0.0', '193.223.0.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.223.1.0', '193.223.75.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.223.76.0', '193.223.76.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('193.223.77.0', '193.223.77.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.223.78.0', '193.223.79.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.223.80.0', '193.223.97.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.223.98.0', '193.223.98.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.223.99.0', '193.223.99.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('193.223.100.0', '193.223.100.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.223.101.0', '193.223.101.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.223.102.0', '193.223.102.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.223.103.0', '193.223.103.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.223.104.0', '193.223.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.224.0.0', '193.225.255.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('193.226.0.0', '193.226.63.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.226.64.0', '193.226.71.255', 2147483647, 2147483647, 'MD', 'Moldova, Republic of'), +('193.226.72.0', '193.226.73.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.226.74.0', '193.226.79.255', 2147483647, 2147483647, 'MD', 'Moldova, Republic of'), +('193.226.80.0', '193.226.191.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.226.192.0', '193.226.255.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('193.227.0.0', '193.227.63.255', 2147483647, 2147483647, 'EG', 'Egypt'), +('193.227.64.0', '193.227.95.255', 2147483647, 2147483647, 'IT', 'Italy'), +('193.227.96.0', '193.227.97.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.227.98.0', '193.227.98.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.227.99.0', '193.227.99.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.227.100.0', '193.227.100.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.227.101.0', '193.227.101.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.227.102.0', '193.227.102.255', 2147483647, 2147483647, 'LT', 'Lithuania'), +('193.227.103.0', '193.227.103.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('193.227.104.0', '193.227.104.255', 2147483647, 2147483647, 'IT', 'Italy'), +('193.227.105.0', '193.227.105.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.227.106.0', '193.227.106.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.227.107.0', '193.227.107.255', 2147483647, 2147483647, 'FR', 'France'), +('193.227.108.0', '193.227.108.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.227.109.0', '193.227.110.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.227.111.0', '193.227.111.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.227.112.0', '193.227.112.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.227.113.0', '193.227.113.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.227.114.0', '193.227.114.255', 2147483647, 2147483647, 'MT', 'Malta'), +('193.227.115.0', '193.227.115.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.227.116.0', '193.227.116.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.227.117.0', '193.227.117.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.227.118.0', '193.227.118.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.227.119.0', '193.227.120.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.227.121.0', '193.227.121.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.227.122.0', '193.227.122.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.227.123.0', '193.227.123.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.227.124.0', '193.227.124.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.227.125.0', '193.227.125.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.227.126.0', '193.227.126.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.227.127.0', '193.227.127.255', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('193.227.128.0', '193.227.128.255', 2147483647, 2147483647, 'EG', 'Egypt'), +('193.227.129.0', '193.227.129.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('193.227.130.0', '193.227.130.255', 2147483647, 2147483647, 'FR', 'France'), +('193.227.131.0', '193.227.131.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.227.132.0', '193.227.132.255', 2147483647, 2147483647, 'ES', 'Spain'), +('193.227.133.0', '193.227.133.255', 2147483647, 2147483647, 'FR', 'France'), +('193.227.134.0', '193.227.134.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.227.135.0', '193.227.135.255', 2147483647, 2147483647, 'NO', 'Norway'), +('193.227.136.0', '193.227.143.255', 2147483647, 2147483647, 'FR', 'France'), +('193.227.144.0', '193.227.159.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.227.160.0', '193.227.191.255', 2147483647, 2147483647, 'LB', 'Lebanon'), +('193.227.192.0', '193.227.195.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.227.196.0', '193.227.199.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('193.227.200.0', '193.227.201.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.227.202.0', '193.227.203.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.227.204.0', '193.227.205.255', 2147483647, 2147483647, 'NO', 'Norway'), +('193.227.206.0', '193.227.211.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.227.212.0', '193.227.215.255', 2147483647, 2147483647, 'IT', 'Italy'), +('193.227.216.0', '193.227.223.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.227.224.0', '193.227.225.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.227.228.0', '193.227.229.255', 2147483647, 2147483647, 'FR', 'France'), +('193.227.230.0', '193.227.231.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.227.232.0', '193.227.233.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.227.234.0', '193.227.235.255', 2147483647, 2147483647, 'EU', 'Europe'), +('193.227.236.0', '193.227.237.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.227.238.0', '193.227.239.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('193.227.240.0', '193.227.241.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.227.242.0', '193.227.243.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.227.244.0', '193.227.247.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.227.248.0', '193.227.249.255', 2147483647, 2147483647, 'FR', 'France'), +('193.227.250.0', '193.227.251.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.227.252.0', '193.227.253.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.227.254.0', '193.227.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.228.0.0', '193.228.0.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.228.1.0', '193.228.1.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.228.2.0', '193.228.2.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.228.3.0', '193.228.139.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.228.140.0', '193.228.140.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.228.141.0', '193.228.141.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.228.142.0', '193.228.142.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.228.143.0', '193.228.143.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.228.144.0', '193.228.144.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.228.145.0', '193.228.145.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.228.146.0', '193.228.146.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.228.147.0', '193.228.147.255', 2147483647, 2147483647, 'FR', 'France'), +('193.228.148.0', '193.228.148.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.228.149.0', '193.228.150.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.228.151.0', '193.228.151.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('193.228.152.0', '193.228.152.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('193.228.153.0', '193.228.153.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.228.154.0', '193.228.154.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.228.155.0', '193.228.155.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.228.156.0', '193.228.156.255', 2147483647, 2147483647, 'FR', 'France'), +('193.228.157.0', '193.228.157.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.228.158.0', '193.228.158.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.228.159.0', '193.228.159.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.228.160.0', '193.228.173.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.228.174.0', '193.228.174.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.228.175.0', '193.228.233.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.228.234.0', '193.228.234.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('193.228.235.0', '193.228.255.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.229.0.0', '193.229.255.255', 2147483647, 2147483647, 'FI', 'Finland'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('193.230.0.0', '193.231.255.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.232.0.0', '193.232.64.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.232.65.0', '193.232.65.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.232.66.0', '193.232.91.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.232.92.0', '193.232.92.255', 2147483647, 2147483647, 'BY', 'Belarus'), +('193.232.93.0', '193.232.159.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.232.160.0', '193.232.160.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.232.161.0', '193.232.161.255', 2147483647, 2147483647, 'UZ', 'Uzbekistan'), +('193.232.162.0', '193.232.223.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.232.224.0', '193.232.225.255', 2147483647, 2147483647, 'KZ', 'Kazakstan'), +('193.232.226.0', '193.232.227.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.232.228.0', '193.232.229.255', 2147483647, 2147483647, 'AM', 'Armenia'), +('193.232.230.0', '193.232.247.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.232.248.0', '193.232.251.255', 2147483647, 2147483647, 'BY', 'Belarus'), +('193.232.252.0', '193.233.255.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.234.0.0', '193.235.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.236.0.0', '193.236.7.255', 2147483647, 2147483647, 'AO', 'Angola'), +('193.236.8.0', '193.236.255.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('193.237.0.0', '193.237.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.238.0.0', '193.238.3.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.238.4.0', '193.238.7.255', 2147483647, 2147483647, 'FI', 'Finland'), +('193.238.8.0', '193.238.11.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.238.12.0', '193.238.19.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.238.20.0', '193.238.23.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.238.24.0', '193.238.27.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.238.28.0', '193.238.31.255', 2147483647, 2147483647, 'NG', 'Nigeria'), +('193.238.32.0', '193.238.39.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.238.40.0', '193.238.43.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.238.44.0', '193.238.47.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.238.48.0', '193.238.51.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.238.52.0', '193.238.55.255', 2147483647, 2147483647, 'ES', 'Spain'), +('193.238.56.0', '193.238.59.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.238.60.0', '193.238.63.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.238.64.0', '193.238.67.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.238.68.0', '193.238.71.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.238.72.0', '193.238.75.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.238.76.0', '193.238.79.255', 2147483647, 2147483647, 'IT', 'Italy'), +('193.238.80.0', '193.238.87.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.238.88.0', '193.238.91.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.238.92.0', '193.238.95.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.238.96.0', '193.238.99.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.238.100.0', '193.238.103.255', 2147483647, 2147483647, 'IT', 'Italy'), +('193.238.104.0', '193.238.107.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.238.108.0', '193.238.111.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.238.112.0', '193.238.115.255', 2147483647, 2147483647, 'GR', 'Greece'), +('193.238.116.0', '193.238.119.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.238.120.0', '193.238.123.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.238.124.0', '193.238.127.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.238.128.0', '193.238.135.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.238.136.0', '193.238.139.255', 2147483647, 2147483647, 'IT', 'Italy'), +('193.238.140.0', '193.238.143.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.238.144.0', '193.238.147.255', 2147483647, 2147483647, 'ES', 'Spain'), +('193.238.148.0', '193.238.151.255', 2147483647, 2147483647, 'FR', 'France'), +('193.238.152.0', '193.238.155.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.238.156.0', '193.238.159.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.238.160.0', '193.238.163.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.238.164.0', '193.238.167.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.238.168.0', '193.238.175.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.238.176.0', '193.238.179.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.238.180.0', '193.238.183.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.238.184.0', '193.238.187.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('193.238.188.0', '193.238.191.255', 2147483647, 2147483647, 'IL', 'Israel'), +('193.238.192.0', '193.238.195.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.238.196.0', '193.238.199.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.238.200.0', '193.238.203.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.238.204.0', '193.238.207.255', 2147483647, 2147483647, 'LI', 'Liechtenstein'), +('193.238.208.0', '193.238.211.255', 2147483647, 2147483647, 'IL', 'Israel'), +('193.238.212.0', '193.238.223.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('193.238.224.0', '193.238.227.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.238.228.0', '193.238.231.255', 2147483647, 2147483647, 'FR', 'France'), +('193.238.232.0', '193.238.235.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.238.236.0', '193.238.239.255', 2147483647, 2147483647, 'NO', 'Norway'), +('193.238.240.0', '193.238.243.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.238.244.0', '193.238.247.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.238.248.0', '193.238.251.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.238.252.0', '193.238.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.239.0.0', '193.239.3.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('193.239.4.0', '193.239.7.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.239.8.0', '193.239.11.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.239.12.0', '193.239.15.255', 2147483647, 2147483647, 'ES', 'Spain'), +('193.239.16.0', '193.239.19.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.239.20.0', '193.239.23.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.239.24.0', '193.239.27.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.239.28.0', '193.239.31.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.239.32.0', '193.239.35.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.239.36.0', '193.239.39.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.239.40.0', '193.239.43.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.239.44.0', '193.239.47.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.239.48.0', '193.239.51.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('193.239.52.0', '193.239.55.255', 2147483647, 2147483647, 'IT', 'Italy'), +('193.239.56.0', '193.239.63.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.239.64.0', '193.239.67.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.239.68.0', '193.239.75.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.239.76.0', '193.239.79.255', 2147483647, 2147483647, 'FR', 'France'), +('193.239.80.0', '193.239.83.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.239.84.0', '193.239.87.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.239.88.0', '193.239.95.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.239.96.0', '193.239.99.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('193.239.100.0', '193.239.103.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.239.104.0', '193.239.107.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.239.108.0', '193.239.111.255', 2147483647, 2147483647, 'IL', 'Israel'), +('193.239.112.0', '193.239.115.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.239.116.0', '193.239.119.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.239.120.0', '193.239.123.255', 2147483647, 2147483647, 'FR', 'France'), +('193.239.124.0', '193.239.127.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.239.128.0', '193.239.129.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.239.130.0', '193.239.131.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.239.132.0', '193.239.133.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.239.134.0', '193.239.135.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.239.136.0', '193.239.137.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.239.138.0', '193.239.141.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.239.142.0', '193.239.143.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.239.144.0', '193.239.147.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.239.148.0', '193.239.149.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('193.239.150.0', '193.239.151.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.239.152.0', '193.239.153.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.239.154.0', '193.239.155.255', 2147483647, 2147483647, 'NO', 'Norway'), +('193.239.156.0', '193.239.157.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.239.158.0', '193.239.159.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.239.160.0', '193.239.161.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.239.162.0', '193.239.163.255', 2147483647, 2147483647, 'FR', 'France'), +('193.239.164.0', '193.239.165.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.239.166.0', '193.239.167.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.239.168.0', '193.239.169.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('193.239.170.0', '193.239.171.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.239.172.0', '193.239.173.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.239.174.0', '193.239.175.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.239.176.0', '193.239.177.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('193.239.178.0', '193.239.181.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.239.182.0', '193.239.183.255', 2147483647, 2147483647, 'MD', 'Moldova, Republic of'), +('193.239.184.0', '193.239.185.255', 2147483647, 2147483647, 'GR', 'Greece'), +('193.239.186.0', '193.239.187.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.239.188.0', '193.239.189.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.239.190.0', '193.239.191.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.239.192.0', '193.239.193.255', 2147483647, 2147483647, 'FR', 'France'), +('193.239.194.0', '193.239.195.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.239.196.0', '193.239.197.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.239.198.0', '193.239.199.255', 2147483647, 2147483647, 'FR', 'France'), +('193.239.200.0', '193.239.201.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.239.202.0', '193.239.203.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.239.204.0', '193.239.209.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.239.210.0', '193.239.211.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('193.239.212.0', '193.239.213.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.239.214.0', '193.239.215.255', 2147483647, 2147483647, 'GR', 'Greece'), +('193.239.216.0', '193.239.217.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.239.218.0', '193.239.219.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.239.220.0', '193.239.221.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.239.222.0', '193.239.223.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.239.224.0', '193.239.225.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.239.226.0', '193.239.227.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.239.228.0', '193.239.229.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.239.230.0', '193.239.233.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.239.234.0', '193.239.235.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.239.236.0', '193.239.237.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.239.238.0', '193.239.239.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.239.240.0', '193.239.241.255', 2147483647, 2147483647, 'FR', 'France'), +('193.239.242.0', '193.239.243.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.239.244.0', '193.239.245.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.239.246.0', '193.239.247.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.239.248.0', '193.239.249.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.239.250.0', '193.239.251.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.239.252.0', '193.239.253.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.239.254.0', '193.239.255.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.240.0.0', '193.240.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.241.0.0', '193.241.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.242.0.0', '193.242.0.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.242.1.0', '193.242.79.255', 2147483647, 2147483647, 'FR', 'France'), +('193.242.80.0', '193.242.95.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.242.96.0', '193.242.96.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.242.97.0', '193.242.97.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.242.98.0', '193.242.98.255', 2147483647, 2147483647, 'ES', 'Spain'), +('193.242.99.0', '193.242.99.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.242.100.0', '193.242.100.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.242.101.0', '193.242.101.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('193.242.102.0', '193.242.102.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.242.103.0', '193.242.103.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.242.104.0', '193.242.104.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.242.105.0', '193.242.105.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.242.106.0', '193.242.106.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.242.107.0', '193.242.107.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('193.242.108.0', '193.242.108.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.242.109.0', '193.242.109.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.242.110.0', '193.242.110.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.242.111.0', '193.242.111.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('193.242.112.0', '193.242.112.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.242.113.0', '193.242.113.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.242.114.0', '193.242.114.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.242.115.0', '193.242.116.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.242.117.0', '193.242.117.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.242.118.0', '193.242.118.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.242.119.0', '193.242.119.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.242.120.0', '193.242.120.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.242.121.0', '193.242.121.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.242.122.0', '193.242.122.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.242.123.0', '193.242.123.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.242.124.0', '193.242.124.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('193.242.125.0', '193.242.125.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.242.126.0', '193.242.126.255', 2147483647, 2147483647, 'FI', 'Finland'), +('193.242.127.0', '193.242.127.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.242.128.0', '193.242.191.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('193.242.192.0', '193.242.223.255', 2147483647, 2147483647, 'FR', 'France'), +('193.242.224.0', '193.242.239.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.242.240.0', '193.242.255.255', 2147483647, 2147483647, 'GR', 'Greece'), +('193.243.0.0', '193.243.131.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.243.132.0', '193.243.133.255', 2147483647, 2147483647, 'MD', 'Moldova, Republic of'), +('193.243.134.0', '193.243.135.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.243.136.0', '193.243.137.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('193.243.138.0', '193.243.139.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.243.140.0', '193.243.141.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('193.243.142.0', '193.243.143.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.243.144.0', '193.243.145.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.243.146.0', '193.243.149.255', 2147483647, 2147483647, 'PL', 'Poland'), +('193.243.150.0', '193.243.151.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.243.152.0', '193.243.153.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.243.154.0', '193.243.155.255', 2147483647, 2147483647, 'GR', 'Greece'), +('193.243.156.0', '193.243.159.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.243.160.0', '193.243.161.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.243.162.0', '193.243.163.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.243.164.0', '193.243.165.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.243.166.0', '193.243.166.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.243.167.0', '193.243.167.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('193.243.168.0', '193.243.175.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('193.243.176.0', '193.243.182.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.243.183.0', '193.243.183.63', 2147483647, 2147483647, 'NO', 'Norway'), +('193.243.183.64', '193.243.183.127', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.243.183.128', '193.243.183.191', 2147483647, 2147483647, 'IL', 'Israel'), +('193.243.183.192', '193.243.183.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.243.184.0', '193.243.191.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.243.192.0', '193.243.223.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('193.243.224.0', '193.243.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.244.0.0', '193.245.31.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('193.245.32.0', '193.245.39.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('193.245.40.0', '193.245.255.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('193.246.0.0', '193.246.125.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.246.126.0', '193.246.126.255', 2147483647, 2147483647, 'LI', 'Liechtenstein'), +('193.246.127.0', '193.246.205.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.246.206.0', '193.246.206.255', 2147483647, 2147483647, 'LI', 'Liechtenstein'), +('193.246.207.0', '193.247.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.248.0.0', '193.251.129.255', 2147483647, 2147483647, 'FR', 'France'), +('193.251.130.0', '193.251.131.39', 2147483647, 2147483647, 'CI', 'Cote D''Ivoire'), +('193.251.131.40', '193.251.131.47', 2147483647, 2147483647, 'FR', 'France'), +('193.251.131.48', '193.251.131.59', 2147483647, 2147483647, 'CI', 'Cote D''Ivoire'), +('193.251.131.60', '193.251.131.60', 2147483647, 2147483647, 'FR', 'France'), +('193.251.131.61', '193.251.131.61', 2147483647, 2147483647, 'CI', 'Cote D''Ivoire'), +('193.251.131.62', '193.251.131.62', 2147483647, 2147483647, 'FR', 'France'), +('193.251.131.63', '193.251.131.95', 2147483647, 2147483647, 'CI', 'Cote D''Ivoire'), +('193.251.131.96', '193.251.131.99', 2147483647, 2147483647, 'FR', 'France'), +('193.251.131.100', '193.251.131.127', 2147483647, 2147483647, 'CI', 'Cote D''Ivoire'), +('193.251.131.128', '193.251.133.255', 2147483647, 2147483647, 'FR', 'France'), +('193.251.134.0', '193.251.134.15', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.251.134.16', '193.251.134.31', 2147483647, 2147483647, 'US', 'United States'), +('193.251.134.32', '193.251.134.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.251.134.64', '193.251.134.127', 2147483647, 2147483647, 'FR', 'France'), +('193.251.134.128', '193.251.134.143', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.251.134.144', '193.251.134.159', 2147483647, 2147483647, 'FR', 'France'), +('193.251.134.160', '193.251.134.191', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.251.134.192', '193.251.134.207', 2147483647, 2147483647, 'FR', 'France'), +('193.251.134.208', '193.251.134.239', 2147483647, 2147483647, 'US', 'United States'), +('193.251.134.240', '193.251.134.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('193.251.135.0', '193.251.135.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('193.251.136.0', '193.251.136.159', 2147483647, 2147483647, 'KM', 'Comoros'), +('193.251.136.160', '193.251.136.223', 2147483647, 2147483647, 'FR', 'France'), +('193.251.136.224', '193.251.136.255', 2147483647, 2147483647, 'KM', 'Comoros'), +('193.251.137.0', '193.251.137.123', 2147483647, 2147483647, 'CF', 'Central African Republic'), +('193.251.137.124', '193.251.137.255', 2147483647, 2147483647, 'FR', 'France'), +('193.251.138.0', '193.251.138.251', 2147483647, 2147483647, 'CI', 'Cote D''Ivoire'), +('193.251.138.252', '193.251.138.255', 2147483647, 2147483647, 'FR', 'France'), +('193.251.139.0', '193.251.139.47', 2147483647, 2147483647, 'LB', 'Lebanon'), +('193.251.139.48', '193.251.139.55', 2147483647, 2147483647, 'FR', 'France'), +('193.251.139.56', '193.251.139.255', 2147483647, 2147483647, 'LB', 'Lebanon'), +('193.251.140.0', '193.251.141.127', 2147483647, 2147483647, 'MG', 'Madagascar'), +('193.251.141.128', '193.251.141.130', 2147483647, 2147483647, 'FR', 'France'), +('193.251.141.131', '193.251.141.195', 2147483647, 2147483647, 'MG', 'Madagascar'), +('193.251.141.196', '193.251.141.196', 2147483647, 2147483647, 'FR', 'France'), +('193.251.141.197', '193.251.141.198', 2147483647, 2147483647, 'MG', 'Madagascar'), +('193.251.141.199', '193.251.141.201', 2147483647, 2147483647, 'FR', 'France'), +('193.251.141.202', '193.251.141.228', 2147483647, 2147483647, 'MG', 'Madagascar'), +('193.251.141.229', '193.251.141.230', 2147483647, 2147483647, 'FR', 'France'), +('193.251.141.231', '193.251.142.255', 2147483647, 2147483647, 'MG', 'Madagascar'), +('193.251.143.0', '193.251.143.255', 2147483647, 2147483647, 'DJ', 'Djibouti'), +('193.251.144.0', '193.251.144.255', 2147483647, 2147483647, 'DZ', 'Algeria'), +('193.251.145.0', '193.251.145.21', 2147483647, 2147483647, 'FR', 'France'), +('193.251.145.22', '193.251.145.23', 2147483647, 2147483647, 'MR', 'Mauritania'), +('193.251.145.24', '193.251.145.25', 2147483647, 2147483647, 'FR', 'France'), +('193.251.145.26', '193.251.145.26', 2147483647, 2147483647, 'MR', 'Mauritania'), +('193.251.145.27', '193.251.145.29', 2147483647, 2147483647, 'FR', 'France'), +('193.251.145.30', '193.251.145.31', 2147483647, 2147483647, 'MR', 'Mauritania'), +('193.251.145.32', '193.251.145.63', 2147483647, 2147483647, 'FR', 'France'), +('193.251.145.64', '193.251.145.95', 2147483647, 2147483647, 'MR', 'Mauritania'), +('193.251.145.96', '193.251.145.99', 2147483647, 2147483647, 'FR', 'France'), +('193.251.145.100', '193.251.145.111', 2147483647, 2147483647, 'MR', 'Mauritania'), +('193.251.145.112', '193.251.145.119', 2147483647, 2147483647, 'FR', 'France'), +('193.251.145.120', '193.251.145.175', 2147483647, 2147483647, 'MR', 'Mauritania'), +('193.251.145.176', '193.251.145.191', 2147483647, 2147483647, 'FR', 'France'), +('193.251.145.192', '193.251.145.223', 2147483647, 2147483647, 'MR', 'Mauritania'), +('193.251.145.224', '193.251.145.255', 2147483647, 2147483647, 'FR', 'France'), +('193.251.146.0', '193.251.146.255', 2147483647, 2147483647, 'MR', 'Mauritania'), +('193.251.147.0', '193.251.147.255', 2147483647, 2147483647, 'TD', 'Chad'), +('193.251.148.0', '193.251.148.255', 2147483647, 2147483647, 'FR', 'France'), +('193.251.149.0', '193.251.149.255', 2147483647, 2147483647, 'CF', 'Central African Republic'), +('193.251.150.0', '193.251.151.255', 2147483647, 2147483647, 'FR', 'France'), +('193.251.152.0', '193.251.152.255', 2147483647, 2147483647, 'DZ', 'Algeria'), +('193.251.153.0', '193.251.153.215', 2147483647, 2147483647, 'GQ', 'Equatorial Guinea'), +('193.251.153.216', '193.251.153.223', 2147483647, 2147483647, 'FR', 'France'), +('193.251.153.224', '193.251.153.255', 2147483647, 2147483647, 'GQ', 'Equatorial Guinea'), +('193.251.154.0', '193.251.154.255', 2147483647, 2147483647, 'FR', 'France'), +('193.251.155.0', '193.251.155.127', 2147483647, 2147483647, 'CM', 'Cameroon'), +('193.251.155.128', '193.251.155.255', 2147483647, 2147483647, 'FR', 'France'), +('193.251.156.0', '193.251.157.255', 2147483647, 2147483647, 'LB', 'Lebanon'), +('193.251.158.0', '193.251.158.255', 2147483647, 2147483647, 'FR', 'France'), +('193.251.159.0', '193.251.159.255', 2147483647, 2147483647, 'CI', 'Cote D''Ivoire'), +('193.251.160.0', '193.251.160.139', 2147483647, 2147483647, 'GP', 'Guadeloupe'), +('193.251.160.140', '193.251.160.143', 2147483647, 2147483647, 'FR', 'France'), +('193.251.160.144', '193.251.160.151', 2147483647, 2147483647, 'GP', 'Guadeloupe'), +('193.251.160.152', '193.251.160.159', 2147483647, 2147483647, 'FR', 'France'), +('193.251.160.160', '193.251.160.255', 2147483647, 2147483647, 'GP', 'Guadeloupe'), +('193.251.161.0', '193.251.161.255', 2147483647, 2147483647, 'CI', 'Cote D''Ivoire'), +('193.251.162.0', '193.251.165.63', 2147483647, 2147483647, 'GP', 'Guadeloupe'), +('193.251.165.64', '193.251.165.255', 2147483647, 2147483647, 'FR', 'France'), +('193.251.166.0', '193.251.166.15', 2147483647, 2147483647, 'LB', 'Lebanon'), +('193.251.166.16', '193.251.166.23', 2147483647, 2147483647, 'FR', 'France'), +('193.251.166.24', '193.251.166.83', 2147483647, 2147483647, 'LB', 'Lebanon'), +('193.251.166.84', '193.251.166.87', 2147483647, 2147483647, 'FR', 'France'), +('193.251.166.88', '193.251.166.255', 2147483647, 2147483647, 'LB', 'Lebanon'), +('193.251.167.0', '193.251.167.111', 2147483647, 2147483647, 'DJ', 'Djibouti'), +('193.251.167.112', '193.251.167.255', 2147483647, 2147483647, 'FR', 'France'), +('193.251.168.0', '193.251.168.255', 2147483647, 2147483647, 'CI', 'Cote D''Ivoire'), +('193.251.169.0', '193.251.169.255', 2147483647, 2147483647, 'DZ', 'Algeria'), +('193.251.170.0', '193.251.171.255', 2147483647, 2147483647, 'LB', 'Lebanon'), +('193.251.172.0', '193.251.172.255', 2147483647, 2147483647, 'FR', 'France'), +('193.251.173.0', '193.251.173.15', 2147483647, 2147483647, 'CI', 'Cote D''Ivoire'), +('193.251.173.16', '193.251.173.255', 2147483647, 2147483647, 'FR', 'France'), +('193.251.174.0', '193.251.175.223', 2147483647, 2147483647, 'DZ', 'Algeria'), +('193.251.175.224', '193.251.217.255', 2147483647, 2147483647, 'FR', 'France'), +('193.251.218.0', '193.251.219.255', 2147483647, 2147483647, 'GQ', 'Equatorial Guinea'), +('193.251.220.0', '193.251.220.255', 2147483647, 2147483647, 'NE', 'Niger'), +('193.251.221.0', '193.251.221.31', 2147483647, 2147483647, 'MQ', 'Martinique'), +('193.251.221.32', '193.251.221.255', 2147483647, 2147483647, 'FR', 'France'), +('193.251.222.0', '193.251.223.255', 2147483647, 2147483647, 'GQ', 'Equatorial Guinea'), +('193.251.224.0', '193.251.224.215', 2147483647, 2147483647, 'DJ', 'Djibouti'), +('193.251.224.216', '193.251.227.3', 2147483647, 2147483647, 'FR', 'France'), +('193.251.227.4', '193.251.227.23', 2147483647, 2147483647, 'NE', 'Niger'), +('193.251.227.24', '193.251.227.39', 2147483647, 2147483647, 'FR', 'France'), +('193.251.227.40', '193.251.227.71', 2147483647, 2147483647, 'NE', 'Niger'), +('193.251.227.72', '193.251.227.84', 2147483647, 2147483647, 'FR', 'France'), +('193.251.227.85', '193.251.227.85', 2147483647, 2147483647, 'NE', 'Niger'), +('193.251.227.86', '193.251.227.95', 2147483647, 2147483647, 'FR', 'France'), +('193.251.227.96', '193.251.227.96', 2147483647, 2147483647, 'NE', 'Niger'), +('193.251.227.97', '193.251.227.104', 2147483647, 2147483647, 'FR', 'France'), +('193.251.227.105', '193.251.227.105', 2147483647, 2147483647, 'NE', 'Niger'), +('193.251.227.106', '193.251.227.107', 2147483647, 2147483647, 'FR', 'France'), +('193.251.227.108', '193.251.227.115', 2147483647, 2147483647, 'NE', 'Niger'), +('193.251.227.116', '193.251.227.119', 2147483647, 2147483647, 'FR', 'France'), +('193.251.227.120', '193.251.227.183', 2147483647, 2147483647, 'NE', 'Niger'), +('193.251.227.184', '193.251.227.191', 2147483647, 2147483647, 'FR', 'France'), +('193.251.227.192', '193.251.227.223', 2147483647, 2147483647, 'NE', 'Niger'), +('193.251.227.224', '193.251.227.227', 2147483647, 2147483647, 'FR', 'France'), +('193.251.227.228', '193.251.228.255', 2147483647, 2147483647, 'NE', 'Niger'), +('193.251.229.0', '193.252.15.255', 2147483647, 2147483647, 'FR', 'France'), +('193.252.16.0', '193.252.17.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.252.18.0', '193.252.127.255', 2147483647, 2147483647, 'FR', 'France'), +('193.252.128.0', '193.252.128.255', 2147483647, 2147483647, 'US', 'United States'), +('193.252.129.0', '193.252.129.255', 2147483647, 2147483647, 'IR', 'Iran, Islamic Republic of'), +('193.252.130.0', '193.252.130.255', 2147483647, 2147483647, 'US', 'United States'), +('193.252.131.0', '193.252.131.255', 2147483647, 2147483647, 'IR', 'Iran, Islamic Republic of'), +('193.252.132.0', '193.252.132.255', 2147483647, 2147483647, 'US', 'United States'), +('193.252.133.0', '193.252.133.255', 2147483647, 2147483647, 'FR', 'France'), +('193.252.134.0', '193.252.134.255', 2147483647, 2147483647, 'US', 'United States'), +('193.252.135.0', '193.252.136.255', 2147483647, 2147483647, 'IR', 'Iran, Islamic Republic of'), +('193.252.137.0', '193.252.137.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('193.252.138.0', '193.252.138.255', 2147483647, 2147483647, 'FR', 'France'), +('193.252.139.0', '193.252.139.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('193.252.140.0', '193.252.144.255', 2147483647, 2147483647, 'FR', 'France'), +('193.252.145.0', '193.252.145.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('193.252.146.0', '193.252.146.255', 2147483647, 2147483647, 'FR', 'France'), +('193.252.147.0', '193.252.147.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('193.252.148.0', '193.252.154.255', 2147483647, 2147483647, 'FR', 'France'), +('193.252.155.0', '193.252.155.255', 2147483647, 2147483647, 'AT', 'Austria'), +('193.252.156.0', '193.252.228.255', 2147483647, 2147483647, 'FR', 'France'), +('193.252.229.0', '193.252.229.159', 2147483647, 2147483647, 'DO', 'Dominican Republic'), +('193.252.229.160', '193.253.157.255', 2147483647, 2147483647, 'FR', 'France'), +('193.253.158.0', '193.253.159.255', 2147483647, 2147483647, 'US', 'United States'), +('193.253.160.0', '193.253.255.255', 2147483647, 2147483647, 'FR', 'France'), +('193.254.0.0', '193.254.0.63', 2147483647, 2147483647, 'DK', 'Denmark'), +('193.254.0.64', '193.254.0.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.254.1.0', '193.254.3.255', 2147483647, 2147483647, 'AL', 'Albania'), +('193.254.4.0', '193.254.7.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.254.8.0', '193.254.17.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('193.254.18.0', '193.254.23.127', 2147483647, 2147483647, 'DE', 'Germany'), +('193.254.23.128', '193.254.23.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('193.254.24.0', '193.254.26.255', 2147483647, 2147483647, 'IT', 'Italy'), +('193.254.27.0', '193.254.28.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.254.29.0', '193.254.29.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('193.254.30.0', '193.254.30.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.254.31.0', '193.254.31.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.254.32.0', '193.254.63.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.254.64.0', '193.254.107.255', 2147483647, 2147483647, 'EU', 'Europe'), +('193.254.108.0', '193.254.108.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.254.109.0', '193.254.127.255', 2147483647, 2147483647, 'EU', 'Europe'), +('193.254.128.0', '193.254.191.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.254.192.0', '193.254.193.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('193.254.194.0', '193.254.195.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.254.196.0', '193.254.197.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.254.198.0', '193.254.199.255', 2147483647, 2147483647, 'US', 'United States'), +('193.254.200.0', '193.254.201.255', 2147483647, 2147483647, 'GR', 'Greece'), +('193.254.202.0', '193.254.203.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.254.204.0', '193.254.205.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.254.206.0', '193.254.207.255', 2147483647, 2147483647, 'IL', 'Israel'), +('193.254.208.0', '193.254.209.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.254.210.0', '193.254.211.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('193.254.212.0', '193.254.213.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.254.214.0', '193.254.215.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.254.216.0', '193.254.221.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.254.222.0', '193.254.223.255', 2147483647, 2147483647, 'GR', 'Greece'), +('193.254.224.0', '193.254.227.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.254.228.0', '193.254.229.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('193.254.230.0', '193.254.231.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.254.232.0', '193.254.235.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('193.254.236.0', '193.254.239.255', 2147483647, 2147483647, 'DE', 'Germany'), +('193.254.240.0', '193.254.241.255', 2147483647, 2147483647, 'IT', 'Italy'), +('193.254.242.0', '193.254.243.255', 2147483647, 2147483647, 'RO', 'Romania'), +('193.254.244.0', '193.254.245.255', 2147483647, 2147483647, 'FR', 'France'), +('193.254.246.0', '193.254.249.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('193.254.250.0', '193.254.251.255', 2147483647, 2147483647, 'KZ', 'Kazakstan'), +('193.254.252.0', '193.254.253.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('193.254.254.0', '193.254.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('193.255.0.0', '193.255.255.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('194.0.0.0', '194.0.0.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.0.1.0', '194.0.2.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.0.3.0', '194.0.3.255', 2147483647, 2147483647, 'LT', 'Lithuania'), +('194.0.4.0', '194.0.4.255', 2147483647, 2147483647, 'GR', 'Greece'), +('194.0.5.0', '194.0.5.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.0.6.0', '194.0.7.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.0.8.0', '194.0.8.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('194.0.9.0', '194.0.9.255', 2147483647, 2147483647, 'FR', 'France'), +('194.0.10.0', '194.0.10.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.0.64.0', '194.0.67.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.0.68.0', '194.0.71.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.0.72.0', '194.0.75.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.0.76.0', '194.0.79.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('194.0.80.0', '194.0.83.255', 2147483647, 2147483647, 'FI', 'Finland'), +('194.0.84.0', '194.0.87.255', 2147483647, 2147483647, 'HR', 'Croatia'), +('194.0.88.0', '194.0.91.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.0.92.0', '194.0.95.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.0.96.0', '194.0.103.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.0.104.0', '194.0.107.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.0.108.0', '194.0.111.255', 2147483647, 2147483647, 'KZ', 'Kazakstan'), +('194.0.112.0', '194.0.115.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.0.116.0', '194.0.119.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.0.120.0', '194.0.123.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.0.124.0', '194.0.127.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.0.128.0', '194.0.128.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.0.129.0', '194.0.129.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.0.130.0', '194.0.130.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('194.0.131.0', '194.0.131.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.0.132.0', '194.0.132.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.0.133.0', '194.0.133.255', 2147483647, 2147483647, 'IT', 'Italy'), +('194.0.134.0', '194.0.134.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.0.135.0', '194.0.135.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.0.136.0', '194.0.136.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.0.137.0', '194.0.137.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.0.138.0', '194.0.138.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.0.139.0', '194.0.139.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.0.140.0', '194.0.140.255', 2147483647, 2147483647, 'IT', 'Italy'), +('194.0.141.0', '194.0.141.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.0.142.0', '194.0.142.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('194.0.143.0', '194.0.143.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.0.144.0', '194.0.145.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.0.146.0', '194.0.146.255', 2147483647, 2147483647, 'CY', 'Cyprus'), +('194.0.147.0', '194.0.147.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.0.148.0', '194.0.148.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.0.149.0', '194.0.149.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.0.150.0', '194.0.150.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.0.151.0', '194.0.151.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.0.152.0', '194.0.153.255', 2147483647, 2147483647, 'FR', 'France'), +('194.0.154.0', '194.0.154.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.0.155.0', '194.0.155.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.0.156.0', '194.0.156.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.0.157.0', '194.0.157.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.0.158.0', '194.0.159.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.0.160.0', '194.0.160.255', 2147483647, 2147483647, 'LT', 'Lithuania'), +('194.0.161.0', '194.0.161.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.0.162.0', '194.0.162.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.0.163.0', '194.0.163.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.0.164.0', '194.0.164.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('194.0.165.0', '194.0.165.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.0.166.0', '194.0.166.255', 2147483647, 2147483647, 'FR', 'France'), +('194.0.167.0', '194.0.167.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.0.168.0', '194.0.168.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.0.169.0', '194.0.169.255', 2147483647, 2147483647, 'NO', 'Norway'), +('194.0.170.0', '194.0.170.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.0.171.0', '194.0.171.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.0.172.0', '194.0.172.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.0.173.0', '194.0.175.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.0.176.0', '194.0.176.255', 2147483647, 2147483647, 'FR', 'France'), +('194.0.177.0', '194.0.177.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.0.178.0', '194.0.178.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('194.0.179.0', '194.0.179.255', 2147483647, 2147483647, 'FR', 'France'), +('194.0.180.0', '194.0.180.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.0.181.0', '194.0.181.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.0.182.0', '194.0.184.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.0.185.0', '194.0.185.255', 2147483647, 2147483647, 'GR', 'Greece'), +('194.0.186.0', '194.0.186.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.0.187.0', '194.0.187.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.0.188.0', '194.0.188.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.0.189.0', '194.0.190.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.0.191.0', '194.0.191.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.0.192.0', '194.0.192.255', 2147483647, 2147483647, 'NO', 'Norway'), +('194.0.193.0', '194.0.193.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.0.194.0', '194.0.194.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.0.195.0', '194.0.195.255', 2147483647, 2147483647, 'FR', 'France'), +('194.0.196.0', '194.0.196.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('194.0.197.0', '194.0.197.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.0.198.0', '194.0.198.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.0.199.0', '194.0.199.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.0.200.0', '194.0.200.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.0.201.0', '194.0.201.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.0.202.0', '194.0.202.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('194.0.203.0', '194.0.203.255', 2147483647, 2147483647, 'LT', 'Lithuania'), +('194.0.204.0', '194.0.204.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.0.205.0', '194.0.205.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.0.206.0', '194.0.206.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.0.207.0', '194.0.207.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('194.0.208.0', '194.0.208.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.0.209.0', '194.0.209.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.0.210.0', '194.0.210.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.0.211.0', '194.0.211.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.0.212.0', '194.0.213.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.0.214.0', '194.0.214.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.0.215.0', '194.0.215.255', 2147483647, 2147483647, 'NO', 'Norway'), +('194.0.216.0', '194.0.216.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.0.217.0', '194.0.217.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.0.218.0', '194.0.218.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.0.219.0', '194.0.219.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.0.220.0', '194.0.220.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.0.221.0', '194.0.221.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.0.222.0', '194.0.222.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.0.223.0', '194.0.223.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.0.224.0', '194.0.224.255', 2147483647, 2147483647, 'HR', 'Croatia'), +('194.0.225.0', '194.0.225.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.0.226.0', '194.0.226.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('194.0.227.0', '194.0.227.255', 2147483647, 2147483647, 'GE', 'Georgia'), +('194.0.228.0', '194.0.228.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.0.229.0', '194.0.229.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.0.230.0', '194.0.230.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.0.231.0', '194.0.231.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.0.232.0', '194.0.232.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.0.233.0', '194.0.233.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.0.234.0', '194.0.234.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.0.235.0', '194.0.235.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('194.0.236.0', '194.0.236.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.0.237.0', '194.0.237.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.0.238.0', '194.0.239.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.0.240.0', '194.0.240.255', 2147483647, 2147483647, 'IT', 'Italy'), +('194.0.241.0', '194.0.241.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('194.0.242.0', '194.0.242.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('194.0.243.0', '194.0.243.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.0.244.0', '194.0.244.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.0.245.0', '194.0.245.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.0.246.0', '194.0.246.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.0.247.0', '194.0.248.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.0.249.0', '194.0.249.255', 2147483647, 2147483647, 'FR', 'France'), +('194.0.250.0', '194.0.250.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.0.251.0', '194.0.251.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.0.252.0', '194.0.252.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.0.253.0', '194.0.253.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.0.254.0', '194.0.254.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.0.255.0', '194.0.255.255', 2147483647, 2147483647, 'FR', 'France'), +('194.1.0.0', '194.1.143.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('194.1.144.0', '194.1.144.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.1.145.0', '194.1.145.255', 2147483647, 2147483647, 'IL', 'Israel'), +('194.1.146.0', '194.1.146.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.1.147.0', '194.1.148.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.1.149.0', '194.1.149.255', 2147483647, 2147483647, 'AL', 'Albania'), +('194.1.150.0', '194.1.151.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.1.152.0', '194.1.152.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.1.153.0', '194.1.153.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.1.154.0', '194.1.154.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.1.155.0', '194.1.155.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.1.156.0', '194.1.159.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('194.1.160.0', '194.1.160.255', 2147483647, 2147483647, 'IT', 'Italy'), +('194.1.161.0', '194.1.161.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.1.162.0', '194.1.163.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.1.164.0', '194.1.166.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.1.167.0', '194.1.167.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.1.168.0', '194.1.175.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('194.1.176.0', '194.1.176.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.1.177.0', '194.1.177.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.1.178.0', '194.1.179.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.1.180.0', '194.1.180.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.1.181.0', '194.1.181.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.1.182.0', '194.1.182.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.1.183.0', '194.1.183.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.1.184.0', '194.1.191.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('194.1.192.0', '194.1.192.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.1.193.0', '194.1.193.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.1.194.0', '194.1.194.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.1.195.0', '194.1.195.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.1.196.0', '194.1.196.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.1.197.0', '194.1.197.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.1.198.0', '194.1.198.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.1.199.0', '194.1.199.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.1.200.0', '194.1.200.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.1.201.0', '194.1.201.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.1.202.0', '194.1.202.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.1.203.0', '194.1.203.255', 2147483647, 2147483647, 'FR', 'France'), +('194.1.204.0', '194.1.204.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.1.205.0', '194.1.205.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.1.206.0', '194.1.206.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.1.207.0', '194.1.207.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.1.208.0', '194.1.208.255', 2147483647, 2147483647, 'IT', 'Italy'), +('194.1.209.0', '194.1.209.255', 2147483647, 2147483647, 'EE', 'Estonia'), +('194.1.210.0', '194.1.210.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.1.211.0', '194.1.211.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.1.212.0', '194.1.255.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('194.2.0.0', '194.2.59.199', 2147483647, 2147483647, 'FR', 'France'), +('194.2.59.200', '194.2.59.207', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.2.59.208', '194.2.105.143', 2147483647, 2147483647, 'FR', 'France'), +('194.2.105.144', '194.2.105.151', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.2.105.152', '194.2.190.7', 2147483647, 2147483647, 'FR', 'France'), +('194.2.190.8', '194.2.190.15', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('194.2.190.16', '194.3.71.46', 2147483647, 2147483647, 'FR', 'France'), +('194.3.71.47', '194.3.71.47', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.3.71.48', '194.3.91.245', 2147483647, 2147483647, 'FR', 'France'), +('194.3.91.246', '194.3.91.246', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('194.3.91.247', '194.3.117.255', 2147483647, 2147483647, 'FR', 'France'), +('194.3.118.0', '194.3.118.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('194.3.119.0', '194.3.160.176', 2147483647, 2147483647, 'FR', 'France'), +('194.3.160.177', '194.3.160.177', 2147483647, 2147483647, 'LB', 'Lebanon'), +('194.3.160.178', '194.5.50.255', 2147483647, 2147483647, 'FR', 'France'), +('194.5.51.0', '194.5.51.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.5.52.0', '194.5.62.255', 2147483647, 2147483647, 'FR', 'France'), +('194.5.63.0', '194.5.63.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.5.64.0', '194.5.252.255', 2147483647, 2147483647, 'FR', 'France'), +('194.5.253.0', '194.5.253.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.5.254.0', '194.5.255.255', 2147483647, 2147483647, 'FR', 'France'), +('194.6.0.0', '194.6.1.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.6.2.0', '194.6.2.15', 2147483647, 2147483647, 'EU', 'Europe'), +('194.6.2.16', '194.6.2.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.6.2.80', '194.6.2.127', 2147483647, 2147483647, 'EU', 'Europe'), +('194.6.2.128', '194.6.2.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.6.2.192', '194.6.2.207', 2147483647, 2147483647, 'EU', 'Europe'), +('194.6.2.208', '194.6.4.7', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.6.4.8', '194.6.4.15', 2147483647, 2147483647, 'EU', 'Europe'), +('194.6.4.16', '194.6.4.23', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.6.4.24', '194.6.4.55', 2147483647, 2147483647, 'EU', 'Europe'), +('194.6.4.56', '194.6.4.63', 2147483647, 2147483647, 'GB', 'United Kingdom'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('194.6.4.64', '194.6.4.71', 2147483647, 2147483647, 'EU', 'Europe'), +('194.6.4.72', '194.6.4.103', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.6.4.104', '194.6.4.127', 2147483647, 2147483647, 'EU', 'Europe'), +('194.6.4.128', '194.6.4.135', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.6.4.136', '194.6.4.167', 2147483647, 2147483647, 'EU', 'Europe'), +('194.6.4.168', '194.6.4.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.6.4.176', '194.6.4.183', 2147483647, 2147483647, 'EU', 'Europe'), +('194.6.4.184', '194.6.4.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.6.4.192', '194.6.4.231', 2147483647, 2147483647, 'EU', 'Europe'), +('194.6.4.232', '194.6.4.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.6.4.240', '194.6.4.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.6.5.0', '194.6.7.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.6.8.0', '194.6.8.31', 2147483647, 2147483647, 'EU', 'Europe'), +('194.6.8.32', '194.6.8.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.6.8.64', '194.6.8.79', 2147483647, 2147483647, 'EU', 'Europe'), +('194.6.8.80', '194.6.8.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.6.8.96', '194.6.8.111', 2147483647, 2147483647, 'EU', 'Europe'), +('194.6.8.112', '194.6.8.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.6.8.128', '194.6.8.143', 2147483647, 2147483647, 'EU', 'Europe'), +('194.6.8.144', '194.6.8.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.6.8.160', '194.6.9.7', 2147483647, 2147483647, 'EU', 'Europe'), +('194.6.9.8', '194.6.9.23', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.6.9.24', '194.6.9.31', 2147483647, 2147483647, 'EU', 'Europe'), +('194.6.9.32', '194.6.9.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.6.9.80', '194.6.9.87', 2147483647, 2147483647, 'EU', 'Europe'), +('194.6.9.88', '194.6.9.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.6.9.112', '194.6.9.127', 2147483647, 2147483647, 'EU', 'Europe'), +('194.6.9.128', '194.6.9.135', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.6.9.136', '194.6.9.167', 2147483647, 2147483647, 'EU', 'Europe'), +('194.6.9.168', '194.6.9.183', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.6.9.184', '194.6.9.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.6.10.0', '194.6.10.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.6.11.0', '194.6.11.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.6.12.0', '194.6.15.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.6.16.0', '194.6.16.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.6.17.0', '194.6.18.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.6.18.128', '194.6.18.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.6.19.0', '194.6.54.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.6.55.0', '194.6.55.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.6.56.0', '194.6.56.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.6.57.0', '194.6.59.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.6.60.0', '194.6.72.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.6.73.0', '194.6.74.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.6.75.0', '194.6.81.7', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.6.81.8', '194.6.81.31', 2147483647, 2147483647, 'EU', 'Europe'), +('194.6.81.32', '194.6.81.103', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.6.81.104', '194.6.81.111', 2147483647, 2147483647, 'EU', 'Europe'), +('194.6.81.112', '194.6.81.119', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.6.81.120', '194.6.81.127', 2147483647, 2147483647, 'GI', 'Gibraltar'), +('194.6.81.128', '194.6.81.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.6.81.144', '194.6.81.159', 2147483647, 2147483647, 'EU', 'Europe'), +('194.6.81.160', '194.6.81.183', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.6.81.184', '194.6.81.199', 2147483647, 2147483647, 'EU', 'Europe'), +('194.6.81.200', '194.6.81.207', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.6.81.208', '194.6.81.215', 2147483647, 2147483647, 'EU', 'Europe'), +('194.6.81.216', '194.6.83.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.6.83.64', '194.6.83.127', 2147483647, 2147483647, 'EU', 'Europe'), +('194.6.83.128', '194.6.83.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.6.83.192', '194.6.83.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.6.84.0', '194.6.84.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.6.84.80', '194.6.84.95', 2147483647, 2147483647, 'EU', 'Europe'), +('194.6.84.96', '194.6.84.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.6.84.192', '194.6.84.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.6.85.0', '194.6.127.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.6.128.0', '194.6.159.255', 2147483647, 2147483647, 'FR', 'France'), +('194.6.160.0', '194.6.191.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.6.192.0', '194.6.195.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.6.196.0', '194.6.199.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.6.200.0', '194.6.203.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.6.204.0', '194.6.207.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.6.208.0', '194.6.211.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.6.212.0', '194.6.215.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.6.216.0', '194.6.223.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.6.224.0', '194.6.224.255', 2147483647, 2147483647, 'MA', 'Morocco'), +('194.6.225.0', '194.6.225.255', 2147483647, 2147483647, 'PS', 'Palestinian Territory, Occupied'), +('194.6.226.0', '194.6.226.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.6.227.0', '194.6.227.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.6.228.0', '194.6.228.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.6.229.0', '194.6.229.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('194.6.230.0', '194.6.230.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.6.231.0', '194.6.233.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.6.234.0', '194.6.234.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.6.235.0', '194.6.235.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.6.236.0', '194.6.236.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.6.237.0', '194.6.237.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('194.6.238.0', '194.6.238.255', 2147483647, 2147483647, 'NO', 'Norway'), +('194.6.239.0', '194.6.239.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.6.240.0', '194.6.240.255', 2147483647, 2147483647, 'FR', 'France'), +('194.6.241.0', '194.6.241.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.6.242.0', '194.6.242.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('194.6.243.0', '194.6.243.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.6.244.0', '194.6.244.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.6.245.0', '194.6.246.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.6.247.0', '194.6.247.255', 2147483647, 2147483647, 'IT', 'Italy'), +('194.6.248.0', '194.6.248.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.6.249.0', '194.6.249.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.6.250.0', '194.6.250.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.6.251.0', '194.6.252.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.6.253.0', '194.6.253.255', 2147483647, 2147483647, 'ES', 'Spain'), +('194.6.254.0', '194.6.254.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.6.255.0', '194.6.255.255', 2147483647, 2147483647, 'QA', 'Qatar'), +('194.7.0.0', '194.7.19.63', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.7.19.64', '194.7.19.71', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.7.19.72', '194.7.19.159', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.7.19.160', '194.7.19.191', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('194.7.19.192', '194.7.27.31', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.7.27.32', '194.7.27.63', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('194.7.27.64', '194.7.27.119', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.7.27.120', '194.7.27.127', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('194.7.27.128', '194.7.30.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.7.31.0', '194.7.31.31', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('194.7.31.32', '194.7.34.95', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.7.34.96', '194.7.34.127', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('194.7.34.128', '194.7.34.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.7.35.0', '194.7.35.15', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('194.7.35.16', '194.7.35.31', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.7.35.32', '194.7.35.47', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('194.7.35.48', '194.7.36.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.7.37.0', '194.7.37.255', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('194.7.38.0', '194.7.39.95', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.7.39.96', '194.7.39.127', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('194.7.39.128', '194.7.41.143', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.7.41.144', '194.7.41.159', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('194.7.41.160', '194.7.41.231', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.7.41.232', '194.7.41.235', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('194.7.41.236', '194.7.44.15', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.7.44.16', '194.7.44.31', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('194.7.44.32', '194.7.44.159', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.7.44.160', '194.7.44.191', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('194.7.44.192', '194.7.54.7', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.7.54.8', '194.7.54.15', 2147483647, 2147483647, 'FR', 'France'), +('194.7.54.16', '194.7.54.79', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.7.54.80', '194.7.54.95', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('194.7.54.96', '194.7.63.63', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.7.63.64', '194.7.63.95', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('194.7.63.96', '194.7.66.7', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.7.66.8', '194.7.66.15', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('194.7.66.16', '194.7.66.47', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.7.66.48', '194.7.66.55', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('194.7.66.56', '194.7.66.159', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.7.66.160', '194.7.66.191', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('194.7.66.192', '194.7.66.223', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.7.66.224', '194.7.66.255', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('194.7.67.0', '194.7.80.63', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.7.80.64', '194.7.80.79', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('194.7.80.80', '194.7.80.191', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.7.80.192', '194.7.80.223', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('194.7.80.224', '194.7.83.15', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.7.83.16', '194.7.83.23', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('194.7.83.24', '194.7.83.191', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.7.83.192', '194.7.83.223', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('194.7.83.224', '194.7.84.159', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.7.84.160', '194.7.84.175', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('194.7.84.176', '194.7.84.183', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.7.84.184', '194.7.84.187', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('194.7.84.188', '194.7.89.79', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.7.89.80', '194.7.89.95', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('194.7.89.96', '194.7.94.79', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.7.94.80', '194.7.94.95', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('194.7.94.96', '194.7.96.63', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.7.96.64', '194.7.96.95', 2147483647, 2147483647, 'US', 'United States'), +('194.7.96.96', '194.7.102.7', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.7.102.8', '194.7.102.15', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('194.7.102.16', '194.7.124.31', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.7.124.32', '194.7.124.63', 2147483647, 2147483647, 'FR', 'France'), +('194.7.124.64', '194.7.127.191', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.7.127.192', '194.7.127.223', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('194.7.127.224', '194.7.137.127', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.7.137.128', '194.7.137.159', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('194.7.137.160', '194.7.138.223', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.7.138.224', '194.7.138.255', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('194.7.139.0', '194.7.139.95', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.7.139.96', '194.7.139.127', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('194.7.139.128', '194.7.141.95', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.7.141.96', '194.7.141.127', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('194.7.141.128', '194.7.146.191', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.7.146.192', '194.7.146.223', 2147483647, 2147483647, 'FR', 'France'), +('194.7.146.224', '194.7.157.7', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.7.157.8', '194.7.157.15', 2147483647, 2147483647, 'DE', 'Germany'), +('194.7.157.16', '194.7.157.239', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.7.157.240', '194.7.157.255', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('194.7.158.0', '194.7.158.27', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.7.158.28', '194.7.158.31', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.7.158.32', '194.7.160.23', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.7.160.24', '194.7.160.31', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('194.7.160.32', '194.7.161.159', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.7.161.160', '194.7.161.167', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('194.7.161.168', '194.7.161.175', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.7.161.176', '194.7.161.183', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('194.7.161.184', '194.7.176.215', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.7.176.216', '194.7.176.219', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('194.7.176.220', '194.7.178.15', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.7.178.16', '194.7.178.31', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('194.7.178.32', '194.7.183.31', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.7.183.32', '194.7.183.63', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('194.7.183.64', '194.7.185.79', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.7.185.80', '194.7.185.87', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.7.185.88', '194.7.185.95', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('194.7.185.96', '194.7.186.7', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.7.186.8', '194.7.186.15', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('194.7.186.16', '194.7.195.159', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.7.195.160', '194.7.195.223', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('194.7.195.224', '194.7.195.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.7.196.0', '194.7.196.255', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('194.7.197.0', '194.7.201.31', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.7.201.32', '194.7.201.63', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('194.7.201.64', '194.7.201.159', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.7.201.160', '194.7.201.175', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('194.7.201.176', '194.7.201.239', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.7.201.240', '194.7.201.255', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('194.7.202.0', '194.7.203.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.7.204.0', '194.7.205.255', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('194.7.206.0', '194.7.206.7', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.7.206.8', '194.7.206.31', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('194.7.206.32', '194.7.206.223', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.7.206.224', '194.7.206.231', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('194.7.206.232', '194.7.207.223', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.7.207.224', '194.7.207.239', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('194.7.207.240', '194.7.208.79', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.7.208.80', '194.7.208.95', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('194.7.208.96', '194.7.209.151', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.7.209.152', '194.7.209.159', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('194.7.209.160', '194.7.227.247', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.7.227.248', '194.7.227.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('194.7.228.0', '194.7.242.195', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.7.242.196', '194.7.242.199', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('194.7.242.200', '194.7.255.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.8.0.0', '194.8.0.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.8.1.0', '194.8.3.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('194.8.4.0', '194.8.4.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.8.5.0', '194.8.13.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('194.8.14.0', '194.8.14.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.8.15.0', '194.8.15.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.8.16.0', '194.8.27.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('194.8.28.0', '194.8.28.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.8.29.0', '194.8.29.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.8.30.0', '194.8.30.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('194.8.31.0', '194.8.31.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.8.32.0', '194.8.43.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('194.8.44.0', '194.8.44.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.8.45.0', '194.8.46.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.8.47.0', '194.8.47.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.8.48.0', '194.8.49.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.8.50.0', '194.8.50.255', 2147483647, 2147483647, 'FR', 'France'), +('194.8.51.0', '194.8.51.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.8.52.0', '194.8.52.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.8.53.0', '194.8.53.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('194.8.54.0', '194.8.54.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.8.55.0', '194.8.55.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.8.56.0', '194.8.56.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.8.57.0', '194.8.58.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.8.59.0', '194.8.59.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.8.60.0', '194.8.60.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('194.8.61.0', '194.8.61.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.8.62.0', '194.8.62.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.8.63.0', '194.8.63.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.8.64.0', '194.8.65.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.8.66.0', '194.8.67.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.8.68.0', '194.8.73.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.8.74.0', '194.8.75.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.8.76.0', '194.8.77.255', 2147483647, 2147483647, 'IL', 'Israel'), +('194.8.78.0', '194.8.79.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.8.80.0', '194.8.83.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.8.84.0', '194.8.85.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.8.86.0', '194.8.87.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.8.88.0', '194.8.89.255', 2147483647, 2147483647, 'IL', 'Israel'), +('194.8.90.0', '194.8.91.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.8.92.0', '194.8.93.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.8.94.0', '194.8.95.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('194.8.96.0', '194.8.127.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.8.128.0', '194.8.143.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.8.144.0', '194.8.151.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.8.152.0', '194.8.155.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.8.156.0', '194.8.159.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.8.160.0', '194.8.191.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.8.192.0', '194.8.223.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.8.224.0', '194.8.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.9.0.0', '194.9.1.255', 2147483647, 2147483647, 'CA', 'Canada'), +('194.9.2.0', '194.9.3.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.9.4.0', '194.9.5.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.9.6.0', '194.9.7.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('194.9.8.0', '194.9.9.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.9.10.0', '194.9.11.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.9.12.0', '194.9.13.255', 2147483647, 2147483647, 'MC', 'Monaco'), +('194.9.14.0', '194.9.15.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.9.16.0', '194.9.17.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.9.18.0', '194.9.19.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.9.20.0', '194.9.21.255', 2147483647, 2147483647, 'CY', 'Cyprus'), +('194.9.22.0', '194.9.23.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.9.24.0', '194.9.25.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.9.26.0', '194.9.27.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.9.28.0', '194.9.29.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.9.30.0', '194.9.31.255', 2147483647, 2147483647, 'KZ', 'Kazakstan'), +('194.9.32.0', '194.9.33.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.9.34.0', '194.9.35.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.9.36.0', '194.9.37.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.9.38.0', '194.9.39.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.9.40.0', '194.9.41.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.9.42.0', '194.9.43.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.9.44.0', '194.9.45.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.9.46.0', '194.9.47.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.9.48.0', '194.9.49.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.9.50.0', '194.9.51.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.9.52.0', '194.9.53.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.9.54.0', '194.9.55.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.9.56.0', '194.9.57.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.9.58.0', '194.9.59.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.9.60.0', '194.9.61.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.9.62.0', '194.9.63.255', 2147483647, 2147483647, 'FR', 'France'), +('194.9.64.0', '194.9.65.255', 2147483647, 2147483647, 'KE', 'Kenya'), +('194.9.66.0', '194.9.67.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.9.68.0', '194.9.71.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.9.72.0', '194.9.73.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.9.74.0', '194.9.75.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.9.76.0', '194.9.77.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.9.78.0', '194.9.79.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.9.80.0', '194.9.81.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.9.82.0', '194.9.83.255', 2147483647, 2147483647, 'KE', 'Kenya'), +('194.9.84.0', '194.9.85.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.9.86.0', '194.9.89.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.9.90.0', '194.9.93.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.9.94.0', '194.9.95.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.9.96.0', '194.9.116.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.9.117.0', '194.9.119.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.9.120.0', '194.9.123.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.9.124.0', '194.9.166.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.9.167.0', '194.9.167.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.9.168.0', '194.9.169.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.9.170.0', '194.9.171.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('194.9.172.0', '194.9.173.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.9.174.0', '194.9.174.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('194.9.175.0', '194.9.175.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('194.9.176.0', '194.9.179.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.9.180.0', '194.9.181.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.9.182.0', '194.9.183.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.9.184.0', '194.9.187.255', 2147483647, 2147483647, 'FR', 'France'), +('194.9.188.0', '194.9.191.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.9.192.0', '194.9.207.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.9.208.0', '194.9.219.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.9.220.0', '194.9.221.255', 2147483647, 2147483647, 'IT', 'Italy'), +('194.9.222.0', '194.9.222.255', 2147483647, 2147483647, 'FR', 'France'), +('194.9.223.0', '194.9.223.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.9.224.0', '194.9.239.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.9.240.0', '194.10.4.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.10.5.0', '194.10.5.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.10.6.0', '194.10.6.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.10.7.0', '194.10.7.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.10.8.0', '194.10.43.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.10.44.0', '194.10.44.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.10.45.0', '194.10.55.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.10.56.0', '194.10.57.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.10.58.0', '194.10.58.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.10.59.0', '194.10.59.255', 2147483647, 2147483647, 'FR', 'France'), +('194.10.60.0', '194.10.61.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.10.62.0', '194.10.67.255', 2147483647, 2147483647, 'FR', 'France'), +('194.10.68.0', '194.10.127.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.10.128.0', '194.10.129.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.10.130.0', '194.10.131.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.10.132.0', '194.10.133.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.10.134.0', '194.10.134.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.10.135.0', '194.10.135.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.10.136.0', '194.10.137.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.10.138.0', '194.10.138.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.10.139.0', '194.10.139.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('194.10.140.0', '194.10.141.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.10.142.0', '194.10.142.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.10.143.0', '194.10.143.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.10.144.0', '194.10.144.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.10.145.0', '194.10.145.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.10.146.0', '194.10.146.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.10.147.0', '194.10.147.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.10.148.0', '194.10.148.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.10.149.0', '194.10.149.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.10.150.0', '194.10.150.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.10.151.0', '194.10.151.255', 2147483647, 2147483647, 'NO', 'Norway'), +('194.10.152.0', '194.10.161.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.10.162.0', '194.10.162.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('194.10.163.0', '194.10.163.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.10.164.0', '194.10.164.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.10.165.0', '194.10.165.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.10.166.0', '194.10.167.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.10.168.0', '194.10.183.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.10.184.0', '194.10.184.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.10.185.0', '194.10.185.191', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.10.185.192', '194.10.185.207', 2147483647, 2147483647, 'FR', 'France'), +('194.10.185.208', '194.10.185.215', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.10.185.216', '194.10.185.223', 2147483647, 2147483647, 'FR', 'France'), +('194.10.185.224', '194.10.185.247', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.10.185.248', '194.10.185.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.10.186.0', '194.10.186.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.10.187.0', '194.10.191.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.10.192.0', '194.10.192.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.10.193.0', '194.10.193.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.10.194.0', '194.10.194.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.10.195.0', '194.10.195.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.10.196.0', '194.10.199.255', 2147483647, 2147483647, 'FR', 'France'), +('194.10.200.0', '194.10.200.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.10.201.0', '194.10.201.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.10.202.0', '194.10.203.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.10.204.0', '194.10.204.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.10.205.0', '194.10.205.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.10.206.0', '194.10.206.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.10.207.0', '194.10.207.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.10.208.0', '194.10.211.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.10.212.0', '194.10.213.95', 2147483647, 2147483647, 'DE', 'Germany'), +('194.10.213.96', '194.10.213.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.10.214.0', '194.10.215.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.10.216.0', '194.10.223.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.10.224.0', '194.10.239.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.10.240.0', '194.10.243.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.10.244.0', '194.10.244.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.10.245.0', '194.10.245.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.10.246.0', '194.10.246.255', 2147483647, 2147483647, 'FR', 'France'), +('194.10.247.0', '194.10.247.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.10.248.0', '194.10.255.255', 2147483647, 2147483647, 'FR', 'France'), +('194.11.0.0', '194.11.15.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.11.16.0', '194.11.16.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.11.17.0', '194.11.19.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.11.20.0', '194.11.21.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.11.22.0', '194.11.22.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.11.23.0', '194.11.23.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('194.11.24.0', '194.11.24.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.11.25.0', '194.11.25.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('194.11.26.0', '194.11.26.255', 2147483647, 2147483647, 'FR', 'France'), +('194.11.27.0', '194.11.27.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.11.28.0', '194.11.28.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.11.29.0', '194.11.29.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.11.30.0', '194.11.169.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.11.170.0', '194.11.170.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.11.171.0', '194.11.171.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.11.172.0', '194.11.199.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.11.200.0', '194.11.201.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.11.202.0', '194.11.223.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.11.224.0', '194.11.224.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.11.225.0', '194.11.246.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.11.247.0', '194.11.247.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.11.248.0', '194.11.252.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.11.253.0', '194.11.254.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.11.255.0', '194.11.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.12.0.0', '194.12.127.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.12.128.0', '194.12.191.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.12.192.0', '194.12.223.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.12.224.0', '194.12.255.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('194.13.0.0', '194.13.110.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.13.111.0', '194.13.111.255', 2147483647, 2147483647, 'GR', 'Greece'), +('194.13.112.0', '194.13.134.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.13.135.0', '194.13.135.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.13.136.0', '194.13.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.14.0.0', '194.14.187.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.14.188.0', '194.14.189.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.14.190.0', '194.14.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.15.0.0', '194.15.140.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.15.141.0', '194.15.141.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.15.142.0', '194.15.146.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.15.147.0', '194.15.147.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.15.148.0', '194.15.211.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.15.212.0', '194.15.212.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.15.213.0', '194.15.213.255', 2147483647, 2147483647, 'ES', 'Spain'), +('194.15.214.0', '194.15.227.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.15.228.0', '194.15.229.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.15.230.0', '194.15.230.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.15.231.0', '194.15.231.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.15.232.0', '194.15.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.16.0.0', '194.16.89.47', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.16.89.48', '194.16.89.51', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.16.89.52', '194.17.59.63', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.17.59.64', '194.17.59.71', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.17.59.72', '194.18.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.19.0.0', '194.19.127.255', 2147483647, 2147483647, 'NO', 'Norway'), +('194.19.128.0', '194.19.193.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.19.194.0', '194.19.194.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.19.195.0', '194.19.199.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.19.200.0', '194.19.201.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.19.202.0', '194.19.214.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.19.215.0', '194.19.215.255', 2147483647, 2147483647, 'US', 'United States'), +('194.19.216.0', '194.19.216.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.19.217.0', '194.19.217.127', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.19.217.128', '194.19.221.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.19.222.0', '194.19.222.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.19.223.0', '194.19.223.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.19.224.0', '194.19.255.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('194.20.0.0', '194.21.33.255', 2147483647, 2147483647, 'IT', 'Italy'), +('194.21.34.0', '194.21.35.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.21.36.0', '194.21.121.255', 2147483647, 2147483647, 'IT', 'Italy'), +('194.21.122.0', '194.21.122.255', 2147483647, 2147483647, 'SM', 'San Marino'), +('194.21.123.0', '194.21.255.255', 2147483647, 2147483647, 'IT', 'Italy'), +('194.22.0.0', '194.22.1.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.22.2.0', '194.22.2.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.22.3.0', '194.22.7.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.22.8.0', '194.22.16.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.22.17.0', '194.22.31.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.22.32.0', '194.22.47.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.22.48.0', '194.22.63.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.22.64.0', '194.22.95.255', 2147483647, 2147483647, 'NO', 'Norway'), +('194.22.96.0', '194.23.226.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.23.227.0', '194.23.227.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.23.228.0', '194.23.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.24.0.0', '194.24.127.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.24.128.0', '194.24.159.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.24.160.0', '194.24.161.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.24.162.0', '194.24.163.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.24.164.0', '194.24.165.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.24.166.0', '194.24.167.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.24.168.0', '194.24.169.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('194.24.170.0', '194.24.171.255', 2147483647, 2147483647, 'GR', 'Greece'), +('194.24.172.0', '194.24.173.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.24.174.0', '194.24.175.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.24.176.0', '194.24.179.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.24.180.0', '194.24.181.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.24.182.0', '194.24.187.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.24.188.0', '194.24.189.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.24.190.0', '194.24.191.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.24.192.0', '194.24.223.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.24.224.0', '194.24.225.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('194.24.226.0', '194.24.227.255', 2147483647, 2147483647, 'GR', 'Greece'), +('194.24.228.0', '194.24.229.255', 2147483647, 2147483647, 'FR', 'France'), +('194.24.230.0', '194.24.231.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.24.232.0', '194.24.233.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.24.234.0', '194.24.235.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.24.236.0', '194.24.237.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.24.238.0', '194.24.239.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.24.240.0', '194.24.241.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.24.242.0', '194.24.243.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.24.244.0', '194.24.245.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.24.246.0', '194.24.247.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.24.248.0', '194.24.249.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.24.250.0', '194.24.251.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.24.252.0', '194.24.253.255', 2147483647, 2147483647, 'NO', 'Norway'), +('194.24.254.0', '194.24.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.25.0.0', '194.25.35.239', 2147483647, 2147483647, 'DE', 'Germany'), +('194.25.35.240', '194.25.35.247', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.25.35.248', '194.25.99.79', 2147483647, 2147483647, 'DE', 'Germany'), +('194.25.99.80', '194.25.99.87', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.25.99.88', '194.25.111.135', 2147483647, 2147483647, 'DE', 'Germany'), +('194.25.111.136', '194.25.111.143', 2147483647, 2147483647, 'US', 'United States'), +('194.25.111.144', '194.25.118.63', 2147483647, 2147483647, 'DE', 'Germany'), +('194.25.118.64', '194.25.118.79', 2147483647, 2147483647, 'ES', 'Spain'), +('194.25.118.80', '194.25.119.167', 2147483647, 2147483647, 'DE', 'Germany'), +('194.25.119.168', '194.25.119.175', 2147483647, 2147483647, 'IT', 'Italy'), +('194.25.119.176', '194.25.131.223', 2147483647, 2147483647, 'DE', 'Germany'), +('194.25.131.224', '194.25.131.231', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.25.131.232', '194.25.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.26.0.0', '194.26.12.239', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.26.12.240', '194.26.12.247', 2147483647, 2147483647, 'FR', 'France'), +('194.26.12.248', '194.26.21.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.26.22.0', '194.26.23.255', 2147483647, 2147483647, 'GR', 'Greece'), +('194.26.24.0', '194.26.24.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.26.25.0', '194.26.25.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.26.26.0', '194.26.113.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.26.114.0', '194.26.114.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.26.115.0', '194.26.116.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.26.117.0', '194.26.117.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.26.118.0', '194.26.157.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.26.158.0', '194.26.159.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.26.160.0', '194.26.175.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.26.176.0', '194.26.183.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.26.184.0', '194.26.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.27.0.0', '194.27.255.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('194.29.0.0', '194.29.7.175', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.29.7.176', '194.29.7.191', 2147483647, 2147483647, 'IT', 'Italy'), +('194.29.7.192', '194.29.31.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.29.32.0', '194.29.47.255', 2147483647, 2147483647, 'IL', 'Israel'), +('194.29.48.0', '194.29.51.255', 2147483647, 2147483647, 'GR', 'Greece'), +('194.29.52.0', '194.29.55.255', 2147483647, 2147483647, 'IT', 'Italy'), +('194.29.56.0', '194.29.59.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.29.60.0', '194.29.63.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.29.64.0', '194.29.66.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.29.67.0', '194.29.67.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.29.68.0', '194.29.69.255', 2147483647, 2147483647, 'IT', 'Italy'), +('194.29.70.0', '194.29.70.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.29.71.0', '194.29.71.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.29.72.0', '194.29.72.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.29.73.0', '194.29.80.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.29.81.0', '194.29.81.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.29.82.0', '194.29.82.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.29.83.0', '194.29.96.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.29.97.0', '194.29.98.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.29.99.0', '194.29.99.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.29.100.0', '194.29.101.255', 2147483647, 2147483647, 'GR', 'Greece'), +('194.29.102.0', '194.29.113.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.29.114.0', '194.29.114.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.29.115.0', '194.29.115.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.29.116.0', '194.29.117.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.29.118.0', '194.29.119.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.29.120.0', '194.29.120.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.29.121.0', '194.29.127.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.29.128.0', '194.29.183.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.29.184.0', '194.29.187.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.29.188.0', '194.29.191.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.29.192.0', '194.29.199.255', 2147483647, 2147483647, 'FI', 'Finland'), +('194.29.200.0', '194.29.203.255', 2147483647, 2147483647, 'NO', 'Norway'), +('194.29.204.0', '194.29.204.255', 2147483647, 2147483647, 'IT', 'Italy'), +('194.29.205.0', '194.29.205.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.29.206.0', '194.29.206.255', 2147483647, 2147483647, 'FR', 'France'), +('194.29.207.0', '194.29.207.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.29.208.0', '194.29.215.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('194.29.216.0', '194.29.223.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.29.224.0', '194.29.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.30.0.0', '194.30.127.255', 2147483647, 2147483647, 'ES', 'Spain'), +('194.30.128.0', '194.30.159.255', 2147483647, 2147483647, 'CY', 'Cyprus'), +('194.30.160.0', '194.30.160.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.30.161.0', '194.30.161.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.30.162.0', '194.30.162.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.30.163.0', '194.30.163.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.30.164.0', '194.30.164.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.30.165.0', '194.30.165.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.30.166.0', '194.30.166.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.30.167.0', '194.30.167.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.30.168.0', '194.30.168.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.30.169.0', '194.30.169.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.30.170.0', '194.30.170.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.30.171.0', '194.30.171.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.30.172.0', '194.30.172.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.30.173.0', '194.30.174.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.30.175.0', '194.30.175.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.30.176.0', '194.30.176.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.30.177.0', '194.30.177.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.30.178.0', '194.30.178.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.30.179.0', '194.30.179.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.30.180.0', '194.30.180.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.30.181.0', '194.30.181.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.30.182.0', '194.30.182.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.30.183.0', '194.30.183.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.30.184.0', '194.30.184.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.30.185.0', '194.30.185.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.30.186.0', '194.30.186.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.30.187.0', '194.30.187.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('194.30.188.0', '194.30.188.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.30.189.0', '194.30.189.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.30.190.0', '194.30.190.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.30.191.0', '194.30.191.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.30.192.0', '194.30.255.255', 2147483647, 2147483647, 'GR', 'Greece'), +('194.31.0.0', '194.31.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.32.0.0', '194.32.149.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.32.150.0', '194.32.151.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.32.152.0', '194.33.11.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.33.12.0', '194.33.12.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.33.13.0', '194.33.13.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.33.14.0', '194.33.14.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.33.15.0', '194.33.15.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.33.16.0', '194.33.16.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.33.17.0', '194.33.19.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.33.20.0', '194.33.179.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.33.180.0', '194.33.181.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.33.182.0', '194.33.182.255', 2147483647, 2147483647, 'FR', 'France'), +('194.33.183.0', '194.33.183.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.33.184.0', '194.33.184.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('194.33.185.0', '194.33.185.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.33.186.0', '194.33.186.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.33.187.0', '194.33.187.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.33.188.0', '194.33.189.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.33.190.0', '194.33.190.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.33.191.0', '194.33.191.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.33.192.0', '194.34.11.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.34.12.0', '194.34.12.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('194.34.13.0', '194.34.197.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.34.198.0', '194.34.198.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.34.199.0', '194.35.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.36.0.0', '194.36.0.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.36.1.0', '194.36.21.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.36.22.0', '194.36.22.255', 2147483647, 2147483647, 'FR', 'France'), +('194.36.23.0', '194.36.159.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.36.160.0', '194.36.160.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('194.36.161.0', '194.36.161.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.36.162.0', '194.36.162.255', 2147483647, 2147483647, 'EE', 'Estonia'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('194.36.163.0', '194.36.163.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.36.164.0', '194.36.164.255', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('194.36.165.0', '194.36.165.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.36.166.0', '194.36.166.255', 2147483647, 2147483647, 'FR', 'France'), +('194.36.167.0', '194.36.167.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('194.36.168.0', '194.36.168.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.36.169.0', '194.36.223.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.36.224.0', '194.36.239.255', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('194.36.240.0', '194.36.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.37.0.0', '194.37.247.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.37.248.0', '194.37.248.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.37.249.0', '194.37.249.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.37.250.0', '194.37.251.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.37.252.0', '194.37.252.255', 2147483647, 2147483647, 'IT', 'Italy'), +('194.37.253.0', '194.37.254.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.37.255.0', '194.37.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.38.0.0', '194.38.63.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.38.64.0', '194.38.95.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.38.96.0', '194.38.127.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('194.38.128.0', '194.38.159.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('194.38.160.0', '194.38.162.159', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.38.162.160', '194.38.162.167', 2147483647, 2147483647, 'ES', 'Spain'), +('194.38.162.168', '194.38.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.39.0.0', '194.39.83.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.39.84.0', '194.39.84.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('194.39.85.0', '194.39.85.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('194.39.86.0', '194.39.140.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.39.141.0', '194.39.141.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.39.142.0', '194.39.143.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.39.144.0', '194.39.186.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.39.187.0', '194.39.187.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.39.188.0', '194.39.206.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.39.207.0', '194.39.207.255', 2147483647, 2147483647, 'FR', 'France'), +('194.39.208.0', '194.39.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.40.0.0', '194.40.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.41.0.0', '194.41.0.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.41.1.0', '194.41.1.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.41.2.0', '194.41.3.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.41.4.0', '194.41.7.255', 2147483647, 2147483647, 'IT', 'Italy'), +('194.41.8.0', '194.41.8.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.41.9.0', '194.41.9.255', 2147483647, 2147483647, 'IT', 'Italy'), +('194.41.10.0', '194.41.11.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.41.12.0', '194.41.15.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.41.16.0', '194.41.31.255', 2147483647, 2147483647, 'FI', 'Finland'), +('194.41.32.0', '194.41.32.255', 2147483647, 2147483647, 'ES', 'Spain'), +('194.41.33.0', '194.41.33.255', 2147483647, 2147483647, 'FI', 'Finland'), +('194.41.34.0', '194.41.35.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.41.36.0', '194.41.36.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.41.37.0', '194.41.39.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.41.40.0', '194.41.40.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.41.41.0', '194.41.42.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.41.43.0', '194.41.52.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.41.53.0', '194.41.54.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.41.55.0', '194.41.55.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.41.56.0', '194.41.56.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.41.57.0', '194.41.57.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.41.58.0', '194.41.58.255', 2147483647, 2147483647, 'FI', 'Finland'), +('194.41.59.0', '194.41.59.255', 2147483647, 2147483647, 'FR', 'France'), +('194.41.60.0', '194.41.61.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.41.62.0', '194.41.62.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.41.63.0', '194.41.95.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.41.96.0', '194.41.111.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.41.112.0', '194.41.120.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.41.121.0', '194.41.127.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.41.128.0', '194.41.228.247', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.41.228.248', '194.41.228.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.41.229.0', '194.41.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.42.0.0', '194.42.39.255', 2147483647, 2147483647, 'CY', 'Cyprus'), +('194.42.40.0', '194.42.40.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.42.41.0', '194.42.42.255', 2147483647, 2147483647, 'IT', 'Italy'), +('194.42.43.0', '194.42.43.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('194.42.44.0', '194.42.45.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.42.46.0', '194.42.46.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.42.47.0', '194.42.47.127', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.42.47.128', '194.42.47.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.42.48.0', '194.42.49.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.42.50.0', '194.42.54.255', 2147483647, 2147483647, 'GR', 'Greece'), +('194.42.55.0', '194.42.55.31', 2147483647, 2147483647, 'DE', 'Germany'), +('194.42.55.32', '194.42.55.127', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.42.55.128', '194.42.55.159', 2147483647, 2147483647, 'ES', 'Spain'), +('194.42.55.160', '194.42.55.191', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.42.55.192', '194.42.55.223', 2147483647, 2147483647, 'DE', 'Germany'), +('194.42.55.224', '194.42.55.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.42.56.0', '194.42.63.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('194.42.64.0', '194.42.95.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.42.96.0', '194.42.97.255', 2147483647, 2147483647, 'MW', 'Malawi'), +('194.42.98.0', '194.42.99.255', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('194.42.100.0', '194.42.105.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.42.106.0', '194.42.107.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.42.108.0', '194.42.109.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.42.110.0', '194.42.111.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.42.112.0', '194.42.113.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.42.114.0', '194.42.115.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.42.116.0', '194.42.121.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.42.122.0', '194.42.123.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.42.124.0', '194.42.125.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.42.126.0', '194.42.127.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.42.128.0', '194.42.147.255', 2147483647, 2147483647, 'CY', 'Cyprus'), +('194.42.148.0', '194.42.148.3', 2147483647, 2147483647, 'GR', 'Greece'), +('194.42.148.4', '194.42.148.7', 2147483647, 2147483647, 'CY', 'Cyprus'), +('194.42.148.8', '194.42.148.23', 2147483647, 2147483647, 'GR', 'Greece'), +('194.42.148.24', '194.42.148.63', 2147483647, 2147483647, 'CY', 'Cyprus'), +('194.42.148.64', '194.42.148.127', 2147483647, 2147483647, 'GR', 'Greece'), +('194.42.148.128', '194.42.148.191', 2147483647, 2147483647, 'CY', 'Cyprus'), +('194.42.148.192', '194.42.148.223', 2147483647, 2147483647, 'GR', 'Greece'), +('194.42.148.224', '194.42.159.255', 2147483647, 2147483647, 'CY', 'Cyprus'), +('194.42.160.0', '194.42.162.127', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.42.162.128', '194.42.162.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.42.163.0', '194.42.163.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.42.164.0', '194.42.164.255', 2147483647, 2147483647, 'IT', 'Italy'), +('194.42.165.0', '194.42.170.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.42.171.0', '194.42.175.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.42.176.0', '194.42.191.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.42.192.0', '194.42.207.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.42.208.0', '194.42.209.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.42.210.0', '194.42.211.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.42.212.0', '194.42.212.255', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('194.42.213.0', '194.42.214.255', 2147483647, 2147483647, 'ES', 'Spain'), +('194.42.215.0', '194.42.215.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.42.216.0', '194.42.216.255', 2147483647, 2147483647, 'US', 'United States'), +('194.42.217.0', '194.42.217.255', 2147483647, 2147483647, 'FR', 'France'), +('194.42.218.0', '194.42.219.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.42.220.0', '194.42.223.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.42.224.0', '194.43.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.44.0.0', '194.44.255.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.45.0.0', '194.45.7.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.8.0', '194.45.9.71', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.9.72', '194.45.9.79', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.9.80', '194.45.9.87', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.9.88', '194.45.9.95', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.9.96', '194.45.9.215', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.9.216', '194.45.9.223', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.9.224', '194.45.11.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.12.0', '194.45.13.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.14.0', '194.45.14.71', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.14.72', '194.45.14.79', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.14.80', '194.45.14.207', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.14.208', '194.45.14.215', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.14.216', '194.45.15.55', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.15.56', '194.45.15.63', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.15.64', '194.45.15.71', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.15.72', '194.45.15.79', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.15.80', '194.45.17.79', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.17.80', '194.45.17.87', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.17.88', '194.45.19.23', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.19.24', '194.45.19.31', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.19.32', '194.45.19.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.20.0', '194.45.27.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.28.0', '194.45.30.167', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.30.168', '194.45.30.175', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.30.176', '194.45.31.39', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.31.40', '194.45.31.47', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.31.48', '194.45.32.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.33.0', '194.45.56.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.57.0', '194.45.57.87', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.57.88', '194.45.57.95', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.57.96', '194.45.57.231', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.57.232', '194.45.57.239', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.57.240', '194.45.58.87', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.58.88', '194.45.58.95', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.58.96', '194.45.58.199', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.58.200', '194.45.58.207', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.58.208', '194.45.58.215', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.58.216', '194.45.58.223', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.58.224', '194.45.59.31', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.59.32', '194.45.59.39', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.59.40', '194.45.59.55', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.59.56', '194.45.59.63', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.59.64', '194.45.59.71', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.59.72', '194.45.59.79', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.59.80', '194.45.59.103', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.59.104', '194.45.59.111', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.59.112', '194.45.59.183', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.59.184', '194.45.59.191', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.59.192', '194.45.60.31', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.60.32', '194.45.60.39', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.60.40', '194.45.60.103', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.60.104', '194.45.60.111', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.60.112', '194.45.61.23', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.61.24', '194.45.61.31', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.61.32', '194.45.61.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.62.0', '194.45.62.7', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.62.8', '194.45.62.87', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.62.88', '194.45.62.95', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.62.96', '194.45.62.183', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.62.184', '194.45.62.191', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.62.192', '194.45.63.15', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.63.16', '194.45.63.23', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.63.24', '194.45.63.71', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.63.72', '194.45.63.79', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.63.80', '194.45.63.119', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.63.120', '194.45.63.127', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.63.128', '194.45.63.135', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.63.136', '194.45.63.143', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.63.144', '194.45.63.175', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.63.176', '194.45.63.183', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.63.184', '194.45.64.39', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.64.40', '194.45.64.55', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.64.56', '194.45.64.71', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.64.72', '194.45.64.79', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.64.80', '194.45.64.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.64.128', '194.45.64.143', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.64.144', '194.45.64.247', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.64.248', '194.45.64.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.65.0', '194.45.65.95', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.65.96', '194.45.65.103', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.65.104', '194.45.65.175', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.65.176', '194.45.65.183', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.65.184', '194.45.66.183', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.66.184', '194.45.66.191', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.66.192', '194.45.68.215', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.68.216', '194.45.68.223', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.68.224', '194.45.68.239', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.68.240', '194.45.68.247', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.68.248', '194.45.69.231', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.69.232', '194.45.69.239', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.69.240', '194.45.69.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.70.0', '194.45.71.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.72.0', '194.45.74.103', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.74.104', '194.45.74.111', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.74.112', '194.45.75.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.76.0', '194.45.79.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.80.0', '194.45.80.239', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.80.240', '194.45.80.247', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.80.248', '194.45.81.183', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.81.184', '194.45.81.191', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.81.192', '194.45.81.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.82.0', '194.45.82.7', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.82.8', '194.45.82.135', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.82.136', '194.45.82.143', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.82.144', '194.45.83.87', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.83.88', '194.45.83.95', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.83.96', '194.45.84.87', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.84.88', '194.45.84.95', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.84.96', '194.45.84.103', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.84.104', '194.45.84.111', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.84.112', '194.45.84.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.84.128', '194.45.84.135', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.84.136', '194.45.84.143', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.84.144', '194.45.84.151', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.84.152', '194.45.84.207', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.84.208', '194.45.84.215', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.84.216', '194.45.85.143', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.85.144', '194.45.85.151', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.85.152', '194.45.86.159', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.86.160', '194.45.86.167', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.86.168', '194.45.86.207', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.86.208', '194.45.86.223', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.86.224', '194.45.87.55', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.87.56', '194.45.87.63', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.87.64', '194.45.88.87', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.88.88', '194.45.88.95', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.88.96', '194.45.88.159', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.88.160', '194.45.88.167', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.88.168', '194.45.89.15', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.89.16', '194.45.89.23', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.89.24', '194.45.89.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.89.64', '194.45.89.79', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.89.80', '194.45.89.95', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.89.96', '194.45.89.103', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.89.104', '194.45.89.167', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.89.168', '194.45.89.175', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.89.176', '194.45.90.39', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.90.40', '194.45.90.47', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.90.48', '194.45.90.103', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.90.104', '194.45.90.119', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.90.120', '194.45.91.79', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.91.80', '194.45.91.87', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.91.88', '194.45.91.175', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.91.176', '194.45.91.183', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.91.184', '194.45.91.207', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.91.208', '194.45.91.215', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.91.216', '194.45.92.7', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.92.8', '194.45.92.15', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.92.16', '194.45.92.47', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.92.48', '194.45.92.55', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.92.56', '194.45.92.207', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.92.208', '194.45.92.215', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.92.216', '194.45.92.223', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.92.224', '194.45.92.231', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.92.232', '194.45.93.95', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.93.96', '194.45.93.103', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.93.104', '194.45.93.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.94.0', '194.45.107.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.108.0', '194.45.108.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.108.64', '194.45.108.71', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.108.72', '194.45.108.215', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.108.216', '194.45.108.223', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.108.224', '194.45.108.247', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.108.248', '194.45.108.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.109.0', '194.45.109.79', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.109.80', '194.45.109.87', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.109.88', '194.45.110.191', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.110.192', '194.45.110.199', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.110.200', '194.45.110.231', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.110.232', '194.45.110.239', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.110.240', '194.45.112.47', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.112.48', '194.45.112.55', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.112.56', '194.45.112.103', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.112.104', '194.45.112.111', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.112.112', '194.45.112.119', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.112.120', '194.45.112.135', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.112.136', '194.45.112.231', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.112.232', '194.45.112.239', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.112.240', '194.45.114.31', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.114.32', '194.45.114.39', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.114.40', '194.45.114.167', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.114.168', '194.45.114.175', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.114.176', '194.45.114.215', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.114.216', '194.45.114.223', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.114.224', '194.45.115.47', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.115.48', '194.45.115.55', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.115.56', '194.45.115.103', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.115.104', '194.45.115.111', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.115.112', '194.45.115.159', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.115.160', '194.45.115.167', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.115.168', '194.45.116.135', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.116.136', '194.45.116.143', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.116.144', '194.45.117.111', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.117.112', '194.45.117.119', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.117.120', '194.45.117.167', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.117.168', '194.45.117.175', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.117.176', '194.45.117.183', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.117.184', '194.45.117.191', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.117.192', '194.45.118.23', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.118.24', '194.45.118.31', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.118.32', '194.45.118.183', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.118.184', '194.45.118.191', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.118.192', '194.45.119.159', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.119.160', '194.45.119.175', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.119.176', '194.45.119.247', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.119.248', '194.45.119.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.120.0', '194.45.120.103', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.120.104', '194.45.120.111', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.120.112', '194.45.120.143', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.120.144', '194.45.120.159', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.120.160', '194.45.120.231', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.120.232', '194.45.120.239', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.120.240', '194.45.122.47', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.122.48', '194.45.122.55', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.122.56', '194.45.122.103', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.122.104', '194.45.122.111', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.122.112', '194.45.122.239', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.122.240', '194.45.122.247', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.122.248', '194.45.123.143', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.123.144', '194.45.123.151', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.123.152', '194.45.124.23', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.124.24', '194.45.124.31', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.124.32', '194.45.124.95', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.124.96', '194.45.124.103', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.124.104', '194.45.124.159', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.124.160', '194.45.124.167', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.124.168', '194.45.124.191', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.124.192', '194.45.124.199', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.124.200', '194.45.125.39', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.125.40', '194.45.125.47', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.125.48', '194.45.125.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.125.128', '194.45.125.135', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.125.136', '194.45.125.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.126.0', '194.45.127.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.128.0', '194.45.128.111', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.128.112', '194.45.128.119', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.128.120', '194.45.130.103', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.130.104', '194.45.130.111', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.130.112', '194.45.131.239', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.131.240', '194.45.131.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.132.0', '194.45.132.95', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.132.96', '194.45.132.103', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.132.104', '194.45.133.79', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.133.80', '194.45.133.87', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.133.88', '194.45.133.175', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.133.176', '194.45.133.183', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.133.184', '194.45.133.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.134.0', '194.45.135.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.136.0', '194.45.138.135', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.138.136', '194.45.138.159', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.138.160', '194.45.141.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.142.0', '194.45.155.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.156.0', '194.45.156.111', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.156.112', '194.45.156.119', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.156.120', '194.45.156.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.157.0', '194.45.157.7', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.157.8', '194.45.158.95', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.158.96', '194.45.158.103', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.158.104', '194.45.160.55', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.160.56', '194.45.160.63', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.160.64', '194.45.160.87', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.160.88', '194.45.160.95', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.160.96', '194.45.160.111', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.160.112', '194.45.160.119', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.160.120', '194.45.160.167', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.160.168', '194.45.160.175', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.160.176', '194.45.161.55', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.161.56', '194.45.161.63', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.161.64', '194.45.161.215', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.161.216', '194.45.161.223', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.161.224', '194.45.162.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.162.128', '194.45.162.135', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.162.136', '194.45.163.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.164.0', '194.45.169.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.170.0', '194.45.170.87', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.170.88', '194.45.170.95', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.170.96', '194.45.171.47', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.171.48', '194.45.171.55', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.171.56', '194.45.171.191', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.171.192', '194.45.171.199', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.171.200', '194.45.172.143', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.172.144', '194.45.172.167', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.172.168', '194.45.173.79', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.173.80', '194.45.173.87', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.173.88', '194.45.173.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.173.128', '194.45.173.135', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.173.136', '194.45.174.231', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.174.232', '194.45.174.239', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.174.240', '194.45.175.7', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.175.8', '194.45.175.15', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.175.16', '194.45.175.23', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.175.24', '194.45.175.31', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.175.32', '194.45.175.79', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.175.80', '194.45.175.87', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.175.88', '194.45.175.231', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.175.232', '194.45.175.239', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.175.240', '194.45.176.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.177.0', '194.45.177.7', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.177.8', '194.45.177.39', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.177.40', '194.45.177.47', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.177.48', '194.45.179.143', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.179.144', '194.45.179.151', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.179.152', '194.45.179.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.180.0', '194.45.185.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.186.0', '194.45.187.151', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.187.152', '194.45.187.159', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.187.160', '194.45.187.215', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.187.216', '194.45.187.223', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.187.224', '194.45.188.183', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.188.184', '194.45.188.191', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.188.192', '194.45.189.79', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.189.80', '194.45.189.87', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.189.88', '194.45.189.143', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.189.144', '194.45.189.151', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.189.152', '194.45.190.135', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.190.136', '194.45.190.143', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.190.144', '194.45.191.71', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.191.72', '194.45.191.79', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.191.80', '194.45.191.239', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.191.240', '194.45.191.247', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.191.248', '194.45.193.7', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.193.8', '194.45.193.15', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.193.16', '194.45.193.47', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.193.48', '194.45.193.55', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.193.56', '194.45.193.231', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.193.232', '194.45.193.239', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.193.240', '194.45.194.207', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.194.208', '194.45.194.215', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.194.216', '194.45.195.135', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.195.136', '194.45.195.143', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.195.144', '194.45.195.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.196.0', '194.45.201.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.202.0', '194.45.202.39', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.202.40', '194.45.202.47', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.202.48', '194.45.202.231', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.202.232', '194.45.202.239', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.202.240', '194.45.203.119', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.203.120', '194.45.203.127', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.203.128', '194.45.203.143', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.203.144', '194.45.203.151', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.203.152', '194.45.204.31', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.204.32', '194.45.204.39', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.204.40', '194.45.205.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.205.64', '194.45.205.71', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.205.72', '194.45.205.135', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.205.136', '194.45.205.143', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.205.144', '194.45.206.135', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.206.136', '194.45.206.143', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.206.144', '194.45.206.215', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.206.216', '194.45.206.231', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.206.232', '194.45.207.15', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.207.16', '194.45.207.23', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.207.24', '194.45.207.87', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.207.88', '194.45.207.95', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.207.96', '194.45.207.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.208.0', '194.45.217.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.218.0', '194.45.219.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.219.64', '194.45.219.71', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.219.72', '194.45.220.31', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.220.32', '194.45.220.39', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.220.40', '194.45.220.71', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.220.72', '194.45.220.87', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.220.88', '194.45.221.79', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.221.80', '194.45.221.95', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.221.96', '194.45.221.119', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.221.120', '194.45.221.127', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.221.128', '194.45.222.223', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.222.224', '194.45.222.231', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.222.232', '194.45.223.159', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.223.160', '194.45.223.167', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.223.168', '194.45.224.15', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.224.16', '194.45.224.23', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.224.24', '194.45.224.47', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.224.48', '194.45.224.55', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.224.56', '194.45.224.191', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.224.192', '194.45.224.199', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.224.200', '194.45.224.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.225.0', '194.45.225.7', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.225.8', '194.45.225.183', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.225.184', '194.45.225.191', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.225.192', '194.45.225.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.226.0', '194.45.227.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.228.0', '194.45.228.111', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.228.112', '194.45.228.119', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.228.120', '194.45.230.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.230.64', '194.45.230.71', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.230.72', '194.45.230.103', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.230.104', '194.45.230.111', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.230.112', '194.45.230.215', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.230.216', '194.45.230.223', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.230.224', '194.45.231.15', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.231.16', '194.45.231.23', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.231.24', '194.45.231.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.232.0', '194.45.237.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.238.0', '194.45.238.47', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.238.48', '194.45.238.55', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.238.56', '194.45.238.207', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.238.208', '194.45.238.215', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.238.216', '194.45.238.239', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.238.240', '194.45.238.247', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.238.248', '194.45.239.47', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.239.48', '194.45.239.55', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.239.56', '194.45.239.111', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.239.112', '194.45.239.119', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.239.120', '194.45.239.191', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.239.192', '194.45.239.199', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.239.200', '194.45.240.15', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.240.16', '194.45.240.23', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.240.24', '194.45.240.159', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.240.160', '194.45.240.167', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.240.168', '194.45.241.183', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.241.184', '194.45.241.191', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.241.192', '194.45.241.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.242.0', '194.45.242.7', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.242.8', '194.45.242.39', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.242.40', '194.45.242.47', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.242.48', '194.45.242.175', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.242.176', '194.45.242.183', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.242.184', '194.45.243.39', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.243.40', '194.45.243.47', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.243.48', '194.45.243.95', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.243.96', '194.45.243.103', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.243.104', '194.45.243.135', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.243.136', '194.45.243.143', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.243.144', '194.45.244.15', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.244.16', '194.45.244.23', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.244.24', '194.45.244.135', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.244.136', '194.45.244.143', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.244.144', '194.45.244.215', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.244.216', '194.45.244.223', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.244.224', '194.45.244.239', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.244.240', '194.45.244.247', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.244.248', '194.45.245.119', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.245.120', '194.45.245.127', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.245.128', '194.45.245.135', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.245.136', '194.45.245.143', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.245.144', '194.45.245.151', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.245.152', '194.45.245.159', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.245.160', '194.45.246.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.246.128', '194.45.246.135', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.246.136', '194.45.246.143', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.246.144', '194.45.246.151', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.246.152', '194.45.246.207', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.246.208', '194.45.246.215', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.246.216', '194.45.248.95', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.248.96', '194.45.248.103', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.248.104', '194.45.249.15', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.249.16', '194.45.249.23', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.249.24', '194.45.250.143', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.250.144', '194.45.250.151', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.250.152', '194.45.251.239', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.251.240', '194.45.251.247', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.251.248', '194.45.253.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.253.128', '194.45.253.135', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.253.136', '194.45.253.159', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.253.160', '194.45.253.167', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.253.168', '194.45.255.47', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.255.48', '194.45.255.55', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.255.56', '194.45.255.207', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.45.255.208', '194.45.255.215', 2147483647, 2147483647, 'DE', 'Germany'), +('194.45.255.216', '194.45.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.46.0.0', '194.46.127.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.46.128.0', '194.46.129.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('194.46.130.0', '194.46.135.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.46.136.0', '194.46.139.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('194.46.140.0', '194.46.159.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.46.160.0', '194.46.193.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('194.46.194.0', '194.46.223.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.46.224.0', '194.46.255.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('194.47.0.0', '194.47.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.48.0.0', '194.48.0.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.48.1.0', '194.48.1.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.48.2.0', '194.48.174.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.48.175.0', '194.48.175.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.48.176.0', '194.48.203.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.48.204.0', '194.48.204.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.48.205.0', '194.48.205.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.48.206.0', '194.48.206.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('194.48.207.0', '194.48.207.255', 2147483647, 2147483647, 'ES', 'Spain'), +('194.48.208.0', '194.48.208.255', 2147483647, 2147483647, 'FR', 'France'), +('194.48.209.0', '194.48.210.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.48.211.0', '194.48.211.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.48.212.0', '194.48.212.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.48.213.0', '194.48.213.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.48.214.0', '194.48.214.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.48.215.0', '194.48.215.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.48.216.0', '194.48.216.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.48.217.0', '194.48.217.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.48.218.0', '194.48.218.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.48.219.0', '194.48.219.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.48.220.0', '194.48.240.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.48.241.0', '194.48.241.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('194.48.242.0', '194.48.255.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.49.0.0', '194.49.49.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.49.50.0', '194.49.51.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.49.52.0', '194.49.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.50.0.0', '194.50.0.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.50.1.0', '194.50.5.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('194.50.6.0', '194.50.6.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.50.7.0', '194.50.8.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.50.9.0', '194.50.9.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.50.10.0', '194.50.10.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.50.11.0', '194.50.11.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.50.12.0', '194.50.27.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('194.50.28.0', '194.50.28.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.50.29.0', '194.50.29.255', 2147483647, 2147483647, 'FR', 'France'), +('194.50.30.0', '194.50.32.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.50.33.0', '194.50.33.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.50.34.0', '194.50.34.255', 2147483647, 2147483647, 'LI', 'Liechtenstein'), +('194.50.35.0', '194.50.35.255', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('194.50.36.0', '194.50.36.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.50.37.0', '194.50.37.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.50.38.0', '194.50.39.255', 2147483647, 2147483647, 'FR', 'France'), +('194.50.40.0', '194.50.40.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.50.41.0', '194.50.41.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.50.42.0', '194.50.43.255', 2147483647, 2147483647, 'GR', 'Greece'), +('194.50.44.0', '194.50.44.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.50.45.0', '194.50.45.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.50.46.0', '194.50.46.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.50.47.0', '194.50.47.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.50.48.0', '194.50.48.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.50.49.0', '194.50.49.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.50.50.0', '194.50.50.255', 2147483647, 2147483647, 'RO', 'Romania'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('194.50.51.0', '194.50.51.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.50.52.0', '194.50.52.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.50.53.0', '194.50.53.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.50.54.0', '194.50.56.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.50.57.0', '194.50.57.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.50.58.0', '194.50.58.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.50.59.0', '194.50.59.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.50.60.0', '194.50.60.255', 2147483647, 2147483647, 'FR', 'France'), +('194.50.61.0', '194.50.61.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.50.62.0', '194.50.62.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.50.63.0', '194.50.63.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.50.64.0', '194.50.67.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('194.50.68.0', '194.50.70.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.50.71.0', '194.50.71.255', 2147483647, 2147483647, 'IL', 'Israel'), +('194.50.72.0', '194.50.72.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.50.73.0', '194.50.73.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('194.50.74.0', '194.50.74.255', 2147483647, 2147483647, 'FR', 'France'), +('194.50.75.0', '194.50.75.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.50.76.0', '194.50.76.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('194.50.77.0', '194.50.78.255', 2147483647, 2147483647, 'FR', 'France'), +('194.50.79.0', '194.50.79.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.50.80.0', '194.50.80.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.50.81.0', '194.50.81.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.50.82.0', '194.50.82.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.50.83.0', '194.50.83.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.50.84.0', '194.50.84.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('194.50.85.0', '194.50.85.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.50.86.0', '194.50.86.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.50.87.0', '194.50.87.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.50.88.0', '194.50.88.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.50.89.0', '194.50.89.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.50.90.0', '194.50.90.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.50.91.0', '194.50.91.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.50.92.0', '194.50.92.255', 2147483647, 2147483647, 'FR', 'France'), +('194.50.93.0', '194.50.93.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.50.94.0', '194.50.94.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.50.95.0', '194.50.95.255', 2147483647, 2147483647, 'FR', 'France'), +('194.50.96.0', '194.50.96.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.50.97.0', '194.50.97.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.50.98.0', '194.50.98.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.50.99.0', '194.50.99.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.50.100.0', '194.50.100.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('194.50.101.0', '194.50.101.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('194.50.102.0', '194.50.102.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.50.103.0', '194.50.104.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.50.105.0', '194.50.105.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('194.50.106.0', '194.50.107.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.50.108.0', '194.50.108.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.50.109.0', '194.50.109.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.50.110.0', '194.50.110.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.50.111.0', '194.50.111.255', 2147483647, 2147483647, 'LT', 'Lithuania'), +('194.50.112.0', '194.50.112.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.50.113.0', '194.50.113.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.50.114.0', '194.50.114.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.50.115.0', '194.50.115.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.50.116.0', '194.50.116.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.50.117.0', '194.50.118.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.50.119.0', '194.50.119.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.50.120.0', '194.50.120.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.50.121.0', '194.50.121.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.50.122.0', '194.50.122.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('194.50.123.0', '194.50.123.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.50.124.0', '194.50.124.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.50.125.0', '194.50.125.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.50.126.0', '194.50.126.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.50.127.0', '194.50.127.255', 2147483647, 2147483647, 'FR', 'France'), +('194.50.128.0', '194.50.159.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('194.50.160.0', '194.50.160.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.50.161.0', '194.50.161.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.50.162.0', '194.50.162.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.50.163.0', '194.50.163.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.50.164.0', '194.50.164.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.50.165.0', '194.50.165.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.50.166.0', '194.50.166.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('194.50.167.0', '194.50.167.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.50.168.0', '194.50.168.255', 2147483647, 2147483647, 'FI', 'Finland'), +('194.50.169.0', '194.50.169.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.50.170.0', '194.50.170.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.50.171.0', '194.50.171.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.50.172.0', '194.50.172.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.50.173.0', '194.50.173.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.50.174.0', '194.50.174.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.50.175.0', '194.50.175.255', 2147483647, 2147483647, 'IL', 'Israel'), +('194.50.176.0', '194.50.176.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.50.177.0', '194.50.177.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.50.178.0', '194.50.178.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.50.179.0', '194.50.179.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('194.50.180.0', '194.50.180.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.50.181.0', '194.50.181.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.50.182.0', '194.50.182.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.50.183.0', '194.50.183.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.50.184.0', '194.50.184.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.50.185.0', '194.50.185.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.50.186.0', '194.50.186.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.50.187.0', '194.50.187.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.50.188.0', '194.50.190.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('194.50.191.0', '194.50.191.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.50.192.0', '194.50.207.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('194.50.208.0', '194.50.208.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.50.209.0', '194.50.213.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('194.50.214.0', '194.50.214.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.50.215.0', '194.50.251.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('194.50.252.0', '194.50.252.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.50.253.0', '194.50.253.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.50.254.0', '194.50.254.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.50.255.0', '194.50.255.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.51.0.0', '194.51.25.255', 2147483647, 2147483647, 'FR', 'France'), +('194.51.26.0', '194.51.26.255', 2147483647, 2147483647, 'MC', 'Monaco'), +('194.51.27.0', '194.51.162.255', 2147483647, 2147483647, 'FR', 'France'), +('194.51.163.0', '194.51.163.255', 2147483647, 2147483647, 'BJ', 'Benin'), +('194.51.164.0', '194.51.176.255', 2147483647, 2147483647, 'FR', 'France'), +('194.51.177.0', '194.51.177.255', 2147483647, 2147483647, 'ES', 'Spain'), +('194.51.178.0', '194.51.255.255', 2147483647, 2147483647, 'FR', 'France'), +('194.52.0.0', '194.52.170.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.52.171.0', '194.52.175.255', 2147483647, 2147483647, 'NO', 'Norway'), +('194.52.176.0', '194.52.244.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.52.245.0', '194.52.245.255', 2147483647, 2147483647, 'NO', 'Norway'), +('194.52.246.0', '194.52.246.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.52.247.0', '194.52.249.255', 2147483647, 2147483647, 'NO', 'Norway'), +('194.52.250.0', '194.52.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.53.0.0', '194.53.75.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.53.76.0', '194.53.79.255', 2147483647, 2147483647, 'FR', 'France'), +('194.53.80.0', '194.53.171.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.53.172.0', '194.53.172.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.53.173.0', '194.53.174.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.53.175.0', '194.53.175.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.53.176.0', '194.53.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.54.0.0', '194.54.7.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.54.8.0', '194.54.11.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.54.12.0', '194.54.15.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.54.16.0', '194.54.27.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.54.28.0', '194.54.31.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.54.32.0', '194.54.63.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('194.54.64.0', '194.54.67.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.54.68.0', '194.54.71.255', 2147483647, 2147483647, 'NO', 'Norway'), +('194.54.72.0', '194.54.75.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.54.76.0', '194.54.83.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.54.84.0', '194.54.87.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.54.88.0', '194.54.91.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.54.92.0', '194.54.95.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.54.96.0', '194.54.127.255', 2147483647, 2147483647, 'NO', 'Norway'), +('194.54.128.0', '194.54.131.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.54.132.0', '194.54.135.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.54.136.0', '194.54.139.255', 2147483647, 2147483647, 'NO', 'Norway'), +('194.54.140.0', '194.54.143.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('194.54.144.0', '194.54.147.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.54.148.0', '194.54.151.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.54.152.0', '194.54.159.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.54.160.0', '194.54.163.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.54.164.0', '194.54.167.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.54.168.0', '194.54.171.255', 2147483647, 2147483647, 'IL', 'Israel'), +('194.54.172.0', '194.54.175.255', 2147483647, 2147483647, 'IM', 'Isle of Man'), +('194.54.176.0', '194.54.179.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.54.180.0', '194.54.183.255', 2147483647, 2147483647, 'RS', 'Serbia'), +('194.54.184.0', '194.54.187.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.54.188.0', '194.54.191.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.54.192.0', '194.54.255.255', 2147483647, 2147483647, 'KW', 'Kuwait'), +('194.55.0.0', '194.55.168.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.55.169.0', '194.55.169.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.55.170.0', '194.55.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.56.0.0', '194.56.206.26', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.56.206.27', '194.56.206.27', 2147483647, 2147483647, 'FR', 'France'), +('194.56.206.28', '194.56.210.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.56.211.0', '194.56.211.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.56.212.0', '194.56.213.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.56.214.0', '194.56.214.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.56.215.0', '194.56.215.255', 2147483647, 2147483647, 'IL', 'Israel'), +('194.56.216.0', '194.56.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.57.0.0', '194.57.255.255', 2147483647, 2147483647, 'FR', 'France'), +('194.58.0.0', '194.58.81.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.58.82.0', '194.58.83.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.58.84.0', '194.58.174.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.58.175.0', '194.58.175.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.58.176.0', '194.58.255.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.59.0.0', '194.59.175.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.59.176.0', '194.59.176.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.59.177.0', '194.59.178.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.59.179.0', '194.59.179.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.59.180.0', '194.59.180.255', 2147483647, 2147483647, 'FR', 'France'), +('194.59.181.0', '194.59.181.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.59.182.0', '194.59.182.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('194.59.183.0', '194.59.183.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.59.184.0', '194.59.184.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.59.185.0', '194.59.185.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('194.59.186.0', '194.59.186.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.59.187.0', '194.59.187.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.59.188.0', '194.59.188.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.59.189.0', '194.59.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.60.0.0', '194.60.63.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.60.64.0', '194.60.67.255', 2147483647, 2147483647, 'FR', 'France'), +('194.60.68.0', '194.60.68.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.60.69.0', '194.60.69.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.60.70.0', '194.60.70.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.60.71.0', '194.60.71.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.60.72.0', '194.60.72.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.60.73.0', '194.60.73.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('194.60.74.0', '194.60.74.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('194.60.75.0', '194.60.75.255', 2147483647, 2147483647, 'NO', 'Norway'), +('194.60.76.0', '194.60.76.255', 2147483647, 2147483647, 'ES', 'Spain'), +('194.60.77.0', '194.60.77.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.60.78.0', '194.60.78.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.60.79.0', '194.60.79.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.60.80.0', '194.60.80.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.60.81.0', '194.60.81.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.60.82.0', '194.60.82.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.60.83.0', '194.60.135.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.60.136.0', '194.60.143.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.60.144.0', '194.60.203.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.60.204.0', '194.60.204.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.60.205.0', '194.60.205.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.60.206.0', '194.60.206.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.60.207.0', '194.60.207.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.60.208.0', '194.60.216.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.60.217.0', '194.60.217.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.60.218.0', '194.61.95.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.61.96.0', '194.61.111.255', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('194.61.112.0', '194.61.157.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.61.158.0', '194.61.158.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.61.159.0', '194.61.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.62.0.0', '194.62.0.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.62.1.0', '194.62.21.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.62.22.0', '194.62.22.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.62.23.0', '194.62.23.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.62.24.0', '194.62.232.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.62.233.0', '194.62.233.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.62.234.0', '194.62.234.255', 2147483647, 2147483647, 'FR', 'France'), +('194.62.235.0', '194.62.235.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.62.236.0', '194.62.236.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.62.237.0', '194.62.237.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.62.238.0', '194.63.127.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.63.128.0', '194.63.135.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.63.136.0', '194.63.139.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('194.63.140.0', '194.63.143.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.63.144.0', '194.63.147.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.63.148.0', '194.63.151.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.63.152.0', '194.63.155.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.63.160.0', '194.63.247.255', 2147483647, 2147483647, 'GR', 'Greece'), +('194.63.248.0', '194.63.255.255', 2147483647, 2147483647, 'NO', 'Norway'), +('194.64.0.0', '194.64.190.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.64.191.0', '194.64.191.15', 2147483647, 2147483647, 'IT', 'Italy'), +('194.64.191.16', '194.64.227.231', 2147483647, 2147483647, 'DE', 'Germany'), +('194.64.227.232', '194.64.227.239', 2147483647, 2147483647, 'IT', 'Italy'), +('194.64.227.240', '194.64.228.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.64.229.0', '194.64.229.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.64.229.48', '194.64.234.207', 2147483647, 2147483647, 'DE', 'Germany'), +('194.64.234.208', '194.64.234.215', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.64.234.216', '194.64.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.65.0.0', '194.65.86.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('194.65.87.0', '194.65.87.255', 2147483647, 2147483647, 'GW', 'Guinea-Bissau'), +('194.65.88.0', '194.65.255.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('194.66.0.0', '194.66.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.67.0.0', '194.67.191.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.67.192.0', '194.67.193.255', 2147483647, 2147483647, 'BY', 'Belarus'), +('194.67.194.0', '194.67.204.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.67.205.0', '194.67.206.255', 2147483647, 2147483647, 'TM', 'Turkmenistan'), +('194.67.207.0', '194.67.210.255', 2147483647, 2147483647, 'KZ', 'Kazakstan'), +('194.67.211.0', '194.67.212.255', 2147483647, 2147483647, 'TJ', 'Tajikistan'), +('194.67.213.0', '194.67.215.255', 2147483647, 2147483647, 'AZ', 'Azerbaijan'), +('194.67.216.0', '194.67.217.255', 2147483647, 2147483647, 'UZ', 'Uzbekistan'), +('194.67.218.0', '194.67.219.255', 2147483647, 2147483647, 'AM', 'Armenia'), +('194.67.220.0', '194.67.220.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.67.221.0', '194.67.222.255', 2147483647, 2147483647, 'KZ', 'Kazakstan'), +('194.67.223.0', '194.67.223.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.67.224.0', '194.67.255.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.68.0.0', '194.68.1.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.68.2.0', '194.68.2.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.68.3.0', '194.68.128.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.68.129.0', '194.68.129.255', 2147483647, 2147483647, 'FR', 'France'), +('194.68.130.0', '194.68.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.69.0.0', '194.69.0.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.69.1.0', '194.69.1.255', 2147483647, 2147483647, 'AE', 'United Arab Emirates'), +('194.69.2.0', '194.69.5.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.69.6.0', '194.69.15.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.69.16.0', '194.69.31.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.69.32.0', '194.69.32.255', 2147483647, 2147483647, 'FR', 'France'), +('194.69.33.0', '194.69.35.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.69.36.0', '194.69.37.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.69.38.0', '194.69.38.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.69.39.0', '194.69.41.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.69.42.0', '194.69.43.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.69.44.0', '194.69.44.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.69.45.0', '194.69.45.255', 2147483647, 2147483647, 'FR', 'France'), +('194.69.46.0', '194.69.47.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.69.48.0', '194.69.55.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.69.56.0', '194.69.59.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.69.60.0', '194.69.63.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.69.64.0', '194.69.64.39', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.69.64.40', '194.69.64.47', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.69.64.48', '194.69.64.71', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.69.64.72', '194.69.64.79', 2147483647, 2147483647, 'FR', 'France'), +('194.69.64.80', '194.69.64.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.69.64.96', '194.69.64.127', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.69.64.128', '194.69.64.231', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.69.64.232', '194.69.64.239', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.69.64.240', '194.69.64.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.69.65.0', '194.69.65.63', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.69.65.64', '194.69.65.71', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.69.65.72', '194.69.65.79', 2147483647, 2147483647, 'AT', 'Austria'), +('194.69.65.80', '194.69.65.135', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.69.65.136', '194.69.65.143', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.69.65.144', '194.69.65.151', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.69.65.152', '194.69.65.159', 2147483647, 2147483647, 'IT', 'Italy'), +('194.69.65.160', '194.69.65.199', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.69.65.200', '194.69.65.207', 2147483647, 2147483647, 'FR', 'France'), +('194.69.65.208', '194.69.67.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.69.67.16', '194.69.67.31', 2147483647, 2147483647, 'IT', 'Italy'), +('194.69.67.32', '194.69.67.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.69.67.48', '194.69.67.55', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.69.67.56', '194.69.67.63', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.69.67.64', '194.69.67.71', 2147483647, 2147483647, 'FR', 'France'), +('194.69.67.72', '194.69.67.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.69.67.160', '194.69.67.175', 2147483647, 2147483647, 'DE', 'Germany'), +('194.69.67.176', '194.69.67.215', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.69.67.216', '194.69.67.223', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.69.67.224', '194.69.67.247', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.69.67.248', '194.69.67.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.69.68.0', '194.69.68.7', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.69.68.8', '194.69.68.15', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.69.68.16', '194.69.68.23', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.69.68.24', '194.69.68.71', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.69.68.72', '194.69.68.79', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.69.68.80', '194.69.68.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.69.68.112', '194.69.68.127', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('194.69.68.128', '194.69.68.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.69.68.144', '194.69.68.151', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.69.68.152', '194.69.68.167', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.69.68.168', '194.69.68.175', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.69.68.176', '194.69.69.35', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.69.69.36', '194.69.69.39', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.69.69.40', '194.69.69.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.69.69.112', '194.69.69.115', 2147483647, 2147483647, 'FR', 'France'), +('194.69.69.116', '194.69.70.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.69.70.16', '194.69.70.23', 2147483647, 2147483647, 'FR', 'France'), +('194.69.70.24', '194.69.70.71', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.69.70.72', '194.69.70.79', 2147483647, 2147483647, 'BY', 'Belarus'), +('194.69.70.80', '194.69.70.179', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.69.70.180', '194.69.70.183', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.69.70.184', '194.69.70.203', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.69.70.204', '194.69.70.207', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.69.70.208', '194.69.70.247', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.69.70.248', '194.69.70.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.69.71.0', '194.69.72.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.69.73.0', '194.69.73.7', 2147483647, 2147483647, 'FR', 'France'), +('194.69.73.8', '194.69.73.167', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.69.73.168', '194.69.73.175', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.69.73.176', '194.69.127.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.69.128.0', '194.69.143.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.69.144.0', '194.69.146.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.69.147.0', '194.69.147.255', 2147483647, 2147483647, 'JP', 'Japan'), +('194.69.148.0', '194.69.148.255', 2147483647, 2147483647, 'US', 'United States'), +('194.69.149.0', '194.69.159.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.69.160.0', '194.69.167.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.69.168.0', '194.69.168.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.69.169.0', '194.69.169.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('194.69.170.0', '194.69.170.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.69.171.0', '194.69.175.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.69.176.0', '194.69.176.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.69.177.0', '194.69.177.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.69.178.0', '194.69.179.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.69.180.0', '194.69.180.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.69.181.0', '194.69.183.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.69.184.0', '194.69.191.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.69.192.0', '194.69.193.255', 2147483647, 2147483647, 'IT', 'Italy'), +('194.69.194.0', '194.69.195.255', 2147483647, 2147483647, 'FR', 'France'), +('194.69.196.0', '194.69.197.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.69.198.0', '194.69.199.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('194.69.200.0', '194.69.202.255', 2147483647, 2147483647, 'NO', 'Norway'), +('194.69.203.0', '194.69.203.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.69.204.0', '194.69.204.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.69.205.0', '194.69.205.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.69.206.0', '194.69.206.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('194.69.207.0', '194.69.207.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.69.208.0', '194.69.223.255', 2147483647, 2147483647, 'NO', 'Norway'), +('194.69.224.0', '194.69.255.255', 2147483647, 2147483647, 'ES', 'Spain'), +('194.70.0.0', '194.70.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.71.0.0', '194.71.94.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.71.95.0', '194.71.95.255', 2147483647, 2147483647, 'IT', 'Italy'), +('194.71.96.0', '194.71.125.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.71.126.0', '194.71.126.255', 2147483647, 2147483647, 'KH', 'Cambodia'), +('194.71.127.0', '194.71.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.72.0.0', '194.72.32.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.72.33.0', '194.72.33.255', 2147483647, 2147483647, 'ES', 'Spain'), +('194.72.34.0', '194.72.35.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.72.36.0', '194.72.36.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.72.37.0', '194.72.37.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.72.38.0', '194.72.38.255', 2147483647, 2147483647, 'ES', 'Spain'), +('194.72.39.0', '194.72.51.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.72.52.0', '194.72.52.255', 2147483647, 2147483647, 'IM', 'Isle of Man'), +('194.72.53.0', '194.72.66.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.72.67.0', '194.72.67.255', 2147483647, 2147483647, 'ES', 'Spain'), +('194.72.68.0', '194.72.76.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.72.77.0', '194.72.77.255', 2147483647, 2147483647, 'ES', 'Spain'), +('194.72.78.0', '194.72.78.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.72.79.0', '194.72.79.255', 2147483647, 2147483647, 'ES', 'Spain'), +('194.72.80.0', '194.72.87.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.72.88.0', '194.72.89.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.72.90.0', '194.72.141.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.72.142.0', '194.72.142.15', 2147483647, 2147483647, 'IE', 'Ireland'), +('194.72.142.16', '194.72.151.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.72.152.0', '194.72.153.255', 2147483647, 2147483647, 'ES', 'Spain'), +('194.72.154.0', '194.72.156.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.72.157.0', '194.72.157.255', 2147483647, 2147483647, 'ES', 'Spain'), +('194.72.158.0', '194.72.167.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.72.168.0', '194.72.175.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.72.176.0', '194.72.183.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.72.184.0', '194.72.185.255', 2147483647, 2147483647, 'LB', 'Lebanon'), +('194.72.186.0', '194.72.223.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.72.224.0', '194.72.224.255', 2147483647, 2147483647, 'ES', 'Spain'), +('194.72.225.0', '194.72.249.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.72.250.0', '194.72.250.255', 2147483647, 2147483647, 'ES', 'Spain'), +('194.72.251.0', '194.73.48.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.73.48.32', '194.73.48.39', 2147483647, 2147483647, 'ES', 'Spain'), +('194.73.48.40', '194.73.49.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.73.49.224', '194.73.49.255', 2147483647, 2147483647, 'ES', 'Spain'), +('194.73.50.0', '194.73.51.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.73.51.160', '194.73.51.175', 2147483647, 2147483647, 'IR', 'Iran, Islamic Republic of'), +('194.73.51.176', '194.73.67.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.73.68.0', '194.73.69.255', 2147483647, 2147483647, 'ES', 'Spain'), +('194.73.70.0', '194.73.91.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.73.92.0', '194.73.93.255', 2147483647, 2147483647, 'ES', 'Spain'), +('194.73.94.0', '194.73.95.255', 2147483647, 2147483647, 'IT', 'Italy'), +('194.73.96.0', '194.73.127.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.73.128.0', '194.73.128.255', 2147483647, 2147483647, 'ES', 'Spain'), +('194.73.129.0', '194.73.137.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.73.138.0', '194.73.138.255', 2147483647, 2147483647, 'FR', 'France'), +('194.73.139.0', '194.73.142.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.73.143.0', '194.73.143.255', 2147483647, 2147483647, 'IM', 'Isle of Man'), +('194.73.144.0', '194.73.144.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.73.145.0', '194.73.145.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('194.73.146.0', '194.73.196.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.73.197.0', '194.73.197.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.73.198.0', '194.73.198.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.73.199.0', '194.73.199.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.73.200.0', '194.73.201.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.73.202.0', '194.73.202.255', 2147483647, 2147483647, 'FR', 'France'), +('194.73.203.0', '194.73.218.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.73.219.0', '194.73.219.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.73.220.0', '194.73.249.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.73.250.0', '194.73.251.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.73.252.0', '194.74.2.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.74.3.0', '194.74.3.255', 2147483647, 2147483647, 'ES', 'Spain'), +('194.74.4.0', '194.74.9.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.74.10.0', '194.74.10.255', 2147483647, 2147483647, 'IM', 'Isle of Man'), +('194.74.11.0', '194.74.14.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.74.15.0', '194.74.15.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.74.16.0', '194.74.23.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.74.24.0', '194.74.24.255', 2147483647, 2147483647, 'ES', 'Spain'), +('194.74.25.0', '194.74.31.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.74.32.0', '194.74.32.255', 2147483647, 2147483647, 'ES', 'Spain'), +('194.74.33.0', '194.74.35.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.74.36.0', '194.74.36.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.74.37.0', '194.74.38.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.74.39.0', '194.74.39.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.74.40.0', '194.74.41.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.74.42.0', '194.74.42.255', 2147483647, 2147483647, 'ES', 'Spain'), +('194.74.43.0', '194.74.43.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.74.44.0', '194.74.45.255', 2147483647, 2147483647, 'ES', 'Spain'), +('194.74.46.0', '194.74.49.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.74.50.0', '194.74.50.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.74.51.0', '194.74.79.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.74.80.0', '194.74.87.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.74.88.0', '194.74.106.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.74.107.0', '194.74.107.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.74.108.0', '194.74.109.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.74.110.0', '194.74.110.159', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.74.110.160', '194.74.110.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.74.110.192', '194.74.110.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.74.111.0', '194.74.119.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.74.120.0', '194.74.120.7', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.74.120.8', '194.74.120.39', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.74.120.40', '194.74.120.47', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.74.120.48', '194.74.120.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.74.121.0', '194.74.121.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.74.122.0', '194.75.2.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.75.3.0', '194.75.3.31', 2147483647, 2147483647, 'ES', 'Spain'), +('194.75.3.32', '194.75.5.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.75.6.0', '194.75.6.255', 2147483647, 2147483647, 'ES', 'Spain'), +('194.75.7.0', '194.75.25.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.75.26.0', '194.75.28.31', 2147483647, 2147483647, 'DE', 'Germany'), +('194.75.28.32', '194.75.219.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.75.220.0', '194.75.220.7', 2147483647, 2147483647, 'FR', 'France'), +('194.75.220.8', '194.75.220.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.75.220.128', '194.75.220.191', 2147483647, 2147483647, 'FR', 'France'), +('194.75.220.192', '194.75.222.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.75.223.0', '194.75.223.255', 2147483647, 2147483647, 'FR', 'France'), +('194.75.224.0', '194.75.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.76.0.0', '194.76.209.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.76.210.0', '194.76.210.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.76.211.0', '194.76.238.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.76.239.0', '194.76.239.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.76.240.0', '194.77.100.47', 2147483647, 2147483647, 'DE', 'Germany'), +('194.77.100.48', '194.77.100.55', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.77.100.56', '194.77.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.78.0.0', '194.78.255.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.79.0.0', '194.79.3.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.79.4.0', '194.79.7.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.79.8.0', '194.79.11.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.79.12.0', '194.79.15.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('194.79.16.0', '194.79.19.255', 2147483647, 2147483647, 'FI', 'Finland'), +('194.79.20.0', '194.79.23.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.79.24.0', '194.79.27.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.79.28.0', '194.79.31.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.79.32.0', '194.79.35.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.79.36.0', '194.79.39.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.79.40.0', '194.79.43.255', 2147483647, 2147483647, 'RS', 'Serbia'), +('194.79.44.0', '194.79.47.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.79.48.0', '194.79.51.255', 2147483647, 2147483647, 'FR', 'France'), +('194.79.52.0', '194.79.55.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('194.79.56.0', '194.79.59.255', 2147483647, 2147483647, 'IT', 'Italy'), +('194.79.60.0', '194.79.63.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.79.64.0', '194.79.95.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('194.79.96.0', '194.79.127.255', 2147483647, 2147483647, 'EG', 'Egypt'), +('194.79.128.0', '194.79.191.255', 2147483647, 2147483647, 'FR', 'France'), +('194.79.192.0', '194.79.223.255', 2147483647, 2147483647, 'IT', 'Italy'), +('194.79.224.0', '194.79.239.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.79.240.0', '194.79.243.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.79.244.0', '194.79.249.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.79.250.0', '194.79.251.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.79.252.0', '194.79.253.255', 2147483647, 2147483647, 'GR', 'Greece'), +('194.79.254.0', '194.79.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.80.0.0', '194.83.71.207', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.83.71.208', '194.83.71.223', 2147483647, 2147483647, 'GR', 'Greece'), +('194.83.71.224', '194.83.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.84.0.0', '194.84.14.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.84.15.0', '194.84.15.255', 2147483647, 2147483647, 'KZ', 'Kazakstan'), +('194.84.16.0', '194.84.74.63', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.84.74.64', '194.84.74.255', 2147483647, 2147483647, 'BY', 'Belarus'), +('194.84.75.0', '194.84.144.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.84.145.0', '194.84.145.255', 2147483647, 2147483647, 'BY', 'Belarus'), +('194.84.146.0', '194.84.211.127', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.84.211.128', '194.84.211.191', 2147483647, 2147483647, 'TJ', 'Tajikistan'), +('194.84.211.192', '194.85.11.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.85.12.0', '194.85.12.255', 2147483647, 2147483647, 'AZ', 'Azerbaijan'), +('194.85.13.0', '194.85.15.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.85.16.0', '194.85.20.255', 2147483647, 2147483647, 'KZ', 'Kazakstan'), +('194.85.21.0', '194.85.253.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.85.254.0', '194.85.255.255', 2147483647, 2147483647, 'BY', 'Belarus'), +('194.86.0.0', '194.86.255.255', 2147483647, 2147483647, 'FI', 'Finland'), +('194.87.0.0', '194.87.255.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.88.0.0', '194.88.0.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.88.1.0', '194.88.1.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.88.2.0', '194.88.2.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.88.3.0', '194.88.3.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.88.4.0', '194.88.4.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('194.88.5.0', '194.88.5.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.88.6.0', '194.88.6.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.88.7.0', '194.88.7.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.88.8.0', '194.88.8.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.88.9.0', '194.88.9.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.88.10.0', '194.88.10.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.88.11.0', '194.88.11.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.88.12.0', '194.88.12.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.88.13.0', '194.88.13.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.88.14.0', '194.88.14.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.88.15.0', '194.88.15.255', 2147483647, 2147483647, 'ES', 'Spain'), +('194.88.16.0', '194.88.26.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.88.27.0', '194.88.27.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.88.28.0', '194.88.31.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.88.32.0', '194.88.37.159', 2147483647, 2147483647, 'HU', 'Hungary'), +('194.88.37.160', '194.88.37.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('194.88.38.0', '194.88.48.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('194.88.49.0', '194.88.49.31', 2147483647, 2147483647, 'RO', 'Romania'), +('194.88.49.32', '194.88.49.95', 2147483647, 2147483647, 'HU', 'Hungary'), +('194.88.49.96', '194.88.49.103', 2147483647, 2147483647, 'RO', 'Romania'), +('194.88.49.104', '194.88.63.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('194.88.64.0', '194.88.95.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.88.96.0', '194.88.127.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.88.128.0', '194.88.129.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.88.130.0', '194.88.131.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('194.88.132.0', '194.88.133.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.88.134.0', '194.88.135.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.88.136.0', '194.88.137.255', 2147483647, 2147483647, 'IL', 'Israel'), +('194.88.138.0', '194.88.141.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.88.142.0', '194.88.143.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('194.88.144.0', '194.88.145.255', 2147483647, 2147483647, 'NO', 'Norway'), +('194.88.146.0', '194.88.149.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.88.150.0', '194.88.153.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.88.154.0', '194.88.155.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.88.156.0', '194.88.157.255', 2147483647, 2147483647, 'FR', 'France'), +('194.88.158.0', '194.88.159.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.88.160.0', '194.88.191.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.88.192.0', '194.88.193.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.88.194.0', '194.88.195.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.88.196.0', '194.88.197.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.88.198.0', '194.88.199.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.88.200.0', '194.88.201.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.88.202.0', '194.88.203.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.88.204.0', '194.88.205.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.88.206.0', '194.88.207.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.88.208.0', '194.88.211.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.88.212.0', '194.88.213.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.88.214.0', '194.88.215.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.88.216.0', '194.88.217.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.88.218.0', '194.88.221.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.88.222.0', '194.88.223.255', 2147483647, 2147483647, 'FR', 'France'), +('194.88.224.0', '194.88.225.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.88.226.0', '194.88.227.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.88.228.0', '194.88.229.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('194.88.230.0', '194.88.231.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.88.232.0', '194.88.235.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.88.236.0', '194.88.237.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.88.238.0', '194.88.239.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.88.240.0', '194.88.241.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('194.88.242.0', '194.88.243.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.88.244.0', '194.88.245.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.88.246.0', '194.88.247.255', 2147483647, 2147483647, 'FR', 'France'), +('194.88.248.0', '194.88.249.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.88.250.0', '194.88.251.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('194.88.252.0', '194.88.253.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.88.254.0', '194.88.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.89.0.0', '194.89.3.255', 2147483647, 2147483647, 'FI', 'Finland'), +('194.89.4.0', '194.89.4.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.89.5.0', '194.89.5.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.89.6.0', '194.89.52.255', 2147483647, 2147483647, 'FI', 'Finland'), +('194.89.53.0', '194.89.53.255', 2147483647, 2147483647, 'ES', 'Spain'), +('194.89.54.0', '194.89.55.255', 2147483647, 2147483647, 'FI', 'Finland'), +('194.89.56.0', '194.89.56.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.89.57.0', '194.89.217.255', 2147483647, 2147483647, 'FI', 'Finland'), +('194.89.218.0', '194.89.218.255', 2147483647, 2147483647, 'ES', 'Spain'), +('194.89.219.0', '194.89.219.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.89.220.0', '194.89.220.255', 2147483647, 2147483647, 'FI', 'Finland'), +('194.89.221.0', '194.89.222.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.89.223.0', '194.89.223.255', 2147483647, 2147483647, 'IT', 'Italy'), +('194.89.224.0', '194.89.255.255', 2147483647, 2147483647, 'FI', 'Finland'), +('194.90.0.0', '194.90.255.255', 2147483647, 2147483647, 'IL', 'Israel'), +('194.91.0.0', '194.91.220.255', 2147483647, 2147483647, 'IT', 'Italy'), +('194.91.221.0', '194.91.221.15', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.91.221.16', '194.91.255.255', 2147483647, 2147483647, 'IT', 'Italy'), +('194.92.0.0', '194.92.255.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.93.0.0', '194.93.3.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.93.4.0', '194.93.4.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.93.5.0', '194.93.64.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.93.65.0', '194.93.65.255', 2147483647, 2147483647, 'IT', 'Italy'), +('194.93.66.0', '194.93.66.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.93.67.0', '194.93.67.255', 2147483647, 2147483647, 'ES', 'Spain'), +('194.93.68.0', '194.93.68.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.93.69.0', '194.93.69.255', 2147483647, 2147483647, 'FI', 'Finland'), +('194.93.70.0', '194.93.70.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('194.93.71.0', '194.93.71.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.93.72.0', '194.93.72.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.93.73.0', '194.93.75.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.93.76.0', '194.93.79.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.93.80.0', '194.93.91.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.93.92.0', '194.93.95.255', 2147483647, 2147483647, 'ES', 'Spain'), +('194.93.96.0', '194.93.98.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.93.99.0', '194.93.100.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.93.101.0', '194.93.102.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.93.103.0', '194.93.111.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.93.112.0', '194.93.122.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.93.123.0', '194.93.123.127', 2147483647, 2147483647, 'DE', 'Germany'), +('194.93.123.128', '194.93.123.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('194.93.124.0', '194.93.127.255', 2147483647, 2147483647, 'FR', 'France'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('194.93.128.0', '194.93.159.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.93.160.0', '194.93.191.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.93.192.0', '194.95.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.96.0.0', '194.96.255.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.97.0.0', '194.97.51.191', 2147483647, 2147483647, 'DE', 'Germany'), +('194.97.51.192', '194.97.51.255', 2147483647, 2147483647, 'US', 'United States'), +('194.97.52.0', '194.97.143.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.97.144.0', '194.97.144.7', 2147483647, 2147483647, 'AT', 'Austria'), +('194.97.144.8', '194.97.144.227', 2147483647, 2147483647, 'DE', 'Germany'), +('194.97.144.228', '194.97.144.231', 2147483647, 2147483647, 'AT', 'Austria'), +('194.97.144.232', '194.97.144.247', 2147483647, 2147483647, 'DE', 'Germany'), +('194.97.144.248', '194.97.144.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.97.145.0', '194.97.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.98.0.0', '194.98.134.127', 2147483647, 2147483647, 'FR', 'France'), +('194.98.134.128', '194.98.134.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.98.135.0', '194.98.255.255', 2147483647, 2147483647, 'FR', 'France'), +('194.99.0.0', '194.99.115.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.99.116.0', '194.99.116.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.99.117.0', '194.99.117.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.99.118.0', '194.99.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.100.0.0', '194.100.41.111', 2147483647, 2147483647, 'FI', 'Finland'), +('194.100.41.112', '194.100.41.127', 2147483647, 2147483647, 'AX', 'Aland Islands'), +('194.100.41.128', '194.100.48.255', 2147483647, 2147483647, 'FI', 'Finland'), +('194.100.49.0', '194.100.49.127', 2147483647, 2147483647, 'AX', 'Aland Islands'), +('194.100.49.128', '194.100.255.255', 2147483647, 2147483647, 'FI', 'Finland'), +('194.101.0.0', '194.102.31.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.102.32.0', '194.102.151.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.102.152.0', '194.102.153.191', 2147483647, 2147483647, 'MD', 'Moldova, Republic of'), +('194.102.153.192', '194.102.255.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.103.0.0', '194.103.156.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.103.157.0', '194.103.157.255', 2147483647, 2147483647, 'IT', 'Italy'), +('194.103.158.0', '194.103.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.104.0.0', '194.104.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.105.0.0', '194.105.31.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.105.32.0', '194.105.47.255', 2147483647, 2147483647, 'MT', 'Malta'), +('194.105.48.0', '194.105.55.255', 2147483647, 2147483647, 'IT', 'Italy'), +('194.105.56.0', '194.105.56.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('194.105.57.0', '194.105.57.255', 2147483647, 2147483647, 'IT', 'Italy'), +('194.105.58.0', '194.105.58.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.105.59.0', '194.105.59.255', 2147483647, 2147483647, 'IT', 'Italy'), +('194.105.60.0', '194.105.60.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.105.61.0', '194.105.61.255', 2147483647, 2147483647, 'IT', 'Italy'), +('194.105.62.0', '194.105.95.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.105.96.0', '194.105.103.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.105.104.0', '194.105.111.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.105.112.0', '194.105.119.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.105.120.0', '194.105.127.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.105.128.0', '194.105.129.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.105.130.0', '194.105.131.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.105.132.0', '194.105.133.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.105.134.0', '194.105.135.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.105.136.0', '194.105.137.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.105.138.0', '194.105.139.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.105.140.0', '194.105.143.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.105.144.0', '194.105.145.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.105.146.0', '194.105.147.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.105.148.0', '194.105.149.255', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('194.105.150.0', '194.105.151.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.105.152.0', '194.105.153.255', 2147483647, 2147483647, 'FR', 'France'), +('194.105.154.0', '194.105.155.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.105.156.0', '194.105.157.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.105.158.0', '194.105.159.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.105.160.0', '194.105.191.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.105.192.0', '194.105.223.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.105.224.0', '194.105.255.255', 2147483647, 2147483647, 'IS', 'Iceland'), +('194.106.0.0', '194.106.31.255', 2147483647, 2147483647, 'ES', 'Spain'), +('194.106.32.0', '194.106.63.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.106.64.0', '194.106.95.255', 2147483647, 2147483647, 'MT', 'Malta'), +('194.106.96.0', '194.106.127.255', 2147483647, 2147483647, 'EE', 'Estonia'), +('194.106.128.0', '194.106.159.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('194.106.160.0', '194.106.191.255', 2147483647, 2147483647, 'RS', 'Serbia'), +('194.106.192.0', '194.106.193.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.106.194.0', '194.106.195.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.106.196.0', '194.106.197.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.106.198.0', '194.106.199.255', 2147483647, 2147483647, 'KZ', 'Kazakstan'), +('194.106.200.0', '194.106.201.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.106.202.0', '194.106.203.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.106.204.0', '194.106.205.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.106.206.0', '194.106.207.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.106.208.0', '194.106.209.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.106.210.0', '194.106.211.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.106.212.0', '194.106.213.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.106.214.0', '194.106.215.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.106.216.0', '194.106.219.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.106.220.0', '194.106.223.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.106.224.0', '194.107.15.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.107.16.0', '194.107.16.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.107.17.0', '194.107.17.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.107.18.0', '194.107.18.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.107.19.0', '194.107.19.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('194.107.20.0', '194.107.20.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.107.21.0', '194.107.21.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.107.22.0', '194.107.22.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('194.107.23.0', '194.107.23.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.107.24.0', '194.107.79.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.107.80.0', '194.107.80.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.107.81.0', '194.107.94.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.107.95.0', '194.107.95.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.107.96.0', '194.107.111.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.107.112.0', '194.107.112.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.107.113.0', '194.107.113.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.107.114.0', '194.107.114.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.107.115.0', '194.107.115.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('194.107.116.0', '194.107.116.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.107.117.0', '194.107.117.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.107.118.0', '194.107.118.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.107.119.0', '194.107.119.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.107.120.0', '194.107.120.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.107.121.0', '194.107.122.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.107.123.0', '194.107.123.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.107.124.0', '194.107.124.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.107.125.0', '194.107.125.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.107.126.0', '194.107.126.255', 2147483647, 2147483647, 'FR', 'France'), +('194.107.127.0', '194.107.127.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('194.107.128.0', '194.107.255.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.108.0.0', '194.108.39.175', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('194.108.39.176', '194.108.39.179', 2147483647, 2147483647, 'CR', 'Costa Rica'), +('194.108.39.180', '194.108.255.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('194.109.0.0', '194.109.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.110.0.0', '194.110.0.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.110.1.0', '194.110.17.255', 2147483647, 2147483647, 'FI', 'Finland'), +('194.110.18.0', '194.110.18.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.110.19.0', '194.110.24.255', 2147483647, 2147483647, 'FI', 'Finland'), +('194.110.25.0', '194.110.25.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.110.26.0', '194.110.26.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.110.27.0', '194.110.27.255', 2147483647, 2147483647, 'FI', 'Finland'), +('194.110.28.0', '194.110.28.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.110.29.0', '194.110.65.255', 2147483647, 2147483647, 'FI', 'Finland'), +('194.110.66.0', '194.110.66.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.110.67.0', '194.110.67.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.110.68.0', '194.110.68.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.110.69.0', '194.110.69.255', 2147483647, 2147483647, 'FR', 'France'), +('194.110.70.0', '194.110.70.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.110.71.0', '194.110.71.255', 2147483647, 2147483647, 'IT', 'Italy'), +('194.110.72.0', '194.110.72.255', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('194.110.73.0', '194.110.73.255', 2147483647, 2147483647, 'GR', 'Greece'), +('194.110.74.0', '194.110.74.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.110.75.0', '194.110.75.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.110.76.0', '194.110.76.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('194.110.77.0', '194.110.77.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.110.78.0', '194.110.78.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.110.79.0', '194.110.79.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.110.80.0', '194.110.95.255', 2147483647, 2147483647, 'FI', 'Finland'), +('194.110.96.0', '194.110.111.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.110.112.0', '194.110.115.255', 2147483647, 2147483647, 'FI', 'Finland'), +('194.110.116.0', '194.110.116.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.110.117.0', '194.110.125.255', 2147483647, 2147483647, 'FI', 'Finland'), +('194.110.126.0', '194.110.126.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.110.127.0', '194.110.127.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.110.128.0', '194.110.128.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.110.129.0', '194.110.129.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.110.130.0', '194.110.132.255', 2147483647, 2147483647, 'FI', 'Finland'), +('194.110.133.0', '194.110.133.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.110.134.0', '194.110.135.255', 2147483647, 2147483647, 'FI', 'Finland'), +('194.110.136.0', '194.110.136.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.110.137.0', '194.110.149.255', 2147483647, 2147483647, 'FI', 'Finland'), +('194.110.150.0', '194.110.150.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('194.110.151.0', '194.110.151.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.110.152.0', '194.110.159.255', 2147483647, 2147483647, 'FI', 'Finland'), +('194.110.160.0', '194.110.163.255', 2147483647, 2147483647, 'US', 'United States'), +('194.110.164.0', '194.110.167.255', 2147483647, 2147483647, 'FR', 'France'), +('194.110.168.0', '194.110.175.255', 2147483647, 2147483647, 'FI', 'Finland'), +('194.110.176.0', '194.110.176.15', 2147483647, 2147483647, 'AX', 'Aland Islands'), +('194.110.176.16', '194.110.176.31', 2147483647, 2147483647, 'FI', 'Finland'), +('194.110.176.32', '194.110.176.63', 2147483647, 2147483647, 'AX', 'Aland Islands'), +('194.110.176.64', '194.110.176.71', 2147483647, 2147483647, 'FI', 'Finland'), +('194.110.176.72', '194.110.176.79', 2147483647, 2147483647, 'AX', 'Aland Islands'), +('194.110.176.80', '194.110.176.95', 2147483647, 2147483647, 'FI', 'Finland'), +('194.110.176.96', '194.110.176.119', 2147483647, 2147483647, 'AX', 'Aland Islands'), +('194.110.176.120', '194.110.176.127', 2147483647, 2147483647, 'FI', 'Finland'), +('194.110.176.128', '194.110.177.119', 2147483647, 2147483647, 'AX', 'Aland Islands'), +('194.110.177.120', '194.110.177.127', 2147483647, 2147483647, 'FI', 'Finland'), +('194.110.177.128', '194.110.178.15', 2147483647, 2147483647, 'AX', 'Aland Islands'), +('194.110.178.16', '194.110.178.19', 2147483647, 2147483647, 'FI', 'Finland'), +('194.110.178.20', '194.110.178.31', 2147483647, 2147483647, 'AX', 'Aland Islands'), +('194.110.178.32', '194.110.178.63', 2147483647, 2147483647, 'FI', 'Finland'), +('194.110.178.64', '194.110.178.79', 2147483647, 2147483647, 'AX', 'Aland Islands'), +('194.110.178.80', '194.110.178.87', 2147483647, 2147483647, 'FI', 'Finland'), +('194.110.178.88', '194.110.178.223', 2147483647, 2147483647, 'AX', 'Aland Islands'), +('194.110.178.224', '194.110.178.255', 2147483647, 2147483647, 'FI', 'Finland'), +('194.110.179.0', '194.110.179.47', 2147483647, 2147483647, 'AX', 'Aland Islands'), +('194.110.179.48', '194.110.179.79', 2147483647, 2147483647, 'FI', 'Finland'), +('194.110.179.80', '194.110.179.191', 2147483647, 2147483647, 'AX', 'Aland Islands'), +('194.110.179.192', '194.110.179.255', 2147483647, 2147483647, 'FI', 'Finland'), +('194.110.180.0', '194.110.183.255', 2147483647, 2147483647, 'AX', 'Aland Islands'), +('194.110.184.0', '194.110.184.143', 2147483647, 2147483647, 'FI', 'Finland'), +('194.110.184.144', '194.110.184.151', 2147483647, 2147483647, 'AX', 'Aland Islands'), +('194.110.184.152', '194.110.184.159', 2147483647, 2147483647, 'FI', 'Finland'), +('194.110.184.160', '194.110.184.175', 2147483647, 2147483647, 'AX', 'Aland Islands'), +('194.110.184.176', '194.110.184.183', 2147483647, 2147483647, 'FI', 'Finland'), +('194.110.184.184', '194.110.184.191', 2147483647, 2147483647, 'AX', 'Aland Islands'), +('194.110.184.192', '194.110.184.255', 2147483647, 2147483647, 'FI', 'Finland'), +('194.110.185.0', '194.110.185.111', 2147483647, 2147483647, 'AX', 'Aland Islands'), +('194.110.185.112', '194.110.185.127', 2147483647, 2147483647, 'FI', 'Finland'), +('194.110.185.128', '194.110.185.215', 2147483647, 2147483647, 'AX', 'Aland Islands'), +('194.110.185.216', '194.110.185.223', 2147483647, 2147483647, 'FI', 'Finland'), +('194.110.185.224', '194.110.186.143', 2147483647, 2147483647, 'AX', 'Aland Islands'), +('194.110.186.144', '194.110.186.163', 2147483647, 2147483647, 'FI', 'Finland'), +('194.110.186.164', '194.110.186.183', 2147483647, 2147483647, 'AX', 'Aland Islands'), +('194.110.186.184', '194.110.186.207', 2147483647, 2147483647, 'FI', 'Finland'), +('194.110.186.208', '194.110.186.223', 2147483647, 2147483647, 'AX', 'Aland Islands'), +('194.110.186.224', '194.110.186.239', 2147483647, 2147483647, 'FI', 'Finland'), +('194.110.186.240', '194.110.191.255', 2147483647, 2147483647, 'AX', 'Aland Islands'), +('194.110.192.0', '194.110.192.255', 2147483647, 2147483647, 'FR', 'France'), +('194.110.193.0', '194.110.193.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.110.194.0', '194.110.194.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.110.195.0', '194.110.195.255', 2147483647, 2147483647, 'NO', 'Norway'), +('194.110.196.0', '194.110.196.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.110.197.0', '194.110.197.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.110.198.0', '194.110.198.255', 2147483647, 2147483647, 'GR', 'Greece'), +('194.110.199.0', '194.110.199.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('194.110.200.0', '194.110.200.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.110.201.0', '194.110.201.255', 2147483647, 2147483647, 'ES', 'Spain'), +('194.110.202.0', '194.110.202.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.110.203.0', '194.110.203.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.110.204.0', '194.110.204.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('194.110.205.0', '194.110.205.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('194.110.206.0', '194.110.206.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.110.207.0', '194.110.208.255', 2147483647, 2147483647, 'FR', 'France'), +('194.110.209.0', '194.110.209.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.110.210.0', '194.110.210.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.110.211.0', '194.110.211.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.110.212.0', '194.110.212.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.110.213.0', '194.110.213.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('194.110.214.0', '194.110.214.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.110.215.0', '194.110.215.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.110.216.0', '194.110.216.255', 2147483647, 2147483647, 'RS', 'Serbia'), +('194.110.217.0', '194.110.217.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.110.218.0', '194.110.218.255', 2147483647, 2147483647, 'GR', 'Greece'), +('194.110.219.0', '194.110.219.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.110.220.0', '194.110.220.255', 2147483647, 2147483647, 'LT', 'Lithuania'), +('194.110.221.0', '194.110.221.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.110.222.0', '194.110.222.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('194.110.223.0', '194.110.223.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.110.224.0', '194.110.235.255', 2147483647, 2147483647, 'FI', 'Finland'), +('194.110.236.0', '194.110.236.255', 2147483647, 2147483647, 'JO', 'Jordan'), +('194.110.237.0', '194.110.237.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.110.238.0', '194.110.240.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.110.241.0', '194.110.241.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.110.242.0', '194.110.242.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.110.243.0', '194.110.244.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.110.245.0', '194.110.245.255', 2147483647, 2147483647, 'FR', 'France'), +('194.110.246.0', '194.110.247.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.110.248.0', '194.110.248.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.110.249.0', '194.110.249.255', 2147483647, 2147483647, 'IL', 'Israel'), +('194.110.250.0', '194.110.250.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.110.251.0', '194.110.251.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.110.252.0', '194.110.252.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.110.253.0', '194.110.253.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.110.254.0', '194.110.254.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.110.255.0', '194.110.255.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.111.0.0', '194.111.162.255', 2147483647, 2147483647, 'FI', 'Finland'), +('194.111.163.0', '194.111.163.255', 2147483647, 2147483647, 'AX', 'Aland Islands'), +('194.111.164.0', '194.111.174.255', 2147483647, 2147483647, 'FI', 'Finland'), +('194.111.175.0', '194.111.175.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.111.176.0', '194.111.201.255', 2147483647, 2147483647, 'FI', 'Finland'), +('194.111.202.0', '194.111.203.255', 2147483647, 2147483647, 'AX', 'Aland Islands'), +('194.111.204.0', '194.111.211.255', 2147483647, 2147483647, 'FI', 'Finland'), +('194.111.212.0', '194.111.212.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.111.213.0', '194.111.232.255', 2147483647, 2147483647, 'FI', 'Finland'), +('194.111.233.0', '194.111.233.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.111.234.0', '194.111.236.255', 2147483647, 2147483647, 'FI', 'Finland'), +('194.111.237.0', '194.111.237.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.111.238.0', '194.111.255.255', 2147483647, 2147483647, 'FI', 'Finland'), +('194.112.0.0', '194.112.9.127', 2147483647, 2147483647, 'AX', 'Aland Islands'), +('194.112.9.128', '194.112.9.143', 2147483647, 2147483647, 'FI', 'Finland'), +('194.112.9.144', '194.112.9.159', 2147483647, 2147483647, 'AX', 'Aland Islands'), +('194.112.9.160', '194.112.9.191', 2147483647, 2147483647, 'FI', 'Finland'), +('194.112.9.192', '194.112.13.255', 2147483647, 2147483647, 'AX', 'Aland Islands'), +('194.112.14.0', '194.112.14.7', 2147483647, 2147483647, 'FI', 'Finland'), +('194.112.14.8', '194.112.14.255', 2147483647, 2147483647, 'AX', 'Aland Islands'), +('194.112.15.0', '194.112.15.255', 2147483647, 2147483647, 'FI', 'Finland'), +('194.112.16.0', '194.112.31.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.112.32.0', '194.112.63.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.112.64.0', '194.112.68.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.112.69.0', '194.112.69.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.112.70.0', '194.112.75.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.112.76.0', '194.112.79.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.112.80.0', '194.112.80.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.112.81.0', '194.112.82.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.112.83.0', '194.112.83.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.112.84.0', '194.112.87.255', 2147483647, 2147483647, 'ES', 'Spain'), +('194.112.88.0', '194.112.88.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.112.89.0', '194.112.91.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.112.92.0', '194.112.92.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.112.93.0', '194.112.93.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.112.94.0', '194.112.94.47', 2147483647, 2147483647, 'DE', 'Germany'), +('194.112.94.48', '194.112.97.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.112.98.0', '194.112.98.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.112.99.0', '194.112.100.15', 2147483647, 2147483647, 'EU', 'Europe'), +('194.112.100.16', '194.112.100.31', 2147483647, 2147483647, 'DE', 'Germany'), +('194.112.100.32', '194.112.100.79', 2147483647, 2147483647, 'EU', 'Europe'), +('194.112.100.80', '194.112.100.95', 2147483647, 2147483647, 'DE', 'Germany'), +('194.112.100.96', '194.112.100.127', 2147483647, 2147483647, 'EU', 'Europe'), +('194.112.100.128', '194.112.100.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.112.101.0', '194.112.101.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.112.102.0', '194.112.104.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.112.105.0', '194.112.105.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.112.106.0', '194.112.106.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.112.107.0', '194.112.107.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.112.108.0', '194.112.108.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.112.109.0', '194.112.111.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.112.112.0', '194.112.112.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.112.113.0', '194.112.113.15', 2147483647, 2147483647, 'EU', 'Europe'), +('194.112.113.16', '194.112.113.55', 2147483647, 2147483647, 'DE', 'Germany'), +('194.112.113.56', '194.112.113.63', 2147483647, 2147483647, 'EU', 'Europe'), +('194.112.113.64', '194.112.113.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.112.114.0', '194.112.114.31', 2147483647, 2147483647, 'FR', 'France'), +('194.112.114.32', '194.112.114.39', 2147483647, 2147483647, 'DE', 'Germany'), +('194.112.114.40', '194.112.114.127', 2147483647, 2147483647, 'FR', 'France'), +('194.112.114.128', '194.112.115.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.112.116.0', '194.112.116.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.112.117.0', '194.112.120.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.112.121.0', '194.112.121.135', 2147483647, 2147483647, 'DE', 'Germany'), +('194.112.121.136', '194.112.121.159', 2147483647, 2147483647, 'EU', 'Europe'), +('194.112.121.160', '194.112.121.191', 2147483647, 2147483647, 'DE', 'Germany'), +('194.112.121.192', '194.112.121.223', 2147483647, 2147483647, 'EU', 'Europe'), +('194.112.121.224', '194.112.121.239', 2147483647, 2147483647, 'DE', 'Germany'), +('194.112.121.240', '194.112.121.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.112.122.0', '194.112.122.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.112.123.0', '194.112.124.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.112.125.0', '194.112.125.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.112.126.0', '194.112.127.215', 2147483647, 2147483647, 'EU', 'Europe'), +('194.112.127.216', '194.112.127.223', 2147483647, 2147483647, 'DE', 'Germany'), +('194.112.127.224', '194.112.127.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.112.128.0', '194.112.255.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.113.0.0', '194.113.153.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.113.154.0', '194.113.154.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.113.155.0', '194.113.164.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.113.165.0', '194.113.165.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.113.166.0', '194.114.127.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.114.128.0', '194.114.131.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.114.132.0', '194.114.139.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.114.140.0', '194.114.143.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.114.144.0', '194.114.151.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.114.152.0', '194.114.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.115.0.0', '194.115.125.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.115.126.0', '194.115.126.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.115.127.0', '194.115.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.116.0.0', '194.116.127.255', 2147483647, 2147483647, 'IT', 'Italy'), +('194.116.128.0', '194.116.129.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.116.130.0', '194.116.135.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.116.136.0', '194.116.137.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.116.138.0', '194.116.139.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.116.140.0', '194.116.141.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.116.142.0', '194.116.145.255', 2147483647, 2147483647, 'FR', 'France'), +('194.116.146.0', '194.116.147.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.116.148.0', '194.116.149.255', 2147483647, 2147483647, 'FR', 'France'), +('194.116.150.0', '194.116.151.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.116.152.0', '194.116.153.255', 2147483647, 2147483647, 'ES', 'Spain'), +('194.116.154.0', '194.116.155.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.116.156.0', '194.116.157.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.116.158.0', '194.116.159.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.116.160.0', '194.116.161.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.116.162.0', '194.116.163.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.116.164.0', '194.116.165.255', 2147483647, 2147483647, 'IT', 'Italy'), +('194.116.166.0', '194.116.167.255', 2147483647, 2147483647, 'FR', 'France'), +('194.116.168.0', '194.116.169.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.116.170.0', '194.116.171.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.116.172.0', '194.116.173.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.116.174.0', '194.116.175.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.116.176.0', '194.116.177.255', 2147483647, 2147483647, 'FR', 'France'), +('194.116.178.0', '194.116.179.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.116.180.0', '194.116.181.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.116.182.0', '194.116.183.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.116.184.0', '194.116.185.255', 2147483647, 2147483647, 'ES', 'Spain'), +('194.116.186.0', '194.116.187.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.116.188.0', '194.116.189.255', 2147483647, 2147483647, 'EE', 'Estonia'), +('194.116.190.0', '194.116.191.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.116.192.0', '194.116.193.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.116.194.0', '194.116.195.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.116.196.0', '194.116.197.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.116.198.0', '194.116.199.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.116.200.0', '194.116.201.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.116.202.0', '194.116.203.255', 2147483647, 2147483647, 'FR', 'France'), +('194.116.204.0', '194.116.205.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('194.116.206.0', '194.116.209.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.116.210.0', '194.116.211.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.116.212.0', '194.116.213.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.116.214.0', '194.116.215.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.116.216.0', '194.116.217.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.116.218.0', '194.116.219.255', 2147483647, 2147483647, 'FR', 'France'), +('194.116.220.0', '194.116.221.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.116.222.0', '194.116.223.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.116.224.0', '194.116.225.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.116.226.0', '194.116.227.255', 2147483647, 2147483647, 'IL', 'Israel'), +('194.116.228.0', '194.116.229.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.116.230.0', '194.116.231.255', 2147483647, 2147483647, 'IL', 'Israel'), +('194.116.232.0', '194.116.233.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.116.234.0', '194.116.235.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.116.236.0', '194.116.237.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.116.238.0', '194.116.239.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.116.240.0', '194.116.241.255', 2147483647, 2147483647, 'ES', 'Spain'), +('194.116.242.0', '194.116.243.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.116.244.0', '194.116.245.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.116.246.0', '194.116.247.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.116.248.0', '194.116.249.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.116.250.0', '194.116.251.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.116.252.0', '194.116.253.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.116.254.0', '194.116.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.0.0', '194.117.49.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('194.117.50.0', '194.117.50.127', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.117.50.128', '194.117.50.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.117.51.0', '194.117.51.127', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.117.51.128', '194.117.51.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.52.0', '194.117.52.127', 2147483647, 2147483647, 'HU', 'Hungary'), +('194.117.53.0', '194.117.53.127', 2147483647, 2147483647, 'SN', 'Senegal'), +('194.117.53.128', '194.117.53.255', 2147483647, 2147483647, 'NO', 'Norway'), +('194.117.54.0', '194.117.54.127', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.54.128', '194.117.54.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.55.0', '194.117.55.127', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.117.55.128', '194.117.55.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.117.56.0', '194.117.63.255', 2147483647, 2147483647, 'IQ', 'Iraq'), +('194.117.64.0', '194.117.95.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.117.96.0', '194.117.96.15', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.96.16', '194.117.96.19', 2147483647, 2147483647, 'FR', 'France'), +('194.117.96.20', '194.117.96.23', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.96.24', '194.117.96.27', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.96.28', '194.117.96.31', 2147483647, 2147483647, 'AT', 'Austria'), +('194.117.96.32', '194.117.96.39', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.96.40', '194.117.96.43', 2147483647, 2147483647, 'AT', 'Austria'), +('194.117.96.44', '194.117.96.51', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.96.52', '194.117.96.55', 2147483647, 2147483647, 'FR', 'France'), +('194.117.96.56', '194.117.96.59', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.96.60', '194.117.96.75', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.96.76', '194.117.96.79', 2147483647, 2147483647, 'AT', 'Austria'), +('194.117.96.80', '194.117.96.83', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.96.84', '194.117.96.87', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.117.96.88', '194.117.96.99', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.96.100', '194.117.96.103', 2147483647, 2147483647, 'FR', 'France'), +('194.117.96.104', '194.117.96.119', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.96.120', '194.117.96.123', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.96.124', '194.117.96.139', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.96.140', '194.117.96.143', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.117.96.144', '194.117.96.147', 2147483647, 2147483647, 'US', 'United States'), +('194.117.96.148', '194.117.96.159', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.96.160', '194.117.96.163', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.96.164', '194.117.96.167', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.96.168', '194.117.96.171', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.96.172', '194.117.96.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.96.176', '194.117.96.179', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.96.180', '194.117.96.183', 2147483647, 2147483647, 'FR', 'France'), +('194.117.96.184', '194.117.96.187', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.96.188', '194.117.96.195', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.96.196', '194.117.96.199', 2147483647, 2147483647, 'FR', 'France'), +('194.117.96.200', '194.117.96.203', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.96.204', '194.117.96.207', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.96.208', '194.117.96.211', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.96.212', '194.117.96.215', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.96.216', '194.117.96.219', 2147483647, 2147483647, 'US', 'United States'), +('194.117.96.220', '194.117.96.223', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.96.224', '194.117.96.227', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.96.228', '194.117.96.231', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.96.232', '194.117.96.235', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.117.96.236', '194.117.96.239', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.96.240', '194.117.96.243', 2147483647, 2147483647, 'AE', 'United Arab Emirates'), +('194.117.96.244', '194.117.96.251', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.96.252', '194.117.96.255', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('194.117.97.0', '194.117.97.11', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.97.12', '194.117.97.15', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.97.16', '194.117.97.19', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.97.20', '194.117.97.23', 2147483647, 2147483647, 'FR', 'France'), +('194.117.97.24', '194.117.97.31', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.97.32', '194.117.97.35', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.97.36', '194.117.97.47', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.97.48', '194.117.97.51', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.97.52', '194.117.97.63', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.97.64', '194.117.97.67', 2147483647, 2147483647, 'CA', 'Canada'), +('194.117.97.68', '194.117.97.71', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.97.72', '194.117.97.79', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.97.80', '194.117.97.83', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.97.84', '194.117.97.87', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.97.88', '194.117.97.91', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.97.92', '194.117.97.95', 2147483647, 2147483647, 'US', 'United States'), +('194.117.97.96', '194.117.97.99', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.97.100', '194.117.97.103', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.97.104', '194.117.97.107', 2147483647, 2147483647, 'HU', 'Hungary'), +('194.117.97.108', '194.117.97.115', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.97.116', '194.117.97.119', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.117.97.120', '194.117.97.127', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.97.128', '194.117.97.131', 2147483647, 2147483647, 'CA', 'Canada'), +('194.117.97.132', '194.117.97.135', 2147483647, 2147483647, 'AT', 'Austria'), +('194.117.97.136', '194.117.97.143', 2147483647, 2147483647, 'US', 'United States'), +('194.117.97.144', '194.117.97.147', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.97.148', '194.117.97.151', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.97.152', '194.117.97.155', 2147483647, 2147483647, 'FR', 'France'), +('194.117.97.156', '194.117.97.159', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.97.160', '194.117.97.167', 2147483647, 2147483647, 'US', 'United States'), +('194.117.97.168', '194.117.97.171', 2147483647, 2147483647, 'CA', 'Canada'), +('194.117.97.172', '194.117.97.175', 2147483647, 2147483647, 'TR', 'Turkey'), +('194.117.97.176', '194.117.97.183', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.97.184', '194.117.97.187', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.97.188', '194.117.97.203', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.97.204', '194.117.97.207', 2147483647, 2147483647, 'FR', 'France'), +('194.117.97.208', '194.117.97.211', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.97.212', '194.117.97.215', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.97.216', '194.117.97.219', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.97.220', '194.117.97.227', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.97.228', '194.117.97.231', 2147483647, 2147483647, 'FR', 'France'), +('194.117.97.232', '194.117.97.235', 2147483647, 2147483647, 'CL', 'Chile'), +('194.117.97.236', '194.117.97.243', 2147483647, 2147483647, 'US', 'United States'), +('194.117.97.244', '194.117.97.247', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.97.248', '194.117.97.251', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.97.252', '194.117.97.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.117.98.0', '194.117.98.3', 2147483647, 2147483647, 'US', 'United States'), +('194.117.98.4', '194.117.98.7', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.98.8', '194.117.98.11', 2147483647, 2147483647, 'US', 'United States'), +('194.117.98.12', '194.117.98.23', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.98.24', '194.117.98.31', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.98.32', '194.117.98.35', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.98.36', '194.117.98.39', 2147483647, 2147483647, 'PT', 'Portugal'), +('194.117.98.40', '194.117.98.43', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.98.44', '194.117.98.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.98.48', '194.117.98.51', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.98.52', '194.117.98.55', 2147483647, 2147483647, 'PT', 'Portugal'), +('194.117.98.56', '194.117.98.59', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.98.60', '194.117.98.63', 2147483647, 2147483647, 'CA', 'Canada'), +('194.117.98.64', '194.117.98.67', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.98.68', '194.117.98.71', 2147483647, 2147483647, 'US', 'United States'), +('194.117.98.72', '194.117.98.75', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.98.76', '194.117.98.79', 2147483647, 2147483647, 'US', 'United States'), +('194.117.98.80', '194.117.98.87', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.98.88', '194.117.98.91', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.98.92', '194.117.98.95', 2147483647, 2147483647, 'AT', 'Austria'), +('194.117.98.96', '194.117.98.103', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.98.104', '194.117.98.107', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.98.108', '194.117.98.115', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.98.116', '194.117.98.119', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.98.120', '194.117.98.123', 2147483647, 2147483647, 'US', 'United States'), +('194.117.98.124', '194.117.98.131', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.98.132', '194.117.98.135', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.117.98.136', '194.117.98.139', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.98.140', '194.117.98.143', 2147483647, 2147483647, 'AT', 'Austria'), +('194.117.98.144', '194.117.98.147', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.98.148', '194.117.98.151', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.98.152', '194.117.98.155', 2147483647, 2147483647, 'FR', 'France'), +('194.117.98.156', '194.117.98.159', 2147483647, 2147483647, 'US', 'United States'), +('194.117.98.160', '194.117.98.163', 2147483647, 2147483647, 'FR', 'France'), +('194.117.98.164', '194.117.98.167', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.98.168', '194.117.98.171', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.98.172', '194.117.98.175', 2147483647, 2147483647, 'FR', 'France'), +('194.117.98.176', '194.117.98.179', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.98.180', '194.117.98.187', 2147483647, 2147483647, 'CA', 'Canada'), +('194.117.98.188', '194.117.98.195', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.98.196', '194.117.98.199', 2147483647, 2147483647, 'AT', 'Austria'), +('194.117.98.200', '194.117.98.203', 2147483647, 2147483647, 'US', 'United States'), +('194.117.98.204', '194.117.98.207', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.98.208', '194.117.98.211', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.98.212', '194.117.98.219', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.98.220', '194.117.98.223', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.98.224', '194.117.98.227', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.98.228', '194.117.98.231', 2147483647, 2147483647, 'LB', 'Lebanon'), +('194.117.98.232', '194.117.98.235', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.98.236', '194.117.98.239', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.98.240', '194.117.98.243', 2147483647, 2147483647, 'PT', 'Portugal'), +('194.117.98.244', '194.117.98.247', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('194.117.98.248', '194.117.98.251', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.98.252', '194.117.98.255', 2147483647, 2147483647, 'CA', 'Canada'), +('194.117.99.0', '194.117.99.3', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.99.4', '194.117.99.7', 2147483647, 2147483647, 'AT', 'Austria'), +('194.117.99.8', '194.117.99.15', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.99.16', '194.117.99.19', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('194.117.99.20', '194.117.99.23', 2147483647, 2147483647, 'AT', 'Austria'), +('194.117.99.24', '194.117.99.27', 2147483647, 2147483647, 'PT', 'Portugal'), +('194.117.99.28', '194.117.99.31', 2147483647, 2147483647, 'US', 'United States'), +('194.117.99.32', '194.117.99.35', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.99.36', '194.117.99.39', 2147483647, 2147483647, 'FR', 'France'), +('194.117.99.40', '194.117.99.43', 2147483647, 2147483647, 'HU', 'Hungary'), +('194.117.99.44', '194.117.99.47', 2147483647, 2147483647, 'NO', 'Norway'), +('194.117.99.48', '194.117.99.51', 2147483647, 2147483647, 'US', 'United States'), +('194.117.99.52', '194.117.99.55', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.99.56', '194.117.99.59', 2147483647, 2147483647, 'AR', 'Argentina'), +('194.117.99.60', '194.117.99.63', 2147483647, 2147483647, 'US', 'United States'), +('194.117.99.64', '194.117.99.67', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.99.68', '194.117.99.71', 2147483647, 2147483647, 'BM', 'Bermuda'), +('194.117.99.72', '194.117.99.75', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.99.76', '194.117.99.79', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.99.80', '194.117.99.83', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.99.84', '194.117.99.87', 2147483647, 2147483647, 'US', 'United States'), +('194.117.99.88', '194.117.99.91', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.99.92', '194.117.99.95', 2147483647, 2147483647, 'AT', 'Austria'), +('194.117.99.96', '194.117.99.115', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.99.116', '194.117.99.119', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.99.120', '194.117.99.123', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.99.124', '194.117.99.127', 2147483647, 2147483647, 'US', 'United States'), +('194.117.99.128', '194.117.99.131', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.99.132', '194.117.99.139', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.99.140', '194.117.99.143', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.117.99.144', '194.117.99.147', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.99.148', '194.117.99.155', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.99.156', '194.117.99.159', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.99.160', '194.117.99.167', 2147483647, 2147483647, 'FR', 'France'), +('194.117.99.168', '194.117.99.175', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.99.176', '194.117.99.179', 2147483647, 2147483647, 'US', 'United States'), +('194.117.99.180', '194.117.99.183', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.99.184', '194.117.99.191', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.99.192', '194.117.99.195', 2147483647, 2147483647, 'FR', 'France'), +('194.117.99.196', '194.117.99.199', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.99.200', '194.117.99.203', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.99.204', '194.117.99.207', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.99.208', '194.117.99.211', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.99.212', '194.117.99.215', 2147483647, 2147483647, 'US', 'United States'), +('194.117.99.216', '194.117.99.235', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.99.236', '194.117.99.239', 2147483647, 2147483647, 'AT', 'Austria'), +('194.117.99.240', '194.117.99.243', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.99.244', '194.117.99.247', 2147483647, 2147483647, 'US', 'United States'), +('194.117.99.248', '194.117.99.251', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.99.252', '194.117.99.255', 2147483647, 2147483647, 'FR', 'France'), +('194.117.100.0', '194.117.100.107', 2147483647, 2147483647, 'JP', 'Japan'), +('194.117.100.108', '194.117.100.111', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('194.117.100.112', '194.117.100.255', 2147483647, 2147483647, 'JP', 'Japan'), +('194.117.101.0', '194.117.101.1', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.101.2', '194.117.101.6', 2147483647, 2147483647, 'US', 'United States'), +('194.117.101.7', '194.117.101.8', 2147483647, 2147483647, 'CA', 'Canada'), +('194.117.101.9', '194.117.101.11', 2147483647, 2147483647, 'US', 'United States'), +('194.117.101.12', '194.117.101.12', 2147483647, 2147483647, 'VE', 'Venezuela'), +('194.117.101.13', '194.117.101.13', 2147483647, 2147483647, 'US', 'United States'), +('194.117.101.14', '194.117.101.14', 2147483647, 2147483647, 'CA', 'Canada'), +('194.117.101.15', '194.117.101.41', 2147483647, 2147483647, 'US', 'United States'), +('194.117.101.42', '194.117.101.42', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('194.117.101.43', '194.117.101.44', 2147483647, 2147483647, 'US', 'United States'), +('194.117.101.45', '194.117.101.45', 2147483647, 2147483647, 'CN', 'China'), +('194.117.101.46', '194.117.101.54', 2147483647, 2147483647, 'US', 'United States'), +('194.117.101.55', '194.117.101.55', 2147483647, 2147483647, 'CN', 'China'), +('194.117.101.56', '194.117.101.66', 2147483647, 2147483647, 'US', 'United States'), +('194.117.101.67', '194.117.101.67', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.101.68', '194.117.101.68', 2147483647, 2147483647, 'US', 'United States'), +('194.117.101.69', '194.117.101.69', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.101.70', '194.117.101.71', 2147483647, 2147483647, 'US', 'United States'), +('194.117.101.72', '194.117.101.72', 2147483647, 2147483647, 'CA', 'Canada'), +('194.117.101.73', '194.117.101.76', 2147483647, 2147483647, 'US', 'United States'), +('194.117.101.77', '194.117.101.77', 2147483647, 2147483647, 'CA', 'Canada'), +('194.117.101.78', '194.117.101.85', 2147483647, 2147483647, 'US', 'United States'), +('194.117.101.86', '194.117.101.86', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.101.87', '194.117.101.95', 2147483647, 2147483647, 'US', 'United States'), +('194.117.101.96', '194.117.101.96', 2147483647, 2147483647, 'CA', 'Canada'), +('194.117.101.97', '194.117.101.98', 2147483647, 2147483647, 'US', 'United States'), +('194.117.101.99', '194.117.101.99', 2147483647, 2147483647, 'DE', 'Germany'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('194.117.101.100', '194.117.101.110', 2147483647, 2147483647, 'US', 'United States'), +('194.117.101.111', '194.117.101.111', 2147483647, 2147483647, 'CA', 'Canada'), +('194.117.101.112', '194.117.101.114', 2147483647, 2147483647, 'US', 'United States'), +('194.117.101.115', '194.117.101.115', 2147483647, 2147483647, 'CA', 'Canada'), +('194.117.101.116', '194.117.101.186', 2147483647, 2147483647, 'US', 'United States'), +('194.117.101.187', '194.117.101.187', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.101.188', '194.117.101.191', 2147483647, 2147483647, 'US', 'United States'), +('194.117.101.192', '194.117.101.192', 2147483647, 2147483647, 'CA', 'Canada'), +('194.117.101.193', '194.117.101.216', 2147483647, 2147483647, 'US', 'United States'), +('194.117.101.217', '194.117.101.217', 2147483647, 2147483647, 'CA', 'Canada'), +('194.117.101.218', '194.117.101.219', 2147483647, 2147483647, 'AR', 'Argentina'), +('194.117.101.220', '194.117.101.220', 2147483647, 2147483647, 'CA', 'Canada'), +('194.117.101.221', '194.117.102.1', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.102.2', '194.117.102.7', 2147483647, 2147483647, 'US', 'United States'), +('194.117.102.8', '194.117.102.8', 2147483647, 2147483647, 'CA', 'Canada'), +('194.117.102.9', '194.117.102.43', 2147483647, 2147483647, 'US', 'United States'), +('194.117.102.44', '194.117.102.44', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.102.45', '194.117.102.53', 2147483647, 2147483647, 'US', 'United States'), +('194.117.102.54', '194.117.102.54', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('194.117.102.55', '194.117.102.57', 2147483647, 2147483647, 'US', 'United States'), +('194.117.102.58', '194.117.102.127', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.102.128', '194.117.102.131', 2147483647, 2147483647, 'US', 'United States'), +('194.117.102.132', '194.117.102.175', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.102.176', '194.117.102.179', 2147483647, 2147483647, 'US', 'United States'), +('194.117.102.180', '194.117.102.203', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.102.204', '194.117.102.207', 2147483647, 2147483647, 'US', 'United States'), +('194.117.102.208', '194.117.102.235', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.102.236', '194.117.102.239', 2147483647, 2147483647, 'US', 'United States'), +('194.117.102.240', '194.117.102.243', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.102.244', '194.117.102.255', 2147483647, 2147483647, 'US', 'United States'), +('194.117.103.0', '194.117.103.1', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.103.2', '194.117.103.2', 2147483647, 2147483647, 'TW', 'Taiwan'), +('194.117.103.3', '194.117.103.3', 2147483647, 2147483647, 'IN', 'India'), +('194.117.103.4', '194.117.103.4', 2147483647, 2147483647, 'SG', 'Singapore'), +('194.117.103.5', '194.117.103.5', 2147483647, 2147483647, 'IN', 'India'), +('194.117.103.6', '194.117.103.6', 2147483647, 2147483647, 'SG', 'Singapore'), +('194.117.103.7', '194.117.103.7', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.103.8', '194.117.103.8', 2147483647, 2147483647, 'SG', 'Singapore'), +('194.117.103.9', '194.117.103.9', 2147483647, 2147483647, 'IN', 'India'), +('194.117.103.10', '194.117.103.11', 2147483647, 2147483647, 'TW', 'Taiwan'), +('194.117.103.12', '194.117.103.12', 2147483647, 2147483647, 'MY', 'Malaysia'), +('194.117.103.13', '194.117.103.14', 2147483647, 2147483647, 'ID', 'Indonesia'), +('194.117.103.15', '194.117.103.15', 2147483647, 2147483647, 'TW', 'Taiwan'), +('194.117.103.16', '194.117.103.16', 2147483647, 2147483647, 'SG', 'Singapore'), +('194.117.103.17', '194.117.103.17', 2147483647, 2147483647, 'TW', 'Taiwan'), +('194.117.103.18', '194.117.103.18', 2147483647, 2147483647, 'MY', 'Malaysia'), +('194.117.103.19', '194.117.103.19', 2147483647, 2147483647, 'TW', 'Taiwan'), +('194.117.103.20', '194.117.103.20', 2147483647, 2147483647, 'SG', 'Singapore'), +('194.117.103.21', '194.117.103.21', 2147483647, 2147483647, 'TW', 'Taiwan'), +('194.117.103.22', '194.117.103.23', 2147483647, 2147483647, 'SG', 'Singapore'), +('194.117.103.24', '194.117.103.25', 2147483647, 2147483647, 'TW', 'Taiwan'), +('194.117.103.26', '194.117.103.26', 2147483647, 2147483647, 'SG', 'Singapore'), +('194.117.103.27', '194.117.103.27', 2147483647, 2147483647, 'ID', 'Indonesia'), +('194.117.103.28', '194.117.103.29', 2147483647, 2147483647, 'SG', 'Singapore'), +('194.117.103.30', '194.117.103.30', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('194.117.103.31', '194.117.103.32', 2147483647, 2147483647, 'SG', 'Singapore'), +('194.117.103.33', '194.117.103.34', 2147483647, 2147483647, 'MY', 'Malaysia'), +('194.117.103.35', '194.117.103.42', 2147483647, 2147483647, 'SG', 'Singapore'), +('194.117.103.43', '194.117.103.43', 2147483647, 2147483647, 'CN', 'China'), +('194.117.103.44', '194.117.103.46', 2147483647, 2147483647, 'SG', 'Singapore'), +('194.117.103.47', '194.117.103.47', 2147483647, 2147483647, 'IN', 'India'), +('194.117.103.48', '194.117.103.48', 2147483647, 2147483647, 'MY', 'Malaysia'), +('194.117.103.49', '194.117.103.49', 2147483647, 2147483647, 'SG', 'Singapore'), +('194.117.103.50', '194.117.103.50', 2147483647, 2147483647, 'MY', 'Malaysia'), +('194.117.103.51', '194.117.103.51', 2147483647, 2147483647, 'SG', 'Singapore'), +('194.117.103.52', '194.117.103.52', 2147483647, 2147483647, 'MY', 'Malaysia'), +('194.117.103.53', '194.117.103.53', 2147483647, 2147483647, 'SG', 'Singapore'), +('194.117.103.54', '194.117.103.54', 2147483647, 2147483647, 'MY', 'Malaysia'), +('194.117.103.55', '194.117.103.55', 2147483647, 2147483647, 'TW', 'Taiwan'), +('194.117.103.56', '194.117.103.57', 2147483647, 2147483647, 'MY', 'Malaysia'), +('194.117.103.58', '194.117.103.58', 2147483647, 2147483647, 'CN', 'China'), +('194.117.103.59', '194.117.103.59', 2147483647, 2147483647, 'SG', 'Singapore'), +('194.117.103.60', '194.117.103.60', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.103.61', '194.117.103.64', 2147483647, 2147483647, 'SG', 'Singapore'), +('194.117.103.65', '194.117.103.65', 2147483647, 2147483647, 'IN', 'India'), +('194.117.103.66', '194.117.103.77', 2147483647, 2147483647, 'SG', 'Singapore'), +('194.117.103.78', '194.117.103.79', 2147483647, 2147483647, 'CN', 'China'), +('194.117.103.80', '194.117.103.80', 2147483647, 2147483647, 'TW', 'Taiwan'), +('194.117.103.81', '194.117.103.81', 2147483647, 2147483647, 'IN', 'India'), +('194.117.103.82', '194.117.103.82', 2147483647, 2147483647, 'SG', 'Singapore'), +('194.117.103.83', '194.117.103.83', 2147483647, 2147483647, 'MY', 'Malaysia'), +('194.117.103.84', '194.117.103.84', 2147483647, 2147483647, 'SG', 'Singapore'), +('194.117.103.85', '194.117.103.85', 2147483647, 2147483647, 'MY', 'Malaysia'), +('194.117.103.86', '194.117.103.86', 2147483647, 2147483647, 'SG', 'Singapore'), +('194.117.103.87', '194.117.103.87', 2147483647, 2147483647, 'TW', 'Taiwan'), +('194.117.103.88', '194.117.103.88', 2147483647, 2147483647, 'IN', 'India'), +('194.117.103.89', '194.117.103.91', 2147483647, 2147483647, 'SG', 'Singapore'), +('194.117.103.92', '194.117.103.92', 2147483647, 2147483647, 'MY', 'Malaysia'), +('194.117.103.93', '194.117.103.93', 2147483647, 2147483647, 'SG', 'Singapore'), +('194.117.103.94', '194.117.103.94', 2147483647, 2147483647, 'IN', 'India'), +('194.117.103.95', '194.117.103.95', 2147483647, 2147483647, 'MY', 'Malaysia'), +('194.117.103.96', '194.117.103.99', 2147483647, 2147483647, 'SG', 'Singapore'), +('194.117.103.100', '194.117.103.100', 2147483647, 2147483647, 'TW', 'Taiwan'), +('194.117.103.101', '194.117.103.103', 2147483647, 2147483647, 'SG', 'Singapore'), +('194.117.103.104', '194.117.103.104', 2147483647, 2147483647, 'MY', 'Malaysia'), +('194.117.103.105', '194.117.103.105', 2147483647, 2147483647, 'SG', 'Singapore'), +('194.117.103.106', '194.117.103.107', 2147483647, 2147483647, 'MY', 'Malaysia'), +('194.117.103.108', '194.117.103.110', 2147483647, 2147483647, 'SG', 'Singapore'), +('194.117.103.111', '194.117.103.111', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('194.117.103.112', '194.117.103.113', 2147483647, 2147483647, 'SG', 'Singapore'), +('194.117.103.114', '194.117.103.114', 2147483647, 2147483647, 'MY', 'Malaysia'), +('194.117.103.115', '194.117.103.118', 2147483647, 2147483647, 'SG', 'Singapore'), +('194.117.103.119', '194.117.103.119', 2147483647, 2147483647, 'MY', 'Malaysia'), +('194.117.103.120', '194.117.103.120', 2147483647, 2147483647, 'CN', 'China'), +('194.117.103.121', '194.117.103.121', 2147483647, 2147483647, 'IN', 'India'), +('194.117.103.122', '194.117.103.122', 2147483647, 2147483647, 'MY', 'Malaysia'), +('194.117.103.123', '194.117.103.123', 2147483647, 2147483647, 'CN', 'China'), +('194.117.103.124', '194.117.103.124', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('194.117.103.125', '194.117.103.126', 2147483647, 2147483647, 'MY', 'Malaysia'), +('194.117.103.127', '194.117.103.127', 2147483647, 2147483647, 'TH', 'Thailand'), +('194.117.103.128', '194.117.103.128', 2147483647, 2147483647, 'SG', 'Singapore'), +('194.117.103.129', '194.117.103.129', 2147483647, 2147483647, 'PH', 'Philippines'), +('194.117.103.130', '194.117.103.130', 2147483647, 2147483647, 'IN', 'India'), +('194.117.103.131', '194.117.103.131', 2147483647, 2147483647, 'SG', 'Singapore'), +('194.117.103.132', '194.117.103.132', 2147483647, 2147483647, 'TW', 'Taiwan'), +('194.117.103.133', '194.117.103.133', 2147483647, 2147483647, 'IN', 'India'), +('194.117.103.134', '194.117.103.134', 2147483647, 2147483647, 'TH', 'Thailand'), +('194.117.103.135', '194.117.103.135', 2147483647, 2147483647, 'TW', 'Taiwan'), +('194.117.103.136', '194.117.103.136', 2147483647, 2147483647, 'BN', 'Brunei Darussalam'), +('194.117.103.137', '194.117.103.137', 2147483647, 2147483647, 'TW', 'Taiwan'), +('194.117.103.138', '194.117.103.138', 2147483647, 2147483647, 'SG', 'Singapore'), +('194.117.103.139', '194.117.103.141', 2147483647, 2147483647, 'MY', 'Malaysia'), +('194.117.103.142', '194.117.103.142', 2147483647, 2147483647, 'IN', 'India'), +('194.117.103.143', '194.117.103.144', 2147483647, 2147483647, 'SG', 'Singapore'), +('194.117.103.145', '194.117.103.146', 2147483647, 2147483647, 'MY', 'Malaysia'), +('194.117.103.147', '194.117.103.147', 2147483647, 2147483647, 'IN', 'India'), +('194.117.103.148', '194.117.103.149', 2147483647, 2147483647, 'MY', 'Malaysia'), +('194.117.103.150', '194.117.103.150', 2147483647, 2147483647, 'CN', 'China'), +('194.117.103.151', '194.117.103.152', 2147483647, 2147483647, 'SG', 'Singapore'), +('194.117.103.153', '194.117.103.153', 2147483647, 2147483647, 'TW', 'Taiwan'), +('194.117.103.154', '194.117.103.155', 2147483647, 2147483647, 'CN', 'China'), +('194.117.103.156', '194.117.103.156', 2147483647, 2147483647, 'TW', 'Taiwan'), +('194.117.103.157', '194.117.103.158', 2147483647, 2147483647, 'SG', 'Singapore'), +('194.117.103.159', '194.117.103.159', 2147483647, 2147483647, 'PH', 'Philippines'), +('194.117.103.160', '194.117.103.166', 2147483647, 2147483647, 'SG', 'Singapore'), +('194.117.103.167', '194.117.103.167', 2147483647, 2147483647, 'MY', 'Malaysia'), +('194.117.103.168', '194.117.103.168', 2147483647, 2147483647, 'SG', 'Singapore'), +('194.117.103.169', '194.117.103.169', 2147483647, 2147483647, 'IN', 'India'), +('194.117.103.170', '194.117.103.170', 2147483647, 2147483647, 'SG', 'Singapore'), +('194.117.103.171', '194.117.103.171', 2147483647, 2147483647, 'MY', 'Malaysia'), +('194.117.103.172', '194.117.103.172', 2147483647, 2147483647, 'IN', 'India'), +('194.117.103.173', '194.117.103.173', 2147483647, 2147483647, 'SG', 'Singapore'), +('194.117.103.174', '194.117.103.175', 2147483647, 2147483647, 'MY', 'Malaysia'), +('194.117.103.176', '194.117.103.178', 2147483647, 2147483647, 'SG', 'Singapore'), +('194.117.103.179', '194.117.103.179', 2147483647, 2147483647, 'MY', 'Malaysia'), +('194.117.103.180', '194.117.103.180', 2147483647, 2147483647, 'IN', 'India'), +('194.117.103.181', '194.117.103.181', 2147483647, 2147483647, 'CN', 'China'), +('194.117.103.182', '194.117.103.182', 2147483647, 2147483647, 'SG', 'Singapore'), +('194.117.103.183', '194.117.103.183', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('194.117.103.184', '194.117.103.184', 2147483647, 2147483647, 'TW', 'Taiwan'), +('194.117.103.185', '194.117.103.185', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.103.186', '194.117.103.186', 2147483647, 2147483647, 'SG', 'Singapore'), +('194.117.103.187', '194.117.103.187', 2147483647, 2147483647, 'MY', 'Malaysia'), +('194.117.103.188', '194.117.103.188', 2147483647, 2147483647, 'SG', 'Singapore'), +('194.117.103.189', '194.117.103.189', 2147483647, 2147483647, 'CN', 'China'), +('194.117.103.190', '194.117.103.190', 2147483647, 2147483647, 'TW', 'Taiwan'), +('194.117.103.191', '194.117.103.191', 2147483647, 2147483647, 'SG', 'Singapore'), +('194.117.103.192', '194.117.103.192', 2147483647, 2147483647, 'MY', 'Malaysia'), +('194.117.103.193', '194.117.103.193', 2147483647, 2147483647, 'SG', 'Singapore'), +('194.117.103.194', '194.117.103.194', 2147483647, 2147483647, 'TW', 'Taiwan'), +('194.117.103.195', '194.117.103.195', 2147483647, 2147483647, 'CN', 'China'), +('194.117.103.196', '194.117.103.196', 2147483647, 2147483647, 'MY', 'Malaysia'), +('194.117.103.197', '194.117.103.197', 2147483647, 2147483647, 'SG', 'Singapore'), +('194.117.103.198', '194.117.103.198', 2147483647, 2147483647, 'MY', 'Malaysia'), +('194.117.103.199', '194.117.103.201', 2147483647, 2147483647, 'SG', 'Singapore'), +('194.117.103.202', '194.117.103.202', 2147483647, 2147483647, 'MY', 'Malaysia'), +('194.117.103.203', '194.117.103.203', 2147483647, 2147483647, 'SG', 'Singapore'), +('194.117.103.204', '194.117.103.204', 2147483647, 2147483647, 'MY', 'Malaysia'), +('194.117.103.205', '194.117.103.205', 2147483647, 2147483647, 'SG', 'Singapore'), +('194.117.103.206', '194.117.103.206', 2147483647, 2147483647, 'CN', 'China'), +('194.117.103.207', '194.117.103.208', 2147483647, 2147483647, 'SG', 'Singapore'), +('194.117.103.209', '194.117.103.209', 2147483647, 2147483647, 'PH', 'Philippines'), +('194.117.103.210', '194.117.103.210', 2147483647, 2147483647, 'SG', 'Singapore'), +('194.117.103.211', '194.117.103.211', 2147483647, 2147483647, 'MY', 'Malaysia'), +('194.117.103.212', '194.117.103.212', 2147483647, 2147483647, 'IN', 'India'), +('194.117.103.213', '194.117.103.214', 2147483647, 2147483647, 'SG', 'Singapore'), +('194.117.103.215', '194.117.103.215', 2147483647, 2147483647, 'CN', 'China'), +('194.117.103.216', '194.117.103.216', 2147483647, 2147483647, 'MY', 'Malaysia'), +('194.117.103.217', '194.117.103.217', 2147483647, 2147483647, 'SG', 'Singapore'), +('194.117.103.218', '194.117.103.219', 2147483647, 2147483647, 'CN', 'China'), +('194.117.103.220', '194.117.103.220', 2147483647, 2147483647, 'IN', 'India'), +('194.117.103.221', '194.117.103.221', 2147483647, 2147483647, 'SG', 'Singapore'), +('194.117.103.222', '194.117.103.222', 2147483647, 2147483647, 'IN', 'India'), +('194.117.103.223', '194.117.103.223', 2147483647, 2147483647, 'MY', 'Malaysia'), +('194.117.103.224', '194.117.103.224', 2147483647, 2147483647, 'SG', 'Singapore'), +('194.117.103.225', '194.117.103.225', 2147483647, 2147483647, 'MY', 'Malaysia'), +('194.117.103.226', '194.117.103.226', 2147483647, 2147483647, 'TW', 'Taiwan'), +('194.117.103.227', '194.117.103.227', 2147483647, 2147483647, 'SG', 'Singapore'), +('194.117.103.228', '194.117.103.228', 2147483647, 2147483647, 'MY', 'Malaysia'), +('194.117.103.229', '194.117.103.229', 2147483647, 2147483647, 'SG', 'Singapore'), +('194.117.103.230', '194.117.103.230', 2147483647, 2147483647, 'CN', 'China'), +('194.117.103.231', '194.117.103.231', 2147483647, 2147483647, 'IN', 'India'), +('194.117.103.232', '194.117.103.232', 2147483647, 2147483647, 'SG', 'Singapore'), +('194.117.103.233', '194.117.103.233', 2147483647, 2147483647, 'MY', 'Malaysia'), +('194.117.103.234', '194.117.103.234', 2147483647, 2147483647, 'SG', 'Singapore'), +('194.117.103.235', '194.117.103.235', 2147483647, 2147483647, 'MY', 'Malaysia'), +('194.117.103.236', '194.117.103.238', 2147483647, 2147483647, 'IN', 'India'), +('194.117.103.239', '194.117.103.239', 2147483647, 2147483647, 'SG', 'Singapore'), +('194.117.103.240', '194.117.103.240', 2147483647, 2147483647, 'MY', 'Malaysia'), +('194.117.103.241', '194.117.103.241', 2147483647, 2147483647, 'SG', 'Singapore'), +('194.117.103.242', '194.117.103.242', 2147483647, 2147483647, 'MY', 'Malaysia'), +('194.117.103.243', '194.117.103.243', 2147483647, 2147483647, 'IN', 'India'), +('194.117.103.244', '194.117.103.244', 2147483647, 2147483647, 'SG', 'Singapore'), +('194.117.103.245', '194.117.103.246', 2147483647, 2147483647, 'IN', 'India'), +('194.117.103.247', '194.117.103.247', 2147483647, 2147483647, 'SG', 'Singapore'), +('194.117.103.248', '194.117.103.250', 2147483647, 2147483647, 'IN', 'India'), +('194.117.103.251', '194.117.103.252', 2147483647, 2147483647, 'MY', 'Malaysia'), +('194.117.103.253', '194.117.103.254', 2147483647, 2147483647, 'SG', 'Singapore'), +('194.117.103.255', '194.117.103.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.104.0', '194.117.104.15', 2147483647, 2147483647, 'AU', 'Australia'), +('194.117.104.16', '194.117.104.19', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('194.117.104.20', '194.117.104.23', 2147483647, 2147483647, 'AU', 'Australia'), +('194.117.104.24', '194.117.104.27', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('194.117.104.28', '194.117.104.31', 2147483647, 2147483647, 'AU', 'Australia'), +('194.117.104.32', '194.117.104.35', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('194.117.104.36', '194.117.104.127', 2147483647, 2147483647, 'AU', 'Australia'), +('194.117.104.128', '194.117.104.131', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('194.117.104.132', '194.117.104.155', 2147483647, 2147483647, 'AU', 'Australia'), +('194.117.104.156', '194.117.104.159', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('194.117.104.160', '194.117.104.223', 2147483647, 2147483647, 'AU', 'Australia'), +('194.117.104.224', '194.117.104.227', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('194.117.104.228', '194.117.104.255', 2147483647, 2147483647, 'AU', 'Australia'), +('194.117.105.0', '194.117.105.135', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.105.136', '194.117.105.139', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.117.105.140', '194.117.106.39', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.106.40', '194.117.106.63', 2147483647, 2147483647, 'JP', 'Japan'), +('194.117.106.64', '194.117.106.143', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.106.144', '194.117.106.255', 2147483647, 2147483647, 'JP', 'Japan'), +('194.117.107.0', '194.117.107.1', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.107.2', '194.117.107.15', 2147483647, 2147483647, 'US', 'United States'), +('194.117.107.16', '194.117.107.16', 2147483647, 2147483647, 'CO', 'Colombia'), +('194.117.107.17', '194.117.107.17', 2147483647, 2147483647, 'US', 'United States'), +('194.117.107.18', '194.117.107.19', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.107.20', '194.117.107.21', 2147483647, 2147483647, 'US', 'United States'), +('194.117.107.22', '194.117.107.25', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.107.26', '194.117.107.28', 2147483647, 2147483647, 'US', 'United States'), +('194.117.107.29', '194.117.107.29', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.107.30', '194.117.107.34', 2147483647, 2147483647, 'US', 'United States'), +('194.117.107.35', '194.117.107.35', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.107.36', '194.117.107.36', 2147483647, 2147483647, 'US', 'United States'), +('194.117.107.37', '194.117.107.37', 2147483647, 2147483647, 'BR', 'Brazil'), +('194.117.107.38', '194.117.107.49', 2147483647, 2147483647, 'US', 'United States'), +('194.117.107.50', '194.117.107.50', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('194.117.107.51', '194.117.107.57', 2147483647, 2147483647, 'US', 'United States'), +('194.117.107.58', '194.117.107.60', 2147483647, 2147483647, 'MX', 'Mexico'), +('194.117.107.61', '194.117.107.64', 2147483647, 2147483647, 'US', 'United States'), +('194.117.107.65', '194.117.107.67', 2147483647, 2147483647, 'BR', 'Brazil'), +('194.117.107.68', '194.117.107.68', 2147483647, 2147483647, 'US', 'United States'), +('194.117.107.69', '194.117.107.69', 2147483647, 2147483647, 'BR', 'Brazil'), +('194.117.107.70', '194.117.107.71', 2147483647, 2147483647, 'US', 'United States'), +('194.117.107.72', '194.117.107.72', 2147483647, 2147483647, 'CA', 'Canada'), +('194.117.107.73', '194.117.107.73', 2147483647, 2147483647, 'US', 'United States'), +('194.117.107.74', '194.117.107.74', 2147483647, 2147483647, 'BR', 'Brazil'), +('194.117.107.75', '194.117.107.75', 2147483647, 2147483647, 'US', 'United States'), +('194.117.107.76', '194.117.107.76', 2147483647, 2147483647, 'MX', 'Mexico'), +('194.117.107.77', '194.117.107.77', 2147483647, 2147483647, 'BR', 'Brazil'), +('194.117.107.78', '194.117.107.79', 2147483647, 2147483647, 'US', 'United States'), +('194.117.107.80', '194.117.107.80', 2147483647, 2147483647, 'BR', 'Brazil'), +('194.117.107.81', '194.117.107.82', 2147483647, 2147483647, 'US', 'United States'), +('194.117.107.83', '194.117.107.84', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.107.85', '194.117.107.86', 2147483647, 2147483647, 'BR', 'Brazil'), +('194.117.107.87', '194.117.107.87', 2147483647, 2147483647, 'MX', 'Mexico'), +('194.117.107.88', '194.117.107.132', 2147483647, 2147483647, 'US', 'United States'), +('194.117.107.133', '194.117.107.133', 2147483647, 2147483647, 'BR', 'Brazil'), +('194.117.107.134', '194.117.107.159', 2147483647, 2147483647, 'US', 'United States'), +('194.117.107.160', '194.117.107.160', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.107.161', '194.117.107.166', 2147483647, 2147483647, 'US', 'United States'), +('194.117.107.167', '194.117.107.167', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.107.168', '194.117.107.177', 2147483647, 2147483647, 'US', 'United States'), +('194.117.107.178', '194.117.107.178', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.107.179', '194.117.107.181', 2147483647, 2147483647, 'US', 'United States'), +('194.117.107.182', '194.117.107.182', 2147483647, 2147483647, 'MX', 'Mexico'), +('194.117.107.183', '194.117.107.183', 2147483647, 2147483647, 'BR', 'Brazil'), +('194.117.107.184', '194.117.107.184', 2147483647, 2147483647, 'MX', 'Mexico'), +('194.117.107.185', '194.117.107.193', 2147483647, 2147483647, 'US', 'United States'), +('194.117.107.194', '194.117.107.197', 2147483647, 2147483647, 'BR', 'Brazil'), +('194.117.107.198', '194.117.107.201', 2147483647, 2147483647, 'US', 'United States'), +('194.117.107.202', '194.117.107.202', 2147483647, 2147483647, 'BR', 'Brazil'), +('194.117.107.203', '194.117.107.205', 2147483647, 2147483647, 'US', 'United States'), +('194.117.107.206', '194.117.107.206', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.107.207', '194.117.107.214', 2147483647, 2147483647, 'US', 'United States'), +('194.117.107.215', '194.117.107.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.108.0', '194.117.108.3', 2147483647, 2147483647, 'MU', 'Mauritius'), +('194.117.108.4', '194.117.108.7', 2147483647, 2147483647, 'US', 'United States'), +('194.117.108.8', '194.117.108.11', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.108.12', '194.117.108.15', 2147483647, 2147483647, 'US', 'United States'), +('194.117.108.16', '194.117.108.19', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.108.20', '194.117.108.23', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.108.24', '194.117.108.31', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.108.32', '194.117.108.39', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.108.40', '194.117.108.43', 2147483647, 2147483647, 'FR', 'France'), +('194.117.108.44', '194.117.108.47', 2147483647, 2147483647, 'AR', 'Argentina'), +('194.117.108.48', '194.117.108.51', 2147483647, 2147483647, 'FR', 'France'), +('194.117.108.52', '194.117.108.55', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.117.108.56', '194.117.108.59', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.108.60', '194.117.108.63', 2147483647, 2147483647, 'MX', 'Mexico'), +('194.117.108.64', '194.117.108.67', 2147483647, 2147483647, 'US', 'United States'), +('194.117.108.68', '194.117.108.71', 2147483647, 2147483647, 'BR', 'Brazil'), +('194.117.108.72', '194.117.108.75', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.108.76', '194.117.108.79', 2147483647, 2147483647, 'FR', 'France'), +('194.117.108.80', '194.117.108.83', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.108.84', '194.117.108.87', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.108.88', '194.117.108.91', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.108.92', '194.117.108.95', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.108.96', '194.117.108.99', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.108.100', '194.117.108.103', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.108.104', '194.117.108.107', 2147483647, 2147483647, 'FR', 'France'), +('194.117.108.108', '194.117.108.111', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.108.112', '194.117.108.119', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.108.120', '194.117.108.123', 2147483647, 2147483647, 'US', 'United States'), +('194.117.108.124', '194.117.108.131', 2147483647, 2147483647, 'AT', 'Austria'), +('194.117.108.132', '194.117.108.135', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.108.136', '194.117.108.139', 2147483647, 2147483647, 'US', 'United States'), +('194.117.108.140', '194.117.108.143', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.117.108.144', '194.117.108.151', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.108.152', '194.117.108.155', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.108.156', '194.117.108.159', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.108.160', '194.117.108.163', 2147483647, 2147483647, 'US', 'United States'), +('194.117.108.164', '194.117.108.167', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.108.168', '194.117.108.171', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.108.172', '194.117.108.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.108.176', '194.117.108.179', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.108.180', '194.117.108.183', 2147483647, 2147483647, 'US', 'United States'), +('194.117.108.184', '194.117.108.187', 2147483647, 2147483647, 'FR', 'France'), +('194.117.108.188', '194.117.108.195', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.108.196', '194.117.108.199', 2147483647, 2147483647, 'FR', 'France'), +('194.117.108.200', '194.117.108.203', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.108.204', '194.117.108.207', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.108.208', '194.117.108.211', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.108.212', '194.117.108.215', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.108.216', '194.117.108.219', 2147483647, 2147483647, 'US', 'United States'), +('194.117.108.220', '194.117.108.223', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.108.224', '194.117.108.227', 2147483647, 2147483647, 'MX', 'Mexico'), +('194.117.108.228', '194.117.108.231', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.108.232', '194.117.108.235', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.108.236', '194.117.108.239', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.108.240', '194.117.108.243', 2147483647, 2147483647, 'FR', 'France'), +('194.117.108.244', '194.117.108.247', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.108.248', '194.117.108.251', 2147483647, 2147483647, 'US', 'United States'), +('194.117.108.252', '194.117.108.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.109.0', '194.117.109.7', 2147483647, 2147483647, 'US', 'United States'), +('194.117.109.8', '194.117.109.11', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.109.12', '194.117.109.39', 2147483647, 2147483647, 'US', 'United States'), +('194.117.109.40', '194.117.109.55', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.109.56', '194.117.109.71', 2147483647, 2147483647, 'US', 'United States'), +('194.117.109.72', '194.117.109.75', 2147483647, 2147483647, 'BR', 'Brazil'), +('194.117.109.76', '194.117.109.87', 2147483647, 2147483647, 'US', 'United States'), +('194.117.109.88', '194.117.109.91', 2147483647, 2147483647, 'IE', 'Ireland'), +('194.117.109.92', '194.117.109.111', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.109.112', '194.117.109.115', 2147483647, 2147483647, 'US', 'United States'), +('194.117.109.116', '194.117.109.119', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.109.120', '194.117.109.163', 2147483647, 2147483647, 'US', 'United States'), +('194.117.109.164', '194.117.109.167', 2147483647, 2147483647, 'BR', 'Brazil'), +('194.117.109.168', '194.117.109.171', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.109.172', '194.117.109.175', 2147483647, 2147483647, 'BR', 'Brazil'), +('194.117.109.176', '194.117.109.195', 2147483647, 2147483647, 'US', 'United States'), +('194.117.109.196', '194.117.109.199', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.109.200', '194.117.109.203', 2147483647, 2147483647, 'BR', 'Brazil'), +('194.117.109.204', '194.117.109.255', 2147483647, 2147483647, 'US', 'United States'), +('194.117.110.0', '194.117.110.7', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.110.8', '194.117.110.11', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.117.110.12', '194.117.110.15', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.110.16', '194.117.110.31', 2147483647, 2147483647, 'AE', 'United Arab Emirates'), +('194.117.110.32', '194.117.110.35', 2147483647, 2147483647, 'US', 'United States'), +('194.117.110.36', '194.117.110.39', 2147483647, 2147483647, 'IE', 'Ireland'), +('194.117.110.40', '194.117.110.43', 2147483647, 2147483647, 'FR', 'France'), +('194.117.110.44', '194.117.110.47', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.110.48', '194.117.110.63', 2147483647, 2147483647, 'RO', 'Romania'), +('194.117.110.64', '194.117.110.79', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.110.80', '194.117.110.95', 2147483647, 2147483647, 'TR', 'Turkey'), +('194.117.110.96', '194.117.110.99', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.117.110.100', '194.117.110.103', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.110.104', '194.117.110.107', 2147483647, 2147483647, 'PL', 'Poland'), +('194.117.110.108', '194.117.110.111', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.117.110.112', '194.117.110.115', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.110.116', '194.117.110.119', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('194.117.110.120', '194.117.110.127', 2147483647, 2147483647, 'CY', 'Cyprus'), +('194.117.110.128', '194.117.110.143', 2147483647, 2147483647, 'GR', 'Greece'), +('194.117.110.144', '194.117.110.159', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.110.160', '194.117.110.175', 2147483647, 2147483647, 'FR', 'France'), +('194.117.110.176', '194.117.110.187', 2147483647, 2147483647, 'US', 'United States'), +('194.117.110.188', '194.117.110.191', 2147483647, 2147483647, 'HU', 'Hungary'), +('194.117.110.192', '194.117.110.199', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.110.200', '194.117.110.207', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('194.117.110.208', '194.117.110.215', 2147483647, 2147483647, 'SG', 'Singapore'), +('194.117.110.216', '194.117.110.239', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.110.240', '194.117.110.243', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.110.244', '194.117.110.247', 2147483647, 2147483647, 'FR', 'France'), +('194.117.110.248', '194.117.110.251', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.110.252', '194.117.110.255', 2147483647, 2147483647, 'FR', 'France'), +('194.117.111.0', '194.117.111.7', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.111.8', '194.117.111.11', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.111.12', '194.117.111.15', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.111.16', '194.117.111.23', 2147483647, 2147483647, 'IL', 'Israel'), +('194.117.111.24', '194.117.111.27', 2147483647, 2147483647, 'PE', 'Peru'), +('194.117.111.28', '194.117.111.31', 2147483647, 2147483647, 'US', 'United States'), +('194.117.111.32', '194.117.111.35', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.111.36', '194.117.111.39', 2147483647, 2147483647, 'PL', 'Poland'), +('194.117.111.40', '194.117.111.43', 2147483647, 2147483647, 'US', 'United States'), +('194.117.111.44', '194.117.111.47', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.111.48', '194.117.111.51', 2147483647, 2147483647, 'FR', 'France'), +('194.117.111.52', '194.117.111.55', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.111.56', '194.117.111.59', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.117.111.60', '194.117.111.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.111.64', '194.117.111.71', 2147483647, 2147483647, 'US', 'United States'), +('194.117.111.72', '194.117.111.75', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.111.76', '194.117.111.79', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.117.111.80', '194.117.111.83', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.111.84', '194.117.111.87', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.111.88', '194.117.111.91', 2147483647, 2147483647, 'FR', 'France'), +('194.117.111.92', '194.117.111.95', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.111.96', '194.117.111.99', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.111.100', '194.117.111.103', 2147483647, 2147483647, 'AR', 'Argentina'), +('194.117.111.104', '194.117.111.107', 2147483647, 2147483647, 'US', 'United States'), +('194.117.111.108', '194.117.111.111', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.117.111.112', '194.117.111.115', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.111.116', '194.117.111.123', 2147483647, 2147483647, 'US', 'United States'), +('194.117.111.124', '194.117.111.127', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.117.111.128', '194.117.111.131', 2147483647, 2147483647, 'GR', 'Greece'), +('194.117.111.132', '194.117.111.139', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.111.140', '194.117.111.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.111.144', '194.117.111.147', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.111.148', '194.117.111.151', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.111.152', '194.117.111.155', 2147483647, 2147483647, 'AT', 'Austria'), +('194.117.111.156', '194.117.111.159', 2147483647, 2147483647, 'PT', 'Portugal'), +('194.117.111.160', '194.117.111.163', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.111.164', '194.117.111.167', 2147483647, 2147483647, 'US', 'United States'), +('194.117.111.168', '194.117.111.171', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.111.172', '194.117.111.175', 2147483647, 2147483647, 'NA', 'Namibia'), +('194.117.111.176', '194.117.111.179', 2147483647, 2147483647, 'US', 'United States'), +('194.117.111.180', '194.117.111.183', 2147483647, 2147483647, 'CL', 'Chile'), +('194.117.111.184', '194.117.111.191', 2147483647, 2147483647, 'FR', 'France'), +('194.117.111.192', '194.117.111.195', 2147483647, 2147483647, 'GR', 'Greece'), +('194.117.111.196', '194.117.111.199', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.117.111.200', '194.117.111.203', 2147483647, 2147483647, 'FR', 'France'), +('194.117.111.204', '194.117.111.207', 2147483647, 2147483647, 'US', 'United States'), +('194.117.111.208', '194.117.111.211', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.111.212', '194.117.111.215', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.111.216', '194.117.111.219', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.111.220', '194.117.111.223', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.111.224', '194.117.111.227', 2147483647, 2147483647, 'US', 'United States'), +('194.117.111.228', '194.117.111.235', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.111.236', '194.117.111.239', 2147483647, 2147483647, 'US', 'United States'), +('194.117.111.240', '194.117.111.243', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.111.244', '194.117.111.247', 2147483647, 2147483647, 'CA', 'Canada'), +('194.117.111.248', '194.117.111.251', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.117.111.252', '194.117.112.3', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.112.4', '194.117.112.7', 2147483647, 2147483647, 'ZA', 'South Africa'), +('194.117.112.8', '194.117.112.11', 2147483647, 2147483647, 'US', 'United States'), +('194.117.112.12', '194.117.112.15', 2147483647, 2147483647, 'DO', 'Dominican Republic'), +('194.117.112.16', '194.117.112.19', 2147483647, 2147483647, 'US', 'United States'), +('194.117.112.20', '194.117.112.27', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.112.28', '194.117.112.31', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.117.112.32', '194.117.112.35', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.112.36', '194.117.112.39', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.112.40', '194.117.112.43', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.112.44', '194.117.112.51', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.112.52', '194.117.112.55', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.112.56', '194.117.112.63', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.112.64', '194.117.112.67', 2147483647, 2147483647, 'AR', 'Argentina'), +('194.117.112.68', '194.117.112.75', 2147483647, 2147483647, 'US', 'United States'), +('194.117.112.76', '194.117.112.79', 2147483647, 2147483647, 'PT', 'Portugal'), +('194.117.112.80', '194.117.112.83', 2147483647, 2147483647, 'US', 'United States'), +('194.117.112.84', '194.117.112.87', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.112.88', '194.117.112.99', 2147483647, 2147483647, 'US', 'United States'), +('194.117.112.100', '194.117.112.103', 2147483647, 2147483647, 'SK', 'Slovakia'), +('194.117.112.104', '194.117.112.107', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.112.108', '194.117.112.111', 2147483647, 2147483647, 'AT', 'Austria'), +('194.117.112.112', '194.117.112.115', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.112.116', '194.117.112.123', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.112.124', '194.117.112.127', 2147483647, 2147483647, 'US', 'United States'), +('194.117.112.128', '194.117.112.131', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.112.132', '194.117.112.135', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.112.136', '194.117.112.139', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.112.140', '194.117.112.143', 2147483647, 2147483647, 'US', 'United States'), +('194.117.112.144', '194.117.112.147', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.112.148', '194.117.112.151', 2147483647, 2147483647, 'AT', 'Austria'), +('194.117.112.152', '194.117.112.155', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.112.156', '194.117.112.159', 2147483647, 2147483647, 'AT', 'Austria'), +('194.117.112.160', '194.117.112.167', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.112.168', '194.117.112.171', 2147483647, 2147483647, 'CA', 'Canada'), +('194.117.112.172', '194.117.112.175', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.117.112.176', '194.117.112.179', 2147483647, 2147483647, 'SK', 'Slovakia'), +('194.117.112.180', '194.117.112.183', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.112.184', '194.117.112.187', 2147483647, 2147483647, 'CA', 'Canada'), +('194.117.112.188', '194.117.112.195', 2147483647, 2147483647, 'US', 'United States'), +('194.117.112.196', '194.117.112.199', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.112.200', '194.117.112.203', 2147483647, 2147483647, 'US', 'United States'), +('194.117.112.204', '194.117.112.207', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.117.112.208', '194.117.112.211', 2147483647, 2147483647, 'US', 'United States'), +('194.117.112.212', '194.117.112.215', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.112.216', '194.117.112.219', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.112.220', '194.117.112.223', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.112.224', '194.117.112.227', 2147483647, 2147483647, 'US', 'United States'), +('194.117.112.228', '194.117.112.231', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.112.232', '194.117.112.235', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.112.236', '194.117.112.239', 2147483647, 2147483647, 'MX', 'Mexico'), +('194.117.112.240', '194.117.112.243', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.112.244', '194.117.112.247', 2147483647, 2147483647, 'IL', 'Israel'), +('194.117.112.248', '194.117.112.251', 2147483647, 2147483647, 'US', 'United States'), +('194.117.112.252', '194.117.112.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.113.0', '194.117.113.3', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.117.113.4', '194.117.113.7', 2147483647, 2147483647, 'AR', 'Argentina'), +('194.117.113.8', '194.117.113.11', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.113.12', '194.117.113.15', 2147483647, 2147483647, 'FR', 'France'), +('194.117.113.16', '194.117.113.23', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.113.24', '194.117.113.27', 2147483647, 2147483647, 'US', 'United States'), +('194.117.113.28', '194.117.113.31', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.113.32', '194.117.113.43', 2147483647, 2147483647, 'US', 'United States'), +('194.117.113.44', '194.117.113.47', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.113.48', '194.117.113.51', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.113.52', '194.117.113.59', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.113.60', '194.117.113.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.113.64', '194.117.113.67', 2147483647, 2147483647, 'SK', 'Slovakia'), +('194.117.113.68', '194.117.113.71', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.113.72', '194.117.113.75', 2147483647, 2147483647, 'TR', 'Turkey'), +('194.117.113.76', '194.117.113.79', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.113.80', '194.117.113.83', 2147483647, 2147483647, 'US', 'United States'), +('194.117.113.84', '194.117.113.91', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.113.92', '194.117.113.95', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.117.113.96', '194.117.113.99', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.113.100', '194.117.113.103', 2147483647, 2147483647, 'ZA', 'South Africa'), +('194.117.113.104', '194.117.113.107', 2147483647, 2147483647, 'US', 'United States'), +('194.117.113.108', '194.117.113.111', 2147483647, 2147483647, 'FR', 'France'), +('194.117.113.112', '194.117.113.123', 2147483647, 2147483647, 'US', 'United States'), +('194.117.113.124', '194.117.113.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.113.128', '194.117.113.131', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.117.113.132', '194.117.113.135', 2147483647, 2147483647, 'AT', 'Austria'), +('194.117.113.136', '194.117.113.139', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.113.140', '194.117.113.143', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.113.144', '194.117.113.147', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.113.148', '194.117.113.151', 2147483647, 2147483647, 'FR', 'France'), +('194.117.113.152', '194.117.113.155', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.113.156', '194.117.113.163', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.113.164', '194.117.113.171', 2147483647, 2147483647, 'US', 'United States'), +('194.117.113.172', '194.117.113.175', 2147483647, 2147483647, 'FR', 'France'), +('194.117.113.176', '194.117.113.179', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.113.180', '194.117.113.183', 2147483647, 2147483647, 'FR', 'France'), +('194.117.113.184', '194.117.113.187', 2147483647, 2147483647, 'US', 'United States'), +('194.117.113.188', '194.117.113.191', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.113.192', '194.117.113.195', 2147483647, 2147483647, 'CA', 'Canada'), +('194.117.113.196', '194.117.113.199', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.113.200', '194.117.113.203', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.113.204', '194.117.113.207', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.117.113.208', '194.117.113.211', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.113.212', '194.117.113.215', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.113.216', '194.117.113.219', 2147483647, 2147483647, 'US', 'United States'), +('194.117.113.220', '194.117.113.223', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.113.224', '194.117.113.227', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.117.113.228', '194.117.113.235', 2147483647, 2147483647, 'US', 'United States'), +('194.117.113.236', '194.117.113.239', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.113.240', '194.117.113.243', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.113.244', '194.117.113.247', 2147483647, 2147483647, 'US', 'United States'), +('194.117.113.248', '194.117.113.251', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.113.252', '194.117.113.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.114.0', '194.117.114.3', 2147483647, 2147483647, 'CA', 'Canada'), +('194.117.114.4', '194.117.114.7', 2147483647, 2147483647, 'TR', 'Turkey'), +('194.117.114.8', '194.117.114.27', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.114.28', '194.117.114.31', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('194.117.114.32', '194.117.114.39', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.114.40', '194.117.114.43', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.114.44', '194.117.114.47', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.114.48', '194.117.114.51', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.114.52', '194.117.114.55', 2147483647, 2147483647, 'US', 'United States'), +('194.117.114.56', '194.117.114.59', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.114.60', '194.117.114.63', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.114.64', '194.117.114.67', 2147483647, 2147483647, 'US', 'United States'), +('194.117.114.68', '194.117.114.83', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.114.84', '194.117.114.87', 2147483647, 2147483647, 'FR', 'France'), +('194.117.114.88', '194.117.114.91', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.114.92', '194.117.114.95', 2147483647, 2147483647, 'HU', 'Hungary'), +('194.117.114.96', '194.117.114.99', 2147483647, 2147483647, 'SK', 'Slovakia'), +('194.117.114.100', '194.117.114.103', 2147483647, 2147483647, 'FR', 'France'), +('194.117.114.104', '194.117.114.107', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.114.108', '194.117.114.111', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.114.112', '194.117.114.115', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.114.116', '194.117.114.119', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.114.120', '194.117.114.123', 2147483647, 2147483647, 'US', 'United States'), +('194.117.114.124', '194.117.114.127', 2147483647, 2147483647, 'AT', 'Austria'), +('194.117.114.128', '194.117.114.135', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.114.136', '194.117.114.139', 2147483647, 2147483647, 'AT', 'Austria'), +('194.117.114.140', '194.117.114.151', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.114.152', '194.117.114.155', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.114.156', '194.117.114.171', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.114.172', '194.117.114.175', 2147483647, 2147483647, 'US', 'United States'), +('194.117.114.176', '194.117.114.179', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.117.114.180', '194.117.114.183', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.114.184', '194.117.114.187', 2147483647, 2147483647, 'FR', 'France'), +('194.117.114.188', '194.117.114.195', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.114.196', '194.117.114.199', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.114.200', '194.117.114.203', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.114.204', '194.117.114.207', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.114.208', '194.117.114.211', 2147483647, 2147483647, 'CA', 'Canada'), +('194.117.114.212', '194.117.114.215', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.114.216', '194.117.114.219', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.114.220', '194.117.114.223', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.114.224', '194.117.114.235', 2147483647, 2147483647, 'FR', 'France'), +('194.117.114.236', '194.117.114.239', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.117.114.240', '194.117.114.243', 2147483647, 2147483647, 'US', 'United States'), +('194.117.114.244', '194.117.114.247', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.114.248', '194.117.115.3', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.115.4', '194.117.115.7', 2147483647, 2147483647, 'US', 'United States'), +('194.117.115.8', '194.117.115.11', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.115.12', '194.117.115.15', 2147483647, 2147483647, 'AT', 'Austria'), +('194.117.115.16', '194.117.115.19', 2147483647, 2147483647, 'PT', 'Portugal'), +('194.117.115.20', '194.117.115.27', 2147483647, 2147483647, 'FR', 'France'), +('194.117.115.28', '194.117.115.31', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.115.32', '194.117.115.35', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.115.36', '194.117.115.39', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.117.115.40', '194.117.115.51', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.115.52', '194.117.115.55', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.115.56', '194.117.115.75', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.115.76', '194.117.115.79', 2147483647, 2147483647, 'SK', 'Slovakia'), +('194.117.115.80', '194.117.115.91', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.115.92', '194.117.115.95', 2147483647, 2147483647, 'FR', 'France'), +('194.117.115.96', '194.117.115.99', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.115.100', '194.117.115.103', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.115.104', '194.117.115.107', 2147483647, 2147483647, 'US', 'United States'), +('194.117.115.108', '194.117.115.111', 2147483647, 2147483647, 'FR', 'France'), +('194.117.115.112', '194.117.115.115', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.115.116', '194.117.115.119', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.115.120', '194.117.115.131', 2147483647, 2147483647, 'US', 'United States'), +('194.117.115.132', '194.117.115.135', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.115.136', '194.117.115.139', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.115.140', '194.117.115.143', 2147483647, 2147483647, 'PL', 'Poland'), +('194.117.115.144', '194.117.115.147', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.115.148', '194.117.115.151', 2147483647, 2147483647, 'US', 'United States'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('194.117.115.152', '194.117.115.155', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.115.156', '194.117.115.159', 2147483647, 2147483647, 'AT', 'Austria'), +('194.117.115.160', '194.117.115.163', 2147483647, 2147483647, 'US', 'United States'), +('194.117.115.164', '194.117.115.167', 2147483647, 2147483647, 'KW', 'Kuwait'), +('194.117.115.168', '194.117.115.171', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.117.115.172', '194.117.115.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.115.176', '194.117.115.183', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.115.184', '194.117.115.187', 2147483647, 2147483647, 'CA', 'Canada'), +('194.117.115.188', '194.117.115.191', 2147483647, 2147483647, 'US', 'United States'), +('194.117.115.192', '194.117.115.195', 2147483647, 2147483647, 'AR', 'Argentina'), +('194.117.115.196', '194.117.115.199', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.115.200', '194.117.115.203', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.115.204', '194.117.115.207', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.115.208', '194.117.115.211', 2147483647, 2147483647, 'GR', 'Greece'), +('194.117.115.212', '194.117.115.215', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.115.216', '194.117.115.219', 2147483647, 2147483647, 'US', 'United States'), +('194.117.115.220', '194.117.115.223', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.115.224', '194.117.115.227', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.115.228', '194.117.115.231', 2147483647, 2147483647, 'FR', 'France'), +('194.117.115.232', '194.117.115.235', 2147483647, 2147483647, 'BM', 'Bermuda'), +('194.117.115.236', '194.117.115.239', 2147483647, 2147483647, 'US', 'United States'), +('194.117.115.240', '194.117.115.243', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.117.115.244', '194.117.115.247', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.115.248', '194.117.115.251', 2147483647, 2147483647, 'FR', 'France'), +('194.117.115.252', '194.117.115.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.116.0', '194.117.116.3', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.116.4', '194.117.116.7', 2147483647, 2147483647, 'HU', 'Hungary'), +('194.117.116.8', '194.117.116.15', 2147483647, 2147483647, 'US', 'United States'), +('194.117.116.16', '194.117.116.19', 2147483647, 2147483647, 'HU', 'Hungary'), +('194.117.116.20', '194.117.116.23', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.116.24', '194.117.116.27', 2147483647, 2147483647, 'CA', 'Canada'), +('194.117.116.28', '194.117.116.31', 2147483647, 2147483647, 'US', 'United States'), +('194.117.116.32', '194.117.116.35', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.116.36', '194.117.116.43', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.116.44', '194.117.116.47', 2147483647, 2147483647, 'PL', 'Poland'), +('194.117.116.48', '194.117.116.51', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('194.117.116.52', '194.117.116.55', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.116.56', '194.117.116.59', 2147483647, 2147483647, 'US', 'United States'), +('194.117.116.60', '194.117.116.63', 2147483647, 2147483647, 'FR', 'France'), +('194.117.116.64', '194.117.116.67', 2147483647, 2147483647, 'AT', 'Austria'), +('194.117.116.68', '194.117.116.71', 2147483647, 2147483647, 'US', 'United States'), +('194.117.116.72', '194.117.116.75', 2147483647, 2147483647, 'FR', 'France'), +('194.117.116.76', '194.117.116.87', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.116.88', '194.117.116.91', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.116.92', '194.117.116.95', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.116.96', '194.117.116.99', 2147483647, 2147483647, 'US', 'United States'), +('194.117.116.100', '194.117.116.103', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('194.117.116.104', '194.117.116.107', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.117.116.108', '194.117.116.115', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.116.116', '194.117.116.119', 2147483647, 2147483647, 'US', 'United States'), +('194.117.116.120', '194.117.116.127', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.116.128', '194.117.116.131', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.116.132', '194.117.116.135', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.117.116.136', '194.117.116.139', 2147483647, 2147483647, 'AR', 'Argentina'), +('194.117.116.140', '194.117.116.143', 2147483647, 2147483647, 'PT', 'Portugal'), +('194.117.116.144', '194.117.116.155', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.116.156', '194.117.116.159', 2147483647, 2147483647, 'AT', 'Austria'), +('194.117.116.160', '194.117.116.163', 2147483647, 2147483647, 'HU', 'Hungary'), +('194.117.116.164', '194.117.116.167', 2147483647, 2147483647, 'FR', 'France'), +('194.117.116.168', '194.117.116.171', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.117.116.172', '194.117.116.175', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.116.176', '194.117.116.187', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.116.188', '194.117.116.191', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.116.192', '194.117.116.195', 2147483647, 2147483647, 'FR', 'France'), +('194.117.116.196', '194.117.116.199', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.116.200', '194.117.116.207', 2147483647, 2147483647, 'US', 'United States'), +('194.117.116.208', '194.117.116.211', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.116.212', '194.117.116.215', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.116.216', '194.117.116.231', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.116.232', '194.117.116.235', 2147483647, 2147483647, 'US', 'United States'), +('194.117.116.236', '194.117.116.239', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.117.116.240', '194.117.116.243', 2147483647, 2147483647, 'BR', 'Brazil'), +('194.117.116.244', '194.117.116.247', 2147483647, 2147483647, 'US', 'United States'), +('194.117.116.248', '194.117.116.251', 2147483647, 2147483647, 'CA', 'Canada'), +('194.117.116.252', '194.117.117.3', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.117.117.4', '194.117.117.7', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.117.8', '194.117.117.11', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.117.12', '194.117.117.15', 2147483647, 2147483647, 'NO', 'Norway'), +('194.117.117.16', '194.117.117.19', 2147483647, 2147483647, 'CA', 'Canada'), +('194.117.117.20', '194.117.117.23', 2147483647, 2147483647, 'FR', 'France'), +('194.117.117.24', '194.117.117.27', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.117.28', '194.117.117.31', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.117.32', '194.117.117.35', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.117.36', '194.117.117.39', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.117.40', '194.117.117.43', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.117.44', '194.117.117.47', 2147483647, 2147483647, 'US', 'United States'), +('194.117.117.48', '194.117.117.51', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.117.52', '194.117.117.55', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.117.56', '194.117.117.59', 2147483647, 2147483647, 'FR', 'France'), +('194.117.117.60', '194.117.117.63', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.117.64', '194.117.117.67', 2147483647, 2147483647, 'AT', 'Austria'), +('194.117.117.68', '194.117.117.71', 2147483647, 2147483647, 'VE', 'Venezuela'), +('194.117.117.72', '194.117.117.75', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.117.76', '194.117.117.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.117.80', '194.117.117.87', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.117.88', '194.117.117.91', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.117.92', '194.117.117.103', 2147483647, 2147483647, 'US', 'United States'), +('194.117.117.104', '194.117.117.107', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.117.108', '194.117.117.119', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.117.120', '194.117.117.123', 2147483647, 2147483647, 'FR', 'France'), +('194.117.117.124', '194.117.117.127', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.117.128', '194.117.117.131', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.117.132', '194.117.117.135', 2147483647, 2147483647, 'FR', 'France'), +('194.117.117.136', '194.117.117.139', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.117.140', '194.117.117.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.117.144', '194.117.117.159', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.117.160', '194.117.117.163', 2147483647, 2147483647, 'AT', 'Austria'), +('194.117.117.164', '194.117.117.167', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.117.168', '194.117.117.171', 2147483647, 2147483647, 'BR', 'Brazil'), +('194.117.117.172', '194.117.117.175', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.117.176', '194.117.117.183', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.117.184', '194.117.117.191', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.117.192', '194.117.117.195', 2147483647, 2147483647, 'US', 'United States'), +('194.117.117.196', '194.117.117.199', 2147483647, 2147483647, 'VE', 'Venezuela'), +('194.117.117.200', '194.117.117.203', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.117.204', '194.117.117.207', 2147483647, 2147483647, 'CA', 'Canada'), +('194.117.117.208', '194.117.117.211', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('194.117.117.212', '194.117.117.215', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.117.216', '194.117.117.219', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.117.220', '194.117.117.223', 2147483647, 2147483647, 'US', 'United States'), +('194.117.117.224', '194.117.117.227', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.117.228', '194.117.117.231', 2147483647, 2147483647, 'FR', 'France'), +('194.117.117.232', '194.117.117.235', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.117.117.236', '194.117.117.239', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.117.240', '194.117.117.243', 2147483647, 2147483647, 'CA', 'Canada'), +('194.117.117.244', '194.117.117.251', 2147483647, 2147483647, 'US', 'United States'), +('194.117.117.252', '194.117.117.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.118.0', '194.117.118.3', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.118.4', '194.117.118.7', 2147483647, 2147483647, 'US', 'United States'), +('194.117.118.8', '194.117.118.11', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.118.12', '194.117.118.15', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.118.16', '194.117.118.19', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.118.20', '194.117.118.23', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.118.24', '194.117.118.27', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.118.28', '194.117.118.31', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.118.32', '194.117.118.35', 2147483647, 2147483647, 'CA', 'Canada'), +('194.117.118.36', '194.117.118.39', 2147483647, 2147483647, 'US', 'United States'), +('194.117.118.40', '194.117.118.43', 2147483647, 2147483647, 'TR', 'Turkey'), +('194.117.118.44', '194.117.118.47', 2147483647, 2147483647, 'HU', 'Hungary'), +('194.117.118.48', '194.117.118.59', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.118.60', '194.117.118.67', 2147483647, 2147483647, 'US', 'United States'), +('194.117.118.68', '194.117.118.71', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.118.72', '194.117.118.75', 2147483647, 2147483647, 'US', 'United States'), +('194.117.118.76', '194.117.118.79', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.118.80', '194.117.118.83', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.118.84', '194.117.118.87', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.118.88', '194.117.118.91', 2147483647, 2147483647, 'US', 'United States'), +('194.117.118.92', '194.117.118.95', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.118.96', '194.117.118.99', 2147483647, 2147483647, 'US', 'United States'), +('194.117.118.100', '194.117.118.103', 2147483647, 2147483647, 'HU', 'Hungary'), +('194.117.118.104', '194.117.118.107', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.118.108', '194.117.118.111', 2147483647, 2147483647, 'US', 'United States'), +('194.117.118.112', '194.117.118.115', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.118.116', '194.117.118.119', 2147483647, 2147483647, 'CA', 'Canada'), +('194.117.118.120', '194.117.118.131', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.118.132', '194.117.118.135', 2147483647, 2147483647, 'US', 'United States'), +('194.117.118.136', '194.117.118.139', 2147483647, 2147483647, 'CA', 'Canada'), +('194.117.118.140', '194.117.118.143', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.118.144', '194.117.118.147', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.118.148', '194.117.118.163', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.118.164', '194.117.118.167', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.118.168', '194.117.118.175', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.118.176', '194.117.118.179', 2147483647, 2147483647, 'US', 'United States'), +('194.117.118.180', '194.117.118.183', 2147483647, 2147483647, 'FR', 'France'), +('194.117.118.184', '194.117.118.187', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.118.188', '194.117.118.191', 2147483647, 2147483647, 'PE', 'Peru'), +('194.117.118.192', '194.117.118.195', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.118.196', '194.117.118.203', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.118.204', '194.117.118.207', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.117.118.208', '194.117.118.211', 2147483647, 2147483647, 'AT', 'Austria'), +('194.117.118.212', '194.117.118.215', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.118.216', '194.117.118.219', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.118.220', '194.117.118.223', 2147483647, 2147483647, 'IS', 'Iceland'), +('194.117.118.224', '194.117.118.231', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.118.232', '194.117.118.239', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.118.240', '194.117.118.243', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.118.244', '194.117.118.247', 2147483647, 2147483647, 'KE', 'Kenya'), +('194.117.118.248', '194.117.119.1', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.119.2', '194.117.119.2', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.119.3', '194.117.119.3', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('194.117.119.4', '194.117.119.4', 2147483647, 2147483647, 'TR', 'Turkey'), +('194.117.119.5', '194.117.119.5', 2147483647, 2147483647, 'FR', 'France'), +('194.117.119.6', '194.117.119.8', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.119.9', '194.117.119.9', 2147483647, 2147483647, 'AT', 'Austria'), +('194.117.119.10', '194.117.119.10', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.119.11', '194.117.119.11', 2147483647, 2147483647, 'HU', 'Hungary'), +('194.117.119.12', '194.117.119.12', 2147483647, 2147483647, 'PT', 'Portugal'), +('194.117.119.13', '194.117.119.13', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('194.117.119.14', '194.117.119.14', 2147483647, 2147483647, 'PT', 'Portugal'), +('194.117.119.15', '194.117.119.15', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.119.16', '194.117.119.16', 2147483647, 2147483647, 'PL', 'Poland'), +('194.117.119.17', '194.117.119.17', 2147483647, 2147483647, 'KE', 'Kenya'), +('194.117.119.18', '194.117.119.18', 2147483647, 2147483647, 'TR', 'Turkey'), +('194.117.119.19', '194.117.119.19', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.119.20', '194.117.119.20', 2147483647, 2147483647, 'TR', 'Turkey'), +('194.117.119.21', '194.117.119.21', 2147483647, 2147483647, 'ZW', 'Zimbabwe'), +('194.117.119.22', '194.117.119.22', 2147483647, 2147483647, 'TR', 'Turkey'), +('194.117.119.23', '194.117.119.23', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.119.24', '194.117.119.24', 2147483647, 2147483647, 'TR', 'Turkey'), +('194.117.119.25', '194.117.119.25', 2147483647, 2147483647, 'PL', 'Poland'), +('194.117.119.26', '194.117.119.26', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.119.27', '194.117.119.27', 2147483647, 2147483647, 'TR', 'Turkey'), +('194.117.119.28', '194.117.119.28', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.119.29', '194.117.119.29', 2147483647, 2147483647, 'AE', 'United Arab Emirates'), +('194.117.119.30', '194.117.119.30', 2147483647, 2147483647, 'PT', 'Portugal'), +('194.117.119.31', '194.117.119.33', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.119.34', '194.117.119.34', 2147483647, 2147483647, 'TR', 'Turkey'), +('194.117.119.35', '194.117.119.35', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.119.36', '194.117.119.36', 2147483647, 2147483647, 'NO', 'Norway'), +('194.117.119.37', '194.117.119.37', 2147483647, 2147483647, 'NA', 'Namibia'), +('194.117.119.38', '194.117.119.38', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.119.39', '194.117.119.39', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('194.117.119.40', '194.117.119.40', 2147483647, 2147483647, 'NA', 'Namibia'), +('194.117.119.41', '194.117.119.41', 2147483647, 2147483647, 'AO', 'Angola'), +('194.117.119.42', '194.117.119.42', 2147483647, 2147483647, 'NA', 'Namibia'), +('194.117.119.43', '194.117.119.43', 2147483647, 2147483647, 'CY', 'Cyprus'), +('194.117.119.44', '194.117.119.44', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.119.45', '194.117.119.45', 2147483647, 2147483647, 'PT', 'Portugal'), +('194.117.119.46', '194.117.119.46', 2147483647, 2147483647, 'CY', 'Cyprus'), +('194.117.119.47', '194.117.119.47', 2147483647, 2147483647, 'GR', 'Greece'), +('194.117.119.48', '194.117.119.48', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.119.49', '194.117.119.49', 2147483647, 2147483647, 'HU', 'Hungary'), +('194.117.119.50', '194.117.119.50', 2147483647, 2147483647, 'FR', 'France'), +('194.117.119.51', '194.117.119.51', 2147483647, 2147483647, 'SK', 'Slovakia'), +('194.117.119.52', '194.117.119.52', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.119.53', '194.117.119.53', 2147483647, 2147483647, 'TR', 'Turkey'), +('194.117.119.54', '194.117.119.54', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.119.55', '194.117.119.55', 2147483647, 2147483647, 'TR', 'Turkey'), +('194.117.119.56', '194.117.119.57', 2147483647, 2147483647, 'HU', 'Hungary'), +('194.117.119.58', '194.117.119.58', 2147483647, 2147483647, 'TR', 'Turkey'), +('194.117.119.59', '194.117.119.59', 2147483647, 2147483647, 'MZ', 'Mozambique'), +('194.117.119.60', '194.117.119.60', 2147483647, 2147483647, 'FR', 'France'), +('194.117.119.61', '194.117.119.63', 2147483647, 2147483647, 'TR', 'Turkey'), +('194.117.119.64', '194.117.119.65', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.119.66', '194.117.119.66', 2147483647, 2147483647, 'GR', 'Greece'), +('194.117.119.67', '194.117.119.67', 2147483647, 2147483647, 'FR', 'France'), +('194.117.119.68', '194.117.119.68', 2147483647, 2147483647, 'KZ', 'Kazakstan'), +('194.117.119.69', '194.117.119.69', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.117.119.70', '194.117.119.70', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('194.117.119.71', '194.117.119.71', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.119.72', '194.117.119.72', 2147483647, 2147483647, 'PL', 'Poland'), +('194.117.119.73', '194.117.119.73', 2147483647, 2147483647, 'TR', 'Turkey'), +('194.117.119.74', '194.117.119.74', 2147483647, 2147483647, 'FR', 'France'), +('194.117.119.75', '194.117.119.75', 2147483647, 2147483647, 'CU', 'Cuba'), +('194.117.119.76', '194.117.119.76', 2147483647, 2147483647, 'TR', 'Turkey'), +('194.117.119.77', '194.117.119.77', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.119.78', '194.117.119.78', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.119.79', '194.117.119.79', 2147483647, 2147483647, 'IL', 'Israel'), +('194.117.119.80', '194.117.119.80', 2147483647, 2147483647, 'TR', 'Turkey'), +('194.117.119.81', '194.117.119.81', 2147483647, 2147483647, 'ZW', 'Zimbabwe'), +('194.117.119.82', '194.117.119.82', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('194.117.119.83', '194.117.119.83', 2147483647, 2147483647, 'FR', 'France'), +('194.117.119.84', '194.117.119.84', 2147483647, 2147483647, 'ZW', 'Zimbabwe'), +('194.117.119.85', '194.117.119.85', 2147483647, 2147483647, 'SK', 'Slovakia'), +('194.117.119.86', '194.117.119.86', 2147483647, 2147483647, 'TR', 'Turkey'), +('194.117.119.87', '194.117.119.87', 2147483647, 2147483647, 'KZ', 'Kazakstan'), +('194.117.119.88', '194.117.119.88', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.119.89', '194.117.119.89', 2147483647, 2147483647, 'PL', 'Poland'), +('194.117.119.90', '194.117.119.91', 2147483647, 2147483647, 'FR', 'France'), +('194.117.119.92', '194.117.119.92', 2147483647, 2147483647, 'GR', 'Greece'), +('194.117.119.93', '194.117.119.94', 2147483647, 2147483647, 'TR', 'Turkey'), +('194.117.119.95', '194.117.119.95', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.119.96', '194.117.119.96', 2147483647, 2147483647, 'TR', 'Turkey'), +('194.117.119.97', '194.117.119.97', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.119.98', '194.117.119.98', 2147483647, 2147483647, 'MZ', 'Mozambique'), +('194.117.119.99', '194.117.119.100', 2147483647, 2147483647, 'TR', 'Turkey'), +('194.117.119.101', '194.117.119.101', 2147483647, 2147483647, 'CN', 'China'), +('194.117.119.102', '194.117.119.102', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.119.103', '194.117.119.103', 2147483647, 2147483647, 'PL', 'Poland'), +('194.117.119.104', '194.117.119.104', 2147483647, 2147483647, 'MZ', 'Mozambique'), +('194.117.119.105', '194.117.119.105', 2147483647, 2147483647, 'PL', 'Poland'), +('194.117.119.106', '194.117.119.106', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.119.107', '194.117.119.107', 2147483647, 2147483647, 'PT', 'Portugal'), +('194.117.119.108', '194.117.119.108', 2147483647, 2147483647, 'TR', 'Turkey'), +('194.117.119.109', '194.117.119.109', 2147483647, 2147483647, 'NA', 'Namibia'), +('194.117.119.110', '194.117.119.110', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.119.111', '194.117.119.112', 2147483647, 2147483647, 'ZA', 'South Africa'), +('194.117.119.113', '194.117.119.114', 2147483647, 2147483647, 'NA', 'Namibia'), +('194.117.119.115', '194.117.119.127', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.119.128', '194.117.119.131', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.119.132', '194.117.119.135', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.119.136', '194.117.119.139', 2147483647, 2147483647, 'FR', 'France'), +('194.117.119.140', '194.117.119.143', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.117.119.144', '194.117.119.147', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.119.148', '194.117.119.151', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.119.152', '194.117.119.155', 2147483647, 2147483647, 'FR', 'France'), +('194.117.119.156', '194.117.119.159', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.119.160', '194.117.119.163', 2147483647, 2147483647, 'FR', 'France'), +('194.117.119.164', '194.117.119.167', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.119.168', '194.117.119.171', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.119.172', '194.117.119.175', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.119.176', '194.117.119.179', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.119.180', '194.117.119.183', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.119.184', '194.117.119.187', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.119.188', '194.117.119.191', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.119.192', '194.117.119.195', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.119.196', '194.117.119.219', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.119.220', '194.117.119.223', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.119.224', '194.117.119.227', 2147483647, 2147483647, 'PT', 'Portugal'), +('194.117.119.228', '194.117.119.231', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.119.232', '194.117.119.235', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.119.236', '194.117.119.239', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.117.119.240', '194.117.119.243', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.119.244', '194.117.119.247', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.117.119.248', '194.117.119.251', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.119.252', '194.117.119.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.120.0', '194.117.120.1', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.120.2', '194.117.120.2', 2147483647, 2147483647, 'PL', 'Poland'), +('194.117.120.3', '194.117.120.7', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.120.8', '194.117.120.8', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.120.9', '194.117.120.9', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.120.10', '194.117.120.10', 2147483647, 2147483647, 'PT', 'Portugal'), +('194.117.120.11', '194.117.120.11', 2147483647, 2147483647, 'AO', 'Angola'), +('194.117.120.12', '194.117.120.12', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.117.120.13', '194.117.120.13', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.117.120.14', '194.117.120.14', 2147483647, 2147483647, 'AT', 'Austria'), +('194.117.120.15', '194.117.120.15', 2147483647, 2147483647, 'TR', 'Turkey'), +('194.117.120.16', '194.117.120.16', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.120.17', '194.117.120.17', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.117.120.18', '194.117.120.18', 2147483647, 2147483647, 'FR', 'France'), +('194.117.120.19', '194.117.120.19', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.120.20', '194.117.120.20', 2147483647, 2147483647, 'FR', 'France'), +('194.117.120.21', '194.117.120.22', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.120.23', '194.117.120.24', 2147483647, 2147483647, 'FR', 'France'), +('194.117.120.25', '194.117.120.25', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.120.26', '194.117.120.26', 2147483647, 2147483647, 'FR', 'France'), +('194.117.120.27', '194.117.120.27', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.120.28', '194.117.120.28', 2147483647, 2147483647, 'PT', 'Portugal'), +('194.117.120.29', '194.117.120.30', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.120.31', '194.117.120.31', 2147483647, 2147483647, 'HU', 'Hungary'), +('194.117.120.32', '194.117.120.32', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.120.33', '194.117.120.33', 2147483647, 2147483647, 'NO', 'Norway'), +('194.117.120.34', '194.117.120.34', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.120.35', '194.117.120.35', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.120.36', '194.117.120.37', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.120.38', '194.117.120.38', 2147483647, 2147483647, 'PT', 'Portugal'), +('194.117.120.39', '194.117.120.40', 2147483647, 2147483647, 'FR', 'France'), +('194.117.120.41', '194.117.120.41', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.120.42', '194.117.120.42', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.120.43', '194.117.120.43', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.120.44', '194.117.120.45', 2147483647, 2147483647, 'FR', 'France'), +('194.117.120.46', '194.117.120.46', 2147483647, 2147483647, 'AE', 'United Arab Emirates'), +('194.117.120.47', '194.117.120.47', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.120.48', '194.117.120.48', 2147483647, 2147483647, 'AE', 'United Arab Emirates'), +('194.117.120.49', '194.117.120.49', 2147483647, 2147483647, 'ZA', 'South Africa'), +('194.117.120.50', '194.117.120.50', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.120.51', '194.117.120.51', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.120.52', '194.117.120.52', 2147483647, 2147483647, 'GR', 'Greece'), +('194.117.120.53', '194.117.120.53', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.120.54', '194.117.120.54', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.120.55', '194.117.120.55', 2147483647, 2147483647, 'HU', 'Hungary'), +('194.117.120.56', '194.117.120.57', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.120.58', '194.117.120.58', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.120.59', '194.117.120.60', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.120.61', '194.117.120.61', 2147483647, 2147483647, 'PT', 'Portugal'), +('194.117.120.62', '194.117.120.62', 2147483647, 2147483647, 'HU', 'Hungary'), +('194.117.120.63', '194.117.120.63', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.120.64', '194.117.120.64', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.120.65', '194.117.120.65', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.120.66', '194.117.120.66', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.120.67', '194.117.120.67', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('194.117.120.68', '194.117.120.68', 2147483647, 2147483647, 'FI', 'Finland'), +('194.117.120.69', '194.117.120.70', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.120.71', '194.117.120.76', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.120.77', '194.117.120.77', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.120.78', '194.117.120.78', 2147483647, 2147483647, 'PL', 'Poland'), +('194.117.120.79', '194.117.120.79', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.117.120.80', '194.117.120.80', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('194.117.120.81', '194.117.120.81', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.120.82', '194.117.120.82', 2147483647, 2147483647, 'AT', 'Austria'), +('194.117.120.83', '194.117.120.83', 2147483647, 2147483647, 'FR', 'France'), +('194.117.120.84', '194.117.120.85', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.120.86', '194.117.120.86', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.120.87', '194.117.120.87', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('194.117.120.88', '194.117.120.88', 2147483647, 2147483647, 'FR', 'France'), +('194.117.120.89', '194.117.120.89', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.120.90', '194.117.120.90', 2147483647, 2147483647, 'NO', 'Norway'), +('194.117.120.91', '194.117.120.92', 2147483647, 2147483647, 'FR', 'France'), +('194.117.120.93', '194.117.120.93', 2147483647, 2147483647, 'PT', 'Portugal'), +('194.117.120.94', '194.117.120.94', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.120.95', '194.117.120.95', 2147483647, 2147483647, 'HU', 'Hungary'), +('194.117.120.96', '194.117.120.96', 2147483647, 2147483647, 'RE', 'Reunion'), +('194.117.120.97', '194.117.120.97', 2147483647, 2147483647, 'AT', 'Austria'), +('194.117.120.98', '194.117.120.98', 2147483647, 2147483647, 'PT', 'Portugal'), +('194.117.120.99', '194.117.120.99', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.120.100', '194.117.120.101', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.120.102', '194.117.120.102', 2147483647, 2147483647, 'ZA', 'South Africa'), +('194.117.120.103', '194.117.120.103', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.120.104', '194.117.120.104', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.117.120.105', '194.117.120.105', 2147483647, 2147483647, 'FR', 'France'), +('194.117.120.106', '194.117.120.106', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.120.107', '194.117.120.107', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.120.108', '194.117.120.108', 2147483647, 2147483647, 'AT', 'Austria'), +('194.117.120.109', '194.117.120.109', 2147483647, 2147483647, 'PT', 'Portugal'), +('194.117.120.110', '194.117.120.111', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.120.112', '194.117.120.112', 2147483647, 2147483647, 'ZA', 'South Africa'), +('194.117.120.113', '194.117.120.113', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.120.114', '194.117.120.114', 2147483647, 2147483647, 'TR', 'Turkey'), +('194.117.120.115', '194.117.120.115', 2147483647, 2147483647, 'FR', 'France'), +('194.117.120.116', '194.117.120.116', 2147483647, 2147483647, 'IL', 'Israel'), +('194.117.120.117', '194.117.120.117', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.120.118', '194.117.120.118', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.117.120.119', '194.117.120.119', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.120.120', '194.117.120.120', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.120.121', '194.117.120.121', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.120.122', '194.117.120.122', 2147483647, 2147483647, 'HU', 'Hungary'), +('194.117.120.123', '194.117.120.123', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.120.124', '194.117.120.124', 2147483647, 2147483647, 'CY', 'Cyprus'), +('194.117.120.125', '194.117.120.129', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.120.130', '194.117.120.130', 2147483647, 2147483647, 'FR', 'France'), +('194.117.120.131', '194.117.120.131', 2147483647, 2147483647, 'HU', 'Hungary'), +('194.117.120.132', '194.117.120.132', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.120.133', '194.117.120.133', 2147483647, 2147483647, 'FR', 'France'), +('194.117.120.134', '194.117.120.134', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.120.135', '194.117.120.135', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.120.136', '194.117.120.136', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.120.137', '194.117.120.137', 2147483647, 2147483647, 'FR', 'France'), +('194.117.120.138', '194.117.120.138', 2147483647, 2147483647, 'HU', 'Hungary'), +('194.117.120.139', '194.117.120.140', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.120.141', '194.117.120.142', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.120.143', '194.117.120.143', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.117.120.144', '194.117.120.144', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.120.145', '194.117.120.145', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.117.120.146', '194.117.120.146', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.120.147', '194.117.120.147', 2147483647, 2147483647, 'FR', 'France'), +('194.117.120.148', '194.117.120.148', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.120.149', '194.117.120.149', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.120.150', '194.117.120.151', 2147483647, 2147483647, 'FR', 'France'), +('194.117.120.152', '194.117.120.152', 2147483647, 2147483647, 'HU', 'Hungary'), +('194.117.120.153', '194.117.120.153', 2147483647, 2147483647, 'HR', 'Croatia'), +('194.117.120.154', '194.117.120.154', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.117.120.155', '194.117.120.155', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.120.156', '194.117.120.156', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.120.157', '194.117.120.157', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.120.158', '194.117.120.158', 2147483647, 2147483647, 'FR', 'France'), +('194.117.120.159', '194.117.120.159', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.120.160', '194.117.120.160', 2147483647, 2147483647, 'PT', 'Portugal'), +('194.117.120.161', '194.117.120.164', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.120.165', '194.117.120.165', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.120.166', '194.117.120.166', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.117.120.167', '194.117.120.167', 2147483647, 2147483647, 'ZA', 'South Africa'), +('194.117.120.168', '194.117.120.168', 2147483647, 2147483647, 'FR', 'France'), +('194.117.120.169', '194.117.120.169', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.120.170', '194.117.120.170', 2147483647, 2147483647, 'PT', 'Portugal'), +('194.117.120.171', '194.117.120.171', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.120.172', '194.117.120.172', 2147483647, 2147483647, 'PT', 'Portugal'), +('194.117.120.173', '194.117.120.173', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.120.174', '194.117.120.177', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.120.178', '194.117.120.178', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.117.120.179', '194.117.120.179', 2147483647, 2147483647, 'PT', 'Portugal'), +('194.117.120.180', '194.117.120.180', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.120.181', '194.117.120.183', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.120.184', '194.117.120.184', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.120.185', '194.117.120.185', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.120.186', '194.117.120.186', 2147483647, 2147483647, 'QA', 'Qatar'), +('194.117.120.187', '194.117.120.187', 2147483647, 2147483647, 'FR', 'France'), +('194.117.120.188', '194.117.120.188', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.120.189', '194.117.120.190', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.120.191', '194.117.120.191', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.120.192', '194.117.120.192', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.120.193', '194.117.120.193', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.120.194', '194.117.120.194', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.120.195', '194.117.120.195', 2147483647, 2147483647, 'FR', 'France'), +('194.117.120.196', '194.117.120.200', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.120.201', '194.117.120.201', 2147483647, 2147483647, 'HU', 'Hungary'), +('194.117.120.202', '194.117.120.202', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.120.203', '194.117.120.203', 2147483647, 2147483647, 'FI', 'Finland'), +('194.117.120.204', '194.117.120.204', 2147483647, 2147483647, 'HU', 'Hungary'), +('194.117.120.205', '194.117.120.206', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.120.207', '194.117.120.207', 2147483647, 2147483647, 'AT', 'Austria'), +('194.117.120.208', '194.117.120.208', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.120.209', '194.117.120.210', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.120.211', '194.117.120.211', 2147483647, 2147483647, 'FR', 'France'), +('194.117.120.212', '194.117.120.212', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.120.213', '194.117.120.213', 2147483647, 2147483647, 'FR', 'France'), +('194.117.120.214', '194.117.120.214', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.120.215', '194.117.120.215', 2147483647, 2147483647, 'PL', 'Poland'), +('194.117.120.216', '194.117.120.216', 2147483647, 2147483647, 'HU', 'Hungary'), +('194.117.120.217', '194.117.120.217', 2147483647, 2147483647, 'PL', 'Poland'), +('194.117.120.218', '194.117.120.218', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.117.120.219', '194.117.120.219', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.120.220', '194.117.120.220', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.120.221', '194.117.120.221', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.120.222', '194.117.120.222', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.120.223', '194.117.120.224', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.120.225', '194.117.120.226', 2147483647, 2147483647, 'FR', 'France'), +('194.117.120.227', '194.117.120.227', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.117.120.228', '194.117.120.228', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.117.120.229', '194.117.120.230', 2147483647, 2147483647, 'FR', 'France'), +('194.117.120.231', '194.117.120.231', 2147483647, 2147483647, 'HU', 'Hungary'), +('194.117.120.232', '194.117.120.232', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.120.233', '194.117.120.233', 2147483647, 2147483647, 'TR', 'Turkey'), +('194.117.120.234', '194.117.120.234', 2147483647, 2147483647, 'FR', 'France'), +('194.117.120.235', '194.117.121.2', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.121.3', '194.117.121.3', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.121.4', '194.117.121.4', 2147483647, 2147483647, 'PT', 'Portugal'), +('194.117.121.5', '194.117.121.5', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.117.121.6', '194.117.121.7', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.121.8', '194.117.121.8', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.121.9', '194.117.121.9', 2147483647, 2147483647, 'KW', 'Kuwait'), +('194.117.121.10', '194.117.121.10', 2147483647, 2147483647, 'FR', 'France'), +('194.117.121.11', '194.117.121.12', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.121.13', '194.117.121.13', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.121.14', '194.117.121.14', 2147483647, 2147483647, 'FI', 'Finland'), +('194.117.121.15', '194.117.121.15', 2147483647, 2147483647, 'GR', 'Greece'), +('194.117.121.16', '194.117.121.16', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.121.17', '194.117.121.17', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.121.18', '194.117.121.18', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.121.19', '194.117.121.19', 2147483647, 2147483647, 'HU', 'Hungary'), +('194.117.121.20', '194.117.121.28', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.121.29', '194.117.121.29', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.117.121.30', '194.117.121.30', 2147483647, 2147483647, 'TR', 'Turkey'), +('194.117.121.31', '194.117.121.31', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.121.32', '194.117.121.32', 2147483647, 2147483647, 'FR', 'France'), +('194.117.121.33', '194.117.121.33', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.121.34', '194.117.121.34', 2147483647, 2147483647, 'HU', 'Hungary'), +('194.117.121.35', '194.117.121.35', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.121.36', '194.117.121.36', 2147483647, 2147483647, 'HU', 'Hungary'), +('194.117.121.37', '194.117.121.37', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.121.38', '194.117.121.38', 2147483647, 2147483647, 'FR', 'France'), +('194.117.121.39', '194.117.121.39', 2147483647, 2147483647, 'PL', 'Poland'), +('194.117.121.40', '194.117.121.40', 2147483647, 2147483647, 'AN', 'Netherlands Antilles'), +('194.117.121.41', '194.117.121.41', 2147483647, 2147483647, 'AT', 'Austria'), +('194.117.121.42', '194.117.121.42', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.121.43', '194.117.121.43', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('194.117.121.44', '194.117.121.44', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.121.45', '194.117.121.45', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.121.46', '194.117.121.47', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.121.48', '194.117.121.48', 2147483647, 2147483647, 'PT', 'Portugal'), +('194.117.121.49', '194.117.121.49', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.121.50', '194.117.121.50', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.121.51', '194.117.121.51', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.121.52', '194.117.121.52', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.121.53', '194.117.121.53', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.121.54', '194.117.121.54', 2147483647, 2147483647, 'AT', 'Austria'), +('194.117.121.55', '194.117.121.55', 2147483647, 2147483647, 'FR', 'France'), +('194.117.121.56', '194.117.121.56', 2147483647, 2147483647, 'PT', 'Portugal'), +('194.117.121.57', '194.117.121.57', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('194.117.121.58', '194.117.121.58', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.121.59', '194.117.121.59', 2147483647, 2147483647, 'FR', 'France'), +('194.117.121.60', '194.117.121.61', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.121.62', '194.117.121.63', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.121.64', '194.117.121.64', 2147483647, 2147483647, 'PL', 'Poland'), +('194.117.121.65', '194.117.121.65', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.121.66', '194.117.121.66', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.121.67', '194.117.121.67', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.121.68', '194.117.121.68', 2147483647, 2147483647, 'SK', 'Slovakia'), +('194.117.121.69', '194.117.121.69', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.117.121.70', '194.117.121.70', 2147483647, 2147483647, 'TR', 'Turkey'), +('194.117.121.71', '194.117.121.71', 2147483647, 2147483647, 'AT', 'Austria'), +('194.117.121.72', '194.117.121.72', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.121.73', '194.117.121.73', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.117.121.74', '194.117.121.74', 2147483647, 2147483647, 'AT', 'Austria'), +('194.117.121.75', '194.117.121.75', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.121.76', '194.117.121.76', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.121.77', '194.117.121.78', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.121.79', '194.117.121.79', 2147483647, 2147483647, 'FR', 'France'), +('194.117.121.80', '194.117.121.81', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.121.82', '194.117.121.82', 2147483647, 2147483647, 'SK', 'Slovakia'), +('194.117.121.83', '194.117.121.83', 2147483647, 2147483647, 'PL', 'Poland'), +('194.117.121.84', '194.117.121.84', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.121.85', '194.117.121.85', 2147483647, 2147483647, 'HU', 'Hungary'), +('194.117.121.86', '194.117.121.86', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.121.87', '194.117.121.87', 2147483647, 2147483647, 'FR', 'France'), +('194.117.121.88', '194.117.121.88', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.121.89', '194.117.121.89', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.121.90', '194.117.121.90', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.121.91', '194.117.121.91', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.121.92', '194.117.121.92', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.117.121.93', '194.117.121.93', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.121.94', '194.117.121.94', 2147483647, 2147483647, 'FR', 'France'), +('194.117.121.95', '194.117.121.95', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.121.96', '194.117.121.96', 2147483647, 2147483647, 'TR', 'Turkey'), +('194.117.121.97', '194.117.121.97', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.121.98', '194.117.121.98', 2147483647, 2147483647, 'AT', 'Austria'), +('194.117.121.99', '194.117.121.99', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.121.100', '194.117.121.100', 2147483647, 2147483647, 'PL', 'Poland'), +('194.117.121.101', '194.117.121.101', 2147483647, 2147483647, 'TR', 'Turkey'), +('194.117.121.102', '194.117.121.102', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.121.103', '194.117.121.103', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.121.104', '194.117.121.104', 2147483647, 2147483647, 'LI', 'Liechtenstein'), +('194.117.121.105', '194.117.121.105', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.121.106', '194.117.121.106', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.121.107', '194.117.121.107', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.121.108', '194.117.121.108', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.121.109', '194.117.121.109', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.121.110', '194.117.121.110', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.121.111', '194.117.121.111', 2147483647, 2147483647, 'FR', 'France'), +('194.117.121.112', '194.117.121.112', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.121.113', '194.117.121.114', 2147483647, 2147483647, 'PT', 'Portugal'), +('194.117.121.115', '194.117.121.115', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.121.116', '194.117.121.129', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.121.130', '194.117.121.130', 2147483647, 2147483647, 'FR', 'France'), +('194.117.121.131', '194.117.121.132', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.121.133', '194.117.121.133', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.121.134', '194.117.121.134', 2147483647, 2147483647, 'FR', 'France'), +('194.117.121.135', '194.117.121.135', 2147483647, 2147483647, 'AT', 'Austria'), +('194.117.121.136', '194.117.121.136', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.121.137', '194.117.121.137', 2147483647, 2147483647, 'SK', 'Slovakia'), +('194.117.121.138', '194.117.121.138', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.121.139', '194.117.121.139', 2147483647, 2147483647, 'PT', 'Portugal'), +('194.117.121.140', '194.117.121.140', 2147483647, 2147483647, 'PL', 'Poland'), +('194.117.121.141', '194.117.121.141', 2147483647, 2147483647, 'SK', 'Slovakia'), +('194.117.121.142', '194.117.121.142', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.121.143', '194.117.121.143', 2147483647, 2147483647, 'FR', 'France'), +('194.117.121.144', '194.117.121.144', 2147483647, 2147483647, 'HU', 'Hungary'), +('194.117.121.145', '194.117.121.145', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.121.146', '194.117.121.146', 2147483647, 2147483647, 'SK', 'Slovakia'), +('194.117.121.147', '194.117.121.147', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.117.121.148', '194.117.121.148', 2147483647, 2147483647, 'FR', 'France'), +('194.117.121.149', '194.117.121.149', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.117.121.150', '194.117.121.150', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.121.151', '194.117.121.151', 2147483647, 2147483647, 'FR', 'France'), +('194.117.121.152', '194.117.121.152', 2147483647, 2147483647, 'GR', 'Greece'), +('194.117.121.153', '194.117.121.153', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.121.154', '194.117.121.154', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.117.121.155', '194.117.121.155', 2147483647, 2147483647, 'FR', 'France'), +('194.117.121.156', '194.117.121.156', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.121.157', '194.117.121.159', 2147483647, 2147483647, 'FR', 'France'), +('194.117.121.160', '194.117.121.160', 2147483647, 2147483647, 'PT', 'Portugal'), +('194.117.121.161', '194.117.121.161', 2147483647, 2147483647, 'IE', 'Ireland'), +('194.117.121.162', '194.117.121.162', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.121.163', '194.117.121.163', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.117.121.164', '194.117.121.164', 2147483647, 2147483647, 'FR', 'France'), +('194.117.121.165', '194.117.121.165', 2147483647, 2147483647, 'AT', 'Austria'), +('194.117.121.166', '194.117.121.166', 2147483647, 2147483647, 'FR', 'France'), +('194.117.121.167', '194.117.121.167', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.121.168', '194.117.121.168', 2147483647, 2147483647, 'TR', 'Turkey'), +('194.117.121.169', '194.117.121.169', 2147483647, 2147483647, 'HU', 'Hungary'), +('194.117.121.170', '194.117.121.170', 2147483647, 2147483647, 'CY', 'Cyprus'), +('194.117.121.171', '194.117.121.171', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.121.172', '194.117.121.172', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.121.173', '194.117.121.174', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.121.175', '194.117.121.175', 2147483647, 2147483647, 'PT', 'Portugal'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('194.117.121.176', '194.117.121.176', 2147483647, 2147483647, 'PL', 'Poland'), +('194.117.121.177', '194.117.121.177', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.121.178', '194.117.121.178', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.121.179', '194.117.121.179', 2147483647, 2147483647, 'SK', 'Slovakia'), +('194.117.121.180', '194.117.121.180', 2147483647, 2147483647, 'FR', 'France'), +('194.117.121.181', '194.117.121.181', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('194.117.121.182', '194.117.121.182', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.121.183', '194.117.121.183', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.121.184', '194.117.121.184', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.121.185', '194.117.121.186', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.121.187', '194.117.121.187', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.121.188', '194.117.121.188', 2147483647, 2147483647, 'PT', 'Portugal'), +('194.117.121.189', '194.117.121.189', 2147483647, 2147483647, 'PL', 'Poland'), +('194.117.121.190', '194.117.121.190', 2147483647, 2147483647, 'MA', 'Morocco'), +('194.117.121.191', '194.117.121.191', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.121.192', '194.117.121.193', 2147483647, 2147483647, 'TR', 'Turkey'), +('194.117.121.194', '194.117.121.194', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.121.195', '194.117.121.195', 2147483647, 2147483647, 'PT', 'Portugal'), +('194.117.121.196', '194.117.121.196', 2147483647, 2147483647, 'NO', 'Norway'), +('194.117.121.197', '194.117.121.197', 2147483647, 2147483647, 'GR', 'Greece'), +('194.117.121.198', '194.117.121.198', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.121.199', '194.117.121.199', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.121.200', '194.117.121.200', 2147483647, 2147483647, 'PT', 'Portugal'), +('194.117.121.201', '194.117.121.201', 2147483647, 2147483647, 'FR', 'France'), +('194.117.121.202', '194.117.121.202', 2147483647, 2147483647, 'PT', 'Portugal'), +('194.117.121.203', '194.117.121.203', 2147483647, 2147483647, 'PL', 'Poland'), +('194.117.121.204', '194.117.121.204', 2147483647, 2147483647, 'HU', 'Hungary'), +('194.117.121.205', '194.117.121.205', 2147483647, 2147483647, 'CY', 'Cyprus'), +('194.117.121.206', '194.117.121.206', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.121.207', '194.117.121.207', 2147483647, 2147483647, 'HU', 'Hungary'), +('194.117.121.208', '194.117.121.208', 2147483647, 2147483647, 'PL', 'Poland'), +('194.117.121.209', '194.117.121.209', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.121.210', '194.117.121.210', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.121.211', '194.117.121.211', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.121.212', '194.117.121.212', 2147483647, 2147483647, 'SK', 'Slovakia'), +('194.117.121.213', '194.117.121.214', 2147483647, 2147483647, 'GR', 'Greece'), +('194.117.121.215', '194.117.121.215', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.121.216', '194.117.121.216', 2147483647, 2147483647, 'HU', 'Hungary'), +('194.117.121.217', '194.117.121.217', 2147483647, 2147483647, 'TR', 'Turkey'), +('194.117.121.218', '194.117.121.218', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.121.219', '194.117.121.219', 2147483647, 2147483647, 'FR', 'France'), +('194.117.121.220', '194.117.121.220', 2147483647, 2147483647, 'PL', 'Poland'), +('194.117.121.221', '194.117.121.221', 2147483647, 2147483647, 'LB', 'Lebanon'), +('194.117.121.222', '194.117.122.3', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.122.4', '194.117.122.5', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.122.6', '194.117.122.7', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.122.8', '194.117.122.8', 2147483647, 2147483647, 'FR', 'France'), +('194.117.122.9', '194.117.122.9', 2147483647, 2147483647, 'LI', 'Liechtenstein'), +('194.117.122.10', '194.117.122.12', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.122.13', '194.117.122.13', 2147483647, 2147483647, 'FR', 'France'), +('194.117.122.14', '194.117.122.14', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.122.15', '194.117.122.15', 2147483647, 2147483647, 'AT', 'Austria'), +('194.117.122.16', '194.117.122.16', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.122.17', '194.117.122.17', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.122.18', '194.117.122.18', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.122.19', '194.117.122.19', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.122.20', '194.117.122.20', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.122.21', '194.117.122.22', 2147483647, 2147483647, 'FR', 'France'), +('194.117.122.23', '194.117.122.24', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.122.25', '194.117.122.25', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.122.26', '194.117.122.26', 2147483647, 2147483647, 'AT', 'Austria'), +('194.117.122.27', '194.117.122.27', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.122.28', '194.117.122.28', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.122.29', '194.117.122.29', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.122.30', '194.117.122.30', 2147483647, 2147483647, 'AT', 'Austria'), +('194.117.122.31', '194.117.122.33', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.122.34', '194.117.122.34', 2147483647, 2147483647, 'GR', 'Greece'), +('194.117.122.35', '194.117.122.38', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.122.39', '194.117.122.39', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.122.40', '194.117.122.40', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.117.122.41', '194.117.122.42', 2147483647, 2147483647, 'FR', 'France'), +('194.117.122.43', '194.117.122.45', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.122.46', '194.117.122.46', 2147483647, 2147483647, 'AT', 'Austria'), +('194.117.122.47', '194.117.122.47', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.122.48', '194.117.122.48', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.122.49', '194.117.122.49', 2147483647, 2147483647, 'FR', 'France'), +('194.117.122.50', '194.117.122.50', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.122.51', '194.117.122.51', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.117.122.52', '194.117.122.52', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.122.53', '194.117.122.53', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.122.54', '194.117.122.54', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.122.55', '194.117.122.56', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.122.57', '194.117.122.57', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.117.122.58', '194.117.122.61', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.122.62', '194.117.122.62', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.117.122.63', '194.117.122.63', 2147483647, 2147483647, 'BH', 'Bahrain'), +('194.117.122.64', '194.117.122.64', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.122.65', '194.117.122.65', 2147483647, 2147483647, 'FR', 'France'), +('194.117.122.66', '194.117.122.66', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.122.67', '194.117.122.67', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.122.68', '194.117.122.71', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.122.72', '194.117.122.72', 2147483647, 2147483647, 'ZA', 'South Africa'), +('194.117.122.73', '194.117.122.73', 2147483647, 2147483647, 'AT', 'Austria'), +('194.117.122.74', '194.117.122.76', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.122.77', '194.117.122.77', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.122.78', '194.117.122.78', 2147483647, 2147483647, 'AT', 'Austria'), +('194.117.122.79', '194.117.122.79', 2147483647, 2147483647, 'PT', 'Portugal'), +('194.117.122.80', '194.117.122.80', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.117.122.81', '194.117.122.81', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.122.82', '194.117.122.83', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.122.84', '194.117.122.84', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.122.85', '194.117.122.87', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.122.88', '194.117.122.89', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.122.90', '194.117.122.90', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.122.91', '194.117.122.91', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.122.92', '194.117.122.92', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.122.93', '194.117.122.93', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.122.94', '194.117.122.94', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.117.122.95', '194.117.122.95', 2147483647, 2147483647, 'SI', 'Slovenia'), +('194.117.122.96', '194.117.122.97', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.122.98', '194.117.122.98', 2147483647, 2147483647, 'IE', 'Ireland'), +('194.117.122.99', '194.117.122.99', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.122.100', '194.117.122.100', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.122.101', '194.117.122.101', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.117.122.102', '194.117.122.104', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.122.105', '194.117.122.105', 2147483647, 2147483647, 'AT', 'Austria'), +('194.117.122.106', '194.117.122.106', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.122.107', '194.117.122.107', 2147483647, 2147483647, 'FR', 'France'), +('194.117.122.108', '194.117.122.108', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.122.109', '194.117.122.109', 2147483647, 2147483647, 'PT', 'Portugal'), +('194.117.122.110', '194.117.122.110', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.117.122.111', '194.117.122.113', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.122.114', '194.117.122.115', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.122.116', '194.117.122.116', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.122.117', '194.117.122.118', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.122.119', '194.117.122.119', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.122.120', '194.117.122.120', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.122.121', '194.117.122.121', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.122.122', '194.117.122.122', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.117.122.123', '194.117.122.123', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.122.124', '194.117.122.124', 2147483647, 2147483647, 'NO', 'Norway'), +('194.117.122.125', '194.117.122.125', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.122.126', '194.117.122.126', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.122.127', '194.117.122.132', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.122.133', '194.117.122.133', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.122.134', '194.117.122.134', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.122.135', '194.117.122.135', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.122.136', '194.117.122.136', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.122.137', '194.117.122.137', 2147483647, 2147483647, 'PT', 'Portugal'), +('194.117.122.138', '194.117.122.138', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.122.139', '194.117.122.139', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.122.140', '194.117.122.140', 2147483647, 2147483647, 'IE', 'Ireland'), +('194.117.122.141', '194.117.122.141', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.122.142', '194.117.122.142', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.122.143', '194.117.122.144', 2147483647, 2147483647, 'FR', 'France'), +('194.117.122.145', '194.117.122.145', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.122.146', '194.117.122.149', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.122.150', '194.117.122.150', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.122.151', '194.117.122.151', 2147483647, 2147483647, 'AT', 'Austria'), +('194.117.122.152', '194.117.122.152', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.122.153', '194.117.122.153', 2147483647, 2147483647, 'AT', 'Austria'), +('194.117.122.154', '194.117.122.154', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.122.155', '194.117.122.155', 2147483647, 2147483647, 'FR', 'France'), +('194.117.122.156', '194.117.122.159', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.122.160', '194.117.122.160', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.122.161', '194.117.122.161', 2147483647, 2147483647, 'NO', 'Norway'), +('194.117.122.162', '194.117.122.163', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.122.164', '194.117.122.164', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.122.165', '194.117.122.165', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.122.166', '194.117.122.166', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.122.167', '194.117.122.167', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.122.168', '194.117.122.168', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.117.122.169', '194.117.122.169', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.117.122.170', '194.117.122.170', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.122.171', '194.117.122.171', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.122.172', '194.117.122.174', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.122.175', '194.117.122.176', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.122.177', '194.117.122.177', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.122.178', '194.117.122.179', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.122.180', '194.117.122.180', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.122.181', '194.117.122.181', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.122.182', '194.117.122.182', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.122.183', '194.117.122.183', 2147483647, 2147483647, 'AT', 'Austria'), +('194.117.122.184', '194.117.122.188', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.122.189', '194.117.122.189', 2147483647, 2147483647, 'AT', 'Austria'), +('194.117.122.190', '194.117.122.190', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.117.122.191', '194.117.122.191', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.122.192', '194.117.122.192', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.122.193', '194.117.122.193', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.122.194', '194.117.122.194', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.117.122.195', '194.117.122.195', 2147483647, 2147483647, 'FR', 'France'), +('194.117.122.196', '194.117.122.196', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.122.197', '194.117.122.197', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.122.198', '194.117.122.198', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.122.199', '194.117.122.199', 2147483647, 2147483647, 'AT', 'Austria'), +('194.117.122.200', '194.117.122.200', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.122.201', '194.117.122.202', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.122.203', '194.117.122.203', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.122.204', '194.117.122.204', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.122.205', '194.117.122.205', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.122.206', '194.117.122.207', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.122.208', '194.117.122.208', 2147483647, 2147483647, 'AT', 'Austria'), +('194.117.122.209', '194.117.122.209', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.122.210', '194.117.122.210', 2147483647, 2147483647, 'FR', 'France'), +('194.117.122.211', '194.117.122.211', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.122.212', '194.117.122.214', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.122.215', '194.117.122.215', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.122.216', '194.117.122.217', 2147483647, 2147483647, 'FR', 'France'), +('194.117.122.218', '194.117.122.218', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.122.219', '194.117.122.219', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.122.220', '194.117.122.220', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.122.221', '194.117.122.221', 2147483647, 2147483647, 'FR', 'France'), +('194.117.122.222', '194.117.122.222', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.122.223', '194.117.122.226', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.122.227', '194.117.122.227', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.122.228', '194.117.122.228', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.117.122.229', '194.117.122.229', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.122.230', '194.117.122.230', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.122.231', '194.117.122.231', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.122.232', '194.117.122.232', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('194.117.122.233', '194.117.122.233', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.122.234', '194.117.122.234', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.122.235', '194.117.122.235', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.122.236', '194.117.122.236', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.122.237', '194.117.122.237', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.122.238', '194.117.122.238', 2147483647, 2147483647, 'FR', 'France'), +('194.117.122.239', '194.117.122.240', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.122.241', '194.117.122.241', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.122.242', '194.117.122.242', 2147483647, 2147483647, 'FR', 'France'), +('194.117.122.243', '194.117.122.243', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.122.244', '194.117.122.244', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.122.245', '194.117.122.245', 2147483647, 2147483647, 'FR', 'France'), +('194.117.122.246', '194.117.122.247', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.122.248', '194.117.122.248', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.122.249', '194.117.122.249', 2147483647, 2147483647, 'FR', 'France'), +('194.117.122.250', '194.117.122.250', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.122.251', '194.117.122.251', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.122.252', '194.117.122.252', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.117.122.253', '194.117.122.253', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.122.254', '194.117.122.254', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.122.255', '194.117.123.1', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.123.2', '194.117.123.2', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.123.3', '194.117.123.3', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.123.4', '194.117.123.4', 2147483647, 2147483647, 'AT', 'Austria'), +('194.117.123.5', '194.117.123.5', 2147483647, 2147483647, 'FR', 'France'), +('194.117.123.6', '194.117.123.6', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.123.7', '194.117.123.7', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('194.117.123.8', '194.117.123.11', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.123.12', '194.117.123.12', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.123.13', '194.117.123.13', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.123.14', '194.117.123.14', 2147483647, 2147483647, 'GR', 'Greece'), +('194.117.123.15', '194.117.123.16', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.123.17', '194.117.123.17', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.123.18', '194.117.123.18', 2147483647, 2147483647, 'FR', 'France'), +('194.117.123.19', '194.117.123.19', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.123.20', '194.117.123.20', 2147483647, 2147483647, 'FR', 'France'), +('194.117.123.21', '194.117.123.21', 2147483647, 2147483647, 'IL', 'Israel'), +('194.117.123.22', '194.117.123.26', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.123.27', '194.117.123.27', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.123.28', '194.117.123.28', 2147483647, 2147483647, 'AT', 'Austria'), +('194.117.123.29', '194.117.123.29', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.123.30', '194.117.123.30', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.123.31', '194.117.123.35', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.123.36', '194.117.123.36', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.123.37', '194.117.123.38', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.123.39', '194.117.123.39', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.123.40', '194.117.123.40', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.123.41', '194.117.123.41', 2147483647, 2147483647, 'NO', 'Norway'), +('194.117.123.42', '194.117.123.42', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.123.43', '194.117.123.43', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.123.44', '194.117.123.45', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.123.46', '194.117.123.47', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.123.48', '194.117.123.48', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.123.49', '194.117.123.49', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.123.50', '194.117.123.50', 2147483647, 2147483647, 'FR', 'France'), +('194.117.123.51', '194.117.123.51', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.123.52', '194.117.123.52', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.123.53', '194.117.123.53', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.123.54', '194.117.123.54', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.123.55', '194.117.123.55', 2147483647, 2147483647, 'FR', 'France'), +('194.117.123.56', '194.117.123.56', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.123.57', '194.117.123.57', 2147483647, 2147483647, 'FR', 'France'), +('194.117.123.58', '194.117.123.58', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.123.59', '194.117.123.59', 2147483647, 2147483647, 'FR', 'France'), +('194.117.123.60', '194.117.123.60', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.123.61', '194.117.123.63', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.123.64', '194.117.123.64', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.123.65', '194.117.123.65', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.123.66', '194.117.123.66', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.123.67', '194.117.123.67', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.123.68', '194.117.123.70', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.123.71', '194.117.123.71', 2147483647, 2147483647, 'FR', 'France'), +('194.117.123.72', '194.117.123.74', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.123.75', '194.117.123.75', 2147483647, 2147483647, 'AT', 'Austria'), +('194.117.123.76', '194.117.123.76', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.123.77', '194.117.123.77', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.123.78', '194.117.123.78', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('194.117.123.79', '194.117.123.79', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.117.123.80', '194.117.123.80', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.123.81', '194.117.123.81', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.123.82', '194.117.123.82', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.123.83', '194.117.123.83', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.123.84', '194.117.123.84', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.123.85', '194.117.123.85', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.123.86', '194.117.123.87', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.123.88', '194.117.123.88', 2147483647, 2147483647, 'FR', 'France'), +('194.117.123.89', '194.117.123.89', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.123.90', '194.117.123.90', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.123.91', '194.117.123.91', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.117.123.92', '194.117.123.92', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.123.93', '194.117.123.93', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.123.94', '194.117.123.95', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.123.96', '194.117.123.96', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.123.97', '194.117.123.97', 2147483647, 2147483647, 'HU', 'Hungary'), +('194.117.123.98', '194.117.123.98', 2147483647, 2147483647, 'FR', 'France'), +('194.117.123.99', '194.117.123.104', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.123.105', '194.117.123.105', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.123.106', '194.117.123.108', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.123.109', '194.117.123.109', 2147483647, 2147483647, 'NO', 'Norway'), +('194.117.123.110', '194.117.123.110', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.123.111', '194.117.123.111', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.123.112', '194.117.123.115', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.123.116', '194.117.123.116', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.123.117', '194.117.123.119', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.123.120', '194.117.123.120', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.117.123.121', '194.117.123.121', 2147483647, 2147483647, 'FR', 'France'), +('194.117.123.122', '194.117.123.122', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.123.123', '194.117.123.123', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.123.124', '194.117.123.124', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.117.123.125', '194.117.123.129', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.123.130', '194.117.123.130', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.123.131', '194.117.123.132', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.123.133', '194.117.123.134', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.123.135', '194.117.123.135', 2147483647, 2147483647, 'FR', 'France'), +('194.117.123.136', '194.117.123.136', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.123.137', '194.117.123.138', 2147483647, 2147483647, 'FR', 'France'), +('194.117.123.139', '194.117.123.139', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.123.140', '194.117.123.140', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.123.141', '194.117.123.145', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.123.146', '194.117.123.146', 2147483647, 2147483647, 'AT', 'Austria'), +('194.117.123.147', '194.117.123.148', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.123.149', '194.117.123.149', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.123.150', '194.117.123.150', 2147483647, 2147483647, 'FR', 'France'), +('194.117.123.151', '194.117.123.151', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.123.152', '194.117.123.152', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.123.153', '194.117.123.153', 2147483647, 2147483647, 'US', 'United States'), +('194.117.123.154', '194.117.123.157', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.123.158', '194.117.123.158', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.123.159', '194.117.123.160', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.123.161', '194.117.123.161', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.123.162', '194.117.123.162', 2147483647, 2147483647, 'FR', 'France'), +('194.117.123.163', '194.117.123.163', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.123.164', '194.117.123.164', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.123.165', '194.117.123.165', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.123.166', '194.117.123.167', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.117.123.168', '194.117.123.168', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.123.169', '194.117.123.169', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.123.170', '194.117.123.170', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.123.171', '194.117.123.171', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.123.172', '194.117.123.172', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.123.173', '194.117.123.173', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.123.174', '194.117.123.174', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.123.175', '194.117.123.175', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.123.176', '194.117.123.176', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.123.177', '194.117.123.177', 2147483647, 2147483647, 'FR', 'France'), +('194.117.123.178', '194.117.123.178', 2147483647, 2147483647, 'AD', 'Andorra'), +('194.117.123.179', '194.117.123.179', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.123.180', '194.117.123.180', 2147483647, 2147483647, 'NO', 'Norway'), +('194.117.123.181', '194.117.123.185', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.123.186', '194.117.123.186', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.117.123.187', '194.117.123.189', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.123.190', '194.117.123.190', 2147483647, 2147483647, 'FR', 'France'), +('194.117.123.191', '194.117.123.191', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.123.192', '194.117.123.192', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.123.193', '194.117.123.194', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.123.195', '194.117.123.195', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.123.196', '194.117.123.196', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.123.197', '194.117.123.197', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.123.198', '194.117.123.199', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.123.200', '194.117.123.200', 2147483647, 2147483647, 'AT', 'Austria'), +('194.117.123.201', '194.117.123.203', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.123.204', '194.117.123.204', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.117.123.205', '194.117.123.205', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.117.123.206', '194.117.123.206', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.123.207', '194.117.123.207', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.123.208', '194.117.123.208', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.123.209', '194.117.123.209', 2147483647, 2147483647, 'FR', 'France'), +('194.117.123.210', '194.117.123.214', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.123.215', '194.117.123.215', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.117.123.216', '194.117.123.216', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.123.217', '194.117.123.217', 2147483647, 2147483647, 'GR', 'Greece'), +('194.117.123.218', '194.117.123.219', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.123.220', '194.117.123.220', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.123.221', '194.117.123.221', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.123.222', '194.117.123.223', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.123.224', '194.117.123.224', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.117.123.225', '194.117.123.225', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.123.226', '194.117.123.226', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.123.227', '194.117.123.228', 2147483647, 2147483647, 'FR', 'France'), +('194.117.123.229', '194.117.123.229', 2147483647, 2147483647, 'HU', 'Hungary'), +('194.117.123.230', '194.117.123.230', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.123.231', '194.117.123.231', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.123.232', '194.117.123.232', 2147483647, 2147483647, 'FR', 'France'), +('194.117.123.233', '194.117.123.233', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.123.234', '194.117.123.234', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.123.235', '194.117.123.235', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.123.236', '194.117.123.236', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.123.237', '194.117.123.237', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.123.238', '194.117.123.238', 2147483647, 2147483647, 'PT', 'Portugal'), +('194.117.123.239', '194.117.123.239', 2147483647, 2147483647, 'NO', 'Norway'), +('194.117.123.240', '194.117.123.240', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.123.241', '194.117.123.241', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.123.242', '194.117.123.242', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.117.123.243', '194.117.123.243', 2147483647, 2147483647, 'NO', 'Norway'), +('194.117.123.244', '194.117.123.246', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.123.247', '194.117.123.247', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.123.248', '194.117.123.248', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.123.249', '194.117.123.249', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.123.250', '194.117.123.251', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.123.252', '194.117.123.252', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.123.253', '194.117.123.253', 2147483647, 2147483647, 'FR', 'France'), +('194.117.123.254', '194.117.124.1', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.124.2', '194.117.124.2', 2147483647, 2147483647, 'PT', 'Portugal'), +('194.117.124.3', '194.117.124.6', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.124.7', '194.117.124.7', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.124.8', '194.117.124.8', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.124.9', '194.117.124.9', 2147483647, 2147483647, 'FR', 'France'), +('194.117.124.10', '194.117.124.10', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.124.11', '194.117.124.11', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.124.12', '194.117.124.12', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.124.13', '194.117.124.13', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.124.14', '194.117.124.14', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.124.15', '194.117.124.15', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.124.16', '194.117.124.17', 2147483647, 2147483647, 'FR', 'France'), +('194.117.124.18', '194.117.124.18', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.124.19', '194.117.124.19', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.124.20', '194.117.124.20', 2147483647, 2147483647, 'AT', 'Austria'), +('194.117.124.21', '194.117.124.21', 2147483647, 2147483647, 'FR', 'France'), +('194.117.124.22', '194.117.124.25', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.124.26', '194.117.124.26', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.124.27', '194.117.124.27', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.117.124.28', '194.117.124.29', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.124.30', '194.117.124.30', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.117.124.31', '194.117.124.31', 2147483647, 2147483647, 'NO', 'Norway'), +('194.117.124.32', '194.117.124.33', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.124.34', '194.117.124.34', 2147483647, 2147483647, 'FR', 'France'), +('194.117.124.35', '194.117.124.35', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.124.36', '194.117.124.36', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.124.37', '194.117.124.37', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.124.38', '194.117.124.39', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.124.40', '194.117.124.40', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.124.41', '194.117.124.42', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.124.43', '194.117.124.43', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.124.44', '194.117.124.44', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.124.45', '194.117.124.45', 2147483647, 2147483647, 'IE', 'Ireland'), +('194.117.124.46', '194.117.124.46', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.124.47', '194.117.124.50', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.124.51', '194.117.124.51', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.124.52', '194.117.124.53', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.124.54', '194.117.124.54', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.124.55', '194.117.124.55', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.124.56', '194.117.124.56', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.117.124.57', '194.117.124.59', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.124.60', '194.117.124.60', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.124.61', '194.117.124.61', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.124.62', '194.117.124.62', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.117.124.63', '194.117.124.63', 2147483647, 2147483647, 'AT', 'Austria'), +('194.117.124.64', '194.117.124.66', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.124.67', '194.117.124.67', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.124.68', '194.117.124.69', 2147483647, 2147483647, 'FR', 'France'), +('194.117.124.70', '194.117.124.70', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.124.71', '194.117.124.72', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.124.73', '194.117.124.73', 2147483647, 2147483647, 'ZA', 'South Africa'), +('194.117.124.74', '194.117.124.74', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.124.75', '194.117.124.77', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.124.78', '194.117.124.78', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.124.79', '194.117.124.79', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.124.80', '194.117.124.80', 2147483647, 2147483647, 'AT', 'Austria'), +('194.117.124.81', '194.117.124.81', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.117.124.82', '194.117.124.82', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.124.83', '194.117.124.83', 2147483647, 2147483647, 'GR', 'Greece'), +('194.117.124.84', '194.117.124.84', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.124.85', '194.117.124.85', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.124.86', '194.117.124.86', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.124.87', '194.117.124.88', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.124.89', '194.117.124.89', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.124.90', '194.117.124.92', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.124.93', '194.117.124.93', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.124.94', '194.117.124.95', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.124.96', '194.117.124.96', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.124.97', '194.117.124.102', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.124.103', '194.117.124.103', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.124.104', '194.117.124.105', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.124.106', '194.117.124.106', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.124.107', '194.117.124.107', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.124.108', '194.117.124.109', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.124.110', '194.117.124.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.124.112', '194.117.124.112', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.124.113', '194.117.124.113', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.124.114', '194.117.124.114', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.117.124.115', '194.117.124.115', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.124.116', '194.117.124.116', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.124.117', '194.117.124.117', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.117.124.118', '194.117.124.118', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.124.119', '194.117.124.120', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.124.121', '194.117.124.121', 2147483647, 2147483647, 'LI', 'Liechtenstein'), +('194.117.124.122', '194.117.124.122', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.124.123', '194.117.124.123', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.124.124', '194.117.124.124', 2147483647, 2147483647, 'AT', 'Austria'), +('194.117.124.125', '194.117.124.129', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.124.130', '194.117.124.130', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.124.131', '194.117.124.132', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.124.133', '194.117.124.133', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.124.134', '194.117.124.134', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.124.135', '194.117.124.135', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.117.124.136', '194.117.124.138', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.124.139', '194.117.124.139', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.124.140', '194.117.124.142', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.124.143', '194.117.124.143', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.124.144', '194.117.124.144', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.124.145', '194.117.124.147', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.124.148', '194.117.124.148', 2147483647, 2147483647, 'HU', 'Hungary'), +('194.117.124.149', '194.117.124.149', 2147483647, 2147483647, 'FR', 'France'), +('194.117.124.150', '194.117.124.153', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.124.154', '194.117.124.154', 2147483647, 2147483647, 'FR', 'France'), +('194.117.124.155', '194.117.124.155', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.124.156', '194.117.124.157', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.124.158', '194.117.124.158', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.124.159', '194.117.124.159', 2147483647, 2147483647, 'GR', 'Greece'), +('194.117.124.160', '194.117.124.161', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.124.162', '194.117.124.162', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.124.163', '194.117.124.166', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.124.167', '194.117.124.168', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.124.169', '194.117.124.169', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.124.170', '194.117.124.170', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.117.124.171', '194.117.124.175', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.124.176', '194.117.124.176', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.124.177', '194.117.124.178', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.124.179', '194.117.124.179', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.124.180', '194.117.124.180', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.124.181', '194.117.124.181', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.124.182', '194.117.124.183', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.124.184', '194.117.124.184', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.124.185', '194.117.124.185', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.117.124.186', '194.117.124.186', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.124.187', '194.117.124.187', 2147483647, 2147483647, 'AT', 'Austria'), +('194.117.124.188', '194.117.124.188', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.124.189', '194.117.124.189', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.124.190', '194.117.124.192', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.124.193', '194.117.124.193', 2147483647, 2147483647, 'IL', 'Israel'), +('194.117.124.194', '194.117.124.194', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.117.124.195', '194.117.124.195', 2147483647, 2147483647, 'FR', 'France'), +('194.117.124.196', '194.117.124.196', 2147483647, 2147483647, 'IE', 'Ireland'), +('194.117.124.197', '194.117.124.198', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.124.199', '194.117.124.199', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.117.124.200', '194.117.124.200', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.124.201', '194.117.124.201', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.117.124.202', '194.117.124.202', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.124.203', '194.117.124.203', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.124.204', '194.117.124.204', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.124.205', '194.117.124.205', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.117.124.206', '194.117.124.206', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.124.207', '194.117.124.207', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.124.208', '194.117.124.208', 2147483647, 2147483647, 'NO', 'Norway'), +('194.117.124.209', '194.117.124.212', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.124.213', '194.117.124.213', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.124.214', '194.117.124.214', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.124.215', '194.117.124.215', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.124.216', '194.117.124.216', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.124.217', '194.117.124.217', 2147483647, 2147483647, 'FR', 'France'), +('194.117.124.218', '194.117.124.218', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.124.219', '194.117.124.219', 2147483647, 2147483647, 'ZA', 'South Africa'), +('194.117.124.220', '194.117.124.220', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.124.221', '194.117.124.221', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.124.222', '194.117.124.223', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.124.224', '194.117.124.224', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.124.225', '194.117.124.225', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.124.226', '194.117.124.226', 2147483647, 2147483647, 'GR', 'Greece'), +('194.117.124.227', '194.117.124.228', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.124.229', '194.117.124.229', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.124.230', '194.117.124.230', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.124.231', '194.117.124.231', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.124.232', '194.117.124.232', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.124.233', '194.117.124.233', 2147483647, 2147483647, 'FR', 'France'), +('194.117.124.234', '194.117.124.234', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.124.235', '194.117.124.236', 2147483647, 2147483647, 'FR', 'France'), +('194.117.124.237', '194.117.124.238', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.124.239', '194.117.124.240', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.124.241', '194.117.124.241', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.124.242', '194.117.124.242', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.124.243', '194.117.124.244', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.124.245', '194.117.124.245', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.117.124.246', '194.117.124.246', 2147483647, 2147483647, 'FR', 'France'), +('194.117.124.247', '194.117.124.247', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.124.248', '194.117.124.249', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.124.250', '194.117.124.250', 2147483647, 2147483647, 'SI', 'Slovenia'), +('194.117.124.251', '194.117.124.251', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.124.252', '194.117.124.252', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.124.253', '194.117.124.253', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.124.254', '194.117.125.1', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.125.2', '194.117.125.2', 2147483647, 2147483647, 'NO', 'Norway'), +('194.117.125.3', '194.117.125.3', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.125.4', '194.117.125.4', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.125.5', '194.117.125.6', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.125.7', '194.117.125.7', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.125.8', '194.117.125.8', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.125.9', '194.117.125.9', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.125.10', '194.117.125.10', 2147483647, 2147483647, 'AT', 'Austria'), +('194.117.125.11', '194.117.125.12', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.125.13', '194.117.125.13', 2147483647, 2147483647, 'SI', 'Slovenia'), +('194.117.125.14', '194.117.125.14', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.125.15', '194.117.125.15', 2147483647, 2147483647, 'HU', 'Hungary'), +('194.117.125.16', '194.117.125.16', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.125.17', '194.117.125.17', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('194.117.125.18', '194.117.125.18', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.125.19', '194.117.125.20', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.125.21', '194.117.125.21', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.125.22', '194.117.125.22', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.125.23', '194.117.125.23', 2147483647, 2147483647, 'AT', 'Austria'), +('194.117.125.24', '194.117.125.24', 2147483647, 2147483647, 'FR', 'France'), +('194.117.125.25', '194.117.125.25', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.125.26', '194.117.125.26', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.125.27', '194.117.125.27', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.125.28', '194.117.125.28', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.125.29', '194.117.125.29', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.125.30', '194.117.125.30', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.125.31', '194.117.125.31', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.125.32', '194.117.125.32', 2147483647, 2147483647, 'NO', 'Norway'), +('194.117.125.33', '194.117.125.37', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.125.38', '194.117.125.38', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.125.39', '194.117.125.39', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.125.40', '194.117.125.40', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.125.41', '194.117.125.41', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.125.42', '194.117.125.42', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.125.43', '194.117.125.43', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.125.44', '194.117.125.44', 2147483647, 2147483647, 'PT', 'Portugal'), +('194.117.125.45', '194.117.125.46', 2147483647, 2147483647, 'FR', 'France'), +('194.117.125.47', '194.117.125.48', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.125.49', '194.117.125.49', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.117.125.50', '194.117.125.51', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.125.52', '194.117.125.52', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.125.53', '194.117.125.53', 2147483647, 2147483647, 'IT', 'Italy'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('194.117.125.54', '194.117.125.54', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.117.125.55', '194.117.125.55', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.125.56', '194.117.125.57', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.125.58', '194.117.125.58', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.117.125.59', '194.117.125.60', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.125.61', '194.117.125.61', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.125.62', '194.117.125.62', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.125.63', '194.117.125.63', 2147483647, 2147483647, 'AT', 'Austria'), +('194.117.125.64', '194.117.125.64', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.125.65', '194.117.125.65', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.125.66', '194.117.125.66', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.125.67', '194.117.125.67', 2147483647, 2147483647, 'HU', 'Hungary'), +('194.117.125.68', '194.117.125.69', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.125.70', '194.117.125.71', 2147483647, 2147483647, 'FR', 'France'), +('194.117.125.72', '194.117.125.72', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.125.73', '194.117.125.73', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.125.74', '194.117.125.74', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('194.117.125.75', '194.117.125.75', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.125.76', '194.117.125.76', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('194.117.125.77', '194.117.125.77', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.125.78', '194.117.125.78', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.125.79', '194.117.125.79', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.125.80', '194.117.125.80', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.125.81', '194.117.125.81', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.125.82', '194.117.125.82', 2147483647, 2147483647, 'FR', 'France'), +('194.117.125.83', '194.117.125.85', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.125.86', '194.117.125.86', 2147483647, 2147483647, 'AT', 'Austria'), +('194.117.125.87', '194.117.125.87', 2147483647, 2147483647, 'FR', 'France'), +('194.117.125.88', '194.117.125.91', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.125.92', '194.117.125.92', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.125.93', '194.117.125.93', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.125.94', '194.117.125.95', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.125.96', '194.117.125.96', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.125.97', '194.117.125.97', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.125.98', '194.117.125.98', 2147483647, 2147483647, 'AT', 'Austria'), +('194.117.125.99', '194.117.125.99', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.125.100', '194.117.125.100', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.125.101', '194.117.125.101', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.117.125.102', '194.117.125.104', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.125.105', '194.117.125.105', 2147483647, 2147483647, 'AT', 'Austria'), +('194.117.125.106', '194.117.125.108', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.125.109', '194.117.125.109', 2147483647, 2147483647, 'AT', 'Austria'), +('194.117.125.110', '194.117.125.111', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.125.112', '194.117.125.112', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.117.125.113', '194.117.125.114', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.125.115', '194.117.125.115', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.125.116', '194.117.125.116', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.125.117', '194.117.125.118', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.125.119', '194.117.125.120', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.125.121', '194.117.125.121', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.125.122', '194.117.125.122', 2147483647, 2147483647, 'AT', 'Austria'), +('194.117.125.123', '194.117.125.123', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.117.125.124', '194.117.125.124', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.125.125', '194.117.125.125', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.125.126', '194.117.125.126', 2147483647, 2147483647, 'FR', 'France'), +('194.117.125.127', '194.117.125.129', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.125.130', '194.117.125.130', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.125.131', '194.117.125.131', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.125.132', '194.117.125.132', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.125.133', '194.117.125.133', 2147483647, 2147483647, 'FR', 'France'), +('194.117.125.134', '194.117.125.134', 2147483647, 2147483647, 'AT', 'Austria'), +('194.117.125.135', '194.117.125.135', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.125.136', '194.117.125.136', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.125.137', '194.117.125.137', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.125.138', '194.117.125.138', 2147483647, 2147483647, 'FR', 'France'), +('194.117.125.139', '194.117.125.139', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.125.140', '194.117.125.140', 2147483647, 2147483647, 'FR', 'France'), +('194.117.125.141', '194.117.125.141', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.117.125.142', '194.117.125.146', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.125.147', '194.117.125.147', 2147483647, 2147483647, 'NO', 'Norway'), +('194.117.125.148', '194.117.125.148', 2147483647, 2147483647, 'FR', 'France'), +('194.117.125.149', '194.117.125.149', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.125.150', '194.117.125.150', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.125.151', '194.117.125.154', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.125.155', '194.117.125.155', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.125.156', '194.117.125.158', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.125.159', '194.117.125.159', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.117.125.160', '194.117.125.160', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.125.161', '194.117.125.161', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.117.125.162', '194.117.125.162', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.125.163', '194.117.125.166', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.125.167', '194.117.125.167', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.125.168', '194.117.125.168', 2147483647, 2147483647, 'AT', 'Austria'), +('194.117.125.169', '194.117.125.169', 2147483647, 2147483647, 'FR', 'France'), +('194.117.125.170', '194.117.125.170', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.125.171', '194.117.125.172', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.125.173', '194.117.125.173', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.125.174', '194.117.125.174', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.125.175', '194.117.125.176', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.125.177', '194.117.125.177', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.125.178', '194.117.125.178', 2147483647, 2147483647, 'FR', 'France'), +('194.117.125.179', '194.117.125.179', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.125.180', '194.117.125.181', 2147483647, 2147483647, 'AT', 'Austria'), +('194.117.125.182', '194.117.125.183', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.125.184', '194.117.125.192', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.125.193', '194.117.125.193', 2147483647, 2147483647, 'FR', 'France'), +('194.117.125.194', '194.117.125.194', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.125.195', '194.117.125.195', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.125.196', '194.117.125.196', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.125.197', '194.117.125.200', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.125.201', '194.117.125.201', 2147483647, 2147483647, 'HU', 'Hungary'), +('194.117.125.202', '194.117.125.202', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.125.203', '194.117.125.203', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.125.204', '194.117.125.204', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.125.205', '194.117.125.206', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.125.207', '194.117.125.207', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.125.208', '194.117.125.208', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.125.209', '194.117.125.209', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.125.210', '194.117.125.210', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.117.125.211', '194.117.125.211', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.125.212', '194.117.125.213', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.125.214', '194.117.125.214', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.125.215', '194.117.125.216', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.125.217', '194.117.125.217', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.125.218', '194.117.125.218', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.125.219', '194.117.125.219', 2147483647, 2147483647, 'AT', 'Austria'), +('194.117.125.220', '194.117.125.220', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.125.221', '194.117.125.221', 2147483647, 2147483647, 'HU', 'Hungary'), +('194.117.125.222', '194.117.125.222', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.125.223', '194.117.125.223', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.125.224', '194.117.125.224', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.125.225', '194.117.125.225', 2147483647, 2147483647, 'FR', 'France'), +('194.117.125.226', '194.117.125.226', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.117.125.227', '194.117.125.227', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.125.228', '194.117.125.228', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.125.229', '194.117.125.229', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.125.230', '194.117.125.230', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.125.231', '194.117.125.231', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('194.117.125.232', '194.117.125.236', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.125.237', '194.117.125.237', 2147483647, 2147483647, 'IS', 'Iceland'), +('194.117.125.238', '194.117.125.239', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.125.240', '194.117.125.240', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.125.241', '194.117.125.243', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.125.244', '194.117.125.244', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.125.245', '194.117.125.245', 2147483647, 2147483647, 'NO', 'Norway'), +('194.117.125.246', '194.117.125.246', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.117.125.247', '194.117.125.247', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.125.248', '194.117.125.248', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.125.249', '194.117.125.249', 2147483647, 2147483647, 'FR', 'France'), +('194.117.125.250', '194.117.125.250', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.125.251', '194.117.125.251', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.117.125.252', '194.117.125.252', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.125.253', '194.117.125.253', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.125.254', '194.117.126.1', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.126.2', '194.117.126.3', 2147483647, 2147483647, 'FR', 'France'), +('194.117.126.4', '194.117.126.4', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.126.5', '194.117.126.5', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.126.6', '194.117.126.7', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.126.8', '194.117.126.8', 2147483647, 2147483647, 'AT', 'Austria'), +('194.117.126.9', '194.117.126.9', 2147483647, 2147483647, 'HU', 'Hungary'), +('194.117.126.10', '194.117.126.11', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.126.12', '194.117.126.12', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.126.13', '194.117.126.14', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.126.15', '194.117.126.15', 2147483647, 2147483647, 'GR', 'Greece'), +('194.117.126.16', '194.117.126.16', 2147483647, 2147483647, 'FR', 'France'), +('194.117.126.17', '194.117.126.17', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.126.18', '194.117.126.20', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.126.21', '194.117.126.21', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('194.117.126.22', '194.117.126.22', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.126.23', '194.117.126.24', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.126.25', '194.117.126.27', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.126.28', '194.117.126.28', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.126.29', '194.117.126.29', 2147483647, 2147483647, 'AT', 'Austria'), +('194.117.126.30', '194.117.126.30', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.126.31', '194.117.126.31', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.126.32', '194.117.126.36', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.126.37', '194.117.126.37', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.117.126.38', '194.117.126.40', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.126.41', '194.117.126.41', 2147483647, 2147483647, 'NO', 'Norway'), +('194.117.126.42', '194.117.126.42', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.126.43', '194.117.126.43', 2147483647, 2147483647, 'FR', 'France'), +('194.117.126.44', '194.117.126.45', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.126.46', '194.117.126.46', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.126.47', '194.117.126.50', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.126.51', '194.117.126.51', 2147483647, 2147483647, 'AT', 'Austria'), +('194.117.126.52', '194.117.126.57', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.126.58', '194.117.126.58', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.126.59', '194.117.126.59', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.117.126.60', '194.117.126.60', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.126.61', '194.117.126.61', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.126.62', '194.117.126.63', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.126.64', '194.117.126.64', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.117.126.65', '194.117.126.65', 2147483647, 2147483647, 'FR', 'France'), +('194.117.126.66', '194.117.126.67', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.126.68', '194.117.126.68', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.126.69', '194.117.126.69', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.126.70', '194.117.126.72', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.126.73', '194.117.126.73', 2147483647, 2147483647, 'FR', 'France'), +('194.117.126.74', '194.117.126.74', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.126.75', '194.117.126.75', 2147483647, 2147483647, 'HU', 'Hungary'), +('194.117.126.76', '194.117.126.76', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.126.77', '194.117.126.77', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.126.78', '194.117.126.78', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.126.79', '194.117.126.81', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.126.82', '194.117.126.82', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.126.83', '194.117.126.83', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.126.84', '194.117.126.84', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.126.85', '194.117.126.85', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.117.126.86', '194.117.126.87', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.126.88', '194.117.126.88', 2147483647, 2147483647, 'AT', 'Austria'), +('194.117.126.89', '194.117.126.89', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.126.90', '194.117.126.90', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.126.91', '194.117.126.91', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.126.92', '194.117.126.92', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.126.93', '194.117.126.93', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.126.94', '194.117.126.102', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.126.103', '194.117.126.103', 2147483647, 2147483647, 'FR', 'France'), +('194.117.126.104', '194.117.126.104', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.126.105', '194.117.126.106', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.126.107', '194.117.126.107', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.126.108', '194.117.126.108', 2147483647, 2147483647, 'AT', 'Austria'), +('194.117.126.109', '194.117.126.112', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.126.113', '194.117.126.113', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.126.114', '194.117.126.115', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.126.116', '194.117.126.116', 2147483647, 2147483647, 'FR', 'France'), +('194.117.126.117', '194.117.126.117', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.126.118', '194.117.126.118', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.126.119', '194.117.126.121', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.126.122', '194.117.126.122', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.126.123', '194.117.126.123', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.126.124', '194.117.126.124', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.126.125', '194.117.126.129', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.126.130', '194.117.126.130', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.117.126.131', '194.117.126.133', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.126.134', '194.117.126.134', 2147483647, 2147483647, 'FR', 'France'), +('194.117.126.135', '194.117.126.137', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.126.138', '194.117.126.138', 2147483647, 2147483647, 'FR', 'France'), +('194.117.126.139', '194.117.126.139', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.117.126.140', '194.117.126.140', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.126.141', '194.117.126.143', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.126.144', '194.117.126.144', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.126.145', '194.117.126.146', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.126.147', '194.117.126.147', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.117.126.148', '194.117.126.148', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.126.149', '194.117.126.149', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.117.126.150', '194.117.126.150', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.126.151', '194.117.126.157', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.126.158', '194.117.126.158', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.126.159', '194.117.126.159', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.126.160', '194.117.126.160', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.126.161', '194.117.126.161', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.126.162', '194.117.126.162', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.126.163', '194.117.126.163', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('194.117.126.164', '194.117.126.165', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.126.166', '194.117.126.166', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.126.167', '194.117.126.167', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.126.168', '194.117.126.168', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.126.169', '194.117.126.169', 2147483647, 2147483647, 'AT', 'Austria'), +('194.117.126.170', '194.117.126.170', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.126.171', '194.117.126.171', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.126.172', '194.117.126.172', 2147483647, 2147483647, 'RS', 'Serbia'), +('194.117.126.173', '194.117.126.173', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.126.174', '194.117.126.176', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.126.177', '194.117.126.177', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('194.117.126.178', '194.117.126.179', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.126.180', '194.117.126.180', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.126.181', '194.117.126.185', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.126.186', '194.117.126.186', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.126.187', '194.117.126.187', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.126.188', '194.117.126.188', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.126.189', '194.117.126.190', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.126.191', '194.117.126.191', 2147483647, 2147483647, 'SI', 'Slovenia'), +('194.117.126.192', '194.117.126.194', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.126.195', '194.117.126.195', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.126.196', '194.117.126.199', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.126.200', '194.117.126.200', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.126.201', '194.117.126.201', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.126.202', '194.117.126.202', 2147483647, 2147483647, 'AT', 'Austria'), +('194.117.126.203', '194.117.126.204', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.126.205', '194.117.126.206', 2147483647, 2147483647, 'FR', 'France'), +('194.117.126.207', '194.117.126.208', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.126.209', '194.117.126.209', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.126.210', '194.117.126.210', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.126.211', '194.117.126.211', 2147483647, 2147483647, 'NO', 'Norway'), +('194.117.126.212', '194.117.126.212', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.126.213', '194.117.126.213', 2147483647, 2147483647, 'FR', 'France'), +('194.117.126.214', '194.117.126.215', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.126.216', '194.117.126.216', 2147483647, 2147483647, 'FR', 'France'), +('194.117.126.217', '194.117.126.217', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.126.218', '194.117.126.218', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.126.219', '194.117.126.220', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.126.221', '194.117.126.221', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.117.126.222', '194.117.126.222', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.126.223', '194.117.126.223', 2147483647, 2147483647, 'AT', 'Austria'), +('194.117.126.224', '194.117.126.225', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.126.226', '194.117.126.226', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.126.227', '194.117.126.232', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.126.233', '194.117.126.233', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.126.234', '194.117.126.234', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.126.235', '194.117.126.235', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.117.126.236', '194.117.126.237', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.126.238', '194.117.126.238', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.126.239', '194.117.126.239', 2147483647, 2147483647, 'AT', 'Austria'), +('194.117.126.240', '194.117.126.240', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.117.126.241', '194.117.126.241', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.126.242', '194.117.126.242', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.126.243', '194.117.126.244', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.126.245', '194.117.126.245', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.117.126.246', '194.117.126.253', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.126.254', '194.117.126.254', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.126.255', '194.117.127.5', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.127.6', '194.117.127.6', 2147483647, 2147483647, 'AT', 'Austria'), +('194.117.127.7', '194.117.127.7', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.127.8', '194.117.127.8', 2147483647, 2147483647, 'FR', 'France'), +('194.117.127.9', '194.117.127.11', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.127.12', '194.117.127.12', 2147483647, 2147483647, 'FR', 'France'), +('194.117.127.13', '194.117.127.13', 2147483647, 2147483647, 'AT', 'Austria'), +('194.117.127.14', '194.117.127.18', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.127.19', '194.117.127.19', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.127.20', '194.117.127.20', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.127.21', '194.117.127.22', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.127.23', '194.117.127.23', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.127.24', '194.117.127.26', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.127.27', '194.117.127.27', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.127.28', '194.117.127.30', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.127.31', '194.117.127.31', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.127.32', '194.117.127.33', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.127.34', '194.117.127.34', 2147483647, 2147483647, 'NO', 'Norway'), +('194.117.127.35', '194.117.127.36', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.127.37', '194.117.127.37', 2147483647, 2147483647, 'FR', 'France'), +('194.117.127.38', '194.117.127.44', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.127.45', '194.117.127.45', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.127.46', '194.117.127.46', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.127.47', '194.117.127.47', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.127.48', '194.117.127.48', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.127.49', '194.117.127.49', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.127.50', '194.117.127.50', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.127.51', '194.117.127.51', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.127.52', '194.117.127.52', 2147483647, 2147483647, 'FR', 'France'), +('194.117.127.53', '194.117.127.53', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.127.54', '194.117.127.54', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.127.55', '194.117.127.55', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.117.127.56', '194.117.127.56', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.127.57', '194.117.127.57', 2147483647, 2147483647, 'FR', 'France'), +('194.117.127.58', '194.117.127.58', 2147483647, 2147483647, 'PT', 'Portugal'), +('194.117.127.59', '194.117.127.59', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.127.60', '194.117.127.60', 2147483647, 2147483647, 'FI', 'Finland'), +('194.117.127.61', '194.117.127.61', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.127.62', '194.117.127.62', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.127.63', '194.117.127.63', 2147483647, 2147483647, 'NO', 'Norway'), +('194.117.127.64', '194.117.127.65', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.127.66', '194.117.127.66', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.127.67', '194.117.127.67', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.127.68', '194.117.127.69', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.127.70', '194.117.127.70', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.127.71', '194.117.127.71', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.127.72', '194.117.127.73', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.127.74', '194.117.127.74', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.127.75', '194.117.127.77', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.127.78', '194.117.127.78', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.127.79', '194.117.127.84', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.127.85', '194.117.127.85', 2147483647, 2147483647, 'FR', 'France'), +('194.117.127.86', '194.117.127.87', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.127.88', '194.117.127.88', 2147483647, 2147483647, 'HU', 'Hungary'), +('194.117.127.89', '194.117.127.90', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.127.91', '194.117.127.91', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.127.92', '194.117.127.92', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.127.93', '194.117.127.93', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.117.127.94', '194.117.127.98', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.127.99', '194.117.127.99', 2147483647, 2147483647, 'IE', 'Ireland'), +('194.117.127.100', '194.117.127.101', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.127.102', '194.117.127.102', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.117.127.103', '194.117.127.104', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.127.105', '194.117.127.105', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.117.127.106', '194.117.127.106', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.127.107', '194.117.127.107', 2147483647, 2147483647, 'HU', 'Hungary'), +('194.117.127.108', '194.117.127.108', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.127.109', '194.117.127.109', 2147483647, 2147483647, 'PL', 'Poland'), +('194.117.127.110', '194.117.127.110', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.127.111', '194.117.127.111', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.127.112', '194.117.127.115', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.127.116', '194.117.127.116', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.127.117', '194.117.127.118', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.127.119', '194.117.127.119', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.127.120', '194.117.127.120', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.127.121', '194.117.127.121', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.127.122', '194.117.127.122', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.127.123', '194.117.127.123', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.127.124', '194.117.127.125', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.127.126', '194.117.127.126', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.127.127', '194.117.127.131', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.127.132', '194.117.127.132', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.127.133', '194.117.127.133', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.117.127.134', '194.117.127.136', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.127.137', '194.117.127.137', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.127.138', '194.117.127.139', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.127.140', '194.117.127.140', 2147483647, 2147483647, 'FR', 'France'), +('194.117.127.141', '194.117.127.141', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.127.142', '194.117.127.142', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.127.143', '194.117.127.143', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.127.144', '194.117.127.144', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.117.127.145', '194.117.127.145', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.127.146', '194.117.127.146', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.127.147', '194.117.127.147', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.117.127.148', '194.117.127.148', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.127.149', '194.117.127.149', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.127.150', '194.117.127.150', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.127.151', '194.117.127.154', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.127.155', '194.117.127.155', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.127.156', '194.117.127.157', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.127.158', '194.117.127.158', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.127.159', '194.117.127.165', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.127.166', '194.117.127.166', 2147483647, 2147483647, 'FR', 'France'), +('194.117.127.167', '194.117.127.167', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.127.168', '194.117.127.168', 2147483647, 2147483647, 'NO', 'Norway'), +('194.117.127.169', '194.117.127.172', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.127.173', '194.117.127.173', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('194.117.127.174', '194.117.127.174', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.127.175', '194.117.127.176', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.127.177', '194.117.127.177', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.127.178', '194.117.127.178', 2147483647, 2147483647, 'AT', 'Austria'), +('194.117.127.179', '194.117.127.183', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.127.184', '194.117.127.184', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.127.185', '194.117.127.185', 2147483647, 2147483647, 'FR', 'France'), +('194.117.127.186', '194.117.127.186', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.127.187', '194.117.127.187', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.127.188', '194.117.127.188', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.127.189', '194.117.127.189', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.127.190', '194.117.127.190', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.127.191', '194.117.127.191', 2147483647, 2147483647, 'AT', 'Austria'), +('194.117.127.192', '194.117.127.192', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.117.127.193', '194.117.127.193', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.127.194', '194.117.127.194', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.127.195', '194.117.127.196', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.127.197', '194.117.127.197', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.127.198', '194.117.127.201', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.127.202', '194.117.127.202', 2147483647, 2147483647, 'FR', 'France'), +('194.117.127.203', '194.117.127.203', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.127.204', '194.117.127.204', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.127.205', '194.117.127.205', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.127.206', '194.117.127.206', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.127.207', '194.117.127.207', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.127.208', '194.117.127.208', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.127.209', '194.117.127.209', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.127.210', '194.117.127.212', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.127.213', '194.117.127.213', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.127.214', '194.117.127.214', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.127.215', '194.117.127.215', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.117.127.216', '194.117.127.216', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.127.217', '194.117.127.217', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.127.218', '194.117.127.218', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.127.219', '194.117.127.219', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.127.220', '194.117.127.220', 2147483647, 2147483647, 'IS', 'Iceland'), +('194.117.127.221', '194.117.127.221', 2147483647, 2147483647, 'AT', 'Austria'), +('194.117.127.222', '194.117.127.224', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.127.225', '194.117.127.225', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.127.226', '194.117.127.226', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.127.227', '194.117.127.227', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.127.228', '194.117.127.228', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.127.229', '194.117.127.229', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.127.230', '194.117.127.231', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.127.232', '194.117.127.235', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.127.236', '194.117.127.236', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.127.237', '194.117.127.237', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.127.238', '194.117.127.238', 2147483647, 2147483647, 'AT', 'Austria'), +('194.117.127.239', '194.117.127.239', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.127.240', '194.117.127.240', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.127.241', '194.117.127.241', 2147483647, 2147483647, 'FR', 'France'), +('194.117.127.242', '194.117.127.242', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.127.243', '194.117.127.243', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.127.244', '194.117.127.244', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.127.245', '194.117.127.245', 2147483647, 2147483647, 'AT', 'Austria'), +('194.117.127.246', '194.117.127.246', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.127.247', '194.117.127.247', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.117.127.248', '194.117.127.248', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.127.249', '194.117.127.249', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.127.250', '194.117.127.250', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.127.251', '194.117.127.251', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.117.127.252', '194.117.127.252', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.127.253', '194.117.127.253', 2147483647, 2147483647, 'IT', 'Italy'), +('194.117.127.254', '194.117.127.254', 2147483647, 2147483647, 'ES', 'Spain'), +('194.117.127.255', '194.117.127.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.128.0', '194.117.159.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.160.0', '194.117.191.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.117.192.0', '194.117.223.255', 2147483647, 2147483647, 'FR', 'France'), +('194.117.224.0', '194.117.225.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.226.0', '194.117.227.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.228.0', '194.117.229.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.117.230.0', '194.117.231.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.117.232.0', '194.117.233.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.117.234.0', '194.117.239.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.117.240.0', '194.117.241.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.117.242.0', '194.117.243.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.117.244.0', '194.117.247.255', 2147483647, 2147483647, 'FR', 'France'), +('194.117.248.0', '194.117.249.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.250.0', '194.117.251.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.117.252.0', '194.117.253.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.117.254.0', '194.117.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.118.0.0', '194.118.255.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.119.0.0', '194.119.127.255', 2147483647, 2147483647, 'FR', 'France'), +('194.119.128.0', '194.119.191.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.119.192.0', '194.119.223.255', 2147483647, 2147483647, 'IT', 'Italy'), +('194.119.224.0', '194.119.255.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.120.0.0', '194.120.15.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.120.16.0', '194.120.17.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.120.18.0', '194.120.21.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.120.22.0', '194.120.24.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.120.25.0', '194.120.39.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.120.40.0', '194.120.40.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.120.41.0', '194.120.42.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.120.43.0', '194.120.43.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.120.44.0', '194.120.54.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.120.55.0', '194.120.55.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.120.56.0', '194.120.65.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.120.66.0', '194.120.66.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.120.67.0', '194.120.79.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.120.80.0', '194.120.105.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.120.106.0', '194.120.108.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.120.109.0', '194.120.111.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.120.112.0', '194.120.115.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.120.116.0', '194.120.116.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.120.117.0', '194.120.118.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.120.119.0', '194.120.119.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.120.120.0', '194.120.125.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.120.126.0', '194.120.126.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.120.127.0', '194.120.132.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.120.133.0', '194.120.133.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.120.134.0', '194.120.143.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.120.144.0', '194.120.144.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.120.145.0', '194.120.149.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.120.150.0', '194.120.150.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.120.151.0', '194.120.162.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.120.163.0', '194.120.164.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.120.165.0', '194.120.169.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.120.170.0', '194.120.171.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.120.172.0', '194.120.172.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.120.173.0', '194.120.173.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.120.174.0', '194.120.181.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.120.182.0', '194.120.184.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.120.185.0', '194.120.188.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.120.189.0', '194.120.189.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.120.190.0', '194.120.191.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.120.192.0', '194.120.223.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.120.224.0', '194.120.229.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.120.230.0', '194.120.231.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.120.232.0', '194.120.233.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.120.234.0', '194.120.234.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.120.235.0', '194.120.248.95', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.120.248.96', '194.120.248.127', 2147483647, 2147483647, 'DE', 'Germany'), +('194.120.248.128', '194.120.248.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.120.249.0', '194.120.249.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.120.250.0', '194.120.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.121.0.0', '194.121.0.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.121.1.0', '194.121.1.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.121.2.0', '194.121.2.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.121.3.0', '194.121.10.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.121.11.0', '194.121.11.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.121.12.0', '194.121.20.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.121.21.0', '194.121.21.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.121.22.0', '194.121.25.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.121.26.0', '194.121.26.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.121.27.0', '194.121.45.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.121.46.0', '194.121.46.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.121.47.0', '194.121.47.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.121.48.0', '194.121.51.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.121.52.0', '194.121.55.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.121.56.0', '194.121.56.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.121.57.0', '194.121.58.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.121.59.0', '194.121.59.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.121.60.0', '194.121.61.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.121.62.0', '194.121.63.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.121.64.0', '194.121.65.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.121.66.0', '194.121.66.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.121.67.0', '194.121.89.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.121.90.0', '194.121.90.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.121.91.0', '194.121.103.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.121.104.0', '194.121.105.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.121.106.0', '194.121.122.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.121.123.0', '194.121.123.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.121.124.0', '194.121.171.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.121.172.0', '194.121.175.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.121.176.0', '194.121.202.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.121.203.0', '194.121.203.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.121.204.0', '194.121.219.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.121.220.0', '194.121.220.7', 2147483647, 2147483647, 'DE', 'Germany'), +('194.121.220.8', '194.121.253.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.121.254.0', '194.121.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.122.0.0', '194.122.76.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.122.76.64', '194.122.76.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.122.77.0', '194.122.83.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.122.84.0', '194.122.84.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.122.85.0', '194.122.130.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.122.131.0', '194.122.131.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.122.132.0', '194.122.223.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.122.224.0', '194.122.253.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.122.254.0', '194.123.7.0', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.123.7.1', '194.123.7.1', 2147483647, 2147483647, 'DE', 'Germany'), +('194.123.7.2', '194.123.121.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.123.122.0', '194.123.122.63', 2147483647, 2147483647, 'DE', 'Germany'), +('194.123.122.64', '194.123.122.95', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.123.122.96', '194.123.122.127', 2147483647, 2147483647, 'DE', 'Germany'), +('194.123.122.128', '194.123.122.191', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.123.122.192', '194.123.122.207', 2147483647, 2147483647, 'DE', 'Germany'), +('194.123.122.208', '194.123.122.211', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.123.122.212', '194.123.122.215', 2147483647, 2147483647, 'DE', 'Germany'), +('194.123.122.216', '194.123.122.243', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.123.122.244', '194.123.122.244', 2147483647, 2147483647, 'DE', 'Germany'), +('194.123.122.245', '194.123.122.245', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.123.122.246', '194.123.122.249', 2147483647, 2147483647, 'DE', 'Germany'), +('194.123.122.250', '194.123.163.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.123.164.0', '194.123.164.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.123.165.0', '194.123.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.124.0.0', '194.124.228.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.124.229.0', '194.124.229.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.124.230.0', '194.124.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.125.0.0', '194.125.223.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('194.125.224.0', '194.125.227.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.125.228.0', '194.125.231.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.125.232.0', '194.125.235.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('194.125.236.0', '194.125.239.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.125.240.0', '194.125.241.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('194.125.242.0', '194.125.243.255', 2147483647, 2147483647, 'IT', 'Italy'), +('194.125.244.0', '194.125.245.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.125.246.0', '194.125.247.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.125.248.0', '194.125.249.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.125.250.0', '194.125.251.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.125.252.0', '194.125.253.255', 2147483647, 2147483647, 'GR', 'Greece'), +('194.125.254.0', '194.125.255.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.126.0.0', '194.126.31.255', 2147483647, 2147483647, 'LB', 'Lebanon'), +('194.126.32.0', '194.126.40.255', 2147483647, 2147483647, 'KW', 'Kuwait'), +('194.126.41.0', '194.126.41.255', 2147483647, 2147483647, 'LB', 'Lebanon'), +('194.126.42.0', '194.126.63.255', 2147483647, 2147483647, 'KW', 'Kuwait'), +('194.126.64.0', '194.126.95.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.126.96.0', '194.126.127.255', 2147483647, 2147483647, 'EE', 'Estonia'), +('194.126.128.0', '194.126.129.255', 2147483647, 2147483647, 'FR', 'France'), +('194.126.130.0', '194.126.130.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.126.131.0', '194.126.132.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.126.133.0', '194.126.135.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.126.136.0', '194.126.143.255', 2147483647, 2147483647, 'LB', 'Lebanon'), +('194.126.144.0', '194.126.145.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.126.148.0', '194.126.149.255', 2147483647, 2147483647, 'GB', 'United Kingdom'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('194.126.150.0', '194.126.151.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.126.152.0', '194.126.153.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.126.154.0', '194.126.155.255', 2147483647, 2147483647, 'IT', 'Italy'), +('194.126.156.0', '194.126.157.255', 2147483647, 2147483647, 'FR', 'France'), +('194.126.158.0', '194.126.159.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.126.160.0', '194.126.163.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.126.164.0', '194.126.167.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.126.168.0', '194.126.171.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.126.172.0', '194.126.175.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.126.176.0', '194.126.179.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.126.180.0', '194.126.183.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.126.184.0', '194.126.187.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.126.188.0', '194.126.191.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.126.192.0', '194.126.192.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.126.193.0', '194.126.193.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.126.194.0', '194.126.196.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.126.197.0', '194.126.197.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('194.126.198.0', '194.126.199.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.126.200.0', '194.126.201.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.126.202.0', '194.126.202.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.126.203.0', '194.126.203.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.126.204.0', '194.126.204.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.126.205.0', '194.126.205.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.126.206.0', '194.126.206.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.126.207.0', '194.126.207.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.126.208.0', '194.126.208.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.126.209.0', '194.126.209.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.126.210.0', '194.126.210.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.126.211.0', '194.126.211.255', 2147483647, 2147483647, 'NO', 'Norway'), +('194.126.212.0', '194.126.212.255', 2147483647, 2147483647, 'FI', 'Finland'), +('194.126.213.0', '194.126.214.255', 2147483647, 2147483647, 'HR', 'Croatia'), +('194.126.215.0', '194.126.215.255', 2147483647, 2147483647, 'ES', 'Spain'), +('194.126.216.0', '194.126.216.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.126.217.0', '194.126.217.255', 2147483647, 2147483647, 'FR', 'France'), +('194.126.218.0', '194.126.218.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.126.219.0', '194.126.219.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.126.220.0', '194.126.220.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.126.221.0', '194.126.222.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.126.223.0', '194.126.223.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.126.224.0', '194.126.224.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.126.225.0', '194.126.225.255', 2147483647, 2147483647, 'ES', 'Spain'), +('194.126.226.0', '194.126.226.255', 2147483647, 2147483647, 'FR', 'France'), +('194.126.227.0', '194.126.227.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.126.228.0', '194.126.228.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.126.229.0', '194.126.229.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.126.230.0', '194.126.230.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('194.126.231.0', '194.126.231.255', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('194.126.232.0', '194.126.232.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.126.233.0', '194.126.233.255', 2147483647, 2147483647, 'FR', 'France'), +('194.126.234.0', '194.126.234.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.126.235.0', '194.126.235.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.126.236.0', '194.126.236.255', 2147483647, 2147483647, 'FR', 'France'), +('194.126.237.0', '194.126.237.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.126.238.0', '194.126.238.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.126.239.0', '194.126.239.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.126.240.0', '194.126.240.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.126.241.0', '194.126.241.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.126.242.0', '194.126.243.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.126.244.0', '194.126.244.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.126.245.0', '194.126.245.255', 2147483647, 2147483647, 'FR', 'France'), +('194.126.246.0', '194.126.246.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.126.247.0', '194.126.247.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.126.248.0', '194.126.248.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.126.249.0', '194.126.249.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.126.250.0', '194.126.250.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.126.251.0', '194.126.251.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.126.252.0', '194.126.252.255', 2147483647, 2147483647, 'LT', 'Lithuania'), +('194.126.253.0', '194.126.253.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.126.254.0', '194.126.254.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.126.255.0', '194.126.255.255', 2147483647, 2147483647, 'GR', 'Greece'), +('194.127.0.0', '194.127.135.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.127.136.0', '194.127.137.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.127.138.0', '194.127.138.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.127.139.0', '194.127.139.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.127.140.0', '194.127.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.128.0.0', '194.131.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.132.0.0', '194.132.23.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.132.24.0', '194.132.25.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.132.26.0', '194.132.183.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.132.184.0', '194.132.184.255', 2147483647, 2147483647, 'JP', 'Japan'), +('194.132.185.0', '194.132.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.133.0.0', '194.133.6.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.133.7.0', '194.133.7.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.133.8.0', '194.133.9.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.133.10.0', '194.133.10.127', 2147483647, 2147483647, 'US', 'United States'), +('194.133.10.128', '194.133.10.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.133.10.192', '194.133.10.207', 2147483647, 2147483647, 'EU', 'Europe'), +('194.133.10.208', '194.133.10.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.133.11.0', '194.133.13.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.133.14.0', '194.133.14.255', 2147483647, 2147483647, 'FR', 'France'), +('194.133.15.0', '194.133.15.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.133.16.0', '194.133.17.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.133.18.0', '194.133.20.29', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.133.20.30', '194.133.20.31', 2147483647, 2147483647, 'EU', 'Europe'), +('194.133.20.32', '194.133.20.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.133.20.128', '194.133.20.191', 2147483647, 2147483647, 'US', 'United States'), +('194.133.20.192', '194.133.20.207', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.133.20.208', '194.133.20.215', 2147483647, 2147483647, 'IR', 'Iran, Islamic Republic of'), +('194.133.20.216', '194.133.20.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.133.20.224', '194.133.20.239', 2147483647, 2147483647, 'DE', 'Germany'), +('194.133.20.240', '194.133.21.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.133.22.0', '194.133.22.255', 2147483647, 2147483647, 'EG', 'Egypt'), +('194.133.23.0', '194.133.26.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.133.27.0', '194.133.27.63', 2147483647, 2147483647, 'DE', 'Germany'), +('194.133.27.64', '194.133.27.95', 2147483647, 2147483647, 'EU', 'Europe'), +('194.133.27.96', '194.133.27.163', 2147483647, 2147483647, 'DE', 'Germany'), +('194.133.27.164', '194.133.27.167', 2147483647, 2147483647, 'EU', 'Europe'), +('194.133.27.168', '194.133.27.175', 2147483647, 2147483647, 'DE', 'Germany'), +('194.133.27.176', '194.133.27.191', 2147483647, 2147483647, 'EU', 'Europe'), +('194.133.27.192', '194.133.27.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.133.28.0', '194.133.29.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.133.30.0', '194.133.30.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.133.31.0', '194.133.31.127', 2147483647, 2147483647, 'EG', 'Egypt'), +('194.133.31.128', '194.133.40.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.133.41.0', '194.133.41.127', 2147483647, 2147483647, 'DE', 'Germany'), +('194.133.41.128', '194.133.41.255', 2147483647, 2147483647, 'US', 'United States'), +('194.133.42.0', '194.133.42.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.133.43.0', '194.133.43.255', 2147483647, 2147483647, 'US', 'United States'), +('194.133.44.0', '194.133.46.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.133.47.0', '194.133.47.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.133.48.0', '194.133.51.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.133.52.0', '194.133.52.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.133.53.0', '194.133.53.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.133.53.32', '194.133.53.47', 2147483647, 2147483647, 'IE', 'Ireland'), +('194.133.53.48', '194.133.53.71', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.133.53.72', '194.133.53.79', 2147483647, 2147483647, 'FR', 'France'), +('194.133.53.80', '194.133.53.87', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.133.53.88', '194.133.53.127', 2147483647, 2147483647, 'US', 'United States'), +('194.133.53.128', '194.133.54.7', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.133.54.8', '194.133.54.15', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.133.54.16', '194.133.54.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.133.54.48', '194.133.54.63', 2147483647, 2147483647, 'US', 'United States'), +('194.133.54.64', '194.133.54.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.133.55.0', '194.133.58.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.133.59.0', '194.133.59.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.133.60.0', '194.133.61.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.133.62.0', '194.133.62.247', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.133.62.248', '194.133.66.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.133.67.0', '194.133.67.255', 2147483647, 2147483647, 'US', 'United States'), +('194.133.68.0', '194.133.68.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.133.69.0', '194.133.69.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.133.70.0', '194.133.79.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.133.80.0', '194.133.80.255', 2147483647, 2147483647, 'US', 'United States'), +('194.133.81.0', '194.133.81.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.133.82.0', '194.133.83.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.133.84.0', '194.133.84.255', 2147483647, 2147483647, 'US', 'United States'), +('194.133.85.0', '194.133.86.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.133.87.0', '194.133.87.255', 2147483647, 2147483647, 'FR', 'France'), +('194.133.88.0', '194.133.88.31', 2147483647, 2147483647, 'IR', 'Iran, Islamic Republic of'), +('194.133.88.32', '194.133.88.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.133.89.0', '194.133.89.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.133.90.0', '194.133.91.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.133.92.0', '194.133.92.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.133.92.16', '194.133.93.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.133.94.0', '194.133.94.255', 2147483647, 2147483647, 'FR', 'France'), +('194.133.95.0', '194.133.95.255', 2147483647, 2147483647, 'US', 'United States'), +('194.133.96.0', '194.133.99.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.133.100.0', '194.133.100.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.133.101.0', '194.133.104.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.133.105.0', '194.133.106.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.133.107.0', '194.133.115.127', 2147483647, 2147483647, 'EU', 'Europe'), +('194.133.115.128', '194.133.115.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.133.116.0', '194.133.121.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.133.122.0', '194.133.122.255', 2147483647, 2147483647, 'ZW', 'Zimbabwe'), +('194.133.123.0', '194.133.123.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.133.124.0', '194.133.124.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.133.125.0', '194.133.125.255', 2147483647, 2147483647, 'FR', 'France'), +('194.133.126.0', '194.133.126.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.133.127.0', '194.133.127.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.133.128.0', '194.133.133.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.133.134.0', '194.133.134.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.133.135.0', '194.133.137.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.133.138.0', '194.133.138.15', 2147483647, 2147483647, 'DE', 'Germany'), +('194.133.138.16', '194.133.138.31', 2147483647, 2147483647, 'EU', 'Europe'), +('194.133.138.32', '194.133.138.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.133.139.0', '194.133.141.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.133.142.0', '194.133.142.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.133.143.0', '194.133.161.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.133.162.0', '194.133.164.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('194.133.165.0', '194.133.171.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.133.172.0', '194.133.172.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('194.133.173.0', '194.133.173.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.133.174.0', '194.133.176.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.133.177.0', '194.133.177.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.133.177.32', '194.133.239.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.133.240.0', '194.133.240.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('194.133.241.0', '194.133.243.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.133.244.0', '194.133.244.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('194.133.245.0', '194.133.247.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.133.248.0', '194.133.249.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('194.133.250.0', '194.133.250.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.133.251.0', '194.133.251.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('194.133.252.0', '194.133.252.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.133.253.0', '194.133.254.15', 2147483647, 2147483647, 'TR', 'Turkey'), +('194.133.254.16', '194.133.254.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.133.255.0', '194.133.255.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('194.134.0.0', '194.134.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.135.0.0', '194.135.117.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.135.118.0', '194.135.118.255', 2147483647, 2147483647, 'KZ', 'Kazakstan'), +('194.135.119.0', '194.135.222.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.135.223.0', '194.135.223.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.135.224.0', '194.135.240.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.135.241.0', '194.135.241.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.135.242.0', '194.135.242.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.135.243.0', '194.135.243.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.135.244.0', '194.135.244.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.135.245.0', '194.135.245.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.135.246.0', '194.135.248.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.135.249.0', '194.135.249.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.135.250.0', '194.135.251.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.135.252.0', '194.135.252.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.135.253.0', '194.135.253.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.135.254.0', '194.135.255.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.136.0.0', '194.137.6.255', 2147483647, 2147483647, 'FI', 'Finland'), +('194.137.7.0', '194.137.7.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.137.8.0', '194.137.25.255', 2147483647, 2147483647, 'FI', 'Finland'), +('194.137.26.0', '194.137.27.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.137.28.0', '194.137.33.191', 2147483647, 2147483647, 'FI', 'Finland'), +('194.137.33.192', '194.137.33.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.137.34.0', '194.137.60.255', 2147483647, 2147483647, 'FI', 'Finland'), +('194.137.61.0', '194.137.61.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.137.62.0', '194.137.62.255', 2147483647, 2147483647, 'FI', 'Finland'), +('194.137.63.0', '194.137.63.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.137.64.0', '194.137.132.223', 2147483647, 2147483647, 'FI', 'Finland'), +('194.137.132.224', '194.137.132.239', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.137.132.240', '194.137.132.255', 2147483647, 2147483647, 'FI', 'Finland'), +('194.137.133.0', '194.137.133.255', 2147483647, 2147483647, 'AX', 'Aland Islands'), +('194.137.134.0', '194.137.135.255', 2147483647, 2147483647, 'FI', 'Finland'), +('194.137.136.0', '194.137.136.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.137.137.0', '194.137.221.211', 2147483647, 2147483647, 'FI', 'Finland'), +('194.137.221.212', '194.137.221.215', 2147483647, 2147483647, 'AX', 'Aland Islands'), +('194.137.221.216', '194.137.227.255', 2147483647, 2147483647, 'FI', 'Finland'), +('194.137.228.0', '194.137.228.255', 2147483647, 2147483647, 'ES', 'Spain'), +('194.137.229.0', '194.137.229.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.137.230.0', '194.137.255.255', 2147483647, 2147483647, 'FI', 'Finland'), +('194.138.0.0', '194.139.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.140.0.0', '194.140.95.255', 2147483647, 2147483647, 'ES', 'Spain'), +('194.140.96.0', '194.140.127.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.140.128.0', '194.140.191.255', 2147483647, 2147483647, 'ES', 'Spain'), +('194.140.192.0', '194.140.223.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('194.140.224.0', '194.140.224.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.140.225.0', '194.140.225.255', 2147483647, 2147483647, 'FR', 'France'), +('194.140.226.0', '194.140.226.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.140.227.0', '194.140.227.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('194.140.228.0', '194.140.228.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.140.229.0', '194.140.229.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.140.230.0', '194.140.230.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.140.231.0', '194.140.231.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.140.232.0', '194.140.232.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('194.140.233.0', '194.140.233.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.140.234.0', '194.140.234.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('194.140.235.0', '194.140.235.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.140.236.0', '194.140.236.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.140.237.0', '194.140.237.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.140.238.0', '194.140.238.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('194.140.239.0', '194.140.239.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.140.240.0', '194.140.240.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.140.241.0', '194.140.241.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.140.242.0', '194.140.242.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.140.243.0', '194.140.244.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.140.245.0', '194.140.245.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.140.246.0', '194.140.246.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.140.247.0', '194.140.247.255', 2147483647, 2147483647, 'FR', 'France'), +('194.140.248.0', '194.140.248.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('194.140.249.0', '194.140.249.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.140.250.0', '194.140.250.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.140.251.0', '194.140.253.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.140.254.0', '194.140.254.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.140.255.0', '194.140.255.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.141.0.0', '194.141.255.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('194.142.0.0', '194.142.24.127', 2147483647, 2147483647, 'FI', 'Finland'), +('194.142.24.128', '194.142.24.135', 2147483647, 2147483647, 'AX', 'Aland Islands'), +('194.142.24.136', '194.142.53.255', 2147483647, 2147483647, 'FI', 'Finland'), +('194.142.54.0', '194.142.54.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.142.55.0', '194.142.151.255', 2147483647, 2147483647, 'FI', 'Finland'), +('194.142.152.0', '194.142.152.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.142.153.0', '194.142.153.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.142.154.0', '194.142.154.255', 2147483647, 2147483647, 'FI', 'Finland'), +('194.142.155.0', '194.142.155.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.142.156.0', '194.142.168.247', 2147483647, 2147483647, 'FI', 'Finland'), +('194.142.168.248', '194.142.168.255', 2147483647, 2147483647, 'AX', 'Aland Islands'), +('194.142.169.0', '194.142.184.255', 2147483647, 2147483647, 'FI', 'Finland'), +('194.142.185.0', '194.142.185.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.142.186.0', '194.142.255.255', 2147483647, 2147483647, 'FI', 'Finland'), +('194.143.0.0', '194.143.127.255', 2147483647, 2147483647, 'NO', 'Norway'), +('194.143.128.0', '194.143.129.255', 2147483647, 2147483647, 'MD', 'Moldova, Republic of'), +('194.143.130.0', '194.143.131.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.143.132.0', '194.143.133.255', 2147483647, 2147483647, 'FR', 'France'), +('194.143.134.0', '194.143.135.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.143.136.0', '194.143.137.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.143.138.0', '194.143.139.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.143.140.0', '194.143.141.255', 2147483647, 2147483647, 'IR', 'Iran, Islamic Republic of'), +('194.143.142.0', '194.143.143.255', 2147483647, 2147483647, 'IT', 'Italy'), +('194.143.144.0', '194.143.147.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.143.148.0', '194.143.151.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.143.152.0', '194.143.153.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('194.143.154.0', '194.143.155.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.143.156.0', '194.143.157.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.143.158.0', '194.143.191.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.143.192.0', '194.143.223.255', 2147483647, 2147483647, 'ES', 'Spain'), +('194.143.224.0', '194.143.255.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('194.144.0.0', '194.144.255.255', 2147483647, 2147483647, 'IS', 'Iceland'), +('194.145.0.0', '194.145.31.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.145.32.0', '194.145.52.255', 2147483647, 2147483647, 'FI', 'Finland'), +('194.145.53.0', '194.145.58.255', 2147483647, 2147483647, 'FR', 'France'), +('194.145.59.0', '194.145.62.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('194.145.63.0', '194.145.63.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('194.145.64.0', '194.145.95.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.145.96.0', '194.145.111.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.145.112.0', '194.145.112.255', 2147483647, 2147483647, 'FR', 'France'), +('194.145.113.0', '194.145.113.255', 2147483647, 2147483647, 'IT', 'Italy'), +('194.145.114.0', '194.145.114.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.145.115.0', '194.145.115.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.145.116.0', '194.145.116.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.145.117.0', '194.145.117.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.145.118.0', '194.145.119.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.145.120.0', '194.145.120.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.145.121.0', '194.145.121.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('194.145.122.0', '194.145.124.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.145.125.0', '194.145.125.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.145.126.0', '194.145.126.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.145.127.0', '194.145.127.255', 2147483647, 2147483647, 'GR', 'Greece'), +('194.145.128.0', '194.145.135.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('194.145.136.0', '194.145.139.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('194.145.140.0', '194.145.141.255', 2147483647, 2147483647, 'ES', 'Spain'), +('194.145.142.0', '194.145.143.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.145.144.0', '194.145.144.255', 2147483647, 2147483647, 'FR', 'France'), +('194.145.145.0', '194.145.145.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.145.146.0', '194.145.146.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.145.147.0', '194.145.149.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.145.150.0', '194.145.151.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.145.152.0', '194.145.152.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.145.153.0', '194.145.153.255', 2147483647, 2147483647, 'RS', 'Serbia'), +('194.145.154.0', '194.145.154.255', 2147483647, 2147483647, 'FR', 'France'), +('194.145.155.0', '194.145.155.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.145.156.0', '194.145.156.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('194.145.157.0', '194.145.157.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.145.158.0', '194.145.158.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.145.159.0', '194.145.159.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.145.160.0', '194.145.163.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('194.145.164.0', '194.145.167.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.145.168.0', '194.145.171.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.145.172.0', '194.145.175.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.145.176.0', '194.145.179.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.145.180.0', '194.145.183.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('194.145.184.0', '194.145.187.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.145.188.0', '194.145.191.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.145.192.0', '194.145.193.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.145.194.0', '194.145.195.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.145.196.0', '194.145.197.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.145.198.0', '194.145.199.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.145.200.0', '194.145.201.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.145.202.0', '194.145.203.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.145.204.0', '194.145.205.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.145.206.0', '194.145.207.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('194.145.208.0', '194.145.209.255', 2147483647, 2147483647, 'CY', 'Cyprus'), +('194.145.210.0', '194.145.211.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.145.212.0', '194.145.213.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.145.214.0', '194.145.217.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.145.218.0', '194.145.219.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.145.220.0', '194.145.221.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.145.222.0', '194.145.223.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.145.224.0', '194.145.224.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.145.225.0', '194.145.225.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.145.226.0', '194.145.226.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.145.227.0', '194.145.227.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.145.228.0', '194.145.229.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.145.230.0', '194.145.230.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.145.231.0', '194.145.231.255', 2147483647, 2147483647, 'IT', 'Italy'), +('194.145.232.0', '194.145.236.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.145.237.0', '194.145.237.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.145.238.0', '194.145.238.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.145.239.0', '194.145.239.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.145.240.0', '194.145.243.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.145.244.0', '194.145.247.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.145.248.0', '194.145.251.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.145.252.0', '194.145.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.146.0.0', '194.146.104.255', 2147483647, 2147483647, 'FR', 'France'), +('194.146.105.0', '194.146.108.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.146.109.0', '194.146.109.255', 2147483647, 2147483647, 'HR', 'Croatia'), +('194.146.110.0', '194.146.110.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.146.111.0', '194.146.111.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.146.112.0', '194.146.112.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.146.113.0', '194.146.113.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.146.114.0', '194.146.114.255', 2147483647, 2147483647, 'IT', 'Italy'), +('194.146.115.0', '194.146.116.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.146.117.0', '194.146.117.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.146.118.0', '194.146.118.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.146.119.0', '194.146.119.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.146.120.0', '194.146.120.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.146.121.0', '194.146.121.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.146.122.0', '194.146.122.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.146.123.0', '194.146.124.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.146.125.0', '194.146.125.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.146.126.0', '194.146.126.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.146.127.0', '194.146.127.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.146.128.0', '194.146.131.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.146.132.0', '194.146.143.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.146.144.0', '194.146.147.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.146.148.0', '194.146.151.255', 2147483647, 2147483647, 'IR', 'Iran, Islamic Republic of'), +('194.146.152.0', '194.146.155.255', 2147483647, 2147483647, 'LB', 'Lebanon'), +('194.146.156.0', '194.146.159.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.146.160.0', '194.146.163.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.146.164.0', '194.146.167.255', 2147483647, 2147483647, 'IR', 'Iran, Islamic Republic of'), +('194.146.168.0', '194.146.171.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.146.172.0', '194.146.175.255', 2147483647, 2147483647, 'FR', 'France'), +('194.146.176.0', '194.146.179.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.146.180.0', '194.146.183.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.146.184.0', '194.146.187.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.146.188.0', '194.146.191.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.146.192.0', '194.146.195.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.146.196.0', '194.146.199.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.146.200.0', '194.146.203.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.146.204.0', '194.146.207.255', 2147483647, 2147483647, 'PA', 'Panama'), +('194.146.208.0', '194.146.211.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.146.212.0', '194.146.215.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.146.216.0', '194.146.219.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.146.220.0', '194.146.223.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.146.224.0', '194.146.227.255', 2147483647, 2147483647, 'FR', 'France'), +('194.146.228.0', '194.146.231.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.146.232.0', '194.146.235.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('194.146.236.0', '194.146.239.255', 2147483647, 2147483647, 'AE', 'United Arab Emirates'), +('194.146.240.0', '194.146.243.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.146.244.0', '194.146.247.255', 2147483647, 2147483647, 'NO', 'Norway'), +('194.146.248.0', '194.146.255.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.147.0.0', '194.147.67.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.147.68.0', '194.147.69.255', 2147483647, 2147483647, 'LI', 'Liechtenstein'), +('194.147.70.0', '194.147.126.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.147.127.0', '194.147.127.255', 2147483647, 2147483647, 'FR', 'France'), +('194.147.128.0', '194.148.14.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.148.15.0', '194.148.15.255', 2147483647, 2147483647, 'LI', 'Liechtenstein'), +('194.148.16.0', '194.148.28.127', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.148.28.128', '194.148.28.159', 2147483647, 2147483647, 'LI', 'Liechtenstein'), +('194.148.28.160', '194.148.57.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.148.58.0', '194.148.58.255', 2147483647, 2147483647, 'US', 'United States'), +('194.148.59.0', '194.148.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.149.0.0', '194.149.63.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('194.149.64.0', '194.149.71.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.149.72.0', '194.149.75.255', 2147483647, 2147483647, 'ES', 'Spain'), +('194.149.76.0', '194.149.79.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('194.149.80.0', '194.149.87.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.149.88.0', '194.149.88.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.149.89.0', '194.149.89.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.149.90.0', '194.149.91.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.149.92.0', '194.149.92.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.149.93.0', '194.149.93.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.149.94.0', '194.149.94.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.149.95.0', '194.149.95.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.149.96.0', '194.149.127.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('194.149.128.0', '194.149.159.255', 2147483647, 2147483647, 'MK', 'Macedonia'), +('194.149.160.0', '194.149.191.255', 2147483647, 2147483647, 'FR', 'France'), +('194.149.192.0', '194.149.223.255', 2147483647, 2147483647, 'ES', 'Spain'), +('194.149.224.0', '194.149.227.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.149.228.0', '194.149.231.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.149.232.0', '194.149.233.255', 2147483647, 2147483647, 'IT', 'Italy'), +('194.149.234.0', '194.149.235.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.149.236.0', '194.149.237.255', 2147483647, 2147483647, 'GR', 'Greece'), +('194.149.238.0', '194.149.239.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.149.240.0', '194.149.240.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.149.241.0', '194.149.241.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.149.242.0', '194.149.242.255', 2147483647, 2147483647, 'FR', 'France'), +('194.149.243.0', '194.149.243.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.149.244.0', '194.149.244.255', 2147483647, 2147483647, 'IT', 'Italy'), +('194.149.245.0', '194.149.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.150.0.0', '194.150.63.255', 2147483647, 2147483647, 'FR', 'France'), +('194.150.64.0', '194.150.67.255', 2147483647, 2147483647, 'EE', 'Estonia'), +('194.150.68.0', '194.150.71.255', 2147483647, 2147483647, 'GR', 'Greece'), +('194.150.72.0', '194.150.79.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.150.80.0', '194.150.83.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.150.84.0', '194.150.87.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.150.88.0', '194.150.91.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.150.92.0', '194.150.95.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.150.96.0', '194.150.103.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.150.104.0', '194.150.107.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.150.108.0', '194.150.115.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.150.116.0', '194.150.119.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('194.150.120.0', '194.150.123.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.150.124.0', '194.150.159.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.150.160.0', '194.150.161.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.150.162.0', '194.150.163.255', 2147483647, 2147483647, 'IT', 'Italy'), +('194.150.164.0', '194.150.165.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.150.166.0', '194.150.167.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.150.168.0', '194.150.169.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.150.170.0', '194.150.171.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.150.172.0', '194.150.173.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.150.174.0', '194.150.175.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.150.176.0', '194.150.177.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.150.178.0', '194.150.179.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.150.180.0', '194.150.181.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('194.150.182.0', '194.150.183.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.150.184.0', '194.150.185.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.150.186.0', '194.150.187.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.150.188.0', '194.150.191.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.150.192.0', '194.150.193.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.150.194.0', '194.150.195.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.150.196.0', '194.150.197.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.150.198.0', '194.150.199.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.150.200.0', '194.150.201.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.150.202.0', '194.150.203.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.150.204.0', '194.150.205.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.150.206.0', '194.150.207.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.150.208.0', '194.150.209.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.150.210.0', '194.150.211.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.150.212.0', '194.150.213.255', 2147483647, 2147483647, 'NO', 'Norway'), +('194.150.214.0', '194.150.215.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.150.216.0', '194.150.217.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.150.218.0', '194.150.219.255', 2147483647, 2147483647, 'IL', 'Israel'), +('194.150.220.0', '194.150.221.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.150.222.0', '194.150.223.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.150.224.0', '194.150.225.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.150.226.0', '194.150.229.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.150.230.0', '194.150.231.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.150.232.0', '194.150.233.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.150.234.0', '194.150.235.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.150.236.0', '194.150.237.255', 2147483647, 2147483647, 'FR', 'France'), +('194.150.238.0', '194.150.239.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.150.240.0', '194.150.241.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.150.242.0', '194.150.243.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.150.244.0', '194.150.245.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.150.246.0', '194.150.247.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.150.248.0', '194.150.249.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.150.250.0', '194.150.251.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.150.252.0', '194.150.253.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.150.254.0', '194.150.255.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.151.0.0', '194.151.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.152.0.0', '194.152.31.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('194.152.32.0', '194.152.33.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('194.152.34.0', '194.152.35.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.152.36.0', '194.152.37.255', 2147483647, 2147483647, 'KG', 'Kyrgyzstan'), +('194.152.38.0', '194.152.39.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.152.40.0', '194.152.41.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.152.42.0', '194.152.43.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.152.44.0', '194.152.45.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.152.46.0', '194.152.47.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.152.48.0', '194.152.49.255', 2147483647, 2147483647, 'IT', 'Italy'), +('194.152.50.0', '194.152.51.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.152.52.0', '194.152.53.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.152.54.0', '194.152.55.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.152.56.0', '194.152.57.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.152.58.0', '194.152.59.255', 2147483647, 2147483647, 'FI', 'Finland'), +('194.152.60.0', '194.152.61.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.152.62.0', '194.152.63.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.152.64.0', '194.152.95.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.152.96.0', '194.152.127.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.152.128.0', '194.152.159.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('194.152.160.0', '194.152.191.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.152.192.0', '194.152.255.255', 2147483647, 2147483647, 'HR', 'Croatia'), +('194.153.0.0', '194.153.31.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.153.32.0', '194.153.71.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.153.72.0', '194.153.72.255', 2147483647, 2147483647, 'NO', 'Norway'), +('194.153.73.0', '194.153.73.255', 2147483647, 2147483647, 'IT', 'Italy'), +('194.153.74.0', '194.153.74.255', 2147483647, 2147483647, 'ES', 'Spain'), +('194.153.75.0', '194.153.77.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.153.78.0', '194.153.78.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.153.79.0', '194.153.79.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('194.153.80.0', '194.153.80.255', 2147483647, 2147483647, 'FR', 'France'), +('194.153.81.0', '194.153.82.255', 2147483647, 2147483647, 'GR', 'Greece'), +('194.153.83.0', '194.153.83.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.153.84.0', '194.153.84.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.153.85.0', '194.153.85.255', 2147483647, 2147483647, 'MT', 'Malta'), +('194.153.86.0', '194.153.87.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.153.88.0', '194.153.90.255', 2147483647, 2147483647, 'FR', 'France'), +('194.153.91.0', '194.153.91.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.153.92.0', '194.153.92.255', 2147483647, 2147483647, 'FR', 'France'), +('194.153.93.0', '194.153.93.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.153.94.0', '194.153.94.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.153.95.0', '194.153.95.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.153.96.0', '194.153.96.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.153.97.0', '194.153.97.255', 2147483647, 2147483647, 'FR', 'France'), +('194.153.98.0', '194.153.98.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.153.99.0', '194.153.99.255', 2147483647, 2147483647, 'IT', 'Italy'), +('194.153.100.0', '194.153.100.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.153.101.0', '194.153.101.255', 2147483647, 2147483647, 'IL', 'Israel'), +('194.153.102.0', '194.153.103.255', 2147483647, 2147483647, 'IT', 'Italy'), +('194.153.104.0', '194.153.105.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.153.106.0', '194.153.107.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.153.108.0', '194.153.110.255', 2147483647, 2147483647, 'FR', 'France'), +('194.153.111.0', '194.153.111.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.153.112.0', '194.153.112.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.153.113.0', '194.153.114.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.153.115.0', '194.153.115.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.153.116.0', '194.153.116.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.153.117.0', '194.153.117.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.153.118.0', '194.153.118.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('194.153.119.0', '194.153.119.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.153.120.0', '194.153.127.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.153.128.0', '194.153.129.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.153.130.0', '194.153.130.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.153.131.0', '194.153.131.255', 2147483647, 2147483647, 'IT', 'Italy'), +('194.153.132.0', '194.153.132.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('194.153.133.0', '194.153.134.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.153.135.0', '194.153.135.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('194.153.136.0', '194.153.144.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.153.145.0', '194.153.145.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('194.153.146.0', '194.153.147.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.153.148.0', '194.153.149.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.153.150.0', '194.153.152.127', 2147483647, 2147483647, 'DE', 'Germany'), +('194.153.152.128', '194.153.152.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.153.153.0', '194.153.153.127', 2147483647, 2147483647, 'UG', 'Uganda'), +('194.153.153.128', '194.153.153.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.153.154.128', '194.153.154.255', 2147483647, 2147483647, 'NO', 'Norway'), +('194.153.155.0', '194.153.155.127', 2147483647, 2147483647, 'US', 'United States'), +('194.153.155.128', '194.153.155.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.153.156.0', '194.153.156.63', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.153.156.64', '194.153.156.127', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.153.156.128', '194.153.156.191', 2147483647, 2147483647, 'DE', 'Germany'), +('194.153.156.192', '194.153.156.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.153.157.0', '194.153.157.31', 2147483647, 2147483647, 'FR', 'France'), +('194.153.157.32', '194.153.157.63', 2147483647, 2147483647, 'ES', 'Spain'), +('194.153.157.64', '194.153.157.95', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.153.157.96', '194.153.157.127', 2147483647, 2147483647, 'NO', 'Norway'), +('194.153.157.128', '194.153.157.159', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.153.157.160', '194.153.157.191', 2147483647, 2147483647, 'LI', 'Liechtenstein'), +('194.153.157.192', '194.153.157.223', 2147483647, 2147483647, 'FR', 'France'), +('194.153.157.235', '194.153.157.235', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.153.158.0', '194.153.158.127', 2147483647, 2147483647, 'FR', 'France'), +('194.153.158.128', '194.153.158.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.153.159.0', '194.153.159.63', 2147483647, 2147483647, 'PL', 'Poland'), +('194.153.159.64', '194.153.159.127', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.153.159.128', '194.153.159.191', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.153.159.192', '194.153.159.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.153.160.0', '194.153.167.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.153.168.0', '194.153.169.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.153.170.0', '194.153.170.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.153.171.0', '194.153.171.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('194.153.172.0', '194.153.175.255', 2147483647, 2147483647, 'IT', 'Italy'), +('194.153.176.0', '194.153.183.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.153.184.0', '194.153.185.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.153.186.0', '194.153.186.255', 2147483647, 2147483647, 'GR', 'Greece'), +('194.153.187.0', '194.153.187.255', 2147483647, 2147483647, 'IT', 'Italy'), +('194.153.188.0', '194.153.189.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.153.190.0', '194.153.191.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.153.192.0', '194.153.213.255', 2147483647, 2147483647, 'IT', 'Italy'), +('194.153.214.0', '194.153.215.127', 2147483647, 2147483647, 'FR', 'France'), +('194.153.215.128', '194.153.215.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.153.216.0', '194.153.216.255', 2147483647, 2147483647, 'PL', 'Poland'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('194.153.217.0', '194.153.217.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.153.218.0', '194.153.218.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.153.219.0', '194.153.219.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.153.220.0', '194.153.223.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.153.224.0', '194.153.255.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.154.0.0', '194.154.63.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.154.64.0', '194.154.95.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.154.96.0', '194.154.127.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.154.128.0', '194.154.132.47', 2147483647, 2147483647, 'CY', 'Cyprus'), +('194.154.132.48', '194.154.132.51', 2147483647, 2147483647, 'GR', 'Greece'), +('194.154.132.52', '194.154.132.55', 2147483647, 2147483647, 'CY', 'Cyprus'), +('194.154.132.56', '194.154.132.63', 2147483647, 2147483647, 'GR', 'Greece'), +('194.154.132.64', '194.154.132.83', 2147483647, 2147483647, 'CY', 'Cyprus'), +('194.154.132.84', '194.154.132.87', 2147483647, 2147483647, 'GR', 'Greece'), +('194.154.132.88', '194.154.132.92', 2147483647, 2147483647, 'CY', 'Cyprus'), +('194.154.132.93', '194.154.132.95', 2147483647, 2147483647, 'GR', 'Greece'), +('194.154.132.96', '194.154.132.99', 2147483647, 2147483647, 'CY', 'Cyprus'), +('194.154.132.100', '194.154.132.103', 2147483647, 2147483647, 'GR', 'Greece'), +('194.154.132.104', '194.154.132.255', 2147483647, 2147483647, 'CY', 'Cyprus'), +('194.154.133.0', '194.154.133.127', 2147483647, 2147483647, 'GR', 'Greece'), +('194.154.133.128', '194.154.133.255', 2147483647, 2147483647, 'CY', 'Cyprus'), +('194.154.134.0', '194.154.134.9', 2147483647, 2147483647, 'GR', 'Greece'), +('194.154.134.10', '194.154.134.127', 2147483647, 2147483647, 'CY', 'Cyprus'), +('194.154.134.128', '194.154.134.143', 2147483647, 2147483647, 'GR', 'Greece'), +('194.154.134.144', '194.154.134.159', 2147483647, 2147483647, 'CY', 'Cyprus'), +('194.154.134.160', '194.154.134.167', 2147483647, 2147483647, 'GR', 'Greece'), +('194.154.134.168', '194.154.134.231', 2147483647, 2147483647, 'CY', 'Cyprus'), +('194.154.134.232', '194.154.134.243', 2147483647, 2147483647, 'GR', 'Greece'), +('194.154.134.244', '194.154.135.127', 2147483647, 2147483647, 'CY', 'Cyprus'), +('194.154.135.128', '194.154.135.135', 2147483647, 2147483647, 'GR', 'Greece'), +('194.154.135.136', '194.154.135.143', 2147483647, 2147483647, 'CY', 'Cyprus'), +('194.154.135.144', '194.154.135.147', 2147483647, 2147483647, 'GR', 'Greece'), +('194.154.135.148', '194.154.137.119', 2147483647, 2147483647, 'CY', 'Cyprus'), +('194.154.137.120', '194.154.137.127', 2147483647, 2147483647, 'GR', 'Greece'), +('194.154.137.128', '194.154.137.143', 2147483647, 2147483647, 'CY', 'Cyprus'), +('194.154.137.144', '194.154.137.151', 2147483647, 2147483647, 'GR', 'Greece'), +('194.154.137.152', '194.154.137.159', 2147483647, 2147483647, 'CY', 'Cyprus'), +('194.154.137.160', '194.154.137.163', 2147483647, 2147483647, 'GR', 'Greece'), +('194.154.137.164', '194.154.137.167', 2147483647, 2147483647, 'CY', 'Cyprus'), +('194.154.137.168', '194.154.137.171', 2147483647, 2147483647, 'GR', 'Greece'), +('194.154.137.172', '194.154.137.175', 2147483647, 2147483647, 'CY', 'Cyprus'), +('194.154.137.176', '194.154.137.183', 2147483647, 2147483647, 'GR', 'Greece'), +('194.154.137.184', '194.154.137.195', 2147483647, 2147483647, 'CY', 'Cyprus'), +('194.154.137.196', '194.154.137.199', 2147483647, 2147483647, 'GR', 'Greece'), +('194.154.137.200', '194.154.137.203', 2147483647, 2147483647, 'CY', 'Cyprus'), +('194.154.137.204', '194.154.137.207', 2147483647, 2147483647, 'GR', 'Greece'), +('194.154.137.208', '194.154.137.215', 2147483647, 2147483647, 'CY', 'Cyprus'), +('194.154.137.216', '194.154.137.223', 2147483647, 2147483647, 'GR', 'Greece'), +('194.154.137.224', '194.154.137.235', 2147483647, 2147483647, 'CY', 'Cyprus'), +('194.154.137.236', '194.154.137.239', 2147483647, 2147483647, 'GR', 'Greece'), +('194.154.137.240', '194.154.137.252', 2147483647, 2147483647, 'CY', 'Cyprus'), +('194.154.137.253', '194.154.137.255', 2147483647, 2147483647, 'GR', 'Greece'), +('194.154.138.0', '194.154.138.143', 2147483647, 2147483647, 'CY', 'Cyprus'), +('194.154.138.144', '194.154.138.147', 2147483647, 2147483647, 'GR', 'Greece'), +('194.154.138.148', '194.154.138.159', 2147483647, 2147483647, 'CY', 'Cyprus'), +('194.154.138.160', '194.154.138.163', 2147483647, 2147483647, 'GR', 'Greece'), +('194.154.138.164', '194.154.138.187', 2147483647, 2147483647, 'CY', 'Cyprus'), +('194.154.138.188', '194.154.138.195', 2147483647, 2147483647, 'GR', 'Greece'), +('194.154.138.196', '194.154.138.211', 2147483647, 2147483647, 'CY', 'Cyprus'), +('194.154.138.212', '194.154.138.215', 2147483647, 2147483647, 'GR', 'Greece'), +('194.154.138.216', '194.154.138.235', 2147483647, 2147483647, 'CY', 'Cyprus'), +('194.154.138.236', '194.154.138.243', 2147483647, 2147483647, 'GR', 'Greece'), +('194.154.138.244', '194.154.138.247', 2147483647, 2147483647, 'CY', 'Cyprus'), +('194.154.138.248', '194.154.138.255', 2147483647, 2147483647, 'GR', 'Greece'), +('194.154.139.0', '194.154.139.63', 2147483647, 2147483647, 'CY', 'Cyprus'), +('194.154.139.64', '194.154.139.71', 2147483647, 2147483647, 'GR', 'Greece'), +('194.154.139.72', '194.154.139.135', 2147483647, 2147483647, 'CY', 'Cyprus'), +('194.154.139.136', '194.154.139.143', 2147483647, 2147483647, 'GR', 'Greece'), +('194.154.139.144', '194.154.139.151', 2147483647, 2147483647, 'CY', 'Cyprus'), +('194.154.139.152', '194.154.139.159', 2147483647, 2147483647, 'GR', 'Greece'), +('194.154.139.160', '194.154.139.254', 2147483647, 2147483647, 'CY', 'Cyprus'), +('194.154.139.255', '194.154.141.255', 2147483647, 2147483647, 'GR', 'Greece'), +('194.154.142.0', '194.154.142.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.154.143.0', '194.154.143.255', 2147483647, 2147483647, 'GR', 'Greece'), +('194.154.144.0', '194.154.145.71', 2147483647, 2147483647, 'CY', 'Cyprus'), +('194.154.145.72', '194.154.145.79', 2147483647, 2147483647, 'GR', 'Greece'), +('194.154.145.80', '194.154.145.87', 2147483647, 2147483647, 'CY', 'Cyprus'), +('194.154.145.88', '194.154.145.95', 2147483647, 2147483647, 'GR', 'Greece'), +('194.154.145.96', '194.154.148.254', 2147483647, 2147483647, 'CY', 'Cyprus'), +('194.154.148.255', '194.154.148.255', 2147483647, 2147483647, 'GR', 'Greece'), +('194.154.149.0', '194.154.149.15', 2147483647, 2147483647, 'CY', 'Cyprus'), +('194.154.149.16', '194.154.149.31', 2147483647, 2147483647, 'GR', 'Greece'), +('194.154.149.32', '194.154.149.63', 2147483647, 2147483647, 'CY', 'Cyprus'), +('194.154.149.64', '194.154.149.79', 2147483647, 2147483647, 'GR', 'Greece'), +('194.154.149.80', '194.154.149.103', 2147483647, 2147483647, 'CY', 'Cyprus'), +('194.154.149.104', '194.154.149.107', 2147483647, 2147483647, 'GR', 'Greece'), +('194.154.149.108', '194.154.149.115', 2147483647, 2147483647, 'CY', 'Cyprus'), +('194.154.149.116', '194.154.149.127', 2147483647, 2147483647, 'GR', 'Greece'), +('194.154.149.128', '194.154.149.223', 2147483647, 2147483647, 'CY', 'Cyprus'), +('194.154.149.224', '194.154.150.255', 2147483647, 2147483647, 'GR', 'Greece'), +('194.154.151.0', '194.154.153.35', 2147483647, 2147483647, 'CY', 'Cyprus'), +('194.154.153.36', '194.154.153.39', 2147483647, 2147483647, 'GR', 'Greece'), +('194.154.153.40', '194.154.153.63', 2147483647, 2147483647, 'CY', 'Cyprus'), +('194.154.153.64', '194.154.153.95', 2147483647, 2147483647, 'GR', 'Greece'), +('194.154.153.96', '194.154.153.127', 2147483647, 2147483647, 'CY', 'Cyprus'), +('194.154.153.128', '194.154.153.191', 2147483647, 2147483647, 'GR', 'Greece'), +('194.154.153.192', '194.154.155.3', 2147483647, 2147483647, 'CY', 'Cyprus'), +('194.154.155.4', '194.154.155.7', 2147483647, 2147483647, 'GR', 'Greece'), +('194.154.155.8', '194.154.155.11', 2147483647, 2147483647, 'CY', 'Cyprus'), +('194.154.155.12', '194.154.155.15', 2147483647, 2147483647, 'GR', 'Greece'), +('194.154.155.16', '194.154.155.19', 2147483647, 2147483647, 'CY', 'Cyprus'), +('194.154.155.20', '194.154.155.23', 2147483647, 2147483647, 'GR', 'Greece'), +('194.154.155.24', '194.154.155.39', 2147483647, 2147483647, 'CY', 'Cyprus'), +('194.154.155.40', '194.154.155.91', 2147483647, 2147483647, 'GR', 'Greece'), +('194.154.155.92', '194.154.155.95', 2147483647, 2147483647, 'CY', 'Cyprus'), +('194.154.155.96', '194.154.155.103', 2147483647, 2147483647, 'GR', 'Greece'), +('194.154.155.104', '194.154.155.107', 2147483647, 2147483647, 'CY', 'Cyprus'), +('194.154.155.108', '194.154.155.111', 2147483647, 2147483647, 'GR', 'Greece'), +('194.154.155.112', '194.154.155.115', 2147483647, 2147483647, 'CY', 'Cyprus'), +('194.154.155.116', '194.154.155.123', 2147483647, 2147483647, 'GR', 'Greece'), +('194.154.155.124', '194.154.155.143', 2147483647, 2147483647, 'CY', 'Cyprus'), +('194.154.155.144', '194.154.155.151', 2147483647, 2147483647, 'GR', 'Greece'), +('194.154.155.152', '194.154.155.155', 2147483647, 2147483647, 'CY', 'Cyprus'), +('194.154.155.156', '194.154.155.191', 2147483647, 2147483647, 'GR', 'Greece'), +('194.154.155.192', '194.154.157.15', 2147483647, 2147483647, 'CY', 'Cyprus'), +('194.154.157.16', '194.154.157.23', 2147483647, 2147483647, 'GR', 'Greece'), +('194.154.157.24', '194.154.157.175', 2147483647, 2147483647, 'CY', 'Cyprus'), +('194.154.157.176', '194.154.157.199', 2147483647, 2147483647, 'GR', 'Greece'), +('194.154.157.200', '194.154.157.203', 2147483647, 2147483647, 'CY', 'Cyprus'), +('194.154.157.204', '194.154.157.223', 2147483647, 2147483647, 'GR', 'Greece'), +('194.154.157.224', '194.154.157.239', 2147483647, 2147483647, 'CY', 'Cyprus'), +('194.154.157.240', '194.154.157.255', 2147483647, 2147483647, 'GR', 'Greece'), +('194.154.158.0', '194.154.158.255', 2147483647, 2147483647, 'CY', 'Cyprus'), +('194.154.159.0', '194.154.159.31', 2147483647, 2147483647, 'GR', 'Greece'), +('194.154.159.32', '194.154.159.39', 2147483647, 2147483647, 'CY', 'Cyprus'), +('194.154.159.40', '194.154.159.47', 2147483647, 2147483647, 'GR', 'Greece'), +('194.154.159.48', '194.154.159.71', 2147483647, 2147483647, 'CY', 'Cyprus'), +('194.154.159.72', '194.154.159.79', 2147483647, 2147483647, 'GR', 'Greece'), +('194.154.159.80', '194.154.159.91', 2147483647, 2147483647, 'CY', 'Cyprus'), +('194.154.159.92', '194.154.159.111', 2147483647, 2147483647, 'GR', 'Greece'), +('194.154.159.112', '194.154.159.127', 2147483647, 2147483647, 'CY', 'Cyprus'), +('194.154.159.128', '194.154.159.143', 2147483647, 2147483647, 'GR', 'Greece'), +('194.154.159.144', '194.154.159.147', 2147483647, 2147483647, 'CY', 'Cyprus'), +('194.154.159.148', '194.154.159.151', 2147483647, 2147483647, 'GR', 'Greece'), +('194.154.159.152', '194.154.159.159', 2147483647, 2147483647, 'CY', 'Cyprus'), +('194.154.159.160', '194.154.159.175', 2147483647, 2147483647, 'GR', 'Greece'), +('194.154.159.176', '194.154.159.223', 2147483647, 2147483647, 'CY', 'Cyprus'), +('194.154.159.224', '194.154.159.231', 2147483647, 2147483647, 'GR', 'Greece'), +('194.154.159.232', '194.154.159.247', 2147483647, 2147483647, 'CY', 'Cyprus'), +('194.154.159.248', '194.154.159.255', 2147483647, 2147483647, 'GR', 'Greece'), +('194.154.160.0', '194.154.174.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.154.175.0', '194.154.175.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.154.175.128', '194.154.191.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.154.192.0', '194.154.194.191', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('194.154.194.192', '194.154.194.207', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('194.154.194.208', '194.154.223.255', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('194.154.224.0', '194.154.255.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('194.155.0.0', '194.155.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.156.0.0', '194.156.201.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.156.202.0', '194.156.203.255', 2147483647, 2147483647, 'FR', 'France'), +('194.156.204.0', '194.156.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.157.0.0', '194.157.255.255', 2147483647, 2147483647, 'FI', 'Finland'), +('194.158.0.0', '194.158.31.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.158.32.0', '194.158.63.255', 2147483647, 2147483647, 'MT', 'Malta'), +('194.158.64.0', '194.158.95.255', 2147483647, 2147483647, 'AD', 'Andorra'), +('194.158.96.0', '194.158.127.255', 2147483647, 2147483647, 'FR', 'France'), +('194.158.128.0', '194.158.159.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.158.160.0', '194.158.191.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.158.192.0', '194.158.223.255', 2147483647, 2147483647, 'BY', 'Belarus'), +('194.158.224.0', '194.158.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.159.0.0', '194.159.63.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.159.64.0', '194.159.64.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.159.65.0', '194.159.65.255', 2147483647, 2147483647, 'FR', 'France'), +('194.159.66.0', '194.159.71.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.159.72.0', '194.159.73.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.159.74.0', '194.159.223.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.159.224.0', '194.159.231.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.159.232.0', '194.159.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.160.0.0', '194.160.81.63', 2147483647, 2147483647, 'SK', 'Slovakia'), +('194.160.81.64', '194.160.81.127', 2147483647, 2147483647, 'SR', 'Suriname'), +('194.160.81.128', '194.160.255.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('194.161.0.0', '194.161.35.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.161.36.0', '194.161.36.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.161.37.0', '194.161.37.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.161.38.0', '194.161.38.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.161.39.0', '194.161.39.95', 2147483647, 2147483647, 'AT', 'Austria'), +('194.161.39.96', '194.161.39.127', 2147483647, 2147483647, 'EU', 'Europe'), +('194.161.39.128', '194.161.39.255', 2147483647, 2147483647, 'FR', 'France'), +('194.161.40.0', '194.161.40.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.161.41.0', '194.161.41.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.161.42.0', '194.161.47.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.161.48.0', '194.161.63.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.161.64.0', '194.161.83.255', 2147483647, 2147483647, 'FR', 'France'), +('194.161.84.0', '194.161.84.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.161.85.0', '194.161.85.255', 2147483647, 2147483647, 'FR', 'France'), +('194.161.86.0', '194.161.93.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.161.94.0', '194.161.95.255', 2147483647, 2147483647, 'FR', 'France'), +('194.161.96.0', '194.161.100.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.161.101.0', '194.161.101.255', 2147483647, 2147483647, 'FR', 'France'), +('194.161.102.0', '194.161.102.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.161.103.0', '194.161.103.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.161.104.0', '194.161.107.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.161.108.0', '194.161.108.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.161.109.0', '194.161.111.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.161.112.0', '194.161.112.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.161.113.0', '194.161.113.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.161.114.0', '194.161.115.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.161.116.0', '194.161.119.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.161.120.0', '194.161.127.255', 2147483647, 2147483647, 'IT', 'Italy'), +('194.161.128.0', '194.161.135.255', 2147483647, 2147483647, 'ES', 'Spain'), +('194.161.136.0', '194.161.136.63', 2147483647, 2147483647, 'EU', 'Europe'), +('194.161.136.64', '194.161.136.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.161.137.0', '194.161.137.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('194.161.138.0', '194.161.139.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.161.140.0', '194.161.140.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.161.141.0', '194.161.141.255', 2147483647, 2147483647, 'ES', 'Spain'), +('194.161.142.0', '194.161.142.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.161.143.0', '194.161.148.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.161.149.0', '194.161.149.255', 2147483647, 2147483647, 'IL', 'Israel'), +('194.161.150.0', '194.161.150.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.161.151.0', '194.161.151.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.161.152.0', '194.161.153.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.161.154.0', '194.161.154.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.161.155.0', '194.161.175.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.161.176.0', '194.161.176.255', 2147483647, 2147483647, 'IT', 'Italy'), +('194.161.177.0', '194.161.183.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.161.184.0', '194.161.190.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.161.191.0', '194.161.199.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.161.200.0', '194.161.201.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.161.202.0', '194.161.207.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.161.208.0', '194.161.215.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.161.216.0', '194.161.219.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.161.220.0', '194.161.223.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.161.224.0', '194.161.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.162.0.0', '194.162.82.191', 2147483647, 2147483647, 'DE', 'Germany'), +('194.162.82.192', '194.162.82.199', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('194.162.82.200', '194.162.85.7', 2147483647, 2147483647, 'DE', 'Germany'), +('194.162.85.8', '194.162.85.15', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('194.162.85.16', '194.163.10.15', 2147483647, 2147483647, 'DE', 'Germany'), +('194.163.10.16', '194.163.10.31', 2147483647, 2147483647, 'AT', 'Austria'), +('194.163.10.32', '194.163.11.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.163.12.0', '194.163.12.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.163.13.0', '194.163.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.164.0.0', '194.164.161.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.164.162.0', '194.164.163.255', 2147483647, 2147483647, 'AE', 'United Arab Emirates'), +('194.164.164.0', '194.164.212.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.164.213.0', '194.164.213.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('194.164.214.0', '194.164.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.165.0.0', '194.165.3.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.165.4.0', '194.165.7.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.165.8.0', '194.165.9.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.165.10.0', '194.165.11.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.165.12.0', '194.165.13.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.165.14.0', '194.165.15.255', 2147483647, 2147483647, 'FR', 'France'), +('194.165.16.0', '194.165.25.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.165.26.0', '194.165.27.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('194.165.28.0', '194.165.29.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.165.30.0', '194.165.31.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.165.32.0', '194.165.32.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.165.33.0', '194.165.33.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.165.34.0', '194.165.35.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.165.36.0', '194.165.36.255', 2147483647, 2147483647, 'IT', 'Italy'), +('194.165.37.0', '194.165.37.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('194.165.38.0', '194.165.38.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.165.39.0', '194.165.39.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.165.40.0', '194.165.40.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.165.41.0', '194.165.41.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.165.42.0', '194.165.42.255', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('194.165.43.0', '194.165.43.255', 2147483647, 2147483647, 'FR', 'France'), +('194.165.44.0', '194.165.44.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.165.45.0', '194.165.45.255', 2147483647, 2147483647, 'FR', 'France'), +('194.165.46.0', '194.165.46.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.165.47.0', '194.165.47.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('194.165.48.0', '194.165.48.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.165.49.0', '194.165.49.255', 2147483647, 2147483647, 'FR', 'France'), +('194.165.50.0', '194.165.50.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.165.51.0', '194.165.51.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.165.52.0', '194.165.52.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.165.53.0', '194.165.53.255', 2147483647, 2147483647, 'FR', 'France'), +('194.165.54.0', '194.165.54.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.165.55.0', '194.165.56.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.165.57.0', '194.165.57.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('194.165.58.0', '194.165.58.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.165.59.0', '194.165.59.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.165.60.0', '194.165.60.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.165.61.0', '194.165.61.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.165.62.0', '194.165.63.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.165.64.0', '194.165.95.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.165.96.0', '194.165.127.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('194.165.128.0', '194.165.159.255', 2147483647, 2147483647, 'JO', 'Jordan'), +('194.165.160.0', '194.165.191.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('194.165.192.0', '194.165.223.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.165.224.0', '194.165.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.166.0.0', '194.166.255.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.167.0.0', '194.167.255.255', 2147483647, 2147483647, 'FR', 'France'), +('194.168.0.0', '194.168.135.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.168.136.0', '194.168.136.255', 2147483647, 2147483647, 'US', 'United States'), +('194.168.137.0', '194.169.124.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.169.125.0', '194.169.125.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('194.169.126.0', '194.169.127.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.169.128.0', '194.169.182.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.169.183.0', '194.169.183.255', 2147483647, 2147483647, 'FR', 'France'), +('194.169.184.0', '194.169.190.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.169.191.0', '194.169.191.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.169.192.0', '194.169.192.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.169.193.0', '194.169.193.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.169.194.0', '194.169.195.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.169.196.0', '194.169.196.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('194.169.197.0', '194.169.197.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.169.198.0', '194.169.198.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.169.199.0', '194.169.199.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.169.200.0', '194.169.200.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.169.201.0', '194.169.201.255', 2147483647, 2147483647, 'ES', 'Spain'), +('194.169.202.0', '194.169.202.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.169.203.0', '194.169.203.255', 2147483647, 2147483647, 'FR', 'France'), +('194.169.204.0', '194.169.204.255', 2147483647, 2147483647, 'MD', 'Moldova, Republic of'), +('194.169.205.0', '194.169.207.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.169.208.0', '194.169.208.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.169.209.0', '194.169.209.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.169.210.0', '194.169.210.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.169.211.0', '194.169.211.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.169.212.0', '194.169.212.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.169.213.0', '194.169.213.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.169.214.0', '194.169.214.255', 2147483647, 2147483647, 'FR', 'France'), +('194.169.215.0', '194.169.215.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.169.216.0', '194.169.216.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.169.217.0', '194.169.218.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.169.219.0', '194.169.219.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.169.220.0', '194.169.220.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.169.221.0', '194.169.221.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.169.222.0', '194.169.222.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.169.223.0', '194.169.223.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.169.224.0', '194.169.224.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('194.169.225.0', '194.169.225.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.169.226.0', '194.169.229.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.169.230.0', '194.169.230.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.169.231.0', '194.169.231.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('194.169.232.0', '194.169.232.255', 2147483647, 2147483647, 'GR', 'Greece'), +('194.169.233.0', '194.169.233.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.169.234.0', '194.169.234.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.169.235.0', '194.169.235.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.169.236.0', '194.169.237.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.169.238.0', '194.169.238.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.169.239.0', '194.169.239.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.169.240.0', '194.169.240.255', 2147483647, 2147483647, 'FR', 'France'), +('194.169.241.0', '194.169.241.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.169.242.0', '194.169.242.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.169.243.0', '194.169.243.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.169.244.0', '194.169.244.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.169.245.0', '194.169.245.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.169.246.0', '194.169.246.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.169.247.0', '194.169.247.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.169.248.0', '194.169.248.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.169.249.0', '194.169.249.255', 2147483647, 2147483647, 'FR', 'France'), +('194.169.250.0', '194.169.250.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.169.251.0', '194.169.251.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.169.252.0', '194.169.252.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('194.169.253.0', '194.169.253.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('194.169.254.0', '194.169.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.170.0.0', '194.170.255.255', 2147483647, 2147483647, 'AE', 'United Arab Emirates'), +('194.171.0.0', '194.171.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.172.0.0', '194.172.84.223', 2147483647, 2147483647, 'DE', 'Germany'), +('194.172.84.224', '194.172.84.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.172.84.240', '194.176.31.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.176.32.0', '194.176.63.255', 2147483647, 2147483647, 'LT', 'Lithuania'), +('194.176.64.0', '194.176.95.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.176.96.0', '194.176.96.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.176.97.0', '194.176.97.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.176.98.0', '194.176.98.255', 2147483647, 2147483647, 'ES', 'Spain'), +('194.176.99.0', '194.176.99.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.176.100.0', '194.176.100.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.176.101.0', '194.176.102.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.176.103.0', '194.176.103.255', 2147483647, 2147483647, 'FI', 'Finland'), +('194.176.104.0', '194.176.104.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.176.105.0', '194.176.105.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.176.106.0', '194.176.106.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.176.107.0', '194.176.107.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.176.108.0', '194.176.108.255', 2147483647, 2147483647, 'KW', 'Kuwait'), +('194.176.109.0', '194.176.109.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.176.110.0', '194.176.110.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.176.111.0', '194.176.111.255', 2147483647, 2147483647, 'KG', 'Kyrgyzstan'), +('194.176.112.0', '194.176.112.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('194.176.113.0', '194.176.113.255', 2147483647, 2147483647, 'GR', 'Greece'), +('194.176.114.0', '194.176.114.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.176.115.0', '194.176.115.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.176.116.0', '194.176.116.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.176.117.0', '194.176.117.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.176.118.0', '194.176.118.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.176.119.0', '194.176.119.255', 2147483647, 2147483647, 'ES', 'Spain'), +('194.176.120.0', '194.176.120.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('194.176.121.0', '194.176.122.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.176.123.0', '194.176.123.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.176.124.0', '194.176.125.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.176.126.0', '194.176.126.255', 2147483647, 2147483647, 'IT', 'Italy'), +('194.176.127.0', '194.176.127.255', 2147483647, 2147483647, 'FR', 'France'), +('194.176.128.0', '194.176.128.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.176.129.0', '194.176.144.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.176.145.0', '194.176.149.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.176.149.240', '194.176.150.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.176.151.0', '194.176.153.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.176.153.160', '194.176.153.175', 2147483647, 2147483647, 'EU', 'Europe'), +('194.176.153.176', '194.176.153.183', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.176.153.184', '194.176.153.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.176.154.0', '194.176.154.7', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.176.154.8', '194.176.154.15', 2147483647, 2147483647, 'EU', 'Europe'), +('194.176.154.16', '194.176.154.23', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.176.154.24', '194.176.154.111', 2147483647, 2147483647, 'EU', 'Europe'), +('194.176.154.112', '194.176.154.119', 2147483647, 2147483647, 'US', 'United States'), +('194.176.154.120', '194.176.154.191', 2147483647, 2147483647, 'EU', 'Europe'), +('194.176.154.192', '194.176.154.199', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.176.154.200', '194.176.154.215', 2147483647, 2147483647, 'EU', 'Europe'), +('194.176.154.216', '194.176.154.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.176.154.224', '194.176.154.231', 2147483647, 2147483647, 'EU', 'Europe'), +('194.176.154.232', '194.176.154.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.176.154.240', '194.176.154.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.176.155.0', '194.176.159.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.176.160.0', '194.176.191.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.176.192.0', '194.176.223.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.176.224.0', '194.176.255.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('194.177.0.0', '194.177.3.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.177.4.0', '194.177.7.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.177.8.0', '194.177.11.255', 2147483647, 2147483647, 'FR', 'France'), +('194.177.12.0', '194.177.15.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.177.16.0', '194.177.19.255', 2147483647, 2147483647, 'IL', 'Israel'), +('194.177.20.0', '194.177.23.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.177.24.0', '194.177.27.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.177.28.0', '194.177.31.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.177.32.0', '194.177.33.151', 2147483647, 2147483647, 'FR', 'France'), +('194.177.33.152', '194.177.33.154', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.177.33.155', '194.177.36.255', 2147483647, 2147483647, 'FR', 'France'), +('194.177.37.0', '194.177.37.79', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('194.177.37.80', '194.177.61.255', 2147483647, 2147483647, 'FR', 'France'), +('194.177.62.0', '194.177.62.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.177.63.0', '194.177.63.255', 2147483647, 2147483647, 'FR', 'France'), +('194.177.64.0', '194.177.127.255', 2147483647, 2147483647, 'IT', 'Italy'), +('194.177.128.0', '194.177.159.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.177.160.0', '194.177.191.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.177.192.0', '194.177.223.255', 2147483647, 2147483647, 'GR', 'Greece'), +('194.177.224.0', '194.177.255.255', 2147483647, 2147483647, 'GL', 'Greenland'), +('194.178.0.0', '194.178.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.179.0.0', '194.179.127.255', 2147483647, 2147483647, 'ES', 'Spain'), +('194.179.128.0', '194.179.255.255', 2147483647, 2147483647, 'IT', 'Italy'), +('194.180.0.0', '194.180.226.151', 2147483647, 2147483647, 'DE', 'Germany'), +('194.180.226.152', '194.180.226.159', 2147483647, 2147483647, 'EE', 'Estonia'), +('194.180.226.160', '194.180.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.181.0.0', '194.181.255.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.182.0.0', '194.182.234.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.182.235.0', '194.182.235.255', 2147483647, 2147483647, 'FO', 'Faroe Islands'), +('194.182.236.0', '194.182.255.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.183.0.0', '194.183.31.255', 2147483647, 2147483647, 'IT', 'Italy'), +('194.183.32.0', '194.183.63.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.183.64.0', '194.183.91.255', 2147483647, 2147483647, 'SM', 'San Marino'), +('194.183.92.0', '194.183.92.255', 2147483647, 2147483647, 'IT', 'Italy'), +('194.183.93.0', '194.183.95.255', 2147483647, 2147483647, 'SM', 'San Marino'), +('194.183.96.0', '194.183.96.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.183.97.0', '194.183.97.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.183.98.0', '194.183.101.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.183.102.0', '194.183.103.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.183.104.0', '194.183.105.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.183.106.0', '194.183.106.191', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.183.106.192', '194.183.107.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.183.108.0', '194.183.108.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.183.108.64', '194.183.108.87', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.183.108.88', '194.183.108.95', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.183.108.96', '194.183.108.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.183.109.0', '194.183.110.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.183.110.64', '194.183.110.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.183.111.0', '194.183.111.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.183.111.64', '194.183.111.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.183.111.80', '194.183.111.111', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.183.111.112', '194.183.111.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.183.111.128', '194.183.111.191', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.183.111.192', '194.183.111.207', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.183.111.208', '194.183.111.239', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.183.111.240', '194.183.111.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.183.112.0', '194.183.112.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.183.113.0', '194.183.116.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.183.117.0', '194.183.117.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.183.118.0', '194.183.119.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.183.120.0', '194.183.120.119', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.183.120.120', '194.183.121.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.183.122.0', '194.183.122.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.183.123.0', '194.183.123.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.183.124.0', '194.183.124.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.183.125.0', '194.183.126.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.183.127.0', '194.183.127.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.183.128.0', '194.183.141.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.183.142.0', '194.183.142.255', 2147483647, 2147483647, 'LI', 'Liechtenstein'), +('194.183.143.0', '194.183.159.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.183.160.0', '194.183.191.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.183.192.0', '194.183.223.255', 2147483647, 2147483647, 'FR', 'France'), +('194.183.224.0', '194.183.247.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.183.248.0', '194.183.251.255', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('194.183.252.0', '194.183.255.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.184.0.0', '194.185.255.255', 2147483647, 2147483647, 'IT', 'Italy'), +('194.186.0.0', '194.186.152.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.186.153.0', '194.186.153.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.186.154.0', '194.186.232.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.186.233.0', '194.186.233.255', 2147483647, 2147483647, 'KZ', 'Kazakstan'), +('194.186.234.0', '194.186.236.79', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.186.236.80', '194.186.236.87', 2147483647, 2147483647, 'KZ', 'Kazakstan'), +('194.186.236.88', '194.186.245.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.186.246.0', '194.186.246.255', 2147483647, 2147483647, 'KZ', 'Kazakstan'), +('194.186.247.0', '194.186.255.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.187.0.0', '194.187.15.255', 2147483647, 2147483647, 'NO', 'Norway'), +('194.187.16.0', '194.187.19.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.187.20.0', '194.187.23.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.187.24.0', '194.187.31.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.187.32.0', '194.187.35.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.187.36.0', '194.187.39.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.187.40.0', '194.187.43.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.187.44.0', '194.187.47.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.187.48.0', '194.187.51.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.187.52.0', '194.187.55.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.187.56.0', '194.187.59.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.187.60.0', '194.187.63.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.187.64.0', '194.187.67.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.187.68.0', '194.187.71.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('194.187.72.0', '194.187.75.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.187.76.0', '194.187.79.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.187.80.0', '194.187.83.255', 2147483647, 2147483647, 'PS', 'Palestinian Territory, Occupied'), +('194.187.84.0', '194.187.87.255', 2147483647, 2147483647, 'US', 'United States'), +('194.187.88.0', '194.187.91.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.187.92.0', '194.187.95.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.187.96.0', '194.187.99.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.187.100.0', '194.187.103.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('194.187.104.0', '194.187.111.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.187.112.0', '194.187.115.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.187.116.0', '194.187.119.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.187.120.0', '194.187.123.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.187.124.0', '194.187.127.255', 2147483647, 2147483647, 'IT', 'Italy'), +('194.187.128.0', '194.187.131.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.187.132.0', '194.187.135.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('194.187.136.0', '194.187.139.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.187.140.0', '194.187.143.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.187.144.0', '194.187.147.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.187.148.0', '194.187.155.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.187.156.0', '194.187.159.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.187.160.0', '194.187.167.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.187.168.0', '194.187.171.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.187.172.0', '194.187.175.255', 2147483647, 2147483647, 'IT', 'Italy'), +('194.187.176.0', '194.187.179.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.187.180.0', '194.187.183.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.187.184.0', '194.187.187.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.187.188.0', '194.187.191.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.187.192.0', '194.187.195.255', 2147483647, 2147483647, 'FR', 'France'), +('194.187.196.0', '194.187.199.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.187.200.0', '194.187.203.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.187.204.0', '194.187.207.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.187.208.0', '194.187.211.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.187.212.0', '194.187.215.255', 2147483647, 2147483647, 'FI', 'Finland'), +('194.187.216.0', '194.187.219.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.187.220.0', '194.187.223.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.187.224.0', '194.187.227.255', 2147483647, 2147483647, 'FR', 'France'), +('194.187.228.0', '194.187.231.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.187.232.0', '194.187.235.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.187.236.0', '194.187.239.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.187.240.0', '194.187.243.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.187.244.0', '194.187.247.255', 2147483647, 2147483647, 'KZ', 'Kazakstan'), +('194.187.248.0', '194.187.251.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.187.252.0', '194.187.255.255', 2147483647, 2147483647, 'IT', 'Italy'), +('194.188.0.0', '194.188.64.255', 2147483647, 2147483647, 'FI', 'Finland'), +('194.188.65.0', '194.188.67.255', 2147483647, 2147483647, 'AX', 'Aland Islands'), +('194.188.68.0', '194.188.255.255', 2147483647, 2147483647, 'FI', 'Finland'), +('194.189.0.0', '194.189.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.190.0.0', '194.190.255.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.191.0.0', '194.191.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.192.0.0', '194.192.250.63', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.192.250.64', '194.192.250.127', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.192.250.128', '194.192.255.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.193.0.0', '194.193.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.194.0.0', '194.194.0.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.194.1.0', '194.194.16.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.194.17.0', '194.194.17.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('194.194.18.0', '194.194.18.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.194.19.0', '194.194.40.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.194.41.0', '194.194.41.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.194.42.0', '194.194.43.255', 2147483647, 2147483647, 'FR', 'France'), +('194.194.44.0', '194.194.53.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.194.54.0', '194.194.54.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.194.54.32', '194.194.54.63', 2147483647, 2147483647, 'DE', 'Germany'), +('194.194.54.64', '194.194.54.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.194.54.96', '194.194.54.127', 2147483647, 2147483647, 'ZA', 'South Africa'), +('194.194.54.128', '194.194.55.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.194.56.0', '194.194.57.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.194.58.0', '194.194.58.255', 2147483647, 2147483647, 'IL', 'Israel'), +('194.194.59.0', '194.194.59.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.194.60.0', '194.194.60.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.194.61.0', '194.194.61.191', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.194.61.192', '194.194.61.223', 2147483647, 2147483647, 'EU', 'Europe'), +('194.194.61.224', '194.194.61.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.194.62.0', '194.194.63.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.194.64.0', '194.194.73.255', 2147483647, 2147483647, 'FR', 'France'), +('194.194.74.0', '194.194.75.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.194.76.0', '194.194.79.255', 2147483647, 2147483647, 'FR', 'France'), +('194.194.80.0', '194.194.93.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.194.94.0', '194.194.95.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.194.96.0', '194.194.119.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.194.120.0', '194.194.127.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.194.128.0', '194.194.131.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.194.132.0', '194.194.137.255', 2147483647, 2147483647, 'FR', 'France'), +('194.194.138.0', '194.194.138.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.194.139.0', '194.194.139.255', 2147483647, 2147483647, 'FR', 'France'), +('194.194.140.0', '194.194.143.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.194.144.0', '194.194.157.255', 2147483647, 2147483647, 'FR', 'France'), +('194.194.158.0', '194.194.158.191', 2147483647, 2147483647, 'RS', 'Serbia'), +('194.194.158.192', '194.194.158.223', 2147483647, 2147483647, 'EU', 'Europe'), +('194.194.158.224', '194.194.158.239', 2147483647, 2147483647, 'FR', 'France'), +('194.194.158.240', '194.194.158.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.194.159.0', '194.194.175.255', 2147483647, 2147483647, 'FR', 'France'), +('194.194.176.0', '194.194.180.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.194.181.0', '194.194.181.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.194.182.0', '194.194.186.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.194.187.0', '194.194.189.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.194.190.0', '194.194.190.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.194.191.0', '194.194.191.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.194.192.0', '194.194.192.255', 2147483647, 2147483647, 'IT', 'Italy'), +('194.194.193.0', '194.194.193.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.194.194.0', '194.194.196.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.194.197.0', '194.194.197.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.194.198.0', '194.194.198.127', 2147483647, 2147483647, 'IT', 'Italy'), +('194.194.198.128', '194.194.198.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.194.199.0', '194.194.199.255', 2147483647, 2147483647, 'FR', 'France'), +('194.194.200.0', '194.194.202.255', 2147483647, 2147483647, 'ES', 'Spain'), +('194.194.203.0', '194.194.203.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.194.204.0', '194.194.205.255', 2147483647, 2147483647, 'ES', 'Spain'), +('194.194.206.0', '194.194.207.255', 2147483647, 2147483647, 'FR', 'France'), +('194.194.208.0', '194.194.208.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.194.209.0', '194.194.209.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.194.210.0', '194.194.215.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.194.216.0', '194.194.220.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.194.221.0', '194.194.221.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.194.222.0', '194.194.223.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.194.224.0', '194.194.225.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.194.226.0', '194.194.226.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.194.227.0', '194.194.227.255', 2147483647, 2147483647, 'NO', 'Norway'), +('194.194.228.0', '194.194.230.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.194.231.0', '194.194.231.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.194.232.0', '194.194.235.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.194.236.0', '194.194.237.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.194.238.0', '194.194.238.255', 2147483647, 2147483647, 'FR', 'France'), +('194.194.239.0', '194.194.239.127', 2147483647, 2147483647, 'EU', 'Europe'), +('194.194.239.128', '194.194.239.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('194.194.240.0', '194.194.240.255', 2147483647, 2147483647, 'FI', 'Finland'), +('194.194.241.0', '194.194.242.255', 2147483647, 2147483647, 'GB', 'United Kingdom'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('194.194.243.0', '194.194.243.255', 2147483647, 2147483647, 'NO', 'Norway'), +('194.194.244.0', '194.194.244.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.194.245.0', '194.194.245.255', 2147483647, 2147483647, 'NO', 'Norway'), +('194.194.246.0', '194.194.247.255', 2147483647, 2147483647, 'IL', 'Israel'), +('194.194.248.0', '194.194.248.255', 2147483647, 2147483647, 'NO', 'Norway'), +('194.194.249.0', '194.194.249.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.194.250.0', '194.194.251.255', 2147483647, 2147483647, 'IL', 'Israel'), +('194.194.252.0', '194.194.253.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.194.254.0', '194.194.255.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.195.0.0', '194.195.246.127', 2147483647, 2147483647, 'DE', 'Germany'), +('194.195.246.128', '194.195.246.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.195.246.160', '194.195.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.196.0.0', '194.196.1.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.196.2.0', '194.196.2.255', 2147483647, 2147483647, 'FR', 'France'), +('194.196.3.0', '194.196.3.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.196.4.0', '194.196.4.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.196.5.0', '194.196.5.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.196.6.0', '194.196.6.255', 2147483647, 2147483647, 'ES', 'Spain'), +('194.196.7.0', '194.196.7.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.196.8.0', '194.196.9.79', 2147483647, 2147483647, 'DE', 'Germany'), +('194.196.9.80', '194.196.9.95', 2147483647, 2147483647, 'EU', 'Europe'), +('194.196.9.96', '194.196.9.223', 2147483647, 2147483647, 'DE', 'Germany'), +('194.196.9.224', '194.196.10.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.196.11.0', '194.196.11.31', 2147483647, 2147483647, 'DE', 'Germany'), +('194.196.11.32', '194.196.11.63', 2147483647, 2147483647, 'EU', 'Europe'), +('194.196.11.64', '194.196.11.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.196.12.0', '194.196.12.255', 2147483647, 2147483647, 'IT', 'Italy'), +('194.196.13.0', '194.196.13.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.196.14.0', '194.196.14.255', 2147483647, 2147483647, 'IT', 'Italy'), +('194.196.15.0', '194.196.15.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('194.196.16.0', '194.196.16.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('194.196.17.0', '194.196.17.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.196.18.0', '194.196.18.191', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.196.18.192', '194.196.18.239', 2147483647, 2147483647, 'EU', 'Europe'), +('194.196.18.240', '194.196.18.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.196.19.0', '194.196.19.255', 2147483647, 2147483647, 'GR', 'Greece'), +('194.196.20.0', '194.196.21.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.196.22.0', '194.196.22.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('194.196.23.0', '194.196.23.15', 2147483647, 2147483647, 'IT', 'Italy'), +('194.196.23.16', '194.196.23.95', 2147483647, 2147483647, 'FR', 'France'), +('194.196.23.96', '194.196.23.207', 2147483647, 2147483647, 'IT', 'Italy'), +('194.196.23.208', '194.196.23.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.196.23.224', '194.196.23.239', 2147483647, 2147483647, 'EU', 'Europe'), +('194.196.23.240', '194.196.23.255', 2147483647, 2147483647, 'IT', 'Italy'), +('194.196.24.0', '194.196.25.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.196.26.0', '194.196.27.63', 2147483647, 2147483647, 'DE', 'Germany'), +('194.196.27.64', '194.196.27.127', 2147483647, 2147483647, 'EU', 'Europe'), +('194.196.27.128', '194.196.27.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.196.28.0', '194.196.28.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.196.29.0', '194.196.29.127', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.196.29.128', '194.196.29.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.196.30.0', '194.196.30.255', 2147483647, 2147483647, 'IT', 'Italy'), +('194.196.31.0', '194.196.31.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.196.32.0', '194.196.34.15', 2147483647, 2147483647, 'NO', 'Norway'), +('194.196.34.16', '194.196.34.31', 2147483647, 2147483647, 'EU', 'Europe'), +('194.196.34.32', '194.196.34.47', 2147483647, 2147483647, 'NO', 'Norway'), +('194.196.34.48', '194.196.34.63', 2147483647, 2147483647, 'EU', 'Europe'), +('194.196.34.64', '194.196.34.191', 2147483647, 2147483647, 'NO', 'Norway'), +('194.196.34.192', '194.196.35.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.196.36.0', '194.196.36.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.196.37.0', '194.196.38.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.196.39.0', '194.196.41.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.196.42.0', '194.196.42.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.196.43.0', '194.196.43.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.196.44.0', '194.196.45.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.196.46.0', '194.196.46.47', 2147483647, 2147483647, 'ZA', 'South Africa'), +('194.196.46.48', '194.196.46.63', 2147483647, 2147483647, 'EU', 'Europe'), +('194.196.46.64', '194.196.46.79', 2147483647, 2147483647, 'ZA', 'South Africa'), +('194.196.46.80', '194.196.46.95', 2147483647, 2147483647, 'EU', 'Europe'), +('194.196.46.96', '194.196.46.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('194.196.47.0', '194.196.47.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.196.48.0', '194.196.48.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.196.49.0', '194.196.49.87', 2147483647, 2147483647, 'IT', 'Italy'), +('194.196.49.88', '194.196.49.95', 2147483647, 2147483647, 'EU', 'Europe'), +('194.196.49.96', '194.196.49.191', 2147483647, 2147483647, 'IT', 'Italy'), +('194.196.49.192', '194.196.49.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.196.50.0', '194.196.50.63', 2147483647, 2147483647, 'ES', 'Spain'), +('194.196.50.64', '194.196.50.95', 2147483647, 2147483647, 'EU', 'Europe'), +('194.196.50.96', '194.196.50.127', 2147483647, 2147483647, 'ES', 'Spain'), +('194.196.50.128', '194.196.50.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.196.51.0', '194.196.51.255', 2147483647, 2147483647, 'ES', 'Spain'), +('194.196.52.0', '194.196.52.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.196.53.0', '194.196.53.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.196.54.0', '194.196.55.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('194.196.56.0', '194.196.56.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.196.57.0', '194.196.57.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.196.58.0', '194.196.58.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.196.59.0', '194.196.59.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.196.60.0', '194.196.60.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.196.61.0', '194.196.61.255', 2147483647, 2147483647, 'IT', 'Italy'), +('194.196.62.0', '194.196.62.255', 2147483647, 2147483647, 'GR', 'Greece'), +('194.196.63.0', '194.196.63.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.196.64.0', '194.196.64.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('194.196.65.0', '194.196.65.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.196.66.0', '194.196.66.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.196.67.0', '194.196.67.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.196.68.0', '194.196.68.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.196.69.0', '194.196.69.255', 2147483647, 2147483647, 'NO', 'Norway'), +('194.196.70.0', '194.196.70.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('194.196.71.0', '194.196.71.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.196.72.0', '194.196.72.47', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.196.72.48', '194.196.72.63', 2147483647, 2147483647, 'EU', 'Europe'), +('194.196.72.64', '194.196.72.95', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.196.72.96', '194.196.72.127', 2147483647, 2147483647, 'EU', 'Europe'), +('194.196.72.128', '194.196.72.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.196.73.0', '194.196.73.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.196.74.0', '194.196.74.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.196.75.0', '194.196.75.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.196.76.0', '194.196.76.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.196.77.0', '194.196.77.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('194.196.78.0', '194.196.78.7', 2147483647, 2147483647, 'EU', 'Europe'), +('194.196.78.8', '194.196.78.31', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.196.78.32', '194.196.78.47', 2147483647, 2147483647, 'FR', 'France'), +('194.196.78.48', '194.196.78.55', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.196.78.56', '194.196.78.63', 2147483647, 2147483647, 'EU', 'Europe'), +('194.196.78.64', '194.196.78.127', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.196.78.128', '194.196.78.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.196.79.0', '194.196.79.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.196.80.0', '194.196.80.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.196.81.0', '194.196.81.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.196.82.0', '194.196.82.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.196.83.0', '194.196.87.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.196.88.0', '194.196.88.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.196.89.0', '194.196.89.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('194.196.90.0', '194.196.90.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.196.91.0', '194.196.91.159', 2147483647, 2147483647, 'EU', 'Europe'), +('194.196.91.160', '194.196.91.191', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.196.91.192', '194.196.91.223', 2147483647, 2147483647, 'FR', 'France'), +('194.196.91.224', '194.196.91.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.196.92.0', '194.196.92.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.196.93.0', '194.196.93.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.196.94.0', '194.196.94.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.196.95.0', '194.196.95.191', 2147483647, 2147483647, 'DE', 'Germany'), +('194.196.95.192', '194.196.96.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.196.97.0', '194.196.98.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.196.99.0', '194.196.99.15', 2147483647, 2147483647, 'EU', 'Europe'), +('194.196.99.16', '194.196.99.63', 2147483647, 2147483647, 'AT', 'Austria'), +('194.196.99.64', '194.196.99.159', 2147483647, 2147483647, 'EU', 'Europe'), +('194.196.99.160', '194.196.99.191', 2147483647, 2147483647, 'AT', 'Austria'), +('194.196.99.192', '194.196.99.223', 2147483647, 2147483647, 'EU', 'Europe'), +('194.196.99.224', '194.196.99.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.196.100.0', '194.196.101.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.196.102.0', '194.196.102.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.196.103.0', '194.196.103.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.196.104.0', '194.196.104.255', 2147483647, 2147483647, 'FR', 'France'), +('194.196.105.0', '194.196.105.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.196.106.0', '194.196.106.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.196.107.0', '194.196.107.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.196.108.0', '194.196.108.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.196.109.0', '194.196.109.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('194.196.110.0', '194.196.110.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.196.111.0', '194.196.112.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.196.113.0', '194.196.113.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.196.114.0', '194.196.116.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.196.117.0', '194.196.117.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('194.196.118.0', '194.196.119.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.196.120.0', '194.196.121.255', 2147483647, 2147483647, 'IT', 'Italy'), +('194.196.122.0', '194.196.122.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.196.123.0', '194.196.125.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.196.126.0', '194.196.126.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('194.196.127.0', '194.196.127.15', 2147483647, 2147483647, 'RO', 'Romania'), +('194.196.127.16', '194.196.127.31', 2147483647, 2147483647, 'EU', 'Europe'), +('194.196.127.32', '194.196.127.95', 2147483647, 2147483647, 'RO', 'Romania'), +('194.196.127.96', '194.196.127.191', 2147483647, 2147483647, 'EU', 'Europe'), +('194.196.127.192', '194.196.127.207', 2147483647, 2147483647, 'RO', 'Romania'), +('194.196.127.208', '194.196.128.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.196.129.0', '194.196.129.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.196.130.0', '194.196.130.255', 2147483647, 2147483647, 'IT', 'Italy'), +('194.196.131.0', '194.196.131.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.196.132.0', '194.196.133.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.196.134.0', '194.196.134.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.196.135.0', '194.196.135.255', 2147483647, 2147483647, 'IT', 'Italy'), +('194.196.136.0', '194.196.137.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.196.138.0', '194.196.138.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.196.139.0', '194.196.139.127', 2147483647, 2147483647, 'ES', 'Spain'), +('194.196.139.128', '194.196.141.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.196.142.0', '194.196.142.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('194.196.143.0', '194.196.143.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.196.143.64', '194.196.143.95', 2147483647, 2147483647, 'EU', 'Europe'), +('194.196.143.96', '194.196.143.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.196.143.112', '194.196.143.127', 2147483647, 2147483647, 'EU', 'Europe'), +('194.196.143.128', '194.196.143.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.196.144.0', '194.196.144.7', 2147483647, 2147483647, 'ES', 'Spain'), +('194.196.144.8', '194.196.144.15', 2147483647, 2147483647, 'EU', 'Europe'), +('194.196.144.16', '194.196.144.23', 2147483647, 2147483647, 'ES', 'Spain'), +('194.196.144.24', '194.196.144.31', 2147483647, 2147483647, 'EU', 'Europe'), +('194.196.144.32', '194.196.144.63', 2147483647, 2147483647, 'ES', 'Spain'), +('194.196.144.64', '194.196.144.199', 2147483647, 2147483647, 'EU', 'Europe'), +('194.196.144.200', '194.196.144.207', 2147483647, 2147483647, 'ES', 'Spain'), +('194.196.144.208', '194.196.144.215', 2147483647, 2147483647, 'EU', 'Europe'), +('194.196.144.216', '194.196.144.255', 2147483647, 2147483647, 'ES', 'Spain'), +('194.196.145.0', '194.196.148.39', 2147483647, 2147483647, 'EU', 'Europe'), +('194.196.148.40', '194.196.148.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.196.148.48', '194.196.148.103', 2147483647, 2147483647, 'IE', 'Ireland'), +('194.196.148.104', '194.196.148.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.196.148.112', '194.196.148.143', 2147483647, 2147483647, 'IE', 'Ireland'), +('194.196.148.144', '194.196.148.159', 2147483647, 2147483647, 'EU', 'Europe'), +('194.196.148.160', '194.196.148.223', 2147483647, 2147483647, 'IE', 'Ireland'), +('194.196.148.224', '194.196.148.239', 2147483647, 2147483647, 'EU', 'Europe'), +('194.196.148.240', '194.196.148.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('194.196.149.0', '194.196.149.223', 2147483647, 2147483647, 'IT', 'Italy'), +('194.196.149.224', '194.196.149.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.196.150.0', '194.196.151.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.196.152.0', '194.196.152.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.196.153.0', '194.196.153.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.196.154.0', '194.196.154.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.196.155.0', '194.196.155.31', 2147483647, 2147483647, 'SK', 'Slovakia'), +('194.196.155.32', '194.196.155.159', 2147483647, 2147483647, 'EU', 'Europe'), +('194.196.155.160', '194.196.155.175', 2147483647, 2147483647, 'SK', 'Slovakia'), +('194.196.155.176', '194.196.155.191', 2147483647, 2147483647, 'EU', 'Europe'), +('194.196.155.192', '194.196.155.239', 2147483647, 2147483647, 'SK', 'Slovakia'), +('194.196.155.240', '194.196.155.247', 2147483647, 2147483647, 'EU', 'Europe'), +('194.196.155.248', '194.196.155.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('194.196.156.0', '194.196.159.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.196.160.0', '194.196.160.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.196.161.0', '194.196.161.31', 2147483647, 2147483647, 'GR', 'Greece'), +('194.196.161.32', '194.196.161.79', 2147483647, 2147483647, 'EU', 'Europe'), +('194.196.161.80', '194.196.161.255', 2147483647, 2147483647, 'GR', 'Greece'), +('194.196.162.0', '194.196.162.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.196.162.16', '194.196.162.31', 2147483647, 2147483647, 'EU', 'Europe'), +('194.196.162.32', '194.196.162.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.196.162.112', '194.196.162.143', 2147483647, 2147483647, 'EU', 'Europe'), +('194.196.162.144', '194.196.164.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.196.165.0', '194.196.165.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.196.166.0', '194.196.167.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.196.168.0', '194.196.175.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.196.176.0', '194.196.181.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('194.196.182.0', '194.196.182.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.196.183.0', '194.196.183.255', 2147483647, 2147483647, 'NO', 'Norway'), +('194.196.184.0', '194.196.184.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.196.185.0', '194.196.185.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.196.186.0', '194.196.186.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.196.187.0', '194.196.187.95', 2147483647, 2147483647, 'FR', 'France'), +('194.196.187.96', '194.196.187.103', 2147483647, 2147483647, 'EU', 'Europe'), +('194.196.187.104', '194.196.187.167', 2147483647, 2147483647, 'FR', 'France'), +('194.196.187.168', '194.196.187.175', 2147483647, 2147483647, 'EU', 'Europe'), +('194.196.187.176', '194.196.187.183', 2147483647, 2147483647, 'FR', 'France'), +('194.196.187.184', '194.196.187.191', 2147483647, 2147483647, 'EU', 'Europe'), +('194.196.187.192', '194.196.187.255', 2147483647, 2147483647, 'FR', 'France'), +('194.196.188.0', '194.196.189.95', 2147483647, 2147483647, 'DE', 'Germany'), +('194.196.189.96', '194.196.189.135', 2147483647, 2147483647, 'EU', 'Europe'), +('194.196.189.136', '194.196.189.159', 2147483647, 2147483647, 'DE', 'Germany'), +('194.196.189.160', '194.196.189.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.196.190.0', '194.196.190.191', 2147483647, 2147483647, 'DE', 'Germany'), +('194.196.190.192', '194.196.190.207', 2147483647, 2147483647, 'EU', 'Europe'), +('194.196.190.208', '194.196.190.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.196.191.0', '194.196.191.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.196.192.0', '194.196.192.15', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.196.192.16', '194.196.192.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.196.192.48', '194.196.192.95', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.196.192.96', '194.196.192.127', 2147483647, 2147483647, 'EU', 'Europe'), +('194.196.192.128', '194.196.192.191', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.196.192.192', '194.196.192.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.196.193.0', '194.196.194.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.196.195.0', '194.196.195.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.196.196.0', '194.196.196.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.196.197.0', '194.196.197.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.196.198.0', '194.196.198.127', 2147483647, 2147483647, 'CY', 'Cyprus'), +('194.196.198.128', '194.196.198.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.196.199.0', '194.196.199.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.196.200.0', '194.196.200.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.196.201.0', '194.196.201.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.196.202.0', '194.196.202.7', 2147483647, 2147483647, 'HU', 'Hungary'), +('194.196.202.8', '194.196.202.15', 2147483647, 2147483647, 'EU', 'Europe'), +('194.196.202.16', '194.196.202.39', 2147483647, 2147483647, 'HU', 'Hungary'), +('194.196.202.40', '194.196.202.63', 2147483647, 2147483647, 'EU', 'Europe'), +('194.196.202.64', '194.196.202.95', 2147483647, 2147483647, 'HU', 'Hungary'), +('194.196.202.96', '194.196.202.111', 2147483647, 2147483647, 'EU', 'Europe'), +('194.196.202.112', '194.196.202.127', 2147483647, 2147483647, 'HU', 'Hungary'), +('194.196.202.128', '194.196.202.191', 2147483647, 2147483647, 'EU', 'Europe'), +('194.196.202.192', '194.196.202.207', 2147483647, 2147483647, 'HU', 'Hungary'), +('194.196.202.208', '194.196.202.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.196.203.0', '194.196.204.183', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.196.204.184', '194.196.204.191', 2147483647, 2147483647, 'EU', 'Europe'), +('194.196.204.192', '194.196.205.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.196.206.0', '194.196.207.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.196.208.0', '194.196.209.255', 2147483647, 2147483647, 'FR', 'France'), +('194.196.210.0', '194.196.210.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.196.211.0', '194.196.211.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.196.212.0', '194.196.212.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.196.213.0', '194.196.213.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.196.214.0', '194.196.214.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.196.215.0', '194.196.215.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('194.196.216.0', '194.196.217.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('194.196.218.0', '194.196.219.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.196.220.0', '194.196.220.223', 2147483647, 2147483647, 'FR', 'France'), +('194.196.220.224', '194.196.220.231', 2147483647, 2147483647, 'EU', 'Europe'), +('194.196.220.232', '194.196.220.255', 2147483647, 2147483647, 'FR', 'France'), +('194.196.221.0', '194.196.221.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.196.222.0', '194.196.222.183', 2147483647, 2147483647, 'FR', 'France'), +('194.196.222.184', '194.196.222.223', 2147483647, 2147483647, 'EU', 'Europe'), +('194.196.222.224', '194.196.222.255', 2147483647, 2147483647, 'FR', 'France'), +('194.196.223.0', '194.196.223.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.196.224.0', '194.196.224.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.196.225.0', '194.196.228.7', 2147483647, 2147483647, 'EU', 'Europe'), +('194.196.228.8', '194.196.228.31', 2147483647, 2147483647, 'PL', 'Poland'), +('194.196.228.32', '194.196.228.63', 2147483647, 2147483647, 'EU', 'Europe'), +('194.196.228.64', '194.196.228.143', 2147483647, 2147483647, 'PL', 'Poland'), +('194.196.228.144', '194.196.228.159', 2147483647, 2147483647, 'EU', 'Europe'), +('194.196.228.160', '194.196.228.175', 2147483647, 2147483647, 'PL', 'Poland'), +('194.196.228.176', '194.196.228.183', 2147483647, 2147483647, 'EU', 'Europe'), +('194.196.228.184', '194.196.228.199', 2147483647, 2147483647, 'PL', 'Poland'), +('194.196.228.200', '194.196.228.207', 2147483647, 2147483647, 'EU', 'Europe'), +('194.196.228.208', '194.196.228.223', 2147483647, 2147483647, 'PL', 'Poland'), +('194.196.228.224', '194.196.228.239', 2147483647, 2147483647, 'EU', 'Europe'), +('194.196.228.240', '194.196.228.247', 2147483647, 2147483647, 'PL', 'Poland'), +('194.196.228.248', '194.196.229.127', 2147483647, 2147483647, 'EU', 'Europe'), +('194.196.229.128', '194.196.229.143', 2147483647, 2147483647, 'PL', 'Poland'), +('194.196.229.144', '194.196.232.31', 2147483647, 2147483647, 'EU', 'Europe'), +('194.196.232.32', '194.196.232.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.196.232.96', '194.196.232.127', 2147483647, 2147483647, 'EU', 'Europe'), +('194.196.232.128', '194.196.234.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.196.235.0', '194.196.235.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.196.236.0', '194.196.237.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.196.238.0', '194.196.239.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.196.240.0', '194.196.245.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.196.246.0', '194.196.246.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('194.196.247.0', '194.196.248.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.196.249.0', '194.196.249.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.196.250.0', '194.196.250.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.196.251.0', '194.196.251.31', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('194.196.251.32', '194.196.251.95', 2147483647, 2147483647, 'EU', 'Europe'), +('194.196.251.96', '194.196.251.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('194.196.252.0', '194.196.252.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.196.253.0', '194.196.253.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.196.254.0', '194.196.254.255', 2147483647, 2147483647, 'FR', 'France'), +('194.196.255.0', '194.196.255.31', 2147483647, 2147483647, 'EU', 'Europe'), +('194.196.255.32', '194.196.255.255', 2147483647, 2147483647, 'FR', 'France'), +('194.197.0.0', '194.197.3.255', 2147483647, 2147483647, 'FI', 'Finland'), +('194.197.4.0', '194.197.7.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.197.8.0', '194.197.83.255', 2147483647, 2147483647, 'FI', 'Finland'), +('194.197.84.0', '194.197.84.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.197.85.0', '194.197.151.159', 2147483647, 2147483647, 'FI', 'Finland'), +('194.197.151.160', '194.197.151.191', 2147483647, 2147483647, 'AX', 'Aland Islands'), +('194.197.151.192', '194.197.198.255', 2147483647, 2147483647, 'FI', 'Finland'), +('194.197.199.0', '194.197.199.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.197.200.0', '194.197.200.63', 2147483647, 2147483647, 'FI', 'Finland'), +('194.197.200.64', '194.197.200.95', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.197.200.96', '194.197.200.159', 2147483647, 2147483647, 'FI', 'Finland'), +('194.197.200.160', '194.197.200.223', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.197.200.224', '194.197.207.255', 2147483647, 2147483647, 'FI', 'Finland'), +('194.197.208.0', '194.197.208.255', 2147483647, 2147483647, 'AX', 'Aland Islands'), +('194.197.209.0', '194.197.209.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.197.210.0', '194.197.210.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.197.211.0', '194.197.215.79', 2147483647, 2147483647, 'FI', 'Finland'), +('194.197.215.80', '194.197.215.83', 2147483647, 2147483647, 'AX', 'Aland Islands'), +('194.197.215.84', '194.197.217.255', 2147483647, 2147483647, 'FI', 'Finland'), +('194.197.218.0', '194.197.218.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.197.219.0', '194.197.255.255', 2147483647, 2147483647, 'FI', 'Finland'), +('194.198.0.0', '194.198.17.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.198.18.0', '194.198.19.255', 2147483647, 2147483647, 'NO', 'Norway'), +('194.198.20.0', '194.198.22.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.198.23.0', '194.198.23.255', 2147483647, 2147483647, 'NO', 'Norway'), +('194.198.24.0', '194.198.29.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.198.30.0', '194.198.30.255', 2147483647, 2147483647, 'NO', 'Norway'), +('194.198.31.0', '194.198.31.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.198.32.0', '194.198.32.255', 2147483647, 2147483647, 'NO', 'Norway'), +('194.198.33.0', '194.198.38.15', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.198.38.16', '194.198.38.31', 2147483647, 2147483647, 'NO', 'Norway'), +('194.198.38.32', '194.198.38.63', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.198.38.64', '194.198.38.95', 2147483647, 2147483647, 'NO', 'Norway'), +('194.198.38.96', '194.198.39.15', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.198.39.16', '194.198.39.31', 2147483647, 2147483647, 'NO', 'Norway'), +('194.198.39.32', '194.198.40.31', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.198.40.32', '194.198.40.47', 2147483647, 2147483647, 'NO', 'Norway'), +('194.198.40.48', '194.198.40.79', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.198.40.80', '194.198.40.95', 2147483647, 2147483647, 'NO', 'Norway'), +('194.198.40.96', '194.198.40.111', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.198.40.112', '194.198.40.143', 2147483647, 2147483647, 'NO', 'Norway'), +('194.198.40.144', '194.198.120.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.198.121.0', '194.198.121.255', 2147483647, 2147483647, 'NO', 'Norway'), +('194.198.122.0', '194.198.122.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.198.123.0', '194.198.123.255', 2147483647, 2147483647, 'NO', 'Norway'), +('194.198.124.0', '194.198.147.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.198.148.0', '194.198.148.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.198.149.0', '194.198.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.199.0.0', '194.199.255.255', 2147483647, 2147483647, 'FR', 'France'), +('194.200.0.0', '194.201.252.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.201.253.0', '194.201.253.255', 2147483647, 2147483647, 'KE', 'Kenya'), +('194.201.254.0', '194.203.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.204.0.0', '194.204.63.255', 2147483647, 2147483647, 'EE', 'Estonia'), +('194.204.64.0', '194.204.95.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.204.96.0', '194.204.127.255', 2147483647, 2147483647, 'MT', 'Malta'), +('194.204.128.0', '194.204.191.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.204.192.0', '194.204.255.255', 2147483647, 2147483647, 'MA', 'Morocco'), +('194.205.0.0', '194.205.3.31', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.3.32', '194.205.3.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.3.64', '194.205.3.95', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.3.96', '194.205.3.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.3.128', '194.205.3.159', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.3.160', '194.205.3.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.3.192', '194.205.3.223', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.3.224', '194.205.4.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.5.0', '194.205.12.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.13.0', '194.205.13.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.14.0', '194.205.19.159', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.19.160', '194.205.19.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.19.176', '194.205.19.207', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.19.208', '194.205.19.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.19.224', '194.205.25.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.26.0', '194.205.26.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.26.160', '194.205.26.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.27.0', '194.205.27.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.28.0', '194.205.31.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.32.0', '194.205.32.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.32.192', '194.205.32.223', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.32.224', '194.205.32.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.33.0', '194.205.38.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.39.0', '194.205.39.255', 2147483647, 2147483647, 'US', 'United States'), +('194.205.40.0', '194.205.45.63', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.45.64', '194.205.46.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.47.0', '194.205.48.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.49.0', '194.205.49.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.49.64', '194.205.49.191', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.49.192', '194.205.50.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.50.32', '194.205.57.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.58.0', '194.205.58.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.59.0', '194.205.61.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.62.0', '194.205.62.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.63.0', '194.205.63.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.64.0', '194.205.64.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.64.32', '194.205.64.151', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.64.152', '194.205.64.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.64.192', '194.205.64.223', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.64.224', '194.205.64.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.65.0', '194.205.65.223', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.65.224', '194.205.65.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.66.0', '194.205.66.63', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.66.64', '194.205.66.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.66.128', '194.205.68.31', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.68.32', '194.205.68.51', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.68.52', '194.205.68.159', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.68.160', '194.205.68.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.68.176', '194.205.68.191', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.68.192', '194.205.68.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.68.224', '194.205.69.31', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.69.32', '194.205.69.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.69.128', '194.205.70.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.71.0', '194.205.71.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.71.128', '194.205.74.191', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.74.192', '194.205.75.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.75.64', '194.205.75.191', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.75.192', '194.205.75.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.76.0', '194.205.77.63', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.77.64', '194.205.77.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.77.128', '194.205.78.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.79.0', '194.205.79.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.80.0', '194.205.80.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.205.81.0', '194.205.81.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.82.0', '194.205.82.159', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.82.160', '194.205.82.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.83.0', '194.205.83.159', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.83.160', '194.205.83.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.83.176', '194.205.84.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.85.0', '194.205.85.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.85.64', '194.205.85.127', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.85.128', '194.205.85.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.86.0', '194.205.87.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.88.0', '194.205.88.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.89.0', '194.205.89.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.90.0', '194.205.90.23', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.90.24', '194.205.90.31', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.90.32', '194.205.90.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.90.64', '194.205.91.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.92.0', '194.205.92.23', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.92.24', '194.205.92.31', 2147483647, 2147483647, 'DE', 'Germany'), +('194.205.92.32', '194.205.92.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.92.128', '194.205.92.135', 2147483647, 2147483647, 'DE', 'Germany'), +('194.205.92.136', '194.205.92.143', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.92.144', '194.205.92.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.92.160', '194.205.94.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.95.0', '194.205.95.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.96.0', '194.205.96.223', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.96.224', '194.205.98.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.99.0', '194.205.99.31', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.99.32', '194.205.99.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.99.64', '194.205.99.127', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.99.128', '194.205.100.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.100.16', '194.205.101.47', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.101.48', '194.205.101.55', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.101.56', '194.205.101.71', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.101.72', '194.205.101.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.101.96', '194.205.101.103', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.101.104', '194.205.101.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.101.112', '194.205.101.135', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.101.136', '194.205.101.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.101.144', '194.205.102.79', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.102.80', '194.205.102.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.102.96', '194.205.102.111', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.102.112', '194.205.102.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.102.128', '194.205.104.135', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.104.136', '194.205.104.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.104.144', '194.205.104.231', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.104.232', '194.205.104.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.105.0', '194.205.108.63', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.108.64', '194.205.108.91', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.108.92', '194.205.109.191', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.109.192', '194.205.110.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.110.160', '194.205.111.127', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.111.128', '194.205.111.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.111.192', '194.205.113.31', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.113.32', '194.205.113.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.113.64', '194.205.113.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.114.0', '194.205.114.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.114.64', '194.205.117.39', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.117.40', '194.205.117.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.117.48', '194.205.117.55', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.117.56', '194.205.117.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.117.64', '194.205.118.119', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.118.120', '194.205.118.123', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.118.124', '194.205.119.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.120.0', '194.205.120.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.121.0', '194.205.122.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.123.0', '194.205.124.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.125.0', '194.205.125.7', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.125.8', '194.205.125.23', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.125.24', '194.205.125.127', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.125.128', '194.205.125.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.125.144', '194.205.125.175', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.125.176', '194.205.125.207', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.125.208', '194.205.130.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.131.0', '194.205.131.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.131.128', '194.205.131.191', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.131.192', '194.205.131.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.131.224', '194.205.132.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.133.0', '194.205.133.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.133.128', '194.205.135.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.136.0', '194.205.142.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.142.176', '194.205.142.191', 2147483647, 2147483647, 'IE', 'Ireland'), +('194.205.142.192', '194.205.143.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.143.192', '194.205.143.223', 2147483647, 2147483647, 'DE', 'Germany'), +('194.205.143.224', '194.205.143.239', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.205.143.240', '194.205.143.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.144.0', '194.205.152.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.153.0', '194.205.153.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.153.64', '194.205.154.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.155.0', '194.205.155.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.155.80', '194.205.155.127', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.155.128', '194.205.155.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.155.144', '194.205.155.159', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.155.160', '194.205.155.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.155.176', '194.205.156.175', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.156.176', '194.205.156.183', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.156.184', '194.205.160.79', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.160.80', '194.205.160.119', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.160.120', '194.205.160.127', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.160.128', '194.205.160.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.160.144', '194.205.160.151', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.160.152', '194.205.160.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.160.176', '194.205.160.207', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.160.208', '194.205.160.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.160.240', '194.205.164.127', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.164.128', '194.205.164.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.164.192', '194.205.164.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.165.0', '194.205.165.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.165.32', '194.205.165.63', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.165.64', '194.205.165.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.165.96', '194.205.165.239', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.165.240', '194.205.165.247', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.165.248', '194.205.166.135', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.166.136', '194.205.166.139', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.166.140', '194.205.166.143', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.166.144', '194.205.166.151', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.166.152', '194.205.166.159', 2147483647, 2147483647, 'IT', 'Italy'), +('194.205.166.160', '194.205.166.175', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.166.176', '194.205.166.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.166.192', '194.205.166.207', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.166.208', '194.205.166.247', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.166.248', '194.205.170.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.171.0', '194.205.171.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.171.64', '194.205.171.127', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.171.128', '194.205.171.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.171.192', '194.205.173.191', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.173.192', '194.205.173.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.174.0', '194.205.174.191', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.174.192', '194.205.174.199', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.174.200', '194.205.174.215', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.174.216', '194.205.174.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.174.224', '194.205.174.231', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.174.232', '194.205.174.247', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.174.248', '194.205.175.223', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.175.224', '194.205.175.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.175.240', '194.205.175.247', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.175.248', '194.205.176.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.177.0', '194.205.177.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.178.0', '194.205.178.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.178.32', '194.205.178.63', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.178.64', '194.205.178.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.178.128', '194.205.178.159', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.178.160', '194.205.178.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.179.0', '194.205.179.31', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.179.32', '194.205.179.39', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.179.40', '194.205.179.47', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.179.48', '194.205.179.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.179.64', '194.205.184.47', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.184.48', '194.205.184.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.184.64', '194.205.187.111', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.187.112', '194.205.187.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.187.128', '194.205.187.223', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.187.224', '194.205.187.231', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.187.232', '194.205.189.63', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.189.64', '194.205.189.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.189.96', '194.205.189.223', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.189.224', '194.205.189.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.190.0', '194.205.191.95', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.191.96', '194.205.191.103', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.191.104', '194.205.195.31', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.195.32', '194.205.195.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.195.64', '194.205.197.199', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.197.200', '194.205.197.215', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.197.216', '194.205.199.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.200.0', '194.205.201.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.202.0', '194.205.203.231', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.203.232', '194.205.203.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.203.240', '194.205.206.15', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.206.16', '194.205.206.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.206.32', '194.205.206.63', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.206.64', '194.205.206.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.206.80', '194.205.206.95', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.206.96', '194.205.206.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.206.128', '194.205.206.223', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.206.224', '194.205.206.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.207.0', '194.205.207.175', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.207.176', '194.205.207.183', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.207.184', '194.205.209.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.210.0', '194.205.210.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.211.0', '194.205.217.15', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.217.16', '194.205.217.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.217.32', '194.205.217.159', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.217.160', '194.205.217.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.217.176', '194.205.218.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.219.0', '194.205.220.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.221.0', '194.205.223.39', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.223.40', '194.205.223.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.223.48', '194.205.223.55', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.223.56', '194.205.223.63', 2147483647, 2147483647, 'GB', 'United Kingdom'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('194.205.223.64', '194.205.226.63', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.226.64', '194.205.226.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.226.80', '194.205.226.87', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.226.88', '194.205.226.103', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.226.104', '194.205.226.111', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.226.112', '194.205.226.119', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.226.120', '194.205.227.127', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.227.128', '194.205.227.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.228.0', '194.205.230.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.231.0', '194.205.231.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.231.64', '194.205.231.191', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.231.192', '194.205.231.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.232.0', '194.205.233.23', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.233.24', '194.205.233.27', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.233.28', '194.205.233.95', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.233.96', '194.205.233.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.233.112', '194.205.233.127', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.233.128', '194.205.233.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.233.160', '194.205.239.15', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.239.16', '194.205.239.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.239.32', '194.205.241.159', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.241.160', '194.205.241.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.241.176', '194.205.241.191', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.241.192', '194.205.241.207', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.241.208', '194.205.242.31', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.242.32', '194.205.242.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.242.64', '194.205.242.127', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.242.128', '194.205.242.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.242.160', '194.205.243.63', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.243.64', '194.205.243.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.243.128', '194.205.245.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.246.0', '194.205.246.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.247.0', '194.205.248.191', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.248.192', '194.205.248.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.205.248.224', '194.205.254.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.205.255.0', '194.205.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.206.0.0', '194.206.215.255', 2147483647, 2147483647, 'FR', 'France'), +('194.206.216.0', '194.206.216.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.206.217.0', '194.206.255.255', 2147483647, 2147483647, 'FR', 'France'), +('194.207.0.0', '194.207.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.208.0.0', '194.208.52.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.208.53.0', '194.208.55.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.208.56.0', '194.208.56.255', 2147483647, 2147483647, 'LI', 'Liechtenstein'), +('194.208.57.0', '194.208.58.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.208.59.0', '194.208.64.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.208.65.0', '194.208.65.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.208.66.0', '194.208.66.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.208.67.0', '194.208.68.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.208.69.0', '194.208.69.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.208.70.0', '194.208.70.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.208.71.0', '194.208.72.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.208.73.0', '194.208.75.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.208.76.0', '194.208.76.255', 2147483647, 2147483647, 'LI', 'Liechtenstein'), +('194.208.77.0', '194.208.255.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.209.0.0', '194.209.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.210.0.0', '194.210.255.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('194.211.0.0', '194.211.255.255', 2147483647, 2147483647, 'FI', 'Finland'), +('194.212.0.0', '194.212.118.55', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('194.212.118.56', '194.212.118.63', 2147483647, 2147483647, 'CR', 'Costa Rica'), +('194.212.118.64', '194.212.213.223', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('194.212.213.224', '194.212.213.235', 2147483647, 2147483647, 'CR', 'Costa Rica'), +('194.212.213.236', '194.212.255.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('194.213.0.0', '194.213.0.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.213.1.0', '194.213.1.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.213.2.0', '194.213.2.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.213.3.0', '194.213.3.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.213.4.0', '194.213.4.255', 2147483647, 2147483647, 'IL', 'Israel'), +('194.213.5.0', '194.213.5.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.213.6.0', '194.213.6.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.213.7.0', '194.213.7.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.213.8.0', '194.213.8.255', 2147483647, 2147483647, 'FR', 'France'), +('194.213.9.0', '194.213.10.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('194.213.11.0', '194.213.11.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.213.12.0', '194.213.12.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.213.13.0', '194.213.13.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('194.213.14.0', '194.213.14.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.213.15.0', '194.213.15.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.213.16.0', '194.213.16.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.213.17.0', '194.213.17.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.213.18.0', '194.213.18.255', 2147483647, 2147483647, 'GR', 'Greece'), +('194.213.19.0', '194.213.19.255', 2147483647, 2147483647, 'ES', 'Spain'), +('194.213.20.0', '194.213.20.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.213.21.0', '194.213.21.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.213.22.0', '194.213.22.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.213.23.0', '194.213.23.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.213.24.0', '194.213.24.255', 2147483647, 2147483647, 'KZ', 'Kazakstan'), +('194.213.25.0', '194.213.25.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.213.26.0', '194.213.26.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('194.213.27.0', '194.213.27.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.213.28.0', '194.213.28.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.213.29.0', '194.213.29.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('194.213.30.0', '194.213.30.255', 2147483647, 2147483647, 'FR', 'France'), +('194.213.31.0', '194.213.31.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.213.32.0', '194.213.63.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('194.213.64.0', '194.213.95.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.213.96.0', '194.213.127.255', 2147483647, 2147483647, 'IT', 'Italy'), +('194.213.128.0', '194.213.191.255', 2147483647, 2147483647, 'NO', 'Norway'), +('194.213.192.0', '194.213.255.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('194.214.0.0', '194.214.252.255', 2147483647, 2147483647, 'FR', 'France'), +('194.214.253.0', '194.214.255.255', 2147483647, 2147483647, 'PF', 'French Polynesia'), +('194.215.0.0', '194.215.23.31', 2147483647, 2147483647, 'FI', 'Finland'), +('194.215.23.32', '194.215.23.95', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.215.23.96', '194.215.23.159', 2147483647, 2147483647, 'FI', 'Finland'), +('194.215.23.160', '194.215.23.191', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.215.23.192', '194.215.42.255', 2147483647, 2147483647, 'FI', 'Finland'), +('194.215.43.0', '194.215.43.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.215.44.0', '194.215.45.255', 2147483647, 2147483647, 'FI', 'Finland'), +('194.215.46.0', '194.215.46.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.215.47.0', '194.215.179.255', 2147483647, 2147483647, 'FI', 'Finland'), +('194.215.180.0', '194.215.180.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.215.181.0', '194.215.196.255', 2147483647, 2147483647, 'FI', 'Finland'), +('194.215.197.0', '194.215.197.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.215.198.0', '194.215.242.255', 2147483647, 2147483647, 'FI', 'Finland'), +('194.215.243.0', '194.215.243.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.215.244.0', '194.215.255.255', 2147483647, 2147483647, 'FI', 'Finland'), +('194.216.0.0', '194.217.219.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.217.220.0', '194.217.221.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.217.222.0', '194.217.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.218.0.0', '194.218.253.35', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.218.253.36', '194.218.253.39', 2147483647, 2147483647, 'NO', 'Norway'), +('194.218.253.40', '194.218.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.219.0.0', '194.219.255.255', 2147483647, 2147483647, 'GR', 'Greece'), +('194.220.0.0', '194.220.10.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.220.11.0', '194.220.11.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.220.12.0', '194.220.57.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.220.58.0', '194.220.59.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.220.60.0', '194.220.132.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.220.133.0', '194.220.133.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.220.134.0', '194.220.138.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.220.139.0', '194.220.139.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.220.140.0', '194.220.160.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.220.161.0', '194.220.161.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.220.162.0', '194.220.255.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.221.0.0', '194.221.4.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.221.5.0', '194.221.5.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.221.6.0', '194.221.9.191', 2147483647, 2147483647, 'EU', 'Europe'), +('194.221.9.192', '194.221.9.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.221.10.0', '194.221.10.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.221.11.0', '194.221.12.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.221.13.0', '194.221.13.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.221.14.0', '194.221.15.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.221.16.0', '194.221.35.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.221.36.0', '194.221.36.7', 2147483647, 2147483647, 'DE', 'Germany'), +('194.221.36.8', '194.221.36.127', 2147483647, 2147483647, 'EU', 'Europe'), +('194.221.36.128', '194.221.36.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.221.37.0', '194.221.37.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.221.37.16', '194.221.37.31', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.221.37.32', '194.221.37.63', 2147483647, 2147483647, 'EU', 'Europe'), +('194.221.37.64', '194.221.37.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.221.38.0', '194.221.38.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.221.39.0', '194.221.39.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.221.40.0', '194.221.40.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.221.41.0', '194.221.47.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.221.48.0', '194.221.48.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.221.49.0', '194.221.49.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.221.50.0', '194.221.50.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.221.51.0', '194.221.53.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.221.54.0', '194.221.55.255', 2147483647, 2147483647, 'FR', 'France'), +('194.221.56.0', '194.221.56.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.221.56.64', '194.221.59.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.221.60.0', '194.221.61.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.221.62.0', '194.221.62.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.221.63.0', '194.221.63.183', 2147483647, 2147483647, 'EU', 'Europe'), +('194.221.63.184', '194.221.63.191', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.221.63.192', '194.221.63.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.221.64.0', '194.221.64.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.221.65.0', '194.221.67.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.221.68.0', '194.221.68.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.221.69.0', '194.221.69.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.221.70.0', '194.221.70.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.221.71.0', '194.221.71.127', 2147483647, 2147483647, 'DE', 'Germany'), +('194.221.71.128', '194.221.72.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.221.73.0', '194.221.73.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.221.74.0', '194.221.74.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.221.75.0', '194.221.75.255', 2147483647, 2147483647, 'FR', 'France'), +('194.221.76.0', '194.221.77.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.221.78.0', '194.221.78.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.221.79.0', '194.221.80.31', 2147483647, 2147483647, 'EU', 'Europe'), +('194.221.80.32', '194.221.80.63', 2147483647, 2147483647, 'DE', 'Germany'), +('194.221.80.64', '194.221.80.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.221.81.0', '194.221.81.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.221.82.0', '194.221.83.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.221.84.0', '194.221.84.191', 2147483647, 2147483647, 'FR', 'France'), +('194.221.84.192', '194.221.84.223', 2147483647, 2147483647, 'EU', 'Europe'), +('194.221.84.224', '194.221.85.15', 2147483647, 2147483647, 'DE', 'Germany'), +('194.221.85.16', '194.221.85.31', 2147483647, 2147483647, 'EU', 'Europe'), +('194.221.85.32', '194.221.85.95', 2147483647, 2147483647, 'DE', 'Germany'), +('194.221.85.96', '194.221.85.191', 2147483647, 2147483647, 'EU', 'Europe'), +('194.221.85.192', '194.221.85.207', 2147483647, 2147483647, 'DE', 'Germany'), +('194.221.85.208', '194.221.86.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.221.87.0', '194.221.87.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.221.88.0', '194.221.89.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.221.90.0', '194.221.90.63', 2147483647, 2147483647, 'DE', 'Germany'), +('194.221.90.64', '194.221.98.239', 2147483647, 2147483647, 'EU', 'Europe'), +('194.221.98.240', '194.221.99.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.221.100.0', '194.221.106.63', 2147483647, 2147483647, 'EU', 'Europe'), +('194.221.106.64', '194.221.106.79', 2147483647, 2147483647, 'DE', 'Germany'), +('194.221.106.80', '194.221.106.95', 2147483647, 2147483647, 'EU', 'Europe'), +('194.221.106.96', '194.221.106.191', 2147483647, 2147483647, 'DE', 'Germany'), +('194.221.106.192', '194.221.106.239', 2147483647, 2147483647, 'EU', 'Europe'), +('194.221.106.240', '194.221.106.247', 2147483647, 2147483647, 'DE', 'Germany'), +('194.221.106.248', '194.221.108.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.221.109.0', '194.221.109.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.221.110.0', '194.221.110.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.221.110.32', '194.221.110.63', 2147483647, 2147483647, 'EU', 'Europe'), +('194.221.110.64', '194.221.110.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.221.110.128', '194.221.110.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.221.111.0', '194.221.112.255', 2147483647, 2147483647, 'ES', 'Spain'), +('194.221.113.0', '194.221.116.63', 2147483647, 2147483647, 'EU', 'Europe'), +('194.221.116.64', '194.221.116.95', 2147483647, 2147483647, 'DE', 'Germany'), +('194.221.116.96', '194.221.116.151', 2147483647, 2147483647, 'EU', 'Europe'), +('194.221.116.152', '194.221.116.159', 2147483647, 2147483647, 'DE', 'Germany'), +('194.221.116.160', '194.221.116.191', 2147483647, 2147483647, 'EU', 'Europe'), +('194.221.116.192', '194.221.116.223', 2147483647, 2147483647, 'DE', 'Germany'), +('194.221.116.224', '194.221.117.63', 2147483647, 2147483647, 'EU', 'Europe'), +('194.221.117.64', '194.221.117.79', 2147483647, 2147483647, 'DE', 'Germany'), +('194.221.117.80', '194.221.119.31', 2147483647, 2147483647, 'EU', 'Europe'), +('194.221.119.32', '194.221.119.63', 2147483647, 2147483647, 'DE', 'Germany'), +('194.221.119.64', '194.221.119.95', 2147483647, 2147483647, 'EU', 'Europe'), +('194.221.119.96', '194.221.119.127', 2147483647, 2147483647, 'DE', 'Germany'), +('194.221.119.128', '194.221.128.103', 2147483647, 2147483647, 'EU', 'Europe'), +('194.221.128.104', '194.221.128.107', 2147483647, 2147483647, 'DE', 'Germany'), +('194.221.128.108', '194.221.128.239', 2147483647, 2147483647, 'EU', 'Europe'), +('194.221.128.240', '194.221.128.247', 2147483647, 2147483647, 'DE', 'Germany'), +('194.221.128.248', '194.221.131.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.221.132.0', '194.221.133.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.221.134.0', '194.221.137.231', 2147483647, 2147483647, 'EU', 'Europe'), +('194.221.137.232', '194.221.137.239', 2147483647, 2147483647, 'DE', 'Germany'), +('194.221.137.240', '194.221.154.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.221.155.0', '194.221.155.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.221.156.0', '194.221.156.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.221.156.128', '194.221.156.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.221.157.0', '194.221.157.127', 2147483647, 2147483647, 'DE', 'Germany'), +('194.221.157.128', '194.221.163.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.221.164.0', '194.221.164.7', 2147483647, 2147483647, 'DE', 'Germany'), +('194.221.164.8', '194.221.165.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.221.166.0', '194.221.169.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.221.170.0', '194.221.172.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.221.173.0', '194.221.173.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.221.174.0', '194.221.184.191', 2147483647, 2147483647, 'EU', 'Europe'), +('194.221.184.192', '194.221.184.207', 2147483647, 2147483647, 'DE', 'Germany'), +('194.221.184.208', '194.221.185.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.221.186.0', '194.221.186.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.221.187.0', '194.221.189.127', 2147483647, 2147483647, 'EU', 'Europe'), +('194.221.189.128', '194.221.189.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.221.190.0', '194.221.196.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.221.197.0', '194.221.198.127', 2147483647, 2147483647, 'DE', 'Germany'), +('194.221.198.128', '194.221.198.143', 2147483647, 2147483647, 'EU', 'Europe'), +('194.221.198.144', '194.221.198.151', 2147483647, 2147483647, 'DE', 'Germany'), +('194.221.198.152', '194.221.203.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.221.204.0', '194.221.204.7', 2147483647, 2147483647, 'DE', 'Germany'), +('194.221.204.8', '194.221.211.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.221.212.0', '194.221.212.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.221.212.32', '194.221.212.39', 2147483647, 2147483647, 'IE', 'Ireland'), +('194.221.212.40', '194.221.212.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.221.213.0', '194.221.214.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.221.215.0', '194.221.215.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.221.216.0', '194.221.217.71', 2147483647, 2147483647, 'DE', 'Germany'), +('194.221.217.72', '194.221.217.95', 2147483647, 2147483647, 'EU', 'Europe'), +('194.221.217.96', '194.221.217.135', 2147483647, 2147483647, 'DE', 'Germany'), +('194.221.217.136', '194.221.217.143', 2147483647, 2147483647, 'EU', 'Europe'), +('194.221.217.144', '194.221.217.159', 2147483647, 2147483647, 'DE', 'Germany'), +('194.221.217.160', '194.221.217.223', 2147483647, 2147483647, 'EU', 'Europe'), +('194.221.217.224', '194.221.222.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.221.223.0', '194.221.223.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.221.224.0', '194.221.227.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.221.228.0', '194.221.229.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.221.230.0', '194.221.230.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.221.231.0', '194.221.231.183', 2147483647, 2147483647, 'EU', 'Europe'), +('194.221.231.184', '194.221.231.187', 2147483647, 2147483647, 'DE', 'Germany'), +('194.221.231.188', '194.221.231.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.221.232.0', '194.221.233.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.221.234.0', '194.221.247.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.221.248.0', '194.221.248.7', 2147483647, 2147483647, 'DE', 'Germany'), +('194.221.248.8', '194.221.248.111', 2147483647, 2147483647, 'EU', 'Europe'), +('194.221.248.112', '194.221.248.123', 2147483647, 2147483647, 'DE', 'Germany'), +('194.221.248.124', '194.221.248.143', 2147483647, 2147483647, 'EU', 'Europe'), +('194.221.248.144', '194.221.248.151', 2147483647, 2147483647, 'DE', 'Germany'), +('194.221.248.152', '194.221.248.175', 2147483647, 2147483647, 'EU', 'Europe'), +('194.221.248.176', '194.221.248.191', 2147483647, 2147483647, 'DE', 'Germany'), +('194.221.248.192', '194.221.248.207', 2147483647, 2147483647, 'EU', 'Europe'), +('194.221.248.208', '194.221.248.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.221.249.0', '194.221.251.143', 2147483647, 2147483647, 'EU', 'Europe'), +('194.221.251.144', '194.221.251.151', 2147483647, 2147483647, 'DE', 'Germany'), +('194.221.251.152', '194.221.251.247', 2147483647, 2147483647, 'EU', 'Europe'), +('194.221.251.248', '194.221.253.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.221.254.0', '194.221.255.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.222.0.0', '194.223.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.224.0.0', '194.224.255.255', 2147483647, 2147483647, 'ES', 'Spain'), +('194.225.0.0', '194.225.119.255', 2147483647, 2147483647, 'IR', 'Iran, Islamic Republic of'), +('194.225.120.0', '194.225.120.255', 2147483647, 2147483647, 'AE', 'United Arab Emirates'), +('194.225.121.0', '194.225.255.255', 2147483647, 2147483647, 'IR', 'Iran, Islamic Republic of'), +('194.226.0.0', '194.226.119.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.226.120.0', '194.226.126.255', 2147483647, 2147483647, 'BY', 'Belarus'), +('194.226.127.0', '194.226.255.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.227.0.0', '194.227.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.228.0.0', '194.228.112.15', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('194.228.112.16', '194.228.112.31', 2147483647, 2147483647, 'CR', 'Costa Rica'), +('194.228.112.32', '194.228.255.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('194.229.0.0', '194.229.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.230.0.0', '194.230.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.231.0.0', '194.231.67.191', 2147483647, 2147483647, 'DE', 'Germany'), +('194.231.67.192', '194.231.67.207', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.231.67.208', '194.231.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.232.0.0', '194.232.255.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.233.0.0', '194.233.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.234.0.0', '194.234.8.127', 2147483647, 2147483647, 'EU', 'Europe'), +('194.234.8.128', '194.234.8.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.234.9.0', '194.234.26.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.234.27.0', '194.234.27.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.234.28.0', '194.234.32.195', 2147483647, 2147483647, 'EU', 'Europe'), +('194.234.32.196', '194.234.32.199', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.234.32.200', '194.234.32.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.234.33.0', '194.234.33.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.234.34.0', '194.234.35.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.234.36.0', '194.234.36.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.234.37.0', '194.234.37.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.234.38.0', '194.234.39.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.234.40.0', '194.234.41.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.234.42.0', '194.234.42.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.234.43.0', '194.234.44.31', 2147483647, 2147483647, 'EU', 'Europe'), +('194.234.44.32', '194.234.44.63', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.234.44.64', '194.234.64.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.234.65.0', '194.234.65.255', 2147483647, 2147483647, 'NO', 'Norway'), +('194.234.66.0', '194.234.68.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.234.69.0', '194.234.69.31', 2147483647, 2147483647, 'NO', 'Norway'), +('194.234.69.32', '194.234.84.95', 2147483647, 2147483647, 'EU', 'Europe'), +('194.234.84.96', '194.234.84.127', 2147483647, 2147483647, 'NO', 'Norway'), +('194.234.84.128', '194.234.84.159', 2147483647, 2147483647, 'EU', 'Europe'), +('194.234.84.160', '194.234.84.223', 2147483647, 2147483647, 'NO', 'Norway'), +('194.234.84.224', '194.234.99.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.234.100.0', '194.234.101.255', 2147483647, 2147483647, 'NO', 'Norway'), +('194.234.102.0', '194.234.104.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.234.105.0', '194.234.105.255', 2147483647, 2147483647, 'NO', 'Norway'), +('194.234.106.0', '194.234.111.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.234.112.0', '194.234.114.255', 2147483647, 2147483647, 'NO', 'Norway'), +('194.234.115.0', '194.234.122.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.234.123.0', '194.234.124.255', 2147483647, 2147483647, 'NO', 'Norway'), +('194.234.125.0', '194.234.125.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.234.126.0', '194.234.127.255', 2147483647, 2147483647, 'NO', 'Norway'), +('194.234.128.0', '194.234.140.255', 2147483647, 2147483647, 'FI', 'Finland'), +('194.234.141.0', '194.234.142.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.234.143.0', '194.234.153.31', 2147483647, 2147483647, 'FI', 'Finland'), +('194.234.153.32', '194.234.154.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.234.155.0', '194.234.157.255', 2147483647, 2147483647, 'FI', 'Finland'), +('194.234.158.0', '194.234.159.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.234.160.0', '194.234.161.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.234.162.0', '194.234.172.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.234.173.0', '194.234.173.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.234.174.0', '194.234.193.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.234.194.0', '194.234.194.255', 2147483647, 2147483647, 'NO', 'Norway'), +('194.234.195.0', '194.234.199.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.234.200.0', '194.234.204.255', 2147483647, 2147483647, 'NO', 'Norway'), +('194.234.205.0', '194.234.209.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.234.210.0', '194.234.210.255', 2147483647, 2147483647, 'NO', 'Norway'), +('194.234.211.0', '194.234.213.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.234.214.0', '194.234.215.255', 2147483647, 2147483647, 'NO', 'Norway'), +('194.234.216.0', '194.234.231.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.234.232.0', '194.234.232.255', 2147483647, 2147483647, 'NO', 'Norway'), +('194.234.233.0', '194.234.235.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.234.236.0', '194.234.236.255', 2147483647, 2147483647, 'NO', 'Norway'), +('194.234.237.0', '194.235.0.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.235.1.0', '194.235.1.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.235.2.0', '194.235.2.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.235.3.0', '194.235.3.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.235.4.0', '194.235.4.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.235.5.0', '194.235.5.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.235.6.0', '194.235.6.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.235.7.0', '194.235.10.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.235.11.0', '194.235.31.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.235.32.0', '194.235.32.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.235.33.0', '194.235.35.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.235.36.0', '194.235.37.255', 2147483647, 2147483647, 'IT', 'Italy'), +('194.235.38.0', '194.235.39.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.235.40.0', '194.235.42.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.235.43.0', '194.235.43.175', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.235.43.176', '194.235.62.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.235.63.0', '194.235.63.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.235.64.0', '194.235.74.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.235.75.0', '194.235.75.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.235.76.0', '194.235.79.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.235.80.0', '194.235.80.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.235.81.0', '194.235.85.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.235.86.0', '194.235.86.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.235.87.0', '194.235.95.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.235.96.0', '194.235.96.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.235.97.0', '194.235.98.31', 2147483647, 2147483647, 'EU', 'Europe'), +('194.235.98.32', '194.235.98.47', 2147483647, 2147483647, 'ES', 'Spain'), +('194.235.98.48', '194.235.98.111', 2147483647, 2147483647, 'EU', 'Europe'), +('194.235.98.112', '194.235.98.127', 2147483647, 2147483647, 'ES', 'Spain'), +('194.235.98.128', '194.235.101.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.235.102.0', '194.235.102.255', 2147483647, 2147483647, 'ES', 'Spain'), +('194.235.103.0', '194.235.103.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.235.104.0', '194.235.104.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.235.105.0', '194.235.105.159', 2147483647, 2147483647, 'IT', 'Italy'), +('194.235.105.160', '194.235.105.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.235.106.0', '194.235.106.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.235.107.0', '194.235.107.255', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('194.235.108.0', '194.235.108.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.235.109.0', '194.235.109.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.235.110.0', '194.235.110.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.235.111.0', '194.235.122.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.235.123.0', '194.235.124.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.235.125.0', '194.235.125.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.235.126.0', '194.235.127.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.235.128.0', '194.235.128.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.235.129.0', '194.235.130.135', 2147483647, 2147483647, 'PT', 'Portugal'), +('194.235.130.136', '194.235.130.143', 2147483647, 2147483647, 'US', 'United States'), +('194.235.130.144', '194.235.130.159', 2147483647, 2147483647, 'PT', 'Portugal'), +('194.235.130.160', '194.235.130.175', 2147483647, 2147483647, 'EU', 'Europe'), +('194.235.130.176', '194.235.135.15', 2147483647, 2147483647, 'PT', 'Portugal'), +('194.235.135.16', '194.235.135.95', 2147483647, 2147483647, 'EU', 'Europe'), +('194.235.135.96', '194.235.136.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('194.235.137.0', '194.235.137.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.235.138.0', '194.235.138.159', 2147483647, 2147483647, 'PT', 'Portugal'), +('194.235.138.160', '194.235.138.191', 2147483647, 2147483647, 'EU', 'Europe'), +('194.235.138.192', '194.235.139.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('194.235.140.0', '194.235.140.31', 2147483647, 2147483647, 'EU', 'Europe'), +('194.235.140.32', '194.235.140.47', 2147483647, 2147483647, 'IT', 'Italy'), +('194.235.140.48', '194.235.140.95', 2147483647, 2147483647, 'EU', 'Europe'), +('194.235.140.96', '194.235.140.111', 2147483647, 2147483647, 'IT', 'Italy'), +('194.235.140.112', '194.235.140.127', 2147483647, 2147483647, 'EU', 'Europe'), +('194.235.140.128', '194.235.140.175', 2147483647, 2147483647, 'IT', 'Italy'), +('194.235.140.176', '194.235.142.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.235.143.0', '194.235.143.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.235.144.0', '194.235.146.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.235.147.0', '194.235.147.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.235.148.0', '194.235.170.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.235.171.0', '194.235.171.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.235.172.0', '194.235.192.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.235.193.0', '194.235.194.255', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('194.235.195.0', '194.235.196.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.235.197.0', '194.235.198.95', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('194.235.198.96', '194.235.201.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.235.202.0', '194.235.202.255', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('194.235.203.0', '194.235.207.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.235.208.0', '194.235.208.255', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('194.235.209.0', '194.235.209.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.235.210.0', '194.235.211.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.235.212.0', '194.235.215.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.235.216.0', '194.235.223.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.235.224.0', '194.235.225.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.235.226.0', '194.235.226.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.235.227.0', '194.235.228.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.235.229.0', '194.235.237.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.235.238.0', '194.235.240.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.235.241.0', '194.235.243.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.235.244.0', '194.235.245.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.235.246.0', '194.235.246.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.235.247.0', '194.235.247.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.235.248.0', '194.235.249.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.235.250.0', '194.235.253.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.235.254.0', '194.235.254.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.235.255.0', '194.235.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.236.0.0', '194.236.6.15', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.236.6.16', '194.236.6.19', 2147483647, 2147483647, 'NO', 'Norway'), +('194.236.6.20', '194.237.226.127', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.237.226.128', '194.237.226.135', 2147483647, 2147483647, 'NO', 'Norway'), +('194.237.226.136', '194.237.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.238.0.0', '194.238.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.239.0.0', '194.239.255.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.240.0.0', '194.240.53.255', 2147483647, 2147483647, 'FI', 'Finland'), +('194.240.54.0', '194.240.54.255', 2147483647, 2147483647, 'AX', 'Aland Islands'), +('194.240.55.0', '194.241.255.255', 2147483647, 2147483647, 'FI', 'Finland'), +('194.242.32.0', '194.242.32.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('194.242.33.0', '194.242.33.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.242.34.0', '194.242.34.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.242.35.0', '194.242.35.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.242.36.0', '194.242.36.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('194.242.37.0', '194.242.37.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.242.38.0', '194.242.38.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.242.39.0', '194.242.39.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.242.40.0', '194.242.40.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.242.41.0', '194.242.41.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.242.42.0', '194.242.42.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.242.43.0', '194.242.45.255', 2147483647, 2147483647, 'FR', 'France'), +('194.242.46.0', '194.242.46.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.242.47.0', '194.242.47.255', 2147483647, 2147483647, 'FR', 'France'), +('194.242.48.0', '194.242.49.255', 2147483647, 2147483647, 'IT', 'Italy'), +('194.242.50.0', '194.242.50.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.242.51.0', '194.242.51.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.242.52.0', '194.242.52.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.242.53.0', '194.242.53.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.242.54.0', '194.242.54.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.242.55.0', '194.242.55.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.242.56.0', '194.242.56.255', 2147483647, 2147483647, 'ES', 'Spain'), +('194.242.57.0', '194.242.57.255', 2147483647, 2147483647, 'EU', 'Europe'), +('194.242.58.0', '194.242.58.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.242.59.0', '194.242.60.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.242.61.0', '194.242.61.255', 2147483647, 2147483647, 'IT', 'Italy'), +('194.242.62.0', '194.242.62.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.242.63.0', '194.242.63.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.242.64.0', '194.242.95.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.242.96.0', '194.242.103.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.242.104.0', '194.242.107.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.242.108.0', '194.242.111.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.242.112.0', '194.242.115.255', 2147483647, 2147483647, 'FR', 'France'), +('194.242.116.0', '194.242.119.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.242.120.0', '194.242.127.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.242.128.0', '194.242.159.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.242.160.0', '194.242.191.255', 2147483647, 2147483647, 'FR', 'France'), +('194.242.192.0', '194.244.5.111', 2147483647, 2147483647, 'IT', 'Italy'), +('194.244.5.112', '194.244.5.119', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.244.5.120', '194.244.41.159', 2147483647, 2147483647, 'IT', 'Italy'), +('194.244.41.160', '194.244.41.175', 2147483647, 2147483647, 'RO', 'Romania'), +('194.244.41.176', '194.244.146.63', 2147483647, 2147483647, 'IT', 'Italy'), +('194.244.146.64', '194.244.146.95', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('194.244.146.96', '194.244.255.255', 2147483647, 2147483647, 'IT', 'Italy'), +('194.245.0.0', '194.246.39.191', 2147483647, 2147483647, 'DE', 'Germany'), +('194.246.39.192', '194.246.39.223', 2147483647, 2147483647, 'PL', 'Poland'), +('194.246.39.224', '194.246.39.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.246.40.0', '194.246.95.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.246.96.0', '194.246.96.255', 2147483647, 2147483647, 'US', 'United States'), +('194.246.97.0', '194.246.97.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.246.98.0', '194.246.98.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.246.99.0', '194.246.99.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.246.100.0', '194.246.100.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.246.101.0', '194.246.101.255', 2147483647, 2147483647, 'FR', 'France'), +('194.246.102.0', '194.246.102.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('194.246.103.0', '194.246.103.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.246.104.0', '194.246.105.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.246.106.0', '194.246.107.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.246.108.0', '194.246.109.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.246.110.0', '194.246.111.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('194.246.112.0', '194.246.113.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.246.116.0', '194.246.117.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.246.118.0', '194.246.119.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.246.120.0', '194.246.121.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('194.246.122.0', '194.246.123.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.246.124.0', '194.246.125.255', 2147483647, 2147483647, 'PL', 'Poland'), +('194.246.126.0', '194.246.127.255', 2147483647, 2147483647, 'IT', 'Italy'), +('194.246.128.0', '194.246.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.247.0.0', '194.247.31.255', 2147483647, 2147483647, 'IT', 'Italy'), +('194.247.32.0', '194.247.95.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.247.96.0', '194.247.127.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.247.128.0', '194.247.159.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.247.192.0', '194.247.214.255', 2147483647, 2147483647, 'RS', 'Serbia'), +('194.247.215.0', '194.247.215.127', 2147483647, 2147483647, 'CY', 'Cyprus'), +('194.247.215.128', '194.247.223.63', 2147483647, 2147483647, 'RS', 'Serbia'), +('194.247.223.64', '194.247.223.67', 2147483647, 2147483647, 'BA', 'Bosnia and Herzegovina'), +('194.247.223.68', '194.247.223.255', 2147483647, 2147483647, 'RS', 'Serbia'), +('194.247.224.0', '194.247.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.248.0.0', '194.248.255.255', 2147483647, 2147483647, 'NO', 'Norway'), +('194.249.0.0', '194.249.255.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('194.250.0.0', '194.250.143.255', 2147483647, 2147483647, 'FR', 'France'), +('194.250.144.0', '194.250.144.7', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.250.144.8', '194.250.144.15', 2147483647, 2147483647, 'ES', 'Spain'), +('194.250.144.16', '194.250.255.255', 2147483647, 2147483647, 'FR', 'France'), +('194.251.0.0', '194.251.57.159', 2147483647, 2147483647, 'FI', 'Finland'), +('194.251.57.160', '194.251.57.191', 2147483647, 2147483647, 'AX', 'Aland Islands'), +('194.251.57.192', '194.251.71.251', 2147483647, 2147483647, 'FI', 'Finland'), +('194.251.71.252', '194.251.71.255', 2147483647, 2147483647, 'AX', 'Aland Islands'), +('194.251.72.0', '194.251.79.255', 2147483647, 2147483647, 'FI', 'Finland'), +('194.251.80.0', '194.251.80.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.251.81.0', '194.251.198.223', 2147483647, 2147483647, 'FI', 'Finland'), +('194.251.198.224', '194.251.198.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('194.251.199.0', '194.251.200.47', 2147483647, 2147483647, 'FI', 'Finland'), +('194.251.200.48', '194.251.200.63', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.251.200.64', '194.251.200.79', 2147483647, 2147483647, 'FI', 'Finland'), +('194.251.200.80', '194.251.200.95', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.251.200.96', '194.251.207.255', 2147483647, 2147483647, 'FI', 'Finland'), +('194.251.208.0', '194.251.215.255', 2147483647, 2147483647, 'AX', 'Aland Islands'), +('194.251.216.0', '194.251.238.255', 2147483647, 2147483647, 'FI', 'Finland'), +('194.251.239.0', '194.251.239.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.251.240.0', '194.252.15.255', 2147483647, 2147483647, 'FI', 'Finland'), +('194.252.16.0', '194.252.16.127', 2147483647, 2147483647, 'AX', 'Aland Islands'), +('194.252.16.128', '194.252.25.255', 2147483647, 2147483647, 'FI', 'Finland'), +('194.252.26.0', '194.252.27.255', 2147483647, 2147483647, 'AX', 'Aland Islands'), +('194.252.28.0', '194.252.58.255', 2147483647, 2147483647, 'FI', 'Finland'), +('194.252.59.0', '194.252.59.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.252.60.0', '194.252.113.127', 2147483647, 2147483647, 'FI', 'Finland'), +('194.252.113.128', '194.252.113.159', 2147483647, 2147483647, 'AX', 'Aland Islands'), +('194.252.113.160', '194.252.180.191', 2147483647, 2147483647, 'FI', 'Finland'), +('194.252.180.192', '194.252.180.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.252.181.0', '194.252.255.255', 2147483647, 2147483647, 'FI', 'Finland'), +('194.253.0.0', '194.253.11.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.253.11.80', '194.253.11.87', 2147483647, 2147483647, 'AT', 'Austria'), +('194.253.11.88', '194.253.11.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.253.11.96', '194.253.11.127', 2147483647, 2147483647, 'IT', 'Italy'), +('194.253.11.128', '194.253.11.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.253.11.144', '194.253.11.159', 2147483647, 2147483647, 'ZA', 'South Africa'), +('194.253.11.160', '194.253.11.191', 2147483647, 2147483647, 'IT', 'Italy'), +('194.253.11.192', '194.253.11.223', 2147483647, 2147483647, 'EU', 'Europe'), +('194.253.11.224', '194.253.11.255', 2147483647, 2147483647, 'FR', 'France'), +('194.253.12.0', '194.253.20.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.253.21.0', '194.253.21.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.253.22.0', '194.253.22.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.253.23.0', '194.253.23.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.253.24.0', '194.253.41.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.253.42.0', '194.253.42.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('194.253.43.0', '194.253.43.159', 2147483647, 2147483647, 'ZA', 'South Africa'), +('194.253.43.160', '194.253.43.191', 2147483647, 2147483647, 'DE', 'Germany'), +('194.253.43.192', '194.253.43.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.253.44.0', '194.253.44.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.253.45.0', '194.253.45.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.253.46.0', '194.253.47.255', 2147483647, 2147483647, 'FR', 'France'), +('194.253.48.0', '194.253.48.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.253.49.0', '194.253.49.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.253.50.0', '194.253.50.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.253.51.0', '194.253.51.255', 2147483647, 2147483647, 'FR', 'France'), +('194.253.52.0', '194.253.52.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.253.53.0', '194.253.53.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.253.54.0', '194.253.55.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.253.56.0', '194.253.57.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.253.58.0', '194.253.59.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.253.60.0', '194.253.61.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.253.62.0', '194.253.62.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.253.62.64', '194.253.62.79', 2147483647, 2147483647, 'FR', 'France'), +('194.253.62.80', '194.253.62.95', 2147483647, 2147483647, 'IT', 'Italy'), +('194.253.62.96', '194.253.62.127', 2147483647, 2147483647, 'FR', 'France'), +('194.253.62.128', '194.253.62.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.253.63.0', '194.253.63.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.253.64.0', '194.253.65.255', 2147483647, 2147483647, 'ES', 'Spain'), +('194.253.66.0', '194.253.67.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.253.68.0', '194.253.70.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.253.71.0', '194.253.71.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.253.72.0', '194.253.79.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.253.80.0', '194.253.80.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.253.81.0', '194.253.81.255', 2147483647, 2147483647, 'NO', 'Norway'), +('194.253.82.0', '194.253.82.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('194.253.83.0', '194.253.85.255', 2147483647, 2147483647, 'IT', 'Italy'), +('194.253.86.0', '194.253.87.255', 2147483647, 2147483647, 'IL', 'Israel'), +('194.253.88.0', '194.253.88.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.253.89.0', '194.253.89.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.253.90.0', '194.253.91.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.253.92.0', '194.253.92.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.253.93.0', '194.253.93.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.253.94.0', '194.253.94.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.253.95.0', '194.253.95.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.253.96.0', '194.253.96.71', 2147483647, 2147483647, 'DE', 'Germany'), +('194.253.96.72', '194.253.96.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.253.96.96', '194.253.96.127', 2147483647, 2147483647, 'ES', 'Spain'), +('194.253.96.128', '194.253.96.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.253.97.0', '194.253.119.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.253.120.0', '194.253.121.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.253.122.0', '194.253.122.255', 2147483647, 2147483647, 'NO', 'Norway'), +('194.253.123.0', '194.253.123.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.253.124.0', '194.253.124.255', 2147483647, 2147483647, 'FR', 'France'), +('194.253.125.0', '194.253.125.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.253.126.0', '194.253.127.255', 2147483647, 2147483647, 'FR', 'France'), +('194.253.128.0', '194.253.129.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.253.130.0', '194.253.130.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.253.131.0', '194.253.131.255', 2147483647, 2147483647, 'DE', 'Germany'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('194.253.132.0', '194.253.132.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.253.133.0', '194.253.133.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.253.134.0', '194.253.134.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.253.135.0', '194.253.135.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.253.136.0', '194.253.141.255', 2147483647, 2147483647, 'IT', 'Italy'), +('194.253.142.0', '194.253.142.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.253.143.0', '194.253.143.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.253.144.0', '194.253.145.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.253.146.0', '194.253.146.63', 2147483647, 2147483647, 'FR', 'France'), +('194.253.146.64', '194.253.146.95', 2147483647, 2147483647, 'IT', 'Italy'), +('194.253.146.96', '194.253.146.111', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.253.146.112', '194.253.146.127', 2147483647, 2147483647, 'FR', 'France'), +('194.253.146.128', '194.253.146.159', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.253.146.160', '194.253.146.191', 2147483647, 2147483647, 'ZA', 'South Africa'), +('194.253.146.192', '194.253.146.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.253.147.0', '194.253.147.159', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.253.147.160', '194.253.147.191', 2147483647, 2147483647, 'DE', 'Germany'), +('194.253.147.192', '194.253.147.255', 2147483647, 2147483647, 'IT', 'Italy'), +('194.253.148.0', '194.253.149.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.253.150.0', '194.253.150.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.253.151.0', '194.253.157.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.253.158.0', '194.253.158.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('194.253.159.0', '194.253.159.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.253.160.0', '194.253.166.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.253.167.0', '194.253.167.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.253.168.0', '194.253.168.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.253.169.0', '194.253.169.127', 2147483647, 2147483647, 'ZA', 'South Africa'), +('194.253.169.128', '194.253.169.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.253.169.144', '194.253.169.159', 2147483647, 2147483647, 'IE', 'Ireland'), +('194.253.169.160', '194.253.169.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.253.169.192', '194.253.169.207', 2147483647, 2147483647, 'ZA', 'South Africa'), +('194.253.169.208', '194.253.169.215', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.253.169.216', '194.253.169.223', 2147483647, 2147483647, 'ZA', 'South Africa'), +('194.253.169.224', '194.253.169.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.253.170.0', '194.253.174.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('194.253.175.0', '194.253.175.255', 2147483647, 2147483647, 'FR', 'France'), +('194.253.176.0', '194.253.176.255', 2147483647, 2147483647, 'ES', 'Spain'), +('194.253.177.0', '194.253.177.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.253.178.0', '194.253.178.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('194.253.179.0', '194.253.179.255', 2147483647, 2147483647, 'RO', 'Romania'), +('194.253.180.0', '194.253.180.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.253.181.0', '194.253.183.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.253.184.0', '194.253.184.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.253.185.0', '194.253.185.255', 2147483647, 2147483647, 'AT', 'Austria'), +('194.253.186.0', '194.253.186.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.253.187.0', '194.253.187.255', 2147483647, 2147483647, 'FR', 'France'), +('194.253.188.0', '194.253.188.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.253.189.0', '194.253.189.255', 2147483647, 2147483647, 'ES', 'Spain'), +('194.253.190.0', '194.253.190.255', 2147483647, 2147483647, 'IT', 'Italy'), +('194.253.191.0', '194.253.191.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.253.192.0', '194.253.223.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.253.224.0', '194.253.248.71', 2147483647, 2147483647, 'FR', 'France'), +('194.253.248.72', '194.253.248.79', 2147483647, 2147483647, 'IT', 'Italy'), +('194.253.248.80', '194.253.248.95', 2147483647, 2147483647, 'IE', 'Ireland'), +('194.253.248.96', '194.253.248.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.253.248.112', '194.253.248.127', 2147483647, 2147483647, 'BE', 'Belgium'), +('194.253.248.128', '194.253.248.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.253.248.192', '194.253.249.255', 2147483647, 2147483647, 'FR', 'France'), +('194.253.250.0', '194.253.251.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('194.253.252.0', '194.253.252.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.253.253.0', '194.253.253.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('194.253.254.0', '194.253.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('194.254.0.0', '194.254.0.255', 2147483647, 2147483647, 'PF', 'French Polynesia'), +('194.254.1.0', '194.254.255.255', 2147483647, 2147483647, 'FR', 'France'), +('194.255.0.0', '194.255.255.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.0.0.0', '195.0.127.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.0.128.0', '195.1.255.255', 2147483647, 2147483647, 'NO', 'Norway'), +('195.2.0.0', '195.2.13.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.2.14.0', '195.2.14.255', 2147483647, 2147483647, 'US', 'United States'), +('195.2.15.0', '195.2.15.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.2.16.0', '195.2.31.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.2.32.0', '195.2.39.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.2.40.0', '195.2.63.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.2.64.0', '195.2.95.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.2.96.0', '195.2.111.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('195.2.112.0', '195.2.112.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.2.113.0', '195.2.127.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('195.2.128.0', '195.2.159.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.2.160.0', '195.2.191.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.2.192.0', '195.2.195.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.2.196.0', '195.2.197.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.2.198.0', '195.2.199.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.2.200.0', '195.2.201.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.2.202.0', '195.2.203.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('195.2.204.0', '195.2.205.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.2.206.0', '195.2.207.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.2.208.0', '195.2.209.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.2.210.0', '195.2.217.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.2.218.0', '195.2.219.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.2.220.0', '195.2.221.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.2.222.0', '195.2.223.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.2.224.0', '195.2.225.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.2.226.0', '195.2.227.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('195.2.228.0', '195.2.229.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.2.230.0', '195.2.231.255', 2147483647, 2147483647, 'KZ', 'Kazakstan'), +('195.2.232.0', '195.2.233.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.2.234.0', '195.2.235.255', 2147483647, 2147483647, 'GR', 'Greece'), +('195.2.236.0', '195.2.237.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.2.238.0', '195.2.241.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.2.242.0', '195.2.243.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.2.244.0', '195.2.244.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.2.244.128', '195.2.245.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.2.246.0', '195.2.247.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.2.248.0', '195.2.249.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.2.250.0', '195.2.251.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.2.252.0', '195.2.253.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.2.254.0', '195.2.255.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.3.0.0', '195.3.63.255', 2147483647, 2147483647, 'FR', 'France'), +('195.3.64.0', '195.3.127.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.3.128.0', '195.3.135.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.3.136.0', '195.3.139.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.3.140.0', '195.3.143.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.3.144.0', '195.3.147.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('195.3.148.0', '195.3.151.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.3.152.0', '195.3.155.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.3.156.0', '195.3.159.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.3.160.0', '195.3.163.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.3.164.0', '195.3.167.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.3.168.0', '195.3.171.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('195.3.172.0', '195.3.175.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.3.176.0', '195.3.179.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.3.180.0', '195.3.183.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.3.184.0', '195.3.187.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.3.188.0', '195.3.191.255', 2147483647, 2147483647, 'PS', 'Palestinian Territory, Occupied'), +('195.3.192.0', '195.3.195.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.3.196.0', '195.3.199.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.3.200.0', '195.3.203.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.3.204.0', '195.3.207.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.3.208.0', '195.3.211.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.3.212.0', '195.3.219.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.3.220.0', '195.3.223.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.3.224.0', '195.3.227.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.3.228.0', '195.3.231.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.3.232.0', '195.3.235.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.3.236.0', '195.3.239.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.3.240.0', '195.3.243.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.3.244.0', '195.3.247.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.3.248.0', '195.3.251.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.3.252.0', '195.3.255.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.4.0.0', '195.4.7.190', 2147483647, 2147483647, 'DE', 'Germany'), +('195.4.7.191', '195.4.7.191', 2147483647, 2147483647, 'AT', 'Austria'), +('195.4.7.192', '195.4.127.103', 2147483647, 2147483647, 'DE', 'Germany'), +('195.4.127.104', '195.4.127.111', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.4.127.112', '195.4.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.5.0.0', '195.5.63.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.5.64.0', '195.5.95.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.5.96.0', '195.5.97.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.5.98.0', '195.5.99.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.5.100.0', '195.5.101.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.5.102.0', '195.5.103.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('195.5.104.0', '195.5.105.255', 2147483647, 2147483647, 'LI', 'Liechtenstein'), +('195.5.106.0', '195.5.109.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.5.110.0', '195.5.111.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.5.112.0', '195.5.113.255', 2147483647, 2147483647, 'NO', 'Norway'), +('195.5.114.0', '195.5.115.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.5.116.0', '195.5.117.255', 2147483647, 2147483647, 'EE', 'Estonia'), +('195.5.118.0', '195.5.119.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.5.120.0', '195.5.121.255', 2147483647, 2147483647, 'IL', 'Israel'), +('195.5.122.0', '195.5.123.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.5.124.0', '195.5.125.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.5.126.0', '195.5.127.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.5.128.0', '195.5.159.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.5.160.0', '195.5.160.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.5.161.0', '195.5.161.255', 2147483647, 2147483647, 'MD', 'Moldova, Republic of'), +('195.5.162.0', '195.5.162.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.5.163.0', '195.5.163.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.5.164.0', '195.5.165.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('195.5.166.0', '195.5.166.255', 2147483647, 2147483647, 'NO', 'Norway'), +('195.5.167.0', '195.5.167.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.5.168.0', '195.5.168.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('195.5.169.0', '195.5.169.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.5.170.0', '195.5.170.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.5.171.0', '195.5.171.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.5.172.0', '195.5.172.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('195.5.173.0', '195.5.173.255', 2147483647, 2147483647, 'LB', 'Lebanon'), +('195.5.174.0', '195.5.174.255', 2147483647, 2147483647, 'NO', 'Norway'), +('195.5.175.0', '195.5.175.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.5.176.0', '195.5.176.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.5.177.0', '195.5.177.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('195.5.178.0', '195.5.178.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.5.179.0', '195.5.179.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.5.180.0', '195.5.180.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.5.181.0', '195.5.182.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.5.183.0', '195.5.183.255', 2147483647, 2147483647, 'NO', 'Norway'), +('195.5.184.0', '195.5.184.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.5.185.0', '195.5.185.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.5.186.0', '195.5.186.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('195.5.187.0', '195.5.187.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.5.188.0', '195.5.188.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.5.189.0', '195.5.189.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.5.190.0', '195.5.190.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.5.191.0', '195.5.191.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.5.192.0', '195.6.106.61', 2147483647, 2147483647, 'FR', 'France'), +('195.6.106.62', '195.6.106.62', 2147483647, 2147483647, 'US', 'United States'), +('195.6.106.63', '195.6.255.255', 2147483647, 2147483647, 'FR', 'France'), +('195.7.0.0', '195.7.15.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.7.16.0', '195.7.19.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.7.20.0', '195.7.31.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.7.32.0', '195.7.63.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('195.7.64.0', '195.7.95.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.7.96.0', '195.7.127.255', 2147483647, 2147483647, 'FR', 'France'), +('195.7.128.0', '195.7.159.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.7.160.0', '195.7.191.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.7.192.0', '195.7.192.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.7.192.64', '195.7.192.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.7.192.128', '195.7.192.159', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.7.192.160', '195.7.192.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.7.192.192', '195.7.192.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.7.193.0', '195.7.193.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.7.193.64', '195.7.193.223', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.7.193.224', '195.7.193.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.7.194.0', '195.7.194.15', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.7.194.16', '195.7.194.23', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.7.194.24', '195.7.194.39', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.7.194.40', '195.7.194.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.7.194.48', '195.7.194.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.7.194.64', '195.7.194.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.7.194.80', '195.7.194.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.7.194.128', '195.7.194.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.7.195.0', '195.7.195.31', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.7.195.32', '195.7.196.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.7.197.0', '195.7.197.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.7.197.128', '195.7.198.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.7.199.0', '195.7.199.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.7.199.64', '195.7.199.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.7.199.96', '195.7.199.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.7.199.128', '195.7.199.247', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.7.199.248', '195.7.199.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.7.200.0', '195.7.200.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.7.201.0', '195.7.201.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.7.202.0', '195.7.202.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.7.202.32', '195.7.202.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.7.202.64', '195.7.202.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.7.202.128', '195.7.202.191', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.7.202.192', '195.7.202.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.7.202.224', '195.7.202.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.7.203.0', '195.7.203.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.7.203.32', '195.7.203.47', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.7.203.48', '195.7.203.87', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.7.203.88', '195.7.203.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.7.203.128', '195.7.203.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.7.204.0', '195.7.204.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.7.205.0', '195.7.205.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.7.206.0', '195.7.206.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.7.207.0', '195.7.207.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.7.208.0', '195.7.208.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.7.208.128', '195.7.208.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.7.208.224', '195.7.208.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.7.209.0', '195.7.209.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.7.209.64', '195.7.209.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.7.209.128', '195.7.209.191', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.7.209.192', '195.7.209.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.7.209.224', '195.7.209.227', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.7.209.228', '195.7.209.231', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.7.209.232', '195.7.209.235', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.7.209.236', '195.7.209.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.7.209.240', '195.7.209.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.7.210.0', '195.7.211.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.7.212.0', '195.7.212.111', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.7.212.112', '195.7.212.119', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.7.212.120', '195.7.212.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.7.212.128', '195.7.212.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.7.213.0', '195.7.213.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.7.213.64', '195.7.213.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.7.213.160', '195.7.213.191', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.7.213.192', '195.7.213.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.7.213.224', '195.7.213.239', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.7.213.240', '195.7.213.247', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.7.213.248', '195.7.213.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.7.214.0', '195.7.214.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.7.215.0', '195.7.215.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.7.216.0', '195.7.216.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.7.216.80', '195.7.216.115', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.7.216.116', '195.7.216.119', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.7.216.120', '195.7.216.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.7.216.128', '195.7.216.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.7.216.160', '195.7.217.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.7.217.128', '195.7.217.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.7.217.192', '195.7.217.223', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.7.217.224', '195.7.218.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.7.219.0', '195.7.219.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.7.219.128', '195.7.219.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.7.220.0', '195.7.223.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.7.224.0', '195.7.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.8.0.0', '195.8.1.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('195.8.2.0', '195.8.7.255', 2147483647, 2147483647, 'CV', 'Cape Verde'), +('195.8.8.0', '195.8.8.255', 2147483647, 2147483647, 'ST', 'Sao Tome and Principe'), +('195.8.9.0', '195.8.10.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('195.8.11.0', '195.8.13.255', 2147483647, 2147483647, 'CV', 'Cape Verde'), +('195.8.14.0', '195.8.15.255', 2147483647, 2147483647, 'GW', 'Guinea-Bissau'), +('195.8.16.0', '195.8.17.255', 2147483647, 2147483647, 'AO', 'Angola'), +('195.8.18.0', '195.8.19.255', 2147483647, 2147483647, 'ST', 'Sao Tome and Principe'), +('195.8.20.0', '195.8.20.127', 2147483647, 2147483647, 'AO', 'Angola'), +('195.8.20.128', '195.8.20.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('195.8.21.0', '195.8.21.23', 2147483647, 2147483647, 'GH', 'Ghana'), +('195.8.21.24', '195.8.21.31', 2147483647, 2147483647, 'RO', 'Romania'), +('195.8.21.32', '195.8.21.47', 2147483647, 2147483647, 'NI', 'Nicaragua'), +('195.8.21.48', '195.8.21.95', 2147483647, 2147483647, 'AO', 'Angola'), +('195.8.21.96', '195.8.21.191', 2147483647, 2147483647, 'PT', 'Portugal'), +('195.8.21.192', '195.8.21.255', 2147483647, 2147483647, 'AN', 'Netherlands Antilles'), +('195.8.22.0', '195.8.22.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('195.8.23.0', '195.8.23.255', 2147483647, 2147483647, 'AO', 'Angola'), +('195.8.24.0', '195.8.24.255', 2147483647, 2147483647, 'GH', 'Ghana'), +('195.8.25.0', '195.8.25.255', 2147483647, 2147483647, 'CV', 'Cape Verde'), +('195.8.26.0', '195.8.26.255', 2147483647, 2147483647, 'GH', 'Ghana'), +('195.8.27.0', '195.8.27.255', 2147483647, 2147483647, 'CV', 'Cape Verde'), +('195.8.28.0', '195.8.28.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('195.8.29.0', '195.8.29.255', 2147483647, 2147483647, 'GH', 'Ghana'), +('195.8.30.0', '195.8.30.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('195.8.31.0', '195.8.31.135', 2147483647, 2147483647, 'ST', 'Sao Tome and Principe'), +('195.8.31.136', '195.8.31.191', 2147483647, 2147483647, 'PT', 'Portugal'), +('195.8.31.192', '195.8.31.207', 2147483647, 2147483647, 'ST', 'Sao Tome and Principe'), +('195.8.31.208', '195.8.31.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('195.8.32.0', '195.8.39.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.8.40.0', '195.8.43.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.8.44.0', '195.8.45.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.8.46.0', '195.8.49.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.8.50.0', '195.8.51.255', 2147483647, 2147483647, 'AM', 'Armenia'), +('195.8.52.0', '195.8.53.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.8.54.0', '195.8.55.255', 2147483647, 2147483647, 'FI', 'Finland'), +('195.8.56.0', '195.8.57.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.8.58.0', '195.8.59.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('195.8.60.0', '195.8.61.255', 2147483647, 2147483647, 'FI', 'Finland'), +('195.8.62.0', '195.8.63.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.8.64.0', '195.8.77.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.8.78.0', '195.8.78.7', 2147483647, 2147483647, 'FR', 'France'), +('195.8.78.8', '195.8.78.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.8.78.16', '195.8.78.23', 2147483647, 2147483647, 'IT', 'Italy'), +('195.8.78.24', '195.8.78.31', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.8.78.32', '195.8.78.39', 2147483647, 2147483647, 'ES', 'Spain'), +('195.8.78.40', '195.8.78.47', 2147483647, 2147483647, 'PT', 'Portugal'), +('195.8.78.48', '195.8.96.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.8.97.0', '195.8.97.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.8.98.0', '195.8.98.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.8.99.0', '195.8.99.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.8.100.0', '195.8.100.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.8.101.0', '195.8.101.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.8.102.0', '195.8.102.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.8.103.0', '195.8.103.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.8.104.0', '195.8.104.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.8.105.0', '195.8.105.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.8.106.0', '195.8.107.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.8.108.0', '195.8.108.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.8.109.0', '195.8.109.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('195.8.110.0', '195.8.110.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.8.111.0', '195.8.111.255', 2147483647, 2147483647, 'FR', 'France'), +('195.8.112.0', '195.8.112.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.8.113.0', '195.8.113.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.8.114.0', '195.8.114.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.8.115.0', '195.8.115.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('195.8.116.0', '195.8.118.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.8.119.0', '195.8.120.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.8.121.0', '195.8.123.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.8.125.0', '195.8.125.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.8.126.0', '195.8.126.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.8.127.0', '195.8.127.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.8.128.0', '195.8.159.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.8.160.0', '195.8.193.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.8.194.0', '195.8.195.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.8.196.0', '195.8.197.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.8.198.0', '195.8.199.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.8.200.0', '195.8.201.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.8.202.0', '195.8.203.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.8.204.0', '195.8.205.255', 2147483647, 2147483647, 'EE', 'Estonia'), +('195.8.206.0', '195.8.207.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.8.208.0', '195.8.209.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.8.210.0', '195.8.211.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.8.212.0', '195.8.213.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.8.214.0', '195.8.215.255', 2147483647, 2147483647, 'FR', 'France'), +('195.8.216.0', '195.8.217.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.8.220.0', '195.8.221.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.8.222.0', '195.8.223.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('195.8.224.0', '195.8.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.9.0.0', '195.9.54.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.9.55.0', '195.9.55.255', 2147483647, 2147483647, 'KZ', 'Kazakstan'), +('195.9.56.0', '195.9.86.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.9.87.0', '195.9.87.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.9.88.0', '195.9.123.127', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.9.123.128', '195.9.123.191', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.9.123.192', '195.9.246.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.9.247.0', '195.9.247.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.9.248.0', '195.9.255.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.10.0.0', '195.10.1.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.10.2.0', '195.10.3.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.10.3.128', '195.10.3.143', 2147483647, 2147483647, 'IT', 'Italy'), +('195.10.3.144', '195.10.3.151', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.10.3.152', '195.10.3.159', 2147483647, 2147483647, 'EU', 'Europe'), +('195.10.3.160', '195.10.3.167', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.10.3.168', '195.10.3.175', 2147483647, 2147483647, 'EU', 'Europe'), +('195.10.3.176', '195.10.3.183', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.10.3.184', '195.10.3.207', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.10.3.208', '195.10.3.223', 2147483647, 2147483647, 'EU', 'Europe'), +('195.10.3.224', '195.10.3.239', 2147483647, 2147483647, 'CY', 'Cyprus'), +('195.10.3.240', '195.10.3.247', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.10.3.248', '195.10.3.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.10.4.0', '195.10.4.63', 2147483647, 2147483647, 'IT', 'Italy'), +('195.10.4.64', '195.10.4.71', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.10.4.72', '195.10.4.79', 2147483647, 2147483647, 'IE', 'Ireland'), +('195.10.4.80', '195.10.4.95', 2147483647, 2147483647, 'DE', 'Germany'), +('195.10.4.96', '195.10.4.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.10.4.128', '195.10.4.135', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.10.4.136', '195.10.4.151', 2147483647, 2147483647, 'EU', 'Europe'), +('195.10.4.152', '195.10.4.159', 2147483647, 2147483647, 'IT', 'Italy'), +('195.10.4.160', '195.10.4.167', 2147483647, 2147483647, 'EU', 'Europe'), +('195.10.4.168', '195.10.4.175', 2147483647, 2147483647, 'IT', 'Italy'), +('195.10.4.176', '195.10.4.191', 2147483647, 2147483647, 'EU', 'Europe'), +('195.10.4.192', '195.10.4.231', 2147483647, 2147483647, 'IT', 'Italy'), +('195.10.4.232', '195.10.4.247', 2147483647, 2147483647, 'EU', 'Europe'), +('195.10.4.248', '195.10.4.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.10.5.0', '195.10.5.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.10.5.64', '195.10.5.71', 2147483647, 2147483647, 'DE', 'Germany'), +('195.10.5.72', '195.10.5.79', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.10.5.80', '195.10.5.95', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.10.5.96', '195.10.5.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.10.5.128', '195.10.5.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.10.6.0', '195.10.6.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.10.7.0', '195.10.7.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.10.7.80', '195.10.7.135', 2147483647, 2147483647, 'FR', 'France'), +('195.10.7.136', '195.10.7.159', 2147483647, 2147483647, 'EU', 'Europe'), +('195.10.7.160', '195.10.7.191', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.10.7.192', '195.10.8.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.10.8.128', '195.10.8.143', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.10.8.144', '195.10.8.151', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.10.8.152', '195.10.8.159', 2147483647, 2147483647, 'FR', 'France'), +('195.10.8.160', '195.10.9.31', 2147483647, 2147483647, 'EU', 'Europe'), +('195.10.9.32', '195.10.9.39', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.10.9.40', '195.10.9.47', 2147483647, 2147483647, 'EU', 'Europe'), +('195.10.9.48', '195.10.9.63', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.10.9.64', '195.10.9.95', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.10.9.96', '195.10.9.99', 2147483647, 2147483647, 'EU', 'Europe'), +('195.10.9.100', '195.10.9.103', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.10.9.104', '195.10.9.111', 2147483647, 2147483647, 'EU', 'Europe'), +('195.10.9.112', '195.10.9.119', 2147483647, 2147483647, 'ES', 'Spain'), +('195.10.9.120', '195.10.9.127', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.10.9.128', '195.10.9.159', 2147483647, 2147483647, 'EU', 'Europe'), +('195.10.9.160', '195.10.9.167', 2147483647, 2147483647, 'DE', 'Germany'), +('195.10.9.168', '195.10.9.175', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.10.9.176', '195.10.9.223', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.10.9.224', '195.10.9.231', 2147483647, 2147483647, 'FR', 'France'), +('195.10.9.232', '195.10.9.239', 2147483647, 2147483647, 'IT', 'Italy'), +('195.10.9.240', '195.10.9.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.10.10.0', '195.10.10.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.10.11.0', '195.10.11.255', 2147483647, 2147483647, 'IR', 'Iran, Islamic Republic of'), +('195.10.12.0', '195.10.12.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.10.13.0', '195.10.13.15', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.10.13.16', '195.10.13.63', 2147483647, 2147483647, 'EU', 'Europe'), +('195.10.13.64', '195.10.13.71', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.10.13.72', '195.10.13.75', 2147483647, 2147483647, 'EU', 'Europe'), +('195.10.13.76', '195.10.13.111', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.10.13.112', '195.10.13.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.10.13.128', '195.10.13.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.10.13.192', '195.10.13.207', 2147483647, 2147483647, 'EU', 'Europe'), +('195.10.13.208', '195.10.13.223', 2147483647, 2147483647, 'DE', 'Germany'), +('195.10.13.224', '195.10.13.231', 2147483647, 2147483647, 'EU', 'Europe'), +('195.10.13.232', '195.10.13.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.10.13.240', '195.10.14.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.10.14.128', '195.10.14.143', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.10.14.144', '195.10.14.151', 2147483647, 2147483647, 'EU', 'Europe'), +('195.10.14.152', '195.10.14.159', 2147483647, 2147483647, 'FR', 'France'), +('195.10.14.160', '195.10.14.167', 2147483647, 2147483647, 'DE', 'Germany'), +('195.10.14.168', '195.10.14.175', 2147483647, 2147483647, 'EU', 'Europe'), +('195.10.14.176', '195.10.14.191', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.10.14.192', '195.10.14.223', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.10.14.224', '195.10.14.239', 2147483647, 2147483647, 'EU', 'Europe'), +('195.10.14.240', '195.10.14.247', 2147483647, 2147483647, 'ES', 'Spain'), +('195.10.14.248', '195.10.14.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.10.15.0', '195.10.15.31', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.10.15.32', '195.10.15.63', 2147483647, 2147483647, 'DE', 'Germany'), +('195.10.15.64', '195.10.15.127', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.10.15.128', '195.10.15.131', 2147483647, 2147483647, 'EU', 'Europe'), +('195.10.15.132', '195.10.15.135', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.10.15.136', '195.10.15.143', 2147483647, 2147483647, 'EU', 'Europe'), +('195.10.15.144', '195.10.15.159', 2147483647, 2147483647, 'FR', 'France'), +('195.10.15.160', '195.10.15.175', 2147483647, 2147483647, 'IR', 'Iran, Islamic Republic of'), +('195.10.15.176', '195.10.15.191', 2147483647, 2147483647, 'EU', 'Europe'), +('195.10.15.192', '195.10.15.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.10.16.0', '195.10.17.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.10.17.64', '195.10.17.79', 2147483647, 2147483647, 'FR', 'France'), +('195.10.17.80', '195.10.17.95', 2147483647, 2147483647, 'DE', 'Germany'), +('195.10.17.96', '195.10.17.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.10.17.128', '195.10.17.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.10.17.176', '195.10.18.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.10.18.128', '195.10.18.191', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.10.18.192', '195.10.18.215', 2147483647, 2147483647, 'DE', 'Germany'), +('195.10.18.216', '195.10.18.223', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.10.18.224', '195.10.19.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.10.20.0', '195.10.20.31', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.10.20.32', '195.10.20.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.10.21.0', '195.10.21.19', 2147483647, 2147483647, 'ES', 'Spain'), +('195.10.21.20', '195.10.21.23', 2147483647, 2147483647, 'EU', 'Europe'), +('195.10.21.24', '195.10.21.39', 2147483647, 2147483647, 'IT', 'Italy'), +('195.10.21.40', '195.10.21.47', 2147483647, 2147483647, 'ES', 'Spain'), +('195.10.21.48', '195.10.21.63', 2147483647, 2147483647, 'EU', 'Europe'), +('195.10.21.64', '195.10.21.127', 2147483647, 2147483647, 'DE', 'Germany'), +('195.10.21.128', '195.10.21.223', 2147483647, 2147483647, 'ES', 'Spain'), +('195.10.21.224', '195.10.21.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.10.22.0', '195.10.23.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.10.24.0', '195.10.24.15', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.10.24.16', '195.10.24.47', 2147483647, 2147483647, 'DE', 'Germany'), +('195.10.24.48', '195.10.24.63', 2147483647, 2147483647, 'EU', 'Europe'), +('195.10.24.64', '195.10.24.95', 2147483647, 2147483647, 'DE', 'Germany'), +('195.10.24.96', '195.10.24.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.10.25.0', '195.10.25.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.10.26.0', '195.10.26.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.10.27.0', '195.10.27.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.10.28.0', '195.10.28.255', 2147483647, 2147483647, 'FR', 'France'), +('195.10.29.0', '195.10.29.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.10.30.0', '195.10.30.255', 2147483647, 2147483647, 'FR', 'France'), +('195.10.31.0', '195.10.33.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.10.34.0', '195.10.34.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.10.34.128', '195.10.34.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.10.35.0', '195.10.35.7', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.10.35.8', '195.10.35.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.10.36.0', '195.10.36.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.10.37.0', '195.10.37.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.10.38.0', '195.10.38.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.10.39.0', '195.10.39.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.10.40.0', '195.10.40.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.10.41.0', '195.10.41.39', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.10.41.40', '195.10.41.47', 2147483647, 2147483647, 'EU', 'Europe'), +('195.10.41.48', '195.10.41.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.10.41.64', '195.10.41.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.10.42.0', '195.10.42.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.10.43.0', '195.10.43.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.10.44.0', '195.10.44.31', 2147483647, 2147483647, 'GI', 'Gibraltar'), +('195.10.44.32', '195.10.44.63', 2147483647, 2147483647, 'EU', 'Europe'), +('195.10.44.64', '195.10.44.71', 2147483647, 2147483647, 'CY', 'Cyprus'), +('195.10.44.72', '195.10.44.79', 2147483647, 2147483647, 'EU', 'Europe'), +('195.10.44.80', '195.10.44.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.10.44.96', '195.10.44.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.10.45.0', '195.10.45.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.10.46.0', '195.10.46.127', 2147483647, 2147483647, 'GI', 'Gibraltar'), +('195.10.46.128', '195.10.46.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.10.47.0', '195.10.49.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.10.50.0', '195.10.51.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.10.52.0', '195.10.52.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.10.53.0', '195.10.55.255', 2147483647, 2147483647, 'FR', 'France'), +('195.10.56.0', '195.10.56.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.10.57.0', '195.10.57.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.10.58.0', '195.10.58.31', 2147483647, 2147483647, 'US', 'United States'), +('195.10.58.32', '195.10.58.183', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.10.58.184', '195.10.58.191', 2147483647, 2147483647, 'EU', 'Europe'), +('195.10.58.192', '195.10.58.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.10.59.0', '195.10.59.255', 2147483647, 2147483647, 'FR', 'France'), +('195.10.60.0', '195.10.60.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.10.61.0', '195.10.61.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.10.61.128', '195.10.61.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.10.62.0', '195.10.62.255', 2147483647, 2147483647, 'FR', 'France'), +('195.10.63.0', '195.10.63.15', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.10.63.16', '195.10.63.23', 2147483647, 2147483647, 'CY', 'Cyprus'), +('195.10.63.24', '195.10.63.31', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.10.63.32', '195.10.63.63', 2147483647, 2147483647, 'IT', 'Italy'), +('195.10.63.64', '195.10.63.95', 2147483647, 2147483647, 'DE', 'Germany'), +('195.10.63.96', '195.10.63.127', 2147483647, 2147483647, 'FR', 'France'), +('195.10.63.128', '195.10.63.191', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.10.63.192', '195.10.63.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.10.64.0', '195.10.95.255', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('195.10.96.0', '195.10.109.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.10.109.192', '195.10.109.255', 2147483647, 2147483647, 'GH', 'Ghana'), +('195.10.110.0', '195.10.122.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.10.123.0', '195.10.123.39', 2147483647, 2147483647, 'IM', 'Isle of Man'), +('195.10.123.40', '195.10.127.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.10.128.0', '195.10.191.255', 2147483647, 2147483647, 'FI', 'Finland'), +('195.10.192.0', '195.10.192.255', 2147483647, 2147483647, 'MT', 'Malta'), +('195.10.193.0', '195.10.193.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('195.10.194.0', '195.10.194.255', 2147483647, 2147483647, 'IL', 'Israel'), +('195.10.195.0', '195.10.195.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.10.196.0', '195.10.196.255', 2147483647, 2147483647, 'NO', 'Norway'), +('195.10.197.0', '195.10.197.255', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('195.10.198.0', '195.10.198.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.10.199.0', '195.10.200.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.10.201.0', '195.10.201.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.10.202.0', '195.10.202.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.10.203.0', '195.10.203.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.10.204.0', '195.10.204.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('195.10.205.0', '195.10.205.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.10.206.0', '195.10.206.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.10.207.0', '195.10.207.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.10.208.0', '195.10.208.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.10.209.0', '195.10.209.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.10.210.0', '195.10.210.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.10.211.0', '195.10.211.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.10.212.0', '195.10.212.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.10.213.0', '195.10.213.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.10.214.0', '195.10.214.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.10.215.0', '195.10.215.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.10.216.0', '195.10.216.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('195.10.217.0', '195.10.217.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.10.218.0', '195.10.218.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.10.219.0', '195.10.219.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.10.220.0', '195.10.220.255', 2147483647, 2147483647, 'IL', 'Israel'), +('195.10.221.0', '195.10.221.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.10.222.0', '195.10.222.255', 2147483647, 2147483647, 'IL', 'Israel'), +('195.10.223.0', '195.11.223.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.11.224.0', '195.11.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.12.0.0', '195.12.31.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.12.32.0', '195.12.35.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.12.36.0', '195.12.39.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.12.40.0', '195.12.47.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.12.48.0', '195.12.51.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.12.52.0', '195.12.55.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.12.56.0', '195.12.59.255', 2147483647, 2147483647, 'FI', 'Finland'), +('195.12.60.0', '195.12.63.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.12.64.0', '195.12.95.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.12.96.0', '195.12.127.255', 2147483647, 2147483647, 'KZ', 'Kazakstan'), +('195.12.128.0', '195.12.159.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('195.12.160.0', '195.12.191.255', 2147483647, 2147483647, 'LT', 'Lithuania'), +('195.12.192.0', '195.12.223.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.12.224.0', '195.12.224.7', 2147483647, 2147483647, 'EU', 'Europe'), +('195.12.224.8', '195.12.224.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.12.224.16', '195.12.224.23', 2147483647, 2147483647, 'EU', 'Europe'), +('195.12.224.24', '195.12.224.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.12.224.32', '195.12.224.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.12.224.128', '195.12.224.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.12.224.224', '195.12.225.31', 2147483647, 2147483647, 'EU', 'Europe'), +('195.12.225.32', '195.12.225.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.12.225.48', '195.12.225.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.12.225.128', '195.12.225.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.12.225.192', '195.12.227.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.12.228.0', '195.12.228.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.12.228.48', '195.12.228.111', 2147483647, 2147483647, 'EU', 'Europe'), +('195.12.228.112', '195.12.228.119', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.12.228.120', '195.12.228.127', 2147483647, 2147483647, 'US', 'United States'), +('195.12.228.128', '195.12.228.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.12.229.0', '195.12.229.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.12.229.16', '195.12.229.63', 2147483647, 2147483647, 'EU', 'Europe'), +('195.12.229.64', '195.12.229.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.12.229.128', '195.12.230.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.12.230.128', '195.12.230.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.12.230.192', '195.12.231.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.12.231.128', '195.12.231.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.12.232.0', '195.12.232.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.12.232.128', '195.12.232.255', 2147483647, 2147483647, 'FR', 'France'), +('195.12.233.0', '195.12.255.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.13.0.0', '195.13.31.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.13.32.0', '195.13.37.127', 2147483647, 2147483647, 'FR', 'France'), +('195.13.37.128', '195.13.39.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.13.40.0', '195.13.45.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.13.46.0', '195.13.46.127', 2147483647, 2147483647, 'PL', 'Poland'), +('195.13.46.128', '195.13.46.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.13.47.0', '195.13.47.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.13.48.0', '195.13.49.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.13.50.0', '195.13.51.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.13.52.0', '195.13.53.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.13.54.0', '195.13.55.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.13.56.0', '195.13.57.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.13.58.0', '195.13.59.255', 2147483647, 2147483647, 'FR', 'France'), +('195.13.60.0', '195.13.63.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.13.64.0', '195.13.68.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.13.68.160', '195.13.68.175', 2147483647, 2147483647, 'IL', 'Israel'), +('195.13.68.176', '195.13.127.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.13.128.0', '195.13.255.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('195.14.0.0', '195.14.0.255', 2147483647, 2147483647, 'FR', 'France'), +('195.14.1.0', '195.14.1.255', 2147483647, 2147483647, 'NL', 'Netherlands'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('195.14.2.0', '195.14.2.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.14.3.0', '195.14.4.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.14.5.0', '195.14.5.255', 2147483647, 2147483647, 'FR', 'France'), +('195.14.6.0', '195.14.7.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.14.8.0', '195.14.8.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.14.9.0', '195.14.9.255', 2147483647, 2147483647, 'GR', 'Greece'), +('195.14.10.0', '195.14.10.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.14.11.0', '195.14.11.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.14.12.0', '195.14.12.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.14.13.0', '195.14.13.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.14.14.0', '195.14.14.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.14.15.0', '195.14.15.255', 2147483647, 2147483647, 'FI', 'Finland'), +('195.14.16.0', '195.14.16.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.14.17.0', '195.14.17.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.14.18.0', '195.14.18.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.14.20.0', '195.14.21.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.14.22.0', '195.14.22.255', 2147483647, 2147483647, 'FR', 'France'), +('195.14.23.0', '195.14.23.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.14.24.0', '195.14.24.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.14.25.0', '195.14.25.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.14.26.0', '195.14.26.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.14.27.0', '195.14.27.255', 2147483647, 2147483647, 'FR', 'France'), +('195.14.28.0', '195.14.28.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.14.29.0', '195.14.29.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.14.30.0', '195.14.30.255', 2147483647, 2147483647, 'FR', 'France'), +('195.14.31.0', '195.14.31.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.14.32.0', '195.14.63.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.14.64.0', '195.14.95.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.14.96.0', '195.14.127.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.14.128.0', '195.14.159.255', 2147483647, 2147483647, 'CY', 'Cyprus'), +('195.14.160.0', '195.14.191.255', 2147483647, 2147483647, 'LT', 'Lithuania'), +('195.14.192.0', '195.14.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.15.0.0', '195.15.24.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.15.25.0', '195.15.25.255', 2147483647, 2147483647, 'FR', 'France'), +('195.15.26.0', '195.15.28.59', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.15.28.60', '195.15.28.63', 2147483647, 2147483647, 'FR', 'France'), +('195.15.28.64', '195.15.49.31', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.15.49.32', '195.15.49.39', 2147483647, 2147483647, 'FR', 'France'), +('195.15.49.40', '195.15.49.175', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.15.49.176', '195.15.49.183', 2147483647, 2147483647, 'FR', 'France'), +('195.15.49.184', '195.15.51.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.15.52.0', '195.15.52.15', 2147483647, 2147483647, 'FR', 'France'), +('195.15.52.16', '195.15.57.27', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.15.57.28', '195.15.57.31', 2147483647, 2147483647, 'FR', 'France'), +('195.15.57.32', '195.15.58.239', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.15.58.240', '195.15.58.247', 2147483647, 2147483647, 'FR', 'France'), +('195.15.58.248', '195.15.59.143', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.15.59.144', '195.15.59.159', 2147483647, 2147483647, 'FR', 'France'), +('195.15.59.160', '195.15.64.55', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.15.64.56', '195.15.64.63', 2147483647, 2147483647, 'FR', 'France'), +('195.15.64.64', '195.15.109.15', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.15.109.16', '195.15.109.31', 2147483647, 2147483647, 'FR', 'France'), +('195.15.109.32', '195.15.127.207', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.15.127.208', '195.15.127.223', 2147483647, 2147483647, 'FR', 'France'), +('195.15.127.224', '195.15.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.16.0.0', '195.16.31.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.16.32.0', '195.16.63.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.16.64.0', '195.16.67.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.16.68.0', '195.16.71.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.16.72.0', '195.16.75.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.16.76.0', '195.16.79.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.16.80.0', '195.16.83.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.16.84.0', '195.16.87.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.16.88.0', '195.16.91.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.16.92.0', '195.16.110.127', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.16.110.128', '195.16.110.191', 2147483647, 2147483647, 'KZ', 'Kazakstan'), +('195.16.110.192', '195.16.127.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.16.128.0', '195.16.159.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.16.160.0', '195.16.175.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.16.175.128', '195.16.175.143', 2147483647, 2147483647, 'FR', 'France'), +('195.16.175.144', '195.16.175.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.16.175.160', '195.16.175.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.16.176.0', '195.16.177.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.16.177.128', '195.16.177.143', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.16.177.144', '195.16.177.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.16.177.176', '195.16.177.183', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.16.177.184', '195.16.177.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.16.177.224', '195.16.177.231', 2147483647, 2147483647, 'UZ', 'Uzbekistan'), +('195.16.177.232', '195.16.181.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.16.182.0', '195.16.183.255', 2147483647, 2147483647, 'FR', 'France'), +('195.16.184.0', '195.16.184.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.16.185.0', '195.16.185.31', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.16.185.32', '195.16.185.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.16.185.192', '195.16.185.223', 2147483647, 2147483647, 'FR', 'France'), +('195.16.185.224', '195.16.185.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.16.186.0', '195.16.186.127', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.16.186.128', '195.16.186.135', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.16.186.136', '195.16.186.143', 2147483647, 2147483647, 'IE', 'Ireland'), +('195.16.186.144', '195.16.186.151', 2147483647, 2147483647, 'DE', 'Germany'), +('195.16.186.152', '195.16.186.231', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.16.186.232', '195.16.186.239', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.16.186.240', '195.16.186.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.16.187.0', '195.16.187.63', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.16.187.64', '195.16.187.95', 2147483647, 2147483647, 'FR', 'France'), +('195.16.187.96', '195.16.187.127', 2147483647, 2147483647, 'DE', 'Germany'), +('195.16.187.128', '195.16.187.159', 2147483647, 2147483647, 'IT', 'Italy'), +('195.16.187.160', '195.16.187.191', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.16.187.192', '195.16.187.223', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.16.187.224', '195.16.187.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.16.188.0', '195.16.188.127', 2147483647, 2147483647, 'FR', 'France'), +('195.16.188.128', '195.16.189.127', 2147483647, 2147483647, 'DE', 'Germany'), +('195.16.189.128', '195.16.189.255', 2147483647, 2147483647, 'FR', 'France'), +('195.16.190.0', '195.16.190.127', 2147483647, 2147483647, 'ES', 'Spain'), +('195.16.190.128', '195.16.190.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.16.191.0', '195.16.191.127', 2147483647, 2147483647, 'NO', 'Norway'), +('195.16.191.128', '195.16.191.191', 2147483647, 2147483647, 'IT', 'Italy'), +('195.16.191.192', '195.16.191.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.16.192.0', '195.16.223.255', 2147483647, 2147483647, 'FI', 'Finland'), +('195.16.224.0', '195.16.255.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.17.0.0', '195.17.128.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.17.129.0', '195.17.132.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('195.17.133.0', '195.17.133.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.17.134.0', '195.17.139.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('195.17.140.0', '195.17.140.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.17.141.0', '195.17.141.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('195.17.142.0', '195.17.159.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.17.160.0', '195.17.160.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.17.161.0', '195.17.161.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.17.162.0', '195.17.162.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.17.163.0', '195.17.163.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.17.164.0', '195.17.166.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.17.167.0', '195.17.168.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.17.169.0', '195.17.169.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.17.170.0', '195.17.171.7', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.17.171.8', '195.17.171.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.17.171.16', '195.17.171.127', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.17.171.128', '195.17.171.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.17.172.0', '195.17.241.191', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.17.241.192', '195.17.241.207', 2147483647, 2147483647, 'DE', 'Germany'), +('195.17.241.208', '195.17.245.31', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.17.245.32', '195.17.245.39', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.17.245.40', '195.17.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.18.0.0', '195.18.31.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.18.32.0', '195.18.63.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.18.64.0', '195.18.127.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.18.128.0', '195.18.255.255', 2147483647, 2147483647, 'NO', 'Norway'), +('195.19.0.0', '195.19.255.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.20.0.0', '195.20.3.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.20.4.0', '195.20.7.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.20.8.0', '195.20.11.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.20.12.0', '195.20.15.255', 2147483647, 2147483647, 'FR', 'France'), +('195.20.16.0', '195.20.19.255', 2147483647, 2147483647, 'FI', 'Finland'), +('195.20.20.0', '195.20.27.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('195.20.28.0', '195.20.31.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.20.32.0', '195.20.63.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.20.64.0', '195.20.95.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.20.96.0', '195.20.97.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.20.98.0', '195.20.99.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.20.102.0', '195.20.103.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.20.104.0', '195.20.105.255', 2147483647, 2147483647, 'FR', 'France'), +('195.20.106.0', '195.20.107.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.20.108.0', '195.20.109.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.20.110.0', '195.20.111.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.20.112.0', '195.20.115.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.20.116.0', '195.20.117.255', 2147483647, 2147483647, 'FI', 'Finland'), +('195.20.118.0', '195.20.119.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.20.120.0', '195.20.121.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.20.122.0', '195.20.123.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.20.124.0', '195.20.125.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.20.126.0', '195.20.127.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('195.20.128.0', '195.20.159.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.20.160.0', '195.20.167.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('195.20.168.0', '195.20.169.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.20.170.0', '195.20.171.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('195.20.172.0', '195.20.173.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('195.20.174.0', '195.20.191.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('195.20.192.0', '195.20.193.255', 2147483647, 2147483647, 'MC', 'Monaco'), +('195.20.194.0', '195.20.197.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.20.198.0', '195.20.199.255', 2147483647, 2147483647, 'FR', 'France'), +('195.20.200.0', '195.20.201.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.20.202.0', '195.20.203.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.20.204.0', '195.20.205.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.20.206.0', '195.20.207.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.20.208.0', '195.20.209.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.20.210.0', '195.20.211.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.20.212.0', '195.20.213.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.20.214.0', '195.20.215.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.20.216.0', '195.20.217.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.20.218.0', '195.20.219.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.20.220.0', '195.20.221.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.20.222.0', '195.20.223.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.20.224.0', '195.21.1.127', 2147483647, 2147483647, 'DE', 'Germany'), +('195.21.1.128', '195.21.1.143', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.21.1.144', '195.21.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.22.0.0', '195.22.31.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('195.22.32.0', '195.22.63.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('195.22.64.0', '195.22.95.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.22.96.0', '195.22.99.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.22.100.0', '195.22.103.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.22.104.0', '195.22.111.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.22.112.0', '195.22.115.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.22.116.0', '195.22.119.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.22.120.0', '195.22.123.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.22.124.0', '195.22.127.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.22.128.0', '195.22.129.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.22.130.0', '195.22.133.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.22.134.0', '195.22.135.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.22.136.0', '195.22.137.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.22.138.0', '195.22.139.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.22.140.0', '195.22.141.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.22.142.0', '195.22.143.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.22.144.0', '195.22.145.255', 2147483647, 2147483647, 'FR', 'France'), +('195.22.146.0', '195.22.147.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('195.22.148.0', '195.22.149.255', 2147483647, 2147483647, 'IL', 'Israel'), +('195.22.150.0', '195.22.151.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.22.152.0', '195.22.153.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.22.154.0', '195.22.155.255', 2147483647, 2147483647, 'GR', 'Greece'), +('195.22.156.0', '195.22.159.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.22.160.0', '195.22.191.255', 2147483647, 2147483647, 'LT', 'Lithuania'), +('195.22.192.0', '195.22.194.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.22.195.0', '195.22.195.255', 2147483647, 2147483647, 'US', 'United States'), +('195.22.196.0', '195.22.198.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.22.199.0', '195.22.199.255', 2147483647, 2147483647, 'US', 'United States'), +('195.22.200.0', '195.22.205.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.22.206.0', '195.22.206.255', 2147483647, 2147483647, 'US', 'United States'), +('195.22.207.0', '195.22.207.135', 2147483647, 2147483647, 'IT', 'Italy'), +('195.22.207.136', '195.22.207.143', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.22.207.144', '195.22.207.159', 2147483647, 2147483647, 'GR', 'Greece'), +('195.22.207.160', '195.22.207.175', 2147483647, 2147483647, 'IT', 'Italy'), +('195.22.207.176', '195.22.207.183', 2147483647, 2147483647, 'CU', 'Cuba'), +('195.22.207.184', '195.22.207.191', 2147483647, 2147483647, 'GR', 'Greece'), +('195.22.207.192', '195.22.207.207', 2147483647, 2147483647, 'FR', 'France'), +('195.22.207.208', '195.22.208.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.22.209.0', '195.22.209.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.22.210.0', '195.22.210.255', 2147483647, 2147483647, 'FR', 'France'), +('195.22.211.0', '195.22.211.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.22.212.0', '195.22.212.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.22.213.0', '195.22.213.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.22.214.0', '195.22.214.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.22.215.0', '195.22.215.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.22.216.0', '195.22.216.255', 2147483647, 2147483647, 'US', 'United States'), +('195.22.217.0', '195.22.217.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.22.218.0', '195.22.218.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.22.219.0', '195.22.219.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('195.22.220.0', '195.22.220.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('195.22.221.0', '195.22.221.255', 2147483647, 2147483647, 'CL', 'Chile'), +('195.22.222.0', '195.22.222.255', 2147483647, 2147483647, 'US', 'United States'), +('195.22.223.0', '195.22.223.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.22.224.0', '195.22.255.255', 2147483647, 2147483647, 'MD', 'Moldova, Republic of'), +('195.23.0.0', '195.23.255.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('195.24.0.0', '195.24.31.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.24.32.0', '195.24.63.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('195.24.64.0', '195.24.71.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.24.72.0', '195.24.79.255', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('195.24.80.0', '195.24.87.255', 2147483647, 2147483647, 'DZ', 'Algeria'), +('195.24.88.0', '195.24.95.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('195.24.96.0', '195.24.127.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.24.128.0', '195.24.159.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.24.160.0', '195.24.191.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.24.192.0', '195.24.223.255', 2147483647, 2147483647, 'CM', 'Cameroon'), +('195.24.224.0', '195.24.225.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.24.226.0', '195.24.227.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.24.228.0', '195.24.229.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.24.230.0', '195.24.233.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.24.234.0', '195.24.235.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.24.236.0', '195.24.241.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.24.242.0', '195.24.243.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.24.244.0', '195.24.245.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.24.246.0', '195.24.247.255', 2147483647, 2147483647, 'FR', 'France'), +('195.24.248.0', '195.24.249.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.24.250.0', '195.24.251.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.24.252.0', '195.24.253.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.24.254.0', '195.24.255.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.25.0.0', '195.25.138.135', 2147483647, 2147483647, 'FR', 'France'), +('195.25.138.136', '195.25.138.143', 2147483647, 2147483647, 'DE', 'Germany'), +('195.25.138.144', '195.25.174.55', 2147483647, 2147483647, 'FR', 'France'), +('195.25.174.56', '195.25.174.63', 2147483647, 2147483647, 'DE', 'Germany'), +('195.25.174.64', '195.25.174.159', 2147483647, 2147483647, 'FR', 'France'), +('195.25.174.160', '195.25.174.167', 2147483647, 2147483647, 'MC', 'Monaco'), +('195.25.174.168', '195.25.255.255', 2147483647, 2147483647, 'FR', 'France'), +('195.26.0.0', '195.26.1.255', 2147483647, 2147483647, 'NO', 'Norway'), +('195.26.2.0', '195.26.3.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.26.4.0', '195.26.5.255', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('195.26.6.0', '195.26.7.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.26.8.0', '195.26.9.255', 2147483647, 2147483647, 'FR', 'France'), +('195.26.10.0', '195.26.11.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.26.12.0', '195.26.13.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.26.14.0', '195.26.15.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.26.16.0', '195.26.19.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.26.20.0', '195.26.21.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('195.26.22.0', '195.26.25.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.26.26.0', '195.26.27.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.26.28.0', '195.26.29.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.26.30.0', '195.26.31.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.26.32.0', '195.26.58.215', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.26.58.216', '195.26.58.223', 2147483647, 2147483647, 'US', 'United States'), +('195.26.58.224', '195.26.63.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.26.64.0', '195.26.67.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.26.68.0', '195.26.71.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.26.72.0', '195.26.79.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.26.80.0', '195.26.87.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.26.88.0', '195.26.91.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.26.92.0', '195.26.95.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.26.96.0', '195.26.127.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.26.128.0', '195.26.159.255', 2147483647, 2147483647, 'MK', 'Macedonia'), +('195.26.160.0', '195.26.191.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.26.192.0', '195.26.223.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.26.224.0', '195.26.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.27.0.0', '195.27.0.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('195.27.1.0', '195.27.1.135', 2147483647, 2147483647, 'EU', 'Europe'), +('195.27.1.136', '195.27.1.139', 2147483647, 2147483647, 'DE', 'Germany'), +('195.27.1.140', '195.27.1.143', 2147483647, 2147483647, 'EU', 'Europe'), +('195.27.1.144', '195.27.1.199', 2147483647, 2147483647, 'DE', 'Germany'), +('195.27.1.200', '195.27.2.175', 2147483647, 2147483647, 'EU', 'Europe'), +('195.27.2.176', '195.27.2.183', 2147483647, 2147483647, 'DE', 'Germany'), +('195.27.2.184', '195.27.2.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.27.3.0', '195.27.3.47', 2147483647, 2147483647, 'IE', 'Ireland'), +('195.27.3.48', '195.27.3.63', 2147483647, 2147483647, 'EU', 'Europe'), +('195.27.3.64', '195.27.3.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.27.3.128', '195.27.7.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.27.7.128', '195.27.7.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.27.8.0', '195.27.10.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.27.10.48', '195.27.10.63', 2147483647, 2147483647, 'DE', 'Germany'), +('195.27.10.64', '195.27.10.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.27.10.160', '195.27.10.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.27.11.0', '195.27.11.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.27.11.16', '195.27.11.31', 2147483647, 2147483647, 'DE', 'Germany'), +('195.27.11.32', '195.27.13.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.27.14.0', '195.27.14.7', 2147483647, 2147483647, 'IR', 'Iran, Islamic Republic of'), +('195.27.14.8', '195.27.14.15', 2147483647, 2147483647, 'IE', 'Ireland'), +('195.27.14.16', '195.27.14.23', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.27.14.24', '195.27.14.47', 2147483647, 2147483647, 'IE', 'Ireland'), +('195.27.14.48', '195.27.14.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.27.14.96', '195.27.14.119', 2147483647, 2147483647, 'IE', 'Ireland'), +('195.27.14.120', '195.27.14.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.27.14.128', '195.27.14.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('195.27.15.0', '195.27.17.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.27.18.0', '195.27.19.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.27.20.0', '195.27.20.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.27.21.0', '195.27.21.63', 2147483647, 2147483647, 'DE', 'Germany'), +('195.27.21.64', '195.27.21.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.27.21.128', '195.27.21.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.27.22.0', '195.27.23.63', 2147483647, 2147483647, 'EU', 'Europe'), +('195.27.23.64', '195.27.23.95', 2147483647, 2147483647, 'DE', 'Germany'), +('195.27.23.96', '195.27.23.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.27.23.128', '195.27.23.191', 2147483647, 2147483647, 'DE', 'Germany'), +('195.27.23.192', '195.27.25.63', 2147483647, 2147483647, 'EU', 'Europe'), +('195.27.25.64', '195.27.25.127', 2147483647, 2147483647, 'DE', 'Germany'), +('195.27.25.128', '195.27.29.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.27.30.0', '195.27.31.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.27.32.0', '195.27.32.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.27.33.0', '195.27.33.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.27.34.0', '195.27.35.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.27.36.0', '195.27.36.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.27.36.128', '195.27.36.191', 2147483647, 2147483647, 'DE', 'Germany'), +('195.27.36.192', '195.27.40.15', 2147483647, 2147483647, 'EU', 'Europe'), +('195.27.40.16', '195.27.40.31', 2147483647, 2147483647, 'DE', 'Germany'), +('195.27.40.32', '195.27.40.39', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.27.40.40', '195.27.40.47', 2147483647, 2147483647, 'DE', 'Germany'), +('195.27.40.48', '195.27.40.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.27.40.128', '195.27.40.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.27.41.0', '195.27.43.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.27.44.0', '195.27.44.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.27.45.0', '195.27.46.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.27.47.0', '195.27.47.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.27.48.0', '195.27.48.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.27.49.0', '195.27.51.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.27.52.0', '195.27.52.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.27.52.16', '195.27.52.39', 2147483647, 2147483647, 'DE', 'Germany'), +('195.27.52.40', '195.27.52.51', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.27.52.52', '195.27.52.55', 2147483647, 2147483647, 'DE', 'Germany'), +('195.27.52.56', '195.27.52.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.27.52.192', '195.27.52.207', 2147483647, 2147483647, 'GI', 'Gibraltar'), +('195.27.52.208', '195.27.53.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.27.54.0', '195.27.55.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.27.56.0', '195.27.58.255', 2147483647, 2147483647, 'FR', 'France'), +('195.27.59.0', '195.27.59.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.27.60.0', '195.27.61.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.27.62.0', '195.27.63.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.27.64.0', '195.27.67.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.27.68.0', '195.27.70.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.27.71.0', '195.27.71.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.27.72.0', '195.27.72.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.27.73.0', '195.27.78.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.27.79.0', '195.27.79.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.27.80.0', '195.27.82.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.27.83.0', '195.27.84.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.27.85.0', '195.27.87.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.27.88.0', '195.27.89.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.27.90.0', '195.27.92.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.27.92.128', '195.27.92.143', 2147483647, 2147483647, 'DE', 'Germany'), +('195.27.92.144', '195.27.92.191', 2147483647, 2147483647, 'EU', 'Europe'), +('195.27.92.192', '195.27.92.207', 2147483647, 2147483647, 'DE', 'Germany'), +('195.27.92.208', '195.27.96.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.27.97.0', '195.27.97.31', 2147483647, 2147483647, 'DE', 'Germany'), +('195.27.97.32', '195.27.97.79', 2147483647, 2147483647, 'EU', 'Europe'), +('195.27.97.80', '195.27.97.95', 2147483647, 2147483647, 'DE', 'Germany'), +('195.27.97.96', '195.27.98.191', 2147483647, 2147483647, 'EU', 'Europe'), +('195.27.98.192', '195.27.98.223', 2147483647, 2147483647, 'DE', 'Germany'), +('195.27.98.224', '195.27.98.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.27.99.0', '195.27.99.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.27.100.0', '195.27.102.223', 2147483647, 2147483647, 'EU', 'Europe'), +('195.27.102.224', '195.27.102.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.27.103.0', '195.27.103.31', 2147483647, 2147483647, 'EU', 'Europe'), +('195.27.103.32', '195.27.103.63', 2147483647, 2147483647, 'DE', 'Germany'), +('195.27.103.64', '195.27.112.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.27.113.0', '195.27.115.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.27.116.0', '195.27.130.15', 2147483647, 2147483647, 'EU', 'Europe'), +('195.27.130.16', '195.27.130.31', 2147483647, 2147483647, 'DE', 'Germany'), +('195.27.130.32', '195.27.130.143', 2147483647, 2147483647, 'EU', 'Europe'), +('195.27.130.144', '195.27.130.207', 2147483647, 2147483647, 'DE', 'Germany'), +('195.27.130.208', '195.27.136.63', 2147483647, 2147483647, 'EU', 'Europe'), +('195.27.136.64', '195.27.136.127', 2147483647, 2147483647, 'DE', 'Germany'), +('195.27.136.128', '195.27.136.223', 2147483647, 2147483647, 'EU', 'Europe'), +('195.27.136.224', '195.27.136.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.27.137.0', '195.27.137.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.27.137.128', '195.27.137.159', 2147483647, 2147483647, 'DE', 'Germany'), +('195.27.137.160', '195.27.137.191', 2147483647, 2147483647, 'EU', 'Europe'), +('195.27.137.192', '195.27.137.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.27.138.0', '195.27.138.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.27.138.128', '195.27.138.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.27.139.0', '195.27.139.63', 2147483647, 2147483647, 'EU', 'Europe'), +('195.27.139.64', '195.27.139.79', 2147483647, 2147483647, 'DE', 'Germany'), +('195.27.139.80', '195.27.143.7', 2147483647, 2147483647, 'EU', 'Europe'), +('195.27.143.8', '195.27.143.11', 2147483647, 2147483647, 'DE', 'Germany'), +('195.27.143.12', '195.27.143.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.27.143.128', '195.27.143.191', 2147483647, 2147483647, 'DE', 'Germany'), +('195.27.143.192', '195.27.148.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.27.148.128', '195.27.148.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.27.149.0', '195.27.149.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.27.150.0', '195.27.150.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.27.151.0', '195.27.151.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.27.152.0', '195.27.152.15', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.27.152.16', '195.27.152.23', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.27.152.24', '195.27.152.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.27.153.0', '195.27.153.7', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.27.153.8', '195.27.153.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.27.153.128', '195.27.153.255', 2147483647, 2147483647, 'FR', 'France'), +('195.27.154.0', '195.27.155.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.27.156.0', '195.27.158.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.27.159.0', '195.27.159.127', 2147483647, 2147483647, 'DE', 'Germany'), +('195.27.159.128', '195.27.159.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.27.160.0', '195.27.160.15', 2147483647, 2147483647, 'DE', 'Germany'), +('195.27.160.16', '195.27.161.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.27.162.0', '195.27.163.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.27.164.0', '195.27.166.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.27.167.0', '195.27.168.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.27.169.0', '195.27.171.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.27.172.0', '195.27.173.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.27.174.0', '195.27.176.63', 2147483647, 2147483647, 'EU', 'Europe'), +('195.27.176.64', '195.27.176.95', 2147483647, 2147483647, 'DE', 'Germany'), +('195.27.176.96', '195.27.176.111', 2147483647, 2147483647, 'EU', 'Europe'), +('195.27.176.112', '195.27.176.127', 2147483647, 2147483647, 'DE', 'Germany'), +('195.27.176.128', '195.27.176.159', 2147483647, 2147483647, 'EU', 'Europe'), +('195.27.176.160', '195.27.176.175', 2147483647, 2147483647, 'DE', 'Germany'), +('195.27.176.176', '195.27.176.223', 2147483647, 2147483647, 'EU', 'Europe'), +('195.27.176.224', '195.27.176.227', 2147483647, 2147483647, 'DE', 'Germany'), +('195.27.176.228', '195.27.177.95', 2147483647, 2147483647, 'EU', 'Europe'), +('195.27.177.96', '195.27.177.159', 2147483647, 2147483647, 'DE', 'Germany'), +('195.27.177.160', '195.27.177.239', 2147483647, 2147483647, 'EU', 'Europe'), +('195.27.177.240', '195.27.177.247', 2147483647, 2147483647, 'DE', 'Germany'), +('195.27.177.248', '195.27.179.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.27.180.0', '195.27.180.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.27.181.0', '195.27.181.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.27.182.0', '195.27.183.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.27.183.16', '195.27.183.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.27.184.0', '195.27.189.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.27.190.0', '195.27.191.63', 2147483647, 2147483647, 'DE', 'Germany'), +('195.27.191.64', '195.27.191.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.27.192.0', '195.27.192.127', 2147483647, 2147483647, 'DE', 'Germany'), +('195.27.192.128', '195.27.192.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.27.193.0', '195.27.193.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.27.194.0', '195.27.195.23', 2147483647, 2147483647, 'EU', 'Europe'), +('195.27.195.24', '195.27.195.31', 2147483647, 2147483647, 'DE', 'Germany'), +('195.27.195.32', '195.27.199.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.27.200.0', '195.27.201.47', 2147483647, 2147483647, 'DE', 'Germany'), +('195.27.201.48', '195.27.202.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.27.203.0', '195.27.203.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.27.204.0', '195.27.215.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.27.216.0', '195.27.216.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.27.217.0', '195.27.217.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.27.218.0', '195.27.218.63', 2147483647, 2147483647, 'DE', 'Germany'), +('195.27.218.64', '195.27.218.79', 2147483647, 2147483647, 'EU', 'Europe'), +('195.27.218.80', '195.27.218.191', 2147483647, 2147483647, 'DE', 'Germany'), +('195.27.218.192', '195.27.218.239', 2147483647, 2147483647, 'EU', 'Europe'), +('195.27.218.240', '195.27.219.31', 2147483647, 2147483647, 'DE', 'Germany'), +('195.27.219.32', '195.27.224.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.27.225.0', '195.27.226.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.27.227.0', '195.27.227.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.27.228.0', '195.27.228.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.27.229.0', '195.27.229.63', 2147483647, 2147483647, 'EU', 'Europe'), +('195.27.229.64', '195.27.229.127', 2147483647, 2147483647, 'DE', 'Germany'), +('195.27.229.128', '195.27.229.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.27.230.0', '195.27.230.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.27.231.0', '195.27.231.31', 2147483647, 2147483647, 'EU', 'Europe'), +('195.27.231.32', '195.27.231.63', 2147483647, 2147483647, 'DE', 'Germany'), +('195.27.231.64', '195.27.231.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.27.231.128', '195.27.231.191', 2147483647, 2147483647, 'DE', 'Germany'), +('195.27.231.192', '195.27.236.47', 2147483647, 2147483647, 'EU', 'Europe'), +('195.27.236.48', '195.27.236.63', 2147483647, 2147483647, 'DE', 'Germany'), +('195.27.236.64', '195.27.236.207', 2147483647, 2147483647, 'EU', 'Europe'), +('195.27.236.208', '195.27.236.223', 2147483647, 2147483647, 'DE', 'Germany'), +('195.27.236.224', '195.27.236.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.27.237.0', '195.27.237.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.27.238.0', '195.27.238.31', 2147483647, 2147483647, 'EU', 'Europe'), +('195.27.238.32', '195.27.238.63', 2147483647, 2147483647, 'DE', 'Germany'), +('195.27.238.64', '195.27.240.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.27.240.128', '195.27.240.191', 2147483647, 2147483647, 'DE', 'Germany'), +('195.27.240.192', '195.27.242.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.27.243.0', '195.27.243.7', 2147483647, 2147483647, 'DE', 'Germany'), +('195.27.243.8', '195.27.243.15', 2147483647, 2147483647, 'EU', 'Europe'), +('195.27.243.16', '195.27.243.63', 2147483647, 2147483647, 'DE', 'Germany'), +('195.27.243.64', '195.27.243.71', 2147483647, 2147483647, 'EU', 'Europe'), +('195.27.243.72', '195.27.243.79', 2147483647, 2147483647, 'DE', 'Germany'), +('195.27.243.80', '195.27.243.103', 2147483647, 2147483647, 'EU', 'Europe'), +('195.27.243.104', '195.27.243.111', 2147483647, 2147483647, 'DE', 'Germany'), +('195.27.243.112', '195.27.243.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.27.243.128', '195.27.243.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.27.244.0', '195.27.247.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.27.248.0', '195.27.248.31', 2147483647, 2147483647, 'DE', 'Germany'), +('195.27.248.32', '195.27.248.63', 2147483647, 2147483647, 'EU', 'Europe'), +('195.27.248.64', '195.27.248.127', 2147483647, 2147483647, 'DE', 'Germany'), +('195.27.248.128', '195.27.249.31', 2147483647, 2147483647, 'EU', 'Europe'), +('195.27.249.32', '195.27.249.127', 2147483647, 2147483647, 'DE', 'Germany'), +('195.27.249.128', '195.27.252.191', 2147483647, 2147483647, 'EU', 'Europe'), +('195.27.252.192', '195.27.252.223', 2147483647, 2147483647, 'DE', 'Germany'), +('195.27.252.224', '195.27.252.247', 2147483647, 2147483647, 'EU', 'Europe'), +('195.27.252.248', '195.27.252.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.27.253.0', '195.27.255.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.28.0.0', '195.28.1.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.28.2.0', '195.28.5.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.28.6.0', '195.28.7.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('195.28.8.0', '195.28.9.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.28.10.0', '195.28.11.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.28.12.0', '195.28.13.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.28.14.0', '195.28.15.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.28.16.0', '195.28.17.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.28.18.0', '195.28.19.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.28.20.0', '195.28.21.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.28.22.0', '195.28.23.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.28.24.0', '195.28.25.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.28.26.0', '195.28.27.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('195.28.28.0', '195.28.29.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.28.30.0', '195.28.31.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.28.32.0', '195.28.63.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.28.64.0', '195.28.159.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('195.28.160.0', '195.28.161.255', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('195.28.162.0', '195.28.163.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.28.164.0', '195.28.165.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.28.166.0', '195.28.167.255', 2147483647, 2147483647, 'IL', 'Israel'), +('195.28.168.0', '195.28.169.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.28.170.0', '195.28.171.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.28.172.0', '195.28.173.255', 2147483647, 2147483647, 'NO', 'Norway'), +('195.28.174.0', '195.28.175.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.28.176.0', '195.28.177.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.28.178.0', '195.28.179.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.28.180.0', '195.28.181.255', 2147483647, 2147483647, 'IL', 'Israel'), +('195.28.182.0', '195.28.183.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.28.184.0', '195.28.185.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.28.186.0', '195.28.187.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.28.188.0', '195.28.189.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.28.190.0', '195.28.191.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.28.192.0', '195.28.223.255', 2147483647, 2147483647, 'FR', 'France'), +('195.28.224.0', '195.28.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.29.0.0', '195.29.255.255', 2147483647, 2147483647, 'HR', 'Croatia'), +('195.30.0.0', '195.30.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.31.0.0', '195.32.127.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.32.128.0', '195.32.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.33.0.0', '195.33.28.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.33.28.96', '195.33.28.103', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.33.28.104', '195.33.28.111', 2147483647, 2147483647, 'FR', 'France'), +('195.33.28.112', '195.33.28.119', 2147483647, 2147483647, 'ES', 'Spain'), +('195.33.28.120', '195.33.28.127', 2147483647, 2147483647, 'DE', 'Germany'), +('195.33.28.128', '195.33.28.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.33.28.144', '195.33.28.151', 2147483647, 2147483647, 'PT', 'Portugal'), +('195.33.28.152', '195.33.28.159', 2147483647, 2147483647, 'FI', 'Finland'), +('195.33.28.160', '195.33.28.167', 2147483647, 2147483647, 'NO', 'Norway'), +('195.33.28.168', '195.33.28.175', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('195.33.28.176', '195.33.31.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.33.32.0', '195.33.32.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.33.33.0', '195.33.33.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.33.34.0', '195.33.47.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.33.48.0', '195.33.63.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.33.64.0', '195.33.91.255', 2147483647, 2147483647, 'FR', 'France'), +('195.33.92.0', '195.33.92.255', 2147483647, 2147483647, 'JO', 'Jordan'), +('195.33.93.0', '195.33.95.255', 2147483647, 2147483647, 'FR', 'France'), +('195.33.96.0', '195.33.127.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.33.128.0', '195.33.159.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.33.160.0', '195.33.191.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.33.192.0', '195.33.255.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('195.34.0.0', '195.34.63.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.34.64.0', '195.34.65.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.34.66.0', '195.34.67.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.34.68.0', '195.34.69.255', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('195.34.70.0', '195.34.71.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.34.72.0', '195.34.73.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.34.74.0', '195.34.75.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.34.76.0', '195.34.77.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.34.78.0', '195.34.79.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.34.80.0', '195.34.81.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.34.82.0', '195.34.83.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.34.84.0', '195.34.85.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.34.86.0', '195.34.87.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('195.34.88.0', '195.34.89.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.34.90.0', '195.34.91.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.34.92.0', '195.34.93.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.34.94.0', '195.34.95.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.34.96.0', '195.34.127.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('195.34.128.0', '195.34.159.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.34.160.0', '195.34.191.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.34.192.0', '195.34.195.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.34.196.0', '195.34.207.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.34.208.0', '195.34.211.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.34.212.0', '195.34.215.255', 2147483647, 2147483647, 'LT', 'Lithuania'), +('195.34.216.0', '195.34.219.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.34.220.0', '195.34.223.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.34.224.0', '195.34.255.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.35.0.0', '195.35.63.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.35.64.0', '195.35.64.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.35.65.0', '195.35.65.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.35.66.0', '195.35.66.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('195.35.67.0', '195.35.67.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.35.68.0', '195.35.71.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.35.72.0', '195.35.79.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.35.80.0', '195.35.80.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.35.81.0', '195.35.81.255', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('195.35.82.0', '195.35.83.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.35.84.0', '195.35.85.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.35.86.0', '195.35.86.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.35.87.0', '195.35.89.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.35.90.0', '195.35.91.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.35.92.0', '195.35.95.255', 2147483647, 2147483647, 'GR', 'Greece'), +('195.35.96.0', '195.35.96.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('195.35.97.0', '195.35.97.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.35.98.0', '195.35.98.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.35.99.0', '195.35.99.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.35.100.0', '195.35.101.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.35.102.0', '195.35.102.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.35.103.0', '195.35.103.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.35.104.0', '195.35.104.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.35.104.32', '195.35.104.63', 2147483647, 2147483647, 'AT', 'Austria'), +('195.35.104.64', '195.35.104.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.35.105.0', '195.35.105.255', 2147483647, 2147483647, 'GR', 'Greece'), +('195.35.106.0', '195.35.106.255', 2147483647, 2147483647, 'FR', 'France'), +('195.35.107.0', '195.35.107.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('195.35.108.0', '195.35.109.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.35.110.0', '195.35.111.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.35.112.0', '195.35.113.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.35.114.0', '195.35.115.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('195.35.116.0', '195.35.117.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.35.118.0', '195.35.118.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.35.119.0', '195.35.119.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.35.120.0', '195.35.120.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.35.121.0', '195.35.121.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.35.122.0', '195.35.122.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('195.35.123.0', '195.35.125.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.35.126.0', '195.35.126.255', 2147483647, 2147483647, 'GR', 'Greece'), +('195.35.127.0', '195.35.127.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.35.128.0', '195.35.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.36.0.0', '195.36.63.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.36.64.0', '195.36.127.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.36.128.0', '195.36.255.255', 2147483647, 2147483647, 'FR', 'France'), +('195.37.0.0', '195.37.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.38.0.0', '195.38.7.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.38.8.0', '195.38.11.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.38.12.0', '195.38.15.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.38.16.0', '195.38.18.255', 2147483647, 2147483647, 'UA', 'Ukraine'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('195.38.19.0', '195.38.19.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.38.20.0', '195.38.20.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.38.21.0', '195.38.21.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.38.22.0', '195.38.22.255', 2147483647, 2147483647, 'KZ', 'Kazakstan'), +('195.38.23.0', '195.38.23.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.38.24.0', '195.38.27.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.38.28.0', '195.38.29.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.38.30.0', '195.38.30.255', 2147483647, 2147483647, 'MT', 'Malta'), +('195.38.31.0', '195.38.31.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.38.32.0', '195.38.63.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.38.64.0', '195.38.95.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.38.96.0', '195.38.127.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('195.38.128.0', '195.38.159.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.38.160.0', '195.38.191.255', 2147483647, 2147483647, 'KG', 'Kyrgyzstan'), +('195.38.192.0', '195.38.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.39.0.0', '195.39.127.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('195.39.128.0', '195.39.191.255', 2147483647, 2147483647, 'KW', 'Kuwait'), +('195.39.192.0', '195.39.193.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.39.194.0', '195.39.195.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.39.196.0', '195.39.197.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.39.198.0', '195.39.199.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('195.39.200.0', '195.39.201.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.39.202.0', '195.39.205.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.39.206.0', '195.39.207.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.39.208.0', '195.39.209.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.39.210.0', '195.39.211.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.39.212.0', '195.39.213.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('195.39.214.0', '195.39.215.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.39.216.0', '195.39.217.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.39.218.0', '195.39.219.255', 2147483647, 2147483647, 'DZ', 'Algeria'), +('195.39.220.0', '195.39.223.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.39.224.0', '195.39.225.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('195.39.226.0', '195.39.227.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.39.228.0', '195.39.229.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.39.230.0', '195.39.231.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.39.232.0', '195.39.233.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.39.234.0', '195.39.235.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.39.236.0', '195.39.237.255', 2147483647, 2147483647, 'GR', 'Greece'), +('195.39.238.0', '195.39.239.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.39.240.0', '195.39.243.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.39.244.0', '195.39.245.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.39.246.0', '195.39.247.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.39.248.0', '195.39.249.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.39.250.0', '195.39.251.255', 2147483647, 2147483647, 'FR', 'France'), +('195.39.252.0', '195.39.253.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.39.254.0', '195.39.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.40.0.0', '195.40.99.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.40.99.160', '195.40.99.191', 2147483647, 2147483647, 'FR', 'France'), +('195.40.99.192', '195.40.189.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.40.190.0', '195.40.190.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('195.40.191.0', '195.40.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.41.0.0', '195.41.255.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.42.0.0', '195.42.32.207', 2147483647, 2147483647, 'FR', 'France'), +('195.42.32.208', '195.42.32.223', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.42.32.224', '195.42.63.255', 2147483647, 2147483647, 'FR', 'France'), +('195.42.64.0', '195.42.97.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.42.98.0', '195.42.99.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.42.100.0', '195.42.101.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.42.102.0', '195.42.103.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.42.104.0', '195.42.105.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.42.106.0', '195.42.107.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.42.108.0', '195.42.109.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.42.110.0', '195.42.111.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.42.112.0', '195.42.113.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.42.114.0', '195.42.115.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.42.116.0', '195.42.117.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.42.118.0', '195.42.119.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.42.120.0', '195.42.121.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('195.42.122.0', '195.42.123.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.42.124.0', '195.42.125.255', 2147483647, 2147483647, 'FR', 'France'), +('195.42.126.0', '195.42.127.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.42.128.0', '195.42.129.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.42.130.0', '195.42.131.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.42.132.0', '195.42.133.255', 2147483647, 2147483647, 'US', 'United States'), +('195.42.134.0', '195.42.135.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.42.136.0', '195.42.137.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.42.138.0', '195.42.139.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.42.140.0', '195.42.141.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.42.142.0', '195.42.143.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('195.42.144.0', '195.42.145.255', 2147483647, 2147483647, 'FR', 'France'), +('195.42.146.0', '195.42.147.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.42.148.0', '195.42.149.255', 2147483647, 2147483647, 'IL', 'Israel'), +('195.42.150.0', '195.42.151.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.42.152.0', '195.42.153.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.42.154.0', '195.42.191.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.42.192.0', '195.42.223.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.42.224.0', '195.42.229.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.42.230.0', '195.42.230.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.42.231.0', '195.42.231.255', 2147483647, 2147483647, 'FR', 'France'), +('195.42.232.0', '195.42.235.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.42.236.0', '195.42.239.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.42.240.0', '195.42.248.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.42.249.0', '195.42.249.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.42.250.0', '195.42.251.255', 2147483647, 2147483647, 'FR', 'France'), +('195.42.252.0', '195.42.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.43.0.0', '195.43.31.255', 2147483647, 2147483647, 'EG', 'Egypt'), +('195.43.32.0', '195.43.35.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.43.36.0', '195.43.39.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.43.40.0', '195.43.43.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.43.44.0', '195.43.51.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.43.52.0', '195.43.55.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.43.56.0', '195.43.59.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.43.60.0', '195.43.63.255', 2147483647, 2147483647, 'NO', 'Norway'), +('195.43.64.0', '195.43.95.255', 2147483647, 2147483647, 'LT', 'Lithuania'), +('195.43.96.0', '195.43.127.255', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('195.43.128.0', '195.43.128.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.43.129.0', '195.43.129.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.43.130.0', '195.43.130.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.43.131.0', '195.43.131.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('195.43.132.0', '195.43.132.255', 2147483647, 2147483647, 'GR', 'Greece'), +('195.43.133.0', '195.43.133.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('195.43.134.0', '195.43.134.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.43.135.0', '195.43.135.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.43.136.0', '195.43.136.255', 2147483647, 2147483647, 'LT', 'Lithuania'), +('195.43.137.0', '195.43.137.255', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('195.43.138.0', '195.43.138.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.43.139.0', '195.43.139.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.43.140.0', '195.43.140.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.43.141.0', '195.43.141.255', 2147483647, 2147483647, 'LI', 'Liechtenstein'), +('195.43.142.0', '195.43.143.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.43.144.0', '195.43.144.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.43.145.0', '195.43.145.255', 2147483647, 2147483647, 'NO', 'Norway'), +('195.43.146.0', '195.43.146.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.43.147.0', '195.43.147.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.43.148.0', '195.43.148.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.43.149.0', '195.43.149.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.43.150.0', '195.43.150.255', 2147483647, 2147483647, 'FR', 'France'), +('195.43.151.0', '195.43.151.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.43.152.0', '195.43.152.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.43.153.0', '195.43.153.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.43.154.0', '195.43.154.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.43.155.0', '195.43.155.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('195.43.156.0', '195.43.156.255', 2147483647, 2147483647, 'GR', 'Greece'), +('195.43.157.0', '195.43.157.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.43.158.0', '195.43.158.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.43.159.0', '195.43.159.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('195.43.160.0', '195.43.191.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.43.192.0', '195.43.236.127', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.43.236.128', '195.43.236.255', 2147483647, 2147483647, 'US', 'United States'), +('195.43.237.0', '195.43.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.44.0.0', '195.44.7.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.44.8.0', '195.44.9.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.44.10.0', '195.44.10.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.44.11.0', '195.44.11.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.44.11.128', '195.44.11.191', 2147483647, 2147483647, 'EU', 'Europe'), +('195.44.11.192', '195.44.11.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.44.12.0', '195.44.12.31', 2147483647, 2147483647, 'EU', 'Europe'), +('195.44.12.32', '195.44.12.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.44.13.0', '195.44.21.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.44.22.0', '195.44.27.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.44.28.0', '195.44.29.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.44.30.0', '195.44.30.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.44.31.0', '195.44.31.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.44.32.0', '195.44.34.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.44.35.0', '195.44.35.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.44.36.0', '195.44.37.55', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.44.37.56', '195.44.37.71', 2147483647, 2147483647, 'EU', 'Europe'), +('195.44.37.72', '195.44.37.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.44.37.192', '195.44.37.199', 2147483647, 2147483647, 'EU', 'Europe'), +('195.44.37.200', '195.44.37.215', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.44.37.216', '195.44.37.231', 2147483647, 2147483647, 'EU', 'Europe'), +('195.44.37.232', '195.44.37.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.44.37.240', '195.44.37.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.44.38.0', '195.44.38.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.44.38.160', '195.44.38.223', 2147483647, 2147483647, 'EU', 'Europe'), +('195.44.38.224', '195.44.38.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.44.39.0', '195.44.40.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.44.41.0', '195.44.45.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.44.45.32', '195.44.45.39', 2147483647, 2147483647, 'EU', 'Europe'), +('195.44.45.40', '195.44.45.87', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.44.45.88', '195.44.45.95', 2147483647, 2147483647, 'EU', 'Europe'), +('195.44.45.96', '195.44.45.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.44.45.112', '195.44.45.119', 2147483647, 2147483647, 'EU', 'Europe'), +('195.44.45.120', '195.44.45.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.44.45.144', '195.44.45.159', 2147483647, 2147483647, 'EU', 'Europe'), +('195.44.45.160', '195.44.45.167', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.44.45.168', '195.44.45.175', 2147483647, 2147483647, 'EU', 'Europe'), +('195.44.45.176', '195.44.45.199', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.44.45.200', '195.44.45.207', 2147483647, 2147483647, 'EU', 'Europe'), +('195.44.45.208', '195.44.45.215', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.44.45.216', '195.44.45.223', 2147483647, 2147483647, 'EU', 'Europe'), +('195.44.45.224', '195.44.45.231', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.44.45.232', '195.44.45.239', 2147483647, 2147483647, 'EU', 'Europe'), +('195.44.45.240', '195.44.45.247', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.44.45.248', '195.44.46.15', 2147483647, 2147483647, 'EU', 'Europe'), +('195.44.46.16', '195.44.46.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.44.46.64', '195.44.46.79', 2147483647, 2147483647, 'EU', 'Europe'), +('195.44.46.80', '195.44.46.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.44.46.96', '195.44.46.175', 2147483647, 2147483647, 'EU', 'Europe'), +('195.44.46.176', '195.44.46.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.44.46.224', '195.44.46.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.44.47.0', '195.44.47.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.44.47.192', '195.44.47.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.44.48.0', '195.44.51.7', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.44.51.8', '195.44.51.23', 2147483647, 2147483647, 'EU', 'Europe'), +('195.44.51.24', '195.44.51.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.44.51.32', '195.44.51.39', 2147483647, 2147483647, 'EU', 'Europe'), +('195.44.51.40', '195.44.51.87', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.44.51.88', '195.44.51.103', 2147483647, 2147483647, 'EU', 'Europe'), +('195.44.51.104', '195.44.51.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.44.51.112', '195.44.51.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.44.51.128', '195.44.51.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.44.51.144', '195.44.51.159', 2147483647, 2147483647, 'EU', 'Europe'), +('195.44.51.160', '195.44.51.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.44.51.176', '195.44.51.183', 2147483647, 2147483647, 'EU', 'Europe'), +('195.44.51.184', '195.44.51.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.44.51.192', '195.44.51.199', 2147483647, 2147483647, 'EU', 'Europe'), +('195.44.51.200', '195.44.51.215', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.44.51.216', '195.44.51.223', 2147483647, 2147483647, 'EU', 'Europe'), +('195.44.51.224', '195.44.51.231', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.44.51.232', '195.44.51.239', 2147483647, 2147483647, 'EU', 'Europe'), +('195.44.51.240', '195.44.52.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.44.53.0', '195.44.54.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.44.54.128', '195.44.57.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.44.57.16', '195.44.57.31', 2147483647, 2147483647, 'EU', 'Europe'), +('195.44.57.32', '195.44.57.39', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.44.57.40', '195.44.57.47', 2147483647, 2147483647, 'EU', 'Europe'), +('195.44.57.48', '195.44.57.55', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.44.57.56', '195.44.57.63', 2147483647, 2147483647, 'EU', 'Europe'), +('195.44.57.64', '195.44.57.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.44.57.80', '195.44.57.87', 2147483647, 2147483647, 'EU', 'Europe'), +('195.44.57.88', '195.44.57.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.44.57.96', '195.44.57.103', 2147483647, 2147483647, 'EU', 'Europe'), +('195.44.57.104', '195.44.57.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.44.57.128', '195.44.57.135', 2147483647, 2147483647, 'EU', 'Europe'), +('195.44.57.136', '195.44.57.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.44.57.144', '195.44.57.151', 2147483647, 2147483647, 'EU', 'Europe'), +('195.44.57.152', '195.44.57.207', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.44.57.208', '195.44.57.223', 2147483647, 2147483647, 'EU', 'Europe'), +('195.44.57.224', '195.44.57.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.44.57.240', '195.44.58.191', 2147483647, 2147483647, 'EU', 'Europe'), +('195.44.58.192', '195.44.58.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.44.59.0', '195.44.59.63', 2147483647, 2147483647, 'EU', 'Europe'), +('195.44.59.64', '195.44.59.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.44.59.128', '195.44.59.159', 2147483647, 2147483647, 'EU', 'Europe'), +('195.44.59.160', '195.44.61.39', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.44.61.40', '195.44.61.47', 2147483647, 2147483647, 'EU', 'Europe'), +('195.44.61.48', '195.44.61.55', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.44.61.56', '195.44.61.63', 2147483647, 2147483647, 'EU', 'Europe'), +('195.44.61.64', '195.44.61.71', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.44.61.72', '195.44.61.79', 2147483647, 2147483647, 'EU', 'Europe'), +('195.44.61.80', '195.44.61.87', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.44.61.88', '195.44.61.95', 2147483647, 2147483647, 'EU', 'Europe'), +('195.44.61.96', '195.44.61.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.44.61.128', '195.44.61.135', 2147483647, 2147483647, 'EU', 'Europe'), +('195.44.61.136', '195.44.61.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.44.61.192', '195.44.61.207', 2147483647, 2147483647, 'EU', 'Europe'), +('195.44.61.208', '195.44.61.215', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.44.61.216', '195.44.61.223', 2147483647, 2147483647, 'EU', 'Europe'), +('195.44.61.224', '195.44.61.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.44.61.240', '195.44.61.247', 2147483647, 2147483647, 'EU', 'Europe'), +('195.44.61.248', '195.44.76.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.44.76.64', '195.44.76.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.44.77.0', '195.44.83.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.44.84.0', '195.44.84.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.44.85.0', '195.44.94.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.44.95.0', '195.44.95.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.44.95.128', '195.44.100.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.44.100.48', '195.44.100.63', 2147483647, 2147483647, 'EU', 'Europe'), +('195.44.100.64', '195.44.100.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.44.100.96', '195.44.100.111', 2147483647, 2147483647, 'EU', 'Europe'), +('195.44.100.112', '195.44.100.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.44.100.160', '195.44.100.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.44.101.0', '195.44.101.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.44.101.176', '195.44.101.183', 2147483647, 2147483647, 'EU', 'Europe'), +('195.44.101.184', '195.44.101.203', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.44.101.204', '195.44.101.207', 2147483647, 2147483647, 'EU', 'Europe'), +('195.44.101.208', '195.44.101.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.44.101.224', '195.44.101.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.44.102.0', '195.44.103.27', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.44.103.28', '195.44.103.31', 2147483647, 2147483647, 'EU', 'Europe'), +('195.44.103.32', '195.44.103.235', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.44.103.236', '195.44.103.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.44.104.0', '195.44.115.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.44.115.240', '195.44.115.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.44.116.0', '195.44.116.135', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.44.116.136', '195.44.116.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.44.117.0', '195.44.119.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.44.120.0', '195.44.120.111', 2147483647, 2147483647, 'EU', 'Europe'), +('195.44.120.112', '195.44.120.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.44.120.192', '195.44.120.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.44.121.0', '195.44.121.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.44.122.0', '195.44.125.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.44.126.0', '195.44.167.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.44.168.0', '195.44.190.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.44.191.0', '195.44.191.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.44.192.0', '195.44.193.63', 2147483647, 2147483647, 'EU', 'Europe'), +('195.44.193.64', '195.44.196.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.44.196.16', '195.44.196.31', 2147483647, 2147483647, 'EU', 'Europe'), +('195.44.196.32', '195.44.197.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.44.197.112', '195.44.197.119', 2147483647, 2147483647, 'EU', 'Europe'), +('195.44.197.120', '195.44.197.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.44.197.160', '195.44.197.167', 2147483647, 2147483647, 'EU', 'Europe'), +('195.44.197.168', '195.44.197.183', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.44.197.184', '195.44.197.191', 2147483647, 2147483647, 'EU', 'Europe'), +('195.44.197.192', '195.44.197.247', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.44.197.248', '195.44.197.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.44.198.0', '195.44.248.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.44.249.0', '195.44.253.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.44.254.0', '195.44.254.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.44.254.64', '195.44.254.64', 2147483647, 2147483647, 'EU', 'Europe'), +('195.44.254.65', '195.44.254.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.44.254.128', '195.44.255.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.45.0.0', '195.45.255.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.46.0.0', '195.46.31.255', 2147483647, 2147483647, 'GR', 'Greece'), +('195.46.32.0', '195.46.35.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.46.36.0', '195.46.39.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.46.40.0', '195.46.43.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.46.44.0', '195.46.47.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.46.48.0', '195.46.51.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.46.52.0', '195.46.55.255', 2147483647, 2147483647, 'RS', 'Serbia'), +('195.46.56.0', '195.46.59.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.46.60.0', '195.46.63.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.46.64.0', '195.46.95.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('195.46.96.0', '195.46.127.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.46.128.0', '195.46.159.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('195.46.160.0', '195.46.191.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.46.192.0', '195.46.223.255', 2147483647, 2147483647, 'FR', 'France'), +('195.46.224.0', '195.46.255.255', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('195.47.0.0', '195.47.127.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('195.47.128.0', '195.47.191.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.47.192.0', '195.47.192.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.47.193.0', '195.47.193.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('195.47.194.0', '195.47.194.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.47.195.0', '195.47.195.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.47.196.0', '195.47.196.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.47.197.0', '195.47.197.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('195.47.198.0', '195.47.198.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.47.199.0', '195.47.199.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.47.200.0', '195.47.200.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('195.47.201.0', '195.47.201.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.47.202.0', '195.47.202.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.47.203.0', '195.47.203.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.47.204.0', '195.47.204.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.47.205.0', '195.47.205.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.47.206.0', '195.47.206.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.47.207.0', '195.47.207.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.47.208.0', '195.47.208.255', 2147483647, 2147483647, 'GR', 'Greece'), +('195.47.209.0', '195.47.209.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.47.210.0', '195.47.210.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.47.211.0', '195.47.211.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('195.47.212.0', '195.47.212.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.47.213.0', '195.47.213.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('195.47.214.0', '195.47.214.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.47.215.0', '195.47.215.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.47.216.0', '195.47.216.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.47.217.0', '195.47.217.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.47.218.0', '195.47.218.255', 2147483647, 2147483647, 'LT', 'Lithuania'), +('195.47.219.0', '195.47.219.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.47.220.0', '195.47.220.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.47.221.0', '195.47.221.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.47.222.0', '195.47.222.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.47.223.0', '195.47.223.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.47.224.0', '195.47.224.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('195.47.225.0', '195.47.225.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.47.226.0', '195.47.226.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('195.47.227.0', '195.47.227.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.47.228.0', '195.47.228.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('195.47.229.0', '195.47.229.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.47.230.0', '195.47.230.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.47.231.0', '195.47.231.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.47.232.0', '195.47.232.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.47.233.0', '195.47.233.255', 2147483647, 2147483647, 'GR', 'Greece'), +('195.47.234.0', '195.47.234.255', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('195.47.235.0', '195.47.235.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('195.47.236.0', '195.47.236.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.47.237.0', '195.47.237.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.47.238.0', '195.47.238.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.47.239.0', '195.47.239.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.47.240.0', '195.47.240.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.47.241.0', '195.47.241.255', 2147483647, 2147483647, 'FR', 'France'), +('195.47.242.0', '195.47.242.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.47.243.0', '195.47.244.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.47.245.0', '195.47.245.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.47.246.0', '195.47.246.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.47.247.0', '195.47.247.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.47.248.0', '195.47.248.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.47.249.0', '195.47.249.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.47.250.0', '195.47.250.255', 2147483647, 2147483647, 'TJ', 'Tajikistan'), +('195.47.251.0', '195.47.252.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.47.253.0', '195.47.253.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.47.254.0', '195.47.254.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.47.255.0', '195.47.255.255', 2147483647, 2147483647, 'KZ', 'Kazakstan'), +('195.48.0.0', '195.49.127.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.49.128.0', '195.49.131.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.49.132.0', '195.49.135.255', 2147483647, 2147483647, 'FR', 'France'), +('195.49.136.0', '195.49.139.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.49.140.0', '195.49.143.255', 2147483647, 2147483647, 'FR', 'France'), +('195.49.144.0', '195.49.147.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.49.148.0', '195.49.151.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.49.152.0', '195.49.159.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.49.160.0', '195.49.163.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.49.164.0', '195.49.167.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.49.168.0', '195.49.171.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.49.172.0', '195.49.175.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.49.176.0', '195.49.179.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.49.180.0', '195.49.183.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.49.184.0', '195.49.187.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.49.188.0', '195.49.191.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('195.49.192.0', '195.49.199.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.49.200.0', '195.49.207.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.49.208.0', '195.49.215.255', 2147483647, 2147483647, 'KZ', 'Kazakstan'), +('195.49.216.0', '195.49.223.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('195.49.224.0', '195.49.231.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.49.232.0', '195.49.239.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.49.240.0', '195.49.247.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.49.248.0', '195.49.255.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.50.0.0', '195.50.31.255', 2147483647, 2147483647, 'BY', 'Belarus'), +('195.50.32.0', '195.50.63.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.50.64.0', '195.50.127.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.50.128.0', '195.50.191.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.50.192.0', '195.50.223.255', 2147483647, 2147483647, 'EE', 'Estonia'), +('195.50.224.0', '195.50.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.51.0.0', '195.51.11.127', 2147483647, 2147483647, 'DE', 'Germany'), +('195.51.11.128', '195.51.11.151', 2147483647, 2147483647, 'AT', 'Austria'), +('195.51.11.152', '195.51.11.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.51.12.0', '195.51.44.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.51.45.0', '195.51.45.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.51.46.0', '195.51.47.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.51.48.0', '195.51.48.255', 2147483647, 2147483647, 'FR', 'France'), +('195.51.49.0', '195.51.49.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.51.49.32', '195.51.49.63', 2147483647, 2147483647, 'DE', 'Germany'), +('195.51.49.64', '195.51.49.191', 2147483647, 2147483647, 'FR', 'France'), +('195.51.49.192', '195.51.50.31', 2147483647, 2147483647, 'DE', 'Germany'), +('195.51.50.32', '195.51.50.39', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('195.51.50.40', '195.51.50.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.51.50.48', '195.51.50.191', 2147483647, 2147483647, 'FR', 'France'), +('195.51.50.192', '195.51.50.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.51.51.0', '195.51.51.255', 2147483647, 2147483647, 'FR', 'France'), +('195.51.52.0', '195.51.52.31', 2147483647, 2147483647, 'DE', 'Germany'), +('195.51.52.32', '195.51.52.63', 2147483647, 2147483647, 'IT', 'Italy'), +('195.51.52.64', '195.51.52.127', 2147483647, 2147483647, 'FR', 'France'), +('195.51.52.128', '195.51.52.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.51.53.0', '195.51.53.255', 2147483647, 2147483647, 'FR', 'France'), +('195.51.54.0', '195.51.59.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.51.60.0', '195.51.60.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.51.61.0', '195.51.63.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.51.64.0', '195.51.67.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.51.67.128', '195.51.67.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.51.68.0', '195.51.69.95', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.51.69.96', '195.51.69.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.51.69.192', '195.51.69.207', 2147483647, 2147483647, 'ZA', 'South Africa'), +('195.51.69.208', '195.51.69.215', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.51.69.216', '195.51.69.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.51.69.224', '195.51.69.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.51.70.0', '195.51.71.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.51.72.0', '195.51.75.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.51.76.0', '195.51.77.191', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.51.77.192', '195.51.77.223', 2147483647, 2147483647, 'EU', 'Europe'), +('195.51.77.224', '195.51.77.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.51.78.0', '195.51.79.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.51.80.0', '195.51.87.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.51.88.0', '195.51.91.95', 2147483647, 2147483647, 'ZA', 'South Africa'), +('195.51.91.96', '195.51.91.111', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.51.91.112', '195.51.91.119', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.51.91.120', '195.51.91.127', 2147483647, 2147483647, 'IT', 'Italy'), +('195.51.91.128', '195.51.91.191', 2147483647, 2147483647, 'ZA', 'South Africa'), +('195.51.91.192', '195.51.91.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.51.92.0', '195.51.92.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.51.93.0', '195.51.95.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.51.96.0', '195.51.111.255', 2147483647, 2147483647, 'FR', 'France'), +('195.51.112.0', '195.51.113.127', 2147483647, 2147483647, 'ES', 'Spain'), +('195.51.113.128', '195.51.113.191', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.51.113.192', '195.51.113.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.51.114.0', '195.51.115.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.51.116.0', '195.51.116.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.51.117.0', '195.51.117.255', 2147483647, 2147483647, 'FR', 'France'), +('195.51.118.0', '195.51.119.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.51.120.0', '195.51.127.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.51.128.0', '195.51.130.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.51.131.0', '195.51.131.159', 2147483647, 2147483647, 'DE', 'Germany'), +('195.51.131.160', '195.51.131.191', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.51.131.192', '195.51.131.223', 2147483647, 2147483647, 'ZA', 'South Africa'), +('195.51.131.224', '195.51.131.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.51.132.0', '195.51.142.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.51.143.0', '195.51.143.95', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.51.143.96', '195.51.143.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.51.143.112', '195.51.143.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.51.143.128', '195.51.146.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.51.146.32', '195.51.146.39', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.51.146.40', '195.51.146.47', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.51.146.48', '195.51.146.63', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.51.146.64', '195.51.151.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.51.152.0', '195.51.152.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.51.152.128', '195.51.152.167', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.51.152.168', '195.51.152.175', 2147483647, 2147483647, 'FR', 'France'), +('195.51.152.176', '195.51.152.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.51.152.192', '195.51.152.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.51.153.0', '195.51.153.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.51.154.0', '195.51.154.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.51.155.0', '195.51.155.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.51.156.0', '195.51.159.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('195.51.160.0', '195.51.162.127', 2147483647, 2147483647, 'DE', 'Germany'), +('195.51.162.128', '195.51.162.159', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.51.162.160', '195.51.162.167', 2147483647, 2147483647, 'DE', 'Germany'), +('195.51.162.168', '195.51.162.175', 2147483647, 2147483647, 'IT', 'Italy'), +('195.51.162.176', '195.51.167.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.51.168.0', '195.51.175.255', 2147483647, 2147483647, 'FR', 'France'), +('195.51.176.0', '195.51.191.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.51.192.0', '195.51.206.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.51.207.0', '195.51.207.31', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.51.207.32', '195.51.207.63', 2147483647, 2147483647, 'FR', 'France'), +('195.51.207.64', '195.51.207.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.51.207.80', '195.51.207.95', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.51.207.96', '195.51.207.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.51.207.128', '195.51.207.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.51.208.0', '195.51.213.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.51.214.0', '195.51.214.159', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.51.214.160', '195.51.214.175', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.51.214.176', '195.51.214.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.51.214.192', '195.51.214.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('195.51.215.0', '195.51.215.127', 2147483647, 2147483647, 'AT', 'Austria'), +('195.51.215.128', '195.51.215.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.51.216.0', '195.51.216.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.51.217.0', '195.51.217.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.51.218.0', '195.51.221.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.51.222.0', '195.51.222.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.51.223.0', '195.51.223.71', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.51.223.72', '195.51.223.79', 2147483647, 2147483647, 'AT', 'Austria'), +('195.51.223.80', '195.51.223.95', 2147483647, 2147483647, 'DE', 'Germany'), +('195.51.223.96', '195.51.223.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.51.223.112', '195.51.223.127', 2147483647, 2147483647, 'FR', 'France'), +('195.51.223.128', '195.51.223.191', 2147483647, 2147483647, 'DE', 'Germany'), +('195.51.223.192', '195.51.223.223', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.51.223.224', '195.51.223.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.51.224.0', '195.51.224.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.51.225.0', '195.51.226.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.51.227.0', '195.51.227.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.51.228.0', '195.51.228.7', 2147483647, 2147483647, 'GR', 'Greece'), +('195.51.228.8', '195.51.228.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.51.228.128', '195.51.228.135', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.51.228.136', '195.51.228.143', 2147483647, 2147483647, 'EU', 'Europe'), +('195.51.228.144', '195.51.228.159', 2147483647, 2147483647, 'FR', 'France'), +('195.51.228.160', '195.51.228.175', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.51.228.176', '195.51.228.183', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.51.228.184', '195.51.228.191', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.51.228.192', '195.51.228.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.51.229.0', '195.51.229.199', 2147483647, 2147483647, 'IE', 'Ireland'), +('195.51.229.200', '195.51.229.207', 2147483647, 2147483647, 'EU', 'Europe'), +('195.51.229.208', '195.51.229.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('195.51.230.0', '195.51.233.127', 2147483647, 2147483647, 'AT', 'Austria'), +('195.51.233.128', '195.51.233.143', 2147483647, 2147483647, 'IT', 'Italy'), +('195.51.233.144', '195.51.233.151', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.51.233.152', '195.51.233.159', 2147483647, 2147483647, 'ZA', 'South Africa'), +('195.51.233.160', '195.51.233.167', 2147483647, 2147483647, 'EU', 'Europe'), +('195.51.233.168', '195.51.233.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.51.233.176', '195.51.233.183', 2147483647, 2147483647, 'DE', 'Germany'), +('195.51.233.184', '195.51.233.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.51.233.192', '195.51.233.223', 2147483647, 2147483647, 'ES', 'Spain'), +('195.51.233.224', '195.51.234.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.51.235.0', '195.51.237.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.51.238.0', '195.51.238.63', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.51.238.64', '195.51.238.127', 2147483647, 2147483647, 'ES', 'Spain'), +('195.51.238.128', '195.51.238.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.51.238.192', '195.51.238.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.51.239.0', '195.51.241.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.51.242.0', '195.51.242.95', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.51.242.96', '195.51.242.127', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.51.242.128', '195.51.242.151', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.51.242.152', '195.51.242.159', 2147483647, 2147483647, 'EU', 'Europe'), +('195.51.242.160', '195.51.242.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.51.243.0', '195.51.243.63', 2147483647, 2147483647, 'BY', 'Belarus'), +('195.51.243.64', '195.51.243.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.51.244.0', '195.51.244.191', 2147483647, 2147483647, 'AT', 'Austria'), +('195.51.244.192', '195.51.244.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.51.245.0', '195.51.245.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('195.51.246.0', '195.51.246.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.51.247.0', '195.51.247.191', 2147483647, 2147483647, 'GR', 'Greece'), +('195.51.247.192', '195.51.248.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.51.248.224', '195.51.248.239', 2147483647, 2147483647, 'IE', 'Ireland'), +('195.51.248.240', '195.51.248.247', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.51.248.248', '195.51.248.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.51.249.0', '195.51.249.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.51.250.0', '195.51.250.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.51.251.0', '195.51.251.31', 2147483647, 2147483647, 'DE', 'Germany'), +('195.51.251.32', '195.51.251.63', 2147483647, 2147483647, 'FR', 'France'), +('195.51.251.64', '195.51.251.71', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.51.251.72', '195.51.251.79', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.51.251.80', '195.51.251.95', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.51.251.96', '195.51.251.127', 2147483647, 2147483647, 'IT', 'Italy'), +('195.51.251.128', '195.51.251.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.51.252.0', '195.51.252.255', 2147483647, 2147483647, 'FR', 'France'), +('195.51.253.0', '195.51.254.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.51.255.0', '195.51.255.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.51.255.128', '195.51.255.143', 2147483647, 2147483647, 'HU', 'Hungary'), +('195.51.255.144', '195.51.255.159', 2147483647, 2147483647, 'FR', 'France'), +('195.51.255.160', '195.51.255.191', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.51.255.192', '195.51.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.52.0.0', '195.52.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.53.0.0', '195.53.255.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.54.0.0', '195.54.31.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.54.32.0', '195.54.63.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.54.64.0', '195.54.95.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.54.96.0', '195.54.158.127', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.54.158.128', '195.54.158.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.54.159.0', '195.54.159.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.54.160.0', '195.54.191.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.54.192.0', '195.54.223.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.54.224.0', '195.54.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.55.0.0', '195.55.255.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.56.0.0', '195.56.255.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('195.57.0.0', '195.57.255.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.58.0.0', '195.58.52.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.58.53.0', '195.58.53.255', 2147483647, 2147483647, 'TJ', 'Tajikistan'), +('195.58.54.0', '195.58.63.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.58.64.0', '195.58.95.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.58.96.0', '195.58.127.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.58.128.0', '195.58.159.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.58.160.0', '195.58.191.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.58.192.0', '195.58.223.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.58.224.0', '195.58.255.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.59.0.0', '195.59.0.7', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.59.0.8', '195.59.0.31', 2147483647, 2147483647, 'EU', 'Europe'), +('195.59.0.32', '195.59.0.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.59.0.64', '195.59.0.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.59.1.0', '195.59.1.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.59.2.0', '195.59.7.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.59.8.0', '195.59.10.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.59.10.64', '195.59.10.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.59.10.128', '195.59.10.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.59.11.0', '195.59.15.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.59.16.0', '195.59.18.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.59.18.16', '195.59.23.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.59.24.0', '195.59.24.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.59.25.0', '195.59.25.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.59.25.128', '195.59.25.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.59.26.0', '195.59.26.191', 2147483647, 2147483647, 'EU', 'Europe'), +('195.59.26.192', '195.59.26.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.59.26.224', '195.59.31.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.59.32.0', '195.59.33.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.59.34.0', '195.59.39.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.59.40.0', '195.59.53.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.59.54.0', '195.59.55.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.59.56.0', '195.59.58.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.59.58.16', '195.59.63.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.59.64.0', '195.59.65.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.59.66.0', '195.59.71.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.59.72.0', '195.59.74.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.59.74.32', '195.59.79.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.59.80.0', '195.59.81.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.59.82.0', '195.59.87.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.59.88.0', '195.59.90.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.59.90.32', '195.59.90.63', 2147483647, 2147483647, 'EU', 'Europe'), +('195.59.90.64', '195.59.90.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.59.90.128', '195.59.95.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.59.96.0', '195.59.100.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.59.100.176', '195.59.100.183', 2147483647, 2147483647, 'FR', 'France'), +('195.59.100.184', '195.59.102.79', 2147483647, 2147483647, 'GB', 'United Kingdom'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('195.59.102.80', '195.59.102.95', 2147483647, 2147483647, 'EU', 'Europe'), +('195.59.102.96', '195.59.102.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.59.102.160', '195.59.103.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.59.104.0', '195.59.105.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.59.106.0', '195.59.107.95', 2147483647, 2147483647, 'EU', 'Europe'), +('195.59.107.96', '195.59.107.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.59.107.128', '195.59.111.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.59.112.0', '195.59.114.23', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.59.114.24', '195.59.114.31', 2147483647, 2147483647, 'EU', 'Europe'), +('195.59.114.32', '195.59.114.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.59.114.192', '195.59.119.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.59.120.0', '195.59.122.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.59.123.0', '195.59.127.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.59.128.0', '195.59.129.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.59.130.0', '195.59.132.255', 2147483647, 2147483647, 'FK', 'Falkland Islands (Malvinas)'), +('195.59.133.0', '195.59.135.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.59.136.0', '195.59.140.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('195.59.141.0', '195.59.143.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.59.144.0', '195.59.144.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('195.59.145.0', '195.59.151.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.59.152.0', '195.59.159.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.59.160.0', '195.59.175.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.59.175.112', '195.59.175.127', 2147483647, 2147483647, 'IE', 'Ireland'), +('195.59.175.128', '195.59.175.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.59.175.192', '195.59.175.207', 2147483647, 2147483647, 'IE', 'Ireland'), +('195.59.175.208', '195.59.175.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.59.175.224', '195.59.175.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('195.59.176.0', '195.59.180.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.59.180.128', '195.59.180.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.59.180.160', '195.59.255.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.60.0.0', '195.60.31.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.60.32.0', '195.60.63.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.60.64.0', '195.60.65.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.60.66.0', '195.60.67.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.60.68.0', '195.60.69.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.60.70.0', '195.60.71.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.60.72.0', '195.60.79.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.60.80.0', '195.60.80.95', 2147483647, 2147483647, 'IT', 'Italy'), +('195.60.80.96', '195.60.80.127', 2147483647, 2147483647, 'PL', 'Poland'), +('195.60.80.128', '195.60.80.159', 2147483647, 2147483647, 'AM', 'Armenia'), +('195.60.80.160', '195.60.80.191', 2147483647, 2147483647, 'PL', 'Poland'), +('195.60.80.192', '195.60.80.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.60.80.224', '195.60.80.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('195.60.81.0', '195.60.81.63', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.60.81.64', '195.60.81.127', 2147483647, 2147483647, 'ES', 'Spain'), +('195.60.81.128', '195.60.81.191', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.60.81.192', '195.60.81.255', 2147483647, 2147483647, 'FR', 'France'), +('195.60.82.0', '195.60.82.63', 2147483647, 2147483647, 'LV', 'Latvia'), +('195.60.82.64', '195.60.82.127', 2147483647, 2147483647, 'IE', 'Ireland'), +('195.60.83.0', '195.60.83.31', 2147483647, 2147483647, 'PL', 'Poland'), +('195.60.83.32', '195.60.83.63', 2147483647, 2147483647, 'DE', 'Germany'), +('195.60.84.0', '195.60.84.127', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.60.84.128', '195.60.85.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.60.85.128', '195.60.85.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('195.60.86.0', '195.60.86.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.60.87.0', '195.60.87.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.60.87.128', '195.60.87.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.60.88.0', '195.60.88.127', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.60.88.128', '195.60.88.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.60.89.0', '195.60.89.127', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('195.60.89.128', '195.60.89.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.60.90.0', '195.60.90.127', 2147483647, 2147483647, 'FI', 'Finland'), +('195.60.90.128', '195.60.90.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.60.91.0', '195.60.91.127', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.60.91.128', '195.60.91.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.60.92.0', '195.60.92.63', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.60.92.64', '195.60.92.127', 2147483647, 2147483647, 'AT', 'Austria'), +('195.60.92.128', '195.60.92.191', 2147483647, 2147483647, 'PL', 'Poland'), +('195.60.92.192', '195.60.93.63', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.60.93.64', '195.60.93.127', 2147483647, 2147483647, 'ES', 'Spain'), +('195.60.93.128', '195.60.93.191', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.60.93.192', '195.60.93.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.60.94.0', '195.60.94.127', 2147483647, 2147483647, 'PL', 'Poland'), +('195.60.94.128', '195.60.94.255', 2147483647, 2147483647, 'FR', 'France'), +('195.60.95.0', '195.60.95.127', 2147483647, 2147483647, 'PL', 'Poland'), +('195.60.95.128', '195.60.95.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.60.96.0', '195.60.98.247', 2147483647, 2147483647, 'DE', 'Germany'), +('195.60.98.248', '195.60.98.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.60.99.0', '195.60.127.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.60.128.0', '195.60.159.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.60.160.0', '195.60.161.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.60.162.0', '195.60.163.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.60.164.0', '195.60.165.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.60.166.0', '195.60.167.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('195.60.168.0', '195.60.169.255', 2147483647, 2147483647, 'FR', 'France'), +('195.60.170.0', '195.60.173.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.60.174.0', '195.60.175.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.60.176.0', '195.60.177.255', 2147483647, 2147483647, 'IL', 'Israel'), +('195.60.178.0', '195.60.179.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.60.180.0', '195.60.181.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.60.182.0', '195.60.183.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.60.184.0', '195.60.185.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.60.186.0', '195.60.187.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.60.188.0', '195.60.189.255', 2147483647, 2147483647, 'FR', 'France'), +('195.60.190.0', '195.60.191.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.60.192.0', '195.60.195.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.60.196.0', '195.60.199.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.60.200.0', '195.60.207.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.60.208.0', '195.60.211.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.60.212.0', '195.60.215.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.60.216.0', '195.60.219.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.60.220.0', '195.60.223.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.60.224.0', '195.60.227.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.60.228.0', '195.60.231.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.60.232.0', '195.60.235.255', 2147483647, 2147483647, 'IL', 'Israel'), +('195.60.236.0', '195.60.239.255', 2147483647, 2147483647, 'SY', 'Syrian Arab Republic'), +('195.60.240.0', '195.60.243.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.60.244.0', '195.60.247.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.60.248.0', '195.60.251.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('195.60.252.0', '195.60.255.255', 2147483647, 2147483647, 'FI', 'Finland'), +('195.61.0.0', '195.61.2.63', 2147483647, 2147483647, 'EU', 'Europe'), +('195.61.2.64', '195.61.2.127', 2147483647, 2147483647, 'ES', 'Spain'), +('195.61.2.128', '195.61.3.7', 2147483647, 2147483647, 'EU', 'Europe'), +('195.61.3.8', '195.61.3.63', 2147483647, 2147483647, 'ES', 'Spain'), +('195.61.3.64', '195.61.3.159', 2147483647, 2147483647, 'EU', 'Europe'), +('195.61.3.160', '195.61.3.175', 2147483647, 2147483647, 'ES', 'Spain'), +('195.61.3.176', '195.61.3.183', 2147483647, 2147483647, 'EU', 'Europe'), +('195.61.3.184', '195.61.3.192', 2147483647, 2147483647, 'ES', 'Spain'), +('195.61.3.193', '195.61.6.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.61.7.0', '195.61.7.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.61.8.0', '195.61.23.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.61.24.0', '195.61.24.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.61.25.0', '195.61.25.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.61.26.0', '195.61.26.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.61.27.0', '195.61.29.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.61.30.0', '195.61.30.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.61.31.0', '195.61.31.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.61.32.0', '195.61.33.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.61.34.0', '195.61.34.63', 2147483647, 2147483647, 'EU', 'Europe'), +('195.61.34.64', '195.61.34.127', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.61.34.128', '195.61.34.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.61.35.0', '195.61.36.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.61.37.0', '195.61.37.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.61.37.128', '195.61.37.207', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.61.37.208', '195.61.38.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.61.39.0', '195.61.39.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.61.40.0', '195.61.40.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.61.41.0', '195.61.41.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.61.42.0', '195.61.42.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.61.43.0', '195.61.49.127', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.61.49.128', '195.61.49.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.61.50.0', '195.61.51.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.61.52.0', '195.61.52.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.61.53.0', '195.61.56.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.61.57.0', '195.61.58.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.61.59.0', '195.61.61.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.61.62.0', '195.61.63.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.61.64.0', '195.61.64.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('195.61.65.0', '195.61.66.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.61.67.0', '195.61.67.127', 2147483647, 2147483647, 'PT', 'Portugal'), +('195.61.67.128', '195.61.70.31', 2147483647, 2147483647, 'EU', 'Europe'), +('195.61.70.32', '195.61.70.127', 2147483647, 2147483647, 'PT', 'Portugal'), +('195.61.70.128', '195.61.70.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.61.71.0', '195.61.71.63', 2147483647, 2147483647, 'PT', 'Portugal'), +('195.61.71.64', '195.61.71.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.61.71.128', '195.61.74.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('195.61.75.0', '195.61.75.15', 2147483647, 2147483647, 'EU', 'Europe'), +('195.61.75.16', '195.61.75.31', 2147483647, 2147483647, 'PT', 'Portugal'), +('195.61.75.32', '195.61.75.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.61.75.128', '195.61.75.131', 2147483647, 2147483647, 'PT', 'Portugal'), +('195.61.75.132', '195.61.75.135', 2147483647, 2147483647, 'EU', 'Europe'), +('195.61.75.136', '195.61.75.143', 2147483647, 2147483647, 'PT', 'Portugal'), +('195.61.75.144', '195.61.75.159', 2147483647, 2147483647, 'EU', 'Europe'), +('195.61.75.160', '195.61.75.175', 2147483647, 2147483647, 'PT', 'Portugal'), +('195.61.75.176', '195.61.77.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.61.78.0', '195.61.79.191', 2147483647, 2147483647, 'PT', 'Portugal'), +('195.61.79.192', '195.61.80.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.61.80.128', '195.61.81.175', 2147483647, 2147483647, 'PT', 'Portugal'), +('195.61.81.176', '195.61.81.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.61.82.0', '195.61.82.127', 2147483647, 2147483647, 'PT', 'Portugal'), +('195.61.82.128', '195.61.82.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.61.83.0', '195.61.88.63', 2147483647, 2147483647, 'PT', 'Portugal'), +('195.61.88.64', '195.61.88.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.61.88.128', '195.61.88.151', 2147483647, 2147483647, 'PT', 'Portugal'), +('195.61.88.152', '195.61.88.175', 2147483647, 2147483647, 'EU', 'Europe'), +('195.61.88.176', '195.61.88.223', 2147483647, 2147483647, 'PT', 'Portugal'), +('195.61.88.224', '195.61.88.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.61.89.0', '195.61.89.127', 2147483647, 2147483647, 'PT', 'Portugal'), +('195.61.89.128', '195.61.89.191', 2147483647, 2147483647, 'EU', 'Europe'), +('195.61.89.192', '195.61.89.207', 2147483647, 2147483647, 'PT', 'Portugal'), +('195.61.89.208', '195.61.89.239', 2147483647, 2147483647, 'EU', 'Europe'), +('195.61.89.240', '195.61.92.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('195.61.93.0', '195.61.93.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.61.94.0', '195.61.94.127', 2147483647, 2147483647, 'PT', 'Portugal'), +('195.61.94.128', '195.61.94.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.61.95.0', '195.61.95.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('195.61.96.0', '195.61.96.127', 2147483647, 2147483647, 'FR', 'France'), +('195.61.96.128', '195.61.96.191', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.61.96.192', '195.61.96.207', 2147483647, 2147483647, 'EU', 'Europe'), +('195.61.96.208', '195.61.96.223', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.61.96.224', '195.61.96.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.61.97.0', '195.61.97.55', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.61.97.56', '195.61.97.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.61.98.0', '195.61.98.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.61.99.0', '195.61.101.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.61.102.0', '195.61.103.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.61.103.128', '195.61.104.95', 2147483647, 2147483647, 'EU', 'Europe'), +('195.61.104.96', '195.61.104.231', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.61.104.232', '195.61.104.239', 2147483647, 2147483647, 'EU', 'Europe'), +('195.61.104.240', '195.61.104.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.61.105.0', '195.61.107.15', 2147483647, 2147483647, 'EU', 'Europe'), +('195.61.107.16', '195.61.107.39', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.61.107.40', '195.61.107.47', 2147483647, 2147483647, 'EU', 'Europe'), +('195.61.107.48', '195.61.107.79', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.61.107.80', '195.61.108.191', 2147483647, 2147483647, 'EU', 'Europe'), +('195.61.108.192', '195.61.108.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.61.109.0', '195.61.109.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.61.110.0', '195.61.110.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.61.111.0', '195.61.114.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.61.115.0', '195.61.115.31', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.61.115.32', '195.61.115.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.61.116.0', '195.61.116.15', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.61.116.16', '195.61.117.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.61.118.0', '195.61.118.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.61.119.0', '195.61.125.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.61.126.0', '195.61.126.64', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.61.126.65', '195.61.127.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.61.128.0', '195.61.129.15', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.61.129.16', '195.61.129.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.61.130.0', '195.61.130.191', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.61.130.192', '195.61.130.223', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.61.130.224', '195.61.130.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.61.131.0', '195.61.131.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.61.132.0', '195.61.132.31', 2147483647, 2147483647, 'EU', 'Europe'), +('195.61.132.32', '195.61.132.47', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.61.132.48', '195.61.132.103', 2147483647, 2147483647, 'EU', 'Europe'), +('195.61.132.104', '195.61.132.111', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.61.132.112', '195.61.132.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.61.132.128', '195.61.132.191', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.61.132.192', '195.61.132.239', 2147483647, 2147483647, 'EU', 'Europe'), +('195.61.132.240', '195.61.132.247', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.61.132.248', '195.61.132.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.61.133.0', '195.61.133.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.61.134.0', '195.61.134.151', 2147483647, 2147483647, 'EU', 'Europe'), +('195.61.134.152', '195.61.134.159', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.61.134.160', '195.61.134.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.61.135.0', '195.61.135.95', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.61.135.96', '195.61.136.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.61.137.0', '195.61.141.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.61.142.0', '195.61.142.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.61.143.0', '195.61.143.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.61.144.0', '195.61.145.127', 2147483647, 2147483647, 'RO', 'Romania'), +('195.61.145.128', '195.61.145.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.61.146.0', '195.61.148.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.61.149.0', '195.61.149.255', 2147483647, 2147483647, 'MD', 'Moldova, Republic of'), +('195.61.150.0', '195.61.150.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.61.150.128', '195.61.152.127', 2147483647, 2147483647, 'RO', 'Romania'), +('195.61.152.128', '195.61.152.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.61.153.0', '195.61.156.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.61.157.0', '195.61.157.31', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.61.157.32', '195.61.157.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.61.158.0', '195.61.158.255', 2147483647, 2147483647, 'US', 'United States'), +('195.61.159.0', '195.61.161.135', 2147483647, 2147483647, 'EU', 'Europe'), +('195.61.161.136', '195.61.161.143', 2147483647, 2147483647, 'AT', 'Austria'), +('195.61.161.144', '195.61.172.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.61.173.0', '195.61.173.127', 2147483647, 2147483647, 'AT', 'Austria'), +('195.61.173.128', '195.61.175.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.61.176.0', '195.61.176.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.61.177.0', '195.61.191.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.61.192.0', '195.61.194.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.61.195.0', '195.61.195.31', 2147483647, 2147483647, 'IL', 'Israel'), +('195.61.195.32', '195.61.195.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.61.196.0', '195.61.200.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.61.201.0', '195.61.201.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.61.202.0', '195.61.202.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.61.203.0', '195.61.210.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.61.211.0', '195.61.215.207', 2147483647, 2147483647, 'IT', 'Italy'), +('195.61.215.208', '195.61.215.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.61.216.0', '195.61.217.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.61.218.0', '195.61.223.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.61.224.0', '195.61.224.127', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('195.61.224.128', '195.61.224.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.61.225.0', '195.61.225.255', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('195.61.226.0', '195.61.226.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.61.227.0', '195.61.230.255', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('195.61.231.0', '195.61.255.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.62.0.0', '195.62.7.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.62.8.0', '195.62.11.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.62.12.0', '195.62.13.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.62.14.0', '195.62.15.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.62.16.0', '195.62.17.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('195.62.18.0', '195.62.19.255', 2147483647, 2147483647, 'IL', 'Israel'), +('195.62.20.0', '195.62.21.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.62.22.0', '195.62.23.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('195.62.24.0', '195.62.25.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.62.26.0', '195.62.27.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.62.28.0', '195.62.29.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.62.32.0', '195.62.35.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.62.36.0', '195.62.37.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.62.38.0', '195.62.39.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.62.40.0', '195.62.41.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.62.42.0', '195.62.43.255', 2147483647, 2147483647, 'FR', 'France'), +('195.62.44.0', '195.62.45.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.62.46.0', '195.62.49.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.62.50.0', '195.62.51.255', 2147483647, 2147483647, 'FR', 'France'), +('195.62.52.0', '195.62.55.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.62.56.0', '195.62.57.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.62.58.0', '195.62.63.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.62.64.0', '195.62.65.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.62.66.0', '195.62.67.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.62.68.0', '195.62.69.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.62.70.0', '195.62.71.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.62.72.0', '195.62.75.255', 2147483647, 2147483647, 'FR', 'France'), +('195.62.76.0', '195.62.77.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.62.78.0', '195.62.79.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.62.80.0', '195.62.81.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.62.82.0', '195.62.83.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.62.84.0', '195.62.85.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.62.86.0', '195.62.87.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.62.88.0', '195.62.89.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.62.90.0', '195.62.91.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.62.92.0', '195.62.93.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.62.94.0', '195.62.95.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.62.96.0', '195.62.127.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.62.128.0', '195.62.159.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('195.62.160.0', '195.62.191.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.62.192.0', '195.62.223.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.62.224.0', '195.62.255.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.63.0.0', '195.63.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.64.0.0', '195.64.31.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.64.32.0', '195.64.95.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.64.96.0', '195.64.127.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.64.128.0', '195.64.129.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.64.130.0', '195.64.131.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.64.132.0', '195.64.133.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.64.134.0', '195.64.135.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.64.136.0', '195.64.137.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.64.138.0', '195.64.139.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.64.140.0', '195.64.141.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.64.142.0', '195.64.143.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.64.144.0', '195.64.145.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.64.146.0', '195.64.147.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.64.148.0', '195.64.149.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.64.150.0', '195.64.151.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.64.152.0', '195.64.153.255', 2147483647, 2147483647, 'MD', 'Moldova, Republic of'), +('195.64.154.0', '195.64.155.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.64.156.0', '195.64.157.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.64.158.0', '195.64.159.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.64.160.0', '195.64.161.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('195.64.162.0', '195.64.163.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.64.164.0', '195.64.165.255', 2147483647, 2147483647, 'FR', 'France'), +('195.64.166.0', '195.64.167.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.64.168.0', '195.64.169.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.64.170.0', '195.64.171.255', 2147483647, 2147483647, 'RS', 'Serbia'), +('195.64.172.0', '195.64.173.255', 2147483647, 2147483647, 'GR', 'Greece'), +('195.64.174.0', '195.64.175.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.64.176.0', '195.64.177.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.64.178.0', '195.64.179.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.64.180.0', '195.64.181.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.64.182.0', '195.64.183.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.64.186.0', '195.64.187.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.64.188.0', '195.64.189.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.64.190.0', '195.64.191.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.64.192.0', '195.64.223.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.64.224.0', '195.64.255.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.65.0.0', '195.65.4.223', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.65.4.224', '195.65.4.231', 2147483647, 2147483647, 'DE', 'Germany'), +('195.65.4.232', '195.65.251.119', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.65.251.120', '195.65.251.127', 2147483647, 2147483647, 'DE', 'Germany'), +('195.65.251.128', '195.65.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.66.0.0', '195.66.7.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.66.8.0', '195.66.15.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.66.16.0', '195.66.23.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.66.24.0', '195.66.31.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.66.32.0', '195.66.63.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.66.64.0', '195.66.64.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('195.66.65.0', '195.66.66.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.66.67.0', '195.66.68.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.66.69.0', '195.66.69.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('195.66.70.0', '195.66.70.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.66.71.0', '195.66.72.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.66.73.0', '195.66.73.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.66.74.0', '195.66.74.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.66.75.0', '195.66.75.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('195.66.76.0', '195.66.76.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.66.77.0', '195.66.78.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.66.79.0', '195.66.79.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.66.80.0', '195.66.80.255', 2147483647, 2147483647, 'FR', 'France'), +('195.66.81.0', '195.66.81.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.66.82.0', '195.66.83.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.66.84.0', '195.66.84.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.66.85.0', '195.66.85.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.66.86.0', '195.66.86.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.66.87.0', '195.66.87.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.66.88.0', '195.66.88.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.66.89.0', '195.66.89.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.66.90.0', '195.66.90.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.66.91.0', '195.66.92.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.66.93.0', '195.66.93.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.66.94.0', '195.66.95.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.66.96.0', '195.66.96.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.66.97.0', '195.66.97.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.66.98.0', '195.66.98.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.66.99.0', '195.66.99.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.66.100.0', '195.66.100.255', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('195.66.101.0', '195.66.101.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.66.102.0', '195.66.102.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.66.103.0', '195.66.103.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.66.104.0', '195.66.104.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.66.105.0', '195.66.105.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.66.106.0', '195.66.106.255', 2147483647, 2147483647, 'EE', 'Estonia'), +('195.66.107.0', '195.66.107.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('195.66.108.0', '195.66.108.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.66.109.0', '195.66.109.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.66.110.0', '195.66.110.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.66.111.0', '195.66.111.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.66.112.0', '195.66.112.255', 2147483647, 2147483647, 'FR', 'France'), +('195.66.113.0', '195.66.113.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.66.114.0', '195.66.114.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.66.115.0', '195.66.115.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.66.116.0', '195.66.116.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.66.117.0', '195.66.117.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.66.118.0', '195.66.118.255', 2147483647, 2147483647, 'IL', 'Israel'), +('195.66.119.0', '195.66.119.255', 2147483647, 2147483647, 'FR', 'France'), +('195.66.120.0', '195.66.120.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.66.121.0', '195.66.122.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.66.123.0', '195.66.123.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.66.124.0', '195.66.124.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.66.125.0', '195.66.125.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('195.66.126.0', '195.66.126.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.66.127.0', '195.66.127.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('195.66.128.0', '195.66.129.255', 2147483647, 2147483647, 'FR', 'France'), +('195.66.130.0', '195.66.131.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.66.132.0', '195.66.135.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.66.136.0', '195.66.141.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.66.142.0', '195.66.143.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.66.144.0', '195.66.145.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.66.146.0', '195.66.147.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.66.148.0', '195.66.149.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.66.150.0', '195.66.151.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.66.152.0', '195.66.153.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.66.154.0', '195.66.155.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.66.156.0', '195.66.157.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.66.158.0', '195.66.159.255', 2147483647, 2147483647, 'GR', 'Greece'), +('195.66.160.0', '195.66.163.255', 2147483647, 2147483647, 'ME', 'Montenegro'), +('195.66.164.0', '195.66.168.255', 2147483647, 2147483647, 'RS', 'Serbia'), +('195.66.169.0', '195.66.169.159', 2147483647, 2147483647, 'ME', 'Montenegro'), +('195.66.169.160', '195.66.169.191', 2147483647, 2147483647, 'RS', 'Serbia'), +('195.66.169.192', '195.66.171.15', 2147483647, 2147483647, 'ME', 'Montenegro'), +('195.66.171.16', '195.66.171.31', 2147483647, 2147483647, 'RS', 'Serbia'), +('195.66.171.32', '195.66.171.223', 2147483647, 2147483647, 'ME', 'Montenegro'), +('195.66.171.224', '195.66.172.255', 2147483647, 2147483647, 'RS', 'Serbia'), +('195.66.173.0', '195.66.176.127', 2147483647, 2147483647, 'ME', 'Montenegro'), +('195.66.176.128', '195.66.176.159', 2147483647, 2147483647, 'RS', 'Serbia'), +('195.66.176.160', '195.66.178.255', 2147483647, 2147483647, 'ME', 'Montenegro'), +('195.66.179.0', '195.66.179.31', 2147483647, 2147483647, 'RS', 'Serbia'), +('195.66.179.32', '195.66.179.127', 2147483647, 2147483647, 'ME', 'Montenegro'), +('195.66.179.128', '195.66.179.191', 2147483647, 2147483647, 'RS', 'Serbia'), +('195.66.179.192', '195.66.180.255', 2147483647, 2147483647, 'ME', 'Montenegro'), +('195.66.181.0', '195.66.181.15', 2147483647, 2147483647, 'RS', 'Serbia'), +('195.66.181.16', '195.66.181.95', 2147483647, 2147483647, 'ME', 'Montenegro'), +('195.66.181.96', '195.66.181.111', 2147483647, 2147483647, 'RS', 'Serbia'), +('195.66.181.112', '195.66.181.159', 2147483647, 2147483647, 'ME', 'Montenegro'), +('195.66.181.160', '195.66.181.191', 2147483647, 2147483647, 'RS', 'Serbia'), +('195.66.181.192', '195.66.182.15', 2147483647, 2147483647, 'ME', 'Montenegro'), +('195.66.182.16', '195.66.182.71', 2147483647, 2147483647, 'RS', 'Serbia'), +('195.66.182.72', '195.66.182.79', 2147483647, 2147483647, 'ME', 'Montenegro'), +('195.66.182.80', '195.66.182.127', 2147483647, 2147483647, 'RS', 'Serbia'), +('195.66.182.128', '195.66.182.207', 2147483647, 2147483647, 'ME', 'Montenegro'), +('195.66.182.208', '195.66.182.255', 2147483647, 2147483647, 'RS', 'Serbia'), +('195.66.183.0', '195.66.183.127', 2147483647, 2147483647, 'ME', 'Montenegro'), +('195.66.183.128', '195.66.183.143', 2147483647, 2147483647, 'RS', 'Serbia'), +('195.66.183.144', '195.66.183.159', 2147483647, 2147483647, 'ME', 'Montenegro'), +('195.66.183.160', '195.66.183.191', 2147483647, 2147483647, 'RS', 'Serbia'), +('195.66.183.192', '195.66.184.15', 2147483647, 2147483647, 'ME', 'Montenegro'), +('195.66.184.16', '195.66.184.63', 2147483647, 2147483647, 'RS', 'Serbia'), +('195.66.184.64', '195.66.184.95', 2147483647, 2147483647, 'ME', 'Montenegro'), +('195.66.184.96', '195.66.184.191', 2147483647, 2147483647, 'RS', 'Serbia'), +('195.66.184.192', '195.66.184.255', 2147483647, 2147483647, 'ME', 'Montenegro'), +('195.66.185.0', '195.66.185.63', 2147483647, 2147483647, 'RS', 'Serbia'), +('195.66.185.64', '195.66.185.79', 2147483647, 2147483647, 'ME', 'Montenegro'), +('195.66.185.80', '195.66.185.95', 2147483647, 2147483647, 'RS', 'Serbia'), +('195.66.185.96', '195.66.185.159', 2147483647, 2147483647, 'ME', 'Montenegro'), +('195.66.185.160', '195.66.185.167', 2147483647, 2147483647, 'RS', 'Serbia'), +('195.66.185.168', '195.66.185.223', 2147483647, 2147483647, 'ME', 'Montenegro'), +('195.66.185.224', '195.66.185.239', 2147483647, 2147483647, 'RS', 'Serbia'), +('195.66.185.240', '195.66.186.127', 2147483647, 2147483647, 'ME', 'Montenegro'), +('195.66.186.128', '195.66.186.159', 2147483647, 2147483647, 'RS', 'Serbia'), +('195.66.186.160', '195.66.186.175', 2147483647, 2147483647, 'ME', 'Montenegro'), +('195.66.186.176', '195.66.186.191', 2147483647, 2147483647, 'RS', 'Serbia'), +('195.66.186.192', '195.66.191.255', 2147483647, 2147483647, 'ME', 'Montenegro'), +('195.66.192.0', '195.66.223.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.66.224.0', '195.66.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.67.0.0', '195.67.67.83', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.67.67.84', '195.67.67.87', 2147483647, 2147483647, 'FI', 'Finland'), +('195.67.67.88', '195.67.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.68.0.0', '195.68.2.7', 2147483647, 2147483647, 'FR', 'France'), +('195.68.2.8', '195.68.2.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.2.16', '195.68.2.71', 2147483647, 2147483647, 'FR', 'France'), +('195.68.2.72', '195.68.2.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.2.80', '195.68.2.111', 2147483647, 2147483647, 'FR', 'France'), +('195.68.2.112', '195.68.2.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.2.128', '195.68.2.175', 2147483647, 2147483647, 'FR', 'France'), +('195.68.2.176', '195.68.2.183', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.2.184', '195.68.2.255', 2147483647, 2147483647, 'FR', 'France'), +('195.68.3.0', '195.68.3.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.3.32', '195.68.3.55', 2147483647, 2147483647, 'FR', 'France'), +('195.68.3.56', '195.68.3.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.3.64', '195.68.3.79', 2147483647, 2147483647, 'FR', 'France'), +('195.68.3.80', '195.68.3.103', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.3.104', '195.68.3.135', 2147483647, 2147483647, 'FR', 'France'), +('195.68.3.136', '195.68.3.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.3.160', '195.68.3.167', 2147483647, 2147483647, 'FR', 'France'), +('195.68.3.168', '195.68.3.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.3.176', '195.68.4.15', 2147483647, 2147483647, 'FR', 'France'), +('195.68.4.16', '195.68.4.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.4.32', '195.68.4.55', 2147483647, 2147483647, 'FR', 'France'), +('195.68.4.56', '195.68.4.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.4.64', '195.68.4.79', 2147483647, 2147483647, 'FR', 'France'), +('195.68.4.80', '195.68.4.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.4.96', '195.68.4.103', 2147483647, 2147483647, 'FR', 'France'), +('195.68.4.104', '195.68.4.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.4.128', '195.68.4.159', 2147483647, 2147483647, 'FR', 'France'), +('195.68.4.160', '195.68.4.207', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.4.208', '195.68.4.223', 2147483647, 2147483647, 'FR', 'France'), +('195.68.4.224', '195.68.4.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.5.0', '195.68.5.31', 2147483647, 2147483647, 'FR', 'France'), +('195.68.5.32', '195.68.5.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.5.48', '195.68.5.63', 2147483647, 2147483647, 'FR', 'France'), +('195.68.5.64', '195.68.5.87', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.5.88', '195.68.5.127', 2147483647, 2147483647, 'FR', 'France'), +('195.68.5.128', '195.68.5.207', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.5.208', '195.68.6.95', 2147483647, 2147483647, 'FR', 'France'), +('195.68.6.96', '195.68.6.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.6.128', '195.68.6.143', 2147483647, 2147483647, 'FR', 'France'), +('195.68.6.144', '195.68.6.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.6.160', '195.68.6.191', 2147483647, 2147483647, 'FR', 'France'), +('195.68.6.192', '195.68.6.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.6.224', '195.68.7.47', 2147483647, 2147483647, 'FR', 'France'), +('195.68.7.48', '195.68.7.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.7.64', '195.68.7.207', 2147483647, 2147483647, 'FR', 'France'), +('195.68.7.208', '195.68.7.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.7.224', '195.68.7.255', 2147483647, 2147483647, 'FR', 'France'), +('195.68.8.0', '195.68.8.39', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.8.40', '195.68.8.199', 2147483647, 2147483647, 'FR', 'France'), +('195.68.8.200', '195.68.8.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.8.240', '195.68.8.247', 2147483647, 2147483647, 'FR', 'France'), +('195.68.8.248', '195.68.8.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.9.0', '195.68.9.15', 2147483647, 2147483647, 'FR', 'France'), +('195.68.9.16', '195.68.9.23', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.9.24', '195.68.9.57', 2147483647, 2147483647, 'FR', 'France'), +('195.68.9.58', '195.68.9.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.9.64', '195.68.9.223', 2147483647, 2147483647, 'FR', 'France'), +('195.68.9.224', '195.68.9.231', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.9.232', '195.68.9.247', 2147483647, 2147483647, 'FR', 'France'), +('195.68.9.248', '195.68.9.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.10.0', '195.68.11.7', 2147483647, 2147483647, 'FR', 'France'), +('195.68.11.8', '195.68.11.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.11.16', '195.68.11.31', 2147483647, 2147483647, 'FR', 'France'), +('195.68.11.32', '195.68.11.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.11.80', '195.68.11.111', 2147483647, 2147483647, 'FR', 'France'), +('195.68.11.112', '195.68.11.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.11.128', '195.68.11.143', 2147483647, 2147483647, 'FR', 'France'), +('195.68.11.144', '195.68.11.207', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.11.208', '195.68.12.63', 2147483647, 2147483647, 'FR', 'France'), +('195.68.12.64', '195.68.12.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.12.96', '195.68.12.127', 2147483647, 2147483647, 'FR', 'France'), +('195.68.12.128', '195.68.12.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.12.144', '195.68.12.175', 2147483647, 2147483647, 'FR', 'France'), +('195.68.12.176', '195.68.12.207', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.12.208', '195.68.12.223', 2147483647, 2147483647, 'FR', 'France'), +('195.68.12.224', '195.68.12.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.12.240', '195.68.13.47', 2147483647, 2147483647, 'FR', 'France'), +('195.68.13.48', '195.68.13.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.13.64', '195.68.13.79', 2147483647, 2147483647, 'FR', 'France'), +('195.68.13.80', '195.68.13.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.13.96', '195.68.13.159', 2147483647, 2147483647, 'FR', 'France'), +('195.68.13.160', '195.68.13.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.13.176', '195.68.13.223', 2147483647, 2147483647, 'FR', 'France'), +('195.68.13.224', '195.68.13.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.14.0', '195.68.15.143', 2147483647, 2147483647, 'FR', 'France'), +('195.68.15.144', '195.68.15.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.15.160', '195.68.15.199', 2147483647, 2147483647, 'FR', 'France'), +('195.68.15.200', '195.68.15.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.16.0', '195.68.17.127', 2147483647, 2147483647, 'FR', 'France'), +('195.68.17.128', '195.68.17.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.17.144', '195.68.17.175', 2147483647, 2147483647, 'FR', 'France'), +('195.68.17.176', '195.68.17.207', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.17.208', '195.68.17.223', 2147483647, 2147483647, 'FR', 'France'), +('195.68.17.224', '195.68.17.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.17.240', '195.68.19.63', 2147483647, 2147483647, 'FR', 'France'), +('195.68.19.64', '195.68.19.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.19.96', '195.68.19.111', 2147483647, 2147483647, 'FR', 'France'), +('195.68.19.112', '195.68.19.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.19.192', '195.68.20.255', 2147483647, 2147483647, 'FR', 'France'), +('195.68.21.0', '195.68.21.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.21.32', '195.68.21.41', 2147483647, 2147483647, 'FR', 'France'), +('195.68.21.42', '195.68.21.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.21.64', '195.68.21.79', 2147483647, 2147483647, 'FR', 'France'), +('195.68.21.80', '195.68.21.207', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.21.208', '195.68.22.255', 2147483647, 2147483647, 'FR', 'France'), +('195.68.23.0', '195.68.23.23', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.23.24', '195.68.23.31', 2147483647, 2147483647, 'FR', 'France'), +('195.68.23.32', '195.68.23.55', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.23.56', '195.68.23.79', 2147483647, 2147483647, 'FR', 'France'), +('195.68.23.80', '195.68.23.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.23.144', '195.68.23.183', 2147483647, 2147483647, 'FR', 'France'), +('195.68.23.184', '195.68.23.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.23.192', '195.68.23.207', 2147483647, 2147483647, 'FR', 'France'), +('195.68.23.208', '195.68.23.215', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.23.216', '195.68.23.223', 2147483647, 2147483647, 'FR', 'France'), +('195.68.23.224', '195.68.23.231', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.23.232', '195.68.23.239', 2147483647, 2147483647, 'FR', 'France'), +('195.68.23.240', '195.68.23.247', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.23.248', '195.68.24.111', 2147483647, 2147483647, 'FR', 'France'), +('195.68.24.112', '195.68.24.119', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.24.120', '195.68.24.127', 2147483647, 2147483647, 'FR', 'France'), +('195.68.24.128', '195.68.24.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.24.144', '195.68.24.151', 2147483647, 2147483647, 'FR', 'France'), +('195.68.24.152', '195.68.24.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.24.160', '195.68.24.183', 2147483647, 2147483647, 'FR', 'France'), +('195.68.24.184', '195.68.24.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.24.192', '195.68.24.199', 2147483647, 2147483647, 'FR', 'France'), +('195.68.24.200', '195.68.24.215', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.24.216', '195.68.24.255', 2147483647, 2147483647, 'FR', 'France'), +('195.68.25.0', '195.68.25.7', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.25.8', '195.68.25.95', 2147483647, 2147483647, 'FR', 'France'), +('195.68.25.96', '195.68.25.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.25.112', '195.68.25.159', 2147483647, 2147483647, 'FR', 'France'), +('195.68.25.160', '195.68.25.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.25.192', '195.68.26.175', 2147483647, 2147483647, 'FR', 'France'), +('195.68.26.176', '195.68.26.207', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.26.208', '195.68.26.255', 2147483647, 2147483647, 'FR', 'France'), +('195.68.27.0', '195.68.27.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.27.32', '195.68.27.47', 2147483647, 2147483647, 'FR', 'France'), +('195.68.27.48', '195.68.27.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.27.64', '195.68.27.143', 2147483647, 2147483647, 'FR', 'France'), +('195.68.27.144', '195.68.27.151', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.27.152', '195.68.27.199', 2147483647, 2147483647, 'FR', 'France'), +('195.68.27.200', '195.68.27.207', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.27.208', '195.68.27.223', 2147483647, 2147483647, 'FR', 'France'), +('195.68.27.224', '195.68.27.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.28.0', '195.68.28.207', 2147483647, 2147483647, 'FR', 'France'), +('195.68.28.208', '195.68.28.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.29.0', '195.68.29.159', 2147483647, 2147483647, 'FR', 'France'), +('195.68.29.160', '195.68.29.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.29.176', '195.68.29.223', 2147483647, 2147483647, 'FR', 'France'), +('195.68.29.224', '195.68.29.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.30.0', '195.68.31.31', 2147483647, 2147483647, 'FR', 'France'), +('195.68.31.32', '195.68.31.39', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.31.40', '195.68.31.71', 2147483647, 2147483647, 'FR', 'France'), +('195.68.31.72', '195.68.31.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.31.112', '195.68.31.151', 2147483647, 2147483647, 'FR', 'France'), +('195.68.31.152', '195.68.31.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.31.160', '195.68.31.223', 2147483647, 2147483647, 'FR', 'France'), +('195.68.31.224', '195.68.32.7', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.32.8', '195.68.32.31', 2147483647, 2147483647, 'FR', 'France'), +('195.68.32.32', '195.68.32.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.32.64', '195.68.32.95', 2147483647, 2147483647, 'FR', 'France'), +('195.68.32.96', '195.68.32.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.32.128', '195.68.32.223', 2147483647, 2147483647, 'FR', 'France'), +('195.68.32.224', '195.68.32.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.32.240', '195.68.33.15', 2147483647, 2147483647, 'FR', 'France'), +('195.68.33.16', '195.68.33.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.33.32', '195.68.33.71', 2147483647, 2147483647, 'FR', 'France'), +('195.68.33.72', '195.68.33.79', 2147483647, 2147483647, 'GB', 'United Kingdom'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('195.68.33.80', '195.68.33.111', 2147483647, 2147483647, 'FR', 'France'), +('195.68.33.112', '195.68.33.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.33.128', '195.68.33.231', 2147483647, 2147483647, 'FR', 'France'), +('195.68.33.232', '195.68.33.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.34.0', '195.68.34.183', 2147483647, 2147483647, 'FR', 'France'), +('195.68.34.184', '195.68.34.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.34.192', '195.68.34.207', 2147483647, 2147483647, 'FR', 'France'), +('195.68.34.208', '195.68.34.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.34.224', '195.68.34.247', 2147483647, 2147483647, 'FR', 'France'), +('195.68.34.248', '195.68.34.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.35.0', '195.68.35.39', 2147483647, 2147483647, 'FR', 'France'), +('195.68.35.40', '195.68.35.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.35.112', '195.68.35.127', 2147483647, 2147483647, 'FR', 'France'), +('195.68.35.128', '195.68.35.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.35.160', '195.68.35.223', 2147483647, 2147483647, 'FR', 'France'), +('195.68.35.224', '195.68.35.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.36.0', '195.68.36.199', 2147483647, 2147483647, 'FR', 'France'), +('195.68.36.200', '195.68.36.207', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.36.208', '195.68.36.247', 2147483647, 2147483647, 'FR', 'France'), +('195.68.36.248', '195.68.36.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.37.0', '195.68.37.31', 2147483647, 2147483647, 'FR', 'France'), +('195.68.37.32', '195.68.37.39', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.37.40', '195.68.37.63', 2147483647, 2147483647, 'FR', 'France'), +('195.68.37.64', '195.68.37.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.37.192', '195.68.37.207', 2147483647, 2147483647, 'FR', 'France'), +('195.68.37.208', '195.68.37.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.37.240', '195.68.37.255', 2147483647, 2147483647, 'FR', 'France'), +('195.68.38.0', '195.68.38.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.38.48', '195.68.38.79', 2147483647, 2147483647, 'FR', 'France'), +('195.68.38.80', '195.68.38.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.38.128', '195.68.38.159', 2147483647, 2147483647, 'FR', 'France'), +('195.68.38.160', '195.68.38.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.38.176', '195.68.38.191', 2147483647, 2147483647, 'FR', 'France'), +('195.68.38.192', '195.68.38.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.38.224', '195.68.39.127', 2147483647, 2147483647, 'FR', 'France'), +('195.68.39.128', '195.68.39.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.39.160', '195.68.39.207', 2147483647, 2147483647, 'FR', 'France'), +('195.68.39.208', '195.68.39.215', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.39.216', '195.68.40.47', 2147483647, 2147483647, 'FR', 'France'), +('195.68.40.48', '195.68.40.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.40.80', '195.68.40.87', 2147483647, 2147483647, 'FR', 'France'), +('195.68.40.88', '195.68.40.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.40.112', '195.68.40.135', 2147483647, 2147483647, 'FR', 'France'), +('195.68.40.136', '195.68.40.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.40.144', '195.68.40.151', 2147483647, 2147483647, 'FR', 'France'), +('195.68.40.152', '195.68.40.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.40.160', '195.68.45.15', 2147483647, 2147483647, 'FR', 'France'), +('195.68.45.16', '195.68.45.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.45.48', '195.68.45.63', 2147483647, 2147483647, 'FR', 'France'), +('195.68.45.64', '195.68.45.71', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.45.72', '195.68.45.79', 2147483647, 2147483647, 'FR', 'France'), +('195.68.45.80', '195.68.45.87', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.45.88', '195.68.45.95', 2147483647, 2147483647, 'FR', 'France'), +('195.68.45.96', '195.68.45.103', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.45.104', '195.68.45.159', 2147483647, 2147483647, 'FR', 'France'), +('195.68.45.160', '195.68.45.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.45.192', '195.68.45.207', 2147483647, 2147483647, 'FR', 'France'), +('195.68.45.208', '195.68.45.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.45.240', '195.68.48.255', 2147483647, 2147483647, 'FR', 'France'), +('195.68.49.0', '195.68.49.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.49.16', '195.68.49.55', 2147483647, 2147483647, 'FR', 'France'), +('195.68.49.56', '195.68.49.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.49.64', '195.68.49.103', 2147483647, 2147483647, 'FR', 'France'), +('195.68.49.104', '195.68.49.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.49.112', '195.68.49.223', 2147483647, 2147483647, 'FR', 'France'), +('195.68.49.224', '195.68.49.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.49.240', '195.68.50.31', 2147483647, 2147483647, 'FR', 'France'), +('195.68.50.32', '195.68.50.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.50.48', '195.68.50.55', 2147483647, 2147483647, 'FR', 'France'), +('195.68.50.56', '195.68.50.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.50.64', '195.68.50.71', 2147483647, 2147483647, 'FR', 'France'), +('195.68.50.72', '195.68.50.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.50.80', '195.68.50.159', 2147483647, 2147483647, 'FR', 'France'), +('195.68.50.160', '195.68.50.167', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.50.168', '195.68.50.175', 2147483647, 2147483647, 'FR', 'France'), +('195.68.50.176', '195.68.50.207', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.50.208', '195.68.51.79', 2147483647, 2147483647, 'FR', 'France'), +('195.68.51.80', '195.68.51.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.51.96', '195.68.51.103', 2147483647, 2147483647, 'FR', 'France'), +('195.68.51.104', '195.68.51.119', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.51.120', '195.68.51.191', 2147483647, 2147483647, 'FR', 'France'), +('195.68.51.192', '195.68.51.199', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.51.200', '195.68.51.255', 2147483647, 2147483647, 'FR', 'France'), +('195.68.52.0', '195.68.52.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.52.48', '195.68.52.63', 2147483647, 2147483647, 'FR', 'France'), +('195.68.52.64', '195.68.52.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.52.112', '195.68.53.175', 2147483647, 2147483647, 'FR', 'France'), +('195.68.53.176', '195.68.53.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.53.192', '195.68.54.111', 2147483647, 2147483647, 'FR', 'France'), +('195.68.54.112', '195.68.54.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.54.144', '195.68.54.159', 2147483647, 2147483647, 'FR', 'France'), +('195.68.54.160', '195.68.54.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.54.192', '195.68.54.254', 2147483647, 2147483647, 'FR', 'France'), +('195.68.54.255', '195.68.54.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.55.0', '195.68.55.47', 2147483647, 2147483647, 'FR', 'France'), +('195.68.55.48', '195.68.55.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.55.96', '195.68.55.143', 2147483647, 2147483647, 'FR', 'France'), +('195.68.55.144', '195.68.55.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.55.160', '195.68.55.207', 2147483647, 2147483647, 'FR', 'France'), +('195.68.55.208', '195.68.55.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.55.224', '195.68.56.47', 2147483647, 2147483647, 'FR', 'France'), +('195.68.56.48', '195.68.56.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.56.64', '195.68.56.143', 2147483647, 2147483647, 'FR', 'France'), +('195.68.56.144', '195.68.56.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.56.160', '195.68.56.175', 2147483647, 2147483647, 'FR', 'France'), +('195.68.56.176', '195.68.56.207', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.56.208', '195.68.56.223', 2147483647, 2147483647, 'FR', 'France'), +('195.68.56.224', '195.68.56.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.56.240', '195.68.56.255', 2147483647, 2147483647, 'FR', 'France'), +('195.68.57.0', '195.68.57.71', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.57.72', '195.68.57.87', 2147483647, 2147483647, 'FR', 'France'), +('195.68.57.88', '195.68.57.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.57.96', '195.68.57.103', 2147483647, 2147483647, 'FR', 'France'), +('195.68.57.104', '195.68.57.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.57.128', '195.68.57.255', 2147483647, 2147483647, 'FR', 'France'), +('195.68.58.0', '195.68.58.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.59.0', '195.68.59.71', 2147483647, 2147483647, 'FR', 'France'), +('195.68.59.72', '195.68.59.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.59.80', '195.68.59.87', 2147483647, 2147483647, 'FR', 'France'), +('195.68.59.88', '195.68.59.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.59.96', '195.68.59.119', 2147483647, 2147483647, 'FR', 'France'), +('195.68.59.120', '195.68.59.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.59.128', '195.68.59.135', 2147483647, 2147483647, 'FR', 'France'), +('195.68.59.136', '195.68.59.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.59.144', '195.68.59.191', 2147483647, 2147483647, 'FR', 'France'), +('195.68.59.192', '195.68.59.199', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.59.200', '195.68.59.207', 2147483647, 2147483647, 'FR', 'France'), +('195.68.59.208', '195.68.59.215', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.59.216', '195.68.59.223', 2147483647, 2147483647, 'FR', 'France'), +('195.68.59.224', '195.68.59.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.60.0', '195.68.60.255', 2147483647, 2147483647, 'FR', 'France'), +('195.68.61.0', '195.68.61.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.61.16', '195.68.61.63', 2147483647, 2147483647, 'FR', 'France'), +('195.68.61.64', '195.68.61.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.61.80', '195.68.61.159', 2147483647, 2147483647, 'FR', 'France'), +('195.68.61.160', '195.68.61.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.61.176', '195.68.61.191', 2147483647, 2147483647, 'FR', 'France'), +('195.68.61.192', '195.68.61.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.61.224', '195.68.61.239', 2147483647, 2147483647, 'FR', 'France'), +('195.68.61.240', '195.68.61.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.62.0', '195.68.62.127', 2147483647, 2147483647, 'FR', 'France'), +('195.68.62.128', '195.68.62.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.62.160', '195.68.63.31', 2147483647, 2147483647, 'FR', 'France'), +('195.68.63.32', '195.68.63.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.63.96', '195.68.63.175', 2147483647, 2147483647, 'FR', 'France'), +('195.68.63.176', '195.68.63.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.63.192', '195.68.63.239', 2147483647, 2147483647, 'FR', 'France'), +('195.68.63.240', '195.68.64.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.64.16', '195.68.64.127', 2147483647, 2147483647, 'FR', 'France'), +('195.68.64.128', '195.68.64.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.64.144', '195.68.64.239', 2147483647, 2147483647, 'FR', 'France'), +('195.68.64.240', '195.68.64.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.65.0', '195.68.65.7', 2147483647, 2147483647, 'FR', 'France'), +('195.68.65.8', '195.68.65.39', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.65.40', '195.68.65.47', 2147483647, 2147483647, 'FR', 'France'), +('195.68.65.48', '195.68.65.55', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.65.56', '195.68.65.63', 2147483647, 2147483647, 'FR', 'France'), +('195.68.65.64', '195.68.65.87', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.65.88', '195.68.65.199', 2147483647, 2147483647, 'FR', 'France'), +('195.68.65.200', '195.68.65.207', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.65.208', '195.68.66.79', 2147483647, 2147483647, 'FR', 'France'), +('195.68.66.80', '195.68.66.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.66.96', '195.68.66.143', 2147483647, 2147483647, 'FR', 'France'), +('195.68.66.144', '195.68.66.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.66.160', '195.68.68.127', 2147483647, 2147483647, 'FR', 'France'), +('195.68.68.128', '195.68.68.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.69.0', '195.68.69.143', 2147483647, 2147483647, 'FR', 'France'), +('195.68.69.144', '195.68.69.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.69.160', '195.68.69.191', 2147483647, 2147483647, 'FR', 'France'), +('195.68.69.192', '195.68.69.207', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.69.208', '195.68.70.31', 2147483647, 2147483647, 'FR', 'France'), +('195.68.70.32', '195.68.70.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.70.48', '195.68.70.71', 2147483647, 2147483647, 'FR', 'France'), +('195.68.70.72', '195.68.70.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.70.80', '195.68.70.87', 2147483647, 2147483647, 'FR', 'France'), +('195.68.70.88', '195.68.70.103', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.70.104', '195.68.70.127', 2147483647, 2147483647, 'FR', 'France'), +('195.68.70.128', '195.68.70.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.70.192', '195.68.70.231', 2147483647, 2147483647, 'FR', 'France'), +('195.68.70.232', '195.68.70.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.71.0', '195.68.72.7', 2147483647, 2147483647, 'FR', 'France'), +('195.68.72.8', '195.68.72.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.72.32', '195.68.72.55', 2147483647, 2147483647, 'FR', 'France'), +('195.68.72.56', '195.68.72.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.72.80', '195.68.72.103', 2147483647, 2147483647, 'FR', 'France'), +('195.68.72.104', '195.68.72.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.72.112', '195.68.73.15', 2147483647, 2147483647, 'FR', 'France'), +('195.68.73.16', '195.68.73.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.73.48', '195.68.73.63', 2147483647, 2147483647, 'FR', 'France'), +('195.68.73.64', '195.68.73.87', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.73.88', '195.68.74.31', 2147483647, 2147483647, 'FR', 'France'), +('195.68.74.32', '195.68.74.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.74.48', '195.68.74.79', 2147483647, 2147483647, 'FR', 'France'), +('195.68.74.80', '195.68.74.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.74.96', '195.68.74.207', 2147483647, 2147483647, 'FR', 'France'), +('195.68.74.208', '195.68.74.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.74.224', '195.68.76.15', 2147483647, 2147483647, 'FR', 'France'), +('195.68.76.16', '195.68.76.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.76.96', '195.68.76.127', 2147483647, 2147483647, 'FR', 'France'), +('195.68.76.128', '195.68.76.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.76.144', '195.68.76.191', 2147483647, 2147483647, 'FR', 'France'), +('195.68.76.192', '195.68.76.207', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.76.208', '195.68.76.223', 2147483647, 2147483647, 'FR', 'France'), +('195.68.76.224', '195.68.76.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.77.0', '195.68.77.255', 2147483647, 2147483647, 'FR', 'France'), +('195.68.78.0', '195.68.78.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.78.112', '195.68.78.127', 2147483647, 2147483647, 'FR', 'France'), +('195.68.78.128', '195.68.78.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.78.160', '195.68.78.191', 2147483647, 2147483647, 'FR', 'France'), +('195.68.78.192', '195.68.78.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.78.224', '195.68.78.255', 2147483647, 2147483647, 'FR', 'France'), +('195.68.79.0', '195.68.79.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.79.64', '195.68.79.71', 2147483647, 2147483647, 'FR', 'France'), +('195.68.79.72', '195.68.79.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.79.96', '195.68.79.135', 2147483647, 2147483647, 'FR', 'France'), +('195.68.79.136', '195.68.79.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.79.160', '195.68.79.191', 2147483647, 2147483647, 'FR', 'France'), +('195.68.79.192', '195.68.79.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.79.224', '195.68.86.255', 2147483647, 2147483647, 'FR', 'France'), +('195.68.87.0', '195.68.87.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.87.240', '195.68.87.255', 2147483647, 2147483647, 'FR', 'France'), +('195.68.88.0', '195.68.88.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.88.48', '195.68.88.95', 2147483647, 2147483647, 'FR', 'France'), +('195.68.88.96', '195.68.88.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.88.112', '195.68.88.127', 2147483647, 2147483647, 'FR', 'France'), +('195.68.88.128', '195.68.88.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.88.160', '195.68.88.175', 2147483647, 2147483647, 'FR', 'France'), +('195.68.88.176', '195.68.88.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.88.192', '195.68.88.207', 2147483647, 2147483647, 'FR', 'France'), +('195.68.88.208', '195.68.88.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.88.240', '195.68.88.255', 2147483647, 2147483647, 'FR', 'France'), +('195.68.89.0', '195.68.89.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.89.96', '195.68.89.127', 2147483647, 2147483647, 'FR', 'France'), +('195.68.89.128', '195.68.89.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.89.176', '195.68.89.191', 2147483647, 2147483647, 'FR', 'France'), +('195.68.89.192', '195.68.89.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.90.0', '195.68.92.15', 2147483647, 2147483647, 'FR', 'France'), +('195.68.92.16', '195.68.92.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.92.32', '195.68.92.79', 2147483647, 2147483647, 'FR', 'France'), +('195.68.92.80', '195.68.92.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.92.96', '195.68.92.207', 2147483647, 2147483647, 'FR', 'France'), +('195.68.92.208', '195.68.92.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.92.224', '195.68.92.239', 2147483647, 2147483647, 'FR', 'France'), +('195.68.92.240', '195.68.92.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.93.0', '195.68.94.63', 2147483647, 2147483647, 'FR', 'France'), +('195.68.94.64', '195.68.94.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.94.112', '195.68.94.151', 2147483647, 2147483647, 'FR', 'France'), +('195.68.94.152', '195.68.94.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.94.160', '195.68.94.255', 2147483647, 2147483647, 'FR', 'France'), +('195.68.95.0', '195.68.95.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.95.16', '195.68.95.71', 2147483647, 2147483647, 'FR', 'France'), +('195.68.95.72', '195.68.95.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.95.96', '195.68.95.127', 2147483647, 2147483647, 'FR', 'France'), +('195.68.95.128', '195.68.95.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.95.144', '195.68.95.159', 2147483647, 2147483647, 'FR', 'France'), +('195.68.95.160', '195.68.95.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.95.224', '195.68.95.239', 2147483647, 2147483647, 'FR', 'France'), +('195.68.95.240', '195.68.96.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.97.0', '195.68.98.47', 2147483647, 2147483647, 'FR', 'France'), +('195.68.98.48', '195.68.98.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.98.64', '195.68.98.79', 2147483647, 2147483647, 'FR', 'France'), +('195.68.98.80', '195.68.98.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.98.96', '195.68.98.143', 2147483647, 2147483647, 'FR', 'France'), +('195.68.98.144', '195.68.98.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.98.160', '195.68.98.191', 2147483647, 2147483647, 'FR', 'France'), +('195.68.98.192', '195.68.98.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.99.0', '195.68.100.31', 2147483647, 2147483647, 'FR', 'France'), +('195.68.100.32', '195.68.100.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.100.80', '195.68.100.111', 2147483647, 2147483647, 'FR', 'France'), +('195.68.100.112', '195.68.100.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.100.144', '195.68.100.159', 2147483647, 2147483647, 'FR', 'France'), +('195.68.100.160', '195.68.100.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.100.192', '195.68.100.223', 2147483647, 2147483647, 'FR', 'France'), +('195.68.100.224', '195.68.100.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.101.0', '195.68.101.127', 2147483647, 2147483647, 'FR', 'France'), +('195.68.101.128', '195.68.101.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.101.160', '195.68.101.223', 2147483647, 2147483647, 'FR', 'France'), +('195.68.101.224', '195.68.101.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.101.240', '195.68.102.255', 2147483647, 2147483647, 'FR', 'France'), +('195.68.103.0', '195.68.103.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.103.16', '195.68.103.31', 2147483647, 2147483647, 'FR', 'France'), +('195.68.103.32', '195.68.103.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.103.96', '195.68.103.127', 2147483647, 2147483647, 'FR', 'France'), +('195.68.103.128', '195.68.103.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.103.160', '195.68.103.223', 2147483647, 2147483647, 'FR', 'France'), +('195.68.103.224', '195.68.103.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.103.240', '195.68.104.15', 2147483647, 2147483647, 'FR', 'France'), +('195.68.104.16', '195.68.104.23', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.104.24', '195.68.104.39', 2147483647, 2147483647, 'FR', 'France'), +('195.68.104.40', '195.68.104.135', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.104.136', '195.68.104.159', 2147483647, 2147483647, 'FR', 'France'), +('195.68.104.160', '195.68.104.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.104.176', '195.68.104.247', 2147483647, 2147483647, 'FR', 'France'), +('195.68.104.248', '195.68.105.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.105.16', '195.68.105.31', 2147483647, 2147483647, 'FR', 'France'), +('195.68.105.32', '195.68.105.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.105.48', '195.68.105.143', 2147483647, 2147483647, 'FR', 'France'), +('195.68.105.144', '195.68.105.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.105.160', '195.68.105.191', 2147483647, 2147483647, 'FR', 'France'), +('195.68.105.192', '195.68.105.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.105.240', '195.68.106.15', 2147483647, 2147483647, 'FR', 'France'), +('195.68.106.16', '195.68.106.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.106.32', '195.68.106.223', 2147483647, 2147483647, 'FR', 'France'), +('195.68.106.224', '195.68.106.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.107.0', '195.68.107.31', 2147483647, 2147483647, 'FR', 'France'), +('195.68.107.32', '195.68.107.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.107.48', '195.68.107.63', 2147483647, 2147483647, 'FR', 'France'), +('195.68.107.64', '195.68.107.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.107.96', '195.68.107.111', 2147483647, 2147483647, 'FR', 'France'), +('195.68.107.112', '195.68.107.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.107.128', '195.68.107.239', 2147483647, 2147483647, 'FR', 'France'), +('195.68.107.240', '195.68.107.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.108.0', '195.68.108.63', 2147483647, 2147483647, 'FR', 'France'), +('195.68.108.64', '195.68.108.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.108.96', '195.68.108.127', 2147483647, 2147483647, 'FR', 'France'), +('195.68.108.128', '195.68.108.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.108.160', '195.68.108.175', 2147483647, 2147483647, 'FR', 'France'), +('195.68.108.176', '195.68.108.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.108.192', '195.68.109.15', 2147483647, 2147483647, 'FR', 'France'), +('195.68.109.16', '195.68.109.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.109.64', '195.68.109.79', 2147483647, 2147483647, 'FR', 'France'), +('195.68.109.80', '195.68.109.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.109.192', '195.68.110.31', 2147483647, 2147483647, 'FR', 'France'), +('195.68.110.32', '195.68.110.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.110.48', '195.68.110.111', 2147483647, 2147483647, 'FR', 'France'), +('195.68.110.112', '195.68.110.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.110.160', '195.68.110.191', 2147483647, 2147483647, 'FR', 'France'), +('195.68.110.192', '195.68.110.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.110.224', '195.68.110.239', 2147483647, 2147483647, 'FR', 'France'), +('195.68.110.240', '195.68.110.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.111.0', '195.68.111.15', 2147483647, 2147483647, 'FR', 'France'), +('195.68.111.16', '195.68.111.23', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.111.24', '195.68.111.31', 2147483647, 2147483647, 'FR', 'France'), +('195.68.111.32', '195.68.111.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.111.64', '195.68.111.127', 2147483647, 2147483647, 'FR', 'France'), +('195.68.111.128', '195.68.111.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.111.160', '195.68.111.191', 2147483647, 2147483647, 'FR', 'France'), +('195.68.111.192', '195.68.111.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.112.0', '195.68.114.15', 2147483647, 2147483647, 'FR', 'France'), +('195.68.114.16', '195.68.114.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.114.64', '195.68.114.79', 2147483647, 2147483647, 'FR', 'France'), +('195.68.114.80', '195.68.114.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.114.96', '195.68.114.255', 2147483647, 2147483647, 'FR', 'France'), +('195.68.115.0', '195.68.115.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.116.0', '195.68.120.15', 2147483647, 2147483647, 'FR', 'France'), +('195.68.120.16', '195.68.120.71', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.120.72', '195.68.120.159', 2147483647, 2147483647, 'FR', 'France'), +('195.68.120.160', '195.68.120.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.120.176', '195.68.120.191', 2147483647, 2147483647, 'FR', 'France'), +('195.68.120.192', '195.68.120.207', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.120.208', '195.68.120.223', 2147483647, 2147483647, 'FR', 'France'), +('195.68.120.224', '195.68.120.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.121.0', '195.68.121.63', 2147483647, 2147483647, 'FR', 'France'), +('195.68.121.64', '195.68.121.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.121.96', '195.68.121.127', 2147483647, 2147483647, 'FR', 'France'), +('195.68.121.128', '195.68.121.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.121.160', '195.68.121.175', 2147483647, 2147483647, 'FR', 'France'), +('195.68.121.176', '195.68.121.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.121.192', '195.68.122.15', 2147483647, 2147483647, 'FR', 'France'), +('195.68.122.16', '195.68.122.39', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.122.40', '195.68.122.63', 2147483647, 2147483647, 'FR', 'France'), +('195.68.122.64', '195.68.122.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.122.80', '195.68.122.127', 2147483647, 2147483647, 'FR', 'France'), +('195.68.122.128', '195.68.122.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.122.144', '195.68.122.167', 2147483647, 2147483647, 'FR', 'France'), +('195.68.122.168', '195.68.122.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.122.176', '195.68.122.191', 2147483647, 2147483647, 'FR', 'France'), +('195.68.122.192', '195.68.122.199', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.122.200', '195.68.122.223', 2147483647, 2147483647, 'FR', 'France'), +('195.68.122.224', '195.68.122.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.122.240', '195.68.122.255', 2147483647, 2147483647, 'FR', 'France'), +('195.68.123.0', '195.68.123.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.123.16', '195.68.123.23', 2147483647, 2147483647, 'FR', 'France'), +('195.68.123.24', '195.68.123.39', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.123.40', '195.68.123.63', 2147483647, 2147483647, 'FR', 'France'), +('195.68.123.64', '195.68.123.71', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.123.72', '195.68.123.87', 2147483647, 2147483647, 'FR', 'France'), +('195.68.123.88', '195.68.123.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.123.96', '195.68.123.127', 2147483647, 2147483647, 'FR', 'France'), +('195.68.123.128', '195.68.123.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.123.144', '195.68.123.167', 2147483647, 2147483647, 'FR', 'France'), +('195.68.123.168', '195.68.123.215', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.123.216', '195.68.123.231', 2147483647, 2147483647, 'FR', 'France'), +('195.68.123.232', '195.68.123.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.124.0', '195.68.124.39', 2147483647, 2147483647, 'FR', 'France'), +('195.68.124.40', '195.68.124.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.124.48', '195.68.124.143', 2147483647, 2147483647, 'FR', 'France'), +('195.68.124.144', '195.68.124.151', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.124.152', '195.68.124.255', 2147483647, 2147483647, 'FR', 'France'), +('195.68.125.0', '195.68.125.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.125.32', '195.68.125.63', 2147483647, 2147483647, 'FR', 'France'), +('195.68.125.64', '195.68.125.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.125.80', '195.68.125.87', 2147483647, 2147483647, 'FR', 'France'), +('195.68.125.88', '195.68.125.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.125.96', '195.68.125.199', 2147483647, 2147483647, 'FR', 'France'), +('195.68.125.200', '195.68.125.215', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.125.216', '195.68.125.223', 2147483647, 2147483647, 'FR', 'France'), +('195.68.125.224', '195.68.125.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.125.240', '195.68.125.247', 2147483647, 2147483647, 'FR', 'France'), +('195.68.125.248', '195.68.125.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.126.0', '195.68.126.95', 2147483647, 2147483647, 'FR', 'France'), +('195.68.126.96', '195.68.126.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.126.128', '195.68.126.159', 2147483647, 2147483647, 'FR', 'France'), +('195.68.126.160', '195.68.126.167', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.126.168', '195.68.127.255', 2147483647, 2147483647, 'FR', 'France'), +('195.68.128.0', '195.68.191.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.68.192.0', '195.68.193.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.68.194.0', '195.68.195.255', 2147483647, 2147483647, 'FR', 'France'), +('195.68.196.0', '195.68.197.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.68.198.0', '195.68.199.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.68.200.0', '195.68.201.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('195.68.202.0', '195.68.203.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.68.204.0', '195.68.205.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.68.206.0', '195.68.207.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.208.0', '195.68.209.255', 2147483647, 2147483647, 'PS', 'Palestinian Territory, Occupied'), +('195.68.210.0', '195.68.211.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.68.212.0', '195.68.213.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.68.214.0', '195.68.215.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('195.68.216.0', '195.68.219.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.68.220.0', '195.68.221.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.222.0', '195.68.223.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.68.224.0', '195.68.225.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.226.0', '195.68.227.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.68.228.0', '195.68.229.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.230.0', '195.68.231.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('195.68.232.0', '195.68.233.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.68.234.0', '195.68.235.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('195.68.236.0', '195.68.237.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.68.238.0', '195.68.239.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.240.0', '195.68.241.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.68.242.0', '195.68.243.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.68.244.0', '195.68.245.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.68.246.0', '195.68.247.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.68.248.0', '195.68.249.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.68.250.0', '195.68.251.255', 2147483647, 2147483647, 'FR', 'France'), +('195.68.252.0', '195.68.253.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.68.254.0', '195.68.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.69.0.0', '195.69.63.255', 2147483647, 2147483647, 'NO', 'Norway'), +('195.69.64.0', '195.69.67.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.69.68.0', '195.69.71.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.69.72.0', '195.69.75.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.69.76.0', '195.69.79.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.69.80.0', '195.69.83.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.69.84.0', '195.69.87.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.69.88.0', '195.69.91.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('195.69.92.0', '195.69.95.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.69.96.0', '195.69.99.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('195.69.100.0', '195.69.103.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.69.104.0', '195.69.107.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.69.108.0', '195.69.111.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('195.69.112.0', '195.69.115.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.69.116.0', '195.69.119.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.69.120.0', '195.69.123.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('195.69.124.0', '195.69.127.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.69.128.0', '195.69.131.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.69.132.0', '195.69.139.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.69.140.0', '195.69.143.255', 2147483647, 2147483647, 'KW', 'Kuwait'), +('195.69.144.0', '195.69.147.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.69.148.0', '195.69.151.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.69.152.0', '195.69.155.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.69.156.0', '195.69.159.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.69.160.0', '195.69.163.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.69.164.0', '195.69.167.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('195.69.168.0', '195.69.171.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.69.172.0', '195.69.175.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.69.176.0', '195.69.179.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.69.180.0', '195.69.183.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.69.184.0', '195.69.187.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.69.188.0', '195.69.191.255', 2147483647, 2147483647, 'UZ', 'Uzbekistan'), +('195.69.192.0', '195.69.195.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.69.196.0', '195.69.203.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.69.204.0', '195.69.207.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.69.208.0', '195.69.211.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('195.69.212.0', '195.69.215.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.69.216.0', '195.69.219.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.69.220.0', '195.69.223.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.69.224.0', '195.69.231.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.69.232.0', '195.69.235.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.69.236.0', '195.69.239.255', 2147483647, 2147483647, 'IL', 'Israel'), +('195.69.240.0', '195.69.243.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.69.244.0', '195.69.251.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.69.252.0', '195.69.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.70.0.0', '195.70.31.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.70.32.0', '195.70.63.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('195.70.64.0', '195.70.95.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.70.96.0', '195.70.127.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.70.128.0', '195.70.159.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('195.70.160.0', '195.70.191.255', 2147483647, 2147483647, 'NO', 'Norway'), +('195.70.192.0', '195.70.223.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.70.224.0', '195.70.255.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.71.0.0', '195.71.94.63', 2147483647, 2147483647, 'DE', 'Germany'), +('195.71.94.64', '195.71.94.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.71.94.128', '195.71.98.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.71.99.0', '195.71.99.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.71.99.64', '195.71.127.183', 2147483647, 2147483647, 'DE', 'Germany'), +('195.71.127.184', '195.71.127.191', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.71.127.192', '195.71.133.127', 2147483647, 2147483647, 'DE', 'Germany'), +('195.71.133.128', '195.71.133.143', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.71.133.144', '195.71.133.223', 2147483647, 2147483647, 'DE', 'Germany'), +('195.71.133.224', '195.71.133.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.71.134.0', '195.71.152.191', 2147483647, 2147483647, 'DE', 'Germany'), +('195.71.152.192', '195.71.152.199', 2147483647, 2147483647, 'FR', 'France'), +('195.71.152.200', '195.71.154.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.71.155.0', '195.71.155.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.71.155.128', '195.71.155.223', 2147483647, 2147483647, 'DE', 'Germany'), +('195.71.155.224', '195.71.155.239', 2147483647, 2147483647, 'FR', 'France'), +('195.71.155.240', '195.71.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.72.0.0', '195.72.31.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('195.72.32.0', '195.72.63.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.72.64.0', '195.72.65.127', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.72.65.128', '195.72.65.159', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('195.72.65.160', '195.72.92.31', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.72.92.32', '195.72.92.63', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.72.92.64', '195.72.95.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.72.96.0', '195.72.111.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.72.112.0', '195.72.112.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('195.72.113.0', '195.72.115.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.72.116.0', '195.72.127.255', 2147483647, 2147483647, 'IL', 'Israel'), +('195.72.128.0', '195.72.131.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.72.132.0', '195.72.135.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.72.136.0', '195.72.139.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('195.72.140.0', '195.72.143.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.72.144.0', '195.72.147.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.72.148.0', '195.72.151.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.72.152.0', '195.72.155.255', 2147483647, 2147483647, 'FR', 'France'), +('195.72.156.0', '195.72.159.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.72.160.0', '195.72.191.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.72.192.0', '195.72.223.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.72.224.0', '195.72.255.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.73.0.0', '195.73.1.31', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.1.32', '195.73.1.39', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.1.40', '195.73.1.151', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.1.152', '195.73.1.159', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.1.160', '195.73.1.183', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.1.184', '195.73.1.191', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.1.192', '195.73.2.7', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.2.8', '195.73.2.15', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.2.16', '195.73.2.119', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.2.120', '195.73.2.127', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.2.128', '195.73.2.215', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.2.216', '195.73.2.223', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.2.224', '195.73.3.103', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.3.104', '195.73.3.111', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.3.112', '195.73.3.175', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.3.176', '195.73.3.183', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.3.184', '195.73.5.7', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.5.8', '195.73.5.15', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.5.16', '195.73.5.55', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.5.56', '195.73.5.63', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.5.64', '195.73.5.175', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.5.176', '195.73.5.183', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.5.184', '195.73.6.207', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.6.208', '195.73.6.215', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.6.216', '195.73.6.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.7.0', '195.73.7.7', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.7.8', '195.73.7.15', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.7.16', '195.73.7.23', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.7.24', '195.73.7.31', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.7.32', '195.73.7.39', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.7.40', '195.73.7.191', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.7.192', '195.73.7.199', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.7.200', '195.73.7.207', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.7.208', '195.73.7.215', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.7.216', '195.73.8.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.8.64', '195.73.8.71', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.8.72', '195.73.8.135', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.8.136', '195.73.8.151', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.8.152', '195.73.8.175', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.8.176', '195.73.8.183', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.8.184', '195.73.8.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.9.0', '195.73.10.7', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.10.8', '195.73.10.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.10.64', '195.73.10.71', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.10.72', '195.73.10.239', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.10.240', '195.73.10.247', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.10.248', '195.73.10.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.11.0', '195.73.11.7', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.11.8', '195.73.12.71', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.12.72', '195.73.12.79', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.12.80', '195.73.12.95', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.12.96', '195.73.12.103', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.12.104', '195.73.12.151', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.12.152', '195.73.12.159', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.12.160', '195.73.13.135', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.13.136', '195.73.13.143', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.13.144', '195.73.13.159', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.13.160', '195.73.13.167', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.13.168', '195.73.13.223', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.13.224', '195.73.13.231', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.13.232', '195.73.14.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.14.64', '195.73.14.71', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.14.72', '195.73.14.231', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.14.232', '195.73.14.239', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.14.240', '195.73.15.207', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.15.208', '195.73.15.215', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.15.216', '195.73.15.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.16.0', '195.73.16.7', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.16.8', '195.73.17.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.17.128', '195.73.17.135', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.17.136', '195.73.17.175', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.17.176', '195.73.17.183', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.17.184', '195.73.17.239', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.17.240', '195.73.17.247', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.17.248', '195.73.18.7', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.18.8', '195.73.18.15', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.18.16', '195.73.19.55', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.19.56', '195.73.19.63', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.19.64', '195.73.19.95', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.19.96', '195.73.19.103', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.19.104', '195.73.19.111', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.19.112', '195.73.19.119', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.19.120', '195.73.19.183', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.19.184', '195.73.19.191', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.19.192', '195.73.19.247', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.19.248', '195.73.19.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.20.0', '195.73.21.31', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.21.32', '195.73.21.39', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.21.40', '195.73.21.79', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.21.80', '195.73.21.87', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.21.88', '195.73.21.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.22.0', '195.73.22.7', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.22.8', '195.73.22.31', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.22.32', '195.73.22.39', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.22.40', '195.73.22.231', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.22.232', '195.73.22.247', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.22.248', '195.73.25.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.26.0', '195.73.26.7', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.26.8', '195.73.26.55', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.26.56', '195.73.26.63', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.26.64', '195.73.26.87', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.26.88', '195.73.26.95', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.26.96', '195.73.26.207', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.26.208', '195.73.26.215', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.26.216', '195.73.26.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.27.0', '195.73.27.7', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.27.8', '195.73.27.71', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.27.72', '195.73.27.79', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.27.80', '195.73.27.183', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.27.184', '195.73.27.191', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.27.192', '195.73.28.39', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.28.40', '195.73.28.47', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.28.48', '195.73.28.207', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.28.208', '195.73.28.215', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.28.216', '195.73.29.47', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.29.48', '195.73.29.55', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.29.56', '195.73.29.71', 2147483647, 2147483647, 'NL', 'Netherlands'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('195.73.29.72', '195.73.29.79', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.29.80', '195.73.29.167', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.29.168', '195.73.29.175', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.29.176', '195.73.30.135', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.30.136', '195.73.30.143', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.30.144', '195.73.31.15', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.31.16', '195.73.31.23', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.31.24', '195.73.32.239', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.32.240', '195.73.32.247', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.32.248', '195.73.33.135', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.33.136', '195.73.33.143', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.33.144', '195.73.34.79', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.34.80', '195.73.34.95', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.34.96', '195.73.34.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.35.0', '195.73.35.7', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.35.8', '195.73.35.31', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.35.32', '195.73.35.39', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.35.40', '195.73.35.247', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.35.248', '195.73.35.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.36.0', '195.73.37.239', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.37.240', '195.73.37.247', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.37.248', '195.73.37.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.38.0', '195.73.38.7', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.38.8', '195.73.38.31', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.38.32', '195.73.38.39', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.38.40', '195.73.38.119', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.38.120', '195.73.38.127', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.38.128', '195.73.38.143', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.38.144', '195.73.38.159', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.38.160', '195.73.38.215', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.38.216', '195.73.38.223', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.38.224', '195.73.40.71', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.40.72', '195.73.40.79', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.40.80', '195.73.40.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.40.128', '195.73.40.135', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.40.136', '195.73.40.159', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.40.160', '195.73.40.167', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.40.168', '195.73.40.215', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.40.216', '195.73.40.223', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.40.224', '195.73.40.239', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.40.240', '195.73.40.247', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.40.248', '195.73.41.31', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.41.32', '195.73.41.39', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.41.40', '195.73.41.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.41.64', '195.73.41.71', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.41.72', '195.73.42.167', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.42.168', '195.73.42.175', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.42.176', '195.73.43.23', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.43.24', '195.73.43.31', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.43.32', '195.73.43.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.44.0', '195.73.44.7', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.44.8', '195.73.44.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.45.0', '195.73.45.7', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.45.8', '195.73.45.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.45.64', '195.73.45.71', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.45.72', '195.73.45.143', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.45.144', '195.73.45.167', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.45.168', '195.73.45.191', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.45.192', '195.73.45.199', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.45.200', '195.73.46.15', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.46.16', '195.73.46.23', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.46.24', '195.73.47.15', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.47.16', '195.73.47.23', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.47.24', '195.73.47.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.47.64', '195.73.47.71', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.47.72', '195.73.48.119', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.48.120', '195.73.48.127', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.48.128', '195.73.48.151', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.48.152', '195.73.48.159', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.48.160', '195.73.50.47', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.50.48', '195.73.50.55', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.50.56', '195.73.50.135', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.50.136', '195.73.50.143', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.50.144', '195.73.51.23', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.51.24', '195.73.51.31', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.51.32', '195.73.52.87', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.52.88', '195.73.52.95', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.52.96', '195.73.53.247', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.53.248', '195.73.53.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.54.0', '195.73.54.191', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.54.192', '195.73.54.199', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.54.200', '195.73.55.39', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.55.40', '195.73.55.47', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.55.48', '195.73.55.223', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.55.224', '195.73.55.231', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.55.232', '195.73.56.79', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.56.80', '195.73.56.87', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.56.88', '195.73.56.199', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.56.200', '195.73.56.207', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.56.208', '195.73.58.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.59.0', '195.73.59.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.60.0', '195.73.60.191', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.60.192', '195.73.60.199', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.60.200', '195.73.61.47', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.61.48', '195.73.61.63', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.61.64', '195.73.63.39', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.63.40', '195.73.63.47', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.63.48', '195.73.63.71', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.63.72', '195.73.63.79', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.63.80', '195.73.63.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.63.128', '195.73.63.135', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.63.136', '195.73.64.199', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.64.200', '195.73.64.215', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.64.216', '195.73.66.135', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.66.136', '195.73.66.151', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.66.152', '195.73.67.71', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.67.72', '195.73.67.79', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.67.80', '195.73.68.95', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.68.96', '195.73.68.103', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.68.104', '195.73.68.135', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.68.136', '195.73.68.143', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.68.144', '195.73.69.15', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.69.16', '195.73.69.23', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.69.24', '195.73.69.31', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.69.32', '195.73.69.47', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.69.48', '195.73.69.135', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.69.136', '195.73.69.143', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.69.144', '195.73.69.223', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.69.224', '195.73.69.231', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.69.232', '195.73.70.215', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.70.216', '195.73.70.223', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.70.224', '195.73.72.47', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.72.48', '195.73.72.55', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.72.56', '195.73.73.71', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.73.72', '195.73.73.79', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.73.80', '195.73.73.175', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.73.176', '195.73.73.183', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.73.184', '195.73.74.183', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.74.184', '195.73.74.191', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.74.192', '195.73.75.47', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.75.48', '195.73.75.55', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.75.56', '195.73.75.239', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.75.240', '195.73.75.247', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.75.248', '195.73.76.39', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.76.40', '195.73.76.47', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.76.48', '195.73.76.151', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.76.152', '195.73.76.159', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.76.160', '195.73.77.55', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.77.56', '195.73.77.63', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.77.64', '195.73.81.15', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.81.16', '195.73.81.23', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.81.24', '195.73.81.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.81.64', '195.73.81.71', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.81.72', '195.73.84.7', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.84.8', '195.73.84.15', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.84.16', '195.73.84.39', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.84.40', '195.73.84.47', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.84.48', '195.73.85.215', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.85.216', '195.73.85.223', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.85.224', '195.73.86.71', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.86.72', '195.73.86.79', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.86.80', '195.73.86.111', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.86.112', '195.73.86.119', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.86.120', '195.73.87.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.87.64', '195.73.87.71', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.87.72', '195.73.87.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.87.128', '195.73.87.135', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.87.136', '195.73.87.151', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.87.152', '195.73.87.159', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.87.160', '195.73.88.183', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.88.184', '195.73.88.191', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.88.192', '195.73.89.151', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.89.152', '195.73.89.159', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.89.160', '195.73.90.23', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.90.24', '195.73.90.31', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.90.32', '195.73.91.95', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.91.96', '195.73.91.111', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.91.112', '195.73.92.7', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.92.8', '195.73.92.15', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.92.16', '195.73.92.55', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.92.56', '195.73.92.63', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.92.64', '195.73.92.191', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.92.192', '195.73.92.207', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.92.208', '195.73.93.159', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.93.160', '195.73.93.167', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.93.168', '195.73.93.191', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.93.192', '195.73.93.199', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.93.200', '195.73.93.247', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.93.248', '195.73.93.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.94.0', '195.73.94.15', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.94.16', '195.73.94.23', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.94.24', '195.73.94.71', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.94.72', '195.73.94.79', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.94.80', '195.73.94.183', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.94.184', '195.73.94.191', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.94.192', '195.73.94.231', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.94.232', '195.73.94.239', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.94.240', '195.73.95.175', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.95.176', '195.73.95.183', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.95.184', '195.73.96.175', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.96.176', '195.73.96.183', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.96.184', '195.73.97.39', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.97.40', '195.73.97.47', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.97.48', '195.73.97.247', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.97.248', '195.73.97.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.98.0', '195.73.99.87', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.99.88', '195.73.99.95', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.99.96', '195.73.99.159', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.99.160', '195.73.99.167', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.99.168', '195.73.100.7', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.100.8', '195.73.100.15', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.100.16', '195.73.100.39', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.100.40', '195.73.100.47', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.100.48', '195.73.100.231', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.100.232', '195.73.100.239', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.100.240', '195.73.101.15', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.101.16', '195.73.101.23', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.101.24', '195.73.101.55', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.101.56', '195.73.101.71', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.101.72', '195.73.103.7', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.103.8', '195.73.103.15', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.103.16', '195.73.105.215', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.105.216', '195.73.105.223', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.105.224', '195.73.107.111', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.107.112', '195.73.107.119', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.107.120', '195.73.109.15', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.109.16', '195.73.109.31', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.109.32', '195.73.110.119', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.110.120', '195.73.110.127', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.110.128', '195.73.110.191', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.110.192', '195.73.110.199', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.110.200', '195.73.110.215', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.110.216', '195.73.110.223', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.110.224', '195.73.110.231', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.110.232', '195.73.110.239', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.110.240', '195.73.111.39', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.111.40', '195.73.111.47', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.111.48', '195.73.111.191', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.111.192', '195.73.111.199', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.111.200', '195.73.111.207', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.111.208', '195.73.111.215', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.111.216', '195.73.111.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.112.0', '195.73.112.7', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.112.8', '195.73.112.199', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.112.200', '195.73.112.207', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.112.208', '195.73.114.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.114.128', '195.73.114.135', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.114.136', '195.73.115.143', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.115.144', '195.73.115.151', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.115.152', '195.73.116.223', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.116.224', '195.73.116.231', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.116.232', '195.73.117.55', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.117.56', '195.73.117.63', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.117.64', '195.73.117.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.117.128', '195.73.117.135', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.117.136', '195.73.117.143', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.117.144', '195.73.117.151', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.117.152', '195.73.117.231', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.117.232', '195.73.117.239', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.117.240', '195.73.117.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.118.0', '195.73.118.7', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.118.8', '195.73.122.199', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.122.200', '195.73.122.207', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.122.208', '195.73.123.71', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.123.72', '195.73.123.79', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.123.80', '195.73.124.23', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.124.24', '195.73.124.31', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.124.32', '195.73.124.71', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.124.72', '195.73.124.79', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.124.80', '195.73.124.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.124.128', '195.73.124.135', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.124.136', '195.73.124.215', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.124.216', '195.73.124.223', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.124.224', '195.73.125.199', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.125.200', '195.73.125.207', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.125.208', '195.73.126.47', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.126.48', '195.73.126.55', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.126.56', '195.73.127.151', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.127.152', '195.73.127.159', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.127.160', '195.73.128.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.128.128', '195.73.128.135', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.128.136', '195.73.129.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.129.128', '195.73.129.135', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.129.136', '195.73.129.167', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.129.168', '195.73.129.175', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.129.176', '195.73.130.47', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.130.48', '195.73.130.55', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.130.56', '195.73.130.151', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.130.152', '195.73.130.159', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.130.160', '195.73.130.175', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.130.176', '195.73.130.183', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.130.184', '195.73.130.231', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.130.232', '195.73.130.239', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.130.240', '195.73.130.247', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.130.248', '195.73.130.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.131.0', '195.73.133.39', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.133.40', '195.73.133.63', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.133.64', '195.73.134.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.134.128', '195.73.134.135', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.134.136', '195.73.134.175', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.134.176', '195.73.134.183', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.134.184', '195.73.135.207', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.135.208', '195.73.135.215', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.135.216', '195.73.136.31', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.136.32', '195.73.136.39', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.136.40', '195.73.139.39', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.139.40', '195.73.139.47', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.139.48', '195.73.139.199', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.139.200', '195.73.139.207', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.139.208', '195.73.139.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.140.0', '195.73.140.7', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.140.8', '195.73.140.247', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.140.248', '195.73.141.7', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.141.8', '195.73.141.103', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.141.104', '195.73.141.111', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.141.112', '195.73.142.31', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.142.32', '195.73.142.39', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.142.40', '195.73.144.119', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.144.120', '195.73.144.127', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.144.128', '195.73.144.199', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.144.200', '195.73.144.207', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.144.208', '195.73.144.239', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.144.240', '195.73.144.247', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.144.248', '195.73.145.207', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.145.208', '195.73.145.215', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.145.216', '195.73.147.55', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.147.56', '195.73.147.63', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.147.64', '195.73.147.71', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.147.72', '195.73.147.79', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.147.80', '195.73.147.191', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.147.192', '195.73.147.199', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.147.200', '195.73.148.31', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.148.32', '195.73.148.39', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.148.40', '195.73.148.143', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.148.144', '195.73.148.151', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.148.152', '195.73.149.71', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.149.72', '195.73.149.79', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.149.80', '195.73.149.111', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.149.112', '195.73.149.119', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.149.120', '195.73.149.191', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.149.192', '195.73.149.199', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.149.200', '195.73.150.119', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.150.120', '195.73.150.127', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.150.128', '195.73.151.55', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.151.56', '195.73.151.63', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.151.64', '195.73.152.39', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.152.40', '195.73.152.47', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.152.48', '195.73.153.55', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.153.56', '195.73.153.63', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.153.64', '195.73.154.207', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.154.208', '195.73.154.215', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.154.216', '195.73.156.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.156.128', '195.73.156.135', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.156.136', '195.73.156.239', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.156.240', '195.73.156.247', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.156.248', '195.73.157.151', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.157.152', '195.73.157.159', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.157.160', '195.73.157.167', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.157.168', '195.73.157.175', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.157.176', '195.73.158.199', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.158.200', '195.73.158.207', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.158.208', '195.73.159.167', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.159.168', '195.73.159.175', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.159.176', '195.73.160.79', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.160.80', '195.73.160.87', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.160.88', '195.73.162.143', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.162.144', '195.73.162.151', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.162.152', '195.73.163.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.163.128', '195.73.163.135', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.163.136', '195.73.163.231', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.163.232', '195.73.163.239', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.163.240', '195.73.164.87', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.164.88', '195.73.164.95', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.164.96', '195.73.164.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.164.128', '195.73.164.135', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.164.136', '195.73.165.39', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.165.40', '195.73.165.47', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.165.48', '195.73.165.55', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.165.56', '195.73.165.63', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.165.64', '195.73.166.39', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.166.40', '195.73.166.47', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.166.48', '195.73.168.111', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.168.112', '195.73.168.119', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.168.120', '195.73.169.135', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.169.136', '195.73.169.143', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.169.144', '195.73.169.215', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.169.216', '195.73.169.223', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.169.224', '195.73.170.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.170.128', '195.73.170.135', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.170.136', '195.73.171.87', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.171.88', '195.73.171.95', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.171.96', '195.73.171.151', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.171.152', '195.73.171.159', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.171.160', '195.73.171.167', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.171.168', '195.73.171.175', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.171.176', '195.73.171.191', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.171.192', '195.73.171.199', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.171.200', '195.73.172.111', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.172.112', '195.73.172.119', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.172.120', '195.73.173.215', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.173.216', '195.73.173.223', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.173.224', '195.73.174.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.174.128', '195.73.174.135', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.174.136', '195.73.174.143', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.174.144', '195.73.174.151', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.174.152', '195.73.175.39', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.175.40', '195.73.175.47', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.175.48', '195.73.175.151', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.175.152', '195.73.175.159', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.175.160', '195.73.176.111', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.176.112', '195.73.176.119', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.176.120', '195.73.176.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.177.0', '195.73.177.7', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.177.8', '195.73.177.95', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.177.96', '195.73.177.103', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.177.104', '195.73.177.167', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.177.168', '195.73.177.175', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.177.176', '195.73.177.183', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.177.184', '195.73.177.191', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.177.192', '195.73.177.199', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.177.200', '195.73.177.207', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.177.208', '195.73.178.31', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.178.32', '195.73.178.39', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.178.40', '195.73.178.47', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.178.48', '195.73.178.55', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.178.56', '195.73.178.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.178.64', '195.73.178.71', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.178.72', '195.73.178.79', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.178.80', '195.73.178.87', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.178.88', '195.73.178.111', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.178.112', '195.73.178.119', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.178.120', '195.73.178.159', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.178.160', '195.73.178.167', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.178.168', '195.73.178.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.179.0', '195.73.179.7', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.179.8', '195.73.179.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.179.128', '195.73.179.135', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.179.136', '195.73.179.159', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.179.160', '195.73.179.167', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.179.168', '195.73.180.55', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.180.56', '195.73.180.63', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.180.64', '195.73.180.95', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.180.96', '195.73.180.103', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.180.104', '195.73.180.143', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.180.144', '195.73.180.159', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.180.160', '195.73.180.231', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.180.232', '195.73.180.239', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.180.240', '195.73.180.247', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.180.248', '195.73.181.7', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.181.8', '195.73.181.23', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.181.24', '195.73.181.31', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.181.32', '195.73.181.87', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.181.88', '195.73.181.95', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.181.96', '195.73.182.79', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.182.80', '195.73.182.87', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.182.88', '195.73.183.95', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.183.96', '195.73.183.103', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.183.104', '195.73.183.183', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.183.184', '195.73.183.191', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.183.192', '195.73.183.207', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.183.208', '195.73.183.215', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.183.216', '195.73.183.223', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.183.224', '195.73.183.231', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.183.232', '195.73.185.215', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.185.216', '195.73.185.223', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.185.224', '195.73.186.111', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.186.112', '195.73.186.119', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.186.120', '195.73.186.191', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.186.192', '195.73.186.199', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.186.200', '195.73.187.39', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.187.40', '195.73.187.47', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.187.48', '195.73.187.215', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.187.216', '195.73.187.223', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.187.224', '195.73.187.231', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.187.232', '195.73.187.239', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.187.240', '195.73.188.31', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.188.32', '195.73.188.39', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.188.40', '195.73.188.71', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.188.72', '195.73.188.79', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.188.80', '195.73.188.199', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.188.200', '195.73.188.215', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.188.216', '195.73.188.223', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.188.224', '195.73.188.231', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.188.232', '195.73.189.167', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.189.168', '195.73.189.175', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.189.176', '195.73.189.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.190.0', '195.73.190.7', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.190.8', '195.73.190.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.190.64', '195.73.190.71', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.190.72', '195.73.191.151', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.191.152', '195.73.191.159', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.191.160', '195.73.191.239', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.191.240', '195.73.191.247', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.191.248', '195.73.192.7', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.192.8', '195.73.192.23', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.192.24', '195.73.192.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.192.64', '195.73.192.71', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.192.72', '195.73.192.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.192.128', '195.73.192.135', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.192.136', '195.73.193.31', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.193.32', '195.73.193.39', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.193.40', '195.73.193.71', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.193.72', '195.73.193.79', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.193.80', '195.73.193.151', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.193.152', '195.73.193.159', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.193.160', '195.73.194.71', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.194.72', '195.73.194.79', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.194.80', '195.73.194.111', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.194.112', '195.73.194.119', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.194.120', '195.73.194.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.194.128', '195.73.194.135', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.194.136', '195.73.194.199', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.194.200', '195.73.194.207', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.194.208', '195.73.195.23', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.195.24', '195.73.195.39', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.195.40', '195.73.195.175', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.195.176', '195.73.195.183', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.195.184', '195.73.195.239', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.195.240', '195.73.195.247', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.195.248', '195.73.196.71', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.196.72', '195.73.196.79', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.196.80', '195.73.196.111', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.196.112', '195.73.196.119', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.196.120', '195.73.196.167', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.196.168', '195.73.196.175', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.196.176', '195.73.197.39', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.197.40', '195.73.197.47', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.197.48', '195.73.197.111', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.197.112', '195.73.197.119', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.197.120', '195.73.197.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.198.0', '195.73.198.7', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.198.8', '195.73.198.143', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.198.144', '195.73.198.151', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.198.152', '195.73.198.207', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.198.208', '195.73.198.215', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.198.216', '195.73.199.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.199.64', '195.73.199.71', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.199.72', '195.73.201.47', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.201.48', '195.73.201.55', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.201.56', '195.73.201.199', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.201.200', '195.73.201.207', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.201.208', '195.73.201.231', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.201.232', '195.73.201.239', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.201.240', '195.73.202.31', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.202.32', '195.73.202.39', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.202.40', '195.73.202.199', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.202.200', '195.73.202.207', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.202.208', '195.73.203.231', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.203.232', '195.73.203.239', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.203.240', '195.73.205.55', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.205.56', '195.73.205.63', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.205.64', '195.73.205.79', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.205.80', '195.73.205.87', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.205.88', '195.73.205.175', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.205.176', '195.73.205.183', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.205.184', '195.73.206.7', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.206.8', '195.73.206.15', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.206.16', '195.73.206.31', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.206.32', '195.73.206.39', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.206.40', '195.73.206.79', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.206.80', '195.73.206.87', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.206.88', '195.73.207.87', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.207.88', '195.73.207.95', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.207.96', '195.73.207.231', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.207.232', '195.73.207.247', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.207.248', '195.73.207.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.208.0', '195.73.208.7', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.208.8', '195.73.208.87', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.208.88', '195.73.208.95', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.208.96', '195.73.208.175', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.208.176', '195.73.208.183', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.208.184', '195.73.209.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.209.64', '195.73.209.71', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.209.72', '195.73.209.119', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.209.120', '195.73.209.127', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.209.128', '195.73.209.199', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.209.200', '195.73.209.207', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.209.208', '195.73.210.55', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.210.56', '195.73.210.63', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.210.64', '195.73.210.87', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.210.88', '195.73.210.95', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.210.96', '195.73.211.31', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.211.32', '195.73.211.39', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.211.40', '195.73.211.55', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.211.56', '195.73.211.63', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.211.64', '195.73.212.23', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.212.24', '195.73.212.31', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.212.32', '195.73.212.79', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.212.80', '195.73.212.87', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.212.88', '195.73.212.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.212.128', '195.73.212.135', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.212.136', '195.73.212.167', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.212.168', '195.73.212.175', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.212.176', '195.73.212.239', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.212.240', '195.73.212.247', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.212.248', '195.73.213.191', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.213.192', '195.73.213.199', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.213.200', '195.73.213.239', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.213.240', '195.73.213.247', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.213.248', '195.73.214.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.214.64', '195.73.214.71', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.214.72', '195.73.214.175', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.214.176', '195.73.214.183', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.214.184', '195.73.214.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.215.0', '195.73.215.7', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.215.8', '195.73.215.31', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.215.32', '195.73.215.39', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.215.40', '195.73.215.119', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.215.120', '195.73.215.127', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.215.128', '195.73.215.143', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.215.144', '195.73.215.151', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.215.152', '195.73.215.183', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.215.184', '195.73.215.191', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.215.192', '195.73.216.39', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.216.40', '195.73.216.47', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.216.48', '195.73.216.71', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.216.72', '195.73.216.79', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.216.80', '195.73.216.111', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.216.112', '195.73.216.119', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.216.120', '195.73.216.175', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.216.176', '195.73.216.191', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.216.192', '195.73.216.215', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.216.216', '195.73.216.223', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.216.224', '195.73.216.239', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.216.240', '195.73.216.247', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.216.248', '195.73.217.199', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.217.200', '195.73.217.207', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.217.208', '195.73.217.231', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.217.232', '195.73.217.239', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.217.240', '195.73.217.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.218.0', '195.73.218.7', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.218.8', '195.73.219.15', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.219.16', '195.73.219.23', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.219.24', '195.73.220.239', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.220.240', '195.73.220.247', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.220.248', '195.73.221.47', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.221.48', '195.73.221.55', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.221.56', '195.73.221.111', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.221.112', '195.73.221.119', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.221.120', '195.73.221.223', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.221.224', '195.73.221.231', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.221.232', '195.73.221.247', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.221.248', '195.73.221.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.222.0', '195.73.223.87', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.223.88', '195.73.223.95', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.223.96', '195.73.223.103', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.223.104', '195.73.223.111', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.223.112', '195.73.223.119', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.223.120', '195.73.223.127', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.223.128', '195.73.223.239', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.223.240', '195.73.223.247', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.223.248', '195.73.223.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.224.0', '195.73.224.15', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.224.16', '195.73.224.31', 2147483647, 2147483647, 'NL', 'Netherlands'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('195.73.224.32', '195.73.224.39', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.224.40', '195.73.224.87', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.224.88', '195.73.224.95', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.224.96', '195.73.224.191', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.224.192', '195.73.224.199', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.224.200', '195.73.224.207', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.224.208', '195.73.224.215', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.224.216', '195.73.224.247', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.224.248', '195.73.225.7', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.225.8', '195.73.225.79', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.225.80', '195.73.225.87', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.225.88', '195.73.225.135', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.225.136', '195.73.225.143', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.225.144', '195.73.225.183', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.225.184', '195.73.225.191', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.225.192', '195.73.225.231', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.225.232', '195.73.225.239', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.225.240', '195.73.226.87', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.226.88', '195.73.226.95', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.226.96', '195.73.227.167', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.227.168', '195.73.227.175', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.227.176', '195.73.227.223', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.227.224', '195.73.227.239', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.227.240', '195.73.228.199', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.228.200', '195.73.228.207', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.228.208', '195.73.229.23', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.229.24', '195.73.229.31', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.229.32', '195.73.229.111', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.229.112', '195.73.229.119', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.229.120', '195.73.229.215', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.229.216', '195.73.229.223', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.229.224', '195.73.230.23', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.230.24', '195.73.230.31', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.230.32', '195.73.230.95', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.230.96', '195.73.230.103', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.230.104', '195.73.230.111', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.230.112', '195.73.230.119', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.230.120', '195.73.230.167', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.230.168', '195.73.230.175', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.230.176', '195.73.231.103', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.231.104', '195.73.231.111', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.231.112', '195.73.231.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.231.128', '195.73.231.135', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.231.136', '195.73.231.143', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.231.144', '195.73.231.151', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.231.152', '195.73.232.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.233.0', '195.73.233.7', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.233.8', '195.73.233.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.233.128', '195.73.233.135', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.233.136', '195.73.234.15', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.234.16', '195.73.234.23', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.234.24', '195.73.234.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.234.64', '195.73.234.71', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.234.72', '195.73.234.175', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.234.176', '195.73.234.183', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.234.184', '195.73.235.47', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.235.48', '195.73.235.55', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.235.56', '195.73.235.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.235.128', '195.73.235.135', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.235.136', '195.73.235.175', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.235.176', '195.73.235.183', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.235.184', '195.73.236.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.236.64', '195.73.236.71', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.236.72', '195.73.236.87', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.236.88', '195.73.236.95', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.236.96', '195.73.236.191', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.236.192', '195.73.236.199', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.236.200', '195.73.236.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.237.0', '195.73.237.7', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.237.8', '195.73.237.23', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.237.24', '195.73.237.31', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.237.32', '195.73.237.71', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.237.72', '195.73.237.87', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.237.88', '195.73.237.135', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.237.136', '195.73.237.143', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.237.144', '195.73.238.95', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.238.96', '195.73.238.103', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.238.104', '195.73.238.151', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.238.152', '195.73.238.175', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.238.176', '195.73.238.207', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.238.208', '195.73.238.215', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.238.216', '195.73.239.71', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.239.72', '195.73.239.79', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.239.80', '195.73.239.87', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.239.88', '195.73.239.95', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.239.96', '195.73.239.175', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.239.176', '195.73.239.183', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.239.184', '195.73.239.207', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.239.208', '195.73.239.215', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.239.216', '195.73.240.71', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.240.72', '195.73.240.79', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.240.80', '195.73.240.159', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.240.160', '195.73.240.167', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.240.168', '195.73.241.15', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.241.16', '195.73.241.23', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.241.24', '195.73.241.31', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.241.32', '195.73.241.39', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.241.40', '195.73.241.191', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.241.192', '195.73.241.199', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.241.200', '195.73.241.207', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.241.208', '195.73.241.215', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.241.216', '195.73.241.223', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.241.224', '195.73.241.231', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.241.232', '195.73.241.239', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.241.240', '195.73.241.247', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.241.248', '195.73.242.39', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.242.40', '195.73.242.47', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.242.48', '195.73.242.87', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.242.88', '195.73.242.95', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.242.96', '195.73.242.167', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.242.168', '195.73.242.175', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.242.176', '195.73.242.199', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.242.200', '195.73.242.207', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.242.208', '195.73.243.23', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.243.24', '195.73.243.31', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.243.32', '195.73.243.71', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.243.72', '195.73.243.79', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.243.80', '195.73.243.111', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.243.112', '195.73.243.127', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.243.128', '195.73.243.223', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.243.224', '195.73.243.231', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.243.232', '195.73.244.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.244.128', '195.73.244.135', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.244.136', '195.73.244.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.245.0', '195.73.245.7', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.245.8', '195.73.246.175', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.246.176', '195.73.246.183', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.246.184', '195.73.246.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.247.0', '195.73.247.7', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.247.8', '195.73.247.239', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.247.240', '195.73.247.247', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.247.248', '195.73.247.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.248.0', '195.73.248.7', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.248.8', '195.73.249.71', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.249.72', '195.73.249.87', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.249.88', '195.73.250.15', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.250.16', '195.73.250.23', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.250.24', '195.73.251.175', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.251.176', '195.73.251.183', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.251.184', '195.73.251.215', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.251.216', '195.73.251.223', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.251.224', '195.73.253.143', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.253.144', '195.73.253.151', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.253.152', '195.73.254.103', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.254.104', '195.73.254.111', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.254.112', '195.73.254.135', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.254.136', '195.73.254.143', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.254.144', '195.73.255.231', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.73.255.232', '195.73.255.239', 2147483647, 2147483647, 'DE', 'Germany'), +('195.73.255.240', '195.73.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.74.0.0', '195.74.31.255', 2147483647, 2147483647, 'FI', 'Finland'), +('195.74.32.0', '195.74.35.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.74.36.0', '195.74.39.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.74.40.0', '195.74.47.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.74.48.0', '195.74.51.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.74.52.0', '195.74.55.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.74.56.0', '195.74.59.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.74.60.0', '195.74.61.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.74.62.0', '195.74.63.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.74.64.0', '195.74.64.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.74.65.0', '195.74.65.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.74.66.0', '195.74.66.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.74.67.0', '195.74.67.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.74.68.0', '195.74.68.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.74.69.0', '195.74.69.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.74.70.0', '195.74.70.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.74.71.0', '195.74.71.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.74.72.0', '195.74.72.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.74.73.0', '195.74.73.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.74.74.0', '195.74.74.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.74.75.0', '195.74.75.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.74.76.0', '195.74.77.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.74.78.0', '195.74.78.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.74.79.0', '195.74.79.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.74.80.0', '195.74.80.255', 2147483647, 2147483647, 'FR', 'France'), +('195.74.81.0', '195.74.81.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.74.82.0', '195.74.82.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.74.83.0', '195.74.83.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.74.84.0', '195.74.84.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.74.85.0', '195.74.85.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('195.74.86.0', '195.74.86.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.74.88.0', '195.74.90.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.74.91.0', '195.74.92.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.74.93.0', '195.74.93.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.74.94.0', '195.74.94.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.74.95.0', '195.74.95.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.74.96.0', '195.74.159.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.74.160.0', '195.74.174.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.74.175.0', '195.74.191.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.74.192.0', '195.74.223.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.74.224.0', '195.74.255.255', 2147483647, 2147483647, 'GR', 'Greece'), +('195.75.0.0', '195.75.0.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.1.0', '195.75.1.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.75.2.0', '195.75.2.31', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.2.32', '195.75.2.63', 2147483647, 2147483647, 'AT', 'Austria'), +('195.75.2.64', '195.75.3.15', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.3.16', '195.75.3.23', 2147483647, 2147483647, 'AT', 'Austria'), +('195.75.3.24', '195.75.3.31', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.3.32', '195.75.3.47', 2147483647, 2147483647, 'AT', 'Austria'), +('195.75.3.48', '195.75.3.55', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.3.56', '195.75.3.111', 2147483647, 2147483647, 'AT', 'Austria'), +('195.75.3.112', '195.75.3.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.3.128', '195.75.3.191', 2147483647, 2147483647, 'AT', 'Austria'), +('195.75.3.192', '195.75.3.207', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.3.208', '195.75.3.223', 2147483647, 2147483647, 'AT', 'Austria'), +('195.75.3.224', '195.75.3.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.4.0', '195.75.5.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.75.6.0', '195.75.7.159', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.7.160', '195.75.7.183', 2147483647, 2147483647, 'AT', 'Austria'), +('195.75.7.184', '195.75.7.207', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.7.208', '195.75.7.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.75.8.0', '195.75.10.135', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.10.136', '195.75.10.143', 2147483647, 2147483647, 'IT', 'Italy'), +('195.75.10.144', '195.75.10.159', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.10.160', '195.75.10.183', 2147483647, 2147483647, 'IT', 'Italy'), +('195.75.10.184', '195.75.10.191', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.10.192', '195.75.10.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.75.11.0', '195.75.13.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.14.0', '195.75.14.47', 2147483647, 2147483647, 'IT', 'Italy'), +('195.75.14.48', '195.75.14.79', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.14.80', '195.75.14.151', 2147483647, 2147483647, 'IT', 'Italy'), +('195.75.14.152', '195.75.14.159', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.14.160', '195.75.14.167', 2147483647, 2147483647, 'IT', 'Italy'), +('195.75.14.168', '195.75.14.175', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.14.176', '195.75.14.191', 2147483647, 2147483647, 'IT', 'Italy'), +('195.75.14.192', '195.75.14.207', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.14.208', '195.75.14.215', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.75.14.216', '195.75.14.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.75.15.0', '195.75.15.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.75.15.128', '195.75.15.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.16.0', '195.75.16.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.75.17.0', '195.75.19.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.20.0', '195.75.22.15', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.75.22.16', '195.75.22.23', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.22.24', '195.75.22.31', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.75.22.32', '195.75.23.95', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.23.96', '195.75.23.103', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.75.23.104', '195.75.23.111', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.23.112', '195.75.23.127', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.75.23.128', '195.75.23.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.24.0', '195.75.25.135', 2147483647, 2147483647, 'FR', 'France'), +('195.75.25.136', '195.75.25.143', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.25.144', '195.75.26.151', 2147483647, 2147483647, 'FR', 'France'), +('195.75.26.152', '195.75.26.159', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.26.160', '195.75.26.191', 2147483647, 2147483647, 'FR', 'France'), +('195.75.26.192', '195.75.26.223', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.26.224', '195.75.26.239', 2147483647, 2147483647, 'FR', 'France'), +('195.75.26.240', '195.75.26.247', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.26.248', '195.75.27.111', 2147483647, 2147483647, 'FR', 'France'), +('195.75.27.112', '195.75.27.119', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.75.27.120', '195.75.28.127', 2147483647, 2147483647, 'FR', 'France'), +('195.75.28.128', '195.75.28.159', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.28.160', '195.75.28.255', 2147483647, 2147483647, 'FR', 'France'), +('195.75.29.0', '195.75.30.15', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.30.16', '195.75.30.31', 2147483647, 2147483647, 'FR', 'France'), +('195.75.30.32', '195.75.30.63', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.30.64', '195.75.30.95', 2147483647, 2147483647, 'FR', 'France'), +('195.75.30.96', '195.75.30.111', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.30.112', '195.75.30.127', 2147483647, 2147483647, 'FR', 'France'), +('195.75.30.128', '195.75.30.143', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.30.144', '195.75.30.159', 2147483647, 2147483647, 'FR', 'France'), +('195.75.30.160', '195.75.30.191', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.30.192', '195.75.31.15', 2147483647, 2147483647, 'FR', 'France'), +('195.75.31.16', '195.75.31.47', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.31.48', '195.75.31.63', 2147483647, 2147483647, 'FR', 'France'), +('195.75.31.64', '195.75.31.95', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.31.96', '195.75.31.119', 2147483647, 2147483647, 'FR', 'France'), +('195.75.31.120', '195.75.31.143', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.31.144', '195.75.31.183', 2147483647, 2147483647, 'FR', 'France'), +('195.75.31.184', '195.75.31.191', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.31.192', '195.75.31.223', 2147483647, 2147483647, 'FR', 'France'), +('195.75.31.224', '195.75.31.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.32.0', '195.75.32.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.75.33.0', '195.75.33.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.34.0', '195.75.35.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.75.36.0', '195.75.39.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.40.0', '195.75.40.255', 2147483647, 2147483647, 'GR', 'Greece'), +('195.75.41.0', '195.75.41.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.42.0', '195.75.43.31', 2147483647, 2147483647, 'GR', 'Greece'), +('195.75.43.32', '195.75.43.63', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.43.64', '195.75.43.191', 2147483647, 2147483647, 'GR', 'Greece'), +('195.75.43.192', '195.75.43.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.44.0', '195.75.44.127', 2147483647, 2147483647, 'GR', 'Greece'), +('195.75.44.128', '195.75.44.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.45.0', '195.75.46.255', 2147483647, 2147483647, 'GR', 'Greece'), +('195.75.47.0', '195.75.47.31', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.47.32', '195.75.47.127', 2147483647, 2147483647, 'GR', 'Greece'), +('195.75.47.128', '195.75.47.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.48.0', '195.75.48.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('195.75.49.0', '195.75.51.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.52.0', '195.75.55.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.75.56.0', '195.75.56.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.57.0', '195.75.57.255', 2147483647, 2147483647, 'GR', 'Greece'), +('195.75.58.0', '195.75.64.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.65.0', '195.75.65.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('195.75.66.0', '195.75.71.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.72.0', '195.75.73.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.75.74.0', '195.75.74.63', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('195.75.74.64', '195.75.74.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.74.128', '195.75.75.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('195.75.76.0', '195.75.76.71', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.75.76.72', '195.75.76.79', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.76.80', '195.75.77.23', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.75.77.24', '195.75.77.31', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.77.32', '195.75.77.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.75.77.96', '195.75.77.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.78.0', '195.75.78.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.75.78.144', '195.75.78.151', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.78.152', '195.75.78.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.75.78.192', '195.75.78.199', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.78.200', '195.75.81.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.75.81.128', '195.75.81.191', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.81.192', '195.75.86.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.75.86.48', '195.75.86.79', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.86.80', '195.75.86.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.75.86.224', '195.75.86.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.87.0', '195.75.91.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.75.91.64', '195.75.91.159', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.91.160', '195.75.91.207', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.75.91.208', '195.75.91.215', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.91.216', '195.75.94.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.75.95.0', '195.75.95.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.96.0', '195.75.96.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.75.97.0', '195.75.97.63', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.97.64', '195.75.97.143', 2147483647, 2147483647, 'DE', 'Germany'), +('195.75.97.144', '195.75.97.151', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.97.152', '195.75.97.159', 2147483647, 2147483647, 'DE', 'Germany'), +('195.75.97.160', '195.75.97.191', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.97.192', '195.75.97.223', 2147483647, 2147483647, 'DE', 'Germany'), +('195.75.97.224', '195.75.97.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.98.0', '195.75.98.191', 2147483647, 2147483647, 'DE', 'Germany'), +('195.75.98.192', '195.75.98.207', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.98.208', '195.75.99.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.75.100.0', '195.75.100.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.75.100.128', '195.75.101.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.101.128', '195.75.101.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.75.101.144', '195.75.101.151', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.101.152', '195.75.101.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.75.102.0', '195.75.104.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.75.105.0', '195.75.105.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.106.0', '195.75.106.47', 2147483647, 2147483647, 'DE', 'Germany'), +('195.75.106.48', '195.75.106.63', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.106.64', '195.75.106.159', 2147483647, 2147483647, 'DE', 'Germany'), +('195.75.106.160', '195.75.106.223', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.106.224', '195.75.106.239', 2147483647, 2147483647, 'DE', 'Germany'), +('195.75.106.240', '195.75.106.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.107.0', '195.75.107.47', 2147483647, 2147483647, 'DE', 'Germany'), +('195.75.107.48', '195.75.107.63', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.107.64', '195.75.107.79', 2147483647, 2147483647, 'DE', 'Germany'), +('195.75.107.80', '195.75.107.87', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.107.88', '195.75.107.103', 2147483647, 2147483647, 'DE', 'Germany'), +('195.75.107.104', '195.75.107.223', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.107.224', '195.75.108.31', 2147483647, 2147483647, 'DE', 'Germany'), +('195.75.108.32', '195.75.108.63', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.75.108.64', '195.75.108.127', 2147483647, 2147483647, 'DE', 'Germany'), +('195.75.108.128', '195.75.108.159', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.108.160', '195.75.108.191', 2147483647, 2147483647, 'DE', 'Germany'), +('195.75.108.192', '195.75.109.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.110.0', '195.75.110.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.75.111.0', '195.75.111.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.112.0', '195.75.112.31', 2147483647, 2147483647, 'DE', 'Germany'), +('195.75.112.32', '195.75.112.63', 2147483647, 2147483647, 'FR', 'France'), +('195.75.112.64', '195.75.112.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.112.128', '195.75.112.175', 2147483647, 2147483647, 'DE', 'Germany'), +('195.75.112.176', '195.75.112.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.113.0', '195.75.113.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.75.114.0', '195.75.116.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.117.0', '195.75.127.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.75.128.0', '195.75.129.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('195.75.130.0', '195.75.130.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.131.0', '195.75.131.63', 2147483647, 2147483647, 'ZA', 'South Africa'), +('195.75.131.64', '195.75.131.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.131.128', '195.75.131.207', 2147483647, 2147483647, 'ZA', 'South Africa'), +('195.75.131.208', '195.75.131.215', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.131.216', '195.75.131.223', 2147483647, 2147483647, 'ZA', 'South Africa'), +('195.75.131.224', '195.75.131.239', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.131.240', '195.75.132.47', 2147483647, 2147483647, 'ZA', 'South Africa'), +('195.75.132.48', '195.75.132.63', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.132.64', '195.75.132.79', 2147483647, 2147483647, 'ZA', 'South Africa'), +('195.75.132.80', '195.75.132.95', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.132.96', '195.75.132.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('195.75.133.0', '195.75.133.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.134.0', '195.75.135.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('195.75.136.0', '195.75.136.95', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.75.136.96', '195.75.136.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.137.0', '195.75.137.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.75.138.0', '195.75.139.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.140.0', '195.75.140.167', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.75.140.168', '195.75.140.191', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.140.192', '195.75.140.255', 2147483647, 2147483647, 'FR', 'France'), +('195.75.141.0', '195.75.141.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.75.142.0', '195.75.142.7', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.142.8', '195.75.143.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.75.144.0', '195.75.147.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.75.148.0', '195.75.149.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.150.0', '195.75.150.15', 2147483647, 2147483647, 'IT', 'Italy'), +('195.75.150.16', '195.75.150.63', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.150.64', '195.75.150.95', 2147483647, 2147483647, 'IT', 'Italy'), +('195.75.150.96', '195.75.150.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.150.128', '195.75.150.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.75.150.192', '195.75.152.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.153.0', '195.75.154.31', 2147483647, 2147483647, 'ZA', 'South Africa'), +('195.75.154.32', '195.75.154.79', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.154.80', '195.75.154.95', 2147483647, 2147483647, 'ZA', 'South Africa'), +('195.75.154.96', '195.75.154.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.154.128', '195.75.154.175', 2147483647, 2147483647, 'ZA', 'South Africa'), +('195.75.154.176', '195.75.154.183', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.154.184', '195.75.154.207', 2147483647, 2147483647, 'ZA', 'South Africa'), +('195.75.154.208', '195.75.154.223', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.154.224', '195.75.155.191', 2147483647, 2147483647, 'ZA', 'South Africa'), +('195.75.155.192', '195.75.155.199', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.155.200', '195.75.155.207', 2147483647, 2147483647, 'ZA', 'South Africa'), +('195.75.155.208', '195.75.155.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.156.0', '195.75.158.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('195.75.159.0', '195.75.160.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.161.0', '195.75.161.15', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.75.161.16', '195.75.161.23', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.161.24', '195.75.161.31', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.75.161.32', '195.75.164.31', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.164.32', '195.75.164.63', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.75.164.64', '195.75.164.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.165.0', '195.75.165.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.75.166.0', '195.75.167.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.168.0', '195.75.168.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.75.169.0', '195.75.175.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.176.0', '195.75.176.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.75.176.128', '195.75.176.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.177.0', '195.75.177.15', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.75.177.16', '195.75.177.23', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.177.24', '195.75.177.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.75.177.128', '195.75.177.159', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.177.160', '195.75.177.191', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.75.177.192', '195.75.177.199', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.177.200', '195.75.177.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.75.178.0', '195.75.178.15', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.178.16', '195.75.178.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.75.178.64', '195.75.178.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.178.128', '195.75.178.135', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.75.178.136', '195.75.178.167', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.178.168', '195.75.178.175', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.75.178.176', '195.75.178.207', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.178.208', '195.75.178.223', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.75.178.224', '195.75.178.239', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.178.240', '195.75.179.31', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.75.179.32', '195.75.179.39', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.179.40', '195.75.179.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.75.179.128', '195.75.179.159', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.179.160', '195.75.179.191', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.75.179.192', '195.75.179.207', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.179.208', '195.75.179.223', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.75.179.224', '195.75.179.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.180.0', '195.75.180.127', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.75.180.128', '195.75.180.191', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.180.192', '195.75.180.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.75.181.0', '195.75.181.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.182.0', '195.75.183.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.75.184.0', '195.75.186.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.75.187.0', '195.75.187.31', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.75.187.32', '195.75.187.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.75.187.64', '195.75.187.223', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.75.187.224', '195.75.187.239', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.187.240', '195.75.187.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.75.188.0', '195.75.188.15', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.188.16', '195.75.188.143', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.75.188.144', '195.75.188.159', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.188.160', '195.75.188.175', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.75.188.176', '195.75.188.191', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.188.192', '195.75.189.23', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.75.189.24', '195.75.189.79', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.189.80', '195.75.189.111', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.75.189.112', '195.75.189.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.189.128', '195.75.189.223', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.75.189.224', '195.75.189.239', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.189.240', '195.75.190.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.75.191.0', '195.75.193.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.194.0', '195.75.199.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.75.200.0', '195.75.200.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.201.0', '195.75.201.135', 2147483647, 2147483647, 'NO', 'Norway'), +('195.75.201.136', '195.75.201.151', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.201.152', '195.75.201.175', 2147483647, 2147483647, 'NO', 'Norway'), +('195.75.201.176', '195.75.201.191', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.201.192', '195.75.201.255', 2147483647, 2147483647, 'NO', 'Norway'), +('195.75.202.0', '195.75.202.31', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.202.32', '195.75.202.63', 2147483647, 2147483647, 'TR', 'Turkey'), +('195.75.202.64', '195.75.202.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.202.128', '195.75.202.247', 2147483647, 2147483647, 'TR', 'Turkey'), +('195.75.202.248', '195.75.203.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.204.0', '195.75.204.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.75.205.0', '195.75.205.23', 2147483647, 2147483647, 'PT', 'Portugal'), +('195.75.205.24', '195.75.205.31', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.205.32', '195.75.205.47', 2147483647, 2147483647, 'PT', 'Portugal'), +('195.75.205.48', '195.75.205.223', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.205.224', '195.75.205.239', 2147483647, 2147483647, 'PT', 'Portugal'), +('195.75.205.240', '195.75.205.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.206.0', '195.75.206.255', 2147483647, 2147483647, 'FI', 'Finland'), +('195.75.207.0', '195.75.207.191', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.207.192', '195.75.207.215', 2147483647, 2147483647, 'HR', 'Croatia'), +('195.75.207.216', '195.75.207.223', 2147483647, 2147483647, 'PL', 'Poland'), +('195.75.207.224', '195.75.207.255', 2147483647, 2147483647, 'HR', 'Croatia'), +('195.75.208.0', '195.75.209.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.210.0', '195.75.210.15', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.75.210.16', '195.75.210.23', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.210.24', '195.75.210.31', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.75.210.32', '195.75.210.63', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.210.64', '195.75.210.95', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.75.210.96', '195.75.210.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.211.0', '195.75.211.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.75.212.0', '195.75.213.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.214.0', '195.75.214.31', 2147483647, 2147483647, 'SI', 'Slovenia'), +('195.75.214.32', '195.75.214.63', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.214.64', '195.75.214.95', 2147483647, 2147483647, 'SI', 'Slovenia'), +('195.75.214.96', '195.75.214.111', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.214.112', '195.75.214.127', 2147483647, 2147483647, 'SI', 'Slovenia'), +('195.75.214.128', '195.75.214.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.215.0', '195.75.215.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('195.75.216.0', '195.75.216.127', 2147483647, 2147483647, 'PK', 'Pakistan'), +('195.75.216.128', '195.75.216.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.217.0', '195.75.217.127', 2147483647, 2147483647, 'PK', 'Pakistan'), +('195.75.217.128', '195.75.217.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.218.0', '195.75.218.95', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.75.218.96', '195.75.218.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.75.218.112', '195.75.218.119', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.75.218.120', '195.75.218.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.218.128', '195.75.218.223', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.75.218.224', '195.75.218.239', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.218.240', '195.75.219.15', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.75.219.16', '195.75.219.63', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.219.64', '195.75.219.119', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.75.219.120', '195.75.219.135', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.219.136', '195.75.219.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.75.219.144', '195.75.219.159', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.219.160', '195.75.219.183', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.75.219.184', '195.75.219.191', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.219.192', '195.75.220.79', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.75.220.80', '195.75.220.87', 2147483647, 2147483647, 'FR', 'France'), +('195.75.220.88', '195.75.220.159', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.75.220.160', '195.75.220.175', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.220.176', '195.75.220.191', 2147483647, 2147483647, 'FR', 'France'), +('195.75.220.192', '195.75.220.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.75.221.0', '195.75.221.7', 2147483647, 2147483647, 'IE', 'Ireland'), +('195.75.221.8', '195.75.221.15', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.221.16', '195.75.221.31', 2147483647, 2147483647, 'IE', 'Ireland'), +('195.75.221.32', '195.75.221.39', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.221.40', '195.75.221.47', 2147483647, 2147483647, 'IE', 'Ireland'), +('195.75.221.48', '195.75.221.63', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.221.64', '195.75.221.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('195.75.222.0', '195.75.222.15', 2147483647, 2147483647, 'TR', 'Turkey'), +('195.75.222.16', '195.75.222.31', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.222.32', '195.75.222.127', 2147483647, 2147483647, 'TR', 'Turkey'), +('195.75.222.128', '195.75.222.175', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.222.176', '195.75.222.199', 2147483647, 2147483647, 'TR', 'Turkey'), +('195.75.222.200', '195.75.222.207', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.222.208', '195.75.222.223', 2147483647, 2147483647, 'TR', 'Turkey'), +('195.75.222.224', '195.75.222.239', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.222.240', '195.75.222.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('195.75.223.0', '195.75.223.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.224.0', '195.75.227.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.75.227.64', '195.75.227.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.227.128', '195.75.235.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.75.236.0', '195.75.236.39', 2147483647, 2147483647, 'TR', 'Turkey'), +('195.75.236.40', '195.75.236.47', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.236.48', '195.75.236.55', 2147483647, 2147483647, 'TR', 'Turkey'), +('195.75.236.56', '195.75.236.119', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.236.120', '195.75.236.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('195.75.237.0', '195.75.237.31', 2147483647, 2147483647, 'HU', 'Hungary'), +('195.75.237.32', '195.75.237.79', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.237.80', '195.75.237.95', 2147483647, 2147483647, 'HU', 'Hungary'), +('195.75.237.96', '195.75.237.111', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.237.112', '195.75.237.191', 2147483647, 2147483647, 'HU', 'Hungary'), +('195.75.237.192', '195.75.237.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.238.0', '195.75.238.127', 2147483647, 2147483647, 'TR', 'Turkey'), +('195.75.238.128', '195.75.239.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.240.0', '195.75.240.15', 2147483647, 2147483647, 'IE', 'Ireland'), +('195.75.240.16', '195.75.240.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.75.240.32', '195.75.240.63', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.240.64', '195.75.240.127', 2147483647, 2147483647, 'IE', 'Ireland'), +('195.75.240.128', '195.75.240.159', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.240.160', '195.75.240.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('195.75.241.0', '195.75.241.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.75.242.0', '195.75.242.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.242.128', '195.75.242.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.75.242.144', '195.75.242.159', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.75.242.160', '195.75.242.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.75.242.192', '195.75.242.223', 2147483647, 2147483647, 'FR', 'France'), +('195.75.242.224', '195.75.242.239', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.242.240', '195.75.242.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.75.243.0', '195.75.243.15', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.243.16', '195.75.243.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.75.243.64', '195.75.243.95', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.243.96', '195.75.243.143', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.75.243.144', '195.75.243.159', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.243.160', '195.75.243.191', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.75.243.192', '195.75.243.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.244.0', '195.75.244.95', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.75.244.96', '195.75.244.103', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.244.104', '195.75.244.111', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.75.244.112', '195.75.244.143', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.244.144', '195.75.244.191', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.75.244.192', '195.75.244.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.245.0', '195.75.245.23', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.75.245.24', '195.75.245.31', 2147483647, 2147483647, 'LV', 'Latvia'), +('195.75.245.32', '195.75.245.63', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.75.245.64', '195.75.245.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.246.0', '195.75.246.23', 2147483647, 2147483647, 'FI', 'Finland'), +('195.75.246.24', '195.75.246.39', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.246.40', '195.75.246.63', 2147483647, 2147483647, 'FI', 'Finland'), +('195.75.246.64', '195.75.246.79', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.246.80', '195.75.246.127', 2147483647, 2147483647, 'FI', 'Finland'), +('195.75.246.128', '195.75.246.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.247.0', '195.75.247.255', 2147483647, 2147483647, 'PK', 'Pakistan'), +('195.75.248.0', '195.75.248.255', 2147483647, 2147483647, 'FI', 'Finland'), +('195.75.249.0', '195.75.249.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.250.0', '195.75.250.95', 2147483647, 2147483647, 'ES', 'Spain'), +('195.75.250.96', '195.75.250.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.250.128', '195.75.250.191', 2147483647, 2147483647, 'ES', 'Spain'), +('195.75.250.192', '195.75.251.7', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.251.8', '195.75.251.15', 2147483647, 2147483647, 'HR', 'Croatia'), +('195.75.251.16', '195.75.251.63', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.251.64', '195.75.251.95', 2147483647, 2147483647, 'HU', 'Hungary'), +('195.75.251.96', '195.75.251.111', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.251.112', '195.75.251.135', 2147483647, 2147483647, 'HU', 'Hungary'), +('195.75.251.136', '195.75.251.159', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.251.160', '195.75.251.167', 2147483647, 2147483647, 'HU', 'Hungary'), +('195.75.251.168', '195.75.252.31', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.252.32', '195.75.252.63', 2147483647, 2147483647, 'ES', 'Spain'), +('195.75.252.64', '195.75.252.135', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.252.136', '195.75.252.159', 2147483647, 2147483647, 'ES', 'Spain'), +('195.75.252.160', '195.75.253.63', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.253.64', '195.75.253.127', 2147483647, 2147483647, 'AT', 'Austria'), +('195.75.253.128', '195.75.253.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.75.254.0', '195.75.254.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.75.255.0', '195.75.255.63', 2147483647, 2147483647, 'GR', 'Greece'), +('195.75.255.64', '195.75.255.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.76.0.0', '195.77.255.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.78.0.0', '195.78.31.255', 2147483647, 2147483647, 'MC', 'Monaco'), +('195.78.32.0', '195.78.35.255', 2147483647, 2147483647, 'HR', 'Croatia'), +('195.78.36.0', '195.78.37.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.78.38.0', '195.78.39.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.78.40.0', '195.78.41.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.78.42.0', '195.78.43.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.78.44.0', '195.78.45.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('195.78.46.0', '195.78.47.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.78.48.0', '195.78.49.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.78.50.0', '195.78.51.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.78.52.0', '195.78.53.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.78.54.0', '195.78.55.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.78.56.0', '195.78.61.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.78.62.0', '195.78.63.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.78.64.0', '195.78.65.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.78.66.0', '195.78.67.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.78.68.0', '195.78.69.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.78.70.0', '195.78.71.255', 2147483647, 2147483647, 'FI', 'Finland'), +('195.78.72.0', '195.78.73.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.78.74.0', '195.78.75.255', 2147483647, 2147483647, 'KW', 'Kuwait'), +('195.78.76.0', '195.78.77.255', 2147483647, 2147483647, 'DE', 'Germany'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('195.78.78.0', '195.78.79.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.78.80.0', '195.78.83.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.78.84.0', '195.78.85.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.78.86.0', '195.78.87.255', 2147483647, 2147483647, 'GR', 'Greece'), +('195.78.88.0', '195.78.89.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.78.90.0', '195.78.91.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.78.92.0', '195.78.93.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.78.94.0', '195.78.95.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.78.128.0', '195.78.159.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.78.160.0', '195.78.191.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.78.192.0', '195.78.223.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.78.224.0', '195.78.227.255', 2147483647, 2147483647, 'PK', 'Pakistan'), +('195.78.228.0', '195.78.231.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.78.232.0', '195.78.235.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.78.236.0', '195.78.239.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.78.240.0', '195.78.243.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.78.244.0', '195.78.247.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.78.248.0', '195.78.251.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.78.252.0', '195.78.255.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.79.0.0', '195.79.1.15', 2147483647, 2147483647, 'AT', 'Austria'), +('195.79.1.16', '195.79.1.31', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.79.1.32', '195.79.1.95', 2147483647, 2147483647, 'AT', 'Austria'), +('195.79.1.96', '195.79.1.127', 2147483647, 2147483647, 'DE', 'Germany'), +('195.79.1.128', '195.79.1.159', 2147483647, 2147483647, 'EU', 'Europe'), +('195.79.1.160', '195.79.1.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.79.1.176', '195.79.1.191', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.79.1.192', '195.79.1.223', 2147483647, 2147483647, 'FR', 'France'), +('195.79.1.224', '195.79.3.223', 2147483647, 2147483647, 'AT', 'Austria'), +('195.79.3.224', '195.79.3.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.79.4.0', '195.79.5.127', 2147483647, 2147483647, 'AT', 'Austria'), +('195.79.5.128', '195.79.5.191', 2147483647, 2147483647, 'EU', 'Europe'), +('195.79.5.192', '195.79.5.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.79.6.0', '195.79.7.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.79.8.0', '195.79.8.63', 2147483647, 2147483647, 'IT', 'Italy'), +('195.79.8.64', '195.79.8.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.79.8.224', '195.79.8.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.79.9.0', '195.79.9.31', 2147483647, 2147483647, 'IT', 'Italy'), +('195.79.9.32', '195.79.9.47', 2147483647, 2147483647, 'DE', 'Germany'), +('195.79.9.48', '195.79.9.63', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('195.79.9.64', '195.79.9.95', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.79.9.96', '195.79.9.103', 2147483647, 2147483647, 'DE', 'Germany'), +('195.79.9.104', '195.79.9.111', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.79.9.112', '195.79.9.191', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.79.9.192', '195.79.9.223', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.79.9.224', '195.79.9.247', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.79.9.248', '195.79.9.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.79.10.0', '195.79.11.63', 2147483647, 2147483647, 'IT', 'Italy'), +('195.79.11.64', '195.79.11.127', 2147483647, 2147483647, 'DE', 'Germany'), +('195.79.11.128', '195.79.11.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.79.12.0', '195.79.12.79', 2147483647, 2147483647, 'IT', 'Italy'), +('195.79.12.80', '195.79.12.95', 2147483647, 2147483647, 'DE', 'Germany'), +('195.79.12.96', '195.79.12.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.79.13.0', '195.79.13.143', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.79.13.144', '195.79.13.151', 2147483647, 2147483647, 'DE', 'Germany'), +('195.79.13.152', '195.79.13.199', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.79.13.200', '195.79.13.207', 2147483647, 2147483647, 'IT', 'Italy'), +('195.79.13.208', '195.79.13.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.79.13.224', '195.79.13.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.79.14.0', '195.79.14.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.79.14.32', '195.79.14.63', 2147483647, 2147483647, 'ES', 'Spain'), +('195.79.14.64', '195.79.14.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.79.14.96', '195.79.14.127', 2147483647, 2147483647, 'IT', 'Italy'), +('195.79.14.128', '195.79.15.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.79.16.0', '195.79.17.31', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.79.17.32', '195.79.17.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.79.18.0', '195.79.18.79', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.79.18.80', '195.79.18.95', 2147483647, 2147483647, 'EU', 'Europe'), +('195.79.18.96', '195.79.22.31', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.79.22.32', '195.79.22.71', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.79.22.72', '195.79.22.79', 2147483647, 2147483647, 'DE', 'Germany'), +('195.79.22.80', '195.79.22.95', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.79.22.96', '195.79.22.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.79.22.128', '195.79.22.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.79.23.0', '195.79.24.95', 2147483647, 2147483647, 'FR', 'France'), +('195.79.24.96', '195.79.24.111', 2147483647, 2147483647, 'IT', 'Italy'), +('195.79.24.112', '195.79.24.127', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('195.79.24.128', '195.79.24.191', 2147483647, 2147483647, 'PT', 'Portugal'), +('195.79.24.192', '195.79.24.207', 2147483647, 2147483647, 'SI', 'Slovenia'), +('195.79.24.208', '195.79.24.223', 2147483647, 2147483647, 'SK', 'Slovakia'), +('195.79.24.224', '195.79.24.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.79.25.0', '195.79.26.255', 2147483647, 2147483647, 'FR', 'France'), +('195.79.27.0', '195.79.27.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.79.28.0', '195.79.31.255', 2147483647, 2147483647, 'FR', 'France'), +('195.79.32.0', '195.79.32.79', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.79.32.80', '195.79.32.95', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.79.32.96', '195.79.32.127', 2147483647, 2147483647, 'GR', 'Greece'), +('195.79.32.128', '195.79.32.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('195.79.33.0', '195.79.33.159', 2147483647, 2147483647, 'AT', 'Austria'), +('195.79.33.160', '195.79.33.191', 2147483647, 2147483647, 'DE', 'Germany'), +('195.79.33.192', '195.79.33.223', 2147483647, 2147483647, 'HU', 'Hungary'), +('195.79.33.224', '195.79.33.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.79.34.0', '195.79.34.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.79.35.0', '195.79.36.223', 2147483647, 2147483647, 'AT', 'Austria'), +('195.79.36.224', '195.79.36.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.79.37.0', '195.79.37.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.79.38.0', '195.79.39.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.79.40.0', '195.79.40.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.79.41.0', '195.79.41.255', 2147483647, 2147483647, 'GR', 'Greece'), +('195.79.42.0', '195.79.42.79', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.79.42.80', '195.79.42.95', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.79.42.96', '195.79.42.127', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.79.42.128', '195.79.42.191', 2147483647, 2147483647, 'DE', 'Germany'), +('195.79.42.192', '195.79.43.183', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.79.43.184', '195.79.43.191', 2147483647, 2147483647, 'EU', 'Europe'), +('195.79.43.192', '195.79.43.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.79.44.0', '195.79.45.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.79.45.64', '195.79.45.127', 2147483647, 2147483647, 'DE', 'Germany'), +('195.79.45.128', '195.79.45.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.79.46.0', '195.79.46.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.79.46.96', '195.79.46.111', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.79.46.112', '195.79.46.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.79.46.128', '195.79.47.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.79.48.0', '195.79.53.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.79.54.0', '195.79.55.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.79.56.0', '195.79.56.151', 2147483647, 2147483647, 'AT', 'Austria'), +('195.79.56.152', '195.79.56.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.79.56.160', '195.79.56.223', 2147483647, 2147483647, 'AT', 'Austria'), +('195.79.56.224', '195.79.56.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.79.57.0', '195.79.57.31', 2147483647, 2147483647, 'AT', 'Austria'), +('195.79.57.32', '195.79.57.47', 2147483647, 2147483647, 'FR', 'France'), +('195.79.57.48', '195.79.57.63', 2147483647, 2147483647, 'EU', 'Europe'), +('195.79.57.64', '195.79.57.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.79.57.128', '195.79.57.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.79.58.0', '195.79.58.31', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.79.58.32', '195.79.58.63', 2147483647, 2147483647, 'DE', 'Germany'), +('195.79.58.64', '195.79.59.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.79.60.0', '195.79.61.71', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.79.61.72', '195.79.61.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.79.61.80', '195.79.61.95', 2147483647, 2147483647, 'FR', 'France'), +('195.79.61.96', '195.79.61.127', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.79.61.128', '195.79.61.255', 2147483647, 2147483647, 'FR', 'France'), +('195.79.62.0', '195.79.62.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.79.62.96', '195.79.62.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.79.62.128', '195.79.64.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.79.64.192', '195.79.64.223', 2147483647, 2147483647, 'FR', 'France'), +('195.79.64.224', '195.79.64.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.79.64.240', '195.79.64.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.79.65.0', '195.79.65.71', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.79.65.72', '195.79.65.95', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.79.65.96', '195.79.65.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.79.65.128', '195.79.65.191', 2147483647, 2147483647, 'IL', 'Israel'), +('195.79.65.192', '195.79.65.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.79.66.0', '195.79.72.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.79.72.160', '195.79.72.175', 2147483647, 2147483647, 'NO', 'Norway'), +('195.79.72.176', '195.79.72.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.79.72.224', '195.79.72.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.79.73.0', '195.79.73.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.79.73.224', '195.79.73.255', 2147483647, 2147483647, 'FI', 'Finland'), +('195.79.74.0', '195.79.76.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.79.76.32', '195.79.76.63', 2147483647, 2147483647, 'HU', 'Hungary'), +('195.79.76.64', '195.79.80.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.79.80.48', '195.79.80.63', 2147483647, 2147483647, 'DE', 'Germany'), +('195.79.80.64', '195.79.80.127', 2147483647, 2147483647, 'HU', 'Hungary'), +('195.79.80.128', '195.79.80.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.79.81.0', '195.79.83.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.79.83.64', '195.79.83.79', 2147483647, 2147483647, 'NO', 'Norway'), +('195.79.83.80', '195.79.83.95', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.79.83.96', '195.79.83.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.79.83.128', '195.79.83.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.79.84.0', '195.79.84.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.79.84.64', '195.79.84.95', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.79.84.96', '195.79.84.127', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.79.84.128', '195.79.85.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.79.85.64', '195.79.85.95', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.79.85.96', '195.79.85.127', 2147483647, 2147483647, 'FR', 'France'), +('195.79.85.128', '195.79.86.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.79.86.192', '195.79.86.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.79.87.0', '195.79.88.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.79.88.128', '195.79.88.143', 2147483647, 2147483647, 'NO', 'Norway'), +('195.79.88.144', '195.79.88.159', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.79.88.160', '195.79.88.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.79.88.192', '195.79.88.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.79.89.0', '195.79.89.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.79.90.0', '195.79.90.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.79.91.0', '195.79.91.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.79.91.64', '195.79.91.79', 2147483647, 2147483647, 'DE', 'Germany'), +('195.79.91.80', '195.79.91.95', 2147483647, 2147483647, 'ES', 'Spain'), +('195.79.91.96', '195.79.91.127', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.79.91.128', '195.79.95.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.79.96.0', '195.79.98.143', 2147483647, 2147483647, 'DE', 'Germany'), +('195.79.98.144', '195.79.98.159', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.79.98.160', '195.79.98.191', 2147483647, 2147483647, 'DE', 'Germany'), +('195.79.98.192', '195.79.98.223', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.79.98.224', '195.79.98.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.79.99.0', '195.79.104.127', 2147483647, 2147483647, 'DE', 'Germany'), +('195.79.104.128', '195.79.104.191', 2147483647, 2147483647, 'ES', 'Spain'), +('195.79.104.192', '195.79.107.63', 2147483647, 2147483647, 'DE', 'Germany'), +('195.79.107.64', '195.79.107.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.79.107.128', '195.79.107.159', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.79.107.160', '195.79.107.255', 2147483647, 2147483647, 'FR', 'France'), +('195.79.108.0', '195.79.109.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.79.110.0', '195.79.110.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.79.111.0', '195.79.111.63', 2147483647, 2147483647, 'DE', 'Germany'), +('195.79.111.64', '195.79.111.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.79.111.80', '195.79.111.95', 2147483647, 2147483647, 'IT', 'Italy'), +('195.79.111.96', '195.79.111.127', 2147483647, 2147483647, 'NO', 'Norway'), +('195.79.111.128', '195.79.112.191', 2147483647, 2147483647, 'DE', 'Germany'), +('195.79.112.192', '195.79.112.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.79.113.0', '195.79.113.127', 2147483647, 2147483647, 'DE', 'Germany'), +('195.79.113.128', '195.79.113.159', 2147483647, 2147483647, 'IT', 'Italy'), +('195.79.113.160', '195.79.113.175', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.79.113.176', '195.79.113.191', 2147483647, 2147483647, 'GR', 'Greece'), +('195.79.113.192', '195.79.113.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.79.114.0', '195.79.115.63', 2147483647, 2147483647, 'DE', 'Germany'), +('195.79.115.64', '195.79.115.79', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.79.115.80', '195.79.115.87', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.79.115.88', '195.79.115.95', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.79.115.96', '195.79.115.127', 2147483647, 2147483647, 'IT', 'Italy'), +('195.79.115.128', '195.79.115.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.79.116.0', '195.79.119.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.79.120.0', '195.79.126.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.79.127.0', '195.79.127.7', 2147483647, 2147483647, 'FR', 'France'), +('195.79.127.8', '195.79.127.15', 2147483647, 2147483647, 'EU', 'Europe'), +('195.79.127.16', '195.79.127.39', 2147483647, 2147483647, 'FR', 'France'), +('195.79.127.40', '195.79.127.47', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.79.127.48', '195.79.127.63', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.79.127.64', '195.79.127.103', 2147483647, 2147483647, 'FR', 'France'), +('195.79.127.104', '195.79.127.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.79.127.112', '195.79.127.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.79.127.128', '195.79.127.255', 2147483647, 2147483647, 'FR', 'France'), +('195.79.128.0', '195.79.129.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('195.79.130.0', '195.79.130.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.79.130.64', '195.79.130.127', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.79.130.128', '195.79.130.191', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.79.130.192', '195.79.130.223', 2147483647, 2147483647, 'FR', 'France'), +('195.79.130.224', '195.79.130.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.79.131.0', '195.79.132.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.79.133.0', '195.79.133.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.79.134.0', '195.79.134.95', 2147483647, 2147483647, 'ES', 'Spain'), +('195.79.134.96', '195.79.134.127', 2147483647, 2147483647, 'AT', 'Austria'), +('195.79.134.128', '195.79.134.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('195.79.135.0', '195.79.135.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.79.136.0', '195.79.136.15', 2147483647, 2147483647, 'ES', 'Spain'), +('195.79.136.16', '195.79.136.31', 2147483647, 2147483647, 'DE', 'Germany'), +('195.79.136.32', '195.79.136.63', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.79.136.64', '195.79.136.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.79.136.128', '195.79.138.127', 2147483647, 2147483647, 'ES', 'Spain'), +('195.79.138.128', '195.79.138.191', 2147483647, 2147483647, 'EU', 'Europe'), +('195.79.138.192', '195.79.138.223', 2147483647, 2147483647, 'AT', 'Austria'), +('195.79.138.224', '195.79.138.239', 2147483647, 2147483647, 'IT', 'Italy'), +('195.79.138.240', '195.79.138.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.79.139.0', '195.79.139.95', 2147483647, 2147483647, 'ES', 'Spain'), +('195.79.139.96', '195.79.139.127', 2147483647, 2147483647, 'FI', 'Finland'), +('195.79.139.128', '195.79.139.191', 2147483647, 2147483647, 'ES', 'Spain'), +('195.79.139.192', '195.79.139.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.79.140.0', '195.79.141.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.79.142.0', '195.79.142.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.79.142.128', '195.79.143.63', 2147483647, 2147483647, 'ES', 'Spain'), +('195.79.143.64', '195.79.143.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.79.143.128', '195.79.143.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.79.144.0', '195.79.144.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.79.144.128', '195.79.144.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.79.145.0', '195.79.147.191', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.79.147.192', '195.79.147.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.79.148.0', '195.79.148.215', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.79.148.216', '195.79.148.223', 2147483647, 2147483647, 'EU', 'Europe'), +('195.79.148.224', '195.79.151.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.79.152.0', '195.79.154.159', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.79.154.160', '195.79.154.191', 2147483647, 2147483647, 'FI', 'Finland'), +('195.79.154.192', '195.79.154.207', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.79.154.208', '195.79.154.223', 2147483647, 2147483647, 'EU', 'Europe'), +('195.79.154.224', '195.79.154.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('195.79.155.0', '195.79.155.127', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.79.155.128', '195.79.155.159', 2147483647, 2147483647, 'DE', 'Germany'), +('195.79.155.160', '195.79.155.191', 2147483647, 2147483647, 'FR', 'France'), +('195.79.155.192', '195.79.155.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.79.156.0', '195.79.156.143', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.79.156.144', '195.79.156.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.79.156.160', '195.79.156.191', 2147483647, 2147483647, 'DE', 'Germany'), +('195.79.156.192', '195.79.156.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.79.157.0', '195.79.158.191', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.79.158.192', '195.79.158.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.79.159.0', '195.79.159.127', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.79.159.128', '195.79.159.191', 2147483647, 2147483647, 'FR', 'France'), +('195.79.159.192', '195.79.159.223', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.79.159.224', '195.79.159.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.79.160.0', '195.79.182.95', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.79.182.96', '195.79.182.191', 2147483647, 2147483647, 'FR', 'France'), +('195.79.182.192', '195.79.182.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.79.183.0', '195.79.183.191', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.79.183.192', '195.79.183.255', 2147483647, 2147483647, 'FR', 'France'), +('195.79.184.0', '195.79.188.127', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.79.188.128', '195.79.188.191', 2147483647, 2147483647, 'EU', 'Europe'), +('195.79.188.192', '195.79.188.207', 2147483647, 2147483647, 'FR', 'France'), +('195.79.188.208', '195.79.188.223', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('195.79.188.224', '195.79.188.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.79.189.0', '195.79.189.127', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.79.189.128', '195.79.189.191', 2147483647, 2147483647, 'GR', 'Greece'), +('195.79.189.192', '195.79.189.207', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.79.189.208', '195.79.189.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.79.189.224', '195.79.189.239', 2147483647, 2147483647, 'PT', 'Portugal'), +('195.79.189.240', '195.79.189.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.79.190.0', '195.79.191.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.79.192.0', '195.79.194.255', 2147483647, 2147483647, 'FR', 'France'), +('195.79.195.0', '195.79.195.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.79.196.0', '195.79.196.255', 2147483647, 2147483647, 'FR', 'France'), +('195.79.197.0', '195.79.197.255', 2147483647, 2147483647, 'NO', 'Norway'), +('195.79.198.0', '195.79.198.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('195.79.199.0', '195.79.199.31', 2147483647, 2147483647, 'PT', 'Portugal'), +('195.79.199.32', '195.79.199.47', 2147483647, 2147483647, 'GR', 'Greece'), +('195.79.199.48', '195.79.199.55', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.79.199.56', '195.79.199.63', 2147483647, 2147483647, 'IE', 'Ireland'), +('195.79.199.64', '195.79.199.127', 2147483647, 2147483647, 'PT', 'Portugal'), +('195.79.199.128', '195.79.199.159', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.79.199.160', '195.79.199.191', 2147483647, 2147483647, 'PT', 'Portugal'), +('195.79.199.192', '195.79.199.199', 2147483647, 2147483647, 'TR', 'Turkey'), +('195.79.199.200', '195.79.199.207', 2147483647, 2147483647, 'PL', 'Poland'), +('195.79.199.208', '195.79.199.223', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('195.79.199.224', '195.79.199.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.79.200.0', '195.79.200.127', 2147483647, 2147483647, 'IL', 'Israel'), +('195.79.200.128', '195.79.200.159', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.79.200.160', '195.79.200.191', 2147483647, 2147483647, 'EU', 'Europe'), +('195.79.200.192', '195.79.200.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.79.201.0', '195.79.201.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.79.202.0', '195.79.202.255', 2147483647, 2147483647, 'NO', 'Norway'), +('195.79.203.0', '195.79.203.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.79.204.0', '195.79.204.127', 2147483647, 2147483647, 'HU', 'Hungary'), +('195.79.204.128', '195.79.204.191', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.79.204.192', '195.79.204.223', 2147483647, 2147483647, 'TR', 'Turkey'), +('195.79.204.224', '195.79.204.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.79.205.0', '195.79.206.159', 2147483647, 2147483647, 'AT', 'Austria'), +('195.79.206.160', '195.79.206.191', 2147483647, 2147483647, 'DE', 'Germany'), +('195.79.206.192', '195.79.206.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.79.207.0', '195.79.208.63', 2147483647, 2147483647, 'FR', 'France'), +('195.79.208.64', '195.79.208.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.79.209.0', '195.79.211.255', 2147483647, 2147483647, 'FR', 'France'), +('195.79.212.0', '195.79.212.127', 2147483647, 2147483647, 'IE', 'Ireland'), +('195.79.212.128', '195.79.212.159', 2147483647, 2147483647, 'DE', 'Germany'), +('195.79.212.160', '195.79.212.191', 2147483647, 2147483647, 'EU', 'Europe'), +('195.79.212.192', '195.79.212.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.79.213.0', '195.79.213.255', 2147483647, 2147483647, 'NO', 'Norway'), +('195.79.214.0', '195.79.214.191', 2147483647, 2147483647, 'FI', 'Finland'), +('195.79.214.192', '195.79.214.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.79.215.0', '195.79.215.63', 2147483647, 2147483647, 'FR', 'France'), +('195.79.215.64', '195.79.215.79', 2147483647, 2147483647, 'ES', 'Spain'), +('195.79.215.80', '195.79.215.95', 2147483647, 2147483647, 'FR', 'France'), +('195.79.215.96', '195.79.215.111', 2147483647, 2147483647, 'ES', 'Spain'), +('195.79.215.112', '195.79.215.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.79.215.128', '195.79.215.255', 2147483647, 2147483647, 'FR', 'France'), +('195.79.216.0', '195.79.216.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.79.217.0', '195.79.217.95', 2147483647, 2147483647, 'ES', 'Spain'), +('195.79.217.96', '195.79.217.111', 2147483647, 2147483647, 'FR', 'France'), +('195.79.217.112', '195.79.217.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.79.217.128', '195.79.217.159', 2147483647, 2147483647, 'IT', 'Italy'), +('195.79.217.160', '195.79.217.183', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.79.217.184', '195.79.217.191', 2147483647, 2147483647, 'DE', 'Germany'), +('195.79.217.192', '195.79.217.207', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.79.217.208', '195.79.217.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.79.218.0', '195.79.218.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('195.79.219.0', '195.79.219.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('195.79.220.0', '195.79.220.159', 2147483647, 2147483647, 'PK', 'Pakistan'), +('195.79.220.160', '195.79.220.223', 2147483647, 2147483647, 'IT', 'Italy'), +('195.79.220.224', '195.79.220.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.79.221.0', '195.79.221.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.79.222.0', '195.79.222.31', 2147483647, 2147483647, 'PT', 'Portugal'), +('195.79.222.32', '195.79.222.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.79.223.0', '195.79.227.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.79.228.0', '195.79.228.255', 2147483647, 2147483647, 'FR', 'France'), +('195.79.229.0', '195.79.229.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.79.229.192', '195.79.229.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('195.79.230.0', '195.79.231.135', 2147483647, 2147483647, 'FR', 'France'), +('195.79.231.136', '195.79.231.143', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.79.231.144', '195.79.231.151', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.79.231.152', '195.79.231.159', 2147483647, 2147483647, 'FR', 'France'), +('195.79.231.160', '195.79.231.191', 2147483647, 2147483647, 'PL', 'Poland'), +('195.79.231.192', '195.79.231.255', 2147483647, 2147483647, 'FR', 'France'), +('195.79.232.0', '195.79.232.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.79.233.0', '195.79.233.143', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.79.233.144', '195.79.233.159', 2147483647, 2147483647, 'DE', 'Germany'), +('195.79.233.160', '195.79.233.191', 2147483647, 2147483647, 'EU', 'Europe'), +('195.79.233.192', '195.79.233.223', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.79.233.224', '195.79.233.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.79.234.0', '195.79.239.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.79.240.0', '195.79.247.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.79.248.0', '195.79.252.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.79.252.128', '195.79.252.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.79.253.0', '195.79.253.63', 2147483647, 2147483647, 'EU', 'Europe'), +('195.79.253.64', '195.79.253.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.79.253.128', '195.79.253.159', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.79.253.160', '195.79.253.223', 2147483647, 2147483647, 'AT', 'Austria'), +('195.79.253.224', '195.79.253.239', 2147483647, 2147483647, 'PL', 'Poland'), +('195.79.253.240', '195.79.253.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.79.254.0', '195.79.254.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.79.255.0', '195.79.255.31', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.79.255.32', '195.79.255.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.79.255.64', '195.79.255.95', 2147483647, 2147483647, 'FR', 'France'), +('195.79.255.96', '195.79.255.127', 2147483647, 2147483647, 'ES', 'Spain'), +('195.79.255.128', '195.79.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.80.0.0', '195.80.95.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.80.96.0', '195.80.127.255', 2147483647, 2147483647, 'EE', 'Estonia'), +('195.80.128.0', '195.80.159.255', 2147483647, 2147483647, 'FR', 'France'), +('195.80.160.0', '195.80.191.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('195.80.192.0', '195.80.223.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.80.224.0', '195.80.224.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.80.225.0', '195.80.225.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('195.80.226.0', '195.80.226.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.80.227.0', '195.80.227.255', 2147483647, 2147483647, 'KW', 'Kuwait'), +('195.80.228.0', '195.80.228.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.80.229.0', '195.80.229.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.80.230.0', '195.80.230.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.80.231.0', '195.80.232.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.80.233.0', '195.80.233.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.80.234.0', '195.80.234.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.80.235.0', '195.80.235.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.80.236.0', '195.80.237.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.80.238.0', '195.80.238.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.80.239.0', '195.80.239.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.80.240.0', '195.80.255.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.81.0.0', '195.81.3.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.81.4.0', '195.81.4.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.81.5.0', '195.81.5.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.81.6.0', '195.81.11.254', 2147483647, 2147483647, 'IT', 'Italy'), +('195.81.11.255', '195.81.11.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.81.12.0', '195.81.12.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.81.13.0', '195.81.15.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.81.16.0', '195.81.16.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.81.16.128', '195.81.16.223', 2147483647, 2147483647, 'IT', 'Italy'), +('195.81.16.224', '195.81.16.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.81.17.0', '195.81.17.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.81.18.0', '195.81.23.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.81.24.0', '195.81.26.127', 2147483647, 2147483647, 'DE', 'Germany'), +('195.81.26.128', '195.81.26.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.81.27.0', '195.81.27.15', 2147483647, 2147483647, 'DE', 'Germany'), +('195.81.27.16', '195.81.31.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.81.32.0', '195.81.32.7', 2147483647, 2147483647, 'ES', 'Spain'), +('195.81.32.8', '195.81.32.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.81.32.64', '195.81.32.127', 2147483647, 2147483647, 'ES', 'Spain'), +('195.81.32.128', '195.81.32.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.81.33.0', '195.81.33.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.81.34.0', '195.81.37.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.81.38.0', '195.81.39.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.81.40.0', '195.81.43.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.81.44.0', '195.81.44.23', 2147483647, 2147483647, 'AT', 'Austria'), +('195.81.44.24', '195.81.45.247', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.81.45.248', '195.81.45.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.81.46.0', '195.81.46.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.81.46.224', '195.81.46.239', 2147483647, 2147483647, 'AT', 'Austria'), +('195.81.46.240', '195.81.46.247', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.81.46.248', '195.81.46.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.81.47.0', '195.81.47.247', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.81.47.248', '195.81.47.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.81.48.0', '195.81.48.7', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('195.81.48.8', '195.81.48.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.81.49.0', '195.81.49.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('195.81.50.0', '195.81.55.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.81.56.0', '195.81.58.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.81.59.0', '195.81.71.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.81.72.0', '195.81.73.7', 2147483647, 2147483647, 'PL', 'Poland'), +('195.81.73.8', '195.81.79.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.81.80.0', '195.81.80.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.81.81.0', '195.81.89.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.81.90.0', '195.81.90.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.81.91.0', '195.81.91.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.81.92.0', '195.81.95.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.81.96.0', '195.81.96.23', 2147483647, 2147483647, 'US', 'United States'), +('195.81.96.24', '195.81.96.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.81.96.32', '195.81.96.63', 2147483647, 2147483647, 'US', 'United States'), +('195.81.96.64', '195.81.96.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.81.97.0', '195.81.97.255', 2147483647, 2147483647, 'US', 'United States'), +('195.81.98.0', '195.81.102.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.81.103.0', '195.81.103.255', 2147483647, 2147483647, 'US', 'United States'), +('195.81.104.0', '195.81.118.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.81.119.0', '195.81.119.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('195.81.120.0', '195.81.122.63', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.81.122.64', '195.81.122.79', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.81.122.80', '195.81.122.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.81.123.0', '195.81.123.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.81.124.0', '195.81.127.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.81.128.0', '195.81.129.111', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.81.129.112', '195.81.129.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.81.130.0', '195.81.134.7', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.81.134.8', '195.81.142.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.81.143.0', '195.81.143.7', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.81.143.8', '195.81.143.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.81.144.0', '195.81.144.159', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.81.144.160', '195.81.144.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.81.145.0', '195.81.147.127', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.81.147.128', '195.81.158.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.81.159.0', '195.81.159.39', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.81.159.40', '195.81.159.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.81.160.0', '195.81.161.87', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.81.161.88', '195.81.161.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.81.161.96', '195.81.161.111', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.81.161.112', '195.81.161.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.81.162.0', '195.81.162.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.81.163.0', '195.81.175.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.81.176.0', '195.81.176.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.81.177.0', '195.81.177.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.81.177.32', '195.81.188.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.81.189.0', '195.81.189.63', 2147483647, 2147483647, 'US', 'United States'), +('195.81.189.64', '195.81.191.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.81.192.0', '195.81.192.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.81.193.0', '195.81.193.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.81.194.0', '195.81.194.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.81.195.0', '195.81.195.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.81.195.32', '195.81.197.207', 2147483647, 2147483647, 'ES', 'Spain'), +('195.81.197.208', '195.81.197.215', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.81.197.216', '195.81.198.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.81.199.0', '195.81.199.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.81.200.0', '195.81.201.191', 2147483647, 2147483647, 'ES', 'Spain'), +('195.81.201.192', '195.81.201.223', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.81.201.224', '195.81.201.239', 2147483647, 2147483647, 'ES', 'Spain'), +('195.81.201.240', '195.81.201.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.81.202.0', '195.81.202.31', 2147483647, 2147483647, 'ES', 'Spain'), +('195.81.202.32', '195.81.202.39', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.81.202.40', '195.81.202.95', 2147483647, 2147483647, 'ES', 'Spain'), +('195.81.202.96', '195.81.202.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.81.203.0', '195.81.203.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.81.204.0', '195.81.207.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.81.208.0', '195.81.210.175', 2147483647, 2147483647, 'DE', 'Germany'), +('195.81.210.176', '195.81.210.183', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.81.210.184', '195.81.210.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.81.211.0', '195.81.211.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.81.212.0', '195.81.214.223', 2147483647, 2147483647, 'DE', 'Germany'), +('195.81.214.224', '195.81.214.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.81.215.0', '195.81.215.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.81.216.0', '195.81.222.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.81.223.0', '195.81.226.31', 2147483647, 2147483647, 'FR', 'France'), +('195.81.226.32', '195.81.226.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.81.227.0', '195.81.228.127', 2147483647, 2147483647, 'FR', 'France'), +('195.81.228.128', '195.81.228.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.81.229.0', '195.81.229.127', 2147483647, 2147483647, 'FR', 'France'), +('195.81.229.128', '195.81.229.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.81.230.0', '195.81.230.255', 2147483647, 2147483647, 'FR', 'France'), +('195.81.231.0', '195.81.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.82.0.0', '195.82.31.255', 2147483647, 2147483647, 'KZ', 'Kazakstan'), +('195.82.32.0', '195.82.95.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.82.96.0', '195.82.127.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.82.128.0', '195.82.129.255', 2147483647, 2147483647, 'IL', 'Israel'), +('195.82.130.0', '195.82.133.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.82.134.0', '195.82.137.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.82.138.0', '195.82.139.255', 2147483647, 2147483647, 'BH', 'Bahrain'), +('195.82.140.0', '195.82.147.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.82.148.0', '195.82.149.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.82.150.0', '195.82.151.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.82.152.0', '195.82.153.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.82.154.0', '195.82.157.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.82.158.0', '195.82.159.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.82.160.0', '195.82.191.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.82.192.0', '195.82.223.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.82.224.0', '195.82.255.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.83.0.0', '195.83.255.255', 2147483647, 2147483647, 'FR', 'France'), +('195.84.0.0', '195.84.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.85.0.0', '195.85.127.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.85.128.0', '195.85.191.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.85.192.0', '195.85.192.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('195.85.193.0', '195.85.193.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.85.194.0', '195.85.194.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.85.195.0', '195.85.196.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.85.197.0', '195.85.198.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.85.199.0', '195.85.199.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.85.200.0', '195.85.200.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.85.201.0', '195.85.201.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.85.202.0', '195.85.202.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.85.203.0', '195.85.204.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.85.205.0', '195.85.205.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.85.206.0', '195.85.206.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.85.207.0', '195.85.207.255', 2147483647, 2147483647, 'FR', 'France'), +('195.85.208.0', '195.85.208.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.85.209.0', '195.85.209.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.85.210.0', '195.85.210.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.85.211.0', '195.85.211.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.85.212.0', '195.85.212.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.85.213.0', '195.85.213.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.85.214.0', '195.85.214.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.85.215.0', '195.85.215.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('195.85.216.0', '195.85.216.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.85.217.0', '195.85.217.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.85.218.0', '195.85.218.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.85.219.0', '195.85.219.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.85.220.0', '195.85.220.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.85.221.0', '195.85.221.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('195.85.222.0', '195.85.222.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.85.223.0', '195.85.223.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.85.224.0', '195.85.224.255', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('195.85.226.0', '195.85.226.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.85.227.0', '195.85.227.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.85.228.0', '195.85.228.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.85.229.0', '195.85.229.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.85.230.0', '195.85.230.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.85.231.0', '195.85.231.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.85.232.0', '195.85.232.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.85.233.0', '195.85.233.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.85.234.0', '195.85.236.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.85.237.0', '195.85.237.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.85.238.0', '195.85.238.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.85.239.0', '195.85.239.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.85.240.0', '195.85.240.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.85.241.0', '195.85.241.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.85.242.0', '195.85.242.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('195.85.243.0', '195.85.243.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.85.244.0', '195.85.244.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.85.245.0', '195.85.245.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.85.246.0', '195.85.246.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.85.247.0', '195.85.247.255', 2147483647, 2147483647, 'FR', 'France'), +('195.85.248.0', '195.85.248.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.85.249.0', '195.85.249.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.85.250.0', '195.85.250.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.85.251.0', '195.85.251.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.85.252.0', '195.85.252.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.85.253.0', '195.85.253.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.85.254.0', '195.85.254.255', 2147483647, 2147483647, 'GG', 'Guernsey'), +('195.85.255.0', '195.85.255.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('195.86.0.0', '195.86.240.71', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.86.240.72', '195.86.240.79', 2147483647, 2147483647, 'DE', 'Germany'), +('195.86.240.80', '195.86.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.87.0.0', '195.87.255.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('195.88.0.0', '195.88.3.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.88.4.0', '195.88.7.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.88.8.0', '195.88.9.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.88.10.0', '195.88.11.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.88.12.0', '195.88.13.255', 2147483647, 2147483647, 'RS', 'Serbia'), +('195.88.14.0', '195.88.15.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.88.16.0', '195.88.17.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.88.18.0', '195.88.19.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.88.20.0', '195.88.21.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.88.22.0', '195.88.23.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.88.24.0', '195.88.25.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.88.26.0', '195.88.27.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.88.28.0', '195.88.31.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.88.32.0', '195.88.33.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('195.88.34.0', '195.88.35.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.88.36.0', '195.88.37.255', 2147483647, 2147483647, 'EE', 'Estonia'), +('195.88.38.0', '195.88.39.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.88.40.0', '195.88.41.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.88.42.0', '195.88.43.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.88.44.0', '195.88.45.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.88.46.0', '195.88.47.255', 2147483647, 2147483647, 'HR', 'Croatia'), +('195.88.48.0', '195.88.49.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.88.50.0', '195.88.51.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.88.52.0', '195.88.53.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.88.54.0', '195.88.55.255', 2147483647, 2147483647, 'NO', 'Norway'), +('195.88.56.0', '195.88.59.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.88.60.0', '195.88.61.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.88.62.0', '195.88.63.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.88.64.0', '195.88.65.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.88.66.0', '195.88.67.255', 2147483647, 2147483647, 'AM', 'Armenia'), +('195.88.68.0', '195.88.69.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.88.70.0', '195.88.71.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.88.72.0', '195.88.73.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.88.74.0', '195.88.75.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('195.88.76.0', '195.88.79.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.88.80.0', '195.88.81.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('195.88.82.0', '195.88.83.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('195.88.84.0', '195.88.85.255', 2147483647, 2147483647, 'FR', 'France'), +('195.88.86.0', '195.88.87.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.88.88.0', '195.88.89.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.88.90.0', '195.88.91.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.88.92.0', '195.88.93.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.88.94.0', '195.88.95.255', 2147483647, 2147483647, 'FR', 'France'), +('195.88.96.0', '195.88.99.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.88.100.0', '195.88.101.255', 2147483647, 2147483647, 'GB', 'United Kingdom'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('195.88.102.0', '195.88.105.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.88.106.0', '195.88.107.255', 2147483647, 2147483647, 'NO', 'Norway'), +('195.88.108.0', '195.88.109.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.88.110.0', '195.88.111.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.88.112.0', '195.88.113.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.88.114.0', '195.88.115.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.88.116.0', '195.88.117.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.88.118.0', '195.88.119.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.88.120.0', '195.88.121.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.88.122.0', '195.88.123.255', 2147483647, 2147483647, 'MK', 'Macedonia'), +('195.88.124.0', '195.88.125.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.88.126.0', '195.88.127.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.88.128.0', '195.88.129.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.88.130.0', '195.88.131.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.88.132.0', '195.88.135.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.88.136.0', '195.88.137.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.88.138.0', '195.88.139.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.88.140.0', '195.88.141.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('195.88.142.0', '195.88.143.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('195.88.144.0', '195.88.145.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.88.146.0', '195.88.147.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.88.148.0', '195.88.149.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.88.150.0', '195.88.151.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('195.88.152.0', '195.88.153.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.88.154.0', '195.88.155.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.88.156.0', '195.88.157.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.88.158.0', '195.88.159.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.88.160.0', '195.88.161.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.88.162.0', '195.88.163.255', 2147483647, 2147483647, 'GR', 'Greece'), +('195.88.164.0', '195.88.165.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('195.88.166.0', '195.88.167.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.88.168.0', '195.88.169.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.88.170.0', '195.88.171.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.88.172.0', '195.88.175.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.88.176.0', '195.88.177.255', 2147483647, 2147483647, 'CY', 'Cyprus'), +('195.88.178.0', '195.88.179.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.88.180.0', '195.88.181.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.88.182.0', '195.88.183.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.88.184.0', '195.88.185.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.88.186.0', '195.88.187.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.88.188.0', '195.88.193.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.88.194.0', '195.88.195.255', 2147483647, 2147483647, 'FR', 'France'), +('195.88.196.0', '195.88.201.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.88.202.0', '195.88.203.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.88.204.0', '195.88.205.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.88.206.0', '195.88.211.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.88.212.0', '195.88.213.255', 2147483647, 2147483647, 'HR', 'Croatia'), +('195.88.214.0', '195.88.215.255', 2147483647, 2147483647, 'UZ', 'Uzbekistan'), +('195.88.216.0', '195.88.217.255', 2147483647, 2147483647, 'RS', 'Serbia'), +('195.88.218.0', '195.88.219.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.88.220.0', '195.88.221.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.88.222.0', '195.88.223.255', 2147483647, 2147483647, 'KW', 'Kuwait'), +('195.88.224.0', '195.88.225.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.88.226.0', '195.88.227.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.88.228.0', '195.88.229.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.88.230.0', '195.88.231.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.88.232.0', '195.88.233.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.88.234.0', '195.88.235.255', 2147483647, 2147483647, 'IL', 'Israel'), +('195.88.236.0', '195.88.237.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.88.238.0', '195.88.239.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.88.240.0', '195.88.241.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.88.242.0', '195.88.243.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.88.244.0', '195.88.245.255', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('195.88.246.0', '195.88.249.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.88.250.0', '195.88.251.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.88.252.0', '195.88.253.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.88.254.0', '195.88.255.255', 2147483647, 2147483647, 'AM', 'Armenia'), +('195.89.0.0', '195.89.23.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.89.23.240', '195.89.23.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('195.89.24.0', '195.89.245.103', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.89.245.104', '195.89.245.111', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.89.245.112', '195.89.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.90.0.0', '195.90.31.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.90.32.0', '195.90.32.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.90.33.0', '195.90.33.255', 2147483647, 2147483647, 'US', 'United States'), +('195.90.34.0', '195.90.35.255', 2147483647, 2147483647, 'FR', 'France'), +('195.90.36.0', '195.90.36.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.90.37.0', '195.90.37.255', 2147483647, 2147483647, 'IL', 'Israel'), +('195.90.38.0', '195.90.39.255', 2147483647, 2147483647, 'FR', 'France'), +('195.90.40.0', '195.90.42.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.90.43.0', '195.90.43.127', 2147483647, 2147483647, 'US', 'United States'), +('195.90.43.128', '195.90.43.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.90.44.0', '195.90.44.255', 2147483647, 2147483647, 'US', 'United States'), +('195.90.45.0', '195.90.47.79', 2147483647, 2147483647, 'EU', 'Europe'), +('195.90.47.80', '195.90.47.159', 2147483647, 2147483647, 'CA', 'Canada'), +('195.90.47.160', '195.90.47.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.90.48.0', '195.90.48.15', 2147483647, 2147483647, 'US', 'United States'), +('195.90.48.16', '195.90.48.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.90.49.0', '195.90.49.15', 2147483647, 2147483647, 'US', 'United States'), +('195.90.49.16', '195.90.49.191', 2147483647, 2147483647, 'EU', 'Europe'), +('195.90.49.192', '195.90.51.191', 2147483647, 2147483647, 'US', 'United States'), +('195.90.51.192', '195.90.51.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.90.52.0', '195.90.52.63', 2147483647, 2147483647, 'US', 'United States'), +('195.90.52.64', '195.90.52.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.90.53.0', '195.90.53.128', 2147483647, 2147483647, 'US', 'United States'), +('195.90.53.129', '195.90.53.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.90.54.0', '195.90.54.255', 2147483647, 2147483647, 'US', 'United States'), +('195.90.55.0', '195.90.63.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.90.64.0', '195.90.66.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.90.67.0', '195.90.67.95', 2147483647, 2147483647, 'EU', 'Europe'), +('195.90.67.96', '195.90.67.111', 2147483647, 2147483647, 'IL', 'Israel'), +('195.90.67.112', '195.90.75.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.90.76.0', '195.90.79.127', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.90.79.128', '195.90.79.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.90.80.0', '195.90.80.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.90.81.0', '195.90.82.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.90.83.0', '195.90.86.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.90.87.0', '195.90.88.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.90.89.0', '195.90.89.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.90.90.0', '195.90.95.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.90.96.0', '195.90.99.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.90.100.0', '195.90.101.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.90.102.0', '195.90.103.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.90.104.0', '195.90.105.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.90.106.0', '195.90.107.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.90.108.0', '195.90.109.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.90.110.0', '195.90.111.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.90.112.0', '195.90.113.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.90.114.0', '195.90.115.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.90.116.0', '195.90.117.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.90.118.0', '195.90.121.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.90.122.0', '195.90.123.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.90.124.0', '195.90.125.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.90.126.0', '195.90.127.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.90.128.0', '195.90.191.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.90.192.0', '195.90.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.91.0.0', '195.91.127.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('195.91.128.0', '195.91.255.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.92.0.0', '195.93.57.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.93.58.0', '195.93.59.255', 2147483647, 2147483647, 'US', 'United States'), +('195.93.60.0', '195.93.95.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.93.96.0', '195.93.111.255', 2147483647, 2147483647, 'FR', 'France'), +('195.93.112.0', '195.93.127.255', 2147483647, 2147483647, 'US', 'United States'), +('195.93.128.0', '195.93.129.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.93.130.0', '195.93.131.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.93.132.0', '195.93.133.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('195.93.134.0', '195.93.135.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.93.136.0', '195.93.137.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.93.138.0', '195.93.139.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.93.140.0', '195.93.141.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.93.142.0', '195.93.143.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.93.144.0', '195.93.145.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.93.146.0', '195.93.147.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.93.148.0', '195.93.151.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.93.152.0', '195.93.153.255', 2147483647, 2147483647, 'KZ', 'Kazakstan'), +('195.93.154.0', '195.93.155.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.93.156.0', '195.93.157.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.93.158.0', '195.93.159.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.93.160.0', '195.93.161.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.93.162.0', '195.93.163.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.93.164.0', '195.93.165.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.93.166.0', '195.93.167.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.93.168.0', '195.93.169.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.93.170.0', '195.93.171.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.93.172.0', '195.93.173.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.93.174.0', '195.93.175.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.93.176.0', '195.93.177.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.93.178.0', '195.93.179.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.93.180.0', '195.93.181.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.93.182.0', '195.93.183.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.93.184.0', '195.93.185.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.93.186.0', '195.93.189.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.93.190.0', '195.93.191.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.93.192.0', '195.93.193.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.93.194.0', '195.93.195.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.93.196.0', '195.93.197.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.93.198.0', '195.93.199.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.93.200.0', '195.93.201.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.93.202.0', '195.93.203.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.93.204.0', '195.93.205.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.93.206.0', '195.93.207.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.93.208.0', '195.93.209.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.93.210.0', '195.93.211.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.93.212.0', '195.93.215.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.93.216.0', '195.93.217.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('195.93.218.0', '195.93.219.255', 2147483647, 2147483647, 'MD', 'Moldova, Republic of'), +('195.93.220.0', '195.93.221.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.93.222.0', '195.93.223.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.93.224.0', '195.93.225.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.93.226.0', '195.93.227.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.93.228.0', '195.93.229.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.93.230.0', '195.93.231.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.93.232.0', '195.93.233.255', 2147483647, 2147483647, 'NO', 'Norway'), +('195.93.234.0', '195.93.235.255', 2147483647, 2147483647, 'IL', 'Israel'), +('195.93.236.0', '195.93.237.255', 2147483647, 2147483647, 'FR', 'France'), +('195.93.238.0', '195.93.239.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.93.240.0', '195.93.241.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.93.242.0', '195.93.245.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.93.246.0', '195.93.249.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.93.250.0', '195.93.251.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.93.252.0', '195.93.253.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.93.254.0', '195.93.255.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.94.0.0', '195.94.31.255', 2147483647, 2147483647, 'YE', 'Yemen'), +('195.94.32.0', '195.94.42.111', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.94.42.112', '195.94.42.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.94.42.128', '195.94.63.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.94.64.0', '195.94.95.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.94.96.0', '195.94.127.255', 2147483647, 2147483647, 'FI', 'Finland'), +('195.94.128.0', '195.94.191.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.94.192.0', '195.94.223.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.94.224.0', '195.94.255.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.95.0.0', '195.95.127.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.95.128.0', '195.95.128.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.95.129.0', '195.95.129.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.95.130.0', '195.95.130.255', 2147483647, 2147483647, 'CM', 'Cameroon'), +('195.95.131.0', '195.95.131.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.95.132.0', '195.95.132.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.95.133.0', '195.95.133.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.95.134.0', '195.95.135.255', 2147483647, 2147483647, 'FR', 'France'), +('195.95.136.0', '195.95.136.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.95.137.0', '195.95.137.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.95.138.0', '195.95.138.255', 2147483647, 2147483647, 'CY', 'Cyprus'), +('195.95.139.0', '195.95.139.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.95.140.0', '195.95.140.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.95.141.0', '195.95.141.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.95.142.0', '195.95.142.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.95.143.0', '195.95.143.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.95.144.0', '195.95.144.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.95.145.0', '195.95.145.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.95.146.0', '195.95.146.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.95.147.0', '195.95.147.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.95.148.0', '195.95.148.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.95.149.0', '195.95.149.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('195.95.150.0', '195.95.150.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.95.151.0', '195.95.151.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.95.152.0', '195.95.152.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.95.153.0', '195.95.153.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.95.154.0', '195.95.154.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.95.155.0', '195.95.155.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.95.156.0', '195.95.156.255', 2147483647, 2147483647, 'FR', 'France'), +('195.95.157.0', '195.95.157.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.95.158.0', '195.95.158.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('195.95.159.0', '195.95.159.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.95.160.0', '195.95.160.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('195.95.162.0', '195.95.162.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.95.163.0', '195.95.163.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.95.164.0', '195.95.164.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.95.165.0', '195.95.165.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.95.166.0', '195.95.167.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.95.168.0', '195.95.168.255', 2147483647, 2147483647, 'FR', 'France'), +('195.95.169.0', '195.95.170.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.95.171.0', '195.95.171.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.95.172.0', '195.95.172.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.95.173.0', '195.95.173.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('195.95.174.0', '195.95.175.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.95.176.0', '195.95.176.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.95.177.0', '195.95.177.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.95.178.0', '195.95.178.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.95.179.0', '195.95.179.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('195.95.180.0', '195.95.180.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.95.181.0', '195.95.181.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.95.182.0', '195.95.182.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.95.183.0', '195.95.183.255', 2147483647, 2147483647, 'IL', 'Israel'), +('195.95.184.0', '195.95.184.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.95.185.0', '195.95.185.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.95.186.0', '195.95.186.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.95.187.0', '195.95.187.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.95.188.0', '195.95.188.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.95.189.0', '195.95.189.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.95.190.0', '195.95.191.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('195.95.192.0', '195.95.195.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.95.196.0', '195.95.197.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.95.198.0', '195.95.199.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.95.200.0', '195.95.201.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.95.202.0', '195.95.203.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.95.204.0', '195.95.205.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('195.95.206.0', '195.95.207.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.95.208.0', '195.95.209.255', 2147483647, 2147483647, 'FI', 'Finland'), +('195.95.210.0', '195.95.211.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.95.212.0', '195.95.217.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.95.218.0', '195.95.219.255', 2147483647, 2147483647, 'BY', 'Belarus'), +('195.95.220.0', '195.95.221.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.95.222.0', '195.95.223.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.95.224.0', '195.95.225.255', 2147483647, 2147483647, 'FR', 'France'), +('195.95.226.0', '195.95.227.255', 2147483647, 2147483647, 'GR', 'Greece'), +('195.95.228.0', '195.95.229.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.95.230.0', '195.95.231.255', 2147483647, 2147483647, 'IL', 'Israel'), +('195.95.232.0', '195.95.233.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.95.234.0', '195.95.235.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.95.236.0', '195.95.237.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('195.95.238.0', '195.95.243.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.95.244.0', '195.95.249.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.95.250.0', '195.95.251.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.95.252.0', '195.95.253.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.95.254.0', '195.95.255.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.96.0.0', '195.96.31.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.96.32.0', '195.96.63.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.96.64.0', '195.96.95.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.96.96.0', '195.96.127.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.96.128.0', '195.96.130.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.96.131.0', '195.96.131.255', 2147483647, 2147483647, 'AE', 'United Arab Emirates'), +('195.96.132.0', '195.96.139.15', 2147483647, 2147483647, 'IQ', 'Iraq'), +('195.96.139.16', '195.96.139.31', 2147483647, 2147483647, 'IR', 'Iran, Islamic Republic of'), +('195.96.139.32', '195.96.146.255', 2147483647, 2147483647, 'IQ', 'Iraq'), +('195.96.147.0', '195.96.149.255', 2147483647, 2147483647, 'IR', 'Iran, Islamic Republic of'), +('195.96.150.0', '195.96.159.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.96.160.0', '195.96.191.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.96.192.0', '195.96.223.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.96.224.0', '195.96.255.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('195.97.0.0', '195.97.127.255', 2147483647, 2147483647, 'GR', 'Greece'), +('195.97.128.0', '195.97.191.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.97.192.0', '195.97.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.98.0.0', '195.98.31.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('195.98.32.0', '195.98.95.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.98.96.0', '195.98.127.255', 2147483647, 2147483647, 'FR', 'France'), +('195.98.128.0', '195.98.159.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('195.98.160.0', '195.98.191.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.98.192.0', '195.98.223.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.98.224.0', '195.98.255.255', 2147483647, 2147483647, 'FR', 'France'), +('195.99.0.0', '195.99.37.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.99.38.0', '195.99.39.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.99.40.0', '195.99.63.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.99.64.0', '195.99.79.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.99.80.0', '195.99.88.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.99.89.0', '195.99.89.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.99.90.0', '195.99.225.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.99.226.0', '195.99.226.255', 2147483647, 2147483647, 'FR', 'France'), +('195.99.227.0', '195.99.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.100.0.0', '195.100.0.31', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.100.0.32', '195.100.0.47', 2147483647, 2147483647, 'ES', 'Spain'), +('195.100.0.48', '195.100.2.7', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.100.2.8', '195.100.2.15', 2147483647, 2147483647, 'ES', 'Spain'), +('195.100.2.16', '195.100.15.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.100.16.0', '195.100.16.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.100.17.0', '195.100.17.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.100.18.0', '195.100.22.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.100.23.0', '195.100.23.127', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.100.23.128', '195.100.24.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.100.25.0', '195.100.28.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.100.29.0', '195.100.29.31', 2147483647, 2147483647, 'ES', 'Spain'), +('195.100.29.32', '195.100.33.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.100.34.0', '195.100.34.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.100.34.64', '195.100.34.79', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.100.34.80', '195.100.34.143', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.100.34.144', '195.100.34.151', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.100.34.152', '195.100.34.175', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.100.34.176', '195.100.34.223', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.100.34.224', '195.100.35.71', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.100.35.72', '195.100.35.79', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.100.35.80', '195.100.35.95', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.100.35.96', '195.100.35.127', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.100.35.128', '195.100.35.191', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.100.35.192', '195.100.35.207', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.100.35.208', '195.100.35.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.100.36.0', '195.100.36.7', 2147483647, 2147483647, 'DE', 'Germany'), +('195.100.36.8', '195.100.36.31', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.100.36.32', '195.100.36.39', 2147483647, 2147483647, 'NO', 'Norway'), +('195.100.36.40', '195.100.36.215', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.100.36.216', '195.100.36.223', 2147483647, 2147483647, 'DE', 'Germany'), +('195.100.36.224', '195.100.192.235', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.100.192.236', '195.100.192.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.100.192.240', '195.100.198.223', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.100.198.224', '195.100.198.239', 2147483647, 2147483647, 'DE', 'Germany'), +('195.100.198.240', '195.100.223.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.100.224.0', '195.100.224.7', 2147483647, 2147483647, 'DM', 'Dominica'), +('195.100.224.8', '195.100.224.47', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.100.224.48', '195.100.224.55', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.100.224.56', '195.100.224.111', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.100.224.112', '195.100.224.127', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.100.224.128', '195.100.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.101.0.0', '195.101.219.191', 2147483647, 2147483647, 'FR', 'France'), +('195.101.219.192', '195.101.219.255', 2147483647, 2147483647, 'MC', 'Monaco'), +('195.101.220.0', '195.101.255.255', 2147483647, 2147483647, 'FR', 'France'), +('195.102.0.0', '195.102.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.103.0.0', '195.103.255.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.104.0.0', '195.107.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.108.0.0', '195.109.172.215', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.109.172.216', '195.109.172.223', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('195.109.172.224', '195.109.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.110.0.0', '195.110.1.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.110.2.0', '195.110.3.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.110.4.0', '195.110.5.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.110.6.0', '195.110.7.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.110.8.0', '195.110.11.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.110.12.0', '195.110.13.255', 2147483647, 2147483647, 'FR', 'France'), +('195.110.14.0', '195.110.15.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.110.16.0', '195.110.17.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.110.18.0', '195.110.19.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.110.20.0', '195.110.21.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.110.22.0', '195.110.23.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.110.24.0', '195.110.25.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('195.110.26.0', '195.110.27.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.110.28.0', '195.110.29.255', 2147483647, 2147483647, 'NO', 'Norway'), +('195.110.30.0', '195.110.31.255', 2147483647, 2147483647, 'FR', 'France'), +('195.110.64.0', '195.110.65.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.110.66.0', '195.110.66.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.110.67.0', '195.110.95.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.110.96.0', '195.110.159.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.110.160.0', '195.110.191.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.110.192.0', '195.110.223.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.110.224.0', '195.110.255.255', 2147483647, 2147483647, 'FR', 'France'), +('195.111.0.0', '195.111.132.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('195.111.133.0', '195.111.133.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('195.111.134.0', '195.111.255.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('195.112.0.0', '195.112.63.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.64.0', '195.112.95.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.96.0', '195.112.127.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.112.128.0', '195.112.159.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('195.112.160.0', '195.112.160.7', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.160.8', '195.112.160.11', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.112.160.12', '195.112.160.15', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.160.16', '195.112.160.19', 2147483647, 2147483647, 'TR', 'Turkey'), +('195.112.160.20', '195.112.160.39', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.160.40', '195.112.160.43', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.160.44', '195.112.160.47', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.160.48', '195.112.160.51', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.160.52', '195.112.160.55', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.160.56', '195.112.160.59', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.160.60', '195.112.160.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.160.64', '195.112.160.67', 2147483647, 2147483647, 'FR', 'France'), +('195.112.160.68', '195.112.160.71', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.160.72', '195.112.160.75', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.160.76', '195.112.160.79', 2147483647, 2147483647, 'PT', 'Portugal'), +('195.112.160.80', '195.112.160.83', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.160.84', '195.112.160.87', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.160.88', '195.112.160.91', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.160.92', '195.112.160.95', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.160.96', '195.112.160.107', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.160.108', '195.112.160.111', 2147483647, 2147483647, 'FR', 'France'), +('195.112.160.112', '195.112.160.115', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.160.116', '195.112.160.119', 2147483647, 2147483647, 'FR', 'France'), +('195.112.160.120', '195.112.160.123', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.160.124', '195.112.160.127', 2147483647, 2147483647, 'FR', 'France'), +('195.112.160.128', '195.112.160.131', 2147483647, 2147483647, 'LI', 'Liechtenstein'), +('195.112.160.132', '195.112.160.135', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.160.136', '195.112.160.139', 2147483647, 2147483647, 'AT', 'Austria'), +('195.112.160.140', '195.112.160.143', 2147483647, 2147483647, 'GR', 'Greece'), +('195.112.160.144', '195.112.160.151', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.160.152', '195.112.160.155', 2147483647, 2147483647, 'PL', 'Poland'), +('195.112.160.156', '195.112.160.163', 2147483647, 2147483647, 'FR', 'France'), +('195.112.160.164', '195.112.160.167', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.160.168', '195.112.160.171', 2147483647, 2147483647, 'AT', 'Austria'), +('195.112.160.172', '195.112.160.175', 2147483647, 2147483647, 'FR', 'France'), +('195.112.160.176', '195.112.160.179', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.160.180', '195.112.160.187', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.160.188', '195.112.160.191', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.160.192', '195.112.160.195', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.160.196', '195.112.160.199', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.160.200', '195.112.160.203', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.160.204', '195.112.160.211', 2147483647, 2147483647, 'FR', 'France'), +('195.112.160.212', '195.112.160.223', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.160.224', '195.112.160.227', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.160.228', '195.112.160.231', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.160.232', '195.112.160.235', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.160.236', '195.112.160.239', 2147483647, 2147483647, 'FR', 'France'), +('195.112.160.240', '195.112.160.243', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.160.244', '195.112.160.247', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.160.248', '195.112.160.251', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.112.160.252', '195.112.160.255', 2147483647, 2147483647, 'BH', 'Bahrain'), +('195.112.161.0', '195.112.161.7', 2147483647, 2147483647, 'FR', 'France'), +('195.112.161.8', '195.112.161.11', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.161.12', '195.112.161.15', 2147483647, 2147483647, 'FR', 'France'), +('195.112.161.16', '195.112.161.19', 2147483647, 2147483647, 'ZA', 'South Africa'), +('195.112.161.20', '195.112.161.31', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.161.32', '195.112.161.35', 2147483647, 2147483647, 'AT', 'Austria'), +('195.112.161.36', '195.112.161.39', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.161.40', '195.112.161.43', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.161.44', '195.112.161.47', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.161.48', '195.112.161.51', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.161.52', '195.112.161.55', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.161.56', '195.112.161.59', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.161.60', '195.112.161.63', 2147483647, 2147483647, 'FR', 'France'), +('195.112.161.64', '195.112.161.67', 2147483647, 2147483647, 'SI', 'Slovenia'), +('195.112.161.68', '195.112.161.71', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.161.72', '195.112.161.75', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.161.76', '195.112.161.79', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.161.80', '195.112.161.83', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.161.84', '195.112.161.87', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.161.88', '195.112.161.91', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.161.92', '195.112.161.95', 2147483647, 2147483647, 'FR', 'France'), +('195.112.161.96', '195.112.161.99', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.161.100', '195.112.161.103', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.161.104', '195.112.161.111', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.161.112', '195.112.161.115', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.161.116', '195.112.161.119', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.161.120', '195.112.161.123', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.161.124', '195.112.161.127', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.161.128', '195.112.161.131', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.161.132', '195.112.161.135', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.161.136', '195.112.161.139', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.112.161.140', '195.112.161.143', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.161.144', '195.112.161.147', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.161.148', '195.112.161.155', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.161.156', '195.112.161.159', 2147483647, 2147483647, 'FR', 'France'), +('195.112.161.160', '195.112.161.163', 2147483647, 2147483647, 'NO', 'Norway'), +('195.112.161.164', '195.112.161.167', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.112.161.168', '195.112.161.187', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.161.188', '195.112.161.191', 2147483647, 2147483647, 'HU', 'Hungary'), +('195.112.161.192', '195.112.161.195', 2147483647, 2147483647, 'CY', 'Cyprus'), +('195.112.161.196', '195.112.161.199', 2147483647, 2147483647, 'FR', 'France'), +('195.112.161.200', '195.112.161.207', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.161.208', '195.112.161.211', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('195.112.161.212', '195.112.161.215', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.161.216', '195.112.161.219', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.161.220', '195.112.161.223', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.161.224', '195.112.161.227', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.161.228', '195.112.161.231', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.112.161.232', '195.112.161.235', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.161.236', '195.112.161.239', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.161.240', '195.112.161.243', 2147483647, 2147483647, 'AT', 'Austria'), +('195.112.161.244', '195.112.161.247', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.161.248', '195.112.161.251', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.112.161.252', '195.112.162.3', 2147483647, 2147483647, 'FR', 'France'), +('195.112.162.4', '195.112.162.7', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.162.8', '195.112.162.11', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.162.12', '195.112.162.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.162.16', '195.112.162.19', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.162.20', '195.112.162.23', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.162.24', '195.112.162.35', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.162.36', '195.112.162.39', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.162.40', '195.112.162.43', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.162.44', '195.112.162.47', 2147483647, 2147483647, 'AT', 'Austria'), +('195.112.162.48', '195.112.162.51', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.162.52', '195.112.162.55', 2147483647, 2147483647, 'FR', 'France'), +('195.112.162.56', '195.112.162.59', 2147483647, 2147483647, 'NO', 'Norway'), +('195.112.162.60', '195.112.162.63', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.162.64', '195.112.162.67', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.162.68', '195.112.162.71', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.162.72', '195.112.162.75', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.162.76', '195.112.162.79', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.162.80', '195.112.162.83', 2147483647, 2147483647, 'FR', 'France'), +('195.112.162.84', '195.112.162.91', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.162.92', '195.112.162.95', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.162.96', '195.112.162.99', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.162.100', '195.112.162.103', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.112.162.104', '195.112.162.107', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.162.108', '195.112.162.111', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.162.112', '195.112.162.115', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.162.116', '195.112.162.119', 2147483647, 2147483647, 'FR', 'France'), +('195.112.162.120', '195.112.162.127', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.162.128', '195.112.162.131', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.162.132', '195.112.162.135', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.162.136', '195.112.162.139', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.162.140', '195.112.162.143', 2147483647, 2147483647, 'FR', 'France'), +('195.112.162.144', '195.112.162.147', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.162.148', '195.112.162.151', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.112.162.152', '195.112.162.155', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.162.156', '195.112.162.159', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.162.160', '195.112.162.163', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.112.162.164', '195.112.162.167', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.162.168', '195.112.162.171', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.162.172', '195.112.162.175', 2147483647, 2147483647, 'GR', 'Greece'), +('195.112.162.176', '195.112.162.179', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.162.180', '195.112.162.183', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.162.184', '195.112.162.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.162.192', '195.112.162.195', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.162.196', '195.112.162.203', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.162.204', '195.112.162.207', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.162.208', '195.112.162.211', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.162.212', '195.112.162.215', 2147483647, 2147483647, 'FR', 'France'), +('195.112.162.216', '195.112.162.219', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.162.220', '195.112.162.223', 2147483647, 2147483647, 'HU', 'Hungary'), +('195.112.162.224', '195.112.162.227', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.162.228', '195.112.162.231', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.162.232', '195.112.162.235', 2147483647, 2147483647, 'PT', 'Portugal'), +('195.112.162.236', '195.112.162.239', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.162.240', '195.112.162.247', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.162.248', '195.112.162.251', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.162.252', '195.112.162.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.163.0', '195.112.163.7', 2147483647, 2147483647, 'FR', 'France'), +('195.112.163.8', '195.112.163.11', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.163.12', '195.112.163.15', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.163.16', '195.112.163.23', 2147483647, 2147483647, 'FR', 'France'), +('195.112.163.24', '195.112.163.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.163.32', '195.112.163.39', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.163.40', '195.112.163.43', 2147483647, 2147483647, 'SK', 'Slovakia'), +('195.112.163.44', '195.112.163.47', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.163.48', '195.112.163.55', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.163.56', '195.112.163.59', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.163.60', '195.112.163.63', 2147483647, 2147483647, 'GR', 'Greece'), +('195.112.163.64', '195.112.163.67', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.163.68', '195.112.163.71', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.163.72', '195.112.163.75', 2147483647, 2147483647, 'FR', 'France'), +('195.112.163.76', '195.112.163.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.163.80', '195.112.163.87', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.163.88', '195.112.163.91', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.112.163.92', '195.112.163.95', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.163.96', '195.112.163.99', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.163.100', '195.112.163.107', 2147483647, 2147483647, 'FR', 'France'), +('195.112.163.108', '195.112.163.111', 2147483647, 2147483647, 'AT', 'Austria'), +('195.112.163.112', '195.112.163.115', 2147483647, 2147483647, 'FR', 'France'), +('195.112.163.116', '195.112.163.119', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.163.120', '195.112.163.123', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.163.124', '195.112.163.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.163.128', '195.112.163.131', 2147483647, 2147483647, 'IE', 'Ireland'), +('195.112.163.132', '195.112.163.135', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.112.163.136', '195.112.163.139', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.163.140', '195.112.163.143', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.163.144', '195.112.163.147', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.163.148', '195.112.163.151', 2147483647, 2147483647, 'CY', 'Cyprus'), +('195.112.163.152', '195.112.163.155', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.163.156', '195.112.163.159', 2147483647, 2147483647, 'HU', 'Hungary'), +('195.112.163.160', '195.112.163.167', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.163.168', '195.112.163.175', 2147483647, 2147483647, 'FR', 'France'), +('195.112.163.176', '195.112.163.183', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.163.184', '195.112.163.187', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.163.188', '195.112.163.191', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.163.192', '195.112.163.195', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.163.196', '195.112.163.199', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.163.200', '195.112.163.203', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.163.204', '195.112.163.207', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.163.208', '195.112.163.211', 2147483647, 2147483647, 'IS', 'Iceland'), +('195.112.163.212', '195.112.163.215', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.163.216', '195.112.163.219', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.163.220', '195.112.163.223', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.163.224', '195.112.163.227', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.163.228', '195.112.163.231', 2147483647, 2147483647, 'FR', 'France'), +('195.112.163.232', '195.112.163.235', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.163.236', '195.112.163.239', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.163.240', '195.112.163.251', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.163.252', '195.112.163.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.164.0', '195.112.164.11', 2147483647, 2147483647, 'US', 'United States'), +('195.112.164.12', '195.112.164.15', 2147483647, 2147483647, 'AR', 'Argentina'), +('195.112.164.16', '195.112.164.19', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.164.20', '195.112.164.47', 2147483647, 2147483647, 'US', 'United States'), +('195.112.164.48', '195.112.164.51', 2147483647, 2147483647, 'GU', 'Guam'), +('195.112.164.52', '195.112.164.59', 2147483647, 2147483647, 'US', 'United States'), +('195.112.164.60', '195.112.164.63', 2147483647, 2147483647, 'CL', 'Chile'), +('195.112.164.64', '195.112.164.123', 2147483647, 2147483647, 'US', 'United States'), +('195.112.164.124', '195.112.164.127', 2147483647, 2147483647, 'BR', 'Brazil'), +('195.112.164.128', '195.112.164.135', 2147483647, 2147483647, 'AR', 'Argentina'), +('195.112.164.136', '195.112.164.143', 2147483647, 2147483647, 'US', 'United States'), +('195.112.164.144', '195.112.164.147', 2147483647, 2147483647, 'CO', 'Colombia'), +('195.112.164.148', '195.112.164.155', 2147483647, 2147483647, 'US', 'United States'), +('195.112.164.156', '195.112.164.159', 2147483647, 2147483647, 'AR', 'Argentina'), +('195.112.164.160', '195.112.164.171', 2147483647, 2147483647, 'US', 'United States'), +('195.112.164.172', '195.112.164.175', 2147483647, 2147483647, 'MX', 'Mexico'), +('195.112.164.176', '195.112.164.179', 2147483647, 2147483647, 'US', 'United States'), +('195.112.164.180', '195.112.164.183', 2147483647, 2147483647, 'AR', 'Argentina'), +('195.112.164.184', '195.112.164.187', 2147483647, 2147483647, 'US', 'United States'), +('195.112.164.188', '195.112.164.191', 2147483647, 2147483647, 'CA', 'Canada'), +('195.112.164.192', '195.112.164.195', 2147483647, 2147483647, 'US', 'United States'), +('195.112.164.196', '195.112.164.199', 2147483647, 2147483647, 'BR', 'Brazil'), +('195.112.164.200', '195.112.164.203', 2147483647, 2147483647, 'CA', 'Canada'), +('195.112.164.204', '195.112.164.215', 2147483647, 2147483647, 'US', 'United States'), +('195.112.164.216', '195.112.164.219', 2147483647, 2147483647, 'BR', 'Brazil'), +('195.112.164.220', '195.112.164.243', 2147483647, 2147483647, 'US', 'United States'), +('195.112.164.244', '195.112.164.247', 2147483647, 2147483647, 'BR', 'Brazil'), +('195.112.164.248', '195.112.164.255', 2147483647, 2147483647, 'US', 'United States'), +('195.112.165.0', '195.112.165.3', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.165.4', '195.112.165.7', 2147483647, 2147483647, 'GB', 'United Kingdom'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('195.112.165.8', '195.112.165.11', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.165.12', '195.112.165.15', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.165.16', '195.112.165.23', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.165.24', '195.112.165.27', 2147483647, 2147483647, 'ZW', 'Zimbabwe'), +('195.112.165.28', '195.112.165.31', 2147483647, 2147483647, 'IE', 'Ireland'), +('195.112.165.32', '195.112.165.35', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.165.36', '195.112.165.43', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.165.44', '195.112.165.47', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.165.48', '195.112.165.51', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.165.52', '195.112.165.55', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.165.56', '195.112.165.59', 2147483647, 2147483647, 'PL', 'Poland'), +('195.112.165.60', '195.112.165.67', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.165.68', '195.112.165.71', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.112.165.72', '195.112.165.75', 2147483647, 2147483647, 'CY', 'Cyprus'), +('195.112.165.76', '195.112.165.79', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.165.80', '195.112.165.83', 2147483647, 2147483647, 'PL', 'Poland'), +('195.112.165.84', '195.112.165.87', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.112.165.88', '195.112.165.91', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.165.92', '195.112.165.99', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.165.100', '195.112.165.103', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.165.104', '195.112.165.107', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.165.108', '195.112.165.111', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.165.112', '195.112.165.119', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.165.120', '195.112.165.123', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('195.112.165.124', '195.112.165.131', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.165.132', '195.112.165.135', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('195.112.165.136', '195.112.165.139', 2147483647, 2147483647, 'FR', 'France'), +('195.112.165.140', '195.112.165.143', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.165.144', '195.112.165.147', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.112.165.148', '195.112.165.163', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.165.164', '195.112.165.167', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.165.168', '195.112.165.171', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.165.172', '195.112.165.175', 2147483647, 2147483647, 'FR', 'France'), +('195.112.165.176', '195.112.165.179', 2147483647, 2147483647, 'PT', 'Portugal'), +('195.112.165.180', '195.112.165.183', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.165.184', '195.112.165.187', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.165.188', '195.112.165.191', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.165.192', '195.112.165.195', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.165.196', '195.112.165.199', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('195.112.165.200', '195.112.165.203', 2147483647, 2147483647, 'AO', 'Angola'), +('195.112.165.204', '195.112.165.207', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.165.208', '195.112.165.211', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.165.212', '195.112.165.215', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.165.216', '195.112.165.219', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.112.165.220', '195.112.165.223', 2147483647, 2147483647, 'FR', 'France'), +('195.112.165.224', '195.112.165.239', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.165.240', '195.112.165.243', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.165.244', '195.112.165.247', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.112.165.248', '195.112.165.251', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.165.252', '195.112.165.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.112.166.0', '195.112.166.3', 2147483647, 2147483647, 'FR', 'France'), +('195.112.166.4', '195.112.166.7', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.166.8', '195.112.166.11', 2147483647, 2147483647, 'FR', 'France'), +('195.112.166.12', '195.112.166.15', 2147483647, 2147483647, 'TR', 'Turkey'), +('195.112.166.16', '195.112.166.19', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.166.20', '195.112.166.23', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.166.24', '195.112.166.31', 2147483647, 2147483647, 'FR', 'France'), +('195.112.166.32', '195.112.166.35', 2147483647, 2147483647, 'GR', 'Greece'), +('195.112.166.36', '195.112.166.39', 2147483647, 2147483647, 'FR', 'France'), +('195.112.166.40', '195.112.166.43', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.166.44', '195.112.166.47', 2147483647, 2147483647, 'FR', 'France'), +('195.112.166.48', '195.112.166.51', 2147483647, 2147483647, 'GR', 'Greece'), +('195.112.166.52', '195.112.166.55', 2147483647, 2147483647, 'TR', 'Turkey'), +('195.112.166.56', '195.112.166.59', 2147483647, 2147483647, 'KE', 'Kenya'), +('195.112.166.60', '195.112.166.63', 2147483647, 2147483647, 'TR', 'Turkey'), +('195.112.166.64', '195.112.166.67', 2147483647, 2147483647, 'CY', 'Cyprus'), +('195.112.166.68', '195.112.166.75', 2147483647, 2147483647, 'TR', 'Turkey'), +('195.112.166.76', '195.112.166.79', 2147483647, 2147483647, 'MC', 'Monaco'), +('195.112.166.80', '195.112.166.83', 2147483647, 2147483647, 'TR', 'Turkey'), +('195.112.166.84', '195.112.166.87', 2147483647, 2147483647, 'AT', 'Austria'), +('195.112.166.88', '195.112.166.91', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.112.166.92', '195.112.166.95', 2147483647, 2147483647, 'HU', 'Hungary'), +('195.112.166.96', '195.112.166.99', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.166.100', '195.112.166.103', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.166.104', '195.112.166.107', 2147483647, 2147483647, 'GR', 'Greece'), +('195.112.166.108', '195.112.166.111', 2147483647, 2147483647, 'AO', 'Angola'), +('195.112.166.112', '195.112.166.115', 2147483647, 2147483647, 'FR', 'France'), +('195.112.166.116', '195.112.166.119', 2147483647, 2147483647, 'GR', 'Greece'), +('195.112.166.120', '195.112.166.123', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.166.124', '195.112.166.127', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.166.128', '195.112.166.131', 2147483647, 2147483647, 'GR', 'Greece'), +('195.112.166.132', '195.112.166.135', 2147483647, 2147483647, 'FR', 'France'), +('195.112.166.136', '195.112.166.139', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.112.166.140', '195.112.166.143', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.166.144', '195.112.166.155', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.166.156', '195.112.166.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.166.160', '195.112.166.167', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.166.168', '195.112.166.171', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.166.172', '195.112.166.175', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.166.176', '195.112.166.179', 2147483647, 2147483647, 'HU', 'Hungary'), +('195.112.166.180', '195.112.166.187', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.166.188', '195.112.166.191', 2147483647, 2147483647, 'FR', 'France'), +('195.112.166.192', '195.112.166.195', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.166.196', '195.112.166.199', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.112.166.200', '195.112.166.203', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.166.204', '195.112.166.207', 2147483647, 2147483647, 'HU', 'Hungary'), +('195.112.166.208', '195.112.166.211', 2147483647, 2147483647, 'FR', 'France'), +('195.112.166.212', '195.112.166.215', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.166.216', '195.112.166.219', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.166.220', '195.112.166.223', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.166.224', '195.112.166.227', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.166.228', '195.112.166.231', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.166.232', '195.112.166.235', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.166.236', '195.112.166.239', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.166.240', '195.112.166.243', 2147483647, 2147483647, 'PL', 'Poland'), +('195.112.166.244', '195.112.166.251', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.166.252', '195.112.166.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.167.0', '195.112.167.3', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('195.112.167.4', '195.112.167.7', 2147483647, 2147483647, 'MY', 'Malaysia'), +('195.112.167.8', '195.112.167.11', 2147483647, 2147483647, 'TH', 'Thailand'), +('195.112.167.12', '195.112.167.19', 2147483647, 2147483647, 'SG', 'Singapore'), +('195.112.167.20', '195.112.167.23', 2147483647, 2147483647, 'CN', 'China'), +('195.112.167.24', '195.112.167.27', 2147483647, 2147483647, 'SG', 'Singapore'), +('195.112.167.28', '195.112.167.31', 2147483647, 2147483647, 'IN', 'India'), +('195.112.167.32', '195.112.167.35', 2147483647, 2147483647, 'MY', 'Malaysia'), +('195.112.167.36', '195.112.167.39', 2147483647, 2147483647, 'SG', 'Singapore'), +('195.112.167.40', '195.112.167.43', 2147483647, 2147483647, 'TW', 'Taiwan'), +('195.112.167.44', '195.112.167.47', 2147483647, 2147483647, 'SG', 'Singapore'), +('195.112.167.48', '195.112.167.51', 2147483647, 2147483647, 'MY', 'Malaysia'), +('195.112.167.52', '195.112.167.55', 2147483647, 2147483647, 'SG', 'Singapore'), +('195.112.167.56', '195.112.167.59', 2147483647, 2147483647, 'CN', 'China'), +('195.112.167.60', '195.112.167.63', 2147483647, 2147483647, 'MY', 'Malaysia'), +('195.112.167.64', '195.112.167.67', 2147483647, 2147483647, 'TW', 'Taiwan'), +('195.112.167.68', '195.112.167.75', 2147483647, 2147483647, 'MY', 'Malaysia'), +('195.112.167.76', '195.112.167.79', 2147483647, 2147483647, 'TH', 'Thailand'), +('195.112.167.80', '195.112.167.83', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.167.84', '195.112.167.87', 2147483647, 2147483647, 'CN', 'China'), +('195.112.167.88', '195.112.167.91', 2147483647, 2147483647, 'SG', 'Singapore'), +('195.112.167.92', '195.112.167.95', 2147483647, 2147483647, 'MY', 'Malaysia'), +('195.112.167.96', '195.112.167.107', 2147483647, 2147483647, 'SG', 'Singapore'), +('195.112.167.108', '195.112.167.111', 2147483647, 2147483647, 'ID', 'Indonesia'), +('195.112.167.112', '195.112.167.155', 2147483647, 2147483647, 'SG', 'Singapore'), +('195.112.167.156', '195.112.167.163', 2147483647, 2147483647, 'CN', 'China'), +('195.112.167.164', '195.112.167.167', 2147483647, 2147483647, 'TW', 'Taiwan'), +('195.112.167.168', '195.112.167.179', 2147483647, 2147483647, 'SG', 'Singapore'), +('195.112.167.180', '195.112.167.187', 2147483647, 2147483647, 'MY', 'Malaysia'), +('195.112.167.188', '195.112.167.191', 2147483647, 2147483647, 'SG', 'Singapore'), +('195.112.167.192', '195.112.167.195', 2147483647, 2147483647, 'IN', 'India'), +('195.112.167.196', '195.112.167.199', 2147483647, 2147483647, 'SG', 'Singapore'), +('195.112.167.200', '195.112.167.203', 2147483647, 2147483647, 'MY', 'Malaysia'), +('195.112.167.204', '195.112.167.223', 2147483647, 2147483647, 'SG', 'Singapore'), +('195.112.167.224', '195.112.167.227', 2147483647, 2147483647, 'TW', 'Taiwan'), +('195.112.167.228', '195.112.167.231', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('195.112.167.232', '195.112.167.235', 2147483647, 2147483647, 'SG', 'Singapore'), +('195.112.167.236', '195.112.167.239', 2147483647, 2147483647, 'IN', 'India'), +('195.112.167.240', '195.112.167.247', 2147483647, 2147483647, 'MY', 'Malaysia'), +('195.112.167.248', '195.112.167.251', 2147483647, 2147483647, 'IN', 'India'), +('195.112.167.252', '195.112.167.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('195.112.168.0', '195.112.168.3', 2147483647, 2147483647, 'GR', 'Greece'), +('195.112.168.4', '195.112.168.7', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.168.8', '195.112.168.11', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.112.168.12', '195.112.168.15', 2147483647, 2147483647, 'FR', 'France'), +('195.112.168.16', '195.112.168.19', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.168.20', '195.112.168.23', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.168.24', '195.112.168.27', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.168.28', '195.112.168.35', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.168.36', '195.112.168.51', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.168.52', '195.112.168.55', 2147483647, 2147483647, 'PT', 'Portugal'), +('195.112.168.56', '195.112.168.59', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.168.60', '195.112.168.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.168.64', '195.112.168.67', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.168.68', '195.112.168.71', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.168.72', '195.112.168.75', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.168.76', '195.112.168.79', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.168.80', '195.112.168.83', 2147483647, 2147483647, 'CY', 'Cyprus'), +('195.112.168.84', '195.112.168.87', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.168.88', '195.112.168.91', 2147483647, 2147483647, 'FR', 'France'), +('195.112.168.92', '195.112.168.95', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.168.96', '195.112.168.99', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.112.168.100', '195.112.168.103', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.168.104', '195.112.168.107', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.168.108', '195.112.168.115', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.168.116', '195.112.168.119', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.168.120', '195.112.168.123', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.168.124', '195.112.168.131', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.168.132', '195.112.168.135', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.168.136', '195.112.168.139', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.168.140', '195.112.168.143', 2147483647, 2147483647, 'FR', 'France'), +('195.112.168.144', '195.112.168.147', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.168.148', '195.112.168.151', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.168.152', '195.112.168.155', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.168.156', '195.112.168.159', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.168.160', '195.112.168.163', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.168.164', '195.112.168.167', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.168.168', '195.112.168.175', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.168.176', '195.112.168.179', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.168.180', '195.112.168.187', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.168.188', '195.112.168.195', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.168.196', '195.112.168.199', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.168.200', '195.112.168.203', 2147483647, 2147483647, 'GR', 'Greece'), +('195.112.168.204', '195.112.168.207', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.168.208', '195.112.168.211', 2147483647, 2147483647, 'FR', 'France'), +('195.112.168.212', '195.112.168.215', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.168.216', '195.112.168.219', 2147483647, 2147483647, 'PT', 'Portugal'), +('195.112.168.220', '195.112.168.223', 2147483647, 2147483647, 'FR', 'France'), +('195.112.168.224', '195.112.168.227', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.168.228', '195.112.168.231', 2147483647, 2147483647, 'IE', 'Ireland'), +('195.112.168.232', '195.112.168.235', 2147483647, 2147483647, 'FR', 'France'), +('195.112.168.236', '195.112.168.239', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.168.240', '195.112.168.243', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.168.244', '195.112.168.247', 2147483647, 2147483647, 'FR', 'France'), +('195.112.168.248', '195.112.168.251', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.168.252', '195.112.168.252', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.168.253', '195.112.168.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.169.0', '195.112.169.3', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.112.169.4', '195.112.169.7', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.169.8', '195.112.169.11', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.169.12', '195.112.169.15', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.169.16', '195.112.169.27', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.169.28', '195.112.169.31', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.169.32', '195.112.169.35', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.169.36', '195.112.169.39', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.169.40', '195.112.169.43', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.169.44', '195.112.169.47', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.169.48', '195.112.169.51', 2147483647, 2147483647, 'FR', 'France'), +('195.112.169.52', '195.112.169.55', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.169.56', '195.112.169.59', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.169.60', '195.112.169.63', 2147483647, 2147483647, 'FR', 'France'), +('195.112.169.64', '195.112.169.67', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.169.68', '195.112.169.71', 2147483647, 2147483647, 'FR', 'France'), +('195.112.169.72', '195.112.169.75', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.169.76', '195.112.169.79', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.169.80', '195.112.169.83', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.169.84', '195.112.169.87', 2147483647, 2147483647, 'FR', 'France'), +('195.112.169.88', '195.112.169.91', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.112.169.92', '195.112.169.95', 2147483647, 2147483647, 'FR', 'France'), +('195.112.169.96', '195.112.169.99', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.169.100', '195.112.169.107', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.169.108', '195.112.169.115', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.169.116', '195.112.169.119', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.169.120', '195.112.169.123', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.169.124', '195.112.169.127', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.169.128', '195.112.169.135', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.169.136', '195.112.169.139', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.169.140', '195.112.169.143', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.169.144', '195.112.169.147', 2147483647, 2147483647, 'AT', 'Austria'), +('195.112.169.148', '195.112.169.155', 2147483647, 2147483647, 'FR', 'France'), +('195.112.169.156', '195.112.169.163', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.169.164', '195.112.169.171', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.169.172', '195.112.169.175', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.169.176', '195.112.169.179', 2147483647, 2147483647, 'FR', 'France'), +('195.112.169.180', '195.112.169.183', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.112.169.184', '195.112.169.187', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.169.188', '195.112.169.191', 2147483647, 2147483647, 'FR', 'France'), +('195.112.169.192', '195.112.169.195', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.169.196', '195.112.169.199', 2147483647, 2147483647, 'PT', 'Portugal'), +('195.112.169.200', '195.112.169.203', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.169.204', '195.112.169.207', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.169.208', '195.112.169.215', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.169.216', '195.112.169.219', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.169.220', '195.112.169.223', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.112.169.224', '195.112.169.227', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.169.228', '195.112.169.231', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.169.232', '195.112.169.235', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.169.236', '195.112.169.239', 2147483647, 2147483647, 'FR', 'France'), +('195.112.169.240', '195.112.169.247', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.169.248', '195.112.169.255', 2147483647, 2147483647, 'FR', 'France'), +('195.112.170.0', '195.112.170.7', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.170.8', '195.112.170.11', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.170.12', '195.112.170.19', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.170.20', '195.112.170.23', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.112.170.24', '195.112.170.35', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.170.36', '195.112.170.39', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.170.40', '195.112.170.43', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.112.170.44', '195.112.170.51', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.170.52', '195.112.170.55', 2147483647, 2147483647, 'FR', 'France'), +('195.112.170.56', '195.112.170.59', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.170.60', '195.112.170.67', 2147483647, 2147483647, 'FR', 'France'), +('195.112.170.68', '195.112.170.71', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.170.72', '195.112.170.75', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.170.76', '195.112.170.79', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.170.80', '195.112.170.87', 2147483647, 2147483647, 'FR', 'France'), +('195.112.170.88', '195.112.170.91', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.170.92', '195.112.170.95', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.170.96', '195.112.170.99', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.170.100', '195.112.170.111', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.170.112', '195.112.170.115', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.170.116', '195.112.170.119', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.170.120', '195.112.170.123', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.170.124', '195.112.170.131', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.170.132', '195.112.170.135', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.112.170.136', '195.112.170.143', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.170.144', '195.112.170.147', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.170.148', '195.112.170.151', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.170.152', '195.112.170.155', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.170.156', '195.112.170.159', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.170.160', '195.112.170.163', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.170.164', '195.112.170.167', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.170.168', '195.112.170.175', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.170.176', '195.112.170.179', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.170.180', '195.112.170.183', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.170.184', '195.112.170.187', 2147483647, 2147483647, 'PT', 'Portugal'), +('195.112.170.188', '195.112.170.191', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.170.192', '195.112.170.195', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.170.196', '195.112.170.199', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.170.200', '195.112.170.203', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.170.204', '195.112.170.207', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.170.208', '195.112.170.211', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.170.212', '195.112.170.215', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.170.216', '195.112.170.219', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.112.170.220', '195.112.170.223', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.170.224', '195.112.170.227', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.170.228', '195.112.170.231', 2147483647, 2147483647, 'FR', 'France'), +('195.112.170.232', '195.112.170.239', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.170.240', '195.112.170.243', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.170.244', '195.112.170.247', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.170.248', '195.112.170.251', 2147483647, 2147483647, 'PT', 'Portugal'), +('195.112.170.252', '195.112.170.255', 2147483647, 2147483647, 'FR', 'France'), +('195.112.171.0', '195.112.171.3', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.171.4', '195.112.171.7', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.171.8', '195.112.171.11', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.171.12', '195.112.171.15', 2147483647, 2147483647, 'FR', 'France'), +('195.112.171.16', '195.112.171.19', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.171.20', '195.112.171.23', 2147483647, 2147483647, 'FR', 'France'), +('195.112.171.24', '195.112.171.27', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.171.28', '195.112.171.31', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.112.171.32', '195.112.171.35', 2147483647, 2147483647, 'FR', 'France'), +('195.112.171.36', '195.112.171.39', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.171.40', '195.112.171.43', 2147483647, 2147483647, 'FR', 'France'), +('195.112.171.44', '195.112.171.55', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.171.56', '195.112.171.59', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.171.60', '195.112.171.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.171.64', '195.112.171.67', 2147483647, 2147483647, 'PT', 'Portugal'), +('195.112.171.68', '195.112.171.71', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.171.72', '195.112.171.75', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.171.76', '195.112.171.79', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.171.80', '195.112.171.83', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.171.84', '195.112.171.87', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.171.88', '195.112.171.95', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.171.96', '195.112.171.99', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.171.100', '195.112.171.103', 2147483647, 2147483647, 'FR', 'France'), +('195.112.171.104', '195.112.171.107', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.171.108', '195.112.171.111', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.171.112', '195.112.171.115', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.171.116', '195.112.171.119', 2147483647, 2147483647, 'FR', 'France'), +('195.112.171.120', '195.112.171.123', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.171.124', '195.112.171.127', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.171.128', '195.112.171.131', 2147483647, 2147483647, 'FR', 'France'), +('195.112.171.132', '195.112.171.135', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.171.136', '195.112.171.139', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.171.140', '195.112.171.143', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.171.144', '195.112.171.147', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.171.148', '195.112.171.155', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.171.156', '195.112.171.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.171.160', '195.112.171.163', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.112.171.164', '195.112.171.167', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.112.171.168', '195.112.171.171', 2147483647, 2147483647, 'FR', 'France'), +('195.112.171.172', '195.112.171.179', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.171.180', '195.112.171.183', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.112.171.184', '195.112.171.191', 2147483647, 2147483647, 'FR', 'France'), +('195.112.171.192', '195.112.171.199', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.171.200', '195.112.171.203', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.112.171.204', '195.112.171.207', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.171.208', '195.112.171.211', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.171.212', '195.112.171.215', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.171.216', '195.112.171.223', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.171.224', '195.112.171.227', 2147483647, 2147483647, 'PT', 'Portugal'), +('195.112.171.228', '195.112.171.231', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.112.171.232', '195.112.171.239', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.171.240', '195.112.171.243', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.171.244', '195.112.171.247', 2147483647, 2147483647, 'AT', 'Austria'), +('195.112.171.248', '195.112.171.251', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.171.252', '195.112.171.255', 2147483647, 2147483647, 'FR', 'France'), +('195.112.172.0', '195.112.172.7', 2147483647, 2147483647, 'US', 'United States'), +('195.112.172.8', '195.112.172.11', 2147483647, 2147483647, 'BR', 'Brazil'), +('195.112.172.12', '195.112.172.27', 2147483647, 2147483647, 'US', 'United States'), +('195.112.172.28', '195.112.172.31', 2147483647, 2147483647, 'GU', 'Guam'), +('195.112.172.32', '195.112.172.35', 2147483647, 2147483647, 'BR', 'Brazil'), +('195.112.172.36', '195.112.172.59', 2147483647, 2147483647, 'US', 'United States'), +('195.112.172.60', '195.112.172.63', 2147483647, 2147483647, 'CO', 'Colombia'), +('195.112.172.64', '195.112.172.71', 2147483647, 2147483647, 'US', 'United States'), +('195.112.172.72', '195.112.172.75', 2147483647, 2147483647, 'MX', 'Mexico'), +('195.112.172.76', '195.112.172.95', 2147483647, 2147483647, 'US', 'United States'), +('195.112.172.96', '195.112.172.99', 2147483647, 2147483647, 'BR', 'Brazil'), +('195.112.172.100', '195.112.172.103', 2147483647, 2147483647, 'AR', 'Argentina'), +('195.112.172.104', '195.112.172.119', 2147483647, 2147483647, 'US', 'United States'), +('195.112.172.120', '195.112.172.123', 2147483647, 2147483647, 'CO', 'Colombia'), +('195.112.172.124', '195.112.172.135', 2147483647, 2147483647, 'US', 'United States'), +('195.112.172.136', '195.112.172.139', 2147483647, 2147483647, 'CA', 'Canada'), +('195.112.172.140', '195.112.172.147', 2147483647, 2147483647, 'US', 'United States'), +('195.112.172.148', '195.112.172.151', 2147483647, 2147483647, 'BR', 'Brazil'), +('195.112.172.152', '195.112.172.159', 2147483647, 2147483647, 'US', 'United States'), +('195.112.172.160', '195.112.172.163', 2147483647, 2147483647, 'AR', 'Argentina'), +('195.112.172.164', '195.112.172.187', 2147483647, 2147483647, 'US', 'United States'), +('195.112.172.188', '195.112.172.191', 2147483647, 2147483647, 'CA', 'Canada'), +('195.112.172.192', '195.112.172.215', 2147483647, 2147483647, 'US', 'United States'), +('195.112.172.216', '195.112.172.219', 2147483647, 2147483647, 'VE', 'Venezuela'), +('195.112.172.220', '195.112.172.223', 2147483647, 2147483647, 'BR', 'Brazil'), +('195.112.172.224', '195.112.172.235', 2147483647, 2147483647, 'US', 'United States'), +('195.112.172.236', '195.112.172.239', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.172.240', '195.112.172.243', 2147483647, 2147483647, 'CL', 'Chile'), +('195.112.172.244', '195.112.172.247', 2147483647, 2147483647, 'PE', 'Peru'), +('195.112.172.248', '195.112.172.255', 2147483647, 2147483647, 'US', 'United States'), +('195.112.173.0', '195.112.173.3', 2147483647, 2147483647, 'AR', 'Argentina'), +('195.112.173.4', '195.112.173.15', 2147483647, 2147483647, 'US', 'United States'), +('195.112.173.16', '195.112.173.19', 2147483647, 2147483647, 'JM', 'Jamaica'), +('195.112.173.20', '195.112.173.35', 2147483647, 2147483647, 'US', 'United States'), +('195.112.173.36', '195.112.173.39', 2147483647, 2147483647, 'BR', 'Brazil'), +('195.112.173.40', '195.112.173.51', 2147483647, 2147483647, 'US', 'United States'), +('195.112.173.52', '195.112.173.55', 2147483647, 2147483647, 'MX', 'Mexico'), +('195.112.173.56', '195.112.173.59', 2147483647, 2147483647, 'US', 'United States'), +('195.112.173.60', '195.112.173.63', 2147483647, 2147483647, 'CA', 'Canada'), +('195.112.173.64', '195.112.173.147', 2147483647, 2147483647, 'US', 'United States'), +('195.112.173.148', '195.112.173.151', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.173.152', '195.112.173.155', 2147483647, 2147483647, 'US', 'United States'), +('195.112.173.156', '195.112.173.159', 2147483647, 2147483647, 'PE', 'Peru'), +('195.112.173.160', '195.112.173.175', 2147483647, 2147483647, 'US', 'United States'), +('195.112.173.176', '195.112.173.179', 2147483647, 2147483647, 'CA', 'Canada'), +('195.112.173.180', '195.112.173.199', 2147483647, 2147483647, 'US', 'United States'), +('195.112.173.200', '195.112.173.203', 2147483647, 2147483647, 'BR', 'Brazil'), +('195.112.173.204', '195.112.173.211', 2147483647, 2147483647, 'US', 'United States'), +('195.112.173.212', '195.112.173.215', 2147483647, 2147483647, 'VE', 'Venezuela'), +('195.112.173.216', '195.112.173.219', 2147483647, 2147483647, 'US', 'United States'), +('195.112.173.220', '195.112.173.223', 2147483647, 2147483647, 'BR', 'Brazil'), +('195.112.173.224', '195.112.173.227', 2147483647, 2147483647, 'CA', 'Canada'), +('195.112.173.228', '195.112.173.231', 2147483647, 2147483647, 'US', 'United States'), +('195.112.173.232', '195.112.173.235', 2147483647, 2147483647, 'VE', 'Venezuela'), +('195.112.173.236', '195.112.173.251', 2147483647, 2147483647, 'US', 'United States'), +('195.112.173.252', '195.112.173.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('195.112.174.0', '195.112.174.39', 2147483647, 2147483647, 'US', 'United States'), +('195.112.174.40', '195.112.174.43', 2147483647, 2147483647, 'CA', 'Canada'), +('195.112.174.44', '195.112.174.47', 2147483647, 2147483647, 'US', 'United States'), +('195.112.174.48', '195.112.174.51', 2147483647, 2147483647, 'CA', 'Canada'), +('195.112.174.52', '195.112.174.123', 2147483647, 2147483647, 'US', 'United States'), +('195.112.174.124', '195.112.174.127', 2147483647, 2147483647, 'CL', 'Chile'), +('195.112.174.128', '195.112.174.151', 2147483647, 2147483647, 'US', 'United States'), +('195.112.174.152', '195.112.174.159', 2147483647, 2147483647, 'AR', 'Argentina'), +('195.112.174.160', '195.112.174.195', 2147483647, 2147483647, 'US', 'United States'), +('195.112.174.196', '195.112.174.199', 2147483647, 2147483647, 'CA', 'Canada'), +('195.112.174.200', '195.112.174.215', 2147483647, 2147483647, 'US', 'United States'), +('195.112.174.216', '195.112.174.219', 2147483647, 2147483647, 'MX', 'Mexico'), +('195.112.174.220', '195.112.174.247', 2147483647, 2147483647, 'US', 'United States'), +('195.112.174.248', '195.112.174.251', 2147483647, 2147483647, 'CO', 'Colombia'), +('195.112.174.252', '195.112.174.255', 2147483647, 2147483647, 'US', 'United States'), +('195.112.175.0', '195.112.175.3', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.175.4', '195.112.175.7', 2147483647, 2147483647, 'FR', 'France'), +('195.112.175.8', '195.112.175.11', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.175.12', '195.112.175.19', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.175.20', '195.112.175.27', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.175.28', '195.112.175.35', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.175.36', '195.112.175.43', 2147483647, 2147483647, 'FR', 'France'), +('195.112.175.44', '195.112.175.47', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.175.48', '195.112.175.51', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.175.52', '195.112.175.59', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.175.60', '195.112.175.63', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.175.64', '195.112.175.67', 2147483647, 2147483647, 'FR', 'France'), +('195.112.175.68', '195.112.175.71', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.175.72', '195.112.175.75', 2147483647, 2147483647, 'FR', 'France'), +('195.112.175.76', '195.112.175.79', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.175.80', '195.112.175.83', 2147483647, 2147483647, 'GR', 'Greece'), +('195.112.175.84', '195.112.175.87', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.175.88', '195.112.175.91', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.175.92', '195.112.175.95', 2147483647, 2147483647, 'FR', 'France'), +('195.112.175.96', '195.112.175.99', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.175.100', '195.112.175.103', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.175.104', '195.112.175.107', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.175.108', '195.112.175.111', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.175.112', '195.112.175.119', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.175.120', '195.112.175.123', 2147483647, 2147483647, 'FR', 'France'), +('195.112.175.124', '195.112.175.127', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.175.128', '195.112.175.131', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.175.132', '195.112.175.135', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.112.175.136', '195.112.175.139', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.175.140', '195.112.175.143', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.112.175.144', '195.112.175.147', 2147483647, 2147483647, 'PL', 'Poland'), +('195.112.175.148', '195.112.175.151', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.175.152', '195.112.175.155', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.175.156', '195.112.175.159', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.175.160', '195.112.175.163', 2147483647, 2147483647, 'FR', 'France'), +('195.112.175.164', '195.112.175.167', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.175.168', '195.112.175.171', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.175.172', '195.112.175.175', 2147483647, 2147483647, 'AT', 'Austria'), +('195.112.175.176', '195.112.175.179', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.175.180', '195.112.175.183', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.175.184', '195.112.175.187', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.112.175.188', '195.112.175.191', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.175.192', '195.112.175.195', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.175.196', '195.112.175.203', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.175.204', '195.112.175.207', 2147483647, 2147483647, 'FR', 'France'), +('195.112.175.208', '195.112.175.211', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.175.212', '195.112.175.215', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.175.216', '195.112.175.219', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.175.220', '195.112.175.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.175.224', '195.112.175.227', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.175.228', '195.112.175.231', 2147483647, 2147483647, 'FR', 'France'), +('195.112.175.232', '195.112.175.235', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.112.175.236', '195.112.175.239', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.175.240', '195.112.175.247', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.175.248', '195.112.175.251', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.175.252', '195.112.175.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.176.0', '195.112.176.3', 2147483647, 2147483647, 'TW', 'Taiwan'), +('195.112.176.4', '195.112.176.19', 2147483647, 2147483647, 'AU', 'Australia'), +('195.112.176.20', '195.112.176.23', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('195.112.176.24', '195.112.176.35', 2147483647, 2147483647, 'AU', 'Australia'), +('195.112.176.36', '195.112.176.39', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('195.112.176.40', '195.112.176.47', 2147483647, 2147483647, 'AU', 'Australia'), +('195.112.176.48', '195.112.176.51', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('195.112.176.52', '195.112.176.63', 2147483647, 2147483647, 'AU', 'Australia'), +('195.112.176.64', '195.112.176.67', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('195.112.176.68', '195.112.176.83', 2147483647, 2147483647, 'AU', 'Australia'), +('195.112.176.84', '195.112.176.87', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('195.112.176.88', '195.112.176.91', 2147483647, 2147483647, 'PG', 'Papua New Guinea'), +('195.112.176.92', '195.112.176.147', 2147483647, 2147483647, 'AU', 'Australia'), +('195.112.176.148', '195.112.176.151', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('195.112.176.152', '195.112.176.175', 2147483647, 2147483647, 'AU', 'Australia'), +('195.112.176.176', '195.112.176.179', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('195.112.176.180', '195.112.176.191', 2147483647, 2147483647, 'AU', 'Australia'), +('195.112.176.192', '195.112.176.195', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('195.112.176.196', '195.112.176.227', 2147483647, 2147483647, 'AU', 'Australia'), +('195.112.176.228', '195.112.176.231', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.176.232', '195.112.176.235', 2147483647, 2147483647, 'AU', 'Australia'), +('195.112.176.236', '195.112.176.239', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('195.112.176.240', '195.112.176.247', 2147483647, 2147483647, 'AU', 'Australia'), +('195.112.176.248', '195.112.176.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.177.0', '195.112.177.3', 2147483647, 2147483647, 'SG', 'Singapore'), +('195.112.177.4', '195.112.177.7', 2147483647, 2147483647, 'MY', 'Malaysia'), +('195.112.177.8', '195.112.177.11', 2147483647, 2147483647, 'IN', 'India'), +('195.112.177.12', '195.112.177.19', 2147483647, 2147483647, 'SG', 'Singapore'), +('195.112.177.20', '195.112.177.23', 2147483647, 2147483647, 'CN', 'China'), +('195.112.177.24', '195.112.177.27', 2147483647, 2147483647, 'IN', 'India'), +('195.112.177.28', '195.112.177.31', 2147483647, 2147483647, 'MY', 'Malaysia'), +('195.112.177.32', '195.112.177.35', 2147483647, 2147483647, 'CN', 'China'), +('195.112.177.36', '195.112.177.43', 2147483647, 2147483647, 'MY', 'Malaysia'), +('195.112.177.44', '195.112.177.47', 2147483647, 2147483647, 'TH', 'Thailand'), +('195.112.177.48', '195.112.177.51', 2147483647, 2147483647, 'SG', 'Singapore'), +('195.112.177.52', '195.112.177.55', 2147483647, 2147483647, 'PH', 'Philippines'), +('195.112.177.56', '195.112.177.75', 2147483647, 2147483647, 'IN', 'India'), +('195.112.177.76', '195.112.177.79', 2147483647, 2147483647, 'TW', 'Taiwan'), +('195.112.177.80', '195.112.177.83', 2147483647, 2147483647, 'PK', 'Pakistan'), +('195.112.177.84', '195.112.177.87', 2147483647, 2147483647, 'MY', 'Malaysia'), +('195.112.177.88', '195.112.177.91', 2147483647, 2147483647, 'TW', 'Taiwan'), +('195.112.177.92', '195.112.177.95', 2147483647, 2147483647, 'IN', 'India'), +('195.112.177.96', '195.112.177.107', 2147483647, 2147483647, 'MY', 'Malaysia'), +('195.112.177.108', '195.112.177.111', 2147483647, 2147483647, 'IN', 'India'), +('195.112.177.112', '195.112.177.115', 2147483647, 2147483647, 'MY', 'Malaysia'), +('195.112.177.116', '195.112.177.119', 2147483647, 2147483647, 'TW', 'Taiwan'), +('195.112.177.120', '195.112.177.123', 2147483647, 2147483647, 'SG', 'Singapore'), +('195.112.177.124', '195.112.177.127', 2147483647, 2147483647, 'CN', 'China'), +('195.112.177.128', '195.112.177.131', 2147483647, 2147483647, 'TW', 'Taiwan'), +('195.112.177.132', '195.112.177.135', 2147483647, 2147483647, 'IN', 'India'), +('195.112.177.136', '195.112.177.139', 2147483647, 2147483647, 'SG', 'Singapore'), +('195.112.177.140', '195.112.177.143', 2147483647, 2147483647, 'TW', 'Taiwan'), +('195.112.177.144', '195.112.177.147', 2147483647, 2147483647, 'TH', 'Thailand'), +('195.112.177.148', '195.112.177.151', 2147483647, 2147483647, 'PH', 'Philippines'), +('195.112.177.152', '195.112.177.163', 2147483647, 2147483647, 'SG', 'Singapore'), +('195.112.177.164', '195.112.177.171', 2147483647, 2147483647, 'MY', 'Malaysia'), +('195.112.177.172', '195.112.177.179', 2147483647, 2147483647, 'SG', 'Singapore'), +('195.112.177.180', '195.112.177.183', 2147483647, 2147483647, 'MY', 'Malaysia'), +('195.112.177.184', '195.112.177.187', 2147483647, 2147483647, 'IN', 'India'), +('195.112.177.188', '195.112.177.191', 2147483647, 2147483647, 'MY', 'Malaysia'), +('195.112.177.192', '195.112.177.203', 2147483647, 2147483647, 'SG', 'Singapore'), +('195.112.177.204', '195.112.177.207', 2147483647, 2147483647, 'MY', 'Malaysia'), +('195.112.177.208', '195.112.177.211', 2147483647, 2147483647, 'SG', 'Singapore'), +('195.112.177.212', '195.112.177.215', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('195.112.177.216', '195.112.177.219', 2147483647, 2147483647, 'TW', 'Taiwan'), +('195.112.177.220', '195.112.177.223', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.177.224', '195.112.177.227', 2147483647, 2147483647, 'SG', 'Singapore'), +('195.112.177.228', '195.112.177.231', 2147483647, 2147483647, 'IN', 'India'), +('195.112.177.232', '195.112.177.235', 2147483647, 2147483647, 'SG', 'Singapore'), +('195.112.177.236', '195.112.177.239', 2147483647, 2147483647, 'TW', 'Taiwan'), +('195.112.177.240', '195.112.177.243', 2147483647, 2147483647, 'MY', 'Malaysia'), +('195.112.177.244', '195.112.177.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('195.112.178.0', '195.112.178.1', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.178.2', '195.112.178.2', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.178.3', '195.112.178.4', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.178.5', '195.112.178.5', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.178.6', '195.112.178.6', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.178.7', '195.112.178.7', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.178.8', '195.112.178.8', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.178.9', '195.112.178.10', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.112.178.11', '195.112.178.11', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.178.12', '195.112.178.12', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.178.13', '195.112.178.13', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('195.112.178.14', '195.112.178.14', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.178.15', '195.112.178.15', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.178.16', '195.112.178.16', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.178.17', '195.112.178.17', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.178.18', '195.112.178.19', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.178.20', '195.112.178.20', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.178.21', '195.112.178.21', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.178.22', '195.112.178.22', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.112.178.23', '195.112.178.23', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.178.24', '195.112.178.28', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.178.29', '195.112.178.29', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.178.30', '195.112.178.30', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.178.31', '195.112.178.31', 2147483647, 2147483647, 'FR', 'France'), +('195.112.178.32', '195.112.178.33', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.178.34', '195.112.178.34', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.178.35', '195.112.178.35', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.178.36', '195.112.178.36', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.178.37', '195.112.178.37', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.178.38', '195.112.178.39', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.178.40', '195.112.178.40', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.178.41', '195.112.178.41', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.178.42', '195.112.178.42', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.178.43', '195.112.178.43', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.178.44', '195.112.178.44', 2147483647, 2147483647, 'FR', 'France'), +('195.112.178.45', '195.112.178.45', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.178.46', '195.112.178.46', 2147483647, 2147483647, 'PL', 'Poland'), +('195.112.178.47', '195.112.178.47', 2147483647, 2147483647, 'FR', 'France'), +('195.112.178.48', '195.112.178.48', 2147483647, 2147483647, 'NO', 'Norway'), +('195.112.178.49', '195.112.178.49', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.178.50', '195.112.178.51', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.178.52', '195.112.178.52', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.112.178.53', '195.112.178.53', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.178.54', '195.112.178.54', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.178.55', '195.112.178.55', 2147483647, 2147483647, 'FR', 'France'), +('195.112.178.56', '195.112.178.56', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.178.57', '195.112.178.58', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.178.59', '195.112.178.59', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.112.178.60', '195.112.178.61', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.178.62', '195.112.178.62', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.178.63', '195.112.178.64', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.178.65', '195.112.178.65', 2147483647, 2147483647, 'GR', 'Greece'), +('195.112.178.66', '195.112.178.66', 2147483647, 2147483647, 'SI', 'Slovenia'), +('195.112.178.67', '195.112.178.67', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.178.68', '195.112.178.69', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.178.70', '195.112.178.70', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.178.71', '195.112.178.71', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.178.72', '195.112.178.72', 2147483647, 2147483647, 'US', 'United States'), +('195.112.178.73', '195.112.178.73', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.178.74', '195.112.178.74', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.178.75', '195.112.178.75', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.178.76', '195.112.178.76', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.178.77', '195.112.178.77', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.178.78', '195.112.178.78', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.178.79', '195.112.178.79', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.178.80', '195.112.178.80', 2147483647, 2147483647, 'FR', 'France'), +('195.112.178.81', '195.112.178.81', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.178.82', '195.112.178.83', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.178.84', '195.112.178.84', 2147483647, 2147483647, 'IT', 'Italy'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('195.112.178.85', '195.112.178.85', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.178.86', '195.112.178.86', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.112.178.87', '195.112.178.87', 2147483647, 2147483647, 'AT', 'Austria'), +('195.112.178.88', '195.112.178.89', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.178.90', '195.112.178.90', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.178.91', '195.112.178.91', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.178.92', '195.112.178.93', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.178.94', '195.112.178.94', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.178.95', '195.112.178.95', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.178.96', '195.112.178.96', 2147483647, 2147483647, 'AT', 'Austria'), +('195.112.178.97', '195.112.178.97', 2147483647, 2147483647, 'FR', 'France'), +('195.112.178.98', '195.112.178.98', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.112.178.99', '195.112.178.99', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.178.100', '195.112.178.100', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.178.101', '195.112.178.101', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.178.102', '195.112.178.104', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.178.105', '195.112.178.105', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.178.106', '195.112.178.106', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.112.178.107', '195.112.178.107', 2147483647, 2147483647, 'FR', 'France'), +('195.112.178.108', '195.112.178.108', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.178.109', '195.112.178.109', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.178.110', '195.112.178.110', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.178.111', '195.112.178.111', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.178.112', '195.112.178.112', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.178.113', '195.112.178.113', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.178.114', '195.112.178.114', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.178.115', '195.112.178.115', 2147483647, 2147483647, 'AT', 'Austria'), +('195.112.178.116', '195.112.178.116', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.178.117', '195.112.178.117', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.178.118', '195.112.178.118', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.178.119', '195.112.178.119', 2147483647, 2147483647, 'FR', 'France'), +('195.112.178.120', '195.112.178.121', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.178.122', '195.112.178.123', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.178.124', '195.112.178.124', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.178.125', '195.112.178.130', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.178.131', '195.112.178.131', 2147483647, 2147483647, 'HU', 'Hungary'), +('195.112.178.132', '195.112.178.132', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.178.133', '195.112.178.133', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.178.134', '195.112.178.134', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.178.135', '195.112.178.135', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.178.136', '195.112.178.136', 2147483647, 2147483647, 'NO', 'Norway'), +('195.112.178.137', '195.112.178.137', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.178.138', '195.112.178.138', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.178.139', '195.112.178.139', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.178.140', '195.112.178.140', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.178.141', '195.112.178.141', 2147483647, 2147483647, 'FR', 'France'), +('195.112.178.142', '195.112.178.143', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.178.144', '195.112.178.144', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.178.145', '195.112.178.145', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.178.146', '195.112.178.147', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.178.148', '195.112.178.148', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.178.149', '195.112.178.149', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.178.150', '195.112.178.150', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.178.151', '195.112.178.151', 2147483647, 2147483647, 'IS', 'Iceland'), +('195.112.178.152', '195.112.178.152', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.178.153', '195.112.178.153', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.178.154', '195.112.178.155', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.178.156', '195.112.178.156', 2147483647, 2147483647, 'PL', 'Poland'), +('195.112.178.157', '195.112.178.157', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.178.158', '195.112.178.158', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.178.159', '195.112.178.159', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.112.178.160', '195.112.178.161', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.178.162', '195.112.178.162', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.178.163', '195.112.178.163', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.178.164', '195.112.178.164', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.178.165', '195.112.178.165', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.178.166', '195.112.178.166', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.178.167', '195.112.178.167', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.178.168', '195.112.178.169', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.178.170', '195.112.178.170', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.178.171', '195.112.178.174', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.178.175', '195.112.178.175', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.178.176', '195.112.178.176', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.178.177', '195.112.178.177', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.178.178', '195.112.178.179', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.178.180', '195.112.178.183', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.178.184', '195.112.178.184', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.112.178.185', '195.112.178.185', 2147483647, 2147483647, 'IE', 'Ireland'), +('195.112.178.186', '195.112.178.187', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.178.188', '195.112.178.188', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.178.189', '195.112.178.190', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.178.191', '195.112.178.191', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.178.192', '195.112.178.193', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.178.194', '195.112.178.194', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.178.195', '195.112.178.195', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.178.196', '195.112.178.196', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.178.197', '195.112.178.202', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.178.203', '195.112.178.203', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.178.204', '195.112.178.204', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.178.205', '195.112.178.205', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.178.206', '195.112.178.210', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.178.211', '195.112.178.211', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.178.212', '195.112.178.212', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.178.213', '195.112.178.213', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.112.178.214', '195.112.178.214', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.178.215', '195.112.178.216', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.178.217', '195.112.178.217', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.178.218', '195.112.178.218', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.178.219', '195.112.178.219', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.178.220', '195.112.178.220', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.178.221', '195.112.178.221', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.178.222', '195.112.178.222', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.178.223', '195.112.178.224', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.178.225', '195.112.178.226', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.178.227', '195.112.178.227', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.112.178.228', '195.112.178.228', 2147483647, 2147483647, 'AT', 'Austria'), +('195.112.178.229', '195.112.178.229', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.178.230', '195.112.178.230', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.178.231', '195.112.178.231', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.178.232', '195.112.178.233', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.178.234', '195.112.178.234', 2147483647, 2147483647, 'AT', 'Austria'), +('195.112.178.235', '195.112.178.235', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.178.236', '195.112.178.236', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.178.237', '195.112.178.237', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.178.238', '195.112.178.238', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.178.239', '195.112.178.239', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.178.240', '195.112.178.240', 2147483647, 2147483647, 'FR', 'France'), +('195.112.178.241', '195.112.178.241', 2147483647, 2147483647, 'PT', 'Portugal'), +('195.112.178.242', '195.112.178.243', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.178.244', '195.112.178.246', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.178.247', '195.112.178.247', 2147483647, 2147483647, 'NO', 'Norway'), +('195.112.178.248', '195.112.178.248', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.178.249', '195.112.178.249', 2147483647, 2147483647, 'AT', 'Austria'), +('195.112.178.250', '195.112.178.250', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.178.251', '195.112.178.252', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.178.253', '195.112.179.1', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.179.2', '195.112.179.2', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.112.179.3', '195.112.179.3', 2147483647, 2147483647, 'FR', 'France'), +('195.112.179.4', '195.112.179.4', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.179.5', '195.112.179.7', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.179.8', '195.112.179.8', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.179.9', '195.112.179.9', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.179.10', '195.112.179.10', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.179.11', '195.112.179.11', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.112.179.12', '195.112.179.14', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.179.15', '195.112.179.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.179.16', '195.112.179.16', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.179.17', '195.112.179.17', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.179.18', '195.112.179.18', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.179.19', '195.112.179.21', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.179.22', '195.112.179.22', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.179.23', '195.112.179.23', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.179.24', '195.112.179.26', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.179.27', '195.112.179.27', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.179.28', '195.112.179.29', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.179.30', '195.112.179.30', 2147483647, 2147483647, 'FR', 'France'), +('195.112.179.31', '195.112.179.31', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.179.32', '195.112.179.32', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.179.33', '195.112.179.33', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.179.34', '195.112.179.34', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.179.35', '195.112.179.35', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.179.36', '195.112.179.36', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('195.112.179.37', '195.112.179.37', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.179.38', '195.112.179.38', 2147483647, 2147483647, 'AT', 'Austria'), +('195.112.179.39', '195.112.179.40', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.179.41', '195.112.179.41', 2147483647, 2147483647, 'FR', 'France'), +('195.112.179.42', '195.112.179.42', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.179.43', '195.112.179.43', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.179.44', '195.112.179.44', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.179.45', '195.112.179.45', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.112.179.46', '195.112.179.46', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.179.47', '195.112.179.47', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.112.179.48', '195.112.179.48', 2147483647, 2147483647, 'FR', 'France'), +('195.112.179.49', '195.112.179.49', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.179.50', '195.112.179.50', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.112.179.51', '195.112.179.51', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.179.52', '195.112.179.53', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.179.54', '195.112.179.54', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.179.55', '195.112.179.55', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.179.56', '195.112.179.56', 2147483647, 2147483647, 'FR', 'France'), +('195.112.179.57', '195.112.179.57', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.179.58', '195.112.179.58', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.179.59', '195.112.179.59', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.179.60', '195.112.179.60', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.179.61', '195.112.179.61', 2147483647, 2147483647, 'FR', 'France'), +('195.112.179.62', '195.112.179.62', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.179.63', '195.112.179.63', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.179.64', '195.112.179.64', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.179.65', '195.112.179.65', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.179.66', '195.112.179.66', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.112.179.67', '195.112.179.67', 2147483647, 2147483647, 'SI', 'Slovenia'), +('195.112.179.68', '195.112.179.68', 2147483647, 2147483647, 'FR', 'France'), +('195.112.179.69', '195.112.179.72', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.179.73', '195.112.179.73', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.179.74', '195.112.179.74', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.179.75', '195.112.179.75', 2147483647, 2147483647, 'AT', 'Austria'), +('195.112.179.76', '195.112.179.77', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.179.78', '195.112.179.80', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.179.81', '195.112.179.81', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.179.82', '195.112.179.82', 2147483647, 2147483647, 'FR', 'France'), +('195.112.179.83', '195.112.179.83', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.179.84', '195.112.179.89', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.179.90', '195.112.179.90', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.179.91', '195.112.179.93', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.179.94', '195.112.179.94', 2147483647, 2147483647, 'PL', 'Poland'), +('195.112.179.95', '195.112.179.96', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.179.97', '195.112.179.97', 2147483647, 2147483647, 'AT', 'Austria'), +('195.112.179.98', '195.112.179.98', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.179.99', '195.112.179.100', 2147483647, 2147483647, 'FR', 'France'), +('195.112.179.101', '195.112.179.101', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.179.102', '195.112.179.103', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.179.104', '195.112.179.104', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.112.179.105', '195.112.179.105', 2147483647, 2147483647, 'FR', 'France'), +('195.112.179.106', '195.112.179.106', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.179.107', '195.112.179.108', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.179.109', '195.112.179.109', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.179.110', '195.112.179.111', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.179.112', '195.112.179.112', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.179.113', '195.112.179.114', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.179.115', '195.112.179.115', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.179.116', '195.112.179.116', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.179.117', '195.112.179.120', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.179.121', '195.112.179.121', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.112.179.122', '195.112.179.122', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.179.123', '195.112.179.123', 2147483647, 2147483647, 'AT', 'Austria'), +('195.112.179.124', '195.112.179.124', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.112.179.125', '195.112.179.125', 2147483647, 2147483647, 'AT', 'Austria'), +('195.112.179.126', '195.112.179.126', 2147483647, 2147483647, 'ZA', 'South Africa'), +('195.112.179.127', '195.112.179.129', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.179.130', '195.112.179.130', 2147483647, 2147483647, 'FR', 'France'), +('195.112.179.131', '195.112.179.131', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.179.132', '195.112.179.132', 2147483647, 2147483647, 'FR', 'France'), +('195.112.179.133', '195.112.179.133', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.179.134', '195.112.179.134', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.112.179.135', '195.112.179.135', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.179.136', '195.112.179.136', 2147483647, 2147483647, 'PT', 'Portugal'), +('195.112.179.137', '195.112.179.137', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.179.138', '195.112.179.138', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.179.139', '195.112.179.139', 2147483647, 2147483647, 'PT', 'Portugal'), +('195.112.179.140', '195.112.179.140', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.179.141', '195.112.179.141', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.179.142', '195.112.179.143', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.179.144', '195.112.179.144', 2147483647, 2147483647, 'FR', 'France'), +('195.112.179.145', '195.112.179.145', 2147483647, 2147483647, 'AT', 'Austria'), +('195.112.179.146', '195.112.179.146', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.179.147', '195.112.179.147', 2147483647, 2147483647, 'FR', 'France'), +('195.112.179.148', '195.112.179.148', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.112.179.149', '195.112.179.149', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.179.150', '195.112.179.150', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.179.151', '195.112.179.151', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.179.152', '195.112.179.152', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.179.153', '195.112.179.154', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.179.155', '195.112.179.155', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.112.179.156', '195.112.179.156', 2147483647, 2147483647, 'FR', 'France'), +('195.112.179.157', '195.112.179.157', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.179.158', '195.112.179.159', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.179.160', '195.112.179.160', 2147483647, 2147483647, 'FR', 'France'), +('195.112.179.161', '195.112.179.161', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.179.162', '195.112.179.162', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.112.179.163', '195.112.179.163', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.179.164', '195.112.179.164', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.179.165', '195.112.179.165', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.179.166', '195.112.179.166', 2147483647, 2147483647, 'FR', 'France'), +('195.112.179.167', '195.112.179.167', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.179.168', '195.112.179.169', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.179.170', '195.112.179.170', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.179.171', '195.112.179.171', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.179.172', '195.112.179.172', 2147483647, 2147483647, 'FR', 'France'), +('195.112.179.173', '195.112.179.173', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.112.179.174', '195.112.179.174', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.179.175', '195.112.179.175', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.179.176', '195.112.179.177', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.179.178', '195.112.179.178', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.112.179.179', '195.112.179.183', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.179.184', '195.112.179.184', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.179.185', '195.112.179.185', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.112.179.186', '195.112.179.186', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.179.187', '195.112.179.187', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.179.188', '195.112.179.188', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.179.189', '195.112.179.189', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.112.179.190', '195.112.179.192', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.179.193', '195.112.179.193', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.112.179.194', '195.112.179.196', 2147483647, 2147483647, 'FR', 'France'), +('195.112.179.197', '195.112.179.197', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.179.198', '195.112.179.198', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.179.199', '195.112.179.201', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.179.202', '195.112.179.202', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.179.203', '195.112.179.203', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.179.204', '195.112.179.205', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.179.206', '195.112.179.206', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.112.179.207', '195.112.179.207', 2147483647, 2147483647, 'FR', 'France'), +('195.112.179.208', '195.112.179.208', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.179.209', '195.112.179.209', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.112.179.210', '195.112.179.210', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.179.211', '195.112.179.211', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.179.212', '195.112.179.212', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.179.213', '195.112.179.215', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.179.216', '195.112.179.216', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('195.112.179.217', '195.112.179.217', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.179.218', '195.112.179.218', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.179.219', '195.112.179.219', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.179.220', '195.112.179.220', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.179.221', '195.112.179.221', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.179.222', '195.112.179.222', 2147483647, 2147483647, 'GR', 'Greece'), +('195.112.179.223', '195.112.179.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.179.224', '195.112.179.224', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.179.225', '195.112.179.226', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.179.227', '195.112.179.227', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.112.179.228', '195.112.179.230', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.179.231', '195.112.179.231', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.179.232', '195.112.179.232', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.179.233', '195.112.179.233', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.179.234', '195.112.179.236', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.179.237', '195.112.179.237', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.179.238', '195.112.179.238', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.179.239', '195.112.179.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.179.240', '195.112.179.240', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.179.241', '195.112.179.241', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.179.242', '195.112.179.242', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.179.243', '195.112.179.244', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.179.245', '195.112.179.245', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.179.246', '195.112.179.246', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.179.247', '195.112.179.247', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.179.248', '195.112.179.249', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.179.250', '195.112.179.250', 2147483647, 2147483647, 'FR', 'France'), +('195.112.179.251', '195.112.179.251', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.179.252', '195.112.179.252', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.179.253', '195.112.180.3', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.180.4', '195.112.180.4', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.180.5', '195.112.180.5', 2147483647, 2147483647, 'FR', 'France'), +('195.112.180.6', '195.112.180.7', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.180.8', '195.112.180.8', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.180.9', '195.112.180.9', 2147483647, 2147483647, 'FR', 'France'), +('195.112.180.10', '195.112.180.10', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.180.11', '195.112.180.11', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.180.12', '195.112.180.12', 2147483647, 2147483647, 'FR', 'France'), +('195.112.180.13', '195.112.180.13', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.180.14', '195.112.180.14', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.180.15', '195.112.180.15', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.180.16', '195.112.180.16', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.180.17', '195.112.180.17', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.180.18', '195.112.180.19', 2147483647, 2147483647, 'FR', 'France'), +('195.112.180.20', '195.112.180.20', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.180.21', '195.112.180.21', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.180.22', '195.112.180.22', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.112.180.23', '195.112.180.23', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.180.24', '195.112.180.24', 2147483647, 2147483647, 'FR', 'France'), +('195.112.180.25', '195.112.180.25', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.180.26', '195.112.180.28', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.180.29', '195.112.180.29', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.180.30', '195.112.180.30', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.180.31', '195.112.180.31', 2147483647, 2147483647, 'FR', 'France'), +('195.112.180.32', '195.112.180.33', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.180.34', '195.112.180.34', 2147483647, 2147483647, 'FR', 'France'), +('195.112.180.35', '195.112.180.35', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.180.36', '195.112.180.36', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.180.37', '195.112.180.38', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.180.39', '195.112.180.39', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.180.40', '195.112.180.42', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.180.43', '195.112.180.43', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.180.44', '195.112.180.45', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.180.46', '195.112.180.46', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.180.47', '195.112.180.47', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.180.48', '195.112.180.48', 2147483647, 2147483647, 'FR', 'France'), +('195.112.180.49', '195.112.180.49', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.180.50', '195.112.180.51', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.180.52', '195.112.180.52', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.180.53', '195.112.180.55', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.180.56', '195.112.180.56', 2147483647, 2147483647, 'FR', 'France'), +('195.112.180.57', '195.112.180.57', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.180.58', '195.112.180.58', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.180.59', '195.112.180.60', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.180.61', '195.112.180.61', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.180.62', '195.112.180.62', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.180.63', '195.112.180.64', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.180.65', '195.112.180.65', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.180.66', '195.112.180.66', 2147483647, 2147483647, 'PT', 'Portugal'), +('195.112.180.67', '195.112.180.67', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.112.180.68', '195.112.180.68', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.180.69', '195.112.180.69', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.180.70', '195.112.180.70', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.112.180.71', '195.112.180.71', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.112.180.72', '195.112.180.72', 2147483647, 2147483647, 'FR', 'France'), +('195.112.180.73', '195.112.180.73', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('195.112.180.74', '195.112.180.74', 2147483647, 2147483647, 'AT', 'Austria'), +('195.112.180.75', '195.112.180.76', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.180.77', '195.112.180.77', 2147483647, 2147483647, 'PT', 'Portugal'), +('195.112.180.78', '195.112.180.78', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.180.79', '195.112.180.79', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.112.180.80', '195.112.180.82', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.180.83', '195.112.180.84', 2147483647, 2147483647, 'FR', 'France'), +('195.112.180.85', '195.112.180.86', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.180.87', '195.112.180.87', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.180.88', '195.112.180.88', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.112.180.89', '195.112.180.89', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.180.90', '195.112.180.90', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.180.91', '195.112.180.91', 2147483647, 2147483647, 'FR', 'France'), +('195.112.180.92', '195.112.180.92', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.180.93', '195.112.180.94', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.180.95', '195.112.180.96', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.180.97', '195.112.180.97', 2147483647, 2147483647, 'PT', 'Portugal'), +('195.112.180.98', '195.112.180.98', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.180.99', '195.112.180.99', 2147483647, 2147483647, 'PL', 'Poland'), +('195.112.180.100', '195.112.180.101', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.180.102', '195.112.180.102', 2147483647, 2147483647, 'FR', 'France'), +('195.112.180.103', '195.112.180.103', 2147483647, 2147483647, 'AT', 'Austria'), +('195.112.180.104', '195.112.180.105', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.180.106', '195.112.180.106', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.180.107', '195.112.180.107', 2147483647, 2147483647, 'PT', 'Portugal'), +('195.112.180.108', '195.112.180.108', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.180.109', '195.112.180.109', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.180.110', '195.112.180.111', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.180.112', '195.112.180.112', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.180.113', '195.112.180.113', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.180.114', '195.112.180.114', 2147483647, 2147483647, 'FR', 'France'), +('195.112.180.115', '195.112.180.115', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.180.116', '195.112.180.117', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.180.118', '195.112.180.119', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.180.120', '195.112.180.120', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.180.121', '195.112.180.121', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.180.122', '195.112.180.123', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.180.124', '195.112.180.124', 2147483647, 2147483647, 'FR', 'France'), +('195.112.180.125', '195.112.180.125', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.180.126', '195.112.180.126', 2147483647, 2147483647, 'FR', 'France'), +('195.112.180.127', '195.112.180.127', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.180.128', '195.112.180.128', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.180.129', '195.112.180.129', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.180.130', '195.112.180.130', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.180.131', '195.112.180.131', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.180.132', '195.112.180.132', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.180.133', '195.112.180.134', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.180.135', '195.112.180.135', 2147483647, 2147483647, 'FR', 'France'), +('195.112.180.136', '195.112.180.137', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.180.138', '195.112.180.138', 2147483647, 2147483647, 'FR', 'France'), +('195.112.180.139', '195.112.180.139', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.180.140', '195.112.180.140', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.180.141', '195.112.180.142', 2147483647, 2147483647, 'GR', 'Greece'), +('195.112.180.143', '195.112.180.143', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.180.144', '195.112.180.144', 2147483647, 2147483647, 'NO', 'Norway'), +('195.112.180.145', '195.112.180.145', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.180.146', '195.112.180.146', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.180.147', '195.112.180.147', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.180.148', '195.112.180.148', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.180.149', '195.112.180.149', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.180.150', '195.112.180.150', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.180.151', '195.112.180.151', 2147483647, 2147483647, 'PL', 'Poland'), +('195.112.180.152', '195.112.180.152', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.180.153', '195.112.180.153', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.180.154', '195.112.180.155', 2147483647, 2147483647, 'FR', 'France'), +('195.112.180.156', '195.112.180.156', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.180.157', '195.112.180.157', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.112.180.158', '195.112.180.158', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.180.159', '195.112.180.159', 2147483647, 2147483647, 'FR', 'France'), +('195.112.180.160', '195.112.180.160', 2147483647, 2147483647, 'PL', 'Poland'), +('195.112.180.161', '195.112.180.161', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.180.162', '195.112.180.162', 2147483647, 2147483647, 'FR', 'France'), +('195.112.180.163', '195.112.180.163', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.180.164', '195.112.180.164', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.180.165', '195.112.180.167', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.180.168', '195.112.180.168', 2147483647, 2147483647, 'FR', 'France'), +('195.112.180.169', '195.112.180.169', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.180.170', '195.112.180.170', 2147483647, 2147483647, 'FR', 'France'), +('195.112.180.171', '195.112.180.171', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.180.172', '195.112.180.172', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.180.173', '195.112.180.173', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.180.174', '195.112.180.174', 2147483647, 2147483647, 'AT', 'Austria'), +('195.112.180.175', '195.112.180.175', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.180.176', '195.112.180.176', 2147483647, 2147483647, 'FR', 'France'), +('195.112.180.177', '195.112.180.177', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.180.178', '195.112.180.178', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.180.179', '195.112.180.179', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.180.180', '195.112.180.180', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.180.181', '195.112.180.181', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.180.182', '195.112.180.182', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.180.183', '195.112.180.183', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.112.180.184', '195.112.180.184', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.180.185', '195.112.180.185', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.180.186', '195.112.180.186', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.180.187', '195.112.180.187', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.180.188', '195.112.180.188', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.112.180.189', '195.112.180.190', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.180.191', '195.112.180.191', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.180.192', '195.112.180.192', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.180.193', '195.112.180.193', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.180.194', '195.112.180.194', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.180.195', '195.112.180.195', 2147483647, 2147483647, 'AT', 'Austria'), +('195.112.180.196', '195.112.180.196', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.180.197', '195.112.180.198', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.180.199', '195.112.180.199', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.180.200', '195.112.180.200', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.180.201', '195.112.180.201', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.180.202', '195.112.180.203', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.180.204', '195.112.180.204', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.180.205', '195.112.180.205', 2147483647, 2147483647, 'FR', 'France'), +('195.112.180.206', '195.112.180.206', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.180.207', '195.112.180.207', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.112.180.208', '195.112.180.208', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.112.180.209', '195.112.180.209', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.180.210', '195.112.180.210', 2147483647, 2147483647, 'FR', 'France'), +('195.112.180.211', '195.112.180.211', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.180.212', '195.112.180.212', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.180.213', '195.112.180.213', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.180.214', '195.112.180.214', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.180.215', '195.112.180.215', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.180.216', '195.112.180.216', 2147483647, 2147483647, 'FR', 'France'), +('195.112.180.217', '195.112.180.217', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.180.218', '195.112.180.218', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.180.219', '195.112.180.219', 2147483647, 2147483647, 'AT', 'Austria'), +('195.112.180.220', '195.112.180.220', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.180.221', '195.112.180.221', 2147483647, 2147483647, 'PT', 'Portugal'), +('195.112.180.222', '195.112.180.223', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.180.224', '195.112.180.224', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.180.225', '195.112.180.225', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.180.226', '195.112.180.227', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.180.228', '195.112.180.228', 2147483647, 2147483647, 'FR', 'France'), +('195.112.180.229', '195.112.180.230', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.180.231', '195.112.180.231', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.180.232', '195.112.180.232', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.180.233', '195.112.180.233', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.180.234', '195.112.180.234', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.180.235', '195.112.180.235', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.180.236', '195.112.180.236', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.180.237', '195.112.180.237', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.180.238', '195.112.180.239', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.180.240', '195.112.180.240', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.112.180.241', '195.112.180.241', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.180.242', '195.112.180.242', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.112.180.243', '195.112.180.245', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.180.246', '195.112.180.246', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.180.247', '195.112.180.249', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.180.250', '195.112.180.250', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.180.251', '195.112.181.1', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.181.2', '195.112.181.2', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.112.181.3', '195.112.181.3', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.112.181.4', '195.112.181.4', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.181.5', '195.112.181.6', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.181.7', '195.112.181.7', 2147483647, 2147483647, 'FR', 'France'), +('195.112.181.8', '195.112.181.8', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.181.9', '195.112.181.9', 2147483647, 2147483647, 'AT', 'Austria'), +('195.112.181.10', '195.112.181.11', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.181.12', '195.112.181.12', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.181.13', '195.112.181.13', 2147483647, 2147483647, 'FR', 'France'), +('195.112.181.14', '195.112.181.16', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.181.17', '195.112.181.17', 2147483647, 2147483647, 'LI', 'Liechtenstein'), +('195.112.181.18', '195.112.181.18', 2147483647, 2147483647, 'AT', 'Austria'), +('195.112.181.19', '195.112.181.19', 2147483647, 2147483647, 'FR', 'France'), +('195.112.181.20', '195.112.181.21', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.181.22', '195.112.181.22', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.181.23', '195.112.181.24', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.181.25', '195.112.181.25', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.181.26', '195.112.181.26', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.112.181.27', '195.112.181.27', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.181.28', '195.112.181.29', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.181.30', '195.112.181.30', 2147483647, 2147483647, 'FR', 'France'), +('195.112.181.31', '195.112.181.31', 2147483647, 2147483647, 'HU', 'Hungary'), +('195.112.181.32', '195.112.181.32', 2147483647, 2147483647, 'AT', 'Austria'), +('195.112.181.33', '195.112.181.33', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.181.34', '195.112.181.35', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.181.36', '195.112.181.36', 2147483647, 2147483647, 'AT', 'Austria'), +('195.112.181.37', '195.112.181.37', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.112.181.38', '195.112.181.38', 2147483647, 2147483647, 'FR', 'France'), +('195.112.181.39', '195.112.181.39', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.181.40', '195.112.181.40', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.181.41', '195.112.181.42', 2147483647, 2147483647, 'AT', 'Austria'), +('195.112.181.43', '195.112.181.43', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.181.44', '195.112.181.44', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.181.45', '195.112.181.45', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.181.46', '195.112.181.46', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.181.47', '195.112.181.47', 2147483647, 2147483647, 'BR', 'Brazil'), +('195.112.181.48', '195.112.181.49', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.181.50', '195.112.181.50', 2147483647, 2147483647, 'RE', 'Reunion'), +('195.112.181.51', '195.112.181.51', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.181.52', '195.112.181.52', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.181.53', '195.112.181.54', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.181.55', '195.112.181.55', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.181.56', '195.112.181.57', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.181.58', '195.112.181.58', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.181.59', '195.112.181.59', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.181.60', '195.112.181.60', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.181.61', '195.112.181.61', 2147483647, 2147483647, 'IL', 'Israel'), +('195.112.181.62', '195.112.181.62', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.181.63', '195.112.181.63', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.181.64', '195.112.181.64', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.181.65', '195.112.181.65', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.181.66', '195.112.181.66', 2147483647, 2147483647, 'FR', 'France'), +('195.112.181.67', '195.112.181.67', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.181.68', '195.112.181.68', 2147483647, 2147483647, 'FR', 'France'), +('195.112.181.69', '195.112.181.69', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.181.70', '195.112.181.70', 2147483647, 2147483647, 'AT', 'Austria'), +('195.112.181.71', '195.112.181.71', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.181.72', '195.112.181.72', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.181.73', '195.112.181.73', 2147483647, 2147483647, 'FR', 'France'), +('195.112.181.74', '195.112.181.76', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.181.77', '195.112.181.77', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.181.78', '195.112.181.78', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.112.181.79', '195.112.181.79', 2147483647, 2147483647, 'AE', 'United Arab Emirates'), +('195.112.181.80', '195.112.181.80', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.181.81', '195.112.181.81', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.181.82', '195.112.181.82', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.181.83', '195.112.181.83', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.112.181.84', '195.112.181.84', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.181.85', '195.112.181.85', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.181.86', '195.112.181.86', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.112.181.87', '195.112.181.87', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.112.181.88', '195.112.181.88', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.181.89', '195.112.181.89', 2147483647, 2147483647, 'FR', 'France'), +('195.112.181.90', '195.112.181.90', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.181.91', '195.112.181.91', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.112.181.92', '195.112.181.92', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.181.93', '195.112.181.93', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.181.94', '195.112.181.94', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.181.95', '195.112.181.95', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.181.96', '195.112.181.97', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.181.98', '195.112.181.98', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.181.99', '195.112.181.99', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.181.100', '195.112.181.100', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.181.101', '195.112.181.101', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.181.102', '195.112.181.102', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.181.103', '195.112.181.103', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.181.104', '195.112.181.104', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.181.105', '195.112.181.105', 2147483647, 2147483647, 'PL', 'Poland'), +('195.112.181.106', '195.112.181.106', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.181.107', '195.112.181.107', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.181.108', '195.112.181.108', 2147483647, 2147483647, 'GR', 'Greece'), +('195.112.181.109', '195.112.181.110', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.181.111', '195.112.181.111', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.181.112', '195.112.181.113', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.181.114', '195.112.181.114', 2147483647, 2147483647, 'PL', 'Poland'), +('195.112.181.115', '195.112.181.115', 2147483647, 2147483647, 'FR', 'France'), +('195.112.181.116', '195.112.181.116', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.181.117', '195.112.181.117', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.181.118', '195.112.181.118', 2147483647, 2147483647, 'AT', 'Austria'), +('195.112.181.119', '195.112.181.119', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.181.120', '195.112.181.120', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.181.121', '195.112.181.121', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.181.122', '195.112.181.122', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.112.181.123', '195.112.181.123', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.181.124', '195.112.181.125', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.181.126', '195.112.181.126', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.181.127', '195.112.181.127', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.181.128', '195.112.181.128', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.181.129', '195.112.181.129', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.181.130', '195.112.181.131', 2147483647, 2147483647, 'DE', 'Germany'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('195.112.181.132', '195.112.181.132', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.181.133', '195.112.181.133', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.181.134', '195.112.181.134', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.181.135', '195.112.181.135', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.112.181.136', '195.112.181.136', 2147483647, 2147483647, 'PL', 'Poland'), +('195.112.181.137', '195.112.181.137', 2147483647, 2147483647, 'FR', 'France'), +('195.112.181.138', '195.112.181.140', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.181.141', '195.112.181.142', 2147483647, 2147483647, 'FR', 'France'), +('195.112.181.143', '195.112.181.143', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.181.144', '195.112.181.144', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.181.145', '195.112.181.145', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.181.146', '195.112.181.146', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.181.147', '195.112.181.147', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.181.148', '195.112.181.148', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.181.149', '195.112.181.150', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.181.151', '195.112.181.151', 2147483647, 2147483647, 'HU', 'Hungary'), +('195.112.181.152', '195.112.181.153', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.181.154', '195.112.181.154', 2147483647, 2147483647, 'FR', 'France'), +('195.112.181.155', '195.112.181.155', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.181.156', '195.112.181.157', 2147483647, 2147483647, 'FR', 'France'), +('195.112.181.158', '195.112.181.158', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.181.159', '195.112.181.159', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.181.160', '195.112.181.160', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.112.181.161', '195.112.181.161', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.181.162', '195.112.181.162', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.181.163', '195.112.181.163', 2147483647, 2147483647, 'FR', 'France'), +('195.112.181.164', '195.112.181.165', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.181.166', '195.112.181.166', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.112.181.167', '195.112.181.167', 2147483647, 2147483647, 'FR', 'France'), +('195.112.181.168', '195.112.181.168', 2147483647, 2147483647, 'AT', 'Austria'), +('195.112.181.169', '195.112.181.170', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.181.171', '195.112.181.171', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.181.172', '195.112.181.172', 2147483647, 2147483647, 'CY', 'Cyprus'), +('195.112.181.173', '195.112.181.173', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.181.174', '195.112.181.174', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.181.175', '195.112.181.175', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.181.176', '195.112.181.178', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.181.179', '195.112.181.179', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.181.180', '195.112.181.181', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.181.182', '195.112.181.182', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.181.183', '195.112.181.184', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.181.185', '195.112.181.185', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.181.186', '195.112.181.187', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.181.188', '195.112.181.188', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('195.112.181.189', '195.112.181.189', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.181.190', '195.112.181.190', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.112.181.191', '195.112.181.191', 2147483647, 2147483647, 'FR', 'France'), +('195.112.181.192', '195.112.181.192', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.181.193', '195.112.181.193', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.181.194', '195.112.181.194', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.181.195', '195.112.181.195', 2147483647, 2147483647, 'PT', 'Portugal'), +('195.112.181.196', '195.112.181.196', 2147483647, 2147483647, 'AD', 'Andorra'), +('195.112.181.197', '195.112.181.198', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.181.199', '195.112.181.199', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.181.200', '195.112.181.201', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.181.202', '195.112.181.202', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.181.203', '195.112.181.204', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.181.205', '195.112.181.205', 2147483647, 2147483647, 'PL', 'Poland'), +('195.112.181.206', '195.112.181.206', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.181.207', '195.112.181.207', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.181.208', '195.112.181.208', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.181.209', '195.112.181.209', 2147483647, 2147483647, 'AT', 'Austria'), +('195.112.181.210', '195.112.181.210', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.181.211', '195.112.181.211', 2147483647, 2147483647, 'FR', 'France'), +('195.112.181.212', '195.112.181.212', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.181.213', '195.112.181.213', 2147483647, 2147483647, 'AT', 'Austria'), +('195.112.181.214', '195.112.181.214', 2147483647, 2147483647, 'FR', 'France'), +('195.112.181.215', '195.112.181.215', 2147483647, 2147483647, 'PL', 'Poland'), +('195.112.181.216', '195.112.181.217', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.181.218', '195.112.181.218', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.181.219', '195.112.181.219', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.181.220', '195.112.181.222', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.181.223', '195.112.181.223', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.181.224', '195.112.181.225', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.181.226', '195.112.181.226', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.181.227', '195.112.181.227', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.181.228', '195.112.181.228', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.181.229', '195.112.181.231', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.181.232', '195.112.181.232', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.181.233', '195.112.181.238', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.181.239', '195.112.181.239', 2147483647, 2147483647, 'PL', 'Poland'), +('195.112.181.240', '195.112.181.241', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.181.242', '195.112.181.242', 2147483647, 2147483647, 'FR', 'France'), +('195.112.181.243', '195.112.181.243', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.112.181.244', '195.112.181.245', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.181.246', '195.112.181.246', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.181.247', '195.112.181.247', 2147483647, 2147483647, 'AD', 'Andorra'), +('195.112.181.248', '195.112.181.248', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.181.249', '195.112.181.249', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.181.250', '195.112.181.252', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.181.253', '195.112.181.253', 2147483647, 2147483647, 'PT', 'Portugal'), +('195.112.181.254', '195.112.181.254', 2147483647, 2147483647, 'IL', 'Israel'), +('195.112.181.255', '195.112.182.1', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.182.2', '195.112.182.2', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.182.3', '195.112.182.3', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.182.4', '195.112.182.5', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.182.6', '195.112.182.7', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.182.8', '195.112.182.8', 2147483647, 2147483647, 'GR', 'Greece'), +('195.112.182.9', '195.112.182.9', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.182.10', '195.112.182.10', 2147483647, 2147483647, 'FR', 'France'), +('195.112.182.11', '195.112.182.11', 2147483647, 2147483647, 'SL', 'Sierra Leone'), +('195.112.182.12', '195.112.182.12', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.182.13', '195.112.182.13', 2147483647, 2147483647, 'FR', 'France'), +('195.112.182.14', '195.112.182.14', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.182.15', '195.112.182.15', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.182.16', '195.112.182.17', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.182.18', '195.112.182.18', 2147483647, 2147483647, 'CY', 'Cyprus'), +('195.112.182.19', '195.112.182.19', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.182.20', '195.112.182.20', 2147483647, 2147483647, 'FR', 'France'), +('195.112.182.21', '195.112.182.21', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.182.22', '195.112.182.22', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.112.182.23', '195.112.182.23', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.182.24', '195.112.182.24', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.182.25', '195.112.182.25', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('195.112.182.26', '195.112.182.26', 2147483647, 2147483647, 'FR', 'France'), +('195.112.182.27', '195.112.182.27', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.182.28', '195.112.182.28', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.182.29', '195.112.182.29', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.182.30', '195.112.182.30', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.182.31', '195.112.182.32', 2147483647, 2147483647, 'PT', 'Portugal'), +('195.112.182.33', '195.112.182.33', 2147483647, 2147483647, 'FR', 'France'), +('195.112.182.34', '195.112.182.34', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.182.35', '195.112.182.36', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.182.37', '195.112.182.37', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.182.38', '195.112.182.38', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.182.39', '195.112.182.42', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.182.43', '195.112.182.43', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.182.44', '195.112.182.44', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.182.45', '195.112.182.45', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.182.46', '195.112.182.46', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.182.47', '195.112.182.47', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.182.48', '195.112.182.48', 2147483647, 2147483647, 'FR', 'France'), +('195.112.182.49', '195.112.182.49', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.182.50', '195.112.182.50', 2147483647, 2147483647, 'HU', 'Hungary'), +('195.112.182.51', '195.112.182.52', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.182.53', '195.112.182.53', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.182.54', '195.112.182.54', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.182.55', '195.112.182.55', 2147483647, 2147483647, 'IE', 'Ireland'), +('195.112.182.56', '195.112.182.56', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.182.57', '195.112.182.57', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('195.112.182.58', '195.112.182.58', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.182.59', '195.112.182.59', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.182.60', '195.112.182.60', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.182.61', '195.112.182.61', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.112.182.62', '195.112.182.62', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.182.63', '195.112.182.63', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.182.64', '195.112.182.64', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.182.65', '195.112.182.65', 2147483647, 2147483647, 'FR', 'France'), +('195.112.182.66', '195.112.182.66', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.182.67', '195.112.182.67', 2147483647, 2147483647, 'GR', 'Greece'), +('195.112.182.68', '195.112.182.68', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.182.69', '195.112.182.69', 2147483647, 2147483647, 'IN', 'India'), +('195.112.182.70', '195.112.182.70', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.182.71', '195.112.182.71', 2147483647, 2147483647, 'MA', 'Morocco'), +('195.112.182.72', '195.112.182.72', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.182.73', '195.112.182.73', 2147483647, 2147483647, 'FR', 'France'), +('195.112.182.74', '195.112.182.74', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.182.75', '195.112.182.75', 2147483647, 2147483647, 'AT', 'Austria'), +('195.112.182.76', '195.112.182.76', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.182.77', '195.112.182.77', 2147483647, 2147483647, 'SM', 'San Marino'), +('195.112.182.78', '195.112.182.78', 2147483647, 2147483647, 'PL', 'Poland'), +('195.112.182.79', '195.112.182.79', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.182.80', '195.112.182.80', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.182.81', '195.112.182.82', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.182.83', '195.112.182.83', 2147483647, 2147483647, 'AT', 'Austria'), +('195.112.182.84', '195.112.182.84', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.182.85', '195.112.182.85', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.182.86', '195.112.182.86', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.182.87', '195.112.182.87', 2147483647, 2147483647, 'US', 'United States'), +('195.112.182.88', '195.112.182.88', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.112.182.89', '195.112.182.89', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.182.90', '195.112.182.91', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.182.92', '195.112.182.92', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.182.93', '195.112.182.93', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.182.94', '195.112.182.94', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.182.95', '195.112.182.95', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.182.96', '195.112.182.101', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.182.102', '195.112.182.102', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.182.103', '195.112.182.103', 2147483647, 2147483647, 'FR', 'France'), +('195.112.182.104', '195.112.182.104', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.182.105', '195.112.182.105', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.182.106', '195.112.182.107', 2147483647, 2147483647, 'FR', 'France'), +('195.112.182.108', '195.112.182.108', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.112.182.109', '195.112.182.109', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.182.110', '195.112.182.110', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.182.111', '195.112.182.111', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.112.182.112', '195.112.182.112', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.182.113', '195.112.182.113', 2147483647, 2147483647, 'PL', 'Poland'), +('195.112.182.114', '195.112.182.114', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.182.115', '195.112.182.115', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.182.116', '195.112.182.116', 2147483647, 2147483647, 'FR', 'France'), +('195.112.182.117', '195.112.182.118', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.182.119', '195.112.182.119', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.182.120', '195.112.182.120', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.112.182.121', '195.112.182.121', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.182.122', '195.112.182.122', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.182.123', '195.112.182.123', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.182.124', '195.112.182.124', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.182.125', '195.112.182.125', 2147483647, 2147483647, 'IE', 'Ireland'), +('195.112.182.126', '195.112.182.126', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.182.127', '195.112.182.127', 2147483647, 2147483647, 'FR', 'France'), +('195.112.182.128', '195.112.182.128', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.182.129', '195.112.182.129', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.182.130', '195.112.182.130', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.182.131', '195.112.182.131', 2147483647, 2147483647, 'IL', 'Israel'), +('195.112.182.132', '195.112.182.137', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.182.138', '195.112.182.138', 2147483647, 2147483647, 'PL', 'Poland'), +('195.112.182.139', '195.112.182.139', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.182.140', '195.112.182.140', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.182.141', '195.112.182.141', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.182.142', '195.112.182.144', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.182.145', '195.112.182.145', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.112.182.146', '195.112.182.146', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.182.147', '195.112.182.147', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.182.148', '195.112.182.148', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.112.182.149', '195.112.182.149', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.182.150', '195.112.182.150', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.182.151', '195.112.182.151', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.182.152', '195.112.182.152', 2147483647, 2147483647, 'PL', 'Poland'), +('195.112.182.153', '195.112.182.153', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.182.154', '195.112.182.154', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.182.155', '195.112.182.155', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.182.156', '195.112.182.156', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.182.157', '195.112.182.157', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.182.158', '195.112.182.158', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.182.159', '195.112.182.159', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.182.160', '195.112.182.160', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.182.161', '195.112.182.161', 2147483647, 2147483647, 'FR', 'France'), +('195.112.182.162', '195.112.182.163', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.182.164', '195.112.182.164', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.182.165', '195.112.182.165', 2147483647, 2147483647, 'HU', 'Hungary'), +('195.112.182.166', '195.112.182.166', 2147483647, 2147483647, 'FR', 'France'), +('195.112.182.167', '195.112.182.167', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.182.168', '195.112.182.169', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.182.170', '195.112.182.170', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.182.171', '195.112.182.171', 2147483647, 2147483647, 'PL', 'Poland'), +('195.112.182.172', '195.112.182.172', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.182.173', '195.112.182.173', 2147483647, 2147483647, 'FR', 'France'), +('195.112.182.174', '195.112.182.174', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.182.175', '195.112.182.176', 2147483647, 2147483647, 'FR', 'France'), +('195.112.182.177', '195.112.182.177', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.182.178', '195.112.182.178', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.182.179', '195.112.182.179', 2147483647, 2147483647, 'FR', 'France'), +('195.112.182.180', '195.112.182.180', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.182.181', '195.112.182.182', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.182.183', '195.112.182.183', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.182.184', '195.112.182.184', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.182.185', '195.112.182.185', 2147483647, 2147483647, 'PT', 'Portugal'), +('195.112.182.186', '195.112.182.186', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.182.187', '195.112.182.188', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.182.189', '195.112.182.189', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.182.190', '195.112.182.190', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.182.191', '195.112.182.191', 2147483647, 2147483647, 'GR', 'Greece'), +('195.112.182.192', '195.112.182.195', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.182.196', '195.112.182.196', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.112.182.197', '195.112.182.197', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.182.198', '195.112.182.198', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.182.199', '195.112.182.199', 2147483647, 2147483647, 'AT', 'Austria'), +('195.112.182.200', '195.112.182.200', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.182.201', '195.112.182.201', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.182.202', '195.112.182.202', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('195.112.182.203', '195.112.182.203', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.182.204', '195.112.182.204', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.182.205', '195.112.182.205', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.182.206', '195.112.182.206', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.112.182.207', '195.112.182.207', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('195.112.182.208', '195.112.182.209', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.182.210', '195.112.182.210', 2147483647, 2147483647, 'FR', 'France'), +('195.112.182.211', '195.112.182.212', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.182.213', '195.112.182.213', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.182.214', '195.112.182.214', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.112.182.215', '195.112.182.215', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.182.216', '195.112.182.216', 2147483647, 2147483647, 'FR', 'France'), +('195.112.182.217', '195.112.182.220', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.182.221', '195.112.182.221', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.182.222', '195.112.182.223', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.182.224', '195.112.182.224', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.182.225', '195.112.182.225', 2147483647, 2147483647, 'PL', 'Poland'), +('195.112.182.226', '195.112.182.226', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.182.227', '195.112.182.227', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.112.182.228', '195.112.182.228', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.182.229', '195.112.182.229', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.182.230', '195.112.182.230', 2147483647, 2147483647, 'GR', 'Greece'), +('195.112.182.231', '195.112.182.232', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.182.233', '195.112.182.233', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.112.182.234', '195.112.182.234', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.182.235', '195.112.182.235', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.182.236', '195.112.182.236', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.182.237', '195.112.182.237', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.182.238', '195.112.182.238', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.182.239', '195.112.182.239', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.182.240', '195.112.182.240', 2147483647, 2147483647, 'AT', 'Austria'), +('195.112.182.241', '195.112.182.241', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.182.242', '195.112.182.243', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.182.244', '195.112.182.244', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.182.245', '195.112.182.246', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.182.247', '195.112.182.247', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.182.248', '195.112.182.248', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.182.249', '195.112.182.250', 2147483647, 2147483647, 'AT', 'Austria'), +('195.112.182.251', '195.112.182.251', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.182.252', '195.112.182.253', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.182.254', '195.112.182.254', 2147483647, 2147483647, 'FR', 'France'), +('195.112.182.255', '195.112.183.1', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.183.2', '195.112.183.2', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.183.3', '195.112.183.3', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('195.112.183.4', '195.112.183.4', 2147483647, 2147483647, 'PT', 'Portugal'), +('195.112.183.5', '195.112.183.6', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.183.7', '195.112.183.7', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.183.8', '195.112.183.8', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.183.9', '195.112.183.9', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.183.10', '195.112.183.10', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.183.11', '195.112.183.12', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.183.13', '195.112.183.13', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.112.183.14', '195.112.183.14', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.183.15', '195.112.183.15', 2147483647, 2147483647, 'IS', 'Iceland'), +('195.112.183.16', '195.112.183.16', 2147483647, 2147483647, 'PL', 'Poland'), +('195.112.183.17', '195.112.183.17', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.183.18', '195.112.183.18', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.112.183.19', '195.112.183.19', 2147483647, 2147483647, 'FR', 'France'), +('195.112.183.20', '195.112.183.20', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.183.21', '195.112.183.21', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.183.22', '195.112.183.22', 2147483647, 2147483647, 'FR', 'France'), +('195.112.183.23', '195.112.183.23', 2147483647, 2147483647, 'AT', 'Austria'), +('195.112.183.24', '195.112.183.25', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.183.26', '195.112.183.27', 2147483647, 2147483647, 'FR', 'France'), +('195.112.183.28', '195.112.183.28', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.183.29', '195.112.183.29', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.183.30', '195.112.183.30', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.183.31', '195.112.183.31', 2147483647, 2147483647, 'FR', 'France'), +('195.112.183.32', '195.112.183.33', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.183.34', '195.112.183.34', 2147483647, 2147483647, 'GR', 'Greece'), +('195.112.183.35', '195.112.183.35', 2147483647, 2147483647, 'FR', 'France'), +('195.112.183.36', '195.112.183.36', 2147483647, 2147483647, 'US', 'United States'), +('195.112.183.37', '195.112.183.37', 2147483647, 2147483647, 'FR', 'France'), +('195.112.183.38', '195.112.183.38', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.183.39', '195.112.183.39', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.183.40', '195.112.183.40', 2147483647, 2147483647, 'FR', 'France'), +('195.112.183.41', '195.112.183.41', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.183.42', '195.112.183.42', 2147483647, 2147483647, 'FR', 'France'), +('195.112.183.43', '195.112.183.43', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.183.44', '195.112.183.45', 2147483647, 2147483647, 'FR', 'France'), +('195.112.183.46', '195.112.183.46', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.183.47', '195.112.183.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.183.48', '195.112.183.48', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.112.183.49', '195.112.183.49', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.183.50', '195.112.183.50', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.183.51', '195.112.183.51', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.112.183.52', '195.112.183.52', 2147483647, 2147483647, 'AT', 'Austria'), +('195.112.183.53', '195.112.183.53', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.183.54', '195.112.183.54', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.183.55', '195.112.183.55', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.183.56', '195.112.183.58', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.183.59', '195.112.183.59', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.183.60', '195.112.183.60', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.112.183.61', '195.112.183.61', 2147483647, 2147483647, 'FR', 'France'), +('195.112.183.62', '195.112.183.62', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.183.63', '195.112.183.63', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.183.64', '195.112.183.64', 2147483647, 2147483647, 'FR', 'France'), +('195.112.183.65', '195.112.183.65', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.183.66', '195.112.183.66', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.183.67', '195.112.183.67', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.183.68', '195.112.183.68', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.183.69', '195.112.183.69', 2147483647, 2147483647, 'PL', 'Poland'), +('195.112.183.70', '195.112.183.70', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.183.71', '195.112.183.71', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.112.183.72', '195.112.183.72', 2147483647, 2147483647, 'AT', 'Austria'), +('195.112.183.73', '195.112.183.73', 2147483647, 2147483647, 'FR', 'France'), +('195.112.183.74', '195.112.183.75', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.183.76', '195.112.183.76', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.183.77', '195.112.183.77', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.183.78', '195.112.183.78', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.183.79', '195.112.183.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.183.80', '195.112.183.80', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.183.81', '195.112.183.81', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.183.82', '195.112.183.82', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.183.83', '195.112.183.84', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.183.85', '195.112.183.85', 2147483647, 2147483647, 'PT', 'Portugal'), +('195.112.183.86', '195.112.183.86', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.183.87', '195.112.183.87', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.183.88', '195.112.183.88', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.183.89', '195.112.183.89', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.183.90', '195.112.183.90', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.183.91', '195.112.183.91', 2147483647, 2147483647, 'MA', 'Morocco'), +('195.112.183.92', '195.112.183.92', 2147483647, 2147483647, 'GR', 'Greece'), +('195.112.183.93', '195.112.183.94', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.183.95', '195.112.183.95', 2147483647, 2147483647, 'AT', 'Austria'), +('195.112.183.96', '195.112.183.96', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.183.97', '195.112.183.97', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.183.98', '195.112.183.98', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.112.183.99', '195.112.183.99', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.183.100', '195.112.183.102', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.183.103', '195.112.183.104', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.183.105', '195.112.183.105', 2147483647, 2147483647, 'FR', 'France'), +('195.112.183.106', '195.112.183.106', 2147483647, 2147483647, 'AT', 'Austria'), +('195.112.183.107', '195.112.183.108', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.183.109', '195.112.183.109', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.183.110', '195.112.183.111', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.183.112', '195.112.183.112', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.183.113', '195.112.183.113', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.183.114', '195.112.183.114', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.183.115', '195.112.183.116', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.183.117', '195.112.183.118', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.183.119', '195.112.183.119', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.183.120', '195.112.183.121', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.183.122', '195.112.183.122', 2147483647, 2147483647, 'FR', 'France'), +('195.112.183.123', '195.112.183.123', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.183.124', '195.112.183.124', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.183.125', '195.112.183.125', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.112.183.126', '195.112.183.126', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.183.127', '195.112.183.127', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.183.128', '195.112.183.128', 2147483647, 2147483647, 'PT', 'Portugal'), +('195.112.183.129', '195.112.183.129', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.112.183.130', '195.112.183.130', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.183.131', '195.112.183.131', 2147483647, 2147483647, 'FR', 'France'), +('195.112.183.132', '195.112.183.132', 2147483647, 2147483647, 'IE', 'Ireland'), +('195.112.183.133', '195.112.183.133', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.183.134', '195.112.183.134', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.183.135', '195.112.183.135', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.183.136', '195.112.183.137', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.183.138', '195.112.183.138', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.183.139', '195.112.183.139', 2147483647, 2147483647, 'FR', 'France'), +('195.112.183.140', '195.112.183.140', 2147483647, 2147483647, 'PT', 'Portugal'), +('195.112.183.141', '195.112.183.141', 2147483647, 2147483647, 'FR', 'France'), +('195.112.183.142', '195.112.183.142', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.183.143', '195.112.183.143', 2147483647, 2147483647, 'AT', 'Austria'), +('195.112.183.144', '195.112.183.144', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.183.145', '195.112.183.145', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.112.183.146', '195.112.183.147', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.183.148', '195.112.183.148', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.183.149', '195.112.183.149', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.183.150', '195.112.183.150', 2147483647, 2147483647, 'IE', 'Ireland'), +('195.112.183.151', '195.112.183.151', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.183.152', '195.112.183.152', 2147483647, 2147483647, 'IS', 'Iceland'), +('195.112.183.153', '195.112.183.156', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.183.157', '195.112.183.157', 2147483647, 2147483647, 'FR', 'France'), +('195.112.183.158', '195.112.183.158', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.183.159', '195.112.183.159', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.183.160', '195.112.183.160', 2147483647, 2147483647, 'FR', 'France'), +('195.112.183.161', '195.112.183.161', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.183.162', '195.112.183.162', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.183.163', '195.112.183.163', 2147483647, 2147483647, 'HU', 'Hungary'), +('195.112.183.164', '195.112.183.164', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.183.165', '195.112.183.166', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.183.167', '195.112.183.167', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.183.168', '195.112.183.168', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.183.169', '195.112.183.169', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.183.170', '195.112.183.171', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.183.172', '195.112.183.172', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.183.173', '195.112.183.173', 2147483647, 2147483647, 'FR', 'France'), +('195.112.183.174', '195.112.183.174', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.183.175', '195.112.183.175', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.183.176', '195.112.183.176', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.183.177', '195.112.183.177', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('195.112.183.178', '195.112.183.179', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.183.180', '195.112.183.180', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.183.181', '195.112.183.181', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.183.182', '195.112.183.182', 2147483647, 2147483647, 'FR', 'France'), +('195.112.183.183', '195.112.183.184', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.183.185', '195.112.183.185', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.183.186', '195.112.183.192', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.183.193', '195.112.183.193', 2147483647, 2147483647, 'FR', 'France'), +('195.112.183.194', '195.112.183.194', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.183.195', '195.112.183.195', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.183.196', '195.112.183.197', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.183.198', '195.112.183.198', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.183.199', '195.112.183.199', 2147483647, 2147483647, 'AT', 'Austria'), +('195.112.183.200', '195.112.183.200', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.183.201', '195.112.183.201', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.112.183.202', '195.112.183.202', 2147483647, 2147483647, 'NO', 'Norway'), +('195.112.183.203', '195.112.183.203', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.183.204', '195.112.183.207', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.183.208', '195.112.183.208', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.183.209', '195.112.183.209', 2147483647, 2147483647, 'PL', 'Poland'), +('195.112.183.210', '195.112.183.210', 2147483647, 2147483647, 'AT', 'Austria'), +('195.112.183.211', '195.112.183.211', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.183.212', '195.112.183.212', 2147483647, 2147483647, 'FR', 'France'), +('195.112.183.213', '195.112.183.213', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.112.183.214', '195.112.183.214', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.183.215', '195.112.183.215', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.183.216', '195.112.183.216', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.183.217', '195.112.183.217', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.183.218', '195.112.183.218', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.183.219', '195.112.183.219', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.183.220', '195.112.183.220', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.183.221', '195.112.183.221', 2147483647, 2147483647, 'GR', 'Greece'), +('195.112.183.222', '195.112.183.222', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.183.223', '195.112.183.224', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.183.225', '195.112.183.225', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.183.226', '195.112.183.226', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.112.183.227', '195.112.183.227', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.183.228', '195.112.183.230', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.183.231', '195.112.183.231', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.183.232', '195.112.183.232', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.183.233', '195.112.183.233', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.183.234', '195.112.183.234', 2147483647, 2147483647, 'AT', 'Austria'), +('195.112.183.235', '195.112.183.235', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.183.236', '195.112.183.236', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.183.237', '195.112.183.238', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.183.239', '195.112.183.239', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.112.183.240', '195.112.183.240', 2147483647, 2147483647, 'FR', 'France'), +('195.112.183.241', '195.112.183.241', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.183.242', '195.112.183.242', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.183.243', '195.112.183.243', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.183.244', '195.112.183.244', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.183.245', '195.112.183.245', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.112.183.246', '195.112.183.246', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.183.247', '195.112.183.247', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.183.248', '195.112.183.248', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.183.249', '195.112.183.249', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.183.250', '195.112.183.250', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.183.251', '195.112.183.251', 2147483647, 2147483647, 'AT', 'Austria'), +('195.112.183.252', '195.112.183.252', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.183.253', '195.112.183.254', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.183.255', '195.112.184.0', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.184.1', '195.112.184.16', 2147483647, 2147483647, 'US', 'United States'), +('195.112.184.17', '195.112.184.17', 2147483647, 2147483647, 'CA', 'Canada'), +('195.112.184.18', '195.112.184.18', 2147483647, 2147483647, 'US', 'United States'), +('195.112.184.19', '195.112.184.19', 2147483647, 2147483647, 'CA', 'Canada'), +('195.112.184.20', '195.112.184.21', 2147483647, 2147483647, 'US', 'United States'), +('195.112.184.22', '195.112.184.22', 2147483647, 2147483647, 'VE', 'Venezuela'), +('195.112.184.23', '195.112.184.23', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.184.24', '195.112.184.28', 2147483647, 2147483647, 'US', 'United States'), +('195.112.184.29', '195.112.184.29', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.184.30', '195.112.184.30', 2147483647, 2147483647, 'US', 'United States'), +('195.112.184.31', '195.112.184.32', 2147483647, 2147483647, 'CA', 'Canada'), +('195.112.184.33', '195.112.184.37', 2147483647, 2147483647, 'US', 'United States'), +('195.112.184.38', '195.112.184.38', 2147483647, 2147483647, 'CA', 'Canada'), +('195.112.184.39', '195.112.184.90', 2147483647, 2147483647, 'US', 'United States'), +('195.112.184.91', '195.112.184.91', 2147483647, 2147483647, 'AR', 'Argentina'), +('195.112.184.92', '195.112.184.104', 2147483647, 2147483647, 'US', 'United States'), +('195.112.184.105', '195.112.184.105', 2147483647, 2147483647, 'AR', 'Argentina'), +('195.112.184.106', '195.112.184.109', 2147483647, 2147483647, 'US', 'United States'), +('195.112.184.110', '195.112.184.110', 2147483647, 2147483647, 'MX', 'Mexico'), +('195.112.184.111', '195.112.184.111', 2147483647, 2147483647, 'US', 'United States'), +('195.112.184.112', '195.112.184.112', 2147483647, 2147483647, 'CA', 'Canada'), +('195.112.184.113', '195.112.184.117', 2147483647, 2147483647, 'US', 'United States'), +('195.112.184.118', '195.112.184.118', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('195.112.184.119', '195.112.184.123', 2147483647, 2147483647, 'US', 'United States'), +('195.112.184.124', '195.112.184.124', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.184.125', '195.112.184.129', 2147483647, 2147483647, 'US', 'United States'), +('195.112.184.130', '195.112.184.130', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.184.131', '195.112.184.132', 2147483647, 2147483647, 'US', 'United States'), +('195.112.184.133', '195.112.184.133', 2147483647, 2147483647, 'CA', 'Canada'), +('195.112.184.134', '195.112.184.134', 2147483647, 2147483647, 'AR', 'Argentina'), +('195.112.184.135', '195.112.184.135', 2147483647, 2147483647, 'CA', 'Canada'), +('195.112.184.136', '195.112.184.139', 2147483647, 2147483647, 'US', 'United States'), +('195.112.184.140', '195.112.184.140', 2147483647, 2147483647, 'CA', 'Canada'), +('195.112.184.141', '195.112.184.143', 2147483647, 2147483647, 'US', 'United States'), +('195.112.184.144', '195.112.184.144', 2147483647, 2147483647, 'BR', 'Brazil'), +('195.112.184.145', '195.112.184.145', 2147483647, 2147483647, 'US', 'United States'), +('195.112.184.146', '195.112.184.146', 2147483647, 2147483647, 'CA', 'Canada'), +('195.112.184.147', '195.112.184.156', 2147483647, 2147483647, 'US', 'United States'), +('195.112.184.157', '195.112.184.157', 2147483647, 2147483647, 'CA', 'Canada'), +('195.112.184.158', '195.112.184.162', 2147483647, 2147483647, 'US', 'United States'), +('195.112.184.163', '195.112.184.163', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.184.164', '195.112.184.164', 2147483647, 2147483647, 'CA', 'Canada'), +('195.112.184.165', '195.112.184.165', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.184.166', '195.112.184.176', 2147483647, 2147483647, 'US', 'United States'), +('195.112.184.177', '195.112.184.177', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.184.178', '195.112.184.188', 2147483647, 2147483647, 'US', 'United States'), +('195.112.184.189', '195.112.184.193', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.184.194', '195.112.184.195', 2147483647, 2147483647, 'CA', 'Canada'), +('195.112.184.196', '195.112.184.204', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.184.205', '195.112.184.205', 2147483647, 2147483647, 'US', 'United States'), +('195.112.184.206', '195.112.184.214', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.184.215', '195.112.184.215', 2147483647, 2147483647, 'US', 'United States'), +('195.112.184.216', '195.112.185.1', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.185.2', '195.112.185.5', 2147483647, 2147483647, 'US', 'United States'), +('195.112.185.6', '195.112.185.6', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.185.7', '195.112.185.8', 2147483647, 2147483647, 'US', 'United States'), +('195.112.185.9', '195.112.185.9', 2147483647, 2147483647, 'CA', 'Canada'), +('195.112.185.10', '195.112.185.10', 2147483647, 2147483647, 'US', 'United States'), +('195.112.185.11', '195.112.185.11', 2147483647, 2147483647, 'CA', 'Canada'), +('195.112.185.12', '195.112.185.12', 2147483647, 2147483647, 'US', 'United States'), +('195.112.185.13', '195.112.185.13', 2147483647, 2147483647, 'CL', 'Chile'), +('195.112.185.14', '195.112.185.14', 2147483647, 2147483647, 'US', 'United States'), +('195.112.185.15', '195.112.185.15', 2147483647, 2147483647, 'CA', 'Canada'), +('195.112.185.16', '195.112.185.16', 2147483647, 2147483647, 'US', 'United States'), +('195.112.185.17', '195.112.185.17', 2147483647, 2147483647, 'CA', 'Canada'), +('195.112.185.18', '195.112.185.23', 2147483647, 2147483647, 'US', 'United States'), +('195.112.185.24', '195.112.185.24', 2147483647, 2147483647, 'GU', 'Guam'), +('195.112.185.25', '195.112.185.25', 2147483647, 2147483647, 'US', 'United States'), +('195.112.185.26', '195.112.185.26', 2147483647, 2147483647, 'AR', 'Argentina'), +('195.112.185.27', '195.112.185.32', 2147483647, 2147483647, 'US', 'United States'), +('195.112.185.33', '195.112.185.33', 2147483647, 2147483647, 'CA', 'Canada'), +('195.112.185.34', '195.112.185.43', 2147483647, 2147483647, 'US', 'United States'), +('195.112.185.44', '195.112.185.44', 2147483647, 2147483647, 'CL', 'Chile'), +('195.112.185.45', '195.112.185.47', 2147483647, 2147483647, 'US', 'United States'), +('195.112.185.48', '195.112.185.48', 2147483647, 2147483647, 'AR', 'Argentina'), +('195.112.185.49', '195.112.185.49', 2147483647, 2147483647, 'US', 'United States'), +('195.112.185.50', '195.112.185.50', 2147483647, 2147483647, 'CA', 'Canada'), +('195.112.185.51', '195.112.185.51', 2147483647, 2147483647, 'US', 'United States'), +('195.112.185.52', '195.112.185.52', 2147483647, 2147483647, 'CA', 'Canada'), +('195.112.185.53', '195.112.185.57', 2147483647, 2147483647, 'US', 'United States'), +('195.112.185.58', '195.112.185.58', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.185.59', '195.112.185.60', 2147483647, 2147483647, 'US', 'United States'), +('195.112.185.61', '195.112.185.61', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.185.62', '195.112.185.62', 2147483647, 2147483647, 'US', 'United States'), +('195.112.185.63', '195.112.185.63', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.185.64', '195.112.185.66', 2147483647, 2147483647, 'US', 'United States'), +('195.112.185.67', '195.112.185.67', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.185.68', '195.112.185.68', 2147483647, 2147483647, 'AR', 'Argentina'), +('195.112.185.69', '195.112.185.69', 2147483647, 2147483647, 'US', 'United States'), +('195.112.185.70', '195.112.185.71', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.185.72', '195.112.185.74', 2147483647, 2147483647, 'US', 'United States'), +('195.112.185.75', '195.112.185.75', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('195.112.185.76', '195.112.185.76', 2147483647, 2147483647, 'US', 'United States'), +('195.112.185.77', '195.112.185.77', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.185.78', '195.112.185.87', 2147483647, 2147483647, 'US', 'United States'), +('195.112.185.88', '195.112.185.88', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('195.112.185.89', '195.112.185.94', 2147483647, 2147483647, 'US', 'United States'), +('195.112.185.95', '195.112.185.96', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.185.97', '195.112.185.99', 2147483647, 2147483647, 'US', 'United States'), +('195.112.185.100', '195.112.185.100', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.185.101', '195.112.185.121', 2147483647, 2147483647, 'US', 'United States'), +('195.112.185.122', '195.112.185.122', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.185.123', '195.112.185.126', 2147483647, 2147483647, 'US', 'United States'), +('195.112.185.127', '195.112.185.128', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.185.129', '195.112.185.130', 2147483647, 2147483647, 'US', 'United States'), +('195.112.185.131', '195.112.185.131', 2147483647, 2147483647, 'CL', 'Chile'), +('195.112.185.132', '195.112.185.138', 2147483647, 2147483647, 'US', 'United States'), +('195.112.185.139', '195.112.185.139', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.185.140', '195.112.185.142', 2147483647, 2147483647, 'US', 'United States'), +('195.112.185.143', '195.112.185.145', 2147483647, 2147483647, 'AR', 'Argentina'), +('195.112.185.146', '195.112.185.147', 2147483647, 2147483647, 'US', 'United States'), +('195.112.185.148', '195.112.185.148', 2147483647, 2147483647, 'AR', 'Argentina'), +('195.112.185.149', '195.112.185.149', 2147483647, 2147483647, 'US', 'United States'), +('195.112.185.150', '195.112.185.151', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.185.152', '195.112.185.153', 2147483647, 2147483647, 'AR', 'Argentina'), +('195.112.185.154', '195.112.185.155', 2147483647, 2147483647, 'US', 'United States'), +('195.112.185.156', '195.112.185.156', 2147483647, 2147483647, 'AR', 'Argentina'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('195.112.185.157', '195.112.185.158', 2147483647, 2147483647, 'US', 'United States'), +('195.112.185.159', '195.112.185.159', 2147483647, 2147483647, 'CL', 'Chile'), +('195.112.185.160', '195.112.185.160', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.185.161', '195.112.185.161', 2147483647, 2147483647, 'PE', 'Peru'), +('195.112.185.162', '195.112.185.162', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.185.163', '195.112.185.165', 2147483647, 2147483647, 'US', 'United States'), +('195.112.185.166', '195.112.185.166', 2147483647, 2147483647, 'CA', 'Canada'), +('195.112.185.167', '195.112.185.167', 2147483647, 2147483647, 'US', 'United States'), +('195.112.185.168', '195.112.185.168', 2147483647, 2147483647, 'CA', 'Canada'), +('195.112.185.169', '195.112.185.171', 2147483647, 2147483647, 'US', 'United States'), +('195.112.185.172', '195.112.185.174', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.185.175', '195.112.185.175', 2147483647, 2147483647, 'US', 'United States'), +('195.112.185.176', '195.112.185.176', 2147483647, 2147483647, 'AR', 'Argentina'), +('195.112.185.177', '195.112.185.181', 2147483647, 2147483647, 'US', 'United States'), +('195.112.185.182', '195.112.185.183', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.185.184', '195.112.185.184', 2147483647, 2147483647, 'AS', 'American Samoa'), +('195.112.185.185', '195.112.185.185', 2147483647, 2147483647, 'CA', 'Canada'), +('195.112.185.186', '195.112.185.194', 2147483647, 2147483647, 'US', 'United States'), +('195.112.185.195', '195.112.185.195', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.185.196', '195.112.185.196', 2147483647, 2147483647, 'PE', 'Peru'), +('195.112.185.197', '195.112.185.197', 2147483647, 2147483647, 'US', 'United States'), +('195.112.185.198', '195.112.185.198', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.185.199', '195.112.185.200', 2147483647, 2147483647, 'CL', 'Chile'), +('195.112.185.201', '195.112.185.201', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.185.202', '195.112.185.202', 2147483647, 2147483647, 'JM', 'Jamaica'), +('195.112.185.203', '195.112.185.203', 2147483647, 2147483647, 'CA', 'Canada'), +('195.112.185.204', '195.112.185.204', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.185.205', '195.112.185.206', 2147483647, 2147483647, 'US', 'United States'), +('195.112.185.207', '195.112.185.207', 2147483647, 2147483647, 'CA', 'Canada'), +('195.112.185.208', '195.112.185.208', 2147483647, 2147483647, 'US', 'United States'), +('195.112.185.209', '195.112.185.209', 2147483647, 2147483647, 'CA', 'Canada'), +('195.112.185.210', '195.112.185.215', 2147483647, 2147483647, 'US', 'United States'), +('195.112.185.216', '195.112.185.216', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.185.217', '195.112.185.218', 2147483647, 2147483647, 'US', 'United States'), +('195.112.185.219', '195.112.185.219', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.185.220', '195.112.185.222', 2147483647, 2147483647, 'US', 'United States'), +('195.112.185.223', '195.112.185.223', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.185.224', '195.112.185.224', 2147483647, 2147483647, 'AR', 'Argentina'), +('195.112.185.225', '195.112.185.227', 2147483647, 2147483647, 'US', 'United States'), +('195.112.185.228', '195.112.185.228', 2147483647, 2147483647, 'CA', 'Canada'), +('195.112.185.229', '195.112.185.229', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.185.230', '195.112.185.231', 2147483647, 2147483647, 'US', 'United States'), +('195.112.185.232', '195.112.185.233', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.185.234', '195.112.185.237', 2147483647, 2147483647, 'US', 'United States'), +('195.112.185.238', '195.112.185.238', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.185.239', '195.112.185.239', 2147483647, 2147483647, 'US', 'United States'), +('195.112.185.240', '195.112.185.240', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.185.241', '195.112.185.241', 2147483647, 2147483647, 'US', 'United States'), +('195.112.185.242', '195.112.185.242', 2147483647, 2147483647, 'BR', 'Brazil'), +('195.112.185.243', '195.112.185.243', 2147483647, 2147483647, 'AR', 'Argentina'), +('195.112.185.244', '195.112.185.246', 2147483647, 2147483647, 'US', 'United States'), +('195.112.185.247', '195.112.185.248', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.185.249', '195.112.185.249', 2147483647, 2147483647, 'UY', 'Uruguay'), +('195.112.185.250', '195.112.185.251', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.185.252', '195.112.185.252', 2147483647, 2147483647, 'AR', 'Argentina'), +('195.112.185.253', '195.112.185.253', 2147483647, 2147483647, 'US', 'United States'), +('195.112.185.254', '195.112.185.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.186.0', '195.112.186.3', 2147483647, 2147483647, 'DO', 'Dominican Republic'), +('195.112.186.4', '195.112.186.51', 2147483647, 2147483647, 'US', 'United States'), +('195.112.186.52', '195.112.186.55', 2147483647, 2147483647, 'AR', 'Argentina'), +('195.112.186.56', '195.112.186.59', 2147483647, 2147483647, 'BR', 'Brazil'), +('195.112.186.60', '195.112.186.83', 2147483647, 2147483647, 'US', 'United States'), +('195.112.186.84', '195.112.186.87', 2147483647, 2147483647, 'CA', 'Canada'), +('195.112.186.88', '195.112.186.95', 2147483647, 2147483647, 'US', 'United States'), +('195.112.186.96', '195.112.186.99', 2147483647, 2147483647, 'MX', 'Mexico'), +('195.112.186.100', '195.112.186.103', 2147483647, 2147483647, 'US', 'United States'), +('195.112.186.104', '195.112.186.107', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.186.108', '195.112.186.119', 2147483647, 2147483647, 'US', 'United States'), +('195.112.186.120', '195.112.186.123', 2147483647, 2147483647, 'CO', 'Colombia'), +('195.112.186.124', '195.112.186.135', 2147483647, 2147483647, 'US', 'United States'), +('195.112.186.136', '195.112.186.139', 2147483647, 2147483647, 'BR', 'Brazil'), +('195.112.186.140', '195.112.186.151', 2147483647, 2147483647, 'US', 'United States'), +('195.112.186.152', '195.112.186.155', 2147483647, 2147483647, 'CO', 'Colombia'), +('195.112.186.156', '195.112.186.167', 2147483647, 2147483647, 'US', 'United States'), +('195.112.186.168', '195.112.186.171', 2147483647, 2147483647, 'BR', 'Brazil'), +('195.112.186.172', '195.112.186.179', 2147483647, 2147483647, 'US', 'United States'), +('195.112.186.180', '195.112.186.183', 2147483647, 2147483647, 'CO', 'Colombia'), +('195.112.186.184', '195.112.186.195', 2147483647, 2147483647, 'US', 'United States'), +('195.112.186.196', '195.112.186.203', 2147483647, 2147483647, 'CA', 'Canada'), +('195.112.186.204', '195.112.186.207', 2147483647, 2147483647, 'US', 'United States'), +('195.112.186.208', '195.112.186.227', 2147483647, 2147483647, 'CA', 'Canada'), +('195.112.186.228', '195.112.186.231', 2147483647, 2147483647, 'CO', 'Colombia'), +('195.112.186.232', '195.112.186.239', 2147483647, 2147483647, 'US', 'United States'), +('195.112.186.240', '195.112.186.243', 2147483647, 2147483647, 'CO', 'Colombia'), +('195.112.186.244', '195.112.186.247', 2147483647, 2147483647, 'PE', 'Peru'), +('195.112.186.248', '195.112.186.255', 2147483647, 2147483647, 'US', 'United States'), +('195.112.187.0', '195.112.187.3', 2147483647, 2147483647, 'BR', 'Brazil'), +('195.112.187.4', '195.112.187.7', 2147483647, 2147483647, 'AN', 'Netherlands Antilles'), +('195.112.187.8', '195.112.187.63', 2147483647, 2147483647, 'US', 'United States'), +('195.112.187.64', '195.112.187.67', 2147483647, 2147483647, 'BR', 'Brazil'), +('195.112.187.68', '195.112.187.75', 2147483647, 2147483647, 'US', 'United States'), +('195.112.187.76', '195.112.187.83', 2147483647, 2147483647, 'BR', 'Brazil'), +('195.112.187.84', '195.112.187.87', 2147483647, 2147483647, 'DO', 'Dominican Republic'), +('195.112.187.88', '195.112.187.103', 2147483647, 2147483647, 'US', 'United States'), +('195.112.187.104', '195.112.187.107', 2147483647, 2147483647, 'AR', 'Argentina'), +('195.112.187.108', '195.112.187.111', 2147483647, 2147483647, 'BR', 'Brazil'), +('195.112.187.112', '195.112.187.127', 2147483647, 2147483647, 'US', 'United States'), +('195.112.187.128', '195.112.187.131', 2147483647, 2147483647, 'CA', 'Canada'), +('195.112.187.132', '195.112.187.135', 2147483647, 2147483647, 'BR', 'Brazil'), +('195.112.187.136', '195.112.187.147', 2147483647, 2147483647, 'US', 'United States'), +('195.112.187.148', '195.112.187.151', 2147483647, 2147483647, 'AR', 'Argentina'), +('195.112.187.152', '195.112.187.167', 2147483647, 2147483647, 'US', 'United States'), +('195.112.187.168', '195.112.187.175', 2147483647, 2147483647, 'CA', 'Canada'), +('195.112.187.176', '195.112.187.179', 2147483647, 2147483647, 'US', 'United States'), +('195.112.187.180', '195.112.187.183', 2147483647, 2147483647, 'AR', 'Argentina'), +('195.112.187.184', '195.112.187.203', 2147483647, 2147483647, 'US', 'United States'), +('195.112.187.204', '195.112.187.211', 2147483647, 2147483647, 'CA', 'Canada'), +('195.112.187.212', '195.112.187.223', 2147483647, 2147483647, 'US', 'United States'), +('195.112.187.224', '195.112.187.231', 2147483647, 2147483647, 'CA', 'Canada'), +('195.112.187.232', '195.112.187.243', 2147483647, 2147483647, 'US', 'United States'), +('195.112.187.244', '195.112.187.247', 2147483647, 2147483647, 'AR', 'Argentina'), +('195.112.187.248', '195.112.187.251', 2147483647, 2147483647, 'US', 'United States'), +('195.112.187.252', '195.112.187.255', 2147483647, 2147483647, 'CL', 'Chile'), +('195.112.188.0', '195.112.188.3', 2147483647, 2147483647, 'CA', 'Canada'), +('195.112.188.4', '195.112.188.19', 2147483647, 2147483647, 'US', 'United States'), +('195.112.188.20', '195.112.188.23', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.188.24', '195.112.188.27', 2147483647, 2147483647, 'CO', 'Colombia'), +('195.112.188.28', '195.112.188.31', 2147483647, 2147483647, 'CA', 'Canada'), +('195.112.188.32', '195.112.188.39', 2147483647, 2147483647, 'US', 'United States'), +('195.112.188.40', '195.112.188.43', 2147483647, 2147483647, 'MX', 'Mexico'), +('195.112.188.44', '195.112.188.47', 2147483647, 2147483647, 'AR', 'Argentina'), +('195.112.188.48', '195.112.188.51', 2147483647, 2147483647, 'CA', 'Canada'), +('195.112.188.52', '195.112.188.55', 2147483647, 2147483647, 'US', 'United States'), +('195.112.188.56', '195.112.188.59', 2147483647, 2147483647, 'CA', 'Canada'), +('195.112.188.60', '195.112.188.63', 2147483647, 2147483647, 'US', 'United States'), +('195.112.188.64', '195.112.188.67', 2147483647, 2147483647, 'BR', 'Brazil'), +('195.112.188.68', '195.112.188.83', 2147483647, 2147483647, 'US', 'United States'), +('195.112.188.84', '195.112.188.87', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('195.112.188.88', '195.112.188.115', 2147483647, 2147483647, 'US', 'United States'), +('195.112.188.116', '195.112.188.119', 2147483647, 2147483647, 'AR', 'Argentina'), +('195.112.188.120', '195.112.188.123', 2147483647, 2147483647, 'MX', 'Mexico'), +('195.112.188.124', '195.112.188.147', 2147483647, 2147483647, 'US', 'United States'), +('195.112.188.148', '195.112.188.151', 2147483647, 2147483647, 'CA', 'Canada'), +('195.112.188.152', '195.112.188.155', 2147483647, 2147483647, 'AR', 'Argentina'), +('195.112.188.156', '195.112.188.159', 2147483647, 2147483647, 'MX', 'Mexico'), +('195.112.188.160', '195.112.188.171', 2147483647, 2147483647, 'US', 'United States'), +('195.112.188.172', '195.112.188.175', 2147483647, 2147483647, 'BR', 'Brazil'), +('195.112.188.176', '195.112.188.179', 2147483647, 2147483647, 'US', 'United States'), +('195.112.188.180', '195.112.188.183', 2147483647, 2147483647, 'MX', 'Mexico'), +('195.112.188.184', '195.112.188.199', 2147483647, 2147483647, 'US', 'United States'), +('195.112.188.200', '195.112.188.203', 2147483647, 2147483647, 'CL', 'Chile'), +('195.112.188.204', '195.112.188.211', 2147483647, 2147483647, 'BR', 'Brazil'), +('195.112.188.212', '195.112.188.223', 2147483647, 2147483647, 'US', 'United States'), +('195.112.188.224', '195.112.188.227', 2147483647, 2147483647, 'MX', 'Mexico'), +('195.112.188.228', '195.112.188.235', 2147483647, 2147483647, 'AR', 'Argentina'), +('195.112.188.236', '195.112.188.239', 2147483647, 2147483647, 'BR', 'Brazil'), +('195.112.188.240', '195.112.188.243', 2147483647, 2147483647, 'US', 'United States'), +('195.112.188.244', '195.112.188.247', 2147483647, 2147483647, 'CA', 'Canada'), +('195.112.188.248', '195.112.188.251', 2147483647, 2147483647, 'US', 'United States'), +('195.112.188.252', '195.112.188.255', 2147483647, 2147483647, 'AN', 'Netherlands Antilles'), +('195.112.189.0', '195.112.189.3', 2147483647, 2147483647, 'AR', 'Argentina'), +('195.112.189.4', '195.112.189.43', 2147483647, 2147483647, 'US', 'United States'), +('195.112.189.44', '195.112.189.47', 2147483647, 2147483647, 'AR', 'Argentina'), +('195.112.189.48', '195.112.189.51', 2147483647, 2147483647, 'US', 'United States'), +('195.112.189.52', '195.112.189.55', 2147483647, 2147483647, 'DO', 'Dominican Republic'), +('195.112.189.56', '195.112.189.123', 2147483647, 2147483647, 'US', 'United States'), +('195.112.189.124', '195.112.189.127', 2147483647, 2147483647, 'AR', 'Argentina'), +('195.112.189.128', '195.112.189.131', 2147483647, 2147483647, 'US', 'United States'), +('195.112.189.132', '195.112.189.135', 2147483647, 2147483647, 'UY', 'Uruguay'), +('195.112.189.136', '195.112.189.139', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.189.140', '195.112.189.151', 2147483647, 2147483647, 'US', 'United States'), +('195.112.189.152', '195.112.189.155', 2147483647, 2147483647, 'BR', 'Brazil'), +('195.112.189.156', '195.112.189.163', 2147483647, 2147483647, 'US', 'United States'), +('195.112.189.164', '195.112.189.167', 2147483647, 2147483647, 'AR', 'Argentina'), +('195.112.189.168', '195.112.189.179', 2147483647, 2147483647, 'US', 'United States'), +('195.112.189.180', '195.112.189.183', 2147483647, 2147483647, 'CO', 'Colombia'), +('195.112.189.184', '195.112.189.187', 2147483647, 2147483647, 'US', 'United States'), +('195.112.189.188', '195.112.189.191', 2147483647, 2147483647, 'AR', 'Argentina'), +('195.112.189.192', '195.112.189.207', 2147483647, 2147483647, 'US', 'United States'), +('195.112.189.208', '195.112.189.211', 2147483647, 2147483647, 'MX', 'Mexico'), +('195.112.189.212', '195.112.189.227', 2147483647, 2147483647, 'US', 'United States'), +('195.112.189.228', '195.112.189.231', 2147483647, 2147483647, 'MX', 'Mexico'), +('195.112.189.232', '195.112.189.235', 2147483647, 2147483647, 'CO', 'Colombia'), +('195.112.189.236', '195.112.189.243', 2147483647, 2147483647, 'US', 'United States'), +('195.112.189.244', '195.112.189.247', 2147483647, 2147483647, 'PE', 'Peru'), +('195.112.189.248', '195.112.189.255', 2147483647, 2147483647, 'US', 'United States'), +('195.112.190.0', '195.112.190.2', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.190.3', '195.112.190.3', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.190.4', '195.112.190.4', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.190.5', '195.112.190.5', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.112.190.6', '195.112.190.6', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.190.7', '195.112.190.7', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('195.112.190.8', '195.112.190.8', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.112.190.9', '195.112.190.9', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.190.10', '195.112.190.10', 2147483647, 2147483647, 'PT', 'Portugal'), +('195.112.190.11', '195.112.190.11', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.190.12', '195.112.190.12', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.190.13', '195.112.190.13', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.112.190.14', '195.112.190.14', 2147483647, 2147483647, 'FR', 'France'), +('195.112.190.15', '195.112.190.15', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.190.16', '195.112.190.16', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.112.190.17', '195.112.190.17', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.190.18', '195.112.190.18', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.190.19', '195.112.190.23', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.190.24', '195.112.190.24', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.190.25', '195.112.190.29', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.190.30', '195.112.190.30', 2147483647, 2147483647, 'GR', 'Greece'), +('195.112.190.31', '195.112.190.31', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.190.32', '195.112.190.34', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.190.35', '195.112.190.35', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.112.190.36', '195.112.190.36', 2147483647, 2147483647, 'FR', 'France'), +('195.112.190.37', '195.112.190.37', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.190.38', '195.112.190.39', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.190.40', '195.112.190.40', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.190.41', '195.112.190.41', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.190.42', '195.112.190.42', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.190.43', '195.112.190.43', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.190.44', '195.112.190.46', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.190.47', '195.112.190.47', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('195.112.190.48', '195.112.190.48', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.190.49', '195.112.190.49', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.190.50', '195.112.190.52', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.190.53', '195.112.190.53', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.190.54', '195.112.190.54', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.190.55', '195.112.190.55', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.190.56', '195.112.190.56', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.190.57', '195.112.190.57', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.190.58', '195.112.190.58', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.190.59', '195.112.190.60', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.190.61', '195.112.190.61', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.190.62', '195.112.190.62', 2147483647, 2147483647, 'FR', 'France'), +('195.112.190.63', '195.112.190.63', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.190.64', '195.112.190.64', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.112.190.65', '195.112.190.66', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.190.67', '195.112.190.67', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.190.68', '195.112.190.68', 2147483647, 2147483647, 'FR', 'France'), +('195.112.190.69', '195.112.190.69', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.190.70', '195.112.190.70', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.112.190.71', '195.112.190.71', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.190.72', '195.112.190.72', 2147483647, 2147483647, 'IE', 'Ireland'), +('195.112.190.73', '195.112.190.74', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.190.75', '195.112.190.75', 2147483647, 2147483647, 'FR', 'France'), +('195.112.190.76', '195.112.190.76', 2147483647, 2147483647, 'NO', 'Norway'), +('195.112.190.77', '195.112.190.78', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.190.79', '195.112.190.79', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.190.80', '195.112.190.80', 2147483647, 2147483647, 'FR', 'France'), +('195.112.190.81', '195.112.190.81', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.190.82', '195.112.190.82', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.190.83', '195.112.190.83', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.190.84', '195.112.190.84', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.190.85', '195.112.190.85', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.112.190.86', '195.112.190.87', 2147483647, 2147483647, 'FR', 'France'), +('195.112.190.88', '195.112.190.88', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.190.89', '195.112.190.89', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.112.190.90', '195.112.190.94', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.190.95', '195.112.190.96', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.190.97', '195.112.190.98', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.190.99', '195.112.190.99', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.112.190.100', '195.112.190.100', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.112.190.101', '195.112.190.101', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.190.102', '195.112.190.102', 2147483647, 2147483647, 'AT', 'Austria'), +('195.112.190.103', '195.112.190.103', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.190.104', '195.112.190.104', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.190.105', '195.112.190.105', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.190.106', '195.112.190.106', 2147483647, 2147483647, 'ES', 'Spain'), +('195.112.190.107', '195.112.190.107', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.190.108', '195.112.190.108', 2147483647, 2147483647, 'FR', 'France'), +('195.112.190.109', '195.112.190.112', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.190.113', '195.112.190.113', 2147483647, 2147483647, 'PT', 'Portugal'), +('195.112.190.114', '195.112.190.114', 2147483647, 2147483647, 'FR', 'France'), +('195.112.190.115', '195.112.190.115', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.190.116', '195.112.190.116', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.190.117', '195.112.190.117', 2147483647, 2147483647, 'FR', 'France'), +('195.112.190.118', '195.112.190.118', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.190.119', '195.112.190.119', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.112.190.120', '195.112.190.125', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.190.126', '195.112.190.126', 2147483647, 2147483647, 'IT', 'Italy'), +('195.112.190.127', '195.112.191.1', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.191.2', '195.112.191.6', 2147483647, 2147483647, 'US', 'United States'), +('195.112.191.7', '195.112.191.7', 2147483647, 2147483647, 'CA', 'Canada'), +('195.112.191.8', '195.112.191.11', 2147483647, 2147483647, 'US', 'United States'), +('195.112.191.12', '195.112.191.12', 2147483647, 2147483647, 'CN', 'China'), +('195.112.191.13', '195.112.191.13', 2147483647, 2147483647, 'US', 'United States'), +('195.112.191.14', '195.112.191.14', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.191.15', '195.112.191.19', 2147483647, 2147483647, 'US', 'United States'), +('195.112.191.20', '195.112.191.20', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.191.21', '195.112.191.36', 2147483647, 2147483647, 'US', 'United States'), +('195.112.191.37', '195.112.191.37', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.191.38', '195.112.191.43', 2147483647, 2147483647, 'US', 'United States'), +('195.112.191.44', '195.112.191.44', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.191.45', '195.112.191.60', 2147483647, 2147483647, 'US', 'United States'), +('195.112.191.61', '195.112.191.61', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.112.191.62', '195.112.191.118', 2147483647, 2147483647, 'US', 'United States'), +('195.112.191.119', '195.112.191.119', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.191.120', '195.112.191.142', 2147483647, 2147483647, 'US', 'United States'), +('195.112.191.143', '195.112.191.143', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('195.112.191.144', '195.112.191.160', 2147483647, 2147483647, 'US', 'United States'), +('195.112.191.161', '195.112.191.165', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.191.166', '195.112.191.166', 2147483647, 2147483647, 'US', 'United States'), +('195.112.191.167', '195.112.191.173', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.191.174', '195.112.191.174', 2147483647, 2147483647, 'US', 'United States'), +('195.112.191.175', '195.112.191.176', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.191.177', '195.112.191.177', 2147483647, 2147483647, 'US', 'United States'), +('195.112.191.178', '195.112.191.181', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.191.182', '195.112.191.183', 2147483647, 2147483647, 'US', 'United States'), +('195.112.191.184', '195.112.191.191', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.191.192', '195.112.191.215', 2147483647, 2147483647, 'US', 'United States'), +('195.112.191.216', '195.112.191.219', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.191.220', '195.112.191.223', 2147483647, 2147483647, 'US', 'United States'), +('195.112.191.224', '195.112.191.227', 2147483647, 2147483647, 'SV', 'El Salvador'), +('195.112.191.228', '195.112.191.231', 2147483647, 2147483647, 'DO', 'Dominican Republic'), +('195.112.191.232', '195.112.191.235', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.191.236', '195.112.191.239', 2147483647, 2147483647, 'US', 'United States'), +('195.112.191.240', '195.112.191.243', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.191.244', '195.112.191.247', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('195.112.191.248', '195.112.191.251', 2147483647, 2147483647, 'US', 'United States'), +('195.112.191.252', '195.112.191.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.112.192.0', '195.112.223.255', 2147483647, 2147483647, 'LB', 'Lebanon'), +('195.112.224.0', '195.112.255.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.113.0.0', '195.113.255.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('195.114.0.0', '195.114.1.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.114.2.0', '195.114.3.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.114.4.0', '195.114.7.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.114.8.0', '195.114.9.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.114.10.0', '195.114.11.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.114.12.0', '195.114.13.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.114.14.0', '195.114.15.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.114.16.0', '195.114.17.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('195.114.18.0', '195.114.19.255', 2147483647, 2147483647, 'FR', 'France'), +('195.114.20.0', '195.114.21.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.114.22.0', '195.114.23.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.114.24.0', '195.114.27.255', 2147483647, 2147483647, 'FR', 'France'), +('195.114.28.0', '195.114.29.255', 2147483647, 2147483647, 'PS', 'Palestinian Territory, Occupied'), +('195.114.30.0', '195.114.31.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.114.32.0', '195.114.63.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('195.114.64.0', '195.114.86.215', 2147483647, 2147483647, 'FR', 'France'), +('195.114.86.216', '195.114.86.223', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('195.114.86.224', '195.114.95.255', 2147483647, 2147483647, 'FR', 'France'), +('195.114.96.0', '195.114.97.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.114.98.0', '195.114.99.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.114.100.0', '195.114.101.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.114.102.0', '195.114.103.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.114.104.0', '195.114.105.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.114.106.0', '195.114.107.255', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('195.114.108.0', '195.114.109.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('195.114.110.0', '195.114.111.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.114.112.0', '195.114.113.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('195.114.114.0', '195.114.115.255', 2147483647, 2147483647, 'FR', 'France'), +('195.114.116.0', '195.114.117.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.114.118.0', '195.114.119.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.114.120.0', '195.114.121.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.114.122.0', '195.114.123.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.114.126.0', '195.114.127.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.114.128.0', '195.114.159.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.114.160.0', '195.114.191.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.114.192.0', '195.114.195.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.114.196.0', '195.114.196.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.114.197.0', '195.114.197.255', 2147483647, 2147483647, 'FR', 'France'), +('195.114.198.0', '195.114.206.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.114.207.0', '195.114.207.15', 2147483647, 2147483647, 'DE', 'Germany'), +('195.114.207.16', '195.114.216.63', 2147483647, 2147483647, 'ES', 'Spain'), +('195.114.216.64', '195.114.216.79', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.114.216.80', '195.114.217.31', 2147483647, 2147483647, 'ES', 'Spain'), +('195.114.217.32', '195.114.217.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.114.217.64', '195.114.219.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.114.220.0', '195.114.223.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.114.224.0', '195.114.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.115.0.0', '195.115.36.127', 2147483647, 2147483647, 'FR', 'France'), +('195.115.36.128', '195.115.36.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.115.36.160', '195.115.99.191', 2147483647, 2147483647, 'FR', 'France'), +('195.115.99.192', '195.115.99.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.115.99.224', '195.115.255.255', 2147483647, 2147483647, 'FR', 'France'), +('195.116.0.0', '195.116.38.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.116.39.0', '195.116.39.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.116.40.0', '195.117.255.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.118.0.0', '195.118.3.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.118.4.0', '195.118.4.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.118.5.0', '195.118.15.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.118.16.0', '195.118.16.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.118.17.0', '195.118.17.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('195.118.18.0', '195.118.18.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.118.19.0', '195.118.19.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.118.20.0', '195.118.20.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('195.118.21.0', '195.118.21.255', 2147483647, 2147483647, 'IL', 'Israel'), +('195.118.22.0', '195.118.23.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('195.118.24.0', '195.118.26.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.118.27.0', '195.118.27.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('195.118.28.0', '195.118.29.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.118.30.0', '195.118.31.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('195.118.32.0', '195.118.58.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.118.59.0', '195.118.59.15', 2147483647, 2147483647, 'EU', 'Europe'), +('195.118.59.16', '195.118.59.31', 2147483647, 2147483647, 'DE', 'Germany'), +('195.118.59.32', '195.118.59.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.118.59.64', '195.118.59.159', 2147483647, 2147483647, 'DE', 'Germany'), +('195.118.59.160', '195.118.59.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.118.59.192', '195.118.59.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.118.60.0', '195.118.63.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.118.64.0', '195.118.79.255', 2147483647, 2147483647, 'FR', 'France'), +('195.118.80.0', '195.118.83.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.118.84.0', '195.118.87.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.118.88.0', '195.118.90.7', 2147483647, 2147483647, 'DE', 'Germany'), +('195.118.90.8', '195.118.90.15', 2147483647, 2147483647, 'EU', 'Europe'), +('195.118.90.16', '195.118.91.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.118.92.0', '195.118.95.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.118.96.0', '195.118.98.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.118.99.0', '195.118.99.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.118.100.0', '195.118.100.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.118.101.0', '195.118.101.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.118.102.0', '195.118.106.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.118.107.0', '195.118.107.127', 2147483647, 2147483647, 'DE', 'Germany'), +('195.118.107.128', '195.118.107.191', 2147483647, 2147483647, 'IT', 'Italy'), +('195.118.107.192', '195.118.107.207', 2147483647, 2147483647, 'DE', 'Germany'), +('195.118.107.208', '195.118.107.223', 2147483647, 2147483647, 'IT', 'Italy'), +('195.118.107.224', '195.118.107.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.118.108.0', '195.118.108.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.118.109.0', '195.118.109.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.118.110.0', '195.118.110.31', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('195.118.110.32', '195.118.110.127', 2147483647, 2147483647, 'FR', 'France'), +('195.118.110.128', '195.118.110.159', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('195.118.110.160', '195.118.110.191', 2147483647, 2147483647, 'FR', 'France'), +('195.118.110.192', '195.118.110.223', 2147483647, 2147483647, 'ZA', 'South Africa'), +('195.118.110.224', '195.118.110.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.118.111.0', '195.118.111.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.118.112.0', '195.118.115.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.118.116.0', '195.118.119.255', 2147483647, 2147483647, 'FR', 'France'), +('195.118.120.0', '195.118.125.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.118.126.0', '195.118.126.39', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.118.126.40', '195.118.126.47', 2147483647, 2147483647, 'AT', 'Austria'), +('195.118.126.48', '195.118.126.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.118.126.64', '195.118.126.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.118.127.0', '195.118.127.95', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.118.127.96', '195.118.127.191', 2147483647, 2147483647, 'DE', 'Germany'), +('195.118.127.192', '195.118.155.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.118.155.32', '195.118.155.63', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.118.155.64', '195.118.157.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.118.158.0', '195.118.158.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.118.159.0', '195.118.175.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.118.175.128', '195.118.175.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.118.176.0', '195.118.191.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.118.192.0', '195.118.193.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.118.194.0', '195.118.195.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.118.196.0', '195.118.196.127', 2147483647, 2147483647, 'FR', 'France'), +('195.118.196.128', '195.118.196.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.118.197.0', '195.118.197.255', 2147483647, 2147483647, 'FR', 'France'), +('195.118.198.0', '195.118.199.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.118.200.0', '195.118.200.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.118.201.0', '195.118.201.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('195.118.202.0', '195.118.202.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.118.203.0', '195.118.203.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('195.118.204.0', '195.118.204.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.118.205.0', '195.118.205.255', 2147483647, 2147483647, 'HR', 'Croatia'), +('195.118.206.0', '195.118.206.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('195.118.207.0', '195.118.207.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('195.118.208.0', '195.118.213.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.118.214.0', '195.118.215.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.118.216.0', '195.118.220.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.118.221.0', '195.118.223.255', 2147483647, 2147483647, 'FR', 'France'), +('195.118.224.0', '195.118.225.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.118.226.0', '195.118.227.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.118.228.0', '195.118.228.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.118.229.0', '195.118.229.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.118.230.0', '195.118.230.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.118.231.0', '195.118.231.255', 2147483647, 2147483647, 'FR', 'France'), +('195.118.232.0', '195.118.236.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.118.237.0', '195.118.237.255', 2147483647, 2147483647, 'FR', 'France'), +('195.118.238.0', '195.118.239.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.118.240.0', '195.118.241.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.118.242.0', '195.118.242.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.118.243.0', '195.118.243.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.118.244.0', '195.118.244.23', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.118.244.24', '195.118.244.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.118.245.0', '195.118.245.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.118.246.0', '195.118.251.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.118.252.0', '195.118.254.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.118.255.0', '195.118.255.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.119.0.0', '195.119.0.135', 2147483647, 2147483647, 'EU', 'Europe'), +('195.119.0.136', '195.119.0.143', 2147483647, 2147483647, 'NO', 'Norway'), +('195.119.0.144', '195.119.0.159', 2147483647, 2147483647, 'EU', 'Europe'), +('195.119.0.160', '195.119.0.223', 2147483647, 2147483647, 'NO', 'Norway'), +('195.119.0.224', '195.119.0.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.119.1.0', '195.119.1.255', 2147483647, 2147483647, 'NO', 'Norway'), +('195.119.2.0', '195.119.3.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.119.4.0', '195.119.5.255', 2147483647, 2147483647, 'NO', 'Norway'), +('195.119.6.0', '195.119.63.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.119.64.0', '195.119.65.255', 2147483647, 2147483647, 'FI', 'Finland'), +('195.119.66.0', '195.119.66.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.119.67.0', '195.119.75.255', 2147483647, 2147483647, 'FI', 'Finland'), +('195.119.76.0', '195.119.95.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.119.96.0', '195.119.97.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.119.98.0', '195.119.104.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.119.105.0', '195.119.108.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.119.109.0', '195.119.109.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.119.110.0', '195.119.114.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.119.115.0', '195.119.118.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.119.119.0', '195.119.119.127', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.119.119.128', '195.119.121.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.119.122.0', '195.119.122.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.119.123.0', '195.119.127.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.119.128.0', '195.119.128.255', 2147483647, 2147483647, 'GR', 'Greece'), +('195.119.129.0', '195.119.129.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.119.130.0', '195.119.130.59', 2147483647, 2147483647, 'GR', 'Greece'), +('195.119.130.60', '195.119.130.63', 2147483647, 2147483647, 'EU', 'Europe'), +('195.119.130.64', '195.119.130.71', 2147483647, 2147483647, 'GR', 'Greece'), +('195.119.130.72', '195.119.130.75', 2147483647, 2147483647, 'EU', 'Europe'), +('195.119.130.76', '195.119.130.91', 2147483647, 2147483647, 'GR', 'Greece'), +('195.119.130.92', '195.119.130.95', 2147483647, 2147483647, 'EU', 'Europe'), +('195.119.130.96', '195.119.130.175', 2147483647, 2147483647, 'GR', 'Greece'), +('195.119.130.176', '195.119.130.179', 2147483647, 2147483647, 'EU', 'Europe'), +('195.119.130.180', '195.119.130.195', 2147483647, 2147483647, 'GR', 'Greece'), +('195.119.130.196', '195.119.130.199', 2147483647, 2147483647, 'EU', 'Europe'), +('195.119.130.200', '195.119.130.255', 2147483647, 2147483647, 'GR', 'Greece'), +('195.119.131.0', '195.119.132.15', 2147483647, 2147483647, 'EU', 'Europe'), +('195.119.132.16', '195.119.132.31', 2147483647, 2147483647, 'GR', 'Greece'), +('195.119.132.32', '195.119.133.63', 2147483647, 2147483647, 'EU', 'Europe'), +('195.119.133.64', '195.119.133.191', 2147483647, 2147483647, 'GR', 'Greece'), +('195.119.133.192', '195.119.147.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.119.148.0', '195.119.148.255', 2147483647, 2147483647, 'GR', 'Greece'), +('195.119.149.0', '195.119.149.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.119.150.0', '195.119.150.255', 2147483647, 2147483647, 'GR', 'Greece'), +('195.119.151.0', '195.119.182.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.119.183.0', '195.119.183.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('195.119.184.0', '195.119.184.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.119.185.0', '195.119.187.127', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('195.119.187.128', '195.119.188.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.119.189.0', '195.119.189.127', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('195.119.189.128', '195.119.190.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.119.191.0', '195.119.191.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('195.119.192.0', '195.119.255.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.120.0.0', '195.120.255.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.121.0.0', '195.121.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.122.0.0', '195.122.31.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('195.122.32.0', '195.122.63.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.122.64.0', '195.122.95.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.122.96.0', '195.122.127.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.122.128.0', '195.122.130.199', 2147483647, 2147483647, 'DE', 'Germany'), +('195.122.130.200', '195.122.130.207', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.122.130.208', '195.122.131.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.122.132.0', '195.122.132.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.122.133.0', '195.122.138.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.122.139.0', '195.122.140.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.122.141.0', '195.122.141.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.122.142.0', '195.122.143.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.122.144.0', '195.122.147.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.122.148.0', '195.122.148.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.122.149.0', '195.122.150.23', 2147483647, 2147483647, 'DE', 'Germany'), +('195.122.150.24', '195.122.150.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.122.151.0', '195.122.153.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.122.154.0', '195.122.157.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.122.158.0', '195.122.158.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.122.159.0', '195.122.159.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.122.159.32', '195.122.159.51', 2147483647, 2147483647, 'DE', 'Germany'), +('195.122.159.52', '195.122.159.55', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.122.159.56', '195.122.159.59', 2147483647, 2147483647, 'DE', 'Germany'), +('195.122.159.60', '195.122.159.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.122.159.192', '195.122.159.224', 2147483647, 2147483647, 'DE', 'Germany'), +('195.122.159.225', '195.122.159.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.122.160.0', '195.122.160.15', 2147483647, 2147483647, 'DE', 'Germany'), +('195.122.160.16', '195.122.160.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.122.160.64', '195.122.160.95', 2147483647, 2147483647, 'DE', 'Germany'), +('195.122.160.96', '195.122.169.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.122.169.128', '195.122.169.223', 2147483647, 2147483647, 'DE', 'Germany'), +('195.122.169.224', '195.122.169.247', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.122.169.248', '195.122.169.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.122.170.0', '195.122.171.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.122.172.0', '195.122.174.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.122.175.0', '195.122.186.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.122.187.0', '195.122.187.95', 2147483647, 2147483647, 'DE', 'Germany'), +('195.122.187.96', '195.122.187.103', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.122.187.104', '195.122.187.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.122.188.0', '195.122.191.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.122.192.0', '195.122.223.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('195.122.224.0', '195.122.255.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.123.0.0', '195.123.255.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.124.0.0', '195.125.14.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.125.15.0', '195.125.15.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.125.16.0', '195.127.67.239', 2147483647, 2147483647, 'DE', 'Germany'), +('195.127.67.240', '195.127.67.247', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.127.67.248', '195.128.3.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.128.4.0', '195.128.7.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.128.8.0', '195.128.11.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.128.12.0', '195.128.15.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.128.16.0', '195.128.19.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.128.20.0', '195.128.23.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.128.24.0', '195.128.27.255', 2147483647, 2147483647, 'CY', 'Cyprus'), +('195.128.28.0', '195.128.31.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.128.32.0', '195.128.39.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('195.128.40.0', '195.128.47.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.128.48.0', '195.128.103.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.128.104.0', '195.128.111.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.128.112.0', '195.128.119.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.128.120.0', '195.128.159.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.128.160.0', '195.128.161.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.128.162.0', '195.128.163.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.128.164.0', '195.128.165.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.128.166.0', '195.128.167.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.128.168.0', '195.128.169.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.128.170.0', '195.128.171.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.128.172.0', '195.128.173.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.128.174.0', '195.128.175.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.128.176.0', '195.128.177.255', 2147483647, 2147483647, 'IL', 'Israel'), +('195.128.178.0', '195.128.179.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.128.180.0', '195.128.181.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.128.182.0', '195.128.183.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.128.184.0', '195.128.187.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.128.188.0', '195.128.189.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.128.190.0', '195.128.191.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.128.192.0', '195.128.223.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('195.128.224.0', '195.128.225.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('195.128.226.0', '195.128.227.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.128.228.0', '195.128.229.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.128.230.0', '195.128.231.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.128.232.0', '195.128.233.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('195.128.234.0', '195.128.235.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.128.236.0', '195.128.237.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.128.238.0', '195.128.239.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.128.240.0', '195.128.241.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.128.242.0', '195.128.243.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.128.244.0', '195.128.247.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.128.248.0', '195.128.249.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.128.250.0', '195.128.251.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.128.252.0', '195.128.253.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.128.254.0', '195.128.255.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('195.129.0.0', '195.129.0.63', 2147483647, 2147483647, 'DE', 'Germany'), +('195.129.0.64', '195.129.0.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.129.0.128', '195.129.0.143', 2147483647, 2147483647, 'EU', 'Europe'), +('195.129.0.144', '195.129.0.151', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.129.0.152', '195.129.1.31', 2147483647, 2147483647, 'EU', 'Europe'), +('195.129.1.32', '195.129.1.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.129.1.48', '195.129.1.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.129.1.128', '195.129.1.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.129.2.0', '195.129.2.7', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.129.2.8', '195.129.2.15', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.129.2.16', '195.129.2.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.129.2.128', '195.129.2.175', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.129.2.176', '195.129.12.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.129.13.0', '195.129.14.255', 2147483647, 2147483647, 'FR', 'France'), +('195.129.15.0', '195.129.15.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.129.16.0', '195.129.17.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.129.18.0', '195.129.19.255', 2147483647, 2147483647, 'GB', 'United Kingdom'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('195.129.20.0', '195.129.20.63', 2147483647, 2147483647, 'EU', 'Europe'), +('195.129.20.64', '195.129.20.79', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.129.20.80', '195.129.20.159', 2147483647, 2147483647, 'EU', 'Europe'), +('195.129.20.160', '195.129.20.175', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.129.20.176', '195.129.20.191', 2147483647, 2147483647, 'GR', 'Greece'), +('195.129.20.192', '195.129.20.223', 2147483647, 2147483647, 'NO', 'Norway'), +('195.129.20.224', '195.129.20.239', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.129.20.240', '195.129.22.63', 2147483647, 2147483647, 'EU', 'Europe'), +('195.129.22.64', '195.129.22.95', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.129.22.96', '195.129.22.127', 2147483647, 2147483647, 'FR', 'France'), +('195.129.22.128', '195.129.22.159', 2147483647, 2147483647, 'IT', 'Italy'), +('195.129.22.160', '195.129.22.191', 2147483647, 2147483647, 'EU', 'Europe'), +('195.129.22.192', '195.129.22.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('195.129.23.0', '195.129.25.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.129.26.0', '195.129.27.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.129.28.0', '195.129.31.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.129.32.0', '195.129.32.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.129.33.0', '195.129.35.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.129.36.0', '195.129.36.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('195.129.37.0', '195.129.37.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.129.38.0', '195.129.38.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.129.38.96', '195.129.38.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.129.38.128', '195.129.38.191', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.129.38.192', '195.129.38.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.129.39.0', '195.129.39.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.129.40.0', '195.129.40.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.129.41.0', '195.129.41.63', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.129.41.64', '195.129.44.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.129.45.0', '195.129.45.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.129.46.0', '195.129.47.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.129.48.0', '195.129.51.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.129.52.0', '195.129.52.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.129.53.0', '195.129.61.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.129.62.0', '195.129.62.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('195.129.63.0', '195.129.63.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.129.64.0', '195.129.64.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.129.65.0', '195.129.65.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.129.66.0', '195.129.66.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.129.67.0', '195.129.67.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.129.68.0', '195.129.73.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.129.74.0', '195.129.74.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.129.75.0', '195.129.79.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.129.80.0', '195.129.80.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('195.129.81.0', '195.129.81.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.129.81.128', '195.129.81.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.129.82.0', '195.129.93.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.129.94.0', '195.129.94.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.129.95.0', '195.129.98.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.129.99.0', '195.129.99.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.129.100.0', '195.129.103.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.129.104.0', '195.129.105.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.129.106.0', '195.129.117.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.129.118.0', '195.129.118.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.129.119.0', '195.129.255.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.130.0.0', '195.130.31.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.130.32.0', '195.130.63.255', 2147483647, 2147483647, 'BA', 'Bosnia and Herzegovina'), +('195.130.64.0', '195.130.127.255', 2147483647, 2147483647, 'GR', 'Greece'), +('195.130.128.0', '195.130.159.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.130.160.0', '195.130.191.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.130.192.0', '195.130.192.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.130.193.0', '195.130.193.255', 2147483647, 2147483647, 'IS', 'Iceland'), +('195.130.194.0', '195.130.194.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('195.130.195.0', '195.130.195.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.130.196.0', '195.130.196.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.130.197.0', '195.130.197.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.130.198.0', '195.130.198.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.130.199.0', '195.130.199.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.130.200.0', '195.130.200.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.130.201.0', '195.130.201.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.130.202.0', '195.130.203.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('195.130.204.0', '195.130.204.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.130.205.0', '195.130.205.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('195.130.206.0', '195.130.206.255', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('195.130.207.0', '195.130.207.255', 2147483647, 2147483647, 'FR', 'France'), +('195.130.208.0', '195.130.209.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.130.210.0', '195.130.210.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.130.211.0', '195.130.211.255', 2147483647, 2147483647, 'IS', 'Iceland'), +('195.130.212.0', '195.130.212.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.130.213.0', '195.130.213.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.130.214.0', '195.130.214.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.130.215.0', '195.130.215.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.130.216.0', '195.130.216.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.130.217.0', '195.130.217.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.130.218.0', '195.130.218.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.130.219.0', '195.130.219.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.130.220.0', '195.130.220.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.130.221.0', '195.130.221.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.130.222.0', '195.130.222.255', 2147483647, 2147483647, 'FR', 'France'), +('195.130.223.0', '195.130.223.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.130.224.0', '195.130.255.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.131.0.0', '195.131.9.175', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.131.9.176', '195.131.9.183', 2147483647, 2147483647, 'RO', 'Romania'), +('195.131.9.184', '195.131.255.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.132.0.0', '195.132.255.255', 2147483647, 2147483647, 'FR', 'France'), +('195.133.0.0', '195.133.255.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.134.0.0', '195.134.31.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.134.32.0', '195.134.63.255', 2147483647, 2147483647, 'NO', 'Norway'), +('195.134.64.0', '195.134.127.255', 2147483647, 2147483647, 'GR', 'Greece'), +('195.134.128.0', '195.134.159.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.134.160.0', '195.134.207.191', 2147483647, 2147483647, 'FR', 'France'), +('195.134.207.192', '195.134.207.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.134.208.0', '195.134.223.255', 2147483647, 2147483647, 'FR', 'France'), +('195.134.224.0', '195.134.255.255', 2147483647, 2147483647, 'FI', 'Finland'), +('195.135.0.0', '195.135.127.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.135.128.0', '195.135.191.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.135.192.0', '195.135.195.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.135.196.0', '195.135.199.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.135.200.0', '195.135.203.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.135.204.0', '195.135.207.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.135.208.0', '195.135.211.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.135.212.0', '195.135.215.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.135.216.0', '195.135.219.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.135.220.0', '195.135.227.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.135.228.0', '195.135.231.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.135.232.0', '195.135.243.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.135.244.0', '195.135.247.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.135.248.0', '195.135.251.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.135.252.0', '195.135.255.255', 2147483647, 2147483647, 'CY', 'Cyprus'), +('195.136.0.0', '195.136.255.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.137.0.0', '195.137.127.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.137.128.0', '195.137.159.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.137.160.0', '195.137.160.255', 2147483647, 2147483647, 'BY', 'Belarus'), +('195.137.161.0', '195.137.162.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.137.163.0', '195.137.163.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.137.164.0', '195.137.164.255', 2147483647, 2147483647, 'IL', 'Israel'), +('195.137.165.0', '195.137.165.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.137.166.0', '195.137.166.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.137.167.0', '195.137.167.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.137.168.0', '195.137.168.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.137.169.0', '195.137.169.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.137.170.0', '195.137.170.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.137.171.0', '195.137.171.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.137.172.0', '195.137.172.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.137.173.0', '195.137.173.255', 2147483647, 2147483647, 'HR', 'Croatia'), +('195.137.174.0', '195.137.174.255', 2147483647, 2147483647, 'KW', 'Kuwait'), +('195.137.175.0', '195.137.175.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.137.176.0', '195.137.176.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.137.177.0', '195.137.177.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.137.178.0', '195.137.178.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.137.179.0', '195.137.179.255', 2147483647, 2147483647, 'EE', 'Estonia'), +('195.137.180.0', '195.137.180.255', 2147483647, 2147483647, 'BY', 'Belarus'), +('195.137.181.0', '195.137.181.255', 2147483647, 2147483647, 'FR', 'France'), +('195.137.182.0', '195.137.182.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('195.137.183.0', '195.137.183.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.137.184.0', '195.137.184.255', 2147483647, 2147483647, 'FR', 'France'), +('195.137.185.0', '195.137.185.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.137.186.0', '195.137.186.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.137.187.0', '195.137.187.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.137.188.0', '195.137.188.255', 2147483647, 2147483647, 'PS', 'Palestinian Territory, Occupied'), +('195.137.189.0', '195.137.189.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.137.190.0', '195.137.190.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.137.191.0', '195.137.191.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.137.192.0', '195.137.193.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.137.194.0', '195.137.195.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.137.196.0', '195.137.197.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.137.198.0', '195.137.199.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.137.200.0', '195.137.201.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.137.202.0', '195.137.203.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.137.204.0', '195.137.205.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.137.206.0', '195.137.207.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.137.208.0', '195.137.209.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.137.210.0', '195.137.213.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.137.214.0', '195.137.215.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.137.216.0', '195.137.217.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.137.218.0', '195.137.221.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.137.222.0', '195.137.223.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('195.137.224.0', '195.137.225.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.137.226.0', '195.137.227.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.137.228.0', '195.137.229.255', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('195.137.230.0', '195.137.231.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.137.232.0', '195.137.233.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.137.234.0', '195.137.235.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.137.236.0', '195.137.237.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.137.238.0', '195.137.239.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.137.240.0', '195.137.241.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.137.242.0', '195.137.243.255', 2147483647, 2147483647, 'FR', 'France'), +('195.137.244.0', '195.137.245.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.137.246.0', '195.137.247.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.137.248.0', '195.137.249.255', 2147483647, 2147483647, 'FR', 'France'), +('195.137.250.0', '195.137.251.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.137.252.0', '195.137.253.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('195.137.254.0', '195.137.255.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.138.0.0', '195.138.31.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('195.138.32.0', '195.138.63.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.138.64.0', '195.138.95.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.138.96.0', '195.138.127.255', 2147483647, 2147483647, 'MD', 'Moldova, Republic of'), +('195.138.128.0', '195.138.135.159', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('195.138.135.160', '195.138.135.167', 2147483647, 2147483647, 'DE', 'Germany'), +('195.138.135.168', '195.138.144.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('195.138.145.0', '195.138.145.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('195.138.146.0', '195.138.159.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('195.138.160.0', '195.138.191.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.138.192.0', '195.138.192.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.138.193.0', '195.138.193.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.138.194.0', '195.138.195.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.138.196.0', '195.138.196.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('195.138.197.0', '195.138.197.255', 2147483647, 2147483647, 'FR', 'France'), +('195.138.198.0', '195.138.198.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.138.199.0', '195.138.199.255', 2147483647, 2147483647, 'NO', 'Norway'), +('195.138.200.0', '195.138.200.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.138.201.0', '195.138.201.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('195.138.202.0', '195.138.202.255', 2147483647, 2147483647, 'FR', 'France'), +('195.138.203.0', '195.138.203.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.138.204.0', '195.138.205.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.138.206.0', '195.138.206.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.138.207.0', '195.138.207.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.138.208.0', '195.138.208.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.138.209.0', '195.138.209.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.138.210.0', '195.138.210.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.138.211.0', '195.138.211.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.138.212.0', '195.138.212.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.138.214.0', '195.138.214.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.138.215.0', '195.138.216.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.138.217.0', '195.138.219.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.138.220.0', '195.138.220.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.138.221.0', '195.138.221.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.138.222.0', '195.138.222.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.138.223.0', '195.138.223.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.138.224.0', '195.138.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.139.0.0', '195.139.255.255', 2147483647, 2147483647, 'NO', 'Norway'), +('195.140.0.0', '195.140.127.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.140.128.0', '195.140.131.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.140.132.0', '195.140.135.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.140.136.0', '195.140.139.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.140.140.0', '195.140.143.255', 2147483647, 2147483647, 'FR', 'France'), +('195.140.144.0', '195.140.147.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.140.148.0', '195.140.151.255', 2147483647, 2147483647, 'FR', 'France'), +('195.140.152.0', '195.140.155.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.140.156.0', '195.140.159.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.140.160.0', '195.140.163.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.140.164.0', '195.140.167.255', 2147483647, 2147483647, 'ME', 'Montenegro'), +('195.140.168.0', '195.140.171.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.140.172.0', '195.140.175.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.140.176.0', '195.140.179.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.140.180.0', '195.140.183.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.140.184.0', '195.140.187.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.140.188.0', '195.140.191.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.140.192.0', '195.140.195.255', 2147483647, 2147483647, 'FI', 'Finland'), +('195.140.196.0', '195.140.199.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('195.140.200.0', '195.140.203.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.140.204.0', '195.140.207.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.140.208.0', '195.140.215.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.140.216.0', '195.140.219.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.140.220.0', '195.140.223.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.140.224.0', '195.140.227.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.140.228.0', '195.140.231.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.140.232.0', '195.140.235.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.140.236.0', '195.140.239.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.140.240.0', '195.140.243.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.140.244.0', '195.140.247.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.140.248.0', '195.140.251.255', 2147483647, 2147483647, 'MZ', 'Mozambique'), +('195.140.252.0', '195.140.255.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('195.141.0.0', '195.141.51.31', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.141.51.32', '195.141.51.47', 2147483647, 2147483647, 'DE', 'Germany'), +('195.141.51.48', '195.141.182.4', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.141.182.5', '195.141.182.7', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.141.182.8', '195.141.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.142.0.0', '195.142.255.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('195.143.0.0', '195.143.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.144.0.0', '195.144.0.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.144.1.0', '195.144.1.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.144.2.0', '195.144.2.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.144.3.0', '195.144.3.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.144.4.0', '195.144.4.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.144.5.0', '195.144.5.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.144.6.0', '195.144.6.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.144.7.0', '195.144.7.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.144.8.0', '195.144.8.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.144.9.0', '195.144.9.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.144.10.0', '195.144.10.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.144.11.0', '195.144.11.255', 2147483647, 2147483647, 'FR', 'France'), +('195.144.12.0', '195.144.12.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.144.13.0', '195.144.13.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.144.14.0', '195.144.14.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.144.15.0', '195.144.15.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.144.16.0', '195.144.16.255', 2147483647, 2147483647, 'GR', 'Greece'), +('195.144.17.0', '195.144.19.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.144.20.0', '195.144.20.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('195.144.21.0', '195.144.21.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.144.22.0', '195.144.23.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.144.24.0', '195.144.24.255', 2147483647, 2147483647, 'FR', 'France'), +('195.144.25.0', '195.144.25.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.144.27.0', '195.144.27.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.144.28.0', '195.144.28.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.144.29.0', '195.144.29.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.144.30.0', '195.144.30.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.144.31.0', '195.144.31.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.144.32.0', '195.144.63.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.144.64.0', '195.144.95.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.144.96.0', '195.144.127.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('195.144.128.0', '195.144.128.7', 2147483647, 2147483647, 'EU', 'Europe'), +('195.144.128.8', '195.144.128.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.144.128.16', '195.144.128.63', 2147483647, 2147483647, 'EU', 'Europe'), +('195.144.128.64', '195.144.128.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.144.128.80', '195.144.128.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.144.128.128', '195.144.128.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.144.128.144', '195.144.128.207', 2147483647, 2147483647, 'EU', 'Europe'), +('195.144.128.208', '195.144.128.215', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.144.128.216', '195.144.128.231', 2147483647, 2147483647, 'EU', 'Europe'), +('195.144.128.232', '195.144.128.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.144.128.240', '195.144.128.247', 2147483647, 2147483647, 'EU', 'Europe'), +('195.144.128.248', '195.144.128.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.144.129.0', '195.144.129.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.144.130.0', '195.144.130.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.144.130.32', '195.144.130.47', 2147483647, 2147483647, 'EU', 'Europe'), +('195.144.130.48', '195.144.130.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.144.130.96', '195.144.130.111', 2147483647, 2147483647, 'EU', 'Europe'), +('195.144.130.112', '195.144.130.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.144.130.160', '195.144.130.191', 2147483647, 2147483647, 'EU', 'Europe'), +('195.144.130.192', '195.144.130.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.144.130.224', '195.144.130.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.144.131.0', '195.144.131.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.144.131.64', '195.144.131.223', 2147483647, 2147483647, 'EU', 'Europe'), +('195.144.131.224', '195.144.132.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.144.132.128', '195.144.135.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.144.135.128', '195.144.135.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.144.135.192', '195.144.140.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.144.141.0', '195.144.159.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.144.160.0', '195.144.191.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.144.192.0', '195.144.255.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.145.0.0', '195.145.57.239', 2147483647, 2147483647, 'DE', 'Germany'), +('195.145.57.240', '195.145.57.247', 2147483647, 2147483647, 'ES', 'Spain'), +('195.145.57.248', '195.145.172.63', 2147483647, 2147483647, 'DE', 'Germany'), +('195.145.172.64', '195.145.172.71', 2147483647, 2147483647, 'AT', 'Austria'), +('195.145.172.72', '195.145.172.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.145.173.0', '195.145.173.255', 2147483647, 2147483647, 'FR', 'France'), +('195.145.174.0', '195.145.195.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.145.196.0', '195.145.196.7', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.145.196.8', '195.145.210.103', 2147483647, 2147483647, 'DE', 'Germany'), +('195.145.210.104', '195.145.210.111', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.145.210.112', '195.145.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.146.0.0', '195.146.31.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('195.146.32.0', '195.146.63.255', 2147483647, 2147483647, 'IR', 'Iran, Islamic Republic of'), +('195.146.64.0', '195.146.95.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.146.96.0', '195.146.127.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('195.146.128.0', '195.146.159.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('195.146.160.0', '195.146.191.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.146.192.0', '195.146.255.255', 2147483647, 2147483647, 'FR', 'France'), +('195.147.0.0', '195.147.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.148.0.0', '195.148.255.255', 2147483647, 2147483647, 'FI', 'Finland'), +('195.149.0.0', '195.149.63.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.149.64.0', '195.149.64.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.149.65.0', '195.149.65.255', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('195.149.66.0', '195.149.66.255', 2147483647, 2147483647, 'FR', 'France'), +('195.149.67.0', '195.149.67.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.149.68.0', '195.149.68.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.149.69.0', '195.149.69.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.149.70.0', '195.149.70.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.149.71.0', '195.149.71.255', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('195.149.72.0', '195.149.73.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.149.74.0', '195.149.74.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.149.75.0', '195.149.75.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.149.76.0', '195.149.76.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.149.77.0', '195.149.77.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.149.78.0', '195.149.78.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.149.79.0', '195.149.79.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.149.80.0', '195.149.82.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.149.83.0', '195.149.83.255', 2147483647, 2147483647, 'FI', 'Finland'), +('195.149.84.0', '195.149.84.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.149.85.0', '195.149.85.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('195.149.86.0', '195.149.86.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.149.87.0', '195.149.87.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.149.88.0', '195.149.88.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.149.89.0', '195.149.89.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.149.90.0', '195.149.90.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.149.91.0', '195.149.91.255', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('195.149.92.0', '195.149.92.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.149.93.0', '195.149.93.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.149.94.0', '195.149.94.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('195.149.95.0', '195.149.95.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.149.96.0', '195.149.96.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.149.97.0', '195.149.97.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.149.98.0', '195.149.98.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.149.99.0', '195.149.99.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.149.100.0', '195.149.100.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.149.101.0', '195.149.101.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.149.102.0', '195.149.102.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.149.103.0', '195.149.103.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.149.104.0', '195.149.105.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.149.106.0', '195.149.106.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.149.107.0', '195.149.107.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.149.108.0', '195.149.109.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.149.110.0', '195.149.111.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.149.112.0', '195.149.112.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.149.113.0', '195.149.113.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.149.114.0', '195.149.114.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.149.115.0', '195.149.115.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.149.116.0', '195.149.116.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('195.149.117.0', '195.149.117.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.149.118.0', '195.149.118.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.149.119.0', '195.149.119.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.149.120.0', '195.149.120.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.149.121.0', '195.149.121.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.149.122.0', '195.149.122.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.149.123.0', '195.149.123.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.149.124.0', '195.149.124.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.149.125.0', '195.149.125.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.149.126.0', '195.149.127.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.149.128.0', '195.149.144.223', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.149.144.224', '195.149.144.255', 2147483647, 2147483647, 'AN', 'Netherlands Antilles'), +('195.149.145.0', '195.149.191.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.149.200.0', '195.149.207.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.149.208.0', '195.149.215.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.149.216.0', '195.149.223.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.149.224.0', '195.149.239.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.149.240.0', '195.149.247.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.149.248.0', '195.149.255.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('195.150.0.0', '195.150.255.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.151.0.0', '195.151.69.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.151.70.0', '195.151.70.255', 2147483647, 2147483647, 'UZ', 'Uzbekistan'), +('195.151.71.0', '195.151.255.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.152.0.0', '195.152.233.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.152.233.192', '195.152.233.207', 2147483647, 2147483647, 'IE', 'Ireland'), +('195.152.233.208', '195.153.221.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.153.222.0', '195.153.222.23', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.153.222.24', '195.153.222.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.153.222.64', '195.153.222.79', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.153.222.80', '195.153.222.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.153.222.128', '195.153.222.159', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.153.222.160', '195.153.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.154.0.0', '195.154.196.159', 2147483647, 2147483647, 'FR', 'France'), +('195.154.196.160', '195.154.196.191', 2147483647, 2147483647, 'US', 'United States'), +('195.154.196.192', '195.154.210.127', 2147483647, 2147483647, 'FR', 'France'), +('195.154.210.128', '195.154.210.191', 2147483647, 2147483647, 'US', 'United States'), +('195.154.210.192', '195.154.238.207', 2147483647, 2147483647, 'FR', 'France'), +('195.154.238.208', '195.154.238.223', 2147483647, 2147483647, 'US', 'United States'), +('195.154.238.224', '195.154.241.127', 2147483647, 2147483647, 'FR', 'France'), +('195.154.241.128', '195.154.241.159', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.154.241.160', '195.154.243.255', 2147483647, 2147483647, 'FR', 'France'), +('195.154.244.0', '195.154.244.31', 2147483647, 2147483647, 'US', 'United States'), +('195.154.244.32', '195.154.244.63', 2147483647, 2147483647, 'FR', 'France'), +('195.154.244.64', '195.154.244.127', 2147483647, 2147483647, 'US', 'United States'), +('195.154.244.128', '195.154.255.255', 2147483647, 2147483647, 'FR', 'France'), +('195.155.0.0', '195.155.255.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('195.156.0.0', '195.156.217.255', 2147483647, 2147483647, 'FI', 'Finland'), +('195.156.218.0', '195.156.218.255', 2147483647, 2147483647, 'AX', 'Aland Islands'), +('195.156.219.0', '195.156.255.255', 2147483647, 2147483647, 'FI', 'Finland'), +('195.157.0.0', '195.157.59.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.157.59.32', '195.157.59.47', 2147483647, 2147483647, 'FR', 'France'), +('195.157.59.48', '195.157.85.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.157.85.240', '195.157.85.255', 2147483647, 2147483647, 'FR', 'France'), +('195.157.86.0', '195.157.132.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.157.132.128', '195.157.132.159', 2147483647, 2147483647, 'FR', 'France'), +('195.157.132.160', '195.157.155.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.157.156.0', '195.157.156.127', 2147483647, 2147483647, 'FR', 'France'), +('195.157.156.128', '195.157.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.158.0.0', '195.158.31.255', 2147483647, 2147483647, 'UZ', 'Uzbekistan'), +('195.158.32.0', '195.158.63.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.158.64.0', '195.158.127.255', 2147483647, 2147483647, 'MT', 'Malta'), +('195.158.128.0', '195.158.191.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.158.192.0', '195.158.223.255', 2147483647, 2147483647, 'JO', 'Jordan'), +('195.158.224.0', '195.158.225.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.158.226.0', '195.158.227.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.158.228.0', '195.158.229.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.158.230.0', '195.158.231.255', 2147483647, 2147483647, 'LI', 'Liechtenstein'), +('195.158.232.0', '195.158.233.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.158.234.0', '195.158.235.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.158.236.0', '195.158.237.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.158.238.0', '195.158.239.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.158.240.0', '195.158.241.255', 2147483647, 2147483647, 'FR', 'France'), +('195.158.242.0', '195.158.243.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.158.244.0', '195.158.245.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.158.246.0', '195.158.247.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.158.248.0', '195.158.251.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.158.252.0', '195.158.253.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.158.254.0', '195.158.255.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.159.0.0', '195.159.84.247', 2147483647, 2147483647, 'NO', 'Norway'), +('195.159.84.248', '195.159.84.255', 2147483647, 2147483647, 'US', 'United States'), +('195.159.85.0', '195.159.255.255', 2147483647, 2147483647, 'NO', 'Norway'), +('195.160.0.0', '195.160.159.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.160.160.0', '195.160.161.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.160.162.0', '195.160.163.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.160.166.0', '195.160.167.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.160.168.0', '195.160.169.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.160.170.0', '195.160.171.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('195.160.172.0', '195.160.173.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.160.174.0', '195.160.175.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.160.176.0', '195.160.177.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.160.178.0', '195.160.181.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.160.182.0', '195.160.183.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('195.160.184.0', '195.160.185.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.160.186.0', '195.160.187.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.160.188.0', '195.160.189.255', 2147483647, 2147483647, 'FR', 'France'), +('195.160.190.0', '195.160.191.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.160.192.0', '195.160.195.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.160.196.0', '195.160.203.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.160.204.0', '195.160.207.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.160.208.0', '195.160.211.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.160.212.0', '195.160.215.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.160.216.0', '195.160.219.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.160.220.0', '195.160.223.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.160.224.0', '195.160.227.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.160.228.0', '195.160.231.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.160.232.0', '195.160.235.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.160.236.0', '195.160.239.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.160.240.0', '195.160.243.255', 2147483647, 2147483647, 'IL', 'Israel'), +('195.160.244.0', '195.160.247.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.160.248.0', '195.160.251.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.160.252.0', '195.160.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.161.0.0', '195.161.42.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.161.43.0', '195.161.43.255', 2147483647, 2147483647, 'KZ', 'Kazakstan'), +('195.161.44.0', '195.161.160.79', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.161.160.80', '195.161.160.95', 2147483647, 2147483647, 'KG', 'Kyrgyzstan'), +('195.161.160.96', '195.161.160.223', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.161.160.224', '195.161.160.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.161.161.0', '195.161.255.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.162.0.0', '195.162.1.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.162.2.0', '195.162.3.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.162.4.0', '195.162.11.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.162.12.0', '195.162.13.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.162.14.0', '195.162.15.255', 2147483647, 2147483647, 'KZ', 'Kazakstan'), +('195.162.16.0', '195.162.17.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.162.18.0', '195.162.19.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.162.20.0', '195.162.21.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.162.22.0', '195.162.23.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.162.24.0', '195.162.25.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.162.26.0', '195.162.27.255', 2147483647, 2147483647, 'KZ', 'Kazakstan'), +('195.162.28.0', '195.162.29.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.162.30.0', '195.162.31.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.162.32.0', '195.162.63.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.162.64.0', '195.162.79.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.162.96.0', '195.162.127.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.162.128.0', '195.162.191.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.162.192.0', '195.162.223.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.162.224.0', '195.162.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.163.0.0', '195.163.10.175', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.163.10.176', '195.163.10.179', 2147483647, 2147483647, 'NO', 'Norway'), +('195.163.10.180', '195.163.175.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.163.176.0', '195.163.176.15', 2147483647, 2147483647, 'FI', 'Finland'), +('195.163.176.16', '195.163.176.23', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.163.176.24', '195.163.176.31', 2147483647, 2147483647, 'FR', 'France'), +('195.163.176.32', '195.163.176.35', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.163.176.36', '195.163.176.47', 2147483647, 2147483647, 'FI', 'Finland'), +('195.163.176.48', '195.163.176.51', 2147483647, 2147483647, 'FR', 'France'), +('195.163.176.52', '195.163.176.55', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.163.176.56', '195.163.176.59', 2147483647, 2147483647, 'FR', 'France'), +('195.163.176.60', '195.163.176.143', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.163.176.144', '195.163.176.159', 2147483647, 2147483647, 'FI', 'Finland'), +('195.163.176.160', '195.163.176.191', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.163.176.192', '195.163.176.239', 2147483647, 2147483647, 'FI', 'Finland'), +('195.163.176.240', '195.163.185.127', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.163.185.128', '195.163.185.159', 2147483647, 2147483647, 'FI', 'Finland'), +('195.163.185.160', '195.163.187.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.163.188.0', '195.163.188.143', 2147483647, 2147483647, 'FI', 'Finland'), +('195.163.188.144', '195.163.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.164.0.0', '195.164.255.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.165.0.0', '195.165.68.127', 2147483647, 2147483647, 'FI', 'Finland'), +('195.165.68.128', '195.165.68.191', 2147483647, 2147483647, 'AX', 'Aland Islands'), +('195.165.68.192', '195.165.68.207', 2147483647, 2147483647, 'FI', 'Finland'), +('195.165.68.208', '195.165.68.223', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.165.68.224', '195.165.75.255', 2147483647, 2147483647, 'FI', 'Finland'), +('195.165.76.0', '195.165.76.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.165.77.0', '195.165.148.79', 2147483647, 2147483647, 'FI', 'Finland'), +('195.165.148.80', '195.165.148.87', 2147483647, 2147483647, 'AX', 'Aland Islands'), +('195.165.148.88', '195.165.148.127', 2147483647, 2147483647, 'FI', 'Finland'), +('195.165.148.128', '195.165.148.131', 2147483647, 2147483647, 'AX', 'Aland Islands'), +('195.165.148.132', '195.165.178.255', 2147483647, 2147483647, 'FI', 'Finland'), +('195.165.179.0', '195.165.179.127', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.165.179.128', '195.165.229.95', 2147483647, 2147483647, 'FI', 'Finland'), +('195.165.229.96', '195.165.229.127', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.165.229.128', '195.165.229.159', 2147483647, 2147483647, 'NO', 'Norway'), +('195.165.229.160', '195.165.255.255', 2147483647, 2147483647, 'FI', 'Finland'), +('195.166.0.0', '195.166.31.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.166.31.128', '195.166.31.191', 2147483647, 2147483647, 'US', 'United States'), +('195.166.31.192', '195.166.50.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.166.50.128', '195.166.50.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.166.51.0', '195.166.63.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.166.64.0', '195.166.64.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.166.65.0', '195.166.77.215', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.166.77.216', '195.166.77.223', 2147483647, 2147483647, 'IT', 'Italy'), +('195.166.77.224', '195.166.98.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.166.99.0', '195.166.99.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.166.100.0', '195.166.111.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.166.112.0', '195.166.112.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.166.113.0', '195.166.113.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.166.114.0', '195.166.114.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.166.115.0', '195.166.116.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.166.117.0', '195.166.117.63', 2147483647, 2147483647, 'US', 'United States'), +('195.166.117.64', '195.166.119.83', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.166.119.84', '195.166.119.95', 2147483647, 2147483647, 'IT', 'Italy'), +('195.166.119.96', '195.166.119.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.166.119.128', '195.166.119.167', 2147483647, 2147483647, 'IT', 'Italy'), +('195.166.119.168', '195.166.119.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.166.120.0', '195.166.120.255', 2147483647, 2147483647, 'US', 'United States'), +('195.166.121.0', '195.166.121.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.166.122.0', '195.166.122.31', 2147483647, 2147483647, 'DE', 'Germany'), +('195.166.122.32', '195.166.159.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.166.160.0', '195.166.191.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.166.192.0', '195.166.223.255', 2147483647, 2147483647, 'GI', 'Gibraltar'), +('195.166.224.0', '195.166.255.255', 2147483647, 2147483647, 'NG', 'Nigeria'), +('195.167.0.0', '195.167.127.255', 2147483647, 2147483647, 'GR', 'Greece'), +('195.167.128.0', '195.167.191.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.167.192.0', '195.167.207.255', 2147483647, 2147483647, 'FR', 'France'), +('195.167.208.0', '195.167.223.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.167.224.0', '195.167.239.255', 2147483647, 2147483647, 'FR', 'France'), +('195.167.240.0', '195.167.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.168.0.0', '195.168.255.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('195.169.0.0', '195.169.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.170.0.0', '195.170.31.255', 2147483647, 2147483647, 'GR', 'Greece'), +('195.170.32.0', '195.170.63.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.170.64.0', '195.170.95.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.170.96.0', '195.170.127.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.170.128.0', '195.170.159.255', 2147483647, 2147483647, 'FI', 'Finland'), +('195.170.160.0', '195.170.160.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.170.161.0', '195.170.161.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.170.162.0', '195.170.162.255', 2147483647, 2147483647, 'FR', 'France'), +('195.170.164.0', '195.170.164.255', 2147483647, 2147483647, 'FR', 'France'), +('195.170.165.0', '195.170.165.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.170.166.0', '195.170.166.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('195.170.167.0', '195.170.167.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.170.168.0', '195.170.168.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('195.170.169.0', '195.170.169.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.170.170.0', '195.170.170.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.170.171.0', '195.170.172.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.170.173.0', '195.170.173.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.170.174.0', '195.170.174.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.170.175.0', '195.170.175.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.170.176.0', '195.170.176.255', 2147483647, 2147483647, 'CY', 'Cyprus'), +('195.170.177.0', '195.170.177.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('195.170.178.0', '195.170.178.255', 2147483647, 2147483647, 'MD', 'Moldova, Republic of'), +('195.170.179.0', '195.170.179.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.170.180.0', '195.170.180.255', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('195.170.181.0', '195.170.181.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.170.182.0', '195.170.182.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.170.183.0', '195.170.183.255', 2147483647, 2147483647, 'RS', 'Serbia'), +('195.170.184.0', '195.170.184.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('195.170.185.0', '195.170.186.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.170.187.0', '195.170.187.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.170.188.0', '195.170.188.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.170.189.0', '195.170.189.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.170.190.0', '195.170.190.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.170.191.0', '195.170.191.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.170.192.0', '195.170.255.255', 2147483647, 2147483647, 'RU', 'Russian Federation'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('195.171.0.0', '195.171.35.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.171.36.0', '195.171.36.127', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.171.36.128', '195.171.163.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.171.163.224', '195.171.163.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('195.171.164.0', '195.172.60.183', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.172.60.184', '195.172.60.191', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('195.172.60.192', '195.173.223.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.173.224.0', '195.173.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.174.0.0', '195.175.255.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('195.176.0.0', '195.176.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.177.0.0', '195.177.4.199', 2147483647, 2147483647, 'DE', 'Germany'), +('195.177.4.200', '195.177.4.203', 2147483647, 2147483647, 'EE', 'Estonia'), +('195.177.4.204', '195.177.12.107', 2147483647, 2147483647, 'DE', 'Germany'), +('195.177.12.108', '195.177.12.111', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.177.12.112', '195.177.63.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.177.64.0', '195.177.67.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.177.68.0', '195.177.75.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.177.76.0', '195.177.79.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.177.80.0', '195.177.83.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.177.84.0', '195.177.87.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.177.88.0', '195.177.91.255', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('195.177.92.0', '195.177.95.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.177.96.0', '195.177.99.255', 2147483647, 2147483647, 'NO', 'Norway'), +('195.177.100.0', '195.177.103.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.177.104.0', '195.177.107.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.177.108.0', '195.177.111.255', 2147483647, 2147483647, 'IL', 'Israel'), +('195.177.112.0', '195.177.119.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.177.120.0', '195.177.123.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.177.124.0', '195.177.127.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.177.128.0', '195.177.191.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.177.192.0', '195.177.193.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.177.194.0', '195.177.195.255', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('195.177.196.0', '195.177.197.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.177.198.0', '195.177.199.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.177.200.0', '195.177.201.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.177.202.0', '195.177.203.255', 2147483647, 2147483647, 'NO', 'Norway'), +('195.177.204.0', '195.177.205.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.177.206.0', '195.177.207.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('195.177.208.0', '195.177.209.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.177.210.0', '195.177.211.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.177.212.0', '195.177.213.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.177.214.0', '195.177.215.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.177.216.0', '195.177.217.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.177.218.0', '195.177.219.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('195.177.220.0', '195.177.221.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.177.222.0', '195.177.223.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.177.224.0', '195.177.225.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.177.226.0', '195.177.227.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.177.228.0', '195.177.229.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.177.230.0', '195.177.231.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('195.177.232.0', '195.177.233.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.177.234.0', '195.177.235.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.177.236.0', '195.177.241.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.177.242.0', '195.177.243.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.177.244.0', '195.177.245.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.177.246.0', '195.177.247.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.177.248.0', '195.177.249.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('195.177.250.0', '195.177.251.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.177.252.0', '195.177.253.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.177.254.0', '195.177.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.178.32.0', '195.178.63.255', 2147483647, 2147483647, 'RS', 'Serbia'), +('195.178.64.0', '195.178.95.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('195.178.96.0', '195.178.97.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('195.178.98.0', '195.178.99.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('195.178.100.0', '195.178.101.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.178.102.0', '195.178.103.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.178.104.0', '195.178.105.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.178.106.0', '195.178.107.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.178.108.0', '195.178.109.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.178.110.0', '195.178.111.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.178.112.0', '195.178.113.255', 2147483647, 2147483647, 'FR', 'France'), +('195.178.114.0', '195.178.115.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.178.116.0', '195.178.117.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('195.178.118.0', '195.178.119.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('195.178.120.0', '195.178.121.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.178.122.0', '195.178.123.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.178.124.0', '195.178.127.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.178.128.0', '195.178.159.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.178.160.0', '195.178.191.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.178.192.0', '195.178.223.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.178.224.0', '195.178.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.179.0.0', '195.179.1.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.179.2.0', '195.179.2.3', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.179.2.4', '195.179.15.95', 2147483647, 2147483647, 'DE', 'Germany'), +('195.179.15.96', '195.179.15.111', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.179.15.112', '195.179.66.127', 2147483647, 2147483647, 'DE', 'Germany'), +('195.179.66.128', '195.179.66.167', 2147483647, 2147483647, 'FR', 'France'), +('195.179.66.168', '195.179.128.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.179.129.0', '195.179.129.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.179.129.32', '195.180.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.181.0.0', '195.181.255.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.182.0.0', '195.182.0.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.182.1.0', '195.182.1.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.182.2.0', '195.182.2.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.182.3.0', '195.182.3.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.182.4.0', '195.182.4.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.182.5.0', '195.182.5.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.182.6.0', '195.182.6.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.182.7.0', '195.182.7.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.182.8.0', '195.182.8.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.182.9.0', '195.182.9.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.182.11.0', '195.182.11.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.182.12.0', '195.182.12.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.182.14.0', '195.182.14.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.182.15.0', '195.182.15.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.182.16.0', '195.182.17.255', 2147483647, 2147483647, 'FR', 'France'), +('195.182.18.0', '195.182.18.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.182.19.0', '195.182.20.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.182.21.0', '195.182.22.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.182.23.0', '195.182.23.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.182.24.0', '195.182.24.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.182.25.0', '195.182.25.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('195.182.26.0', '195.182.26.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.182.27.0', '195.182.27.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.182.28.0', '195.182.28.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.182.29.0', '195.182.29.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.182.30.0', '195.182.30.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.182.31.0', '195.182.31.255', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('195.182.32.0', '195.182.32.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.182.33.0', '195.182.33.255', 2147483647, 2147483647, 'IL', 'Israel'), +('195.182.34.0', '195.182.35.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.182.36.0', '195.182.36.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.182.37.0', '195.182.37.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.182.38.0', '195.182.38.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.182.39.0', '195.182.39.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.182.40.0', '195.182.40.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.182.41.0', '195.182.41.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('195.182.42.0', '195.182.42.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('195.182.43.0', '195.182.43.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.182.44.0', '195.182.44.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('195.182.45.0', '195.182.45.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.182.46.0', '195.182.46.255', 2147483647, 2147483647, 'FR', 'France'), +('195.182.47.0', '195.182.47.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('195.182.48.0', '195.182.48.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.182.49.0', '195.182.49.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.182.50.0', '195.182.50.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.182.51.0', '195.182.52.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.182.53.0', '195.182.53.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.182.54.0', '195.182.54.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.182.55.0', '195.182.55.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.182.56.0', '195.182.56.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.182.57.0', '195.182.57.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.182.58.0', '195.182.58.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.182.59.0', '195.182.59.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.182.60.0', '195.182.60.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.182.61.0', '195.182.61.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('195.182.62.0', '195.182.62.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.182.63.0', '195.182.63.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.182.64.0', '195.182.95.255', 2147483647, 2147483647, 'LT', 'Lithuania'), +('195.182.96.0', '195.182.112.31', 2147483647, 2147483647, 'DE', 'Germany'), +('195.182.112.32', '195.182.112.63', 2147483647, 2147483647, 'EU', 'Europe'), +('195.182.112.64', '195.182.112.71', 2147483647, 2147483647, 'DE', 'Germany'), +('195.182.112.72', '195.182.112.87', 2147483647, 2147483647, 'EU', 'Europe'), +('195.182.112.88', '195.182.112.91', 2147483647, 2147483647, 'DE', 'Germany'), +('195.182.112.92', '195.182.112.103', 2147483647, 2147483647, 'EU', 'Europe'), +('195.182.112.104', '195.182.113.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.182.114.0', '195.182.114.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.182.114.128', '195.182.114.239', 2147483647, 2147483647, 'DE', 'Germany'), +('195.182.114.240', '195.182.114.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.182.115.0', '195.182.116.127', 2147483647, 2147483647, 'DE', 'Germany'), +('195.182.116.128', '195.182.116.159', 2147483647, 2147483647, 'EU', 'Europe'), +('195.182.116.160', '195.182.116.179', 2147483647, 2147483647, 'DE', 'Germany'), +('195.182.116.180', '195.182.116.183', 2147483647, 2147483647, 'EU', 'Europe'), +('195.182.116.184', '195.182.123.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.182.124.0', '195.182.125.63', 2147483647, 2147483647, 'EU', 'Europe'), +('195.182.125.64', '195.182.125.191', 2147483647, 2147483647, 'DE', 'Germany'), +('195.182.125.192', '195.182.126.63', 2147483647, 2147483647, 'EU', 'Europe'), +('195.182.126.64', '195.182.126.127', 2147483647, 2147483647, 'DE', 'Germany'), +('195.182.126.128', '195.182.126.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.182.127.0', '195.182.127.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.182.128.0', '195.182.159.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.182.160.0', '195.182.191.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.182.192.0', '195.182.195.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.182.196.0', '195.182.197.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.182.198.0', '195.182.199.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.182.200.0', '195.182.201.255', 2147483647, 2147483647, 'GI', 'Gibraltar'), +('195.182.202.0', '195.182.203.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.182.204.0', '195.182.205.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.182.206.0', '195.182.207.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.182.208.0', '195.182.209.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.182.210.0', '195.182.211.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.182.212.0', '195.182.213.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.182.214.0', '195.182.215.255', 2147483647, 2147483647, 'RS', 'Serbia'), +('195.182.216.0', '195.182.217.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.182.218.0', '195.182.219.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.182.220.0', '195.182.221.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.182.222.0', '195.182.223.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.182.224.0', '195.182.255.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.183.0.0', '195.183.0.31', 2147483647, 2147483647, 'AT', 'Austria'), +('195.183.0.32', '195.183.0.79', 2147483647, 2147483647, 'EU', 'Europe'), +('195.183.0.80', '195.183.0.111', 2147483647, 2147483647, 'AT', 'Austria'), +('195.183.0.112', '195.183.0.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.183.1.0', '195.183.1.159', 2147483647, 2147483647, 'AT', 'Austria'), +('195.183.1.160', '195.183.1.191', 2147483647, 2147483647, 'FR', 'France'), +('195.183.1.192', '195.183.1.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.183.2.0', '195.183.7.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.183.8.0', '195.183.8.23', 2147483647, 2147483647, 'IT', 'Italy'), +('195.183.8.24', '195.183.8.31', 2147483647, 2147483647, 'EU', 'Europe'), +('195.183.8.32', '195.183.8.63', 2147483647, 2147483647, 'IT', 'Italy'), +('195.183.8.64', '195.183.8.95', 2147483647, 2147483647, 'EU', 'Europe'), +('195.183.8.96', '195.183.8.159', 2147483647, 2147483647, 'IT', 'Italy'), +('195.183.8.160', '195.183.8.191', 2147483647, 2147483647, 'EU', 'Europe'), +('195.183.8.192', '195.183.8.239', 2147483647, 2147483647, 'IT', 'Italy'), +('195.183.8.240', '195.183.8.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.183.9.0', '195.183.9.63', 2147483647, 2147483647, 'IT', 'Italy'), +('195.183.9.64', '195.183.9.127', 2147483647, 2147483647, 'DE', 'Germany'), +('195.183.9.128', '195.183.9.159', 2147483647, 2147483647, 'IT', 'Italy'), +('195.183.9.160', '195.183.9.191', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.183.9.192', '195.183.9.223', 2147483647, 2147483647, 'DE', 'Germany'), +('195.183.9.224', '195.183.9.239', 2147483647, 2147483647, 'FR', 'France'), +('195.183.9.240', '195.183.11.23', 2147483647, 2147483647, 'IT', 'Italy'), +('195.183.11.24', '195.183.11.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.183.11.32', '195.183.11.47', 2147483647, 2147483647, 'ZA', 'South Africa'), +('195.183.11.48', '195.183.11.55', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.183.11.56', '195.183.11.95', 2147483647, 2147483647, 'DE', 'Germany'), +('195.183.11.96', '195.183.11.127', 2147483647, 2147483647, 'GR', 'Greece'), +('195.183.11.128', '195.183.11.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.183.12.0', '195.183.12.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.183.13.0', '195.183.13.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.183.14.0', '195.183.14.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.183.15.0', '195.183.15.31', 2147483647, 2147483647, 'IT', 'Italy'), +('195.183.15.32', '195.183.15.47', 2147483647, 2147483647, 'ES', 'Spain'), +('195.183.15.48', '195.183.15.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.183.15.64', '195.183.15.127', 2147483647, 2147483647, 'IT', 'Italy'), +('195.183.15.128', '195.183.15.191', 2147483647, 2147483647, 'FR', 'France'), +('195.183.15.192', '195.183.15.207', 2147483647, 2147483647, 'ZA', 'South Africa'), +('195.183.15.208', '195.183.15.223', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.183.15.224', '195.183.15.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.183.16.0', '195.183.16.23', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.183.16.24', '195.183.16.31', 2147483647, 2147483647, 'EU', 'Europe'), +('195.183.16.32', '195.183.16.63', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.183.16.64', '195.183.16.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.183.16.128', '195.183.21.159', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.183.21.160', '195.183.21.175', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.183.21.176', '195.183.21.191', 2147483647, 2147483647, 'DE', 'Germany'), +('195.183.21.192', '195.183.21.223', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.183.21.224', '195.183.21.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.183.22.0', '195.183.23.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.183.24.0', '195.183.25.15', 2147483647, 2147483647, 'FR', 'France'), +('195.183.25.16', '195.183.25.63', 2147483647, 2147483647, 'EU', 'Europe'), +('195.183.25.64', '195.183.25.127', 2147483647, 2147483647, 'FR', 'France'), +('195.183.25.128', '195.183.25.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.183.26.0', '195.183.31.159', 2147483647, 2147483647, 'FR', 'France'), +('195.183.31.160', '195.183.31.191', 2147483647, 2147483647, 'DE', 'Germany'), +('195.183.31.192', '195.183.31.223', 2147483647, 2147483647, 'IT', 'Italy'), +('195.183.31.224', '195.183.31.239', 2147483647, 2147483647, 'ZA', 'South Africa'), +('195.183.31.240', '195.183.31.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.183.32.0', '195.183.32.31', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.183.32.32', '195.183.32.63', 2147483647, 2147483647, 'DE', 'Germany'), +('195.183.32.64', '195.183.32.135', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.183.32.136', '195.183.32.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.183.33.0', '195.183.33.95', 2147483647, 2147483647, 'FR', 'France'), +('195.183.33.96', '195.183.33.127', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.183.33.128', '195.183.33.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.183.33.144', '195.183.33.159', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.183.33.160', '195.183.33.191', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.183.33.192', '195.183.33.207', 2147483647, 2147483647, 'ZA', 'South Africa'), +('195.183.33.208', '195.183.33.215', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.183.33.216', '195.183.33.223', 2147483647, 2147483647, 'ZA', 'South Africa'), +('195.183.33.224', '195.183.33.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.183.33.240', '195.183.33.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.183.34.0', '195.183.34.127', 2147483647, 2147483647, 'DE', 'Germany'), +('195.183.34.128', '195.183.34.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('195.183.35.0', '195.183.35.63', 2147483647, 2147483647, 'DE', 'Germany'), +('195.183.35.64', '195.183.35.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.183.35.96', '195.183.35.127', 2147483647, 2147483647, 'ZA', 'South Africa'), +('195.183.35.128', '195.183.35.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.183.36.0', '195.183.36.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.183.37.0', '195.183.37.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.183.38.0', '195.183.38.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.183.39.0', '195.183.39.255', 2147483647, 2147483647, 'NO', 'Norway'), +('195.183.40.0', '195.183.40.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.183.41.0', '195.183.41.143', 2147483647, 2147483647, 'ZA', 'South Africa'), +('195.183.41.144', '195.183.41.159', 2147483647, 2147483647, 'EU', 'Europe'), +('195.183.41.160', '195.183.41.191', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.183.41.192', '195.183.41.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.183.42.0', '195.183.42.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.183.43.0', '195.183.43.159', 2147483647, 2147483647, 'EU', 'Europe'), +('195.183.43.160', '195.183.43.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.183.43.192', '195.183.43.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.183.44.0', '195.183.47.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.183.48.0', '195.183.48.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.183.49.0', '195.183.49.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.183.49.144', '195.183.49.151', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.183.49.152', '195.183.49.159', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.183.49.160', '195.183.49.191', 2147483647, 2147483647, 'DE', 'Germany'), +('195.183.49.192', '195.183.49.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.183.50.0', '195.183.61.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.183.61.192', '195.183.61.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('195.183.62.0', '195.183.63.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.183.64.0', '195.183.64.127', 2147483647, 2147483647, 'PL', 'Poland'), +('195.183.64.128', '195.183.64.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.183.65.0', '195.183.65.255', 2147483647, 2147483647, 'NO', 'Norway'), +('195.183.66.0', '195.183.67.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.183.67.64', '195.183.67.95', 2147483647, 2147483647, 'DE', 'Germany'), +('195.183.67.96', '195.183.67.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.183.67.112', '195.183.67.127', 2147483647, 2147483647, 'ES', 'Spain'), +('195.183.67.128', '195.183.67.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('195.183.68.0', '195.183.69.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.183.69.96', '195.183.69.127', 2147483647, 2147483647, 'IT', 'Italy'), +('195.183.69.128', '195.183.69.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.183.69.160', '195.183.69.191', 2147483647, 2147483647, 'DE', 'Germany'), +('195.183.69.192', '195.183.69.207', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.183.69.208', '195.183.69.223', 2147483647, 2147483647, 'ZA', 'South Africa'), +('195.183.69.224', '195.183.69.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.183.70.0', '195.183.77.71', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.183.77.72', '195.183.77.95', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.183.77.96', '195.183.77.127', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.183.77.128', '195.183.77.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.183.78.0', '195.183.79.7', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.183.79.8', '195.183.79.15', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.183.79.16', '195.183.79.31', 2147483647, 2147483647, 'IT', 'Italy'), +('195.183.79.32', '195.183.79.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.183.79.64', '195.183.79.127', 2147483647, 2147483647, 'DE', 'Germany'), +('195.183.79.128', '195.183.79.191', 2147483647, 2147483647, 'FR', 'France'), +('195.183.79.192', '195.183.81.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.183.81.224', '195.183.81.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.183.82.0', '195.183.83.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.183.84.0', '195.183.84.7', 2147483647, 2147483647, 'HU', 'Hungary'), +('195.183.84.8', '195.183.84.31', 2147483647, 2147483647, 'EU', 'Europe'), +('195.183.84.32', '195.183.84.63', 2147483647, 2147483647, 'DE', 'Germany'), +('195.183.84.64', '195.183.84.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.183.84.128', '195.183.84.191', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.183.84.192', '195.183.84.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.183.85.0', '195.183.85.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.183.85.144', '195.183.85.159', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.183.85.160', '195.183.85.191', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.183.85.192', '195.183.85.207', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.183.85.208', '195.183.85.223', 2147483647, 2147483647, 'ZA', 'South Africa'), +('195.183.85.224', '195.183.85.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.183.86.0', '195.183.87.135', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.183.87.136', '195.183.87.143', 2147483647, 2147483647, 'FR', 'France'), +('195.183.87.144', '195.183.87.151', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.183.87.152', '195.183.87.159', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.183.87.160', '195.183.87.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.183.87.192', '195.183.87.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.183.88.0', '195.183.89.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.183.90.0', '195.183.94.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.183.95.0', '195.183.95.63', 2147483647, 2147483647, 'EU', 'Europe'), +('195.183.95.64', '195.183.95.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.183.95.80', '195.183.95.87', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.183.95.88', '195.183.95.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.183.95.96', '195.183.95.111', 2147483647, 2147483647, 'ZA', 'South Africa'), +('195.183.95.112', '195.183.95.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.183.95.128', '195.183.97.31', 2147483647, 2147483647, 'DE', 'Germany'), +('195.183.97.32', '195.183.97.47', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.183.97.48', '195.183.99.127', 2147483647, 2147483647, 'DE', 'Germany'), +('195.183.99.128', '195.183.99.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.183.100.0', '195.183.102.95', 2147483647, 2147483647, 'DE', 'Germany'), +('195.183.102.96', '195.183.102.127', 2147483647, 2147483647, 'ZA', 'South Africa'), +('195.183.102.128', '195.183.116.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.183.117.0', '195.183.117.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.183.118.0', '195.183.118.39', 2147483647, 2147483647, 'DE', 'Germany'), +('195.183.118.40', '195.183.118.47', 2147483647, 2147483647, 'EU', 'Europe'), +('195.183.118.48', '195.183.127.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.183.128.0', '195.183.128.63', 2147483647, 2147483647, 'ZA', 'South Africa'), +('195.183.128.64', '195.183.128.95', 2147483647, 2147483647, 'EU', 'Europe'), +('195.183.128.96', '195.183.129.127', 2147483647, 2147483647, 'ZA', 'South Africa'), +('195.183.129.128', '195.183.129.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.183.130.0', '195.183.130.15', 2147483647, 2147483647, 'ZA', 'South Africa'), +('195.183.130.16', '195.183.130.31', 2147483647, 2147483647, 'EU', 'Europe'), +('195.183.130.32', '195.183.130.127', 2147483647, 2147483647, 'ZA', 'South Africa'), +('195.183.130.128', '195.183.130.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.183.131.0', '195.183.131.95', 2147483647, 2147483647, 'ZA', 'South Africa'), +('195.183.131.96', '195.183.131.103', 2147483647, 2147483647, 'IT', 'Italy'), +('195.183.131.104', '195.183.131.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.183.131.128', '195.183.131.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.183.132.0', '195.183.132.31', 2147483647, 2147483647, 'ZA', 'South Africa'), +('195.183.132.32', '195.183.132.63', 2147483647, 2147483647, 'DE', 'Germany'), +('195.183.132.64', '195.183.132.127', 2147483647, 2147483647, 'IE', 'Ireland'), +('195.183.132.128', '195.183.135.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('195.183.136.0', '195.183.136.7', 2147483647, 2147483647, 'EU', 'Europe'), +('195.183.136.8', '195.183.136.15', 2147483647, 2147483647, 'ES', 'Spain'), +('195.183.136.16', '195.183.136.31', 2147483647, 2147483647, 'EU', 'Europe'), +('195.183.136.32', '195.183.136.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.183.137.0', '195.183.137.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('195.183.138.0', '195.183.138.143', 2147483647, 2147483647, 'ES', 'Spain'), +('195.183.138.144', '195.183.138.159', 2147483647, 2147483647, 'IE', 'Ireland'), +('195.183.138.160', '195.183.138.191', 2147483647, 2147483647, 'FR', 'France'), +('195.183.138.192', '195.183.138.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.183.139.0', '195.183.139.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('195.183.140.0', '195.183.141.31', 2147483647, 2147483647, 'ES', 'Spain'), +('195.183.141.32', '195.183.141.39', 2147483647, 2147483647, 'EU', 'Europe'), +('195.183.141.40', '195.183.141.47', 2147483647, 2147483647, 'ES', 'Spain'), +('195.183.141.48', '195.183.141.63', 2147483647, 2147483647, 'EU', 'Europe'), +('195.183.141.64', '195.183.141.103', 2147483647, 2147483647, 'ES', 'Spain'), +('195.183.141.104', '195.183.141.111', 2147483647, 2147483647, 'EU', 'Europe'), +('195.183.141.112', '195.183.141.199', 2147483647, 2147483647, 'ES', 'Spain'), +('195.183.141.200', '195.183.141.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.183.142.0', '195.183.142.255', 2147483647, 2147483647, 'FR', 'France'), +('195.183.143.0', '195.183.143.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.183.144.0', '195.183.144.159', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.183.144.160', '195.183.144.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.183.145.0', '195.183.145.7', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.183.145.8', '195.183.145.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.183.145.16', '195.183.145.31', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.183.145.32', '195.183.145.63', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.183.145.64', '195.183.145.95', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.183.145.96', '195.183.145.103', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.183.145.104', '195.183.145.111', 2147483647, 2147483647, 'EU', 'Europe'), +('195.183.145.112', '195.183.145.119', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.183.145.120', '195.183.145.127', 2147483647, 2147483647, 'DE', 'Germany'), +('195.183.145.128', '195.183.145.159', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.183.145.160', '195.183.145.191', 2147483647, 2147483647, 'EU', 'Europe'), +('195.183.145.192', '195.183.145.223', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.183.145.224', '195.183.145.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.183.146.0', '195.183.146.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.183.146.64', '195.183.146.95', 2147483647, 2147483647, 'DE', 'Germany'), +('195.183.146.96', '195.183.146.127', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.183.146.128', '195.183.146.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.183.147.0', '195.183.147.31', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.183.147.32', '195.183.147.47', 2147483647, 2147483647, 'ZA', 'South Africa'), +('195.183.147.48', '195.183.147.55', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.183.147.56', '195.183.147.63', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.183.147.64', '195.183.147.127', 2147483647, 2147483647, 'IE', 'Ireland'), +('195.183.147.128', '195.183.147.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.183.148.0', '195.183.148.95', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.183.148.96', '195.183.148.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.183.148.128', '195.183.149.127', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.183.149.128', '195.183.149.191', 2147483647, 2147483647, 'AT', 'Austria'), +('195.183.149.192', '195.183.149.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.183.150.0', '195.183.151.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.183.152.0', '195.183.152.31', 2147483647, 2147483647, 'EU', 'Europe'), +('195.183.152.32', '195.183.154.159', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.183.154.160', '195.183.154.191', 2147483647, 2147483647, 'DE', 'Germany'), +('195.183.154.192', '195.183.154.207', 2147483647, 2147483647, 'EU', 'Europe'), +('195.183.154.208', '195.183.154.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.183.155.0', '195.183.155.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.183.156.0', '195.183.156.7', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.183.156.8', '195.183.156.15', 2147483647, 2147483647, 'EU', 'Europe'), +('195.183.156.16', '195.183.156.23', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.183.156.24', '195.183.156.31', 2147483647, 2147483647, 'EU', 'Europe'), +('195.183.156.32', '195.183.156.63', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.183.156.64', '195.183.156.79', 2147483647, 2147483647, 'EU', 'Europe'), +('195.183.156.80', '195.183.156.87', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.183.156.88', '195.183.156.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.183.156.128', '195.183.156.167', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.183.156.168', '195.183.156.191', 2147483647, 2147483647, 'EU', 'Europe'), +('195.183.156.192', '195.183.156.207', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.183.156.208', '195.183.156.223', 2147483647, 2147483647, 'EU', 'Europe'), +('195.183.156.224', '195.183.157.127', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.183.157.128', '195.183.157.143', 2147483647, 2147483647, 'ZA', 'South Africa'), +('195.183.157.144', '195.183.157.191', 2147483647, 2147483647, 'DE', 'Germany'), +('195.183.157.192', '195.183.157.223', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.183.157.224', '195.183.157.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.183.158.0', '195.183.158.191', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.183.158.192', '195.183.158.223', 2147483647, 2147483647, 'ZA', 'South Africa'), +('195.183.158.224', '195.183.158.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.183.159.0', '195.183.159.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.183.160.0', '195.183.160.191', 2147483647, 2147483647, 'DE', 'Germany'), +('195.183.160.192', '195.183.160.199', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.183.160.200', '195.183.160.207', 2147483647, 2147483647, 'ZA', 'South Africa'), +('195.183.160.208', '195.183.160.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.183.161.0', '195.183.163.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.183.164.0', '195.183.166.143', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.183.166.144', '195.183.166.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.183.166.160', '195.183.166.191', 2147483647, 2147483647, 'DE', 'Germany'), +('195.183.166.192', '195.183.166.199', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.183.166.200', '195.183.166.207', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.183.166.208', '195.183.166.223', 2147483647, 2147483647, 'ZA', 'South Africa'), +('195.183.166.224', '195.183.167.63', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.183.167.64', '195.183.167.95', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.183.167.96', '195.183.167.127', 2147483647, 2147483647, 'IT', 'Italy'), +('195.183.167.128', '195.183.167.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.183.168.0', '195.183.175.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.183.176.0', '195.183.179.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.183.180.0', '195.183.187.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.183.187.48', '195.183.187.63', 2147483647, 2147483647, 'EU', 'Europe'), +('195.183.187.64', '195.183.187.95', 2147483647, 2147483647, 'DE', 'Germany'), +('195.183.187.96', '195.183.187.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.183.187.128', '195.183.187.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.183.188.0', '195.183.189.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.183.189.48', '195.183.189.63', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.183.189.64', '195.183.189.95', 2147483647, 2147483647, 'IE', 'Ireland'), +('195.183.189.96', '195.183.189.127', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.183.189.128', '195.183.189.143', 2147483647, 2147483647, 'DE', 'Germany'), +('195.183.189.144', '195.183.189.151', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.183.189.152', '195.183.189.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.183.190.0', '195.183.190.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.183.190.32', '195.183.190.63', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.183.190.64', '195.183.190.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.183.190.128', '195.183.190.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.183.191.0', '195.183.191.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.183.191.192', '195.183.191.207', 2147483647, 2147483647, 'DE', 'Germany'), +('195.183.191.208', '195.183.191.223', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.183.191.224', '195.183.191.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.183.192.0', '195.183.192.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.183.193.0', '195.183.193.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('195.183.194.0', '195.183.196.143', 2147483647, 2147483647, 'ZA', 'South Africa'), +('195.183.196.144', '195.183.196.159', 2147483647, 2147483647, 'FR', 'France'), +('195.183.196.160', '195.183.196.191', 2147483647, 2147483647, 'DE', 'Germany'), +('195.183.196.192', '195.183.196.223', 2147483647, 2147483647, 'IT', 'Italy'), +('195.183.196.224', '195.183.196.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.183.197.0', '195.183.197.31', 2147483647, 2147483647, 'ZA', 'South Africa'), +('195.183.197.32', '195.183.197.63', 2147483647, 2147483647, 'DE', 'Germany'), +('195.183.197.64', '195.183.197.127', 2147483647, 2147483647, 'IT', 'Italy'), +('195.183.197.128', '195.183.197.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('195.183.198.0', '195.183.199.191', 2147483647, 2147483647, 'AT', 'Austria'), +('195.183.199.192', '195.183.199.223', 2147483647, 2147483647, 'IT', 'Italy'), +('195.183.199.224', '195.183.199.239', 2147483647, 2147483647, 'IE', 'Ireland'), +('195.183.199.240', '195.183.199.247', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.183.199.248', '195.183.201.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.183.202.0', '195.183.203.63', 2147483647, 2147483647, 'ZA', 'South Africa'), +('195.183.203.64', '195.183.203.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.183.203.96', '195.183.203.111', 2147483647, 2147483647, 'IT', 'Italy'), +('195.183.203.112', '195.183.203.127', 2147483647, 2147483647, 'ZA', 'South Africa'), +('195.183.203.128', '195.183.203.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.183.203.192', '195.183.203.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.183.204.0', '195.183.205.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('195.183.206.0', '195.183.206.63', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.183.206.64', '195.183.206.127', 2147483647, 2147483647, 'IT', 'Italy'), +('195.183.206.128', '195.183.206.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.183.207.0', '195.183.207.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.183.208.0', '195.183.211.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.183.212.0', '195.183.212.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.183.213.0', '195.183.215.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.183.216.0', '195.183.220.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.183.221.0', '195.183.223.63', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.183.223.64', '195.183.223.127', 2147483647, 2147483647, 'NO', 'Norway'), +('195.183.223.128', '195.183.223.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.183.224.0', '195.183.227.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.183.228.0', '195.183.228.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.183.229.0', '195.183.229.63', 2147483647, 2147483647, 'EU', 'Europe'), +('195.183.229.64', '195.183.229.127', 2147483647, 2147483647, 'DE', 'Germany'), +('195.183.229.128', '195.183.229.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.183.230.0', '195.183.236.159', 2147483647, 2147483647, 'DE', 'Germany'), +('195.183.236.160', '195.183.236.191', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.183.236.192', '195.183.236.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('195.183.237.0', '195.183.240.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.183.241.0', '195.183.246.63', 2147483647, 2147483647, 'IT', 'Italy'), +('195.183.246.64', '195.183.246.127', 2147483647, 2147483647, 'DE', 'Germany'), +('195.183.246.128', '195.183.247.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.183.248.0', '195.183.249.127', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.183.249.128', '195.183.249.255', 2147483647, 2147483647, 'FR', 'France'), +('195.183.250.0', '195.183.252.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.183.253.0', '195.183.253.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.183.254.0', '195.183.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.184.0.0', '195.184.31.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('195.184.32.0', '195.184.63.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.184.64.0', '195.184.65.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.184.66.0', '195.184.67.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.184.68.0', '195.184.69.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.184.70.0', '195.184.71.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.184.72.0', '195.184.75.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.184.76.0', '195.184.77.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.184.78.0', '195.184.79.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.184.80.0', '195.184.81.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.184.82.0', '195.184.83.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.184.84.0', '195.184.85.255', 2147483647, 2147483647, 'FR', 'France'), +('195.184.86.0', '195.184.87.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.184.88.0', '195.184.89.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.184.90.0', '195.184.91.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.184.92.0', '195.184.93.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.184.94.0', '195.184.95.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.184.96.0', '195.184.127.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.184.128.0', '195.184.129.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.184.130.0', '195.184.131.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.184.132.0', '195.184.132.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.184.133.0', '195.184.133.255', 2147483647, 2147483647, 'FR', 'France'), +('195.184.134.0', '195.184.135.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.184.136.0', '195.184.136.127', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.184.136.128', '195.184.136.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.184.137.0', '195.184.137.63', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.184.137.64', '195.184.137.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.184.137.96', '195.184.137.111', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.184.137.112', '195.184.137.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.184.137.128', '195.184.137.143', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.184.137.144', '195.184.137.159', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.184.137.160', '195.184.137.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.184.138.0', '195.184.138.63', 2147483647, 2147483647, 'IT', 'Italy'), +('195.184.138.64', '195.184.138.95', 2147483647, 2147483647, 'EU', 'Europe'), +('195.184.138.96', '195.184.138.111', 2147483647, 2147483647, 'ES', 'Spain'), +('195.184.138.112', '195.184.138.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.184.138.128', '195.184.138.191', 2147483647, 2147483647, 'HU', 'Hungary'), +('195.184.138.192', '195.184.138.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('195.184.139.0', '195.184.139.95', 2147483647, 2147483647, 'EU', 'Europe'), +('195.184.139.96', '195.184.139.111', 2147483647, 2147483647, 'DE', 'Germany'), +('195.184.139.112', '195.184.139.135', 2147483647, 2147483647, 'EU', 'Europe'), +('195.184.139.136', '195.184.139.143', 2147483647, 2147483647, 'DE', 'Germany'), +('195.184.139.144', '195.184.139.159', 2147483647, 2147483647, 'EU', 'Europe'), +('195.184.139.160', '195.184.139.191', 2147483647, 2147483647, 'FR', 'France'), +('195.184.139.192', '195.184.139.255', 2147483647, 2147483647, 'IL', 'Israel'), +('195.184.140.0', '195.184.140.7', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.184.140.8', '195.184.140.15', 2147483647, 2147483647, 'EU', 'Europe'), +('195.184.140.16', '195.184.140.31', 2147483647, 2147483647, 'DE', 'Germany'), +('195.184.140.32', '195.184.140.63', 2147483647, 2147483647, 'EU', 'Europe'), +('195.184.140.64', '195.184.140.79', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.184.140.80', '195.184.140.87', 2147483647, 2147483647, 'RO', 'Romania'), +('195.184.140.88', '195.184.140.95', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.184.140.96', '195.184.140.103', 2147483647, 2147483647, 'EU', 'Europe'), +('195.184.140.104', '195.184.140.111', 2147483647, 2147483647, 'IT', 'Italy'), +('195.184.140.112', '195.184.140.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.184.140.128', '195.184.140.143', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.184.140.144', '195.184.140.151', 2147483647, 2147483647, 'FR', 'France'), +('195.184.140.152', '195.184.140.159', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.184.140.160', '195.184.140.191', 2147483647, 2147483647, 'FR', 'France'), +('195.184.140.192', '195.184.140.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.184.141.0', '195.184.141.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.184.141.128', '195.184.141.191', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.184.141.192', '195.184.141.223', 2147483647, 2147483647, 'DE', 'Germany'), +('195.184.141.224', '195.184.141.231', 2147483647, 2147483647, 'EU', 'Europe'), +('195.184.141.232', '195.184.141.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.184.141.240', '195.184.141.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.184.142.0', '195.184.142.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.184.143.0', '195.184.143.127', 2147483647, 2147483647, 'IT', 'Italy'), +('195.184.143.128', '195.184.143.167', 2147483647, 2147483647, 'EU', 'Europe'), +('195.184.143.168', '195.184.143.175', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.184.143.176', '195.184.143.191', 2147483647, 2147483647, 'EU', 'Europe'), +('195.184.143.192', '195.184.143.223', 2147483647, 2147483647, 'FR', 'France'), +('195.184.143.224', '195.184.143.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.184.144.0', '195.184.144.255', 2147483647, 2147483647, 'NO', 'Norway'), +('195.184.145.0', '195.184.145.191', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.184.145.192', '195.184.145.223', 2147483647, 2147483647, 'DE', 'Germany'), +('195.184.145.224', '195.184.145.239', 2147483647, 2147483647, 'GR', 'Greece'), +('195.184.145.240', '195.184.145.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.184.146.0', '195.184.146.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.184.146.128', '195.184.146.191', 2147483647, 2147483647, 'NO', 'Norway'), +('195.184.146.192', '195.184.147.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.184.147.128', '195.184.147.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.184.148.0', '195.184.148.255', 2147483647, 2147483647, 'FR', 'France'), +('195.184.149.0', '195.184.149.127', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.184.149.128', '195.184.149.255', 2147483647, 2147483647, 'FR', 'France'), +('195.184.150.0', '195.184.150.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.184.151.0', '195.184.151.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.184.152.0', '195.184.152.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.184.153.0', '195.184.153.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.184.153.128', '195.184.153.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.184.154.0', '195.184.154.127', 2147483647, 2147483647, 'DE', 'Germany'), +('195.184.154.128', '195.184.154.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.184.155.0', '195.184.155.255', 2147483647, 2147483647, 'FR', 'France'), +('195.184.156.0', '195.184.156.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.184.157.0', '195.184.157.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('195.184.158.0', '195.184.158.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.184.158.32', '195.184.158.63', 2147483647, 2147483647, 'EU', 'Europe'), +('195.184.158.64', '195.184.158.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.184.158.80', '195.184.158.111', 2147483647, 2147483647, 'EU', 'Europe'), +('195.184.158.112', '195.184.158.119', 2147483647, 2147483647, 'GB', 'United Kingdom'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('195.184.158.120', '195.184.158.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.184.159.0', '195.184.159.111', 2147483647, 2147483647, 'ES', 'Spain'), +('195.184.159.112', '195.184.159.127', 2147483647, 2147483647, 'FR', 'France'), +('195.184.159.128', '195.184.159.143', 2147483647, 2147483647, 'EU', 'Europe'), +('195.184.159.144', '195.184.159.151', 2147483647, 2147483647, 'FR', 'France'), +('195.184.159.152', '195.184.159.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.184.160.0', '195.184.191.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('195.184.192.0', '195.184.223.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.184.224.0', '195.184.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.185.0.0', '195.185.186.127', 2147483647, 2147483647, 'DE', 'Germany'), +('195.185.186.128', '195.185.186.255', 2147483647, 2147483647, 'US', 'United States'), +('195.185.187.0', '195.185.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.186.0.0', '195.186.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.187.0.0', '195.187.255.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.188.0.0', '195.188.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.189.0.0', '195.189.3.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('195.189.4.0', '195.189.7.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.189.8.0', '195.189.11.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.189.12.0', '195.189.15.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.189.16.0', '195.189.19.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.189.20.0', '195.189.23.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.189.24.0', '195.189.27.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.189.28.0', '195.189.31.255', 2147483647, 2147483647, 'KZ', 'Kazakstan'), +('195.189.32.0', '195.189.35.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.189.36.0', '195.189.39.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.189.40.0', '195.189.43.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.189.44.0', '195.189.51.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.189.52.0', '195.189.55.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.189.56.0', '195.189.59.255', 2147483647, 2147483647, 'GR', 'Greece'), +('195.189.60.0', '195.189.63.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.189.64.0', '195.189.67.255', 2147483647, 2147483647, 'FR', 'France'), +('195.189.68.0', '195.189.71.255', 2147483647, 2147483647, 'KZ', 'Kazakstan'), +('195.189.72.0', '195.189.75.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.189.76.0', '195.189.79.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.189.80.0', '195.189.83.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.189.84.0', '195.189.87.255', 2147483647, 2147483647, 'FR', 'France'), +('195.189.88.0', '195.189.91.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.189.92.0', '195.189.95.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.189.96.0', '195.189.99.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.189.100.0', '195.189.103.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.189.104.0', '195.189.107.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.189.108.0', '195.189.111.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.189.112.0', '195.189.115.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.189.116.0', '195.189.119.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.189.120.0', '195.189.123.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.189.124.0', '195.189.127.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.189.128.0', '195.189.129.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('195.189.130.0', '195.189.131.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.189.132.0', '195.189.133.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.189.134.0', '195.189.137.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.189.138.0', '195.189.139.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.189.140.0', '195.189.141.255', 2147483647, 2147483647, 'IL', 'Israel'), +('195.189.142.0', '195.189.143.255', 2147483647, 2147483647, 'NO', 'Norway'), +('195.189.144.0', '195.189.145.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.189.146.0', '195.189.149.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.189.150.0', '195.189.155.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.189.156.0', '195.189.157.255', 2147483647, 2147483647, 'CY', 'Cyprus'), +('195.189.158.0', '195.189.159.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.189.160.0', '195.189.161.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.189.162.0', '195.189.163.255', 2147483647, 2147483647, 'GR', 'Greece'), +('195.189.164.0', '195.189.165.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.189.166.0', '195.189.167.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.189.168.0', '195.189.169.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.189.170.0', '195.189.171.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.189.172.0', '195.189.173.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.189.174.0', '195.189.177.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.189.178.0', '195.189.179.255', 2147483647, 2147483647, 'FR', 'France'), +('195.189.182.0', '195.189.183.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.189.184.0', '195.189.187.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.189.188.0', '195.189.189.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.189.190.0', '195.189.191.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.189.192.0', '195.189.193.255', 2147483647, 2147483647, 'IL', 'Israel'), +('195.189.194.0', '195.189.195.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.189.196.0', '195.189.197.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.189.198.0', '195.189.199.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.189.200.0', '195.189.201.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.189.202.0', '195.189.203.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.189.204.0', '195.189.205.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.189.206.0', '195.189.207.255', 2147483647, 2147483647, 'MK', 'Macedonia'), +('195.189.208.0', '195.189.209.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.189.210.0', '195.189.211.255', 2147483647, 2147483647, 'PS', 'Palestinian Territory, Occupied'), +('195.189.212.0', '195.189.213.255', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('195.189.214.0', '195.189.215.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.189.216.0', '195.189.217.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.189.218.0', '195.189.219.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.189.220.0', '195.189.221.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.189.222.0', '195.189.223.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.189.224.0', '195.189.225.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('195.189.226.0', '195.189.229.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.189.230.0', '195.189.231.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.189.232.0', '195.189.233.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.189.234.0', '195.189.235.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.189.236.0', '195.189.237.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.189.238.0', '195.189.239.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.189.240.0', '195.189.241.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.189.242.0', '195.189.243.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.189.244.0', '195.189.245.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.189.246.0', '195.189.249.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.189.250.0', '195.189.251.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.189.252.0', '195.189.253.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.189.254.0', '195.189.255.255', 2147483647, 2147483647, 'NO', 'Norway'), +('195.190.0.0', '195.190.0.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.190.1.0', '195.190.1.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.190.2.0', '195.190.2.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.190.3.0', '195.190.3.255', 2147483647, 2147483647, 'FR', 'France'), +('195.190.4.0', '195.190.4.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.190.5.0', '195.190.6.255', 2147483647, 2147483647, 'FR', 'France'), +('195.190.7.0', '195.190.9.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.190.10.0', '195.190.10.255', 2147483647, 2147483647, 'HR', 'Croatia'), +('195.190.11.0', '195.190.11.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.190.12.0', '195.190.12.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.190.13.0', '195.190.13.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.190.14.0', '195.190.14.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.190.15.0', '195.190.16.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.190.17.0', '195.190.17.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.190.18.0', '195.190.18.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.190.19.0', '195.190.19.255', 2147483647, 2147483647, 'IL', 'Israel'), +('195.190.20.0', '195.190.20.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('195.190.21.0', '195.190.21.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.190.22.0', '195.190.22.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.190.23.0', '195.190.23.255', 2147483647, 2147483647, 'IL', 'Israel'), +('195.190.24.0', '195.190.24.255', 2147483647, 2147483647, 'US', 'United States'), +('195.190.25.0', '195.190.25.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.190.26.0', '195.190.26.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.190.27.0', '195.190.27.255', 2147483647, 2147483647, 'FR', 'France'), +('195.190.28.0', '195.190.28.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.190.29.0', '195.190.29.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.190.30.0', '195.190.31.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.190.32.0', '195.190.63.255', 2147483647, 2147483647, 'GR', 'Greece'), +('195.190.64.0', '195.190.95.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.190.96.0', '195.190.127.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.190.128.0', '195.190.128.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.190.129.0', '195.190.129.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('195.190.130.0', '195.190.130.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.190.131.0', '195.190.131.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.190.132.0', '195.190.132.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.190.133.0', '195.190.133.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.190.134.0', '195.190.134.255', 2147483647, 2147483647, 'EE', 'Estonia'), +('195.190.135.0', '195.190.135.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.190.136.0', '195.190.136.255', 2147483647, 2147483647, 'HR', 'Croatia'), +('195.190.137.0', '195.190.137.255', 2147483647, 2147483647, 'FR', 'France'), +('195.190.138.0', '195.190.139.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.190.140.0', '195.190.140.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.190.141.0', '195.190.141.255', 2147483647, 2147483647, 'LT', 'Lithuania'), +('195.190.142.0', '195.190.142.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.190.143.0', '195.190.143.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.190.144.0', '195.190.144.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.190.145.0', '195.190.145.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.190.146.0', '195.190.146.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.190.147.0', '195.190.147.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.190.148.0', '195.190.148.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.190.149.0', '195.190.149.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.190.150.0', '195.190.150.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.190.151.0', '195.190.151.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.190.152.0', '195.190.152.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('195.190.153.0', '195.190.153.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.190.154.0', '195.190.154.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.190.155.0', '195.190.156.255', 2147483647, 2147483647, 'FR', 'France'), +('195.190.157.0', '195.190.157.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.190.158.0', '195.190.158.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('195.190.159.0', '195.190.159.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.190.160.0', '195.190.191.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.190.192.0', '195.190.223.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.190.224.0', '195.190.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.192.0.0', '195.192.255.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.193.0.0', '195.193.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.194.0.0', '195.195.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.196.0.0', '195.196.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.197.0.0', '195.197.68.35', 2147483647, 2147483647, 'FI', 'Finland'), +('195.197.68.36', '195.197.68.39', 2147483647, 2147483647, 'AX', 'Aland Islands'), +('195.197.68.40', '195.197.250.63', 2147483647, 2147483647, 'FI', 'Finland'), +('195.197.250.64', '195.197.250.67', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.197.250.68', '195.197.255.255', 2147483647, 2147483647, 'FI', 'Finland'), +('195.198.0.0', '195.198.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.199.0.0', '195.199.255.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('195.200.0.0', '195.200.31.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.200.32.0', '195.200.63.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.200.64.0', '195.200.65.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.200.66.0', '195.200.67.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.200.68.0', '195.200.69.255', 2147483647, 2147483647, 'FI', 'Finland'), +('195.200.70.0', '195.200.71.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.200.72.0', '195.200.73.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.200.74.0', '195.200.75.255', 2147483647, 2147483647, 'KZ', 'Kazakstan'), +('195.200.76.0', '195.200.77.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.200.78.0', '195.200.79.255', 2147483647, 2147483647, 'FR', 'France'), +('195.200.80.0', '195.200.81.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.200.82.0', '195.200.83.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.200.84.0', '195.200.85.255', 2147483647, 2147483647, 'US', 'United States'), +('195.200.86.0', '195.200.87.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.200.88.0', '195.200.89.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.200.90.0', '195.200.91.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.200.92.0', '195.200.93.255', 2147483647, 2147483647, 'NG', 'Nigeria'), +('195.200.94.0', '195.200.95.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.200.96.0', '195.200.127.255', 2147483647, 2147483647, 'FR', 'France'), +('195.200.128.0', '195.200.128.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.200.128.128', '195.200.128.191', 2147483647, 2147483647, 'FR', 'France'), +('195.200.128.192', '195.200.159.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.200.160.0', '195.200.191.255', 2147483647, 2147483647, 'FR', 'France'), +('195.200.192.0', '195.200.192.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.200.193.0', '195.200.193.255', 2147483647, 2147483647, 'GR', 'Greece'), +('195.200.194.0', '195.200.194.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.200.195.0', '195.200.195.255', 2147483647, 2147483647, 'FR', 'France'), +('195.200.196.0', '195.200.196.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.200.197.0', '195.200.197.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.200.198.0', '195.200.198.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.200.199.0', '195.200.199.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.200.200.0', '195.200.200.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.200.201.0', '195.200.201.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.200.202.0', '195.200.202.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.200.203.0', '195.200.203.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.200.204.0', '195.200.204.255', 2147483647, 2147483647, 'GR', 'Greece'), +('195.200.205.0', '195.200.205.255', 2147483647, 2147483647, 'IL', 'Israel'), +('195.200.206.0', '195.200.206.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.200.207.0', '195.200.207.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.200.208.0', '195.200.208.255', 2147483647, 2147483647, 'FR', 'France'), +('195.200.209.0', '195.200.209.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.200.210.0', '195.200.211.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.200.212.0', '195.200.212.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.200.213.0', '195.200.213.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.200.214.0', '195.200.214.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.200.215.0', '195.200.215.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.200.216.0', '195.200.216.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.200.217.0', '195.200.217.255', 2147483647, 2147483647, 'FR', 'France'), +('195.200.218.0', '195.200.218.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.200.219.0', '195.200.220.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.200.221.0', '195.200.221.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.200.222.0', '195.200.222.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('195.200.223.0', '195.200.223.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.200.224.0', '195.200.224.255', 2147483647, 2147483647, 'CA', 'Canada'), +('195.200.225.0', '195.200.228.255', 2147483647, 2147483647, 'IR', 'Iran, Islamic Republic of'), +('195.200.229.0', '195.200.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('195.201.0.0', '195.201.255.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.202.0.0', '195.202.31.255', 2147483647, 2147483647, 'FR', 'France'), +('195.202.32.0', '195.202.63.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.202.64.0', '195.202.95.255', 2147483647, 2147483647, 'KE', 'Kenya'), +('195.202.96.0', '195.202.127.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.202.128.0', '195.202.191.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.202.192.0', '195.202.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.203.0.0', '195.203.10.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.203.11.0', '195.203.11.255', 2147483647, 2147483647, 'FR', 'France'), +('195.203.12.0', '195.203.30.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.203.31.0', '195.203.32.255', 2147483647, 2147483647, 'FR', 'France'), +('195.203.33.0', '195.203.33.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.203.34.0', '195.203.34.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.203.35.0', '195.203.46.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.203.47.0', '195.203.48.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.203.49.0', '195.203.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.204.0.0', '195.204.255.255', 2147483647, 2147483647, 'NO', 'Norway'), +('195.205.0.0', '195.205.255.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.206.0.0', '195.206.31.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.206.32.0', '195.206.63.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.206.64.0', '195.206.66.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.206.67.0', '195.206.68.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.206.69.0', '195.206.74.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.206.74.128', '195.206.75.31', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.206.75.32', '195.206.80.95', 2147483647, 2147483647, 'EU', 'Europe'), +('195.206.80.96', '195.206.80.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.206.80.128', '195.206.80.159', 2147483647, 2147483647, 'EU', 'Europe'), +('195.206.80.160', '195.206.80.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.206.80.176', '195.206.85.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.206.85.128', '195.206.85.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.206.86.0', '195.206.86.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.206.87.0', '195.206.87.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.206.87.128', '195.206.87.159', 2147483647, 2147483647, 'EU', 'Europe'), +('195.206.87.160', '195.206.87.191', 2147483647, 2147483647, 'DE', 'Germany'), +('195.206.87.192', '195.206.95.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.206.96.0', '195.206.103.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.206.104.0', '195.206.107.255', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('195.206.108.0', '195.206.111.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.206.112.0', '195.206.119.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.206.120.0', '195.206.123.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.206.124.0', '195.206.127.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.206.128.0', '195.206.159.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.206.160.0', '195.206.223.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.206.224.0', '195.206.255.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.207.0.0', '195.207.138.239', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.207.138.240', '195.207.138.247', 2147483647, 2147483647, 'FR', 'France'), +('195.207.138.248', '195.207.161.79', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.207.161.80', '195.207.161.87', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.207.161.88', '195.207.255.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.208.0.0', '195.209.46.79', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.209.46.80', '195.209.46.87', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.209.46.88', '195.209.255.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.210.0.0', '195.210.31.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.210.32.0', '195.210.33.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.210.34.0', '195.210.35.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.210.36.0', '195.210.37.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.210.38.0', '195.210.39.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.210.40.0', '195.210.41.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.210.42.0', '195.210.43.255', 2147483647, 2147483647, 'FR', 'France'), +('195.210.44.0', '195.210.45.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.210.46.0', '195.210.47.255', 2147483647, 2147483647, 'KZ', 'Kazakstan'), +('195.210.48.0', '195.210.51.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.210.52.0', '195.210.53.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.210.54.0', '195.210.55.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.210.56.0', '195.210.57.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.210.58.0', '195.210.61.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.210.62.0', '195.210.63.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.210.64.0', '195.210.127.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.210.128.0', '195.210.191.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.210.192.0', '195.210.255.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('195.212.0.0', '195.212.8.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.212.9.0', '195.212.9.63', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.9.64', '195.212.10.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.212.10.128', '195.212.10.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.11.0', '195.212.12.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.212.12.224', '195.212.12.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.13.0', '195.212.13.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.212.13.96', '195.212.13.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.13.128', '195.212.15.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.212.16.0', '195.212.19.79', 2147483647, 2147483647, 'DE', 'Germany'), +('195.212.19.80', '195.212.19.95', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.19.96', '195.212.19.127', 2147483647, 2147483647, 'DE', 'Germany'), +('195.212.19.128', '195.212.19.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.20.0', '195.212.20.15', 2147483647, 2147483647, 'DE', 'Germany'), +('195.212.20.16', '195.212.20.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.212.20.32', '195.212.21.127', 2147483647, 2147483647, 'DE', 'Germany'), +('195.212.21.128', '195.212.21.159', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.21.160', '195.212.21.223', 2147483647, 2147483647, 'DE', 'Germany'), +('195.212.21.224', '195.212.21.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.22.0', '195.212.22.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.212.23.0', '195.212.23.63', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.212.23.64', '195.212.23.71', 2147483647, 2147483647, 'DE', 'Germany'), +('195.212.23.72', '195.212.23.79', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.23.80', '195.212.23.103', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.212.23.104', '195.212.23.119', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.23.120', '195.212.23.231', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.212.23.232', '195.212.23.239', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.23.240', '195.212.23.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.212.24.0', '195.212.24.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.212.24.64', '195.212.24.79', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.24.80', '195.212.24.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.212.24.128', '195.212.24.159', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.24.160', '195.212.24.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.212.25.0', '195.212.25.31', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.212.25.32', '195.212.25.79', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.25.80', '195.212.25.95', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.212.25.96', '195.212.25.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.25.128', '195.212.25.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.212.26.0', '195.212.26.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.212.27.0', '195.212.27.95', 2147483647, 2147483647, 'IT', 'Italy'), +('195.212.27.96', '195.212.27.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.27.128', '195.212.27.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.212.28.0', '195.212.31.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.212.32.0', '195.212.32.127', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.212.32.128', '195.212.32.159', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.32.160', '195.212.33.127', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.212.33.128', '195.212.33.191', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.33.192', '195.212.34.79', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.212.34.80', '195.212.34.87', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.34.88', '195.212.34.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.212.35.0', '195.212.35.255', 2147483647, 2147483647, 'NO', 'Norway'), +('195.212.36.0', '195.212.37.255', 2147483647, 2147483647, 'FI', 'Finland'), +('195.212.38.0', '195.212.39.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.212.40.0', '195.212.40.15', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.212.40.16', '195.212.40.63', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.40.64', '195.212.40.95', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.212.40.96', '195.212.40.111', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.40.112', '195.212.40.119', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.212.40.120', '195.212.40.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.40.128', '195.212.40.223', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.212.40.224', '195.212.40.231', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.40.232', '195.212.41.15', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.212.41.16', '195.212.41.31', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.212.41.32', '195.212.41.63', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.41.64', '195.212.41.127', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.212.41.128', '195.212.41.199', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.212.41.200', '195.212.41.207', 2147483647, 2147483647, 'DE', 'Germany'), +('195.212.41.208', '195.212.41.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.212.42.0', '195.212.42.15', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.42.16', '195.212.42.31', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.212.42.32', '195.212.42.63', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.42.64', '195.212.43.47', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.212.43.48', '195.212.43.95', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.43.96', '195.212.43.117', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.212.43.118', '195.212.43.119', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.43.120', '195.212.43.231', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.212.43.232', '195.212.43.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.212.43.240', '195.212.43.247', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.212.43.248', '195.212.43.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.44.0', '195.212.44.159', 2147483647, 2147483647, 'DE', 'Germany'), +('195.212.44.160', '195.212.44.175', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.44.176', '195.212.44.191', 2147483647, 2147483647, 'DE', 'Germany'), +('195.212.44.192', '195.212.44.207', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.212.44.208', '195.212.45.15', 2147483647, 2147483647, 'DE', 'Germany'), +('195.212.45.16', '195.212.45.23', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.45.24', '195.212.45.95', 2147483647, 2147483647, 'DE', 'Germany'), +('195.212.45.96', '195.212.45.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.45.128', '195.212.45.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.212.46.0', '195.212.46.15', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.46.16', '195.212.46.127', 2147483647, 2147483647, 'DE', 'Germany'), +('195.212.46.128', '195.212.46.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.47.0', '195.212.47.47', 2147483647, 2147483647, 'AT', 'Austria'), +('195.212.47.48', '195.212.47.55', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.47.56', '195.212.47.63', 2147483647, 2147483647, 'AT', 'Austria'), +('195.212.47.64', '195.212.47.95', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.47.96', '195.212.47.127', 2147483647, 2147483647, 'AT', 'Austria'), +('195.212.47.128', '195.212.47.167', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.47.168', '195.212.47.175', 2147483647, 2147483647, 'AT', 'Austria'), +('195.212.47.176', '195.212.47.223', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.47.224', '195.212.47.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.212.48.0', '195.212.48.31', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('195.212.48.32', '195.212.48.39', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.48.40', '195.212.48.47', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('195.212.48.48', '195.212.48.63', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.48.64', '195.212.48.95', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('195.212.48.96', '195.212.48.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.49.0', '195.212.49.15', 2147483647, 2147483647, 'FR', 'France'), +('195.212.49.16', '195.212.49.23', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.49.24', '195.212.49.31', 2147483647, 2147483647, 'FR', 'France'), +('195.212.49.32', '195.212.49.63', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.49.64', '195.212.49.159', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.212.49.160', '195.212.49.223', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.49.224', '195.212.50.63', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.212.50.64', '195.212.50.95', 2147483647, 2147483647, 'FR', 'France'), +('195.212.50.96', '195.212.50.119', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.50.120', '195.212.50.207', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.212.50.208', '195.212.50.223', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.50.224', '195.212.51.31', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.212.51.32', '195.212.51.47', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.51.48', '195.212.51.127', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.212.51.128', '195.212.51.135', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.51.136', '195.212.51.183', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.212.51.184', '195.212.51.207', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.51.208', '195.212.51.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.212.52.0', '195.212.52.7', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.52.8', '195.212.52.31', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.212.52.32', '195.212.52.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.212.52.64', '195.212.52.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.53.0', '195.212.53.63', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.212.53.64', '195.212.53.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.212.53.96', '195.212.53.111', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.212.53.112', '195.212.53.127', 2147483647, 2147483647, 'DE', 'Germany'), +('195.212.53.128', '195.212.55.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.212.56.0', '195.212.56.15', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.212.56.16', '195.212.56.63', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.56.64', '195.212.56.143', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.212.56.144', '195.212.56.159', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.56.160', '195.212.56.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.212.57.0', '195.212.58.63', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.58.64', '195.212.58.127', 2147483647, 2147483647, 'DE', 'Germany'), +('195.212.58.128', '195.212.58.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.59.0', '195.212.60.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.212.61.0', '195.212.61.95', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.212.61.96', '195.212.61.159', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.61.160', '195.212.61.191', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.212.61.192', '195.212.61.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.62.0', '195.212.62.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.212.63.0', '195.212.63.15', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('195.212.63.16', '195.212.63.31', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.63.32', '195.212.63.63', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('195.212.63.64', '195.212.63.71', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.63.72', '195.212.63.87', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('195.212.63.88', '195.212.63.103', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.63.104', '195.212.63.127', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('195.212.63.128', '195.212.63.135', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.63.136', '195.212.63.143', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('195.212.63.144', '195.212.63.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.64.0', '195.212.64.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.212.65.0', '195.212.66.15', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.66.16', '195.212.66.23', 2147483647, 2147483647, 'DE', 'Germany'), +('195.212.66.24', '195.212.66.183', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.66.184', '195.212.66.223', 2147483647, 2147483647, 'DE', 'Germany'), +('195.212.66.224', '195.212.67.31', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.67.32', '195.212.67.47', 2147483647, 2147483647, 'DE', 'Germany'), +('195.212.67.48', '195.212.67.55', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.212.67.56', '195.212.67.63', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.67.64', '195.212.69.95', 2147483647, 2147483647, 'DE', 'Germany'), +('195.212.69.96', '195.212.69.159', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.69.160', '195.212.69.175', 2147483647, 2147483647, 'DE', 'Germany'), +('195.212.69.176', '195.212.69.183', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.69.184', '195.212.69.199', 2147483647, 2147483647, 'DE', 'Germany'), +('195.212.69.200', '195.212.69.207', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.212.69.208', '195.212.69.239', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.69.240', '195.212.79.31', 2147483647, 2147483647, 'DE', 'Germany'), +('195.212.79.32', '195.212.79.63', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.79.64', '195.212.79.79', 2147483647, 2147483647, 'DE', 'Germany'), +('195.212.79.80', '195.212.79.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.79.128', '195.212.81.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.212.82.0', '195.212.82.63', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.82.64', '195.212.82.127', 2147483647, 2147483647, 'DE', 'Germany'), +('195.212.82.128', '195.212.82.191', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.82.192', '195.212.82.207', 2147483647, 2147483647, 'DE', 'Germany'), +('195.212.82.208', '195.212.82.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.83.0', '195.212.83.127', 2147483647, 2147483647, 'DE', 'Germany'), +('195.212.83.128', '195.212.83.159', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.83.160', '195.212.83.175', 2147483647, 2147483647, 'DE', 'Germany'), +('195.212.83.176', '195.212.83.191', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.83.192', '195.212.83.223', 2147483647, 2147483647, 'DE', 'Germany'), +('195.212.83.224', '195.212.83.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.84.0', '195.212.84.15', 2147483647, 2147483647, 'DE', 'Germany'), +('195.212.84.16', '195.212.84.111', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.84.112', '195.212.84.127', 2147483647, 2147483647, 'DE', 'Germany'), +('195.212.84.128', '195.212.88.31', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.88.32', '195.212.88.63', 2147483647, 2147483647, 'DE', 'Germany'), +('195.212.88.64', '195.212.88.159', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.88.160', '195.212.88.247', 2147483647, 2147483647, 'DE', 'Germany'), +('195.212.88.248', '195.212.88.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.89.0', '195.212.89.31', 2147483647, 2147483647, 'DE', 'Germany'), +('195.212.89.32', '195.212.89.47', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.89.48', '195.212.89.55', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.212.89.56', '195.212.89.63', 2147483647, 2147483647, 'DE', 'Germany'), +('195.212.89.64', '195.212.89.95', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.89.96', '195.212.89.127', 2147483647, 2147483647, 'DE', 'Germany'), +('195.212.89.128', '195.212.89.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.90.0', '195.212.90.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.212.91.0', '195.212.91.31', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.91.32', '195.212.91.47', 2147483647, 2147483647, 'DE', 'Germany'), +('195.212.91.48', '195.212.91.63', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.91.64', '195.212.91.95', 2147483647, 2147483647, 'DE', 'Germany'), +('195.212.91.96', '195.212.91.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.91.128', '195.212.91.183', 2147483647, 2147483647, 'DE', 'Germany'), +('195.212.91.184', '195.212.91.191', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.91.192', '195.212.91.223', 2147483647, 2147483647, 'DE', 'Germany'), +('195.212.91.224', '195.212.91.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.92.0', '195.212.92.15', 2147483647, 2147483647, 'DE', 'Germany'), +('195.212.92.16', '195.212.92.31', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.92.32', '195.212.92.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.212.93.0', '195.212.94.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.95.0', '195.212.95.55', 2147483647, 2147483647, 'DE', 'Germany'), +('195.212.95.56', '195.212.95.71', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.95.72', '195.212.95.135', 2147483647, 2147483647, 'DE', 'Germany'), +('195.212.95.136', '195.212.95.159', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.95.160', '195.212.95.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.212.96.0', '195.212.97.39', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.97.40', '195.212.97.63', 2147483647, 2147483647, 'AT', 'Austria'), +('195.212.97.64', '195.212.97.95', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.97.96', '195.212.97.127', 2147483647, 2147483647, 'AT', 'Austria'), +('195.212.97.128', '195.212.97.191', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.97.192', '195.212.97.199', 2147483647, 2147483647, 'AT', 'Austria'), +('195.212.97.200', '195.212.97.223', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.97.224', '195.212.97.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.212.98.0', '195.212.98.63', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.98.64', '195.212.98.111', 2147483647, 2147483647, 'AT', 'Austria'), +('195.212.98.112', '195.212.98.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.98.128', '195.212.98.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.212.99.0', '195.212.99.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.100.0', '195.212.100.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.212.101.0', '195.212.101.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.101.128', '195.212.101.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.212.102.0', '195.212.102.31', 2147483647, 2147483647, 'AT', 'Austria'), +('195.212.102.32', '195.212.102.159', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.102.160', '195.212.102.223', 2147483647, 2147483647, 'AT', 'Austria'), +('195.212.102.224', '195.212.103.31', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.103.32', '195.212.103.127', 2147483647, 2147483647, 'IT', 'Italy'), +('195.212.103.128', '195.212.103.135', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.103.136', '195.212.103.143', 2147483647, 2147483647, 'IT', 'Italy'), +('195.212.103.144', '195.212.103.159', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.103.160', '195.212.103.199', 2147483647, 2147483647, 'IT', 'Italy'), +('195.212.103.200', '195.212.103.215', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.103.216', '195.212.103.223', 2147483647, 2147483647, 'IT', 'Italy'), +('195.212.103.224', '195.212.103.239', 2147483647, 2147483647, 'FR', 'France'), +('195.212.103.240', '195.212.103.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.212.104.0', '195.212.104.255', 2147483647, 2147483647, 'FR', 'France'), +('195.212.105.0', '195.212.105.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.106.0', '195.212.106.31', 2147483647, 2147483647, 'FR', 'France'), +('195.212.106.32', '195.212.106.63', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.106.64', '195.212.106.95', 2147483647, 2147483647, 'FR', 'France'), +('195.212.106.96', '195.212.106.111', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.106.112', '195.212.111.231', 2147483647, 2147483647, 'FR', 'France'), +('195.212.111.232', '195.212.111.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.212.111.240', '195.212.111.255', 2147483647, 2147483647, 'FR', 'France'), +('195.212.112.0', '195.212.113.127', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.212.113.128', '195.212.115.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.116.0', '195.212.116.127', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.212.116.128', '195.212.116.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.117.0', '195.212.117.15', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.212.117.16', '195.212.117.31', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.117.32', '195.212.117.63', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.212.117.64', '195.212.117.71', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.117.72', '195.212.117.127', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.212.117.128', '195.212.117.159', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.117.160', '195.212.117.191', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.212.117.192', '195.212.117.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.118.0', '195.212.118.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.212.119.0', '195.212.119.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.120.0', '195.212.120.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.212.121.0', '195.212.121.63', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.212.121.64', '195.212.121.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.122.0', '195.212.122.15', 2147483647, 2147483647, 'FR', 'France'), +('195.212.122.16', '195.212.122.23', 2147483647, 2147483647, 'CY', 'Cyprus'), +('195.212.122.24', '195.212.122.31', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.122.32', '195.212.122.255', 2147483647, 2147483647, 'FR', 'France'), +('195.212.123.0', '195.212.123.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.124.0', '195.212.124.31', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.212.124.32', '195.212.124.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.125.0', '195.212.125.31', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.212.125.32', '195.212.125.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.126.0', '195.212.127.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.212.128.0', '195.212.131.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.132.0', '195.212.133.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('195.212.134.0', '195.212.134.47', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.134.48', '195.212.134.63', 2147483647, 2147483647, 'SK', 'Slovakia'), +('195.212.134.64', '195.212.136.71', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.136.72', '195.212.136.79', 2147483647, 2147483647, 'SK', 'Slovakia'), +('195.212.136.80', '195.212.136.159', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.136.160', '195.212.136.175', 2147483647, 2147483647, 'SK', 'Slovakia'), +('195.212.136.176', '195.212.136.199', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.136.200', '195.212.136.207', 2147483647, 2147483647, 'SK', 'Slovakia'), +('195.212.136.208', '195.212.136.231', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.136.232', '195.212.136.247', 2147483647, 2147483647, 'SK', 'Slovakia'), +('195.212.136.248', '195.212.139.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.140.0', '195.212.141.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.212.142.0', '195.212.142.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('195.212.143.0', '195.212.143.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.212.143.64', '195.212.143.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.212.143.128', '195.212.144.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.212.144.64', '195.212.144.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.144.128', '195.212.145.15', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.212.145.16', '195.212.145.31', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.145.32', '195.212.145.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.212.146.0', '195.212.147.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.148.0', '195.212.151.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.212.152.0', '195.212.153.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.154.0', '195.212.154.143', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.212.154.144', '195.212.154.159', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.154.160', '195.212.155.31', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.212.155.32', '195.212.155.63', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.155.64', '195.212.155.79', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.212.155.80', '195.212.155.87', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.155.88', '195.212.155.95', 2147483647, 2147483647, 'LT', 'Lithuania'), +('195.212.155.96', '195.212.155.103', 2147483647, 2147483647, 'LV', 'Latvia'), +('195.212.155.104', '195.212.155.111', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.212.155.112', '195.212.155.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.155.128', '195.212.155.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.212.156.0', '195.212.156.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.157.0', '195.212.157.63', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.212.157.64', '195.212.158.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.159.0', '195.212.159.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.212.160.0', '195.212.161.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.162.0', '195.212.162.255', 2147483647, 2147483647, 'FR', 'France'), +('195.212.163.0', '195.212.163.207', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.212.163.208', '195.212.163.215', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.163.216', '195.212.163.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.212.164.0', '195.212.167.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.168.0', '195.212.168.15', 2147483647, 2147483647, 'ES', 'Spain'), +('195.212.168.16', '195.212.168.23', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.168.24', '195.212.168.31', 2147483647, 2147483647, 'ES', 'Spain'), +('195.212.168.32', '195.212.168.47', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.168.48', '195.212.168.127', 2147483647, 2147483647, 'ES', 'Spain'), +('195.212.168.128', '195.212.168.191', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.168.192', '195.212.168.223', 2147483647, 2147483647, 'ES', 'Spain'), +('195.212.168.224', '195.212.168.231', 2147483647, 2147483647, 'GB', 'United Kingdom'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('195.212.168.232', '195.212.168.239', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.168.240', '195.212.168.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.212.169.0', '195.212.169.63', 2147483647, 2147483647, 'IT', 'Italy'), +('195.212.169.64', '195.212.169.95', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.169.96', '195.212.171.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.212.172.0', '195.212.175.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.176.0', '195.212.177.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.212.178.0', '195.212.178.15', 2147483647, 2147483647, 'ES', 'Spain'), +('195.212.178.16', '195.212.178.31', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.178.32', '195.212.178.63', 2147483647, 2147483647, 'ES', 'Spain'), +('195.212.178.64', '195.212.178.159', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.178.160', '195.212.178.175', 2147483647, 2147483647, 'ES', 'Spain'), +('195.212.178.176', '195.212.178.207', 2147483647, 2147483647, 'FR', 'France'), +('195.212.178.208', '195.212.178.223', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.178.224', '195.212.178.255', 2147483647, 2147483647, 'FR', 'France'), +('195.212.179.0', '195.212.179.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.212.179.32', '195.212.179.95', 2147483647, 2147483647, 'DE', 'Germany'), +('195.212.179.96', '195.212.179.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.179.128', '195.212.179.191', 2147483647, 2147483647, 'DE', 'Germany'), +('195.212.179.192', '195.212.179.231', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.179.232', '195.212.179.239', 2147483647, 2147483647, 'DE', 'Germany'), +('195.212.179.240', '195.212.179.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.180.0', '195.212.183.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.212.184.0', '195.212.184.31', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.184.32', '195.212.184.175', 2147483647, 2147483647, 'DE', 'Germany'), +('195.212.184.176', '195.212.184.239', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.184.240', '195.212.184.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.212.185.0', '195.212.185.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.212.186.0', '195.212.186.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.212.187.0', '195.212.187.31', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.212.187.32', '195.212.187.47', 2147483647, 2147483647, 'CY', 'Cyprus'), +('195.212.187.48', '195.212.187.63', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.212.187.64', '195.212.189.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.190.0', '195.212.190.63', 2147483647, 2147483647, 'FR', 'France'), +('195.212.190.64', '195.212.190.95', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.190.96', '195.212.190.255', 2147483647, 2147483647, 'FR', 'France'), +('195.212.191.0', '195.212.191.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.212.192.0', '195.212.192.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('195.212.193.0', '195.212.193.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.193.128', '195.212.193.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('195.212.194.0', '195.212.195.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.212.196.0', '195.212.196.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.212.197.0', '195.212.197.127', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('195.212.197.128', '195.212.197.135', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.197.136', '195.212.197.143', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('195.212.197.144', '195.212.197.151', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.197.152', '195.212.197.159', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('195.212.197.160', '195.212.197.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.212.197.192', '195.212.197.223', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('195.212.197.224', '195.212.197.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.198.0', '195.212.198.127', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('195.212.198.128', '195.212.199.31', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.199.32', '195.212.199.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.212.199.64', '195.212.199.71', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('195.212.199.72', '195.212.200.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.201.0', '195.212.201.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('195.212.202.0', '195.212.202.31', 2147483647, 2147483647, 'IL', 'Israel'), +('195.212.202.32', '195.212.202.39', 2147483647, 2147483647, 'CY', 'Cyprus'), +('195.212.202.40', '195.212.202.47', 2147483647, 2147483647, 'IL', 'Israel'), +('195.212.202.48', '195.212.202.63', 2147483647, 2147483647, 'CY', 'Cyprus'), +('195.212.202.64', '195.212.202.127', 2147483647, 2147483647, 'BY', 'Belarus'), +('195.212.202.128', '195.212.202.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.212.202.192', '195.212.202.255', 2147483647, 2147483647, 'IL', 'Israel'), +('195.212.203.0', '195.212.205.159', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.205.160', '195.212.205.191', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('195.212.205.192', '195.212.205.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.206.0', '195.212.206.63', 2147483647, 2147483647, 'ES', 'Spain'), +('195.212.206.64', '195.212.206.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.207.0', '195.212.207.255', 2147483647, 2147483647, 'FI', 'Finland'), +('195.212.208.0', '195.212.209.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.210.0', '195.212.210.95', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('195.212.210.96', '195.212.212.191', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.212.192', '195.212.212.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('195.212.213.0', '195.212.213.159', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.213.160', '195.212.213.191', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('195.212.213.192', '195.212.215.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.216.0', '195.212.216.31', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('195.212.216.32', '195.212.220.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.221.0', '195.212.221.63', 2147483647, 2147483647, 'GR', 'Greece'), +('195.212.221.64', '195.212.222.79', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.222.80', '195.212.222.127', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('195.212.222.128', '195.212.222.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.223.0', '195.212.223.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('195.212.224.0', '195.212.225.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.212.226.0', '195.212.226.15', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.212.226.16', '195.212.226.23', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.226.24', '195.212.226.63', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.212.226.64', '195.212.226.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.226.128', '195.212.226.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.212.227.0', '195.212.227.7', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.227.8', '195.212.227.63', 2147483647, 2147483647, 'PT', 'Portugal'), +('195.212.227.64', '195.212.227.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.228.0', '195.212.228.127', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.212.228.128', '195.212.228.159', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.228.160', '195.212.228.191', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.212.228.192', '195.212.229.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.230.0', '195.212.230.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('195.212.231.0', '195.212.231.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.231.128', '195.212.231.159', 2147483647, 2147483647, 'HU', 'Hungary'), +('195.212.231.160', '195.212.231.191', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.231.192', '195.212.231.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('195.212.232.0', '195.212.239.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.212.240.0', '195.212.241.63', 2147483647, 2147483647, 'GR', 'Greece'), +('195.212.241.64', '195.212.241.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.241.128', '195.212.242.15', 2147483647, 2147483647, 'GR', 'Greece'), +('195.212.242.16', '195.212.242.23', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.242.24', '195.212.242.31', 2147483647, 2147483647, 'GR', 'Greece'), +('195.212.242.32', '195.212.242.63', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.242.64', '195.212.242.127', 2147483647, 2147483647, 'GR', 'Greece'), +('195.212.242.128', '195.212.243.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.244.0', '195.212.244.7', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.212.244.8', '195.212.244.15', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.244.16', '195.212.244.31', 2147483647, 2147483647, 'GR', 'Greece'), +('195.212.244.32', '195.212.244.63', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.244.64', '195.212.244.255', 2147483647, 2147483647, 'GR', 'Greece'), +('195.212.245.0', '195.212.245.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.246.0', '195.212.247.255', 2147483647, 2147483647, 'GR', 'Greece'), +('195.212.248.0', '195.212.251.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.252.0', '195.212.252.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.212.253.0', '195.212.254.15', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.254.16', '195.212.254.23', 2147483647, 2147483647, 'GR', 'Greece'), +('195.212.254.24', '195.212.255.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.255.128', '195.212.255.159', 2147483647, 2147483647, 'GR', 'Greece'), +('195.212.255.160', '195.212.255.191', 2147483647, 2147483647, 'EU', 'Europe'), +('195.212.255.192', '195.212.255.255', 2147483647, 2147483647, 'GR', 'Greece'), +('195.213.0.0', '195.213.0.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.213.1.0', '195.213.1.127', 2147483647, 2147483647, 'NO', 'Norway'), +('195.213.1.128', '195.213.1.143', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.1.144', '195.213.1.147', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.213.1.148', '195.213.1.151', 2147483647, 2147483647, 'IT', 'Italy'), +('195.213.1.152', '195.213.1.159', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.213.1.160', '195.213.1.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.213.1.176', '195.213.1.191', 2147483647, 2147483647, 'IL', 'Israel'), +('195.213.1.192', '195.213.1.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.213.2.0', '195.213.2.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.213.2.128', '195.213.2.191', 2147483647, 2147483647, 'PL', 'Poland'), +('195.213.2.192', '195.213.2.223', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.2.224', '195.213.2.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.213.3.0', '195.213.3.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.213.3.160', '195.213.3.191', 2147483647, 2147483647, 'AT', 'Austria'), +('195.213.3.192', '195.213.7.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.213.8.0', '195.213.8.15', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.213.8.16', '195.213.8.31', 2147483647, 2147483647, 'ES', 'Spain'), +('195.213.8.32', '195.213.8.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.8.128', '195.213.8.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.213.9.0', '195.213.9.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.213.10.0', '195.213.10.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.11.0', '195.213.11.255', 2147483647, 2147483647, 'FR', 'France'), +('195.213.12.0', '195.213.12.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.213.13.0', '195.213.14.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.213.15.0', '195.213.15.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.213.16.0', '195.213.16.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.213.16.144', '195.213.16.159', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.213.16.160', '195.213.16.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.213.16.192', '195.213.16.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.213.17.0', '195.213.17.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.213.17.128', '195.213.17.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.213.18.0', '195.213.19.15', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.19.16', '195.213.19.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.213.20.0', '195.213.20.127', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.213.20.128', '195.213.21.31', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.21.32', '195.213.21.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.213.21.128', '195.213.22.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.23.0', '195.213.26.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.213.26.128', '195.213.26.135', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.26.136', '195.213.26.143', 2147483647, 2147483647, 'ES', 'Spain'), +('195.213.26.144', '195.213.26.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.213.27.0', '195.213.27.31', 2147483647, 2147483647, 'ZA', 'South Africa'), +('195.213.27.32', '195.213.27.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.27.128', '195.213.27.135', 2147483647, 2147483647, 'FI', 'Finland'), +('195.213.27.136', '195.213.27.159', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.27.160', '195.213.27.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.213.27.192', '195.213.27.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.28.0', '195.213.28.255', 2147483647, 2147483647, 'FR', 'France'), +('195.213.29.0', '195.213.29.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.213.30.0', '195.213.30.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.213.30.96', '195.213.30.127', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('195.213.30.128', '195.213.30.191', 2147483647, 2147483647, 'ZA', 'South Africa'), +('195.213.30.192', '195.213.30.207', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.213.30.208', '195.213.30.223', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.213.30.224', '195.213.30.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.213.31.0', '195.213.31.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.213.31.128', '195.213.31.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.32.0', '195.213.32.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.213.33.0', '195.213.33.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.213.33.128', '195.213.33.143', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.33.144', '195.213.33.159', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.213.33.160', '195.213.33.191', 2147483647, 2147483647, 'ES', 'Spain'), +('195.213.33.192', '195.213.33.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.213.34.0', '195.213.34.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.35.0', '195.213.35.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.213.36.0', '195.213.36.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.37.0', '195.213.37.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.213.38.0', '195.213.38.7', 2147483647, 2147483647, 'IL', 'Israel'), +('195.213.38.8', '195.213.38.19', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.38.20', '195.213.38.23', 2147483647, 2147483647, 'FR', 'France'), +('195.213.38.24', '195.213.38.31', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.38.32', '195.213.38.63', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('195.213.38.64', '195.213.38.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.38.128', '195.213.38.159', 2147483647, 2147483647, 'HU', 'Hungary'), +('195.213.38.160', '195.213.38.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.39.0', '195.213.39.63', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.213.39.64', '195.213.39.111', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.39.112', '195.213.39.127', 2147483647, 2147483647, 'PT', 'Portugal'), +('195.213.39.128', '195.213.39.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.213.40.0', '195.213.40.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.213.41.0', '195.213.41.31', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.213.41.32', '195.213.41.39', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.41.40', '195.213.41.63', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.213.41.64', '195.213.41.127', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.213.41.128', '195.213.42.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.213.43.0', '195.213.43.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.43.128', '195.213.43.131', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.213.43.132', '195.213.43.135', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.43.136', '195.213.43.143', 2147483647, 2147483647, 'FR', 'France'), +('195.213.43.144', '195.213.43.159', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('195.213.43.160', '195.213.43.191', 2147483647, 2147483647, 'IL', 'Israel'), +('195.213.43.192', '195.213.43.199', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.43.200', '195.213.43.207', 2147483647, 2147483647, 'DE', 'Germany'), +('195.213.43.208', '195.213.43.223', 2147483647, 2147483647, 'JP', 'Japan'), +('195.213.43.224', '195.213.43.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.44.0', '195.213.44.63', 2147483647, 2147483647, 'IL', 'Israel'), +('195.213.44.64', '195.213.44.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.213.44.128', '195.213.44.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.45.0', '195.213.45.3', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.213.45.4', '195.213.45.7', 2147483647, 2147483647, 'PL', 'Poland'), +('195.213.45.8', '195.213.45.47', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.45.48', '195.213.45.63', 2147483647, 2147483647, 'FR', 'France'), +('195.213.45.64', '195.213.45.159', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.45.160', '195.213.45.191', 2147483647, 2147483647, 'DE', 'Germany'), +('195.213.45.192', '195.213.46.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.47.0', '195.213.47.127', 2147483647, 2147483647, 'DE', 'Germany'), +('195.213.47.128', '195.213.47.255', 2147483647, 2147483647, 'FR', 'France'), +('195.213.48.0', '195.213.48.127', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.213.48.128', '195.213.48.159', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.48.160', '195.213.48.223', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.213.48.224', '195.213.48.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.213.49.0', '195.213.49.7', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.213.49.8', '195.213.49.15', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.49.16', '195.213.49.31', 2147483647, 2147483647, 'ZA', 'South Africa'), +('195.213.49.32', '195.213.49.51', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.49.52', '195.213.49.55', 2147483647, 2147483647, 'FR', 'France'), +('195.213.49.56', '195.213.49.63', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.49.64', '195.213.49.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.213.49.80', '195.213.49.95', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.213.49.96', '195.213.49.99', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.49.100', '195.213.49.103', 2147483647, 2147483647, 'FR', 'France'), +('195.213.49.104', '195.213.49.111', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.49.112', '195.213.49.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.213.49.240', '195.213.49.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.50.0', '195.213.50.63', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.213.50.64', '195.213.50.95', 2147483647, 2147483647, 'DE', 'Germany'), +('195.213.50.96', '195.213.50.111', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.213.50.112', '195.213.50.127', 2147483647, 2147483647, 'IL', 'Israel'), +('195.213.50.128', '195.213.50.159', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.213.50.160', '195.213.50.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.213.50.176', '195.213.50.191', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.50.192', '195.213.50.223', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.213.50.224', '195.213.50.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.51.0', '195.213.51.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.213.52.0', '195.213.52.31', 2147483647, 2147483647, 'NO', 'Norway'), +('195.213.52.32', '195.213.52.63', 2147483647, 2147483647, 'IE', 'Ireland'), +('195.213.52.64', '195.213.52.79', 2147483647, 2147483647, 'LI', 'Liechtenstein'), +('195.213.52.80', '195.213.52.87', 2147483647, 2147483647, 'FI', 'Finland'), +('195.213.52.88', '195.213.52.95', 2147483647, 2147483647, 'IT', 'Italy'), +('195.213.52.96', '195.213.52.111', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.213.52.112', '195.213.52.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.52.128', '195.213.52.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.213.53.0', '195.213.53.95', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('195.213.53.96', '195.213.53.127', 2147483647, 2147483647, 'GR', 'Greece'), +('195.213.53.128', '195.213.53.143', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('195.213.53.144', '195.213.54.31', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.54.32', '195.213.54.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.213.54.64', '195.213.54.71', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.213.54.72', '195.213.54.99', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.54.100', '195.213.54.103', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.213.54.104', '195.213.54.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.213.54.112', '195.213.54.159', 2147483647, 2147483647, 'FR', 'France'), +('195.213.54.160', '195.213.54.191', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.54.192', '195.213.54.223', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.213.54.224', '195.213.54.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.55.0', '195.213.55.31', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.213.55.32', '195.213.55.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.213.55.64', '195.213.55.95', 2147483647, 2147483647, 'IT', 'Italy'), +('195.213.55.96', '195.213.55.127', 2147483647, 2147483647, 'DE', 'Germany'), +('195.213.55.128', '195.213.55.191', 2147483647, 2147483647, 'AT', 'Austria'), +('195.213.55.192', '195.213.55.207', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.213.55.208', '195.213.55.215', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.213.55.216', '195.213.55.223', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.213.55.224', '195.213.55.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.213.55.240', '195.213.55.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.213.56.0', '195.213.56.31', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.56.32', '195.213.56.63', 2147483647, 2147483647, 'ZA', 'South Africa'), +('195.213.56.64', '195.213.56.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.213.56.96', '195.213.56.99', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.56.100', '195.213.56.103', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.213.56.104', '195.213.56.111', 2147483647, 2147483647, 'DE', 'Germany'), +('195.213.56.112', '195.213.56.115', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.213.56.116', '195.213.56.119', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.56.120', '195.213.56.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.213.56.128', '195.213.56.143', 2147483647, 2147483647, 'IT', 'Italy'), +('195.213.56.144', '195.213.56.159', 2147483647, 2147483647, 'DE', 'Germany'), +('195.213.56.160', '195.213.56.191', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.56.192', '195.213.56.207', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.213.56.208', '195.213.56.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.57.0', '195.213.57.31', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.213.57.32', '195.213.57.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.213.57.96', '195.213.57.103', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.57.104', '195.213.57.111', 2147483647, 2147483647, 'IE', 'Ireland'), +('195.213.57.112', '195.213.57.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.213.57.128', '195.213.57.143', 2147483647, 2147483647, 'FR', 'France'), +('195.213.57.144', '195.213.57.159', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('195.213.57.160', '195.213.57.191', 2147483647, 2147483647, 'ES', 'Spain'), +('195.213.57.192', '195.213.57.223', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.213.57.224', '195.213.57.239', 2147483647, 2147483647, 'FR', 'France'), +('195.213.57.240', '195.213.57.247', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.213.57.248', '195.213.57.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.58.0', '195.213.58.127', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.213.58.128', '195.213.58.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.213.58.160', '195.213.58.167', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.213.58.168', '195.213.58.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.213.58.176', '195.213.58.191', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.213.58.192', '195.213.58.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.213.59.0', '195.213.59.31', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.213.59.32', '195.213.59.63', 2147483647, 2147483647, 'DE', 'Germany'), +('195.213.59.64', '195.213.59.95', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.213.59.96', '195.213.59.103', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.59.104', '195.213.59.111', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.213.59.112', '195.213.59.127', 2147483647, 2147483647, 'FR', 'France'), +('195.213.59.128', '195.213.59.143', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.59.144', '195.213.59.159', 2147483647, 2147483647, 'DE', 'Germany'), +('195.213.59.160', '195.213.59.175', 2147483647, 2147483647, 'IL', 'Israel'), +('195.213.59.176', '195.213.59.223', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.59.224', '195.213.59.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.213.60.0', '195.213.60.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.213.61.0', '195.213.61.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.213.62.0', '195.213.62.63', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.213.62.64', '195.213.62.71', 2147483647, 2147483647, 'ES', 'Spain'), +('195.213.62.72', '195.213.62.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.62.128', '195.213.62.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.213.63.0', '195.213.64.15', 2147483647, 2147483647, 'IT', 'Italy'), +('195.213.64.16', '195.213.64.31', 2147483647, 2147483647, 'DE', 'Germany'), +('195.213.64.32', '195.213.64.39', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.64.40', '195.213.64.47', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.213.64.48', '195.213.64.63', 2147483647, 2147483647, 'IT', 'Italy'), +('195.213.64.64', '195.213.64.127', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.213.64.128', '195.213.64.159', 2147483647, 2147483647, 'DE', 'Germany'), +('195.213.64.160', '195.213.64.175', 2147483647, 2147483647, 'FI', 'Finland'), +('195.213.64.176', '195.213.64.191', 2147483647, 2147483647, 'IT', 'Italy'), +('195.213.64.192', '195.213.64.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.213.64.224', '195.213.65.31', 2147483647, 2147483647, 'IT', 'Italy'), +('195.213.65.32', '195.213.65.47', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.213.65.48', '195.213.65.119', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.65.120', '195.213.65.127', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.213.65.128', '195.213.65.131', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.213.65.132', '195.213.65.159', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.65.160', '195.213.65.175', 2147483647, 2147483647, 'IT', 'Italy'), +('195.213.65.176', '195.213.65.191', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('195.213.65.192', '195.213.65.199', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.65.200', '195.213.65.207', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.213.65.208', '195.213.65.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.213.65.224', '195.213.65.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.66.0', '195.213.66.127', 2147483647, 2147483647, 'IT', 'Italy'), +('195.213.66.128', '195.213.66.159', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.213.66.160', '195.213.66.183', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.66.184', '195.213.66.191', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.213.66.192', '195.213.67.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.213.67.32', '195.213.67.63', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.213.67.64', '195.213.67.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.213.67.80', '195.213.67.95', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.213.67.96', '195.213.67.103', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.213.67.104', '195.213.67.111', 2147483647, 2147483647, 'DE', 'Germany'), +('195.213.67.112', '195.213.67.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.213.67.128', '195.213.68.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.213.69.0', '195.213.69.127', 2147483647, 2147483647, 'IL', 'Israel'), +('195.213.69.128', '195.213.69.143', 2147483647, 2147483647, 'IT', 'Italy'), +('195.213.69.144', '195.213.69.159', 2147483647, 2147483647, 'TR', 'Turkey'), +('195.213.69.160', '195.213.69.191', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.69.192', '195.213.69.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.213.70.0', '195.213.70.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('195.213.71.0', '195.213.71.15', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.213.71.16', '195.213.71.31', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.213.71.32', '195.213.71.63', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.71.64', '195.213.71.95', 2147483647, 2147483647, 'FR', 'France'), +('195.213.71.96', '195.213.71.127', 2147483647, 2147483647, 'IT', 'Italy'), +('195.213.71.128', '195.213.71.163', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.213.71.164', '195.213.71.167', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.71.168', '195.213.71.175', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.213.71.176', '195.213.71.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.213.71.192', '195.213.71.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.213.72.0', '195.213.72.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.213.72.32', '195.213.72.47', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.213.72.48', '195.213.72.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.213.72.64', '195.213.72.79', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.213.72.80', '195.213.72.95', 2147483647, 2147483647, 'ES', 'Spain'), +('195.213.72.96', '195.213.72.111', 2147483647, 2147483647, 'HU', 'Hungary'), +('195.213.72.112', '195.213.72.207', 2147483647, 2147483647, 'IE', 'Ireland'), +('195.213.72.208', '195.213.72.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.213.72.224', '195.213.72.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.73.0', '195.213.73.127', 2147483647, 2147483647, 'IT', 'Italy'), +('195.213.73.128', '195.213.73.143', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.213.73.144', '195.213.73.147', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.73.148', '195.213.73.151', 2147483647, 2147483647, 'ES', 'Spain'), +('195.213.73.152', '195.213.73.155', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.73.156', '195.213.73.159', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.213.73.160', '195.213.73.163', 2147483647, 2147483647, 'FR', 'France'), +('195.213.73.164', '195.213.73.167', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.73.168', '195.213.73.171', 2147483647, 2147483647, 'GR', 'Greece'), +('195.213.73.172', '195.213.73.175', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('195.213.73.176', '195.213.73.179', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.213.73.180', '195.213.73.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.74.0', '195.213.75.255', 2147483647, 2147483647, 'NO', 'Norway'), +('195.213.76.0', '195.213.76.127', 2147483647, 2147483647, 'IT', 'Italy'), +('195.213.76.128', '195.213.76.159', 2147483647, 2147483647, 'FR', 'France'), +('195.213.76.160', '195.213.76.163', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.213.76.164', '195.213.76.167', 2147483647, 2147483647, 'NO', 'Norway'), +('195.213.76.168', '195.213.76.175', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.76.176', '195.213.76.183', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.213.76.184', '195.213.76.207', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.76.208', '195.213.76.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.213.76.224', '195.213.76.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.77.0', '195.213.77.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.213.77.64', '195.213.77.79', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.77.80', '195.213.77.95', 2147483647, 2147483647, 'IT', 'Italy'), +('195.213.77.96', '195.213.77.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.213.77.112', '195.213.77.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.78.0', '195.213.78.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.213.79.0', '195.213.79.31', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('195.213.79.32', '195.213.79.63', 2147483647, 2147483647, 'DE', 'Germany'), +('195.213.79.64', '195.213.79.95', 2147483647, 2147483647, 'IL', 'Israel'), +('195.213.79.96', '195.213.79.191', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.79.192', '195.213.79.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.213.79.224', '195.213.79.227', 2147483647, 2147483647, 'IT', 'Italy'), +('195.213.79.228', '195.213.79.231', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.213.79.232', '195.213.79.235', 2147483647, 2147483647, 'DE', 'Germany'), +('195.213.79.236', '195.213.79.239', 2147483647, 2147483647, 'AT', 'Austria'), +('195.213.79.240', '195.213.79.243', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.79.244', '195.213.79.247', 2147483647, 2147483647, 'IL', 'Israel'), +('195.213.79.248', '195.213.79.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.80.0', '195.213.80.191', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.213.80.192', '195.213.80.223', 2147483647, 2147483647, 'ES', 'Spain'), +('195.213.80.224', '195.213.80.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.213.81.0', '195.213.81.63', 2147483647, 2147483647, 'IL', 'Israel'), +('195.213.81.64', '195.213.81.103', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.213.81.104', '195.213.81.111', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.81.112', '195.213.81.119', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.213.81.120', '195.213.81.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.213.81.128', '195.213.81.143', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.213.81.144', '195.213.81.151', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.213.81.152', '195.213.81.159', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.81.160', '195.213.81.191', 2147483647, 2147483647, 'DE', 'Germany'), +('195.213.81.192', '195.213.81.207', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.213.81.208', '195.213.82.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.83.0', '195.213.83.63', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.213.83.64', '195.213.83.79', 2147483647, 2147483647, 'FR', 'France'), +('195.213.83.80', '195.213.83.95', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.213.83.96', '195.213.83.127', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.213.83.128', '195.213.83.191', 2147483647, 2147483647, 'DE', 'Germany'), +('195.213.83.192', '195.213.83.223', 2147483647, 2147483647, 'IT', 'Italy'), +('195.213.83.224', '195.213.83.255', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('195.213.84.0', '195.213.84.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.213.84.128', '195.213.84.255', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('195.213.85.0', '195.213.85.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.213.85.128', '195.213.85.135', 2147483647, 2147483647, 'DE', 'Germany'), +('195.213.85.136', '195.213.85.139', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('195.213.85.140', '195.213.85.159', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.85.160', '195.213.85.191', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('195.213.85.192', '195.213.85.223', 2147483647, 2147483647, 'NO', 'Norway'), +('195.213.85.224', '195.213.85.239', 2147483647, 2147483647, 'FI', 'Finland'), +('195.213.85.240', '195.213.85.247', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.213.85.248', '195.213.85.251', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.213.85.252', '195.213.86.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.213.86.16', '195.213.86.23', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('195.213.86.24', '195.213.86.31', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.213.86.32', '195.213.86.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.213.86.48', '195.213.86.63', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('195.213.86.64', '195.213.86.71', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.86.72', '195.213.86.79', 2147483647, 2147483647, 'AT', 'Austria'), +('195.213.86.80', '195.213.86.95', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.86.96', '195.213.86.127', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.213.86.128', '195.213.86.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.87.0', '195.213.87.63', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.213.87.64', '195.213.87.127', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('195.213.87.128', '195.213.87.159', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.87.160', '195.213.87.191', 2147483647, 2147483647, 'DE', 'Germany'), +('195.213.87.192', '195.213.87.195', 2147483647, 2147483647, 'IT', 'Italy'), +('195.213.87.196', '195.213.87.199', 2147483647, 2147483647, 'FR', 'France'), +('195.213.87.200', '195.213.87.203', 2147483647, 2147483647, 'IE', 'Ireland'), +('195.213.87.204', '195.213.87.207', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.213.87.208', '195.213.87.223', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('195.213.87.224', '195.213.87.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.213.88.0', '195.213.88.31', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.213.88.32', '195.213.88.63', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.88.64', '195.213.88.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.213.89.0', '195.213.89.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.213.90.0', '195.213.90.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.91.0', '195.213.91.127', 2147483647, 2147483647, 'IE', 'Ireland'), +('195.213.91.128', '195.213.91.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.213.92.0', '195.213.92.127', 2147483647, 2147483647, 'IT', 'Italy'), +('195.213.92.128', '195.213.92.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.213.92.192', '195.213.92.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('195.213.93.0', '195.213.93.7', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.213.93.8', '195.213.93.11', 2147483647, 2147483647, 'IT', 'Italy'), +('195.213.93.12', '195.213.93.15', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.93.16', '195.213.93.31', 2147483647, 2147483647, 'IL', 'Israel'), +('195.213.93.32', '195.213.93.63', 2147483647, 2147483647, 'ZA', 'South Africa'), +('195.213.93.64', '195.213.93.95', 2147483647, 2147483647, 'FI', 'Finland'), +('195.213.93.96', '195.213.93.111', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.213.93.112', '195.213.93.119', 2147483647, 2147483647, 'IE', 'Ireland'), +('195.213.93.120', '195.213.93.123', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.93.124', '195.213.93.127', 2147483647, 2147483647, 'ZA', 'South Africa'), +('195.213.93.128', '195.213.93.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('195.213.94.0', '195.213.94.63', 2147483647, 2147483647, 'PT', 'Portugal'), +('195.213.94.64', '195.213.94.71', 2147483647, 2147483647, 'ZA', 'South Africa'), +('195.213.94.72', '195.213.94.95', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.94.96', '195.213.94.127', 2147483647, 2147483647, 'DE', 'Germany'), +('195.213.94.128', '195.213.94.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.213.95.0', '195.213.95.15', 2147483647, 2147483647, 'FI', 'Finland'), +('195.213.95.16', '195.213.95.63', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.95.64', '195.213.95.127', 2147483647, 2147483647, 'DE', 'Germany'), +('195.213.95.128', '195.213.95.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.96.0', '195.213.96.7', 2147483647, 2147483647, 'FR', 'France'), +('195.213.96.8', '195.213.96.15', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.96.16', '195.213.97.255', 2147483647, 2147483647, 'FR', 'France'), +('195.213.98.0', '195.213.98.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.213.98.16', '195.213.98.63', 2147483647, 2147483647, 'FR', 'France'), +('195.213.98.64', '195.213.98.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.213.98.144', '195.213.98.151', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('195.213.98.152', '195.213.98.159', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.98.160', '195.213.98.175', 2147483647, 2147483647, 'FR', 'France'), +('195.213.98.176', '195.213.98.191', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.98.192', '195.213.98.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.213.98.224', '195.213.98.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.99.0', '195.213.99.31', 2147483647, 2147483647, 'ES', 'Spain'), +('195.213.99.32', '195.213.99.63', 2147483647, 2147483647, 'FR', 'France'), +('195.213.99.64', '195.213.99.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.99.128', '195.213.99.255', 2147483647, 2147483647, 'FR', 'France'), +('195.213.100.0', '195.213.100.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.213.100.32', '195.213.100.63', 2147483647, 2147483647, 'FR', 'France'), +('195.213.100.64', '195.213.100.191', 2147483647, 2147483647, 'DE', 'Germany'), +('195.213.100.192', '195.213.100.255', 2147483647, 2147483647, 'FR', 'France'), +('195.213.101.0', '195.213.101.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.213.102.0', '195.213.102.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.213.103.0', '195.213.103.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('195.213.104.0', '195.213.104.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.213.105.0', '195.213.105.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.213.106.0', '195.213.106.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.213.107.0', '195.213.107.63', 2147483647, 2147483647, 'AT', 'Austria'), +('195.213.107.64', '195.213.107.79', 2147483647, 2147483647, 'FR', 'France'), +('195.213.107.80', '195.213.107.95', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.107.96', '195.213.107.111', 2147483647, 2147483647, 'IT', 'Italy'), +('195.213.107.112', '195.213.107.115', 2147483647, 2147483647, 'ES', 'Spain'), +('195.213.107.116', '195.213.107.119', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.107.120', '195.213.107.127', 2147483647, 2147483647, 'FR', 'France'), +('195.213.107.128', '195.213.107.191', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.213.107.192', '195.213.107.255', 2147483647, 2147483647, 'FR', 'France'), +('195.213.108.0', '195.213.108.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.109.0', '195.213.109.63', 2147483647, 2147483647, 'IL', 'Israel'), +('195.213.109.64', '195.213.109.127', 2147483647, 2147483647, 'DE', 'Germany'), +('195.213.109.128', '195.213.109.143', 2147483647, 2147483647, 'ES', 'Spain'), +('195.213.109.144', '195.213.109.159', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.213.109.160', '195.213.109.191', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.109.192', '195.213.110.31', 2147483647, 2147483647, 'FR', 'France'), +('195.213.110.32', '195.213.110.63', 2147483647, 2147483647, 'ES', 'Spain'), +('195.213.110.64', '195.213.110.191', 2147483647, 2147483647, 'FR', 'France'), +('195.213.110.192', '195.213.110.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.213.111.0', '195.213.111.255', 2147483647, 2147483647, 'FR', 'France'), +('195.213.112.0', '195.213.112.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.213.113.0', '195.213.113.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.113.128', '195.213.113.163', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.213.113.164', '195.213.113.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.114.0', '195.213.114.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.213.115.0', '195.213.115.255', 2147483647, 2147483647, 'FI', 'Finland'), +('195.213.116.0', '195.213.116.15', 2147483647, 2147483647, 'IT', 'Italy'), +('195.213.116.16', '195.213.116.23', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.116.24', '195.213.116.31', 2147483647, 2147483647, 'IT', 'Italy'), +('195.213.116.32', '195.213.116.79', 2147483647, 2147483647, 'ES', 'Spain'), +('195.213.116.80', '195.213.116.87', 2147483647, 2147483647, 'IT', 'Italy'), +('195.213.116.88', '195.213.116.127', 2147483647, 2147483647, 'ES', 'Spain'), +('195.213.116.128', '195.213.116.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.213.117.0', '195.213.117.127', 2147483647, 2147483647, 'ZA', 'South Africa'), +('195.213.117.128', '195.213.117.255', 2147483647, 2147483647, 'FR', 'France'), +('195.213.118.0', '195.213.118.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.213.118.64', '195.213.118.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.118.128', '195.213.118.175', 2147483647, 2147483647, 'FR', 'France'), +('195.213.118.176', '195.213.118.191', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.213.118.192', '195.213.118.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.213.119.0', '195.213.119.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.213.120.0', '195.213.120.15', 2147483647, 2147483647, 'AT', 'Austria'), +('195.213.120.16', '195.213.120.31', 2147483647, 2147483647, 'FR', 'France'), +('195.213.120.32', '195.213.120.63', 2147483647, 2147483647, 'AT', 'Austria'), +('195.213.120.64', '195.213.120.127', 2147483647, 2147483647, 'AU', 'Australia'), +('195.213.120.128', '195.213.120.159', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.213.120.160', '195.213.120.191', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('195.213.120.192', '195.213.120.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.213.121.0', '195.213.121.255', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('195.213.122.0', '195.213.122.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.213.123.0', '195.213.123.127', 2147483647, 2147483647, 'ES', 'Spain'), +('195.213.123.128', '195.213.123.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.124.0', '195.213.124.255', 2147483647, 2147483647, 'FR', 'France'), +('195.213.125.0', '195.213.125.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.213.126.0', '195.213.126.63', 2147483647, 2147483647, 'FR', 'France'), +('195.213.126.64', '195.213.126.95', 2147483647, 2147483647, 'LI', 'Liechtenstein'), +('195.213.126.96', '195.213.126.103', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.126.104', '195.213.126.111', 2147483647, 2147483647, 'LI', 'Liechtenstein'), +('195.213.126.112', '195.213.126.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.213.126.192', '195.213.126.223', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.126.224', '195.213.126.255', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('195.213.127.0', '195.213.127.31', 2147483647, 2147483647, 'IT', 'Italy'), +('195.213.127.32', '195.213.127.39', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.213.127.40', '195.213.127.47', 2147483647, 2147483647, 'IL', 'Israel'), +('195.213.127.48', '195.213.127.159', 2147483647, 2147483647, 'IT', 'Italy'), +('195.213.127.160', '195.213.127.223', 2147483647, 2147483647, 'FR', 'France'), +('195.213.127.224', '195.213.127.239', 2147483647, 2147483647, 'PT', 'Portugal'), +('195.213.127.240', '195.213.127.255', 2147483647, 2147483647, 'FR', 'France'), +('195.213.128.0', '195.213.128.127', 2147483647, 2147483647, 'DE', 'Germany'), +('195.213.128.128', '195.213.128.159', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.128.160', '195.213.128.191', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.213.128.192', '195.213.128.223', 2147483647, 2147483647, 'DE', 'Germany'), +('195.213.128.224', '195.213.128.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.213.129.0', '195.213.130.127', 2147483647, 2147483647, 'DE', 'Germany'), +('195.213.130.128', '195.213.130.151', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.130.152', '195.213.130.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.213.130.160', '195.213.130.167', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.213.130.168', '195.213.130.199', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.130.200', '195.213.130.207', 2147483647, 2147483647, 'FI', 'Finland'), +('195.213.130.208', '195.213.130.223', 2147483647, 2147483647, 'DE', 'Germany'), +('195.213.130.224', '195.213.130.255', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('195.213.131.0', '195.213.131.47', 2147483647, 2147483647, 'DE', 'Germany'), +('195.213.131.48', '195.213.131.63', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.213.131.64', '195.213.131.127', 2147483647, 2147483647, 'DE', 'Germany'), +('195.213.131.128', '195.213.132.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.133.0', '195.213.133.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.213.133.128', '195.213.133.191', 2147483647, 2147483647, 'DE', 'Germany'), +('195.213.133.192', '195.213.133.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.213.134.0', '195.213.134.255', 2147483647, 2147483647, 'FR', 'France'), +('195.213.135.0', '195.213.135.95', 2147483647, 2147483647, 'IT', 'Italy'), +('195.213.135.96', '195.213.135.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.213.135.128', '195.213.135.159', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.135.160', '195.213.135.191', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.213.135.192', '195.213.135.223', 2147483647, 2147483647, 'DE', 'Germany'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('195.213.135.224', '195.213.135.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.136.0', '195.213.136.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.213.137.0', '195.213.137.15', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.213.137.16', '195.213.137.31', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.137.32', '195.213.137.63', 2147483647, 2147483647, 'DE', 'Germany'), +('195.213.137.64', '195.213.137.127', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.213.137.128', '195.213.137.159', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.213.137.160', '195.213.137.191', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.137.192', '195.213.137.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.213.138.0', '195.213.138.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.213.138.32', '195.213.138.63', 2147483647, 2147483647, 'FR', 'France'), +('195.213.138.64', '195.213.138.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.213.138.192', '195.213.138.223', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.213.138.224', '195.213.138.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.139.0', '195.213.139.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.213.140.0', '195.213.140.63', 2147483647, 2147483647, 'DE', 'Germany'), +('195.213.140.64', '195.213.140.127', 2147483647, 2147483647, 'ZA', 'South Africa'), +('195.213.140.128', '195.213.140.159', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('195.213.140.160', '195.213.140.191', 2147483647, 2147483647, 'HU', 'Hungary'), +('195.213.140.192', '195.213.140.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.213.141.0', '195.213.141.127', 2147483647, 2147483647, 'DE', 'Germany'), +('195.213.141.128', '195.213.141.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.213.142.0', '195.213.143.31', 2147483647, 2147483647, 'DE', 'Germany'), +('195.213.143.32', '195.213.143.63', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.143.64', '195.213.143.127', 2147483647, 2147483647, 'FR', 'France'), +('195.213.143.128', '195.213.143.143', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.143.144', '195.213.143.159', 2147483647, 2147483647, 'EG', 'Egypt'), +('195.213.143.160', '195.213.143.191', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.143.192', '195.213.143.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.213.144.0', '195.213.144.63', 2147483647, 2147483647, 'DE', 'Germany'), +('195.213.144.64', '195.213.144.95', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.144.96', '195.213.144.111', 2147483647, 2147483647, 'PL', 'Poland'), +('195.213.144.112', '195.213.146.63', 2147483647, 2147483647, 'DE', 'Germany'), +('195.213.146.64', '195.213.146.95', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.213.146.96', '195.213.146.103', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.213.146.104', '195.213.146.111', 2147483647, 2147483647, 'ZA', 'South Africa'), +('195.213.146.112', '195.213.146.127', 2147483647, 2147483647, 'FR', 'France'), +('195.213.146.128', '195.213.146.191', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.146.192', '195.213.146.223', 2147483647, 2147483647, 'ZA', 'South Africa'), +('195.213.146.224', '195.213.146.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.213.147.0', '195.213.147.127', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.213.147.128', '195.213.147.207', 2147483647, 2147483647, 'DE', 'Germany'), +('195.213.147.208', '195.213.147.223', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.147.224', '195.213.147.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.213.148.0', '195.213.148.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.213.149.0', '195.213.149.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.150.0', '195.213.150.15', 2147483647, 2147483647, 'DE', 'Germany'), +('195.213.150.16', '195.213.150.31', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.150.32', '195.213.150.63', 2147483647, 2147483647, 'FR', 'France'), +('195.213.150.64', '195.213.150.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.150.128', '195.213.150.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.213.151.0', '195.213.151.255', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('195.213.152.0', '195.213.152.31', 2147483647, 2147483647, 'AT', 'Austria'), +('195.213.152.32', '195.213.152.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.213.152.64', '195.213.152.127', 2147483647, 2147483647, 'FR', 'France'), +('195.213.152.128', '195.213.152.255', 2147483647, 2147483647, 'IL', 'Israel'), +('195.213.153.0', '195.213.153.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.154.0', '195.213.154.255', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('195.213.155.0', '195.213.155.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.213.156.0', '195.213.156.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.157.0', '195.213.157.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.213.158.0', '195.213.158.31', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.213.158.32', '195.213.158.35', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.158.36', '195.213.158.39', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.213.158.40', '195.213.158.43', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.213.158.44', '195.213.158.63', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.158.64', '195.213.158.127', 2147483647, 2147483647, 'DE', 'Germany'), +('195.213.158.128', '195.213.158.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.159.0', '195.213.159.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.213.159.64', '195.213.159.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.213.159.128', '195.213.159.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.213.160.0', '195.213.160.115', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.213.160.116', '195.213.160.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.160.128', '195.213.161.15', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.213.161.16', '195.213.161.31', 2147483647, 2147483647, 'FI', 'Finland'), +('195.213.161.32', '195.213.161.71', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.213.161.72', '195.213.161.75', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.213.161.76', '195.213.161.79', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.161.80', '195.213.161.95', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.213.161.96', '195.213.161.127', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.213.161.128', '195.213.162.31', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.213.162.32', '195.213.162.63', 2147483647, 2147483647, 'NO', 'Norway'), +('195.213.162.64', '195.213.162.127', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.213.162.128', '195.213.162.151', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.213.162.152', '195.213.162.159', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('195.213.162.160', '195.213.162.191', 2147483647, 2147483647, 'FR', 'France'), +('195.213.162.192', '195.213.162.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.213.163.0', '195.213.163.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.213.164.0', '195.213.164.127', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.213.164.128', '195.213.164.191', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.164.192', '195.213.165.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.213.165.64', '195.213.165.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.165.128', '195.213.165.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.213.166.0', '195.213.166.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.213.167.0', '195.213.167.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.167.128', '195.213.167.191', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.213.167.192', '195.213.167.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.168.0', '195.213.169.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.213.170.0', '195.213.170.31', 2147483647, 2147483647, 'IE', 'Ireland'), +('195.213.170.32', '195.213.170.63', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.213.170.64', '195.213.170.79', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.170.80', '195.213.170.95', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.213.170.96', '195.213.170.111', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.213.170.112', '195.213.170.127', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.213.170.128', '195.213.170.255', 2147483647, 2147483647, 'NO', 'Norway'), +('195.213.171.0', '195.213.172.31', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.213.172.32', '195.213.172.63', 2147483647, 2147483647, 'ES', 'Spain'), +('195.213.172.64', '195.213.172.127', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.213.172.128', '195.213.172.159', 2147483647, 2147483647, 'LI', 'Liechtenstein'), +('195.213.172.160', '195.213.172.191', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.213.172.192', '195.213.172.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.173.0', '195.213.173.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.213.174.0', '195.213.175.127', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.213.175.128', '195.213.175.255', 2147483647, 2147483647, 'NO', 'Norway'), +('195.213.176.0', '195.213.176.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.213.176.64', '195.213.176.127', 2147483647, 2147483647, 'PL', 'Poland'), +('195.213.176.128', '195.213.176.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.213.177.0', '195.213.177.19', 2147483647, 2147483647, 'NO', 'Norway'), +('195.213.177.20', '195.213.177.23', 2147483647, 2147483647, 'DE', 'Germany'), +('195.213.177.24', '195.213.177.47', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.177.48', '195.213.177.63', 2147483647, 2147483647, 'NO', 'Norway'), +('195.213.177.64', '195.213.177.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.177.128', '195.213.177.191', 2147483647, 2147483647, 'NO', 'Norway'), +('195.213.177.192', '195.213.178.63', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.178.64', '195.213.178.95', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.213.178.96', '195.213.178.111', 2147483647, 2147483647, 'NO', 'Norway'), +('195.213.178.112', '195.213.178.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.178.128', '195.213.178.255', 2147483647, 2147483647, 'FI', 'Finland'), +('195.213.179.0', '195.213.179.255', 2147483647, 2147483647, 'NO', 'Norway'), +('195.213.180.0', '195.213.181.127', 2147483647, 2147483647, 'FI', 'Finland'), +('195.213.181.128', '195.213.181.159', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.213.181.160', '195.213.181.191', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.181.192', '195.213.181.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.213.182.0', '195.213.182.31', 2147483647, 2147483647, 'FI', 'Finland'), +('195.213.182.32', '195.213.182.63', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.182.64', '195.213.182.95', 2147483647, 2147483647, 'DE', 'Germany'), +('195.213.182.96', '195.213.182.111', 2147483647, 2147483647, 'FI', 'Finland'), +('195.213.182.112', '195.213.182.119', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.182.120', '195.213.182.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.213.182.128', '195.213.182.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.213.183.0', '195.213.183.255', 2147483647, 2147483647, 'FI', 'Finland'), +('195.213.184.0', '195.213.184.63', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.184.64', '195.213.184.79', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.213.184.80', '195.213.184.95', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.184.96', '195.213.184.127', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.213.184.128', '195.213.184.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.213.185.0', '195.213.185.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.213.186.0', '195.213.186.127', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.213.186.128', '195.213.186.255', 2147483647, 2147483647, 'FI', 'Finland'), +('195.213.187.0', '195.213.187.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.213.188.0', '195.213.188.95', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.213.188.96', '195.213.188.127', 2147483647, 2147483647, 'NO', 'Norway'), +('195.213.188.128', '195.213.188.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.189.0', '195.213.189.63', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.213.189.64', '195.213.189.79', 2147483647, 2147483647, 'FR', 'France'), +('195.213.189.80', '195.213.189.95', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.189.96', '195.213.189.127', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.213.189.128', '195.213.189.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.190.0', '195.213.190.255', 2147483647, 2147483647, 'FR', 'France'), +('195.213.191.0', '195.213.191.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.213.192.0', '195.213.193.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.213.194.0', '195.213.194.63', 2147483647, 2147483647, 'FR', 'France'), +('195.213.194.64', '195.213.194.79', 2147483647, 2147483647, 'IT', 'Italy'), +('195.213.194.80', '195.213.194.95', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.194.96', '195.213.194.127', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.213.194.128', '195.213.194.191', 2147483647, 2147483647, 'FR', 'France'), +('195.213.194.192', '195.213.194.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.195.0', '195.213.196.31', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.213.196.32', '195.213.196.47', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.213.196.48', '195.213.196.63', 2147483647, 2147483647, 'FI', 'Finland'), +('195.213.196.64', '195.213.196.95', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.213.196.96', '195.213.196.111', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.196.112', '195.213.196.127', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.213.196.128', '195.213.196.191', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.213.196.192', '195.213.197.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.197.128', '195.213.197.255', 2147483647, 2147483647, 'FR', 'France'), +('195.213.198.0', '195.213.198.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.213.199.0', '195.213.199.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('195.213.200.0', '195.213.203.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.213.204.0', '195.213.204.159', 2147483647, 2147483647, 'DE', 'Germany'), +('195.213.204.160', '195.213.204.191', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.213.204.192', '195.213.204.239', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.204.240', '195.213.205.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.213.206.0', '195.213.207.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.207.128', '195.213.207.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.213.208.0', '195.213.208.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.213.209.0', '195.213.209.255', 2147483647, 2147483647, 'FI', 'Finland'), +('195.213.210.0', '195.213.210.127', 2147483647, 2147483647, 'FR', 'France'), +('195.213.210.128', '195.213.210.159', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.210.160', '195.213.210.175', 2147483647, 2147483647, 'PL', 'Poland'), +('195.213.210.176', '195.213.210.191', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.213.210.192', '195.213.210.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.211.0', '195.213.211.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.213.212.0', '195.213.212.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.213.213.0', '195.213.213.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.213.214.0', '195.213.214.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.213.215.0', '195.213.215.255', 2147483647, 2147483647, 'FI', 'Finland'), +('195.213.216.0', '195.213.216.127', 2147483647, 2147483647, 'FR', 'France'), +('195.213.216.128', '195.213.216.191', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.213.216.192', '195.213.216.207', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.213.216.208', '195.213.216.223', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.216.224', '195.213.216.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.213.217.0', '195.213.217.63', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.217.64', '195.213.217.127', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.213.217.128', '195.213.217.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.218.0', '195.213.218.127', 2147483647, 2147483647, 'DE', 'Germany'), +('195.213.218.128', '195.213.218.255', 2147483647, 2147483647, 'FI', 'Finland'), +('195.213.219.0', '195.213.219.15', 2147483647, 2147483647, 'IR', 'Iran, Islamic Republic of'), +('195.213.219.16', '195.213.219.31', 2147483647, 2147483647, 'ES', 'Spain'), +('195.213.219.32', '195.213.219.95', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.219.96', '195.213.219.127', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.213.219.128', '195.213.219.255', 2147483647, 2147483647, 'FR', 'France'), +('195.213.220.0', '195.213.220.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.213.221.0', '195.213.221.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.213.222.0', '195.213.222.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.213.223.0', '195.213.223.159', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.223.160', '195.213.223.191', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.213.223.192', '195.213.223.255', 2147483647, 2147483647, 'FR', 'France'), +('195.213.224.0', '195.213.224.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.213.225.0', '195.213.225.63', 2147483647, 2147483647, 'IL', 'Israel'), +('195.213.225.64', '195.213.225.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.226.0', '195.213.226.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.213.227.0', '195.213.227.255', 2147483647, 2147483647, 'IL', 'Israel'), +('195.213.228.0', '195.213.228.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.213.229.0', '195.213.229.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.230.0', '195.213.230.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.213.231.0', '195.213.231.255', 2147483647, 2147483647, 'IL', 'Israel'), +('195.213.232.0', '195.213.232.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.233.0', '195.213.233.63', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.213.233.64', '195.213.233.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.233.128', '195.213.233.191', 2147483647, 2147483647, 'FR', 'France'), +('195.213.233.192', '195.213.233.223', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.233.224', '195.213.233.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.213.234.0', '195.213.234.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.235.0', '195.213.235.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('195.213.236.0', '195.213.236.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('195.213.237.0', '195.213.237.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.238.0', '195.213.238.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('195.213.239.0', '195.213.239.127', 2147483647, 2147483647, 'IT', 'Italy'), +('195.213.239.128', '195.213.240.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.241.0', '195.213.241.127', 2147483647, 2147483647, 'IT', 'Italy'), +('195.213.241.128', '195.213.241.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.213.242.0', '195.213.242.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.242.128', '195.213.242.191', 2147483647, 2147483647, 'FR', 'France'), +('195.213.242.192', '195.213.242.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.243.0', '195.213.243.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.213.244.0', '195.213.244.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.245.0', '195.213.246.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.213.247.0', '195.213.247.255', 2147483647, 2147483647, 'FR', 'France'), +('195.213.248.0', '195.213.248.255', 2147483647, 2147483647, 'US', 'United States'), +('195.213.249.0', '195.213.249.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('195.213.250.0', '195.213.250.127', 2147483647, 2147483647, 'DE', 'Germany'), +('195.213.250.128', '195.213.250.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.251.0', '195.213.251.3', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.213.251.4', '195.213.251.107', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.251.108', '195.213.251.111', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.213.251.112', '195.213.251.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.252.0', '195.213.252.31', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.213.252.32', '195.213.252.47', 2147483647, 2147483647, 'PL', 'Poland'), +('195.213.252.48', '195.213.252.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.252.128', '195.213.252.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('195.213.253.0', '195.213.253.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.253.128', '195.213.253.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.213.254.0', '195.213.254.191', 2147483647, 2147483647, 'EU', 'Europe'), +('195.213.254.192', '195.213.254.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.213.255.0', '195.213.255.31', 2147483647, 2147483647, 'FR', 'France'), +('195.213.255.32', '195.213.255.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.213.255.48', '195.213.255.127', 2147483647, 2147483647, 'FR', 'France'), +('195.213.255.128', '195.213.255.191', 2147483647, 2147483647, 'LV', 'Latvia'), +('195.213.255.192', '195.213.255.255', 2147483647, 2147483647, 'FR', 'France'), +('195.214.0.0', '195.214.51.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.214.52.0', '195.214.52.31', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('195.214.52.32', '195.214.52.39', 2147483647, 2147483647, 'US', 'United States'), +('195.214.52.40', '195.214.52.127', 2147483647, 2147483647, 'DE', 'Germany'), +('195.214.52.128', '195.214.53.31', 2147483647, 2147483647, 'US', 'United States'), +('195.214.53.32', '195.214.55.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.214.56.0', '195.214.56.31', 2147483647, 2147483647, 'US', 'United States'), +('195.214.56.32', '195.214.56.63', 2147483647, 2147483647, 'DE', 'Germany'), +('195.214.56.64', '195.214.56.95', 2147483647, 2147483647, 'US', 'United States'), +('195.214.56.96', '195.214.56.127', 2147483647, 2147483647, 'DE', 'Germany'), +('195.214.56.128', '195.214.56.159', 2147483647, 2147483647, 'US', 'United States'), +('195.214.56.160', '195.214.56.191', 2147483647, 2147483647, 'DE', 'Germany'), +('195.214.56.192', '195.214.56.223', 2147483647, 2147483647, 'FR', 'France'), +('195.214.56.224', '195.214.59.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.214.60.0', '195.214.60.31', 2147483647, 2147483647, 'US', 'United States'), +('195.214.60.32', '195.214.95.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.214.96.0', '195.214.127.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.214.128.0', '195.214.191.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('195.214.192.0', '195.214.199.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.214.200.0', '195.214.207.255', 2147483647, 2147483647, 'NO', 'Norway'), +('195.214.208.0', '195.214.215.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.214.216.0', '195.214.219.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.214.220.0', '195.214.223.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.214.224.0', '195.214.231.255', 2147483647, 2147483647, 'FR', 'France'), +('195.214.232.0', '195.214.235.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.214.236.0', '195.214.239.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.214.240.0', '195.214.247.255', 2147483647, 2147483647, 'FR', 'France'), +('195.214.248.0', '195.214.255.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('195.215.0.0', '195.215.255.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.216.0.0', '195.216.31.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.216.32.0', '195.216.63.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.216.64.0', '195.216.82.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.216.83.0', '195.216.83.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.216.83.16', '195.216.95.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.216.96.0', '195.216.127.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.216.128.0', '195.216.159.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.216.160.0', '195.216.191.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('195.216.192.0', '195.216.193.255', 2147483647, 2147483647, 'FR', 'France'), +('195.216.194.0', '195.216.195.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.216.196.0', '195.216.197.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.216.198.0', '195.216.199.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.216.200.0', '195.216.201.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.216.202.0', '195.216.203.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.216.204.0', '195.216.207.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.216.208.0', '195.216.209.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.216.210.0', '195.216.213.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.216.214.0', '195.216.215.255', 2147483647, 2147483647, 'FR', 'France'), +('195.216.216.0', '195.216.217.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.216.218.0', '195.216.219.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.216.220.0', '195.216.221.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.216.222.0', '195.216.223.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.216.224.0', '195.216.224.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.216.225.0', '195.216.225.255', 2147483647, 2147483647, 'US', 'United States'), +('195.216.226.0', '195.216.226.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.216.227.0', '195.216.227.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.216.228.0', '195.216.228.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('195.216.229.0', '195.216.229.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.216.230.0', '195.216.230.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.216.231.0', '195.216.231.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.216.232.0', '195.216.232.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('195.216.233.0', '195.216.233.255', 2147483647, 2147483647, 'LT', 'Lithuania'), +('195.216.234.0', '195.216.234.255', 2147483647, 2147483647, 'MT', 'Malta'), +('195.216.235.0', '195.216.235.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.216.236.0', '195.216.236.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('195.216.237.0', '195.216.237.255', 2147483647, 2147483647, 'KG', 'Kyrgyzstan'), +('195.216.238.0', '195.216.238.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.216.239.0', '195.216.239.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.216.240.0', '195.216.240.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('195.216.241.0', '195.216.241.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.216.242.0', '195.216.242.255', 2147483647, 2147483647, 'FR', 'France'), +('195.216.243.0', '195.216.243.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.216.244.0', '195.216.244.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.216.245.0', '195.216.245.255', 2147483647, 2147483647, 'NG', 'Nigeria'), +('195.216.246.0', '195.216.246.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.216.247.0', '195.216.247.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.216.248.0', '195.216.248.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.216.249.0', '195.216.249.255', 2147483647, 2147483647, 'FR', 'France'), +('195.216.250.0', '195.216.250.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.216.251.0', '195.216.251.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('195.216.252.0', '195.216.252.255', 2147483647, 2147483647, 'IL', 'Israel'), +('195.216.253.0', '195.216.253.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.216.254.0', '195.216.254.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.216.255.0', '195.216.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.217.0.0', '195.217.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.218.0.0', '195.218.31.255', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('195.218.32.0', '195.218.63.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.218.64.0', '195.218.95.255', 2147483647, 2147483647, 'FI', 'Finland'), +('195.218.96.0', '195.218.127.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('195.218.128.0', '195.218.255.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.219.0.0', '195.219.1.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.219.2.0', '195.219.2.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.219.3.0', '195.219.3.31', 2147483647, 2147483647, 'ES', 'Spain'), +('195.219.3.32', '195.219.3.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.219.3.64', '195.219.3.135', 2147483647, 2147483647, 'DE', 'Germany'), +('195.219.3.136', '195.219.3.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.219.3.144', '195.219.3.191', 2147483647, 2147483647, 'EU', 'Europe'), +('195.219.3.192', '195.219.3.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.219.4.0', '195.219.7.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.219.8.0', '195.219.11.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.219.12.0', '195.219.13.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.219.14.0', '195.219.14.127', 2147483647, 2147483647, 'ES', 'Spain'), +('195.219.14.128', '195.219.14.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.219.15.0', '195.219.15.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.219.16.0', '195.219.23.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.219.24.0', '195.219.24.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.219.25.0', '195.219.25.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.219.26.0', '195.219.26.255', 2147483647, 2147483647, 'FR', 'France'), +('195.219.27.0', '195.219.27.255', 2147483647, 2147483647, 'YE', 'Yemen'), +('195.219.28.0', '195.219.28.31', 2147483647, 2147483647, 'BH', 'Bahrain'), +('195.219.28.32', '195.219.28.39', 2147483647, 2147483647, 'DE', 'Germany'), +('195.219.28.40', '195.219.28.47', 2147483647, 2147483647, 'CY', 'Cyprus'), +('195.219.28.48', '195.219.28.63', 2147483647, 2147483647, 'ES', 'Spain'), +('195.219.28.64', '195.219.28.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.219.28.128', '195.219.28.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.219.29.0', '195.219.29.255', 2147483647, 2147483647, 'YE', 'Yemen'), +('195.219.30.0', '195.219.30.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.219.31.0', '195.219.31.255', 2147483647, 2147483647, 'YE', 'Yemen'), +('195.219.32.0', '195.219.36.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.219.36.128', '195.219.36.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.219.37.0', '195.219.37.255', 2147483647, 2147483647, 'YE', 'Yemen'), +('195.219.38.0', '195.219.38.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.219.39.0', '195.219.39.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.219.40.0', '195.219.47.255', 2147483647, 2147483647, 'QA', 'Qatar'), +('195.219.48.0', '195.219.48.31', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('195.219.48.32', '195.219.48.63', 2147483647, 2147483647, 'EU', 'Europe'), +('195.219.48.64', '195.219.48.127', 2147483647, 2147483647, 'DE', 'Germany'), +('195.219.48.128', '195.219.48.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.219.48.192', '195.219.48.255', 2147483647, 2147483647, 'FR', 'France'), +('195.219.49.0', '195.219.49.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.219.49.64', '195.219.49.127', 2147483647, 2147483647, 'FR', 'France'), +('195.219.49.128', '195.219.49.135', 2147483647, 2147483647, 'DE', 'Germany'), +('195.219.49.136', '195.219.49.143', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.219.49.144', '195.219.49.159', 2147483647, 2147483647, 'DE', 'Germany'), +('195.219.49.160', '195.219.49.191', 2147483647, 2147483647, 'ES', 'Spain'), +('195.219.49.192', '195.219.49.239', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.219.49.240', '195.219.49.255', 2147483647, 2147483647, 'IR', 'Iran, Islamic Republic of'), +('195.219.50.0', '195.219.50.255', 2147483647, 2147483647, 'FR', 'France'), +('195.219.51.0', '195.219.51.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.219.52.0', '195.219.53.255', 2147483647, 2147483647, 'KW', 'Kuwait'), +('195.219.54.0', '195.219.58.63', 2147483647, 2147483647, 'ES', 'Spain'), +('195.219.58.64', '195.219.58.79', 2147483647, 2147483647, 'DE', 'Germany'), +('195.219.58.80', '195.219.58.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.219.58.128', '195.219.59.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.219.60.0', '195.219.60.191', 2147483647, 2147483647, 'EU', 'Europe'), +('195.219.60.192', '195.219.60.255', 2147483647, 2147483647, 'FR', 'France'), +('195.219.61.0', '195.219.63.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.219.64.0', '195.219.64.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.219.65.0', '195.219.65.255', 2147483647, 2147483647, 'YE', 'Yemen'), +('195.219.66.0', '195.219.66.7', 2147483647, 2147483647, 'DE', 'Germany'), +('195.219.66.8', '195.219.66.31', 2147483647, 2147483647, 'ES', 'Spain'), +('195.219.66.32', '195.219.66.95', 2147483647, 2147483647, 'EU', 'Europe'), +('195.219.66.96', '195.219.66.127', 2147483647, 2147483647, 'ES', 'Spain'), +('195.219.66.128', '195.219.67.191', 2147483647, 2147483647, 'EU', 'Europe'), +('195.219.67.192', '195.219.67.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.219.68.0', '195.219.69.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.219.70.0', '195.219.70.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.219.71.0', '195.219.71.255', 2147483647, 2147483647, 'IR', 'Iran, Islamic Republic of'), +('195.219.72.0', '195.219.72.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.219.72.128', '195.219.72.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.219.73.0', '195.219.73.15', 2147483647, 2147483647, 'PL', 'Poland'), +('195.219.73.16', '195.219.73.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.219.73.32', '195.219.73.63', 2147483647, 2147483647, 'DE', 'Germany'), +('195.219.73.64', '195.219.73.79', 2147483647, 2147483647, 'FR', 'France'), +('195.219.73.80', '195.219.73.95', 2147483647, 2147483647, 'DE', 'Germany'), +('195.219.73.96', '195.219.73.127', 2147483647, 2147483647, 'ES', 'Spain'), +('195.219.73.128', '195.219.77.207', 2147483647, 2147483647, 'EU', 'Europe'), +('195.219.77.208', '195.219.77.223', 2147483647, 2147483647, 'IT', 'Italy'), +('195.219.77.224', '195.219.79.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.219.80.0', '195.219.81.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.219.82.0', '195.219.82.63', 2147483647, 2147483647, 'EU', 'Europe'), +('195.219.82.64', '195.219.82.79', 2147483647, 2147483647, 'ES', 'Spain'), +('195.219.82.80', '195.219.82.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.219.82.128', '195.219.82.135', 2147483647, 2147483647, 'DE', 'Germany'), +('195.219.82.136', '195.219.82.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.219.82.144', '195.219.82.175', 2147483647, 2147483647, 'EU', 'Europe'), +('195.219.82.176', '195.219.82.191', 2147483647, 2147483647, 'DE', 'Germany'), +('195.219.82.192', '195.219.82.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.219.83.0', '195.219.83.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.219.84.0', '195.219.87.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.219.88.0', '195.219.88.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.219.89.0', '195.219.89.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.219.90.0', '195.219.90.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.219.91.0', '195.219.91.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.219.92.0', '195.219.92.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.219.93.0', '195.219.93.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.219.94.0', '195.219.95.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.219.96.0', '195.219.98.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.219.99.0', '195.219.99.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.219.100.0', '195.219.101.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.219.102.0', '195.219.111.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.219.112.0', '195.219.112.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.219.113.0', '195.219.113.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.219.113.128', '195.219.113.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.219.113.176', '195.219.113.191', 2147483647, 2147483647, 'ES', 'Spain'), +('195.219.113.192', '195.219.113.199', 2147483647, 2147483647, 'DE', 'Germany'), +('195.219.113.200', '195.219.113.207', 2147483647, 2147483647, 'ES', 'Spain'), +('195.219.113.208', '195.219.113.223', 2147483647, 2147483647, 'EU', 'Europe'), +('195.219.113.224', '195.219.113.255', 2147483647, 2147483647, 'US', 'United States'), +('195.219.114.0', '195.219.114.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.219.115.0', '195.219.115.7', 2147483647, 2147483647, 'DE', 'Germany'), +('195.219.115.8', '195.219.115.15', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.219.115.16', '195.219.115.31', 2147483647, 2147483647, 'EU', 'Europe'), +('195.219.115.32', '195.219.115.127', 2147483647, 2147483647, 'ES', 'Spain'), +('195.219.115.128', '195.219.115.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.219.116.0', '195.219.121.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.219.122.0', '195.219.127.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.219.128.0', '195.219.128.255', 2147483647, 2147483647, 'IR', 'Iran, Islamic Republic of'), +('195.219.129.0', '195.219.129.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.219.129.128', '195.219.129.255', 2147483647, 2147483647, 'IR', 'Iran, Islamic Republic of'), +('195.219.130.0', '195.219.130.0', 2147483647, 2147483647, 'ES', 'Spain'), +('195.219.130.1', '195.219.130.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.219.131.0', '195.219.131.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.219.132.0', '195.219.132.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.219.133.0', '195.219.133.7', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.219.133.8', '195.219.133.15', 2147483647, 2147483647, 'DE', 'Germany'), +('195.219.133.16', '195.219.133.23', 2147483647, 2147483647, 'ES', 'Spain'), +('195.219.133.24', '195.219.133.31', 2147483647, 2147483647, 'DE', 'Germany'), +('195.219.133.32', '195.219.133.127', 2147483647, 2147483647, 'ES', 'Spain'), +('195.219.133.128', '195.219.133.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.219.134.0', '195.219.135.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.219.136.0', '195.219.137.255', 2147483647, 2147483647, 'US', 'United States'), +('195.219.138.0', '195.219.139.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.219.140.0', '195.219.140.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.219.141.0', '195.219.141.63', 2147483647, 2147483647, 'EU', 'Europe'), +('195.219.141.64', '195.219.141.95', 2147483647, 2147483647, 'FR', 'France'), +('195.219.141.96', '195.219.141.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.219.141.128', '195.219.141.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.219.142.0', '195.219.142.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.219.143.0', '195.219.143.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.219.144.0', '195.219.145.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.219.146.0', '195.219.147.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.219.148.0', '195.219.148.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.219.149.0', '195.219.149.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.219.150.0', '195.219.150.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.219.151.0', '195.219.152.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.219.153.0', '195.219.153.255', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('195.219.154.0', '195.219.154.255', 2147483647, 2147483647, 'ML', 'Mali'), +('195.219.155.0', '195.219.157.135', 2147483647, 2147483647, 'ES', 'Spain'), +('195.219.157.136', '195.219.157.159', 2147483647, 2147483647, 'EU', 'Europe'), +('195.219.157.160', '195.219.157.191', 2147483647, 2147483647, 'ES', 'Spain'), +('195.219.157.192', '195.219.157.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.219.158.0', '195.219.159.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.219.160.0', '195.219.160.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.219.161.0', '195.219.161.63', 2147483647, 2147483647, 'US', 'United States'), +('195.219.161.64', '195.219.161.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.219.162.0', '195.219.162.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.219.163.0', '195.219.163.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.219.164.0', '195.219.164.63', 2147483647, 2147483647, 'EU', 'Europe'), +('195.219.164.64', '195.219.164.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.219.164.80', '195.219.164.95', 2147483647, 2147483647, 'PK', 'Pakistan'), +('195.219.164.96', '195.219.164.111', 2147483647, 2147483647, 'ES', 'Spain'), +('195.219.164.112', '195.219.164.143', 2147483647, 2147483647, 'PK', 'Pakistan'), +('195.219.164.144', '195.219.164.151', 2147483647, 2147483647, 'DE', 'Germany'), +('195.219.164.152', '195.219.164.159', 2147483647, 2147483647, 'EU', 'Europe'), +('195.219.164.160', '195.219.164.191', 2147483647, 2147483647, 'ES', 'Spain'), +('195.219.164.192', '195.219.164.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.219.165.0', '195.219.165.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.219.166.0', '195.219.166.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.219.167.0', '195.219.167.255', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('195.219.168.0', '195.219.179.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.219.180.0', '195.219.180.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.219.181.0', '195.219.181.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.219.182.0', '195.219.182.255', 2147483647, 2147483647, 'FR', 'France'), +('195.219.183.0', '195.219.183.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.219.184.0', '195.219.184.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.219.185.0', '195.219.187.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('195.219.188.0', '195.219.188.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.219.189.0', '195.219.189.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.219.190.0', '195.219.191.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.219.192.0', '195.219.192.191', 2147483647, 2147483647, 'EU', 'Europe'), +('195.219.192.192', '195.219.192.239', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.219.192.240', '195.219.192.247', 2147483647, 2147483647, 'DE', 'Germany'), +('195.219.192.248', '195.219.192.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.219.193.0', '195.219.193.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.219.193.128', '195.219.193.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.219.194.0', '195.219.194.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.219.195.0', '195.219.196.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.219.197.0', '195.219.197.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.219.198.0', '195.219.198.255', 2147483647, 2147483647, 'FR', 'France'), +('195.219.199.0', '195.219.199.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.219.200.0', '195.219.207.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.219.208.0', '195.219.211.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.219.212.0', '195.219.213.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.219.214.0', '195.219.214.63', 2147483647, 2147483647, 'KE', 'Kenya'), +('195.219.214.64', '195.219.214.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.219.215.0', '195.219.215.255', 2147483647, 2147483647, 'FR', 'France'), +('195.219.216.0', '195.219.223.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.219.224.0', '195.219.224.255', 2147483647, 2147483647, 'FR', 'France'), +('195.219.225.0', '195.219.225.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.219.226.0', '195.219.226.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.219.227.0', '195.219.229.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.219.230.0', '195.219.230.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.219.231.0', '195.219.231.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.219.232.0', '195.219.240.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.219.241.0', '195.219.241.255', 2147483647, 2147483647, 'FR', 'France'), +('195.219.242.0', '195.219.242.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.219.243.0', '195.219.243.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.219.244.0', '195.219.244.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.219.245.0', '195.219.245.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.219.246.0', '195.219.246.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.219.247.0', '195.219.247.255', 2147483647, 2147483647, 'FR', 'France'), +('195.219.248.0', '195.219.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.220.0.0', '195.221.255.255', 2147483647, 2147483647, 'FR', 'France'), +('195.222.0.0', '195.222.2.63', 2147483647, 2147483647, 'EE', 'Estonia'), +('195.222.2.64', '195.222.2.67', 2147483647, 2147483647, 'FI', 'Finland'), +('195.222.2.68', '195.222.31.255', 2147483647, 2147483647, 'EE', 'Estonia'), +('195.222.32.0', '195.222.63.255', 2147483647, 2147483647, 'BA', 'Bosnia and Herzegovina'), +('195.222.64.0', '195.222.95.255', 2147483647, 2147483647, 'BY', 'Belarus'), +('195.222.96.0', '195.222.99.255', 2147483647, 2147483647, 'RS', 'Serbia'), +('195.222.100.0', '195.222.103.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.222.104.0', '195.222.107.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.222.108.0', '195.222.111.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('195.222.112.0', '195.222.115.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.222.116.0', '195.222.119.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.222.120.0', '195.222.123.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.222.124.0', '195.222.127.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.222.128.0', '195.222.191.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.222.192.0', '195.222.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.223.0.0', '195.223.255.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.224.0.0', '195.224.24.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.224.25.0', '195.224.25.255', 2147483647, 2147483647, 'US', 'United States'), +('195.224.26.0', '195.224.33.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.224.34.0', '195.224.34.255', 2147483647, 2147483647, 'US', 'United States'), +('195.224.35.0', '195.224.66.87', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.224.66.88', '195.224.66.95', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.224.66.96', '195.224.108.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.224.108.48', '195.224.108.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.224.108.64', '195.224.164.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.224.165.0', '195.224.165.255', 2147483647, 2147483647, 'US', 'United States'), +('195.224.166.0', '195.224.205.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.224.206.0', '195.224.206.255', 2147483647, 2147483647, 'US', 'United States'), +('195.224.207.0', '195.224.213.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.224.213.96', '195.224.213.111', 2147483647, 2147483647, 'US', 'United States'), +('195.224.213.112', '195.224.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.225.0.0', '195.225.31.255', 2147483647, 2147483647, 'NO', 'Norway'), +('195.225.32.0', '195.225.33.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.225.34.0', '195.225.35.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.225.36.0', '195.225.37.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.225.38.0', '195.225.39.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.225.40.0', '195.225.43.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.225.44.0', '195.225.45.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.225.46.0', '195.225.47.255', 2147483647, 2147483647, 'IL', 'Israel'), +('195.225.48.0', '195.225.49.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.225.50.0', '195.225.51.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.225.52.0', '195.225.53.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.225.56.0', '195.225.57.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.225.58.0', '195.225.59.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.225.60.0', '195.225.61.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.225.62.0', '195.225.63.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('195.225.64.0', '195.225.67.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.225.68.0', '195.225.71.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.225.72.0', '195.225.75.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('195.225.76.0', '195.225.79.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.225.80.0', '195.225.83.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.225.84.0', '195.225.87.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.225.88.0', '195.225.91.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.225.92.0', '195.225.95.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.225.96.0', '195.225.99.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.225.100.0', '195.225.103.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.225.104.0', '195.225.107.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.225.108.0', '195.225.111.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.225.112.0', '195.225.115.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.225.116.0', '195.225.119.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.225.120.0', '195.225.123.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.225.124.0', '195.225.127.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('195.225.128.0', '195.225.131.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.225.132.0', '195.225.135.255', 2147483647, 2147483647, 'DE', 'Germany'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('195.225.136.0', '195.225.139.255', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('195.225.140.0', '195.225.143.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.225.144.0', '195.225.147.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.225.148.0', '195.225.155.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.225.156.0', '195.225.159.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.225.160.0', '195.225.163.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.225.164.0', '195.225.167.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.225.168.0', '195.225.171.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.225.172.0', '195.225.175.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.225.176.0', '195.225.179.255', 2147483647, 2147483647, 'PA', 'Panama'), +('195.225.180.0', '195.225.183.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.225.184.0', '195.225.187.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.225.188.0', '195.225.191.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.225.192.0', '195.225.195.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.225.196.0', '195.225.199.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.225.200.0', '195.225.203.255', 2147483647, 2147483647, 'LI', 'Liechtenstein'), +('195.225.204.0', '195.225.207.255', 2147483647, 2147483647, 'FR', 'France'), +('195.225.208.0', '195.225.211.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.225.212.0', '195.225.215.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.225.216.0', '195.225.219.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.225.220.0', '195.225.223.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('195.225.224.0', '195.225.227.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.225.228.0', '195.225.231.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.225.232.0', '195.225.235.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.225.236.0', '195.225.239.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.225.240.0', '195.225.243.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.225.244.0', '195.225.251.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.225.252.0', '195.225.255.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('195.226.0.0', '195.226.31.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.226.32.0', '195.226.63.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.226.64.0', '195.226.127.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.226.128.0', '195.226.159.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.226.160.0', '195.226.191.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.226.192.0', '195.226.223.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.226.224.0', '195.226.255.255', 2147483647, 2147483647, 'KW', 'Kuwait'), +('195.227.0.0', '195.227.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.228.0.0', '195.228.255.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('195.229.0.0', '195.229.4.255', 2147483647, 2147483647, 'AE', 'United Arab Emirates'), +('195.229.5.0', '195.229.5.127', 2147483647, 2147483647, 'TZ', 'Tanzania, United Republic of'), +('195.229.5.128', '195.229.6.255', 2147483647, 2147483647, 'AE', 'United Arab Emirates'), +('195.229.7.0', '195.229.9.255', 2147483647, 2147483647, 'KW', 'Kuwait'), +('195.229.10.0', '195.229.12.255', 2147483647, 2147483647, 'AE', 'United Arab Emirates'), +('195.229.13.0', '195.229.14.255', 2147483647, 2147483647, 'KW', 'Kuwait'), +('195.229.15.0', '195.229.23.255', 2147483647, 2147483647, 'AE', 'United Arab Emirates'), +('195.229.24.0', '195.229.26.255', 2147483647, 2147483647, 'KW', 'Kuwait'), +('195.229.27.0', '195.229.255.255', 2147483647, 2147483647, 'AE', 'United Arab Emirates'), +('195.230.0.0', '195.230.31.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('195.230.32.0', '195.230.63.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.230.64.0', '195.230.95.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.230.96.0', '195.230.96.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.230.97.0', '195.230.97.255', 2147483647, 2147483647, 'KZ', 'Kazakstan'), +('195.230.98.0', '195.230.98.255', 2147483647, 2147483647, 'LT', 'Lithuania'), +('195.230.99.0', '195.230.99.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.230.100.0', '195.230.100.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.230.101.0', '195.230.101.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.230.102.0', '195.230.102.255', 2147483647, 2147483647, 'GR', 'Greece'), +('195.230.103.0', '195.230.103.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.230.104.0', '195.230.104.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.230.105.0', '195.230.105.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.230.106.0', '195.230.106.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('195.230.107.0', '195.230.107.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.230.108.0', '195.230.108.255', 2147483647, 2147483647, 'US', 'United States'), +('195.230.109.0', '195.230.109.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.230.110.0', '195.230.110.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.230.111.0', '195.230.111.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.230.112.0', '195.230.112.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.230.113.0', '195.230.113.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.230.114.0', '195.230.114.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.230.115.0', '195.230.115.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.230.116.0', '195.230.116.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.230.117.0', '195.230.117.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.230.118.0', '195.230.118.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.230.119.0', '195.230.119.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.230.120.0', '195.230.120.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.230.121.0', '195.230.121.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('195.230.122.0', '195.230.122.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.230.123.0', '195.230.123.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.230.124.0', '195.230.124.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.230.125.0', '195.230.125.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.230.126.0', '195.230.126.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.230.127.0', '195.230.159.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.230.160.0', '195.230.191.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.230.192.0', '195.230.200.31', 2147483647, 2147483647, 'IT', 'Italy'), +('195.230.200.32', '195.230.200.47', 2147483647, 2147483647, 'DE', 'Germany'), +('195.230.200.48', '195.230.200.55', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.230.200.56', '195.230.200.59', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.230.200.60', '195.230.200.63', 2147483647, 2147483647, 'ES', 'Spain'), +('195.230.200.64', '195.230.200.95', 2147483647, 2147483647, 'FR', 'France'), +('195.230.200.96', '195.230.200.99', 2147483647, 2147483647, 'ES', 'Spain'), +('195.230.200.100', '195.230.200.111', 2147483647, 2147483647, 'IT', 'Italy'), +('195.230.200.112', '195.230.200.127', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.230.200.128', '195.230.200.143', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('195.230.200.144', '195.230.200.151', 2147483647, 2147483647, 'ES', 'Spain'), +('195.230.200.152', '195.230.200.167', 2147483647, 2147483647, 'IT', 'Italy'), +('195.230.200.168', '195.230.200.175', 2147483647, 2147483647, 'DE', 'Germany'), +('195.230.200.176', '195.230.203.63', 2147483647, 2147483647, 'IT', 'Italy'), +('195.230.203.64', '195.230.203.95', 2147483647, 2147483647, 'FR', 'France'), +('195.230.203.96', '195.230.203.127', 2147483647, 2147483647, 'RO', 'Romania'), +('195.230.203.128', '195.230.203.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.230.204.0', '195.230.204.255', 2147483647, 2147483647, 'SM', 'San Marino'), +('195.230.205.0', '195.230.255.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.231.0.0', '195.231.255.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.232.0.0', '195.232.0.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.232.1.0', '195.232.31.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.232.32.0', '195.232.32.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.232.33.0', '195.232.47.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.232.48.0', '195.232.63.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.232.64.0', '195.232.79.255', 2147483647, 2147483647, 'FR', 'France'), +('195.232.80.0', '195.232.80.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.232.81.0', '195.232.81.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.232.82.0', '195.232.82.71', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.232.82.72', '195.232.82.79', 2147483647, 2147483647, 'FR', 'France'), +('195.232.82.80', '195.232.82.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.232.82.112', '195.232.82.119', 2147483647, 2147483647, 'DE', 'Germany'), +('195.232.82.120', '195.232.86.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.232.86.112', '195.232.86.127', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.232.86.128', '195.232.86.191', 2147483647, 2147483647, 'DE', 'Germany'), +('195.232.86.192', '195.232.89.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.232.90.0', '195.232.90.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.232.91.0', '195.232.91.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.232.92.0', '195.232.99.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.232.100.0', '195.232.100.255', 2147483647, 2147483647, 'FR', 'France'), +('195.232.101.0', '195.232.101.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.232.102.0', '195.232.103.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.232.104.0', '195.232.104.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.232.105.0', '195.232.105.255', 2147483647, 2147483647, 'FR', 'France'), +('195.232.106.0', '195.232.107.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.232.108.0', '195.232.109.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.232.110.0', '195.232.111.255', 2147483647, 2147483647, 'FR', 'France'), +('195.232.112.0', '195.232.113.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.232.114.0', '195.232.114.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.232.115.0', '195.232.117.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.232.118.0', '195.232.118.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.232.119.0', '195.232.127.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.232.128.0', '195.233.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.234.32.0', '195.234.32.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.234.33.0', '195.234.34.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.234.35.0', '195.234.36.255', 2147483647, 2147483647, 'FR', 'France'), +('195.234.37.0', '195.234.38.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.234.39.0', '195.234.39.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.234.40.0', '195.234.40.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.234.41.0', '195.234.42.255', 2147483647, 2147483647, 'FR', 'France'), +('195.234.43.0', '195.234.43.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.234.44.0', '195.234.44.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.234.45.0', '195.234.45.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.234.46.0', '195.234.46.255', 2147483647, 2147483647, 'FR', 'France'), +('195.234.47.0', '195.234.47.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('195.234.48.0', '195.234.48.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.234.49.0', '195.234.49.255', 2147483647, 2147483647, 'GR', 'Greece'), +('195.234.50.0', '195.234.50.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.234.51.0', '195.234.51.255', 2147483647, 2147483647, 'MT', 'Malta'), +('195.234.52.0', '195.234.52.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('195.234.53.0', '195.234.53.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.234.54.0', '195.234.55.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.234.56.0', '195.234.56.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.234.57.0', '195.234.57.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.234.58.0', '195.234.58.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.234.59.0', '195.234.59.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.234.60.0', '195.234.60.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.234.61.0', '195.234.61.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.234.62.0', '195.234.62.255', 2147483647, 2147483647, 'FR', 'France'), +('195.234.63.0', '195.234.63.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.234.64.0', '195.234.67.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.234.68.0', '195.234.79.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.234.80.0', '195.234.83.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.234.84.0', '195.234.87.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('195.234.88.0', '195.234.91.255', 2147483647, 2147483647, 'FR', 'France'), +('195.234.92.0', '195.234.95.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.234.96.0', '195.234.97.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.234.98.0', '195.234.99.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('195.234.100.0', '195.234.103.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.234.104.0', '195.234.107.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.234.108.0', '195.234.111.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.234.112.0', '195.234.115.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.234.116.0', '195.234.119.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.234.120.0', '195.234.123.255', 2147483647, 2147483647, 'CM', 'Cameroon'), +('195.234.124.0', '195.234.127.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.234.128.0', '195.234.128.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.234.129.0', '195.234.129.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.234.130.0', '195.234.130.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.234.131.0', '195.234.131.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('195.234.132.0', '195.234.132.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.234.133.0', '195.234.133.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.234.134.0', '195.234.134.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('195.234.135.0', '195.234.135.255', 2147483647, 2147483647, 'FI', 'Finland'), +('195.234.136.0', '195.234.136.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.234.137.0', '195.234.137.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('195.234.138.0', '195.234.139.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.234.140.0', '195.234.140.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.234.141.0', '195.234.141.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.234.142.0', '195.234.142.255', 2147483647, 2147483647, 'FI', 'Finland'), +('195.234.143.0', '195.234.143.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.234.144.0', '195.234.144.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('195.234.145.0', '195.234.145.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.234.146.0', '195.234.146.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.234.147.0', '195.234.147.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.234.148.0', '195.234.148.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.234.149.0', '195.234.149.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.234.150.0', '195.234.150.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.234.151.0', '195.234.151.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.234.152.0', '195.234.152.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.234.153.0', '195.234.153.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.234.154.0', '195.234.154.255', 2147483647, 2147483647, 'FR', 'France'), +('195.234.155.0', '195.234.155.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.234.156.0', '195.234.156.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.234.157.0', '195.234.157.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.234.158.0', '195.234.159.255', 2147483647, 2147483647, 'IL', 'Israel'), +('195.234.160.0', '195.234.160.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.234.161.0', '195.234.161.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.234.162.0', '195.234.162.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.234.163.0', '195.234.163.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.234.164.0', '195.234.164.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.234.165.0', '195.234.165.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('195.234.166.0', '195.234.167.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.234.168.0', '195.234.168.255', 2147483647, 2147483647, 'EG', 'Egypt'), +('195.234.169.0', '195.234.169.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.234.170.0', '195.234.170.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.234.171.0', '195.234.171.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.234.172.0', '195.234.172.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.234.173.0', '195.234.173.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.234.174.0', '195.234.174.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.234.175.0', '195.234.175.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.234.176.0', '195.234.176.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.234.177.0', '195.234.177.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.234.178.0', '195.234.178.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.234.179.0', '195.234.179.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.234.180.0', '195.234.180.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.234.181.0', '195.234.182.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.234.183.0', '195.234.183.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.234.184.0', '195.234.184.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.234.185.0', '195.234.185.255', 2147483647, 2147483647, 'EG', 'Egypt'), +('195.234.186.0', '195.234.186.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.234.187.0', '195.234.187.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.234.188.0', '195.234.188.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.234.189.0', '195.234.189.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.234.190.0', '195.234.190.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.234.191.0', '195.234.191.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.234.192.0', '195.234.195.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.234.196.0', '195.234.199.255', 2147483647, 2147483647, 'FI', 'Finland'), +('195.234.200.0', '195.234.203.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.234.204.0', '195.234.207.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('195.234.208.0', '195.234.211.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.234.212.0', '195.234.215.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.234.216.0', '195.234.219.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.234.220.0', '195.234.223.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.234.224.0', '195.234.227.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.234.228.0', '195.234.231.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.234.232.0', '195.234.235.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.234.236.0', '195.234.239.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('195.234.240.0', '195.234.243.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.234.244.0', '195.234.247.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.234.248.0', '195.234.251.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('195.234.252.0', '195.234.255.255', 2147483647, 2147483647, 'EG', 'Egypt'), +('195.235.0.0', '195.235.255.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.236.0.0', '195.237.31.255', 2147483647, 2147483647, 'FI', 'Finland'), +('195.237.32.0', '195.237.32.255', 2147483647, 2147483647, 'AX', 'Aland Islands'), +('195.237.33.0', '195.237.255.255', 2147483647, 2147483647, 'FI', 'Finland'), +('195.238.0.0', '195.238.31.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.238.32.0', '195.238.63.255', 2147483647, 2147483647, 'US', 'United States'), +('195.238.64.0', '195.238.65.255', 2147483647, 2147483647, 'LT', 'Lithuania'), +('195.238.66.0', '195.238.67.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.238.68.0', '195.238.69.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.238.70.0', '195.238.71.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.238.72.0', '195.238.73.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.238.74.0', '195.238.75.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.238.76.0', '195.238.77.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.238.78.0', '195.238.79.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.238.80.0', '195.238.83.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.238.84.0', '195.238.85.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('195.238.86.0', '195.238.87.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.238.88.0', '195.238.91.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.238.92.0', '195.238.93.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.238.94.0', '195.238.95.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.238.96.0', '195.238.99.255', 2147483647, 2147483647, 'FR', 'France'), +('195.238.100.0', '195.238.103.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.238.104.0', '195.238.107.255', 2147483647, 2147483647, 'UZ', 'Uzbekistan'), +('195.238.108.0', '195.238.119.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.238.120.0', '195.238.123.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.238.124.0', '195.238.127.255', 2147483647, 2147483647, 'FI', 'Finland'), +('195.238.128.0', '195.238.163.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.238.164.0', '195.238.171.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.238.172.0', '195.238.175.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.238.176.0', '195.238.183.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.238.184.0', '195.238.187.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.238.188.0', '195.238.191.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.238.192.0', '195.238.196.31', 2147483647, 2147483647, 'FI', 'Finland'), +('195.238.196.32', '195.238.196.87', 2147483647, 2147483647, 'EE', 'Estonia'), +('195.238.196.88', '195.238.196.95', 2147483647, 2147483647, 'FI', 'Finland'), +('195.238.196.96', '195.238.196.191', 2147483647, 2147483647, 'EE', 'Estonia'), +('195.238.196.192', '195.238.223.255', 2147483647, 2147483647, 'FI', 'Finland'), +('195.238.224.0', '195.238.225.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.238.226.0', '195.238.226.255', 2147483647, 2147483647, 'FR', 'France'), +('195.238.227.0', '195.238.228.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.238.229.0', '195.238.229.255', 2147483647, 2147483647, 'FR', 'France'), +('195.238.230.0', '195.238.231.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.238.232.0', '195.238.232.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.238.233.0', '195.238.234.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.238.235.0', '195.238.235.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.238.236.0', '195.238.236.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.238.237.0', '195.238.237.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.238.238.0', '195.238.238.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.238.239.0', '195.238.239.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.238.240.0', '195.238.241.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.238.242.0', '195.238.242.255', 2147483647, 2147483647, 'MD', 'Moldova, Republic of'), +('195.238.243.0', '195.238.243.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.238.244.0', '195.238.244.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.238.245.0', '195.238.245.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.238.246.0', '195.238.246.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.238.247.0', '195.238.247.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.238.248.0', '195.238.248.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.238.249.0', '195.238.249.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.238.250.0', '195.238.250.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.238.251.0', '195.238.251.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.238.252.0', '195.238.252.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.238.253.0', '195.238.253.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.238.254.0', '195.238.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.239.0.0', '195.239.13.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.239.14.0', '195.239.14.255', 2147483647, 2147483647, 'UZ', 'Uzbekistan'), +('195.239.15.0', '195.239.152.239', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.239.152.240', '195.239.152.247', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.239.152.248', '195.239.183.119', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.239.183.120', '195.239.183.129', 2147483647, 2147483647, 'KZ', 'Kazakstan'), +('195.239.183.130', '195.239.198.207', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.239.198.208', '195.239.198.215', 2147483647, 2147483647, 'UZ', 'Uzbekistan'), +('195.239.198.216', '195.239.255.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.240.0.0', '195.241.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.242.0.0', '195.242.31.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.242.32.0', '195.242.42.175', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.242.42.176', '195.242.42.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.242.42.192', '195.242.63.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.242.66.0', '195.242.67.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.242.68.0', '195.242.69.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.242.70.0', '195.242.71.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.242.72.0', '195.242.73.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.242.74.0', '195.242.75.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.242.76.0', '195.242.77.255', 2147483647, 2147483647, 'RS', 'Serbia'), +('195.242.78.0', '195.242.79.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.242.80.0', '195.242.81.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.242.82.0', '195.242.83.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.242.84.0', '195.242.85.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.242.86.0', '195.242.87.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.242.88.0', '195.242.89.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.242.90.0', '195.242.93.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.242.94.0', '195.242.95.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.242.96.0', '195.242.99.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.242.100.0', '195.242.101.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.242.102.0', '195.242.105.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.242.106.0', '195.242.107.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('195.242.108.0', '195.242.109.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.242.110.0', '195.242.111.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.242.112.0', '195.242.115.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.242.116.0', '195.242.117.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.242.118.0', '195.242.119.255', 2147483647, 2147483647, 'IL', 'Israel'), +('195.242.120.0', '195.242.121.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.242.124.0', '195.242.125.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.242.126.0', '195.242.127.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('195.242.128.0', '195.242.129.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.242.130.0', '195.242.131.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.242.132.0', '195.242.133.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.242.134.0', '195.242.135.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.242.136.0', '195.242.137.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.242.138.0', '195.242.139.255', 2147483647, 2147483647, 'NO', 'Norway'), +('195.242.140.0', '195.242.141.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.242.142.0', '195.242.143.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.242.144.0', '195.242.145.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.242.146.0', '195.242.147.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.242.148.0', '195.242.151.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.242.152.0', '195.242.153.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.242.154.0', '195.242.157.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.242.158.0', '195.242.159.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.242.160.0', '195.242.160.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.242.161.0', '195.242.161.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.242.162.0', '195.242.162.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.242.163.0', '195.242.165.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.242.166.0', '195.242.166.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.242.167.0', '195.242.167.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.242.168.0', '195.242.168.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.242.169.0', '195.242.169.255', 2147483647, 2147483647, 'ME', 'Montenegro'), +('195.242.170.0', '195.242.170.255', 2147483647, 2147483647, 'CY', 'Cyprus'), +('195.242.171.0', '195.242.171.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.242.172.0', '195.242.172.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.242.173.0', '195.242.173.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.242.174.0', '195.242.174.255', 2147483647, 2147483647, 'IL', 'Israel'), +('195.242.175.0', '195.242.175.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.242.176.0', '195.242.176.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.242.177.0', '195.242.177.255', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('195.242.178.0', '195.242.178.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.242.179.0', '195.242.179.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.242.180.0', '195.242.180.255', 2147483647, 2147483647, 'FR', 'France'), +('195.242.181.0', '195.242.181.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.242.182.0', '195.242.182.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.242.183.0', '195.242.183.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.242.184.0', '195.242.184.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.242.185.0', '195.242.185.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('195.242.186.0', '195.242.186.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.242.187.0', '195.242.187.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.242.188.0', '195.242.188.255', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('195.242.189.0', '195.242.189.255', 2147483647, 2147483647, 'NO', 'Norway'), +('195.242.190.0', '195.242.190.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.242.191.0', '195.242.191.255', 2147483647, 2147483647, 'FR', 'France'), +('195.242.192.0', '195.242.195.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.242.196.0', '195.242.199.255', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('195.242.200.0', '195.242.203.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.242.204.0', '195.242.211.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.242.212.0', '195.242.215.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.242.216.0', '195.242.219.255', 2147483647, 2147483647, 'FI', 'Finland'), +('195.242.220.0', '195.242.223.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.242.224.0', '195.242.231.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.242.232.0', '195.242.235.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.242.236.0', '195.242.239.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.242.240.0', '195.242.243.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('195.242.244.0', '195.242.247.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.242.248.0', '195.242.251.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.242.252.0', '195.242.255.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.243.0.0', '195.243.66.15', 2147483647, 2147483647, 'DE', 'Germany'), +('195.243.66.16', '195.243.66.23', 2147483647, 2147483647, 'FR', 'France'), +('195.243.66.24', '195.243.66.31', 2147483647, 2147483647, 'US', 'United States'), +('195.243.66.32', '195.243.66.175', 2147483647, 2147483647, 'DE', 'Germany'), +('195.243.66.176', '195.243.66.207', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.243.66.208', '195.243.66.223', 2147483647, 2147483647, 'DE', 'Germany'), +('195.243.66.224', '195.243.66.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.243.66.240', '195.243.74.47', 2147483647, 2147483647, 'DE', 'Germany'), +('195.243.74.48', '195.243.74.55', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.243.74.56', '195.243.100.15', 2147483647, 2147483647, 'DE', 'Germany'), +('195.243.100.16', '195.243.100.23', 2147483647, 2147483647, 'FR', 'France'), +('195.243.100.24', '195.243.128.239', 2147483647, 2147483647, 'DE', 'Germany'), +('195.243.128.240', '195.243.128.247', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('195.243.128.248', '195.243.159.231', 2147483647, 2147483647, 'DE', 'Germany'), +('195.243.159.232', '195.243.159.239', 2147483647, 2147483647, 'US', 'United States'), +('195.243.159.240', '195.243.171.159', 2147483647, 2147483647, 'DE', 'Germany'), +('195.243.171.160', '195.243.171.167', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('195.243.171.168', '195.243.204.215', 2147483647, 2147483647, 'DE', 'Germany'), +('195.243.204.216', '195.243.204.223', 2147483647, 2147483647, 'IT', 'Italy'), +('195.243.204.224', '195.243.229.95', 2147483647, 2147483647, 'DE', 'Germany'), +('195.243.229.96', '195.243.229.103', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('195.243.229.104', '195.243.236.31', 2147483647, 2147483647, 'DE', 'Germany'), +('195.243.236.32', '195.243.236.47', 2147483647, 2147483647, 'US', 'United States'), +('195.243.236.48', '195.243.243.71', 2147483647, 2147483647, 'DE', 'Germany'), +('195.243.243.72', '195.243.243.79', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.243.243.80', '195.244.3.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.244.4.0', '195.244.5.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.244.6.0', '195.244.7.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.244.8.0', '195.244.9.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.244.10.0', '195.244.11.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.244.12.0', '195.244.13.255', 2147483647, 2147483647, 'LT', 'Lithuania'), +('195.244.14.0', '195.244.15.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.244.16.0', '195.244.17.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.244.18.0', '195.244.19.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.244.20.0', '195.244.21.255', 2147483647, 2147483647, 'FR', 'France'), +('195.244.22.0', '195.244.23.255', 2147483647, 2147483647, 'IL', 'Israel'), +('195.244.24.0', '195.244.25.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.244.26.0', '195.244.27.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.244.28.0', '195.244.29.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.244.30.0', '195.244.31.255', 2147483647, 2147483647, 'FR', 'France'), +('195.244.32.0', '195.244.63.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('195.244.64.0', '195.244.65.79', 2147483647, 2147483647, 'FI', 'Finland'), +('195.244.65.80', '195.244.65.111', 2147483647, 2147483647, 'AX', 'Aland Islands'), +('195.244.65.112', '195.244.95.255', 2147483647, 2147483647, 'FI', 'Finland'), +('195.244.96.0', '195.244.120.239', 2147483647, 2147483647, 'DE', 'Germany'), +('195.244.120.240', '195.244.120.255', 2147483647, 2147483647, 'LI', 'Liechtenstein'), +('195.244.121.0', '195.244.127.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.244.128.0', '195.244.159.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('195.244.160.0', '195.244.191.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.244.192.0', '195.244.223.255', 2147483647, 2147483647, 'GI', 'Gibraltar'), +('195.244.224.0', '195.245.65.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.245.66.0', '195.245.67.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.245.68.0', '195.245.69.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.245.70.0', '195.245.71.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.245.72.0', '195.245.73.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.245.74.0', '195.245.75.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.245.76.0', '195.245.77.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.245.78.0', '195.245.79.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('195.245.80.0', '195.245.81.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.245.82.0', '195.245.83.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.245.84.0', '195.245.85.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.245.86.0', '195.245.87.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.245.88.0', '195.245.89.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.245.90.0', '195.245.91.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('195.245.92.0', '195.245.93.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.245.94.0', '195.245.95.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.245.96.0', '195.245.97.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.245.98.0', '195.245.99.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.245.100.0', '195.245.101.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.245.102.0', '195.245.103.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.245.104.0', '195.245.105.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.245.106.0', '195.245.107.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('195.245.108.0', '195.245.109.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('195.245.110.0', '195.245.111.255', 2147483647, 2147483647, 'FI', 'Finland'), +('195.245.112.0', '195.245.113.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.245.114.0', '195.245.115.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.245.116.0', '195.245.117.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.245.118.0', '195.245.121.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.245.122.0', '195.245.123.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.245.124.0', '195.245.127.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.245.128.0', '195.245.191.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('195.245.192.0', '195.245.192.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.245.193.0', '195.245.193.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.245.194.0', '195.245.194.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('195.245.195.0', '195.245.195.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.245.196.0', '195.245.196.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.245.197.0', '195.245.197.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('195.245.198.0', '195.245.198.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.245.199.0', '195.245.199.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.245.200.0', '195.245.200.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.245.201.0', '195.245.201.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.245.202.0', '195.245.202.255', 2147483647, 2147483647, 'NO', 'Norway'), +('195.245.203.0', '195.245.204.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.245.205.0', '195.245.205.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.245.206.0', '195.245.206.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.245.207.0', '195.245.207.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.245.208.0', '195.245.208.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('195.245.209.0', '195.245.209.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('195.245.210.0', '195.245.210.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.245.211.0', '195.245.211.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.245.212.0', '195.245.212.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.245.213.0', '195.245.213.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.245.214.0', '195.245.214.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.245.215.0', '195.245.215.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.245.216.0', '195.245.216.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('195.245.217.0', '195.245.217.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.245.218.0', '195.245.218.255', 2147483647, 2147483647, 'LI', 'Liechtenstein'), +('195.245.219.0', '195.245.219.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('195.245.220.0', '195.245.220.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.245.221.0', '195.245.221.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.245.222.0', '195.245.222.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.245.223.0', '195.245.223.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.245.224.0', '195.245.224.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.245.225.0', '195.245.225.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.245.226.0', '195.245.226.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.245.227.0', '195.245.227.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('195.245.228.0', '195.245.228.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.245.229.0', '195.245.229.255', 2147483647, 2147483647, 'LT', 'Lithuania'), +('195.245.230.0', '195.245.230.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.245.231.0', '195.245.231.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.245.232.0', '195.245.232.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.245.233.0', '195.245.233.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('195.245.234.0', '195.245.234.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('195.245.235.0', '195.245.235.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.245.236.0', '195.245.236.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.245.237.0', '195.245.237.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.245.238.0', '195.245.238.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.245.239.0', '195.245.239.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.245.240.0', '195.245.240.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.245.241.0', '195.245.241.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.245.242.0', '195.245.242.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.245.243.0', '195.245.243.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.245.244.0', '195.245.244.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.245.245.0', '195.245.245.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.245.246.0', '195.245.246.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.245.247.0', '195.245.247.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.245.248.0', '195.245.248.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.245.249.0', '195.245.249.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.245.250.0', '195.245.250.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('195.245.251.0', '195.245.251.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.245.252.0', '195.245.252.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.245.253.0', '195.245.253.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.245.254.0', '195.245.254.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.245.255.0', '195.245.255.255', 2147483647, 2147483647, 'HR', 'Croatia'), +('195.246.0.0', '195.246.31.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('195.246.32.0', '195.246.63.255', 2147483647, 2147483647, 'EG', 'Egypt'), +('195.246.64.0', '195.246.95.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.246.96.0', '195.246.97.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('195.246.98.0', '195.246.99.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.246.100.0', '195.246.101.255', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('195.246.102.0', '195.246.103.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.246.104.0', '195.246.105.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.246.106.0', '195.246.107.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.246.108.0', '195.246.109.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.246.110.0', '195.246.111.255', 2147483647, 2147483647, 'FR', 'France'), +('195.246.112.0', '195.246.113.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('195.246.114.0', '195.246.115.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.246.116.0', '195.246.117.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.246.118.0', '195.246.119.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.246.120.0', '195.246.121.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.246.122.0', '195.246.123.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.246.124.0', '195.246.125.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('195.246.126.0', '195.246.127.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.246.128.0', '195.246.159.255', 2147483647, 2147483647, 'FR', 'France'), +('195.246.160.0', '195.246.191.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.246.192.0', '195.246.196.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.246.197.0', '195.246.197.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.246.198.0', '195.246.198.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.246.199.0', '195.246.199.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('195.246.200.0', '195.246.200.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.246.201.0', '195.246.201.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.246.202.0', '195.246.207.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.246.208.0', '195.246.215.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.246.216.0', '195.246.216.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.246.217.0', '195.246.217.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.246.218.0', '195.246.218.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.246.219.0', '195.246.219.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.246.220.0', '195.246.223.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.246.224.0', '195.246.225.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.246.226.0', '195.246.227.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('195.246.228.0', '195.246.229.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.246.230.0', '195.246.233.255', 2147483647, 2147483647, 'FR', 'France'), +('195.246.234.0', '195.246.235.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.246.236.0', '195.246.237.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.246.238.0', '195.246.239.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('195.246.240.0', '195.246.241.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('195.246.242.0', '195.246.243.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.246.244.0', '195.246.245.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.246.246.0', '195.246.247.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.246.248.0', '195.246.249.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.246.250.0', '195.246.251.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.246.252.0', '195.246.253.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('195.246.254.0', '195.246.255.255', 2147483647, 2147483647, 'FR', 'France'), +('195.247.0.0', '195.247.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.248.0.0', '195.248.25.47', 2147483647, 2147483647, 'FR', 'France'), +('195.248.25.48', '195.248.25.63', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('195.248.25.64', '195.248.31.255', 2147483647, 2147483647, 'FR', 'France'), +('195.248.32.0', '195.248.63.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.248.64.0', '195.248.64.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('195.248.65.0', '195.248.65.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.248.66.0', '195.248.66.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.248.67.0', '195.248.67.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.248.68.0', '195.248.68.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('195.248.69.0', '195.248.69.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.248.70.0', '195.248.70.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.248.71.0', '195.248.71.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.248.72.0', '195.248.72.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.248.73.0', '195.248.73.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.248.74.0', '195.248.74.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.248.75.0', '195.248.75.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.248.76.0', '195.248.76.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.248.77.0', '195.248.77.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.248.78.0', '195.248.78.255', 2147483647, 2147483647, 'NO', 'Norway'), +('195.248.79.0', '195.248.79.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.248.80.0', '195.248.80.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('195.248.81.0', '195.248.81.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.248.82.0', '195.248.82.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.248.83.0', '195.248.83.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.248.84.0', '195.248.84.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.248.85.0', '195.248.85.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.248.86.0', '195.248.86.255', 2147483647, 2147483647, 'FI', 'Finland'), +('195.248.87.0', '195.248.87.255', 2147483647, 2147483647, 'NL', 'Netherlands'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('195.248.88.0', '195.248.88.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.248.89.0', '195.248.89.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.248.90.0', '195.248.90.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.248.91.0', '195.248.92.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.248.93.0', '195.248.93.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.248.94.0', '195.248.94.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.248.95.0', '195.248.95.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('195.248.96.0', '195.248.127.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.248.128.0', '195.248.159.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.248.160.0', '195.248.191.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.248.192.0', '195.248.192.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.248.193.0', '195.248.193.255', 2147483647, 2147483647, 'FK', 'Falkland Islands (Malvinas)'), +('195.248.194.0', '195.248.194.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.248.195.0', '195.248.196.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.248.197.0', '195.248.199.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.248.200.0', '195.248.202.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.248.203.0', '195.248.209.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.248.210.0', '195.248.210.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.248.211.0', '195.248.220.15', 2147483647, 2147483647, 'EU', 'Europe'), +('195.248.220.16', '195.248.220.71', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.248.220.72', '195.248.220.127', 2147483647, 2147483647, 'EU', 'Europe'), +('195.248.220.128', '195.248.220.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.248.220.224', '195.248.220.239', 2147483647, 2147483647, 'EU', 'Europe'), +('195.248.220.240', '195.248.220.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.248.221.0', '195.248.223.255', 2147483647, 2147483647, 'EU', 'Europe'), +('195.248.224.0', '195.248.225.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.248.226.0', '195.248.227.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.248.228.0', '195.248.229.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.248.230.0', '195.248.231.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.248.232.0', '195.248.233.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.248.234.0', '195.248.235.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.248.236.0', '195.248.237.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.248.238.0', '195.248.239.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.248.240.0', '195.248.241.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.248.242.0', '195.248.243.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.248.244.0', '195.248.245.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.248.246.0', '195.248.247.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.248.248.0', '195.248.249.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.248.250.0', '195.248.251.255', 2147483647, 2147483647, 'FR', 'France'), +('195.248.252.0', '195.248.253.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.248.254.0', '195.248.255.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.249.0.0', '195.249.255.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.250.0.0', '195.250.31.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.250.32.0', '195.250.32.255', 2147483647, 2147483647, 'AT', 'Austria'), +('195.250.33.0', '195.250.33.255', 2147483647, 2147483647, 'IL', 'Israel'), +('195.250.34.0', '195.250.34.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.250.35.0', '195.250.35.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.250.36.0', '195.250.36.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.250.37.0', '195.250.37.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.250.38.0', '195.250.38.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.250.39.0', '195.250.39.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('195.250.40.0', '195.250.40.255', 2147483647, 2147483647, 'FR', 'France'), +('195.250.41.0', '195.250.41.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.250.42.0', '195.250.42.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.250.43.0', '195.250.43.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.250.44.0', '195.250.46.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.250.47.0', '195.250.47.255', 2147483647, 2147483647, 'IL', 'Israel'), +('195.250.48.0', '195.250.48.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.250.49.0', '195.250.49.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.250.50.0', '195.250.50.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.250.51.0', '195.250.51.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.250.52.0', '195.250.52.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.250.53.0', '195.250.53.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.250.54.0', '195.250.54.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.250.55.0', '195.250.56.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('195.250.57.0', '195.250.57.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.250.58.0', '195.250.58.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('195.250.59.0', '195.250.59.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.250.60.0', '195.250.60.255', 2147483647, 2147483647, 'FR', 'France'), +('195.250.61.0', '195.250.61.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.250.62.0', '195.250.62.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.250.63.0', '195.250.63.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('195.250.64.0', '195.250.95.255', 2147483647, 2147483647, 'AM', 'Armenia'), +('195.250.96.0', '195.250.127.255', 2147483647, 2147483647, 'RS', 'Serbia'), +('195.250.128.0', '195.250.159.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('195.250.160.0', '195.250.191.255', 2147483647, 2147483647, 'EE', 'Estonia'), +('195.250.192.0', '195.250.223.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('195.250.224.0', '195.250.255.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.251.0.0', '195.251.255.255', 2147483647, 2147483647, 'GR', 'Greece'), +('195.252.0.0', '195.252.63.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('195.252.64.0', '195.252.118.143', 2147483647, 2147483647, 'RS', 'Serbia'), +('195.252.118.144', '195.252.118.151', 2147483647, 2147483647, 'DK', 'Denmark'), +('195.252.118.152', '195.252.127.255', 2147483647, 2147483647, 'RS', 'Serbia'), +('195.252.128.0', '195.253.22.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.253.23.0', '195.253.23.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.253.24.0', '195.253.30.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.253.31.0', '195.253.32.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.253.33.0', '195.253.47.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.253.48.0', '195.253.53.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('195.253.54.0', '195.254.127.255', 2147483647, 2147483647, 'DE', 'Germany'), +('195.254.128.0', '195.254.129.255', 2147483647, 2147483647, 'LI', 'Liechtenstein'), +('195.254.130.0', '195.254.131.255', 2147483647, 2147483647, 'FR', 'France'), +('195.254.132.0', '195.254.137.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.254.138.0', '195.254.139.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.254.140.0', '195.254.141.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.254.142.0', '195.254.143.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.254.144.0', '195.254.145.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('195.254.146.0', '195.254.147.255', 2147483647, 2147483647, 'FR', 'France'), +('195.254.148.0', '195.254.149.255', 2147483647, 2147483647, 'ES', 'Spain'), +('195.254.150.0', '195.254.151.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('195.254.152.0', '195.254.153.255', 2147483647, 2147483647, 'RO', 'Romania'), +('195.254.154.0', '195.254.155.255', 2147483647, 2147483647, 'FR', 'France'), +('195.254.156.0', '195.254.157.255', 2147483647, 2147483647, 'PL', 'Poland'), +('195.254.158.0', '195.254.159.255', 2147483647, 2147483647, 'FR', 'France'), +('195.254.160.0', '195.254.191.255', 2147483647, 2147483647, 'KG', 'Kyrgyzstan'), +('195.254.192.0', '195.254.223.255', 2147483647, 2147483647, 'NO', 'Norway'), +('195.254.224.0', '195.254.255.255', 2147483647, 2147483647, 'IT', 'Italy'), +('195.255.0.0', '195.255.255.255', 2147483647, 2147483647, 'FI', 'Finland'), +('196.0.0.0', '196.0.255.255', 2147483647, 2147483647, 'UG', 'Uganda'), +('196.1.0.0', '196.1.0.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('196.1.1.0', '196.1.1.255', 2147483647, 2147483647, 'IN', 'India'), +('196.1.2.0', '196.1.2.255', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('196.1.3.0', '196.1.3.255', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('196.1.4.0', '196.1.4.255', 2147483647, 2147483647, 'KE', 'Kenya'), +('196.1.5.0', '196.1.5.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('196.1.6.0', '196.1.6.255', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('196.1.7.0', '196.1.7.255', 2147483647, 2147483647, 'MU', 'Mauritius'), +('196.1.8.0', '196.1.25.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('196.1.26.0', '196.1.27.255', 2147483647, 2147483647, 'KE', 'Kenya'), +('196.1.28.0', '196.1.31.255', 2147483647, 2147483647, 'NA', 'Namibia'), +('196.1.32.0', '196.1.51.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('196.1.52.0', '196.1.55.255', 2147483647, 2147483647, 'TZ', 'Tanzania, United Republic of'), +('196.1.56.0', '196.1.63.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('196.1.64.0', '196.1.67.255', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('196.1.68.0', '196.1.68.255', 2147483647, 2147483647, 'IN', 'India'), +('196.1.69.0', '196.1.70.255', 2147483647, 2147483647, 'KW', 'Kuwait'), +('196.1.71.0', '196.1.71.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('196.1.72.0', '196.1.73.255', 2147483647, 2147483647, 'US', 'United States'), +('196.1.74.0', '196.1.91.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('196.1.92.0', '196.1.100.255', 2147483647, 2147483647, 'SN', 'Senegal'), +('196.1.101.0', '196.1.103.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('196.1.104.0', '196.1.106.255', 2147483647, 2147483647, 'IN', 'India'), +('196.1.107.0', '196.1.107.255', 2147483647, 2147483647, 'BM', 'Bermuda'), +('196.1.108.0', '196.1.111.255', 2147483647, 2147483647, 'IN', 'India'), +('196.1.112.0', '196.1.112.255', 2147483647, 2147483647, 'CU', 'Cuba'), +('196.1.113.0', '196.1.114.255', 2147483647, 2147483647, 'IN', 'India'), +('196.1.115.0', '196.1.115.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('196.1.116.0', '196.1.118.255', 2147483647, 2147483647, 'GH', 'Ghana'), +('196.1.119.0', '196.1.119.255', 2147483647, 2147483647, 'EG', 'Egypt'), +('196.1.120.0', '196.1.127.255', 2147483647, 2147483647, 'SC', 'Seychelles'), +('196.1.128.0', '196.1.129.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('196.1.130.0', '196.1.133.255', 2147483647, 2147483647, 'BW', 'Botswana'), +('196.1.134.0', '196.1.134.255', 2147483647, 2147483647, 'IN', 'India'), +('196.1.135.0', '196.1.135.255', 2147483647, 2147483647, 'CU', 'Cuba'), +('196.1.136.0', '196.1.136.255', 2147483647, 2147483647, 'JM', 'Jamaica'), +('196.1.137.0', '196.1.137.255', 2147483647, 2147483647, 'GH', 'Ghana'), +('196.1.138.0', '196.1.139.255', 2147483647, 2147483647, 'JM', 'Jamaica'), +('196.1.140.0', '196.1.140.255', 2147483647, 2147483647, 'US', 'United States'), +('196.1.141.0', '196.1.141.255', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('196.1.142.0', '196.1.142.255', 2147483647, 2147483647, 'US', 'United States'), +('196.1.143.0', '196.1.143.255', 2147483647, 2147483647, 'EG', 'Egypt'), +('196.1.144.0', '196.1.159.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('196.1.160.0', '196.1.161.15', 2147483647, 2147483647, 'VC', 'Saint Vincent and the Grenadines'), +('196.1.161.16', '196.1.167.255', 2147483647, 2147483647, 'BB', 'Barbados'), +('196.1.168.0', '196.1.168.255', 2147483647, 2147483647, 'KN', 'Saint Kitts and Nevis'), +('196.1.169.0', '196.1.170.255', 2147483647, 2147483647, 'VC', 'Saint Vincent and the Grenadines'), +('196.1.171.0', '196.1.175.255', 2147483647, 2147483647, 'BB', 'Barbados'), +('196.1.176.0', '196.1.191.255', 2147483647, 2147483647, 'NG', 'Nigeria'), +('196.1.192.0', '196.1.255.255', 2147483647, 2147483647, 'SD', 'Sudan'), +('196.2.0.0', '196.2.1.255', 2147483647, 2147483647, 'JM', 'Jamaica'), +('196.2.2.0', '196.2.3.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('196.2.4.0', '196.2.7.255', 2147483647, 2147483647, 'SY', 'Syrian Arab Republic'), +('196.2.8.0', '196.2.15.255', 2147483647, 2147483647, 'BI', 'Burundi'), +('196.2.16.0', '196.2.79.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('196.2.80.0', '196.2.95.255', 2147483647, 2147483647, 'MA', 'Morocco'), +('196.2.96.0', '196.2.191.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('196.2.192.0', '196.2.255.255', 2147483647, 2147483647, 'EG', 'Egypt'), +('196.3.0.0', '196.3.7.255', 2147483647, 2147483647, 'JM', 'Jamaica'), +('196.3.8.0', '196.3.13.255', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('196.3.14.0', '196.3.15.255', 2147483647, 2147483647, 'EG', 'Egypt'), +('196.3.16.0', '196.3.31.255', 2147483647, 2147483647, 'AN', 'Netherlands Antilles'), +('196.3.32.0', '196.3.56.255', 2147483647, 2147483647, 'US', 'United States'), +('196.3.57.0', '196.3.57.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('196.3.58.0', '196.3.59.255', 2147483647, 2147483647, 'KE', 'Kenya'), +('196.3.60.0', '196.3.63.255', 2147483647, 2147483647, 'NG', 'Nigeria'), +('196.3.64.0', '196.3.64.255', 2147483647, 2147483647, 'GH', 'Ghana'), +('196.3.65.0', '196.3.65.255', 2147483647, 2147483647, 'IN', 'India'), +('196.3.66.0', '196.3.66.255', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('196.3.67.0', '196.3.71.255', 2147483647, 2147483647, 'AE', 'United Arab Emirates'), +('196.3.72.0', '196.3.72.255', 2147483647, 2147483647, 'PK', 'Pakistan'), +('196.3.73.0', '196.3.73.255', 2147483647, 2147483647, 'GD', 'Grenada'), +('196.3.74.0', '196.3.89.255', 2147483647, 2147483647, 'DO', 'Dominican Republic'), +('196.3.90.0', '196.3.90.255', 2147483647, 2147483647, 'CM', 'Cameroon'), +('196.3.91.0', '196.3.91.255', 2147483647, 2147483647, 'IR', 'Iran, Islamic Republic of'), +('196.3.92.0', '196.3.93.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('196.3.94.0', '196.3.94.255', 2147483647, 2147483647, 'NA', 'Namibia'), +('196.3.95.0', '196.3.95.255', 2147483647, 2147483647, 'JM', 'Jamaica'), +('196.3.96.0', '196.3.103.255', 2147483647, 2147483647, 'MZ', 'Mozambique'), +('196.3.104.0', '196.3.104.255', 2147483647, 2147483647, 'JM', 'Jamaica'), +('196.3.105.0', '196.3.105.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('196.3.106.0', '196.3.106.255', 2147483647, 2147483647, 'DO', 'Dominican Republic'), +('196.3.107.0', '196.3.108.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('196.3.109.0', '196.3.109.255', 2147483647, 2147483647, 'MU', 'Mauritius'), +('196.3.110.0', '196.3.131.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('196.3.132.0', '196.3.147.255', 2147483647, 2147483647, 'TT', 'Trinidad and Tobago'), +('196.3.148.0', '196.3.151.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('196.3.152.0', '196.3.152.255', 2147483647, 2147483647, 'CU', 'Cuba'), +('196.3.153.0', '196.3.153.255', 2147483647, 2147483647, 'JM', 'Jamaica'), +('196.3.154.0', '196.3.179.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('196.3.180.0', '196.3.183.255', 2147483647, 2147483647, 'NG', 'Nigeria'), +('196.3.184.0', '196.3.191.255', 2147483647, 2147483647, 'JM', 'Jamaica'), +('196.3.192.0', '196.3.223.255', 2147483647, 2147483647, 'BB', 'Barbados'), +('196.3.224.0', '196.4.45.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('196.4.46.0', '196.4.70.255', 2147483647, 2147483647, 'US', 'United States'), +('196.4.71.0', '196.4.79.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('196.4.80.0', '196.4.80.255', 2147483647, 2147483647, 'ZW', 'Zimbabwe'), +('196.4.81.0', '196.4.254.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('196.4.255.0', '196.4.255.255', 2147483647, 2147483647, 'LS', 'Lesotho'), +('196.5.0.0', '196.11.58.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('196.11.59.0', '196.11.59.255', 2147483647, 2147483647, 'ZW', 'Zimbabwe'), +('196.11.60.0', '196.11.60.255', 2147483647, 2147483647, 'NA', 'Namibia'), +('196.11.61.0', '196.11.123.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('196.11.124.0', '196.11.124.255', 2147483647, 2147483647, 'SZ', 'Swaziland'), +('196.11.125.0', '196.11.255.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('196.12.0.0', '196.12.9.255', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('196.12.10.0', '196.12.10.255', 2147483647, 2147483647, 'NA', 'Namibia'), +('196.12.11.0', '196.12.11.255', 2147483647, 2147483647, 'EG', 'Egypt'), +('196.12.12.0', '196.12.15.255', 2147483647, 2147483647, 'ZM', 'Zambia'), +('196.12.16.0', '196.12.31.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('196.12.32.0', '196.12.63.255', 2147483647, 2147483647, 'IN', 'India'), +('196.12.64.0', '196.12.127.255', 2147483647, 2147483647, 'BM', 'Bermuda'), +('196.12.128.0', '196.12.159.255', 2147483647, 2147483647, 'RW', 'Rwanda'), +('196.12.160.0', '196.12.191.255', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('196.12.192.0', '196.12.255.255', 2147483647, 2147483647, 'MA', 'Morocco'), +('196.13.0.0', '196.13.167.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('196.13.168.0', '196.13.168.255', 2147483647, 2147483647, 'SZ', 'Swaziland'), +('196.13.170.0', '196.13.172.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('196.13.184.0', '196.15.10.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('196.15.11.0', '196.15.11.255', 2147483647, 2147483647, 'NA', 'Namibia'), +('196.15.16.0', '196.15.31.255', 2147483647, 2147483647, 'IN', 'India'), +('196.15.32.0', '196.15.63.255', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('196.15.64.0', '196.15.231.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('196.15.232.0', '196.15.239.255', 2147483647, 2147483647, 'SZ', 'Swaziland'), +('196.15.240.0', '196.19.255.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('196.20.0.0', '196.20.31.255', 2147483647, 2147483647, 'NA', 'Namibia'), +('196.20.32.0', '196.20.63.255', 2147483647, 2147483647, 'EG', 'Egypt'), +('196.20.64.0', '196.20.127.255', 2147483647, 2147483647, 'DZ', 'Algeria'), +('196.20.128.0', '196.20.255.255', 2147483647, 2147483647, 'MU', 'Mauritius'), +('196.21.0.0', '196.22.4.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('196.22.5.0', '196.22.5.255', 2147483647, 2147483647, 'EG', 'Egypt'), +('196.22.6.0', '196.22.6.255', 2147483647, 2147483647, 'NG', 'Nigeria'), +('196.22.7.0', '196.22.7.255', 2147483647, 2147483647, 'EG', 'Egypt'), +('196.22.8.0', '196.22.11.255', 2147483647, 2147483647, 'CD', 'Congo, The Democratic Republic of the'), +('196.22.12.0', '196.22.15.255', 2147483647, 2147483647, 'GW', 'Guinea-Bissau'), +('196.22.16.0', '196.22.47.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('196.22.48.0', '196.22.63.255', 2147483647, 2147483647, 'MZ', 'Mozambique'), +('196.22.64.0', '196.22.79.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('196.22.80.0', '196.22.80.255', 2147483647, 2147483647, 'SZ', 'Swaziland'), +('196.22.81.0', '196.22.129.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('196.22.130.0', '196.22.130.255', 2147483647, 2147483647, 'EG', 'Egypt'), +('196.22.131.0', '196.22.131.255', 2147483647, 2147483647, 'KE', 'Kenya'), +('196.22.132.0', '196.22.143.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('196.22.144.0', '196.22.159.255', 2147483647, 2147483647, 'MU', 'Mauritius'), +('196.22.160.0', '196.23.255.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('196.24.0.0', '196.24.3.255', 2147483647, 2147483647, 'LS', 'Lesotho'), +('196.24.4.0', '196.24.63.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('196.24.64.0', '196.24.67.255', 2147483647, 2147483647, 'SZ', 'Swaziland'), +('196.24.68.0', '196.26.255.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('196.27.0.0', '196.27.1.255', 2147483647, 2147483647, 'JO', 'Jordan'), +('196.27.2.0', '196.27.3.255', 2147483647, 2147483647, 'EG', 'Egypt'), +('196.27.4.0', '196.27.11.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('196.27.12.0', '196.27.12.255', 2147483647, 2147483647, 'CL', 'Chile'), +('196.27.13.0', '196.27.13.15', 2147483647, 2147483647, 'CA', 'Canada'), +('196.27.13.16', '196.27.13.31', 2147483647, 2147483647, 'US', 'United States'), +('196.27.13.32', '196.27.13.95', 2147483647, 2147483647, 'CA', 'Canada'), +('196.27.13.96', '196.27.13.127', 2147483647, 2147483647, 'US', 'United States'), +('196.27.13.128', '196.27.13.175', 2147483647, 2147483647, 'CA', 'Canada'), +('196.27.13.176', '196.27.13.207', 2147483647, 2147483647, 'US', 'United States'), +('196.27.13.208', '196.27.13.223', 2147483647, 2147483647, 'CA', 'Canada'), +('196.27.13.224', '196.27.13.239', 2147483647, 2147483647, 'US', 'United States'), +('196.27.13.240', '196.27.13.247', 2147483647, 2147483647, 'CA', 'Canada'), +('196.27.13.248', '196.27.13.255', 2147483647, 2147483647, 'US', 'United States'), +('196.27.14.0', '196.27.14.255', 2147483647, 2147483647, 'CA', 'Canada'), +('196.27.15.0', '196.27.17.255', 2147483647, 2147483647, 'US', 'United States'), +('196.27.18.0', '196.27.18.255', 2147483647, 2147483647, 'CA', 'Canada'), +('196.27.19.0', '196.27.19.255', 2147483647, 2147483647, 'US', 'United States'), +('196.27.20.0', '196.27.20.255', 2147483647, 2147483647, 'GH', 'Ghana'), +('196.27.21.0', '196.27.21.255', 2147483647, 2147483647, 'MU', 'Mauritius'), +('196.27.22.0', '196.27.22.255', 2147483647, 2147483647, 'ET', 'Ethiopia'), +('196.27.23.0', '196.27.24.255', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('196.27.25.0', '196.27.25.255', 2147483647, 2147483647, 'US', 'United States'), +('196.27.26.0', '196.27.26.255', 2147483647, 2147483647, 'ES', 'Spain'), +('196.27.27.0', '196.27.27.255', 2147483647, 2147483647, 'DO', 'Dominican Republic'), +('196.27.28.0', '196.27.29.255', 2147483647, 2147483647, 'US', 'United States'), +('196.27.30.0', '196.27.30.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('196.27.31.0', '196.27.31.255', 2147483647, 2147483647, 'US', 'United States'), +('196.27.32.0', '196.27.32.143', 2147483647, 2147483647, 'CA', 'Canada'), +('196.27.32.144', '196.27.47.255', 2147483647, 2147483647, 'US', 'United States'), +('196.27.48.0', '196.27.56.255', 2147483647, 2147483647, 'PE', 'Peru'), +('196.27.57.0', '196.27.63.255', 2147483647, 2147483647, 'US', 'United States'), +('196.27.64.0', '196.27.95.255', 2147483647, 2147483647, 'MU', 'Mauritius'), +('196.27.96.0', '196.27.127.255', 2147483647, 2147483647, 'ZW', 'Zimbabwe'), +('196.28.0.0', '196.28.6.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('196.28.7.0', '196.28.7.255', 2147483647, 2147483647, 'SZ', 'Swaziland'), +('196.28.8.0', '196.28.8.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('196.28.10.0', '196.28.10.255', 2147483647, 2147483647, 'NG', 'Nigeria'), +('196.28.11.0', '196.28.11.255', 2147483647, 2147483647, 'KE', 'Kenya'), +('196.28.12.0', '196.28.47.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('196.28.48.0', '196.28.63.255', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('196.28.64.0', '196.28.223.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('196.28.224.0', '196.28.239.255', 2147483647, 2147483647, 'MZ', 'Mozambique'), +('196.28.240.0', '196.28.255.255', 2147483647, 2147483647, 'BF', 'Burkina Faso'), +('196.29.0.0', '196.29.31.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('196.29.32.0', '196.29.39.255', 2147483647, 2147483647, 'ZW', 'Zimbabwe'), +('196.29.40.0', '196.29.43.255', 2147483647, 2147483647, 'DZ', 'Algeria'), +('196.29.48.0', '196.29.55.255', 2147483647, 2147483647, 'TZ', 'Tanzania, United Republic of'), +('196.29.64.0', '196.29.95.255', 2147483647, 2147483647, 'TT', 'Trinidad and Tobago'), +('196.29.96.0', '196.29.127.255', 2147483647, 2147483647, 'GH', 'Ghana'), +('196.29.128.0', '196.29.159.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('196.29.160.0', '196.29.191.255', 2147483647, 2147483647, 'SD', 'Sudan'), +('196.29.192.0', '196.29.207.255', 2147483647, 2147483647, 'AO', 'Angola'), +('196.29.208.0', '196.29.223.255', 2147483647, 2147483647, 'NG', 'Nigeria'), +('196.29.224.0', '196.29.239.255', 2147483647, 2147483647, 'GH', 'Ghana'), +('196.29.240.0', '196.31.255.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('196.32.0.0', '196.32.7.255', 2147483647, 2147483647, 'JM', 'Jamaica'), +('196.32.32.0', '196.32.63.255', 2147483647, 2147483647, 'TT', 'Trinidad and Tobago'), +('196.32.64.0', '196.32.95.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('196.32.96.0', '196.32.111.255', 2147483647, 2147483647, 'MZ', 'Mozambique'), +('196.32.128.0', '196.32.143.255', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('196.32.144.0', '196.32.144.255', 2147483647, 2147483647, 'DO', 'Dominican Republic'), +('196.32.145.0', '196.32.156.63', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('196.32.156.64', '196.32.156.127', 2147483647, 2147483647, 'DO', 'Dominican Republic'), +('196.32.156.128', '196.32.159.255', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('196.32.160.0', '196.32.191.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('196.32.192.0', '196.32.199.255', 2147483647, 2147483647, 'AO', 'Angola'), +('196.32.200.0', '196.32.207.255', 2147483647, 2147483647, 'CF', 'Central African Republic'), +('196.32.208.0', '196.32.215.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('196.32.216.0', '196.32.223.255', 2147483647, 2147483647, 'SC', 'Seychelles'), +('196.33.0.0', '196.39.255.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('196.40.0.0', '196.40.95.255', 2147483647, 2147483647, 'CR', 'Costa Rica'), +('196.40.96.0', '196.40.111.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('196.41.0.0', '196.41.31.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('196.41.32.0', '196.41.46.255', 2147483647, 2147483647, 'TZ', 'Tanzania, United Republic of'), +('196.41.47.0', '196.41.47.255', 2147483647, 2147483647, 'KE', 'Kenya'), +('196.41.48.0', '196.41.63.255', 2147483647, 2147483647, 'TZ', 'Tanzania, United Republic of'), +('196.41.64.0', '196.41.223.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('196.41.224.0', '196.41.255.255', 2147483647, 2147483647, 'DZ', 'Algeria'), +('196.42.0.0', '196.42.63.255', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('196.43.0.0', '196.43.63.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('196.43.64.0', '196.43.95.255', 2147483647, 2147483647, 'TZ', 'Tanzania, United Republic of'), +('196.43.96.0', '196.43.127.255', 2147483647, 2147483647, 'ZW', 'Zimbabwe'), +('196.43.128.0', '196.43.191.255', 2147483647, 2147483647, 'UG', 'Uganda'), +('196.44.0.0', '196.44.47.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('196.44.48.0', '196.44.63.255', 2147483647, 2147483647, 'GH', 'Ghana'), +('196.44.64.0', '196.44.95.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('196.44.96.0', '196.44.127.255', 2147483647, 2147483647, 'GH', 'Ghana'), +('196.44.128.0', '196.44.159.255', 2147483647, 2147483647, 'NA', 'Namibia'), +('196.44.160.0', '196.44.175.255', 2147483647, 2147483647, 'TZ', 'Tanzania, United Republic of'), +('196.44.176.0', '196.44.191.255', 2147483647, 2147483647, 'ZW', 'Zimbabwe'), +('196.44.192.0', '196.44.239.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('196.44.240.0', '196.44.255.255', 2147483647, 2147483647, 'RW', 'Rwanda'), +('196.45.0.0', '196.45.15.255', 2147483647, 2147483647, 'NA', 'Namibia'), +('196.45.16.0', '196.45.31.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('196.45.32.0', '196.45.38.191', 2147483647, 2147483647, 'TZ', 'Tanzania, United Republic of'), +('196.45.38.192', '196.45.38.255', 2147483647, 2147483647, 'NG', 'Nigeria'), +('196.45.39.0', '196.45.40.255', 2147483647, 2147483647, 'TZ', 'Tanzania, United Republic of'), +('196.45.41.0', '196.45.41.127', 2147483647, 2147483647, 'KE', 'Kenya'), +('196.45.41.128', '196.45.47.255', 2147483647, 2147483647, 'TZ', 'Tanzania, United Republic of'), +('196.45.48.0', '196.45.63.255', 2147483647, 2147483647, 'NG', 'Nigeria'), +('196.45.64.0', '196.45.127.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('196.45.128.0', '196.45.159.255', 2147483647, 2147483647, 'TZ', 'Tanzania, United Republic of'), +('196.45.160.0', '196.45.163.255', 2147483647, 2147483647, 'AO', 'Angola'), +('196.45.164.0', '196.45.167.255', 2147483647, 2147483647, 'BW', 'Botswana'), +('196.45.168.0', '196.45.183.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('196.45.184.0', '196.45.187.255', 2147483647, 2147483647, 'TZ', 'Tanzania, United Republic of'), +('196.45.188.0', '196.45.191.255', 2147483647, 2147483647, 'MW', 'Malawi'), +('196.45.192.0', '196.45.255.255', 2147483647, 2147483647, 'NG', 'Nigeria'), +('196.46.0.0', '196.46.15.255', 2147483647, 2147483647, 'MZ', 'Mozambique'), +('196.46.32.0', '196.46.63.255', 2147483647, 2147483647, 'MU', 'Mauritius'), +('196.46.64.0', '196.46.71.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('196.46.72.0', '196.46.79.255', 2147483647, 2147483647, 'AO', 'Angola'), +('196.46.80.0', '196.46.95.255', 2147483647, 2147483647, 'GH', 'Ghana'), +('196.46.96.0', '196.46.111.255', 2147483647, 2147483647, 'TZ', 'Tanzania, United Republic of'), +('196.46.112.0', '196.46.119.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('196.46.120.0', '196.46.123.255', 2147483647, 2147483647, 'TZ', 'Tanzania, United Republic of'), +('196.46.124.0', '196.46.127.255', 2147483647, 2147483647, 'ZM', 'Zambia'), +('196.46.128.0', '196.46.135.255', 2147483647, 2147483647, 'TZ', 'Tanzania, United Republic of'), +('196.46.136.0', '196.46.143.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('196.46.144.0', '196.46.147.255', 2147483647, 2147483647, 'NG', 'Nigeria'), +('196.46.148.0', '196.46.151.255', 2147483647, 2147483647, 'SC', 'Seychelles'), +('196.46.152.0', '196.46.155.255', 2147483647, 2147483647, 'BJ', 'Benin'), +('196.46.156.0', '196.46.159.255', 2147483647, 2147483647, 'GA', 'Gabon'), +('196.46.160.0', '196.46.187.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('196.46.188.0', '196.46.191.255', 2147483647, 2147483647, 'EG', 'Egypt'), +('196.46.192.0', '196.46.223.255', 2147483647, 2147483647, 'ZM', 'Zambia'), +('196.46.224.0', '196.46.231.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('196.46.232.0', '196.46.239.255', 2147483647, 2147483647, 'GM', 'Gambia'), +('196.46.240.0', '196.46.247.255', 2147483647, 2147483647, 'NG', 'Nigeria'), +('196.46.248.0', '196.46.255.255', 2147483647, 2147483647, 'DZ', 'Algeria'), +('196.47.0.0', '196.47.65.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('196.47.66.0', '196.47.66.127', 2147483647, 2147483647, 'NA', 'Namibia'), +('196.47.66.128', '196.47.68.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('196.47.69.0', '196.47.69.255', 2147483647, 2147483647, 'NA', 'Namibia'), +('196.47.70.0', '196.47.73.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('196.47.74.0', '196.47.74.255', 2147483647, 2147483647, 'NA', 'Namibia'), +('196.47.75.0', '196.47.81.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('196.47.82.0', '196.47.85.255', 2147483647, 2147483647, 'NA', 'Namibia'), +('196.47.86.0', '196.47.89.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('196.47.90.0', '196.47.90.255', 2147483647, 2147483647, 'NA', 'Namibia'), +('196.47.91.0', '196.47.95.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('196.47.128.0', '196.47.191.255', 2147483647, 2147483647, 'CI', 'Cote D''Ivoire'), +('196.192.0.0', '196.192.15.255', 2147483647, 2147483647, 'MU', 'Mauritius'), +('196.192.32.0', '196.192.47.255', 2147483647, 2147483647, 'MG', 'Madagascar'), +('196.192.64.0', '196.192.127.255', 2147483647, 2147483647, 'MU', 'Mauritius'), +('196.200.0.0', '196.200.15.255', 2147483647, 2147483647, 'NG', 'Nigeria'), +('196.200.16.0', '196.200.47.255', 2147483647, 2147483647, 'KE', 'Kenya'), +('196.200.48.0', '196.200.63.255', 2147483647, 2147483647, 'ML', 'Mali'), +('196.200.64.0', '196.200.79.255', 2147483647, 2147483647, 'NG', 'Nigeria'), +('196.200.80.0', '196.200.95.255', 2147483647, 2147483647, 'ML', 'Mali'), +('196.200.96.0', '196.200.111.255', 2147483647, 2147483647, 'ER', 'Eritrea'), +('196.200.112.0', '196.200.127.255', 2147483647, 2147483647, 'NG', 'Nigeria'), +('196.200.128.0', '196.200.191.255', 2147483647, 2147483647, 'MA', 'Morocco'), +('196.200.192.0', '196.200.207.255', 2147483647, 2147483647, 'DZ', 'Algeria'), +('196.200.208.0', '196.200.223.255', 2147483647, 2147483647, 'NG', 'Nigeria'), +('196.200.224.0', '196.200.255.255', 2147483647, 2147483647, 'GH', 'Ghana'), +('196.201.1.0', '196.201.1.255', 2147483647, 2147483647, 'US', 'United States'), +('196.201.2.0', '196.201.2.255', 2147483647, 2147483647, 'GH', 'Ghana'), +('196.201.3.0', '196.201.3.255', 2147483647, 2147483647, 'EG', 'Egypt'), +('196.201.4.0', '196.201.5.255', 2147483647, 2147483647, 'MW', 'Malawi'), +('196.201.6.0', '196.201.7.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('196.201.12.0', '196.201.15.255', 2147483647, 2147483647, 'MW', 'Malawi'), +('196.201.16.0', '196.201.23.255', 2147483647, 2147483647, 'ZW', 'Zimbabwe'), +('196.201.24.0', '196.201.31.255', 2147483647, 2147483647, 'EG', 'Egypt'), +('196.201.32.0', '196.201.63.255', 2147483647, 2147483647, 'GH', 'Ghana'), +('196.201.64.0', '196.201.95.255', 2147483647, 2147483647, 'CI', 'Cote D''Ivoire'), +('196.201.128.0', '196.201.143.255', 2147483647, 2147483647, 'KE', 'Kenya'), +('196.201.144.0', '196.201.144.15', 2147483647, 2147483647, 'NG', 'Nigeria'), +('196.201.144.16', '196.201.144.31', 2147483647, 2147483647, 'TZ', 'Tanzania, United Republic of'), +('196.201.144.32', '196.201.144.255', 2147483647, 2147483647, 'UG', 'Uganda'), +('196.201.145.0', '196.201.147.255', 2147483647, 2147483647, 'DE', 'Germany'), +('196.201.148.0', '196.201.159.255', 2147483647, 2147483647, 'KE', 'Kenya'), +('196.201.160.0', '196.201.191.255', 2147483647, 2147483647, 'GH', 'Ghana'), +('196.201.192.0', '196.201.207.255', 2147483647, 2147483647, 'DJ', 'Djibouti'), +('196.201.208.0', '196.201.231.255', 2147483647, 2147483647, 'KE', 'Kenya'), +('196.201.240.0', '196.201.247.255', 2147483647, 2147483647, 'EG', 'Egypt'), +('196.201.248.0', '196.201.255.255', 2147483647, 2147483647, 'KE', 'Kenya'), +('196.202.0.0', '196.202.127.255', 2147483647, 2147483647, 'EG', 'Egypt'), +('196.202.128.0', '196.202.159.255', 2147483647, 2147483647, 'SD', 'Sudan'), +('196.202.160.0', '196.202.191.255', 2147483647, 2147483647, 'NG', 'Nigeria'), +('196.202.192.0', '196.202.223.255', 2147483647, 2147483647, 'KE', 'Kenya'), +('196.202.224.0', '196.202.231.255', 2147483647, 2147483647, 'NG', 'Nigeria'), +('196.202.232.0', '196.202.239.255', 2147483647, 2147483647, 'CM', 'Cameroon'), +('196.202.240.0', '196.202.247.255', 2147483647, 2147483647, 'LS', 'Lesotho'), +('196.202.248.0', '196.202.251.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('196.202.252.0', '196.202.255.255', 2147483647, 2147483647, 'AO', 'Angola'), +('196.203.0.0', '196.203.255.255', 2147483647, 2147483647, 'TN', 'Tunisia'), +('196.204.0.0', '196.205.255.255', 2147483647, 2147483647, 'EG', 'Egypt'), +('196.206.0.0', '196.206.255.255', 2147483647, 2147483647, 'MA', 'Morocco'), +('196.207.0.0', '196.207.9.71', 2147483647, 2147483647, 'NG', 'Nigeria'), +('196.207.9.72', '196.207.9.79', 2147483647, 2147483647, 'CM', 'Cameroon'), +('196.207.9.80', '196.207.15.255', 2147483647, 2147483647, 'NG', 'Nigeria'), +('196.207.16.0', '196.207.31.255', 2147483647, 2147483647, 'KE', 'Kenya'), +('196.207.32.0', '196.207.47.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('196.207.48.0', '196.207.63.255', 2147483647, 2147483647, 'MU', 'Mauritius'), +('196.207.128.0', '196.207.191.255', 2147483647, 2147483647, 'NG', 'Nigeria'), +('196.207.192.0', '196.207.255.255', 2147483647, 2147483647, 'SN', 'Senegal'), +('196.208.0.0', '196.215.255.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('196.216.1.0', '196.216.1.255', 2147483647, 2147483647, 'US', 'United States'), +('196.216.2.0', '196.216.3.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('196.216.4.0', '196.216.7.255', 2147483647, 2147483647, 'MU', 'Mauritius'), +('196.216.8.0', '196.216.15.255', 2147483647, 2147483647, 'MW', 'Malawi'), +('196.216.16.0', '196.216.23.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('196.216.32.0', '196.216.63.255', 2147483647, 2147483647, 'NA', 'Namibia'), +('196.216.64.0', '196.216.95.255', 2147483647, 2147483647, 'KE', 'Kenya'), +('196.216.128.0', '196.216.135.255', 2147483647, 2147483647, 'KE', 'Kenya'), +('196.216.136.0', '196.216.139.255', 2147483647, 2147483647, 'AO', 'Angola'), +('196.216.140.0', '196.216.143.255', 2147483647, 2147483647, 'EG', 'Egypt'), +('196.216.144.0', '196.216.151.255', 2147483647, 2147483647, 'NG', 'Nigeria'), +('196.216.152.0', '196.216.155.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('196.216.156.0', '196.216.159.255', 2147483647, 2147483647, 'TN', 'Tunisia'), +('196.216.160.0', '196.216.160.255', 2147483647, 2147483647, 'CF', 'Central African Republic'), +('196.216.161.0', '196.216.161.255', 2147483647, 2147483647, 'AO', 'Angola'), +('196.216.162.0', '196.216.162.255', 2147483647, 2147483647, 'TZ', 'Tanzania, United Republic of'), +('196.216.163.0', '196.216.163.255', 2147483647, 2147483647, 'BW', 'Botswana'), +('196.216.164.0', '196.216.167.255', 2147483647, 2147483647, 'NA', 'Namibia'), +('196.216.244.0', '196.216.244.255', 2147483647, 2147483647, 'TZ', 'Tanzania, United Republic of'), +('196.216.245.0', '196.216.245.255', 2147483647, 2147483647, 'KE', 'Kenya'), +('196.216.246.0', '196.216.246.255', 2147483647, 2147483647, 'EG', 'Egypt'), +('196.216.247.0', '196.216.247.255', 2147483647, 2147483647, 'TZ', 'Tanzania, United Republic of'), +('196.216.248.0', '196.216.249.255', 2147483647, 2147483647, 'AO', 'Angola'), +('196.216.250.0', '196.216.250.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('196.216.251.0', '196.216.251.255', 2147483647, 2147483647, 'NG', 'Nigeria'), +('196.216.252.0', '196.216.252.255', 2147483647, 2147483647, 'EG', 'Egypt'), +('196.216.253.0', '196.216.253.255', 2147483647, 2147483647, 'NG', 'Nigeria'), +('196.216.254.0', '196.216.254.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('196.216.255.0', '196.216.255.255', 2147483647, 2147483647, 'NG', 'Nigeria'), +('196.217.0.0', '196.217.255.255', 2147483647, 2147483647, 'MA', 'Morocco'), +('196.218.0.0', '196.218.247.255', 2147483647, 2147483647, 'EG', 'Egypt'), +('196.218.248.0', '196.218.255.255', 2147483647, 2147483647, 'JO', 'Jordan'), +('196.219.0.0', '196.219.255.255', 2147483647, 2147483647, 'EG', 'Egypt'), +('196.220.0.0', '196.220.3.7', 2147483647, 2147483647, 'NG', 'Nigeria'), +('196.220.3.8', '196.220.3.15', 2147483647, 2147483647, 'MA', 'Morocco'), +('196.220.3.16', '196.220.4.79', 2147483647, 2147483647, 'NG', 'Nigeria'), +('196.220.4.80', '196.220.4.83', 2147483647, 2147483647, 'CM', 'Cameroon'), +('196.220.4.84', '196.220.5.71', 2147483647, 2147483647, 'NG', 'Nigeria'), +('196.220.5.72', '196.220.5.79', 2147483647, 2147483647, 'GH', 'Ghana'), +('196.220.5.80', '196.220.31.255', 2147483647, 2147483647, 'NG', 'Nigeria'), +('196.220.32.0', '196.220.63.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('196.221.0.0', '196.221.255.255', 2147483647, 2147483647, 'EG', 'Egypt'), +('196.222.0.0', '196.222.255.255', 2147483647, 2147483647, 'MA', 'Morocco'), +('196.223.0.0', '196.223.0.255', 2147483647, 2147483647, 'MU', 'Mauritius'), +('196.223.1.0', '196.223.1.255', 2147483647, 2147483647, 'AO', 'Angola'), +('196.223.2.0', '196.223.2.255', 2147483647, 2147483647, 'ZM', 'Zambia'), +('196.223.3.0', '196.223.3.255', 2147483647, 2147483647, 'BI', 'Burundi'), +('196.223.4.0', '196.223.4.255', 2147483647, 2147483647, 'CI', 'Cote D''Ivoire'), +('196.223.5.0', '196.223.6.255', 2147483647, 2147483647, 'TZ', 'Tanzania, United Republic of'), +('196.223.7.0', '196.223.7.255', 2147483647, 2147483647, 'EG', 'Egypt'), +('196.223.8.0', '196.223.9.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('197.255.248.0', '197.255.255.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('198.1.0.0', '198.1.63.255', 2147483647, 2147483647, 'US', 'United States'), +('198.2.0.0', '198.2.15.255', 2147483647, 2147483647, 'US', 'United States'), +('198.2.16.0', '198.2.31.255', 2147483647, 2147483647, 'CL', 'Chile'), +('198.3.0.0', '198.4.64.255', 2147483647, 2147483647, 'US', 'United States'), +('198.4.65.0', '198.4.65.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('198.4.66.0', '198.4.199.255', 2147483647, 2147483647, 'US', 'United States'), +('198.4.200.0', '198.4.203.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('198.4.204.0', '198.10.255.255', 2147483647, 2147483647, 'US', 'United States'), +('198.11.0.0', '198.11.3.255', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('198.11.4.0', '198.11.7.255', 2147483647, 2147483647, 'US', 'United States'), +('198.11.16.0', '198.11.127.255', 2147483647, 2147483647, 'US', 'United States'), +('198.12.0.0', '198.12.31.255', 2147483647, 2147483647, 'US', 'United States'), +('198.12.32.0', '198.12.63.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('198.13.0.0', '198.13.127.255', 2147483647, 2147483647, 'US', 'United States'), +('198.14.0.0', '198.15.15.255', 2147483647, 2147483647, 'US', 'United States'), +('198.15.16.0', '198.15.63.255', 2147483647, 2147483647, 'AU', 'Australia'), +('198.16.0.0', '198.16.31.255', 2147483647, 2147483647, 'US', 'United States'), +('198.17.1.0', '198.17.1.255', 2147483647, 2147483647, 'JP', 'Japan'), +('198.17.2.0', '198.17.2.255', 2147483647, 2147483647, 'US', 'United States'), +('198.17.5.0', '198.17.6.255', 2147483647, 2147483647, 'US', 'United States'), +('198.17.7.0', '198.17.7.255', 2147483647, 2147483647, 'CN', 'China'), +('198.17.8.0', '198.17.41.255', 2147483647, 2147483647, 'US', 'United States'), +('198.17.43.0', '198.17.43.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.17.44.0', '198.17.57.255', 2147483647, 2147483647, 'US', 'United States'), +('198.17.58.0', '198.17.58.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.17.59.0', '198.17.59.255', 2147483647, 2147483647, 'US', 'United States'), +('198.17.62.0', '198.17.69.255', 2147483647, 2147483647, 'US', 'United States'), +('198.17.70.0', '198.17.70.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('198.17.71.0', '198.17.76.255', 2147483647, 2147483647, 'US', 'United States'), +('198.17.77.0', '198.17.77.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('198.17.78.0', '198.17.105.255', 2147483647, 2147483647, 'US', 'United States'), +('198.17.106.0', '198.17.106.255', 2147483647, 2147483647, 'AU', 'Australia'), +('198.17.107.0', '198.17.109.255', 2147483647, 2147483647, 'US', 'United States'), +('198.17.112.0', '198.17.115.255', 2147483647, 2147483647, 'AU', 'Australia'), +('198.17.116.0', '198.17.116.255', 2147483647, 2147483647, 'US', 'United States'), +('198.17.117.0', '198.17.117.255', 2147483647, 2147483647, 'IT', 'Italy'), +('198.17.118.0', '198.17.118.255', 2147483647, 2147483647, 'JP', 'Japan'), +('198.17.120.0', '198.17.121.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('198.17.122.0', '198.17.139.255', 2147483647, 2147483647, 'US', 'United States'), +('198.17.140.0', '198.17.140.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.17.141.0', '198.17.179.255', 2147483647, 2147483647, 'US', 'United States'), +('198.17.180.0', '198.17.182.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('198.17.183.0', '198.17.227.255', 2147483647, 2147483647, 'US', 'United States'), +('198.17.228.0', '198.17.228.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('198.17.229.0', '198.17.230.255', 2147483647, 2147483647, 'US', 'United States'), +('198.17.231.0', '198.17.232.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('198.17.234.0', '198.17.239.255', 2147483647, 2147483647, 'US', 'United States'), +('198.17.240.0', '198.17.241.255', 2147483647, 2147483647, 'AU', 'Australia'), +('198.17.242.0', '198.17.255.255', 2147483647, 2147483647, 'US', 'United States'), +('198.20.8.0', '198.20.15.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.20.16.0', '198.20.31.255', 2147483647, 2147483647, 'US', 'United States'), +('198.20.32.0', '198.20.63.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.21.0.0', '198.21.127.255', 2147483647, 2147483647, 'US', 'United States'), +('198.22.1.0', '198.22.1.255', 2147483647, 2147483647, 'US', 'United States'), +('198.22.2.0', '198.22.4.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.22.5.0', '198.22.33.255', 2147483647, 2147483647, 'US', 'United States'), +('198.22.34.0', '198.22.34.255', 2147483647, 2147483647, 'AU', 'Australia'), +('198.22.35.0', '198.22.35.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('198.22.37.0', '198.22.37.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('198.22.38.0', '198.22.45.255', 2147483647, 2147483647, 'US', 'United States'), +('198.22.47.0', '198.22.50.255', 2147483647, 2147483647, 'AU', 'Australia'), +('198.22.51.0', '198.22.51.255', 2147483647, 2147483647, 'DE', 'Germany'), +('198.22.52.0', '198.22.59.255', 2147483647, 2147483647, 'US', 'United States'), +('198.22.61.0', '198.22.61.255', 2147483647, 2147483647, 'AU', 'Australia'), +('198.22.62.0', '198.22.92.255', 2147483647, 2147483647, 'US', 'United States'), +('198.22.93.0', '198.22.97.255', 2147483647, 2147483647, 'DE', 'Germany'), +('198.22.99.0', '198.22.101.255', 2147483647, 2147483647, 'US', 'United States'), +('198.22.102.0', '198.22.102.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.22.103.0', '198.22.187.255', 2147483647, 2147483647, 'US', 'United States'), +('198.22.188.0', '198.22.188.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.22.189.0', '198.22.236.255', 2147483647, 2147483647, 'US', 'United States'), +('198.22.237.0', '198.22.237.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.22.238.0', '198.22.249.255', 2147483647, 2147483647, 'US', 'United States'), +('198.22.250.0', '198.22.251.255', 2147483647, 2147483647, 'CL', 'Chile'), +('198.22.252.0', '198.23.63.255', 2147483647, 2147483647, 'US', 'United States'), +('198.24.0.0', '198.27.3.255', 2147483647, 2147483647, 'US', 'United States'), +('198.27.4.0', '198.27.8.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('198.27.16.0', '198.27.63.255', 2147483647, 2147483647, 'US', 'United States'), +('198.28.0.0', '198.32.255.255', 2147483647, 2147483647, 'US', 'United States'), +('198.33.0.0', '198.34.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.35.0.0', '198.36.31.255', 2147483647, 2147483647, 'US', 'United States'), +('198.36.32.0', '198.36.43.255', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('198.36.44.0', '198.36.44.255', 2147483647, 2147483647, 'US', 'United States'), +('198.36.45.0', '198.36.45.255', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('198.36.46.0', '198.36.46.255', 2147483647, 2147483647, 'US', 'United States'), +('198.36.64.0', '198.37.255.255', 2147483647, 2147483647, 'US', 'United States'), +('198.38.0.0', '198.38.3.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.38.4.0', '198.38.47.255', 2147483647, 2147483647, 'US', 'United States'), +('198.38.64.0', '198.38.79.255', 2147483647, 2147483647, 'US', 'United States'), +('198.38.128.0', '198.41.15.255', 2147483647, 2147483647, 'US', 'United States'), +('198.41.16.0', '198.41.31.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('198.41.32.0', '198.41.47.255', 2147483647, 2147483647, 'CL', 'Chile'), +('198.41.64.0', '198.41.79.255', 2147483647, 2147483647, 'US', 'United States'), +('198.42.0.0', '198.42.3.255', 2147483647, 2147483647, 'US', 'United States'), +('198.42.4.0', '198.42.4.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.42.5.0', '198.42.17.255', 2147483647, 2147483647, 'US', 'United States'), +('198.42.18.0', '198.42.18.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.42.19.0', '198.42.21.255', 2147483647, 2147483647, 'US', 'United States'), +('198.42.22.0', '198.42.22.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.42.23.0', '198.42.24.255', 2147483647, 2147483647, 'US', 'United States'), +('198.42.25.0', '198.42.25.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.42.26.0', '198.42.35.255', 2147483647, 2147483647, 'US', 'United States'), +('198.42.36.0', '198.42.36.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.42.37.0', '198.42.46.255', 2147483647, 2147483647, 'US', 'United States'), +('198.42.47.0', '198.42.47.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.42.48.0', '198.42.54.255', 2147483647, 2147483647, 'US', 'United States'), +('198.42.55.0', '198.42.55.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.42.56.0', '198.42.56.255', 2147483647, 2147483647, 'US', 'United States'), +('198.42.57.0', '198.42.57.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.42.58.0', '198.42.72.255', 2147483647, 2147483647, 'US', 'United States'), +('198.42.73.0', '198.42.73.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.42.74.0', '198.42.74.255', 2147483647, 2147483647, 'US', 'United States'), +('198.42.75.0', '198.42.75.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.42.76.0', '198.42.80.255', 2147483647, 2147483647, 'US', 'United States'), +('198.42.81.0', '198.42.81.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.42.82.0', '198.42.82.255', 2147483647, 2147483647, 'US', 'United States'), +('198.42.83.0', '198.42.83.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.42.84.0', '198.42.89.255', 2147483647, 2147483647, 'US', 'United States'), +('198.42.90.0', '198.42.90.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.42.91.0', '198.42.95.255', 2147483647, 2147483647, 'US', 'United States'), +('198.42.96.0', '198.42.97.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.42.98.0', '198.42.105.255', 2147483647, 2147483647, 'US', 'United States'), +('198.42.106.0', '198.42.106.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.42.107.0', '198.42.122.255', 2147483647, 2147483647, 'US', 'United States'), +('198.42.123.0', '198.42.123.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.42.124.0', '198.42.130.255', 2147483647, 2147483647, 'US', 'United States'), +('198.42.131.0', '198.42.132.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.42.133.0', '198.42.136.255', 2147483647, 2147483647, 'US', 'United States'), +('198.42.137.0', '198.42.138.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.42.139.0', '198.42.143.255', 2147483647, 2147483647, 'US', 'United States'), +('198.42.144.0', '198.42.144.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.42.145.0', '198.42.146.255', 2147483647, 2147483647, 'US', 'United States'), +('198.42.147.0', '198.42.147.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.42.148.0', '198.42.148.255', 2147483647, 2147483647, 'US', 'United States'), +('198.42.149.0', '198.42.150.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.42.151.0', '198.42.155.255', 2147483647, 2147483647, 'US', 'United States'), +('198.42.156.0', '198.42.156.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.42.157.0', '198.42.160.255', 2147483647, 2147483647, 'US', 'United States'), +('198.42.161.0', '198.42.161.255', 2147483647, 2147483647, 'CA', 'Canada'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('198.42.162.0', '198.42.169.255', 2147483647, 2147483647, 'US', 'United States'), +('198.42.170.0', '198.42.170.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.42.171.0', '198.42.175.255', 2147483647, 2147483647, 'US', 'United States'), +('198.42.176.0', '198.42.176.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.42.177.0', '198.42.192.255', 2147483647, 2147483647, 'US', 'United States'), +('198.42.193.0', '198.42.193.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.42.194.0', '198.42.201.255', 2147483647, 2147483647, 'US', 'United States'), +('198.42.202.0', '198.42.202.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.42.203.0', '198.42.203.255', 2147483647, 2147483647, 'US', 'United States'), +('198.42.204.0', '198.42.204.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.42.205.0', '198.42.205.255', 2147483647, 2147483647, 'US', 'United States'), +('198.42.206.0', '198.42.206.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.42.207.0', '198.42.207.255', 2147483647, 2147483647, 'US', 'United States'), +('198.42.208.0', '198.42.209.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.42.210.0', '198.42.211.255', 2147483647, 2147483647, 'US', 'United States'), +('198.42.212.0', '198.42.215.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.42.216.0', '198.42.216.255', 2147483647, 2147483647, 'US', 'United States'), +('198.42.217.0', '198.42.217.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.42.218.0', '198.42.223.255', 2147483647, 2147483647, 'US', 'United States'), +('198.42.224.0', '198.42.225.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.42.226.0', '198.42.226.255', 2147483647, 2147483647, 'US', 'United States'), +('198.42.227.0', '198.42.227.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.42.228.0', '198.42.233.255', 2147483647, 2147483647, 'US', 'United States'), +('198.42.234.0', '198.42.237.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.42.238.0', '198.42.244.255', 2147483647, 2147483647, 'US', 'United States'), +('198.42.245.0', '198.42.245.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.42.246.0', '198.42.253.255', 2147483647, 2147483647, 'US', 'United States'), +('198.42.254.0', '198.42.254.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.42.255.0', '198.47.255.255', 2147483647, 2147483647, 'US', 'United States'), +('198.48.0.0', '198.48.3.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('198.48.4.0', '198.48.47.255', 2147483647, 2147483647, 'US', 'United States'), +('198.48.64.0', '198.48.95.255', 2147483647, 2147483647, 'US', 'United States'), +('198.49.1.0', '198.49.1.255', 2147483647, 2147483647, 'US', 'United States'), +('198.49.2.0', '198.49.2.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('198.49.3.0', '198.49.3.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('198.49.4.0', '198.49.31.255', 2147483647, 2147483647, 'US', 'United States'), +('198.49.32.0', '198.49.39.255', 2147483647, 2147483647, 'AU', 'Australia'), +('198.49.40.0', '198.49.47.255', 2147483647, 2147483647, 'US', 'United States'), +('198.49.80.0', '198.49.85.255', 2147483647, 2147483647, 'US', 'United States'), +('198.49.87.0', '198.49.87.255', 2147483647, 2147483647, 'AU', 'Australia'), +('198.49.88.0', '198.49.111.255', 2147483647, 2147483647, 'US', 'United States'), +('198.49.112.0', '198.49.113.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('198.49.114.0', '198.49.123.255', 2147483647, 2147483647, 'US', 'United States'), +('198.49.124.0', '198.49.124.255', 2147483647, 2147483647, 'AU', 'Australia'), +('198.49.125.0', '198.49.127.255', 2147483647, 2147483647, 'US', 'United States'), +('198.49.128.0', '198.49.133.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('198.49.134.0', '198.49.134.255', 2147483647, 2147483647, 'US', 'United States'), +('198.49.136.0', '198.49.137.255', 2147483647, 2147483647, 'US', 'United States'), +('198.49.141.0', '198.49.141.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.49.142.0', '198.49.142.255', 2147483647, 2147483647, 'US', 'United States'), +('198.49.144.0', '198.49.163.255', 2147483647, 2147483647, 'US', 'United States'), +('198.49.164.0', '198.49.164.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('198.49.165.0', '198.49.174.255', 2147483647, 2147483647, 'US', 'United States'), +('198.49.175.0', '198.49.175.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.49.176.0', '198.50.15.255', 2147483647, 2147483647, 'US', 'United States'), +('198.50.16.0', '198.50.23.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('198.50.32.0', '198.50.95.255', 2147483647, 2147483647, 'US', 'United States'), +('198.51.0.0', '198.51.3.255', 2147483647, 2147483647, 'US', 'United States'), +('198.51.4.0', '198.51.7.255', 2147483647, 2147483647, 'AU', 'Australia'), +('198.51.8.0', '198.51.11.255', 2147483647, 2147483647, 'US', 'United States'), +('198.51.12.0', '198.51.12.255', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('198.51.13.0', '198.51.70.255', 2147483647, 2147483647, 'US', 'United States'), +('198.51.71.0', '198.51.71.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('198.51.72.0', '198.51.98.255', 2147483647, 2147483647, 'US', 'United States'), +('198.51.99.0', '198.51.99.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('198.51.101.0', '198.51.101.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('198.51.102.0', '198.51.103.255', 2147483647, 2147483647, 'US', 'United States'), +('198.51.108.0', '198.51.111.255', 2147483647, 2147483647, 'US', 'United States'), +('198.51.112.0', '198.51.117.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.51.118.0', '198.51.131.255', 2147483647, 2147483647, 'US', 'United States'), +('198.51.141.0', '198.51.142.255', 2147483647, 2147483647, 'US', 'United States'), +('198.51.143.0', '198.51.146.255', 2147483647, 2147483647, 'SY', 'Syrian Arab Republic'), +('198.51.147.0', '198.51.150.255', 2147483647, 2147483647, 'US', 'United States'), +('198.51.151.0', '198.51.151.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.51.152.0', '198.51.155.255', 2147483647, 2147483647, 'US', 'United States'), +('198.51.156.0', '198.51.156.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.51.157.0', '198.51.157.255', 2147483647, 2147483647, 'US', 'United States'), +('198.51.159.0', '198.51.185.255', 2147483647, 2147483647, 'US', 'United States'), +('198.51.186.0', '198.51.186.255', 2147483647, 2147483647, 'AU', 'Australia'), +('198.51.187.0', '198.51.194.255', 2147483647, 2147483647, 'US', 'United States'), +('198.51.195.0', '198.51.195.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('198.51.196.0', '198.51.196.255', 2147483647, 2147483647, 'AU', 'Australia'), +('198.51.197.0', '198.51.209.255', 2147483647, 2147483647, 'US', 'United States'), +('198.51.210.0', '198.51.211.255', 2147483647, 2147483647, 'AU', 'Australia'), +('198.51.212.0', '198.52.31.255', 2147483647, 2147483647, 'US', 'United States'), +('198.52.32.0', '198.52.42.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.52.43.0', '198.52.43.255', 2147483647, 2147483647, 'BB', 'Barbados'), +('198.52.44.0', '198.52.47.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.52.64.0', '198.52.95.255', 2147483647, 2147483647, 'US', 'United States'), +('198.53.0.0', '198.53.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.54.0.0', '198.54.127.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('198.54.141.0', '198.54.141.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('198.54.142.0', '198.54.145.255', 2147483647, 2147483647, 'NA', 'Namibia'), +('198.54.146.0', '198.54.255.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('198.55.0.0', '198.55.15.255', 2147483647, 2147483647, 'US', 'United States'), +('198.55.16.0', '198.55.31.255', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('198.55.32.0', '198.55.47.255', 2147483647, 2147483647, 'US', 'United States'), +('198.55.64.0', '198.55.95.255', 2147483647, 2147483647, 'US', 'United States'), +('198.55.128.0', '198.56.15.255', 2147483647, 2147483647, 'US', 'United States'), +('198.56.16.0', '198.56.31.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('198.56.32.0', '198.56.127.255', 2147483647, 2147483647, 'US', 'United States'), +('198.57.0.0', '198.57.63.255', 2147483647, 2147483647, 'US', 'United States'), +('198.57.64.0', '198.57.79.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.58.0.0', '198.58.1.255', 2147483647, 2147483647, 'JM', 'Jamaica'), +('198.58.2.0', '198.58.7.255', 2147483647, 2147483647, 'US', 'United States'), +('198.58.8.0', '198.58.15.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('198.58.16.0', '198.58.39.255', 2147483647, 2147483647, 'US', 'United States'), +('198.58.64.0', '198.58.71.255', 2147483647, 2147483647, 'US', 'United States'), +('198.59.0.0', '198.60.255.255', 2147483647, 2147483647, 'US', 'United States'), +('198.61.0.0', '198.61.3.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('198.61.4.0', '198.61.7.255', 2147483647, 2147483647, 'US', 'United States'), +('198.61.8.0', '198.61.15.255', 2147483647, 2147483647, 'AU', 'Australia'), +('198.61.16.0', '198.61.95.255', 2147483647, 2147483647, 'US', 'United States'), +('198.62.0.0', '198.62.15.255', 2147483647, 2147483647, 'US', 'United States'), +('198.62.16.0', '198.62.31.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.62.32.0', '198.62.93.255', 2147483647, 2147483647, 'US', 'United States'), +('198.62.94.0', '198.62.94.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.62.95.0', '198.62.111.255', 2147483647, 2147483647, 'US', 'United States'), +('198.62.112.0', '198.62.112.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.62.113.0', '198.62.157.255', 2147483647, 2147483647, 'US', 'United States'), +('198.62.158.0', '198.62.159.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.62.160.0', '198.62.174.255', 2147483647, 2147483647, 'US', 'United States'), +('198.62.175.0', '198.62.175.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.62.176.0', '198.65.159.255', 2147483647, 2147483647, 'US', 'United States'), +('198.65.160.0', '198.65.160.127', 2147483647, 2147483647, 'A1', 'Anonymous Proxy'), +('198.65.160.128', '198.65.166.191', 2147483647, 2147483647, 'US', 'United States'), +('198.65.166.192', '198.65.166.255', 2147483647, 2147483647, 'A1', 'Anonymous Proxy'), +('198.65.167.0', '198.65.167.191', 2147483647, 2147483647, 'US', 'United States'), +('198.65.167.192', '198.65.167.223', 2147483647, 2147483647, 'A1', 'Anonymous Proxy'), +('198.65.167.224', '198.68.17.255', 2147483647, 2147483647, 'US', 'United States'), +('198.68.18.0', '198.68.19.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('198.68.20.0', '198.68.176.255', 2147483647, 2147483647, 'US', 'United States'), +('198.68.177.0', '198.68.177.7', 2147483647, 2147483647, 'CA', 'Canada'), +('198.68.177.8', '198.68.216.127', 2147483647, 2147483647, 'US', 'United States'), +('198.68.216.128', '198.68.216.143', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('198.68.216.144', '198.68.222.63', 2147483647, 2147483647, 'US', 'United States'), +('198.68.222.64', '198.68.222.71', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('198.68.222.72', '198.68.239.255', 2147483647, 2147483647, 'US', 'United States'), +('198.68.240.0', '198.68.247.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('198.68.248.0', '198.69.11.255', 2147483647, 2147483647, 'US', 'United States'), +('198.69.12.0', '198.69.13.255', 2147483647, 2147483647, 'YE', 'Yemen'), +('198.69.14.0', '198.69.39.255', 2147483647, 2147483647, 'US', 'United States'), +('198.69.40.0', '198.69.47.255', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('198.69.48.0', '198.70.0.207', 2147483647, 2147483647, 'US', 'United States'), +('198.70.0.208', '198.70.0.215', 2147483647, 2147483647, 'GE', 'Georgia'), +('198.70.0.216', '198.70.62.79', 2147483647, 2147483647, 'US', 'United States'), +('198.70.62.80', '198.70.62.95', 2147483647, 2147483647, 'CA', 'Canada'), +('198.70.62.96', '198.70.195.255', 2147483647, 2147483647, 'US', 'United States'), +('198.70.196.0', '198.70.196.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.70.197.0', '198.71.127.255', 2147483647, 2147483647, 'US', 'United States'), +('198.72.0.0', '198.72.127.255', 2147483647, 2147483647, 'US', 'United States'), +('198.73.31.0', '198.73.37.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.73.38.0', '198.73.38.255', 2147483647, 2147483647, 'US', 'United States'), +('198.73.39.0', '198.73.157.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.73.158.0', '198.73.160.255', 2147483647, 2147483647, 'US', 'United States'), +('198.73.161.0', '198.73.171.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.73.172.0', '198.73.175.255', 2147483647, 2147483647, 'US', 'United States'), +('198.73.176.0', '198.73.219.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.73.220.0', '198.73.220.255', 2147483647, 2147483647, 'JP', 'Japan'), +('198.73.221.0', '198.73.221.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.73.222.0', '198.73.239.255', 2147483647, 2147483647, 'US', 'United States'), +('198.73.240.0', '198.73.252.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.73.253.0', '198.73.253.255', 2147483647, 2147483647, 'US', 'United States'), +('198.73.254.0', '198.73.254.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.74.0.0', '198.77.66.255', 2147483647, 2147483647, 'US', 'United States'), +('198.77.67.0', '198.77.67.255', 2147483647, 2147483647, 'AS', 'American Samoa'), +('198.77.68.0', '198.77.73.255', 2147483647, 2147483647, 'US', 'United States'), +('198.77.74.0', '198.77.75.255', 2147483647, 2147483647, 'AS', 'American Samoa'), +('198.77.76.0', '198.80.51.255', 2147483647, 2147483647, 'US', 'United States'), +('198.80.52.0', '198.80.55.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.80.56.0', '198.80.119.255', 2147483647, 2147483647, 'US', 'United States'), +('198.80.120.0', '198.80.120.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('198.80.121.0', '198.80.121.255', 2147483647, 2147483647, 'US', 'United States'), +('198.80.122.0', '198.80.123.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('198.80.124.0', '198.80.255.255', 2147483647, 2147483647, 'US', 'United States'), +('198.81.0.0', '198.81.3.255', 2147483647, 2147483647, 'JP', 'Japan'), +('198.81.4.0', '198.81.7.255', 2147483647, 2147483647, 'US', 'United States'), +('198.81.8.0', '198.81.11.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('198.81.12.0', '198.81.232.255', 2147483647, 2147483647, 'US', 'United States'), +('198.81.233.0', '198.81.233.255', 2147483647, 2147483647, 'GU', 'Guam'), +('198.81.234.0', '198.89.7.255', 2147483647, 2147483647, 'US', 'United States'), +('198.89.8.0', '198.89.15.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.89.16.0', '198.89.47.255', 2147483647, 2147483647, 'US', 'United States'), +('198.89.64.0', '198.89.95.255', 2147483647, 2147483647, 'US', 'United States'), +('198.89.128.0', '198.93.47.255', 2147483647, 2147483647, 'US', 'United States'), +('198.93.48.0', '198.93.51.255', 2147483647, 2147483647, 'AN', 'Netherlands Antilles'), +('198.93.52.0', '198.93.175.255', 2147483647, 2147483647, 'US', 'United States'), +('198.93.176.0', '198.93.183.255', 2147483647, 2147483647, 'AN', 'Netherlands Antilles'), +('198.93.184.0', '198.95.255.255', 2147483647, 2147483647, 'US', 'United States'), +('198.96.0.0', '198.96.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.97.0.0', '198.99.147.255', 2147483647, 2147483647, 'US', 'United States'), +('198.99.148.0', '198.99.148.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('198.99.149.0', '198.99.169.255', 2147483647, 2147483647, 'US', 'United States'), +('198.99.170.0', '198.99.170.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.99.171.0', '198.99.172.255', 2147483647, 2147483647, 'US', 'United States'), +('198.99.173.0', '198.99.173.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('198.99.174.0', '198.99.217.255', 2147483647, 2147483647, 'US', 'United States'), +('198.99.218.0', '198.99.221.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.99.222.0', '198.99.222.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('198.99.223.0', '198.100.127.255', 2147483647, 2147483647, 'US', 'United States'), +('198.100.128.0', '198.100.135.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.101.0.0', '198.101.63.255', 2147483647, 2147483647, 'US', 'United States'), +('198.102.0.0', '198.102.173.255', 2147483647, 2147483647, 'US', 'United States'), +('198.102.174.0', '198.102.174.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.102.175.0', '198.102.223.255', 2147483647, 2147483647, 'US', 'United States'), +('198.102.224.0', '198.102.227.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.102.228.0', '198.102.255.255', 2147483647, 2147483647, 'US', 'United States'), +('198.103.0.0', '198.103.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.104.0.0', '198.105.16.255', 2147483647, 2147483647, 'US', 'United States'), +('198.105.17.0', '198.105.22.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.105.23.0', '198.105.25.255', 2147483647, 2147483647, 'US', 'United States'), +('198.105.32.0', '198.105.47.255', 2147483647, 2147483647, 'US', 'United States'), +('198.105.64.0', '198.105.79.255', 2147483647, 2147483647, 'US', 'United States'), +('198.105.128.0', '198.112.5.255', 2147483647, 2147483647, 'US', 'United States'), +('198.112.6.0', '198.112.6.255', 2147483647, 2147483647, 'JP', 'Japan'), +('198.112.7.0', '198.116.24.255', 2147483647, 2147483647, 'US', 'United States'), +('198.116.25.0', '198.116.25.255', 2147483647, 2147483647, 'KE', 'Kenya'), +('198.116.26.0', '198.116.29.255', 2147483647, 2147483647, 'US', 'United States'), +('198.116.30.0', '198.116.30.255', 2147483647, 2147483647, 'ES', 'Spain'), +('198.116.31.0', '198.133.31.255', 2147483647, 2147483647, 'US', 'United States'), +('198.133.32.0', '198.133.37.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.133.38.0', '198.133.46.255', 2147483647, 2147483647, 'US', 'United States'), +('198.133.47.0', '198.133.47.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.133.48.0', '198.133.62.255', 2147483647, 2147483647, 'US', 'United States'), +('198.133.63.0', '198.133.72.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.133.73.0', '198.133.74.255', 2147483647, 2147483647, 'US', 'United States'), +('198.133.76.0', '198.133.79.255', 2147483647, 2147483647, 'US', 'United States'), +('198.133.80.0', '198.133.85.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('198.133.86.0', '198.133.139.255', 2147483647, 2147483647, 'US', 'United States'), +('198.133.140.0', '198.133.140.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('198.133.141.0', '198.133.142.255', 2147483647, 2147483647, 'US', 'United States'), +('198.133.144.0', '198.133.161.255', 2147483647, 2147483647, 'US', 'United States'), +('198.133.162.0', '198.133.164.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.133.165.0', '198.133.166.255', 2147483647, 2147483647, 'US', 'United States'), +('198.133.168.0', '198.133.172.255', 2147483647, 2147483647, 'US', 'United States'), +('198.133.174.0', '198.133.174.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.133.175.0', '198.133.205.255', 2147483647, 2147483647, 'US', 'United States'), +('198.133.206.0', '198.133.206.255', 2147483647, 2147483647, 'JP', 'Japan'), +('198.133.207.0', '198.133.225.255', 2147483647, 2147483647, 'US', 'United States'), +('198.133.226.0', '198.133.226.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('198.133.227.0', '198.133.230.255', 2147483647, 2147483647, 'US', 'United States'), +('198.133.231.0', '198.133.231.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.133.232.0', '198.134.170.255', 2147483647, 2147483647, 'US', 'United States'), +('198.134.171.0', '198.134.171.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.134.172.0', '198.134.218.255', 2147483647, 2147483647, 'US', 'United States'), +('198.134.219.0', '198.134.219.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.134.220.0', '198.135.71.255', 2147483647, 2147483647, 'US', 'United States'), +('198.135.72.0', '198.135.72.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.135.73.0', '198.135.73.255', 2147483647, 2147483647, 'US', 'United States'), +('198.135.75.0', '198.135.106.255', 2147483647, 2147483647, 'US', 'United States'), +('198.135.107.0', '198.135.107.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.135.108.0', '198.135.115.255', 2147483647, 2147483647, 'US', 'United States'), +('198.135.116.0', '198.135.117.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.135.118.0', '198.135.136.255', 2147483647, 2147483647, 'US', 'United States'), +('198.135.137.0', '198.135.138.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('198.135.139.0', '198.135.166.255', 2147483647, 2147483647, 'US', 'United States'), +('198.135.167.0', '198.135.167.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('198.135.168.0', '198.135.215.255', 2147483647, 2147483647, 'US', 'United States'), +('198.135.216.0', '198.135.216.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.135.217.0', '198.137.63.255', 2147483647, 2147483647, 'US', 'United States'), +('198.137.64.0', '198.137.66.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('198.137.67.0', '198.137.68.255', 2147483647, 2147483647, 'US', 'United States'), +('198.137.69.0', '198.137.69.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('198.137.70.0', '198.137.81.127', 2147483647, 2147483647, 'US', 'United States'), +('198.137.81.128', '198.137.81.191', 2147483647, 2147483647, 'NL', 'Netherlands'), +('198.137.81.192', '198.137.81.255', 2147483647, 2147483647, 'US', 'United States'), +('198.137.82.0', '198.137.83.255', 2147483647, 2147483647, 'AU', 'Australia'), +('198.137.84.0', '198.137.84.255', 2147483647, 2147483647, 'US', 'United States'), +('198.137.85.0', '198.137.85.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('198.137.86.0', '198.137.86.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('198.137.87.0', '198.137.89.255', 2147483647, 2147483647, 'JP', 'Japan'), +('198.137.90.0', '198.137.91.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('198.137.92.0', '198.137.93.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('198.137.94.0', '198.137.97.255', 2147483647, 2147483647, 'US', 'United States'), +('198.137.98.0', '198.137.98.255', 2147483647, 2147483647, 'FR', 'France'), +('198.137.99.0', '198.137.102.255', 2147483647, 2147483647, 'US', 'United States'), +('198.137.103.0', '198.137.103.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('198.137.104.0', '198.137.104.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.137.105.0', '198.137.106.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('198.137.107.0', '198.137.107.255', 2147483647, 2147483647, 'DE', 'Germany'), +('198.137.108.0', '198.137.119.255', 2147483647, 2147483647, 'US', 'United States'), +('198.137.120.0', '198.137.120.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.137.121.0', '198.137.121.255', 2147483647, 2147483647, 'DE', 'Germany'), +('198.137.122.0', '198.137.123.255', 2147483647, 2147483647, 'FR', 'France'), +('198.137.124.0', '198.140.150.255', 2147483647, 2147483647, 'US', 'United States'), +('198.140.151.0', '198.140.151.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.140.152.0', '198.141.255.255', 2147483647, 2147483647, 'US', 'United States'), +('198.142.0.0', '198.142.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('198.143.0.0', '198.147.159.255', 2147483647, 2147483647, 'US', 'United States'), +('198.147.160.0', '198.147.160.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('198.147.161.0', '198.148.176.255', 2147483647, 2147483647, 'US', 'United States'), +('198.148.177.0', '198.148.178.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('198.148.179.0', '198.148.230.255', 2147483647, 2147483647, 'US', 'United States'), +('198.148.231.0', '198.148.231.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.148.232.0', '198.148.238.255', 2147483647, 2147483647, 'US', 'United States'), +('198.148.239.0', '198.148.239.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.148.240.0', '198.151.131.255', 2147483647, 2147483647, 'US', 'United States'), +('198.151.132.0', '198.151.132.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('198.151.133.0', '198.160.255.255', 2147483647, 2147483647, 'US', 'United States'), +('198.161.0.0', '198.161.79.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.161.80.0', '198.161.80.255', 2147483647, 2147483647, 'US', 'United States'), +('198.161.81.0', '198.163.73.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.163.74.0', '198.163.75.255', 2147483647, 2147483647, 'US', 'United States'), +('198.163.76.0', '198.163.183.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.163.184.0', '198.163.207.255', 2147483647, 2147483647, 'US', 'United States'), +('198.163.208.0', '198.165.87.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.165.88.0', '198.165.95.255', 2147483647, 2147483647, 'PM', 'Saint Pierre and Miquelon'), +('198.165.96.0', '198.165.135.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.165.136.0', '198.165.139.255', 2147483647, 2147483647, 'PM', 'Saint Pierre and Miquelon'), +('198.165.140.0', '198.165.163.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.165.164.0', '198.165.167.255', 2147483647, 2147483647, 'PM', 'Saint Pierre and Miquelon'), +('198.165.168.0', '198.169.6.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.169.7.0', '198.169.7.255', 2147483647, 2147483647, 'US', 'United States'), +('198.169.8.0', '198.169.187.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.169.188.0', '198.169.189.255', 2147483647, 2147483647, 'US', 'United States'), +('198.169.190.0', '198.169.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.170.0.0', '198.172.200.255', 2147483647, 2147483647, 'US', 'United States'), +('198.172.201.0', '198.172.202.127', 2147483647, 2147483647, 'A1', 'Anonymous Proxy'), +('198.172.202.128', '198.172.203.191', 2147483647, 2147483647, 'US', 'United States'), +('198.172.203.192', '198.172.204.255', 2147483647, 2147483647, 'A1', 'Anonymous Proxy'), +('198.172.205.0', '198.172.205.255', 2147483647, 2147483647, 'US', 'United States'), +('198.172.206.0', '198.172.207.127', 2147483647, 2147483647, 'A1', 'Anonymous Proxy'), +('198.172.207.128', '198.175.110.255', 2147483647, 2147483647, 'US', 'United States'), +('198.175.111.0', '198.175.111.255', 2147483647, 2147483647, 'JP', 'Japan'), +('198.175.112.0', '198.176.18.255', 2147483647, 2147483647, 'US', 'United States'), +('198.176.19.0', '198.176.19.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('198.176.20.0', '198.176.25.255', 2147483647, 2147483647, 'US', 'United States'), +('198.176.32.0', '198.176.47.255', 2147483647, 2147483647, 'US', 'United States'), +('198.176.64.0', '198.176.222.255', 2147483647, 2147483647, 'US', 'United States'), +('198.176.223.0', '198.176.227.255', 2147483647, 2147483647, 'DE', 'Germany'), +('198.176.228.0', '198.180.64.255', 2147483647, 2147483647, 'US', 'United States'), +('198.180.65.0', '198.180.65.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('198.180.66.0', '198.180.66.255', 2147483647, 2147483647, 'US', 'United States'), +('198.180.67.0', '198.180.67.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('198.180.68.0', '198.180.79.255', 2147483647, 2147483647, 'US', 'United States'), +('198.180.80.0', '198.180.94.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('198.180.95.0', '198.180.97.255', 2147483647, 2147483647, 'US', 'United States'), +('198.180.98.0', '198.180.98.255', 2147483647, 2147483647, 'DE', 'Germany'), +('198.180.99.0', '198.180.99.255', 2147483647, 2147483647, 'IT', 'Italy'), +('198.180.100.0', '198.180.101.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('198.180.102.0', '198.180.104.255', 2147483647, 2147483647, 'DE', 'Germany'), +('198.180.105.0', '198.180.105.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('198.180.106.0', '198.180.106.255', 2147483647, 2147483647, 'DE', 'Germany'), +('198.180.107.0', '198.180.120.255', 2147483647, 2147483647, 'US', 'United States'), +('198.180.121.0', '198.180.122.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.180.123.0', '198.180.123.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('198.180.124.0', '198.180.124.255', 2147483647, 2147483647, 'AU', 'Australia'), +('198.180.125.0', '198.180.125.255', 2147483647, 2147483647, 'FR', 'France'), +('198.180.126.0', '198.180.126.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('198.180.127.0', '198.180.127.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('198.180.128.0', '198.180.149.255', 2147483647, 2147483647, 'US', 'United States'), +('198.180.150.0', '198.180.153.255', 2147483647, 2147483647, 'JP', 'Japan'), +('198.180.154.0', '198.182.169.255', 2147483647, 2147483647, 'US', 'United States'), +('198.182.170.0', '198.182.170.255', 2147483647, 2147483647, 'BM', 'Bermuda'), +('198.182.171.0', '198.184.160.255', 2147483647, 2147483647, 'US', 'United States'), +('198.184.161.0', '198.184.161.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('198.184.162.0', '198.184.196.255', 2147483647, 2147483647, 'US', 'United States'), +('198.184.197.0', '198.184.197.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.184.198.0', '198.186.234.255', 2147483647, 2147483647, 'US', 'United States'), +('198.186.235.0', '198.186.235.255', 2147483647, 2147483647, 'BM', 'Bermuda'), +('198.186.236.0', '198.187.170.255', 2147483647, 2147483647, 'US', 'United States'), +('198.187.171.0', '198.187.171.255', 2147483647, 2147483647, 'BM', 'Bermuda'), +('198.187.172.0', '198.199.255.255', 2147483647, 2147483647, 'US', 'United States'), +('198.200.0.0', '198.200.15.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('198.200.16.0', '198.200.31.255', 2147483647, 2147483647, 'US', 'United States'), +('198.200.128.0', '198.203.231.255', 2147483647, 2147483647, 'US', 'United States'), +('198.203.233.0', '198.203.234.255', 2147483647, 2147483647, 'US', 'United States'), +('198.203.235.0', '198.203.235.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.203.236.0', '198.204.70.255', 2147483647, 2147483647, 'US', 'United States'), +('198.204.71.0', '198.204.72.255', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('198.204.73.0', '198.206.196.255', 2147483647, 2147483647, 'US', 'United States'), +('198.206.197.0', '198.206.197.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('198.206.198.0', '198.206.199.255', 2147483647, 2147483647, 'US', 'United States'), +('198.206.200.0', '198.206.202.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('198.206.203.0', '198.207.15.255', 2147483647, 2147483647, 'US', 'United States'), +('198.207.16.0', '198.207.23.255', 2147483647, 2147483647, 'BM', 'Bermuda'), +('198.207.32.0', '198.207.79.255', 2147483647, 2147483647, 'US', 'United States'), +('198.207.80.0', '198.207.80.255', 2147483647, 2147483647, 'DE', 'Germany'), +('198.207.81.0', '198.207.99.127', 2147483647, 2147483647, 'US', 'United States'), +('198.207.99.128', '198.207.99.255', 2147483647, 2147483647, 'IT', 'Italy'), +('198.207.100.0', '198.213.50.255', 2147483647, 2147483647, 'US', 'United States'), +('198.213.51.0', '198.213.51.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('198.213.52.0', '198.231.63.255', 2147483647, 2147483647, 'US', 'United States'), +('198.231.64.0', '198.231.64.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.231.65.0', '198.231.65.255', 2147483647, 2147483647, 'US', 'United States'), +('198.231.66.0', '198.231.66.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.231.67.0', '198.231.67.255', 2147483647, 2147483647, 'US', 'United States'), +('198.231.68.0', '198.231.71.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.231.72.0', '198.231.73.255', 2147483647, 2147483647, 'US', 'United States'), +('198.231.74.0', '198.231.77.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.231.78.0', '198.231.87.255', 2147483647, 2147483647, 'US', 'United States'), +('198.231.88.0', '198.231.93.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.231.94.0', '198.231.94.255', 2147483647, 2147483647, 'US', 'United States'), +('198.231.95.0', '198.231.95.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.231.96.0', '198.231.99.255', 2147483647, 2147483647, 'US', 'United States'), +('198.231.100.0', '198.231.104.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.231.105.0', '198.231.105.255', 2147483647, 2147483647, 'US', 'United States'), +('198.231.106.0', '198.231.106.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.231.107.0', '198.231.107.255', 2147483647, 2147483647, 'US', 'United States'), +('198.231.108.0', '198.231.127.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.231.128.0', '198.234.255.255', 2147483647, 2147483647, 'US', 'United States'), +('198.235.0.0', '198.235.31.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.235.32.0', '198.235.47.255', 2147483647, 2147483647, 'US', 'United States'), +('198.235.48.0', '198.235.177.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.235.178.0', '198.235.179.255', 2147483647, 2147483647, 'US', 'United States'), +('198.235.180.0', '198.235.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.236.0.0', '198.240.127.255', 2147483647, 2147483647, 'US', 'United States'), +('198.240.128.0', '198.240.129.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('198.240.130.0', '198.240.130.255', 2147483647, 2147483647, 'US', 'United States'), +('198.240.131.0', '198.240.131.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('198.240.132.0', '198.240.132.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('198.240.133.0', '198.240.133.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('198.240.134.0', '198.240.140.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('198.240.141.0', '198.240.141.255', 2147483647, 2147483647, 'JP', 'Japan'), +('198.240.142.0', '198.240.145.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('198.240.146.0', '198.240.146.255', 2147483647, 2147483647, 'AU', 'Australia'), +('198.240.147.0', '198.240.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('198.241.0.0', '198.245.63.255', 2147483647, 2147483647, 'US', 'United States'), +('198.245.128.0', '198.245.138.255', 2147483647, 2147483647, 'US', 'United States'), +('198.245.139.0', '198.245.139.255', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('198.245.140.0', '198.245.159.255', 2147483647, 2147483647, 'US', 'United States'), +('198.245.160.0', '198.245.160.255', 2147483647, 2147483647, 'BB', 'Barbados'), +('198.245.161.0', '198.246.228.255', 2147483647, 2147483647, 'US', 'United States'), +('198.246.229.0', '198.246.230.255', 2147483647, 2147483647, 'BB', 'Barbados'), +('198.246.231.0', '198.249.0.255', 2147483647, 2147483647, 'US', 'United States'), +('198.249.1.0', '198.249.1.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.249.2.0', '198.249.4.255', 2147483647, 2147483647, 'US', 'United States'), +('198.249.5.0', '198.249.5.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.249.6.0', '198.249.14.255', 2147483647, 2147483647, 'US', 'United States'), +('198.249.15.0', '198.249.15.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.249.16.0', '198.249.16.255', 2147483647, 2147483647, 'US', 'United States'), +('198.249.17.0', '198.249.18.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.249.19.0', '198.249.31.255', 2147483647, 2147483647, 'US', 'United States'), +('198.249.32.0', '198.249.33.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.249.34.0', '198.249.35.255', 2147483647, 2147483647, 'US', 'United States'), +('198.249.36.0', '198.249.36.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.249.37.0', '198.249.38.255', 2147483647, 2147483647, 'US', 'United States'), +('198.249.39.0', '198.249.39.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.249.40.0', '198.249.51.255', 2147483647, 2147483647, 'US', 'United States'), +('198.249.52.0', '198.249.53.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.249.54.0', '198.249.60.255', 2147483647, 2147483647, 'US', 'United States'), +('198.249.61.0', '198.249.62.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.249.63.0', '198.249.69.255', 2147483647, 2147483647, 'US', 'United States'), +('198.249.70.0', '198.249.70.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.249.71.0', '198.249.83.255', 2147483647, 2147483647, 'US', 'United States'), +('198.249.84.0', '198.249.84.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.249.85.0', '198.249.87.255', 2147483647, 2147483647, 'US', 'United States'), +('198.249.88.0', '198.249.88.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.249.89.0', '198.249.90.255', 2147483647, 2147483647, 'US', 'United States'), +('198.249.91.0', '198.249.91.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.249.92.0', '198.249.95.255', 2147483647, 2147483647, 'US', 'United States'), +('198.249.96.0', '198.249.96.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.249.97.0', '198.249.102.255', 2147483647, 2147483647, 'US', 'United States'), +('198.249.103.0', '198.249.103.255', 2147483647, 2147483647, 'VG', 'Virgin Islands, British'), +('198.249.104.0', '198.249.108.255', 2147483647, 2147483647, 'US', 'United States'), +('198.249.109.0', '198.249.109.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.249.110.0', '198.249.110.255', 2147483647, 2147483647, 'US', 'United States'), +('198.249.111.0', '198.249.111.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.249.112.0', '198.249.114.255', 2147483647, 2147483647, 'US', 'United States'), +('198.249.115.0', '198.249.115.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.249.116.0', '198.249.123.255', 2147483647, 2147483647, 'US', 'United States'), +('198.249.124.0', '198.249.124.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.249.125.0', '198.249.127.255', 2147483647, 2147483647, 'US', 'United States'), +('198.249.128.0', '198.249.128.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.249.129.0', '198.249.133.255', 2147483647, 2147483647, 'US', 'United States'), +('198.249.134.0', '198.249.135.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.249.136.0', '198.249.151.255', 2147483647, 2147483647, 'US', 'United States'), +('198.249.152.0', '198.249.152.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.249.153.0', '198.249.153.255', 2147483647, 2147483647, 'US', 'United States'), +('198.249.154.0', '198.249.155.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.249.156.0', '198.249.156.255', 2147483647, 2147483647, 'US', 'United States'), +('198.249.157.0', '198.249.157.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.249.158.0', '198.249.158.255', 2147483647, 2147483647, 'US', 'United States'), +('198.249.159.0', '198.249.163.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.249.164.0', '198.249.165.255', 2147483647, 2147483647, 'US', 'United States'), +('198.249.166.0', '198.249.166.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.249.167.0', '198.249.169.255', 2147483647, 2147483647, 'US', 'United States'), +('198.249.170.0', '198.249.173.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.249.174.0', '198.249.176.255', 2147483647, 2147483647, 'US', 'United States'), +('198.249.177.0', '198.249.177.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.249.178.0', '198.249.179.255', 2147483647, 2147483647, 'US', 'United States'), +('198.249.180.0', '198.249.180.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.249.181.0', '198.249.182.255', 2147483647, 2147483647, 'US', 'United States'), +('198.249.183.0', '198.249.183.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.249.184.0', '198.249.188.255', 2147483647, 2147483647, 'US', 'United States'), +('198.249.189.0', '198.249.189.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.249.190.0', '198.249.195.255', 2147483647, 2147483647, 'US', 'United States'), +('198.249.196.0', '198.249.196.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.249.197.0', '198.249.197.255', 2147483647, 2147483647, 'US', 'United States'), +('198.249.198.0', '198.249.198.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.249.199.0', '198.249.199.255', 2147483647, 2147483647, 'US', 'United States'), +('198.249.200.0', '198.249.200.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.249.201.0', '198.249.203.255', 2147483647, 2147483647, 'US', 'United States'), +('198.249.204.0', '198.249.204.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.249.205.0', '198.249.208.255', 2147483647, 2147483647, 'US', 'United States'), +('198.249.209.0', '198.249.213.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.249.214.0', '198.249.215.255', 2147483647, 2147483647, 'US', 'United States'), +('198.249.216.0', '198.249.217.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.249.218.0', '198.249.221.255', 2147483647, 2147483647, 'US', 'United States'), +('198.249.222.0', '198.249.223.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.249.224.0', '198.249.228.255', 2147483647, 2147483647, 'US', 'United States'), +('198.249.229.0', '198.249.231.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.249.232.0', '198.249.235.255', 2147483647, 2147483647, 'US', 'United States'), +('198.249.236.0', '198.249.237.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.249.238.0', '198.249.241.255', 2147483647, 2147483647, 'US', 'United States'), +('198.249.242.0', '198.249.245.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.249.246.0', '198.249.247.255', 2147483647, 2147483647, 'US', 'United States'), +('198.249.248.0', '198.249.249.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.249.250.0', '198.249.250.255', 2147483647, 2147483647, 'US', 'United States'), +('198.249.251.0', '198.249.251.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.249.252.0', '198.249.252.255', 2147483647, 2147483647, 'US', 'United States'), +('198.249.253.0', '198.249.253.255', 2147483647, 2147483647, 'CA', 'Canada'), +('198.249.254.0', '199.0.79.255', 2147483647, 2147483647, 'US', 'United States'), +('199.0.80.0', '199.0.87.255', 2147483647, 2147483647, 'AW', 'Aruba'), +('199.0.88.0', '199.0.91.255', 2147483647, 2147483647, 'US', 'United States'), +('199.0.92.0', '199.0.92.255', 2147483647, 2147483647, 'SL', 'Sierra Leone'), +('199.0.93.0', '199.1.151.255', 2147483647, 2147483647, 'US', 'United States'), +('199.1.152.0', '199.1.159.255', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('199.1.160.0', '199.2.111.255', 2147483647, 2147483647, 'US', 'United States'), +('199.2.112.0', '199.2.119.255', 2147483647, 2147483647, 'AW', 'Aruba'), +('199.2.120.0', '199.3.195.255', 2147483647, 2147483647, 'US', 'United States'), +('199.3.196.0', '199.3.196.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('199.3.197.0', '199.3.209.255', 2147483647, 2147483647, 'US', 'United States'), +('199.3.210.0', '199.3.210.127', 2147483647, 2147483647, 'CN', 'China'), +('199.3.210.128', '199.6.63.255', 2147483647, 2147483647, 'US', 'United States'), +('199.6.64.0', '199.6.68.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('199.6.69.0', '199.6.71.255', 2147483647, 2147483647, 'NO', 'Norway'), +('199.6.72.0', '199.6.72.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('199.6.73.0', '199.6.77.255', 2147483647, 2147483647, 'US', 'United States'), +('199.6.78.0', '199.6.78.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('199.6.79.0', '199.6.79.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.6.80.0', '199.6.83.255', 2147483647, 2147483647, 'IT', 'Italy'), +('199.6.84.0', '199.6.84.255', 2147483647, 2147483647, 'FR', 'France'), +('199.6.85.0', '199.6.87.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('199.6.88.0', '199.6.88.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('199.6.89.0', '199.6.91.255', 2147483647, 2147483647, 'FR', 'France'), +('199.6.92.0', '199.6.105.255', 2147483647, 2147483647, 'US', 'United States'), +('199.6.106.0', '199.6.106.255', 2147483647, 2147483647, 'JP', 'Japan'), +('199.6.107.0', '199.6.127.255', 2147483647, 2147483647, 'US', 'United States'), +('199.6.128.0', '199.6.135.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('199.6.136.0', '199.7.69.255', 2147483647, 2147483647, 'US', 'United States'), +('199.7.70.0', '199.7.70.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('199.7.71.0', '199.7.81.255', 2147483647, 2147483647, 'US', 'United States'), +('199.7.82.0', '199.7.82.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('199.7.83.0', '199.7.83.255', 2147483647, 2147483647, 'US', 'United States'), +('199.7.85.0', '199.7.86.255', 2147483647, 2147483647, 'US', 'United States'), +('199.7.87.0', '199.7.89.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.7.90.0', '199.7.90.255', 2147483647, 2147483647, 'MS', 'Montserrat'), +('199.7.91.0', '199.7.95.255', 2147483647, 2147483647, 'US', 'United States'), +('199.8.0.0', '199.15.79.255', 2147483647, 2147483647, 'US', 'United States'), +('199.15.80.0', '199.15.88.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.15.92.0', '199.15.95.255', 2147483647, 2147483647, 'US', 'United States'), +('199.16.0.0', '199.19.47.255', 2147483647, 2147483647, 'US', 'United States'), +('199.19.48.0', '199.19.63.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.20.0.0', '199.21.255.255', 2147483647, 2147483647, 'US', 'United States'), +('199.22.0.0', '199.25.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.26.0.0', '199.26.64.255', 2147483647, 2147483647, 'US', 'United States'), +('199.26.68.0', '199.26.71.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.26.72.0', '199.26.79.255', 2147483647, 2147483647, 'US', 'United States'), +('199.26.96.0', '199.26.233.255', 2147483647, 2147483647, 'US', 'United States'), +('199.26.234.0', '199.26.234.255', 2147483647, 2147483647, 'PA', 'Panama'), +('199.26.235.0', '199.27.63.255', 2147483647, 2147483647, 'US', 'United States'), +('199.28.0.0', '199.29.70.255', 2147483647, 2147483647, 'US', 'United States'), +('199.29.71.0', '199.29.71.255', 2147483647, 2147483647, 'KW', 'Kuwait'), +('199.29.72.0', '199.42.102.255', 2147483647, 2147483647, 'US', 'United States'), +('199.42.103.0', '199.42.105.255', 2147483647, 2147483647, 'DE', 'Germany'), +('199.42.106.0', '199.42.239.255', 2147483647, 2147483647, 'US', 'United States'), +('199.42.240.0', '199.42.241.255', 2147483647, 2147483647, 'DE', 'Germany'), +('199.42.242.0', '199.43.0.255', 2147483647, 2147483647, 'US', 'United States'), +('199.43.1.0', '199.43.3.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.43.4.0', '199.43.107.255', 2147483647, 2147483647, 'US', 'United States'), +('199.43.108.0', '199.43.183.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.43.184.0', '199.43.195.255', 2147483647, 2147483647, 'US', 'United States'), +('199.43.199.0', '199.43.207.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.43.208.0', '199.43.242.255', 2147483647, 2147483647, 'US', 'United States'), +('199.43.243.0', '199.43.245.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.43.246.0', '199.43.247.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('199.43.248.0', '199.43.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.44.0.0', '199.45.65.255', 2147483647, 2147483647, 'US', 'United States'), +('199.45.66.0', '199.45.68.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.45.69.0', '199.45.76.255', 2147483647, 2147483647, 'US', 'United States'), +('199.45.77.0', '199.45.77.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.45.78.0', '199.45.103.255', 2147483647, 2147483647, 'US', 'United States'), +('199.45.104.0', '199.45.108.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.45.109.0', '199.45.110.255', 2147483647, 2147483647, 'US', 'United States'), +('199.45.111.0', '199.45.111.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.45.112.0', '199.45.113.255', 2147483647, 2147483647, 'US', 'United States'), +('199.45.114.0', '199.45.115.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.45.116.0', '199.45.116.255', 2147483647, 2147483647, 'US', 'United States'), +('199.45.117.0', '199.45.118.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.45.119.0', '199.45.120.255', 2147483647, 2147483647, 'US', 'United States'), +('199.45.121.0', '199.45.122.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.45.123.0', '199.52.255.255', 2147483647, 2147483647, 'US', 'United States'), +('199.53.0.0', '199.53.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('199.54.0.0', '199.59.255.255', 2147483647, 2147483647, 'US', 'United States'), +('199.60.0.0', '199.60.19.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.60.20.0', '199.60.25.255', 2147483647, 2147483647, 'US', 'United States'), +('199.60.26.0', '199.60.27.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.60.28.0', '199.60.28.255', 2147483647, 2147483647, 'US', 'United States'), +('199.60.29.0', '199.60.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.61.0.0', '199.71.0.255', 2147483647, 2147483647, 'US', 'United States'), +('199.71.1.0', '199.71.175.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.71.176.0', '199.71.179.255', 2147483647, 2147483647, 'US', 'United States'), +('199.71.182.0', '199.71.208.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.71.212.0', '199.71.223.255', 2147483647, 2147483647, 'US', 'United States'), +('199.71.240.0', '199.71.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.72.0.0', '199.83.255.255', 2147483647, 2147483647, 'US', 'United States'), +('199.84.0.0', '199.85.75.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.85.76.0', '199.85.79.255', 2147483647, 2147483647, 'US', 'United States'), +('199.85.96.0', '199.85.124.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.85.125.0', '199.85.127.255', 2147483647, 2147483647, 'US', 'United States'), +('199.85.128.0', '199.85.203.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.85.204.0', '199.85.207.255', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('199.85.208.0', '199.85.219.255', 2147483647, 2147483647, 'US', 'United States'), +('199.85.220.0', '199.85.233.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.85.236.0', '199.85.239.255', 2147483647, 2147483647, 'GD', 'Grenada'), +('199.85.240.0', '199.85.243.255', 2147483647, 2147483647, 'US', 'United States'), +('199.85.245.0', '199.85.245.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.85.246.0', '199.85.246.255', 2147483647, 2147483647, 'US', 'United States'), +('199.85.247.0', '199.85.249.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.85.250.0', '199.85.250.255', 2147483647, 2147483647, 'US', 'United States'), +('199.85.251.0', '199.85.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.86.0.0', '199.91.15.255', 2147483647, 2147483647, 'US', 'United States'), +('199.91.16.0', '199.91.31.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('199.91.32.0', '199.91.47.255', 2147483647, 2147483647, 'US', 'United States'), +('199.92.0.0', '199.95.177.255', 2147483647, 2147483647, 'US', 'United States'), +('199.95.178.0', '199.95.179.255', 2147483647, 2147483647, 'EG', 'Egypt'), +('199.95.180.0', '199.95.180.255', 2147483647, 2147483647, 'US', 'United States'), +('199.95.181.0', '199.95.181.255', 2147483647, 2147483647, 'UZ', 'Uzbekistan'), +('199.95.182.0', '199.95.247.255', 2147483647, 2147483647, 'US', 'United States'), +('199.95.248.0', '199.95.248.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('199.95.249.0', '199.96.27.255', 2147483647, 2147483647, 'US', 'United States'), +('199.96.28.0', '199.96.31.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.96.32.0', '199.96.47.255', 2147483647, 2147483647, 'US', 'United States'), +('199.97.0.0', '199.102.63.255', 2147483647, 2147483647, 'US', 'United States'), +('199.103.0.0', '199.103.25.255', 2147483647, 2147483647, 'US', 'United States'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('199.103.28.0', '199.103.31.255', 2147483647, 2147483647, 'TC', 'Turks and Caicos Islands'), +('199.103.32.0', '199.103.55.255', 2147483647, 2147483647, 'US', 'United States'), +('199.103.56.0', '199.103.63.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.103.64.0', '199.103.67.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('199.103.68.0', '199.103.68.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('199.103.69.0', '199.103.72.255', 2147483647, 2147483647, 'US', 'United States'), +('199.103.73.0', '199.103.73.255', 2147483647, 2147483647, 'ES', 'Spain'), +('199.103.74.0', '199.103.74.255', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('199.103.75.0', '199.103.79.255', 2147483647, 2147483647, 'DE', 'Germany'), +('199.103.80.0', '199.103.80.255', 2147483647, 2147483647, 'US', 'United States'), +('199.103.81.0', '199.103.81.255', 2147483647, 2147483647, 'ES', 'Spain'), +('199.103.82.0', '199.103.83.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('199.103.84.0', '199.103.84.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('199.103.86.0', '199.103.86.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('199.103.87.0', '199.103.88.255', 2147483647, 2147483647, 'FR', 'France'), +('199.103.90.0', '199.103.91.255', 2147483647, 2147483647, 'US', 'United States'), +('199.103.92.0', '199.103.92.255', 2147483647, 2147483647, 'FR', 'France'), +('199.103.93.0', '199.103.93.255', 2147483647, 2147483647, 'DE', 'Germany'), +('199.103.94.0', '199.103.95.255', 2147483647, 2147483647, 'US', 'United States'), +('199.103.96.0', '199.103.99.255', 2147483647, 2147483647, 'DE', 'Germany'), +('199.103.102.0', '199.103.102.255', 2147483647, 2147483647, 'CL', 'Chile'), +('199.103.103.0', '199.103.103.255', 2147483647, 2147483647, 'JP', 'Japan'), +('199.103.104.0', '199.103.105.255', 2147483647, 2147483647, 'AT', 'Austria'), +('199.103.106.0', '199.103.106.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('199.103.107.0', '199.103.107.255', 2147483647, 2147483647, 'DE', 'Germany'), +('199.103.109.0', '199.103.110.255', 2147483647, 2147483647, 'US', 'United States'), +('199.103.111.0', '199.103.112.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('199.103.113.0', '199.103.113.255', 2147483647, 2147483647, 'US', 'United States'), +('199.103.114.0', '199.103.117.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('199.103.119.0', '199.103.119.255', 2147483647, 2147483647, 'IT', 'Italy'), +('199.103.120.0', '199.103.122.255', 2147483647, 2147483647, 'US', 'United States'), +('199.103.123.0', '199.103.125.255', 2147483647, 2147483647, 'FR', 'France'), +('199.103.126.0', '199.103.126.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('199.103.127.0', '199.103.127.255', 2147483647, 2147483647, 'DE', 'Germany'), +('199.103.128.0', '199.106.210.7', 2147483647, 2147483647, 'US', 'United States'), +('199.106.210.8', '199.106.210.31', 2147483647, 2147483647, 'IN', 'India'), +('199.106.210.32', '199.106.210.79', 2147483647, 2147483647, 'NO', 'Norway'), +('199.106.210.80', '199.106.212.31', 2147483647, 2147483647, 'US', 'United States'), +('199.106.212.32', '199.106.212.47', 2147483647, 2147483647, 'IN', 'India'), +('199.106.212.48', '199.116.55.255', 2147483647, 2147483647, 'US', 'United States'), +('199.116.56.0', '199.116.63.255', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('199.117.0.0', '199.125.255.255', 2147483647, 2147483647, 'US', 'United States'), +('199.126.0.0', '199.126.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.127.0.0', '199.127.63.255', 2147483647, 2147483647, 'US', 'United States'), +('199.128.0.0', '199.161.199.255', 2147483647, 2147483647, 'US', 'United States'), +('199.161.200.0', '199.161.201.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.161.202.0', '199.161.217.255', 2147483647, 2147483647, 'US', 'United States'), +('199.161.218.0', '199.161.218.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.161.219.0', '199.162.229.255', 2147483647, 2147483647, 'US', 'United States'), +('199.162.230.0', '199.162.230.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.162.231.0', '199.164.128.255', 2147483647, 2147483647, 'US', 'United States'), +('199.164.129.0', '199.164.129.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.164.130.0', '199.165.207.255', 2147483647, 2147483647, 'US', 'United States'), +('199.165.208.0', '199.165.211.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('199.165.212.0', '199.165.255.255', 2147483647, 2147483647, 'US', 'United States'), +('199.166.0.0', '199.166.23.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.166.24.0', '199.166.33.255', 2147483647, 2147483647, 'US', 'United States'), +('199.166.34.0', '199.166.247.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.166.248.0', '199.166.250.255', 2147483647, 2147483647, 'US', 'United States'), +('199.166.251.0', '199.166.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.167.0.0', '199.167.15.255', 2147483647, 2147483647, 'US', 'United States'), +('199.168.0.0', '199.172.191.255', 2147483647, 2147483647, 'US', 'United States'), +('199.172.192.0', '199.172.227.255', 2147483647, 2147483647, 'BM', 'Bermuda'), +('199.172.228.0', '199.172.229.255', 2147483647, 2147483647, 'KY', 'Cayman Islands'), +('199.172.230.0', '199.172.255.255', 2147483647, 2147483647, 'BM', 'Bermuda'), +('199.173.0.0', '199.173.152.255', 2147483647, 2147483647, 'US', 'United States'), +('199.173.153.0', '199.173.153.255', 2147483647, 2147483647, 'KW', 'Kuwait'), +('199.173.154.0', '199.174.255.255', 2147483647, 2147483647, 'US', 'United States'), +('199.175.0.0', '199.175.43.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.175.44.0', '199.175.47.255', 2147483647, 2147483647, 'US', 'United States'), +('199.175.64.0', '199.175.183.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.175.184.0', '199.175.187.255', 2147483647, 2147483647, 'US', 'United States'), +('199.175.188.0', '199.175.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.176.0.0', '199.180.25.255', 2147483647, 2147483647, 'US', 'United States'), +('199.180.28.0', '199.180.31.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.180.32.0', '199.180.51.255', 2147483647, 2147483647, 'US', 'United States'), +('199.180.52.0', '199.180.55.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.180.56.0', '199.180.63.255', 2147483647, 2147483647, 'US', 'United States'), +('199.181.0.0', '199.184.255.255', 2147483647, 2147483647, 'US', 'United States'), +('199.185.0.0', '199.185.138.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.185.139.0', '199.185.139.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('199.185.140.0', '199.185.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.186.0.0', '199.186.24.255', 2147483647, 2147483647, 'US', 'United States'), +('199.186.25.0', '199.186.34.255', 2147483647, 2147483647, 'CL', 'Chile'), +('199.186.35.0', '199.187.127.255', 2147483647, 2147483647, 'US', 'United States'), +('199.188.0.0', '199.188.31.255', 2147483647, 2147483647, 'US', 'United States'), +('199.188.32.0', '199.188.32.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.188.33.0', '199.188.41.255', 2147483647, 2147483647, 'US', 'United States'), +('199.188.42.0', '199.188.42.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.188.43.0', '199.188.47.255', 2147483647, 2147483647, 'US', 'United States'), +('199.189.0.0', '199.189.63.255', 2147483647, 2147483647, 'US', 'United States'), +('199.190.0.0', '199.191.191.255', 2147483647, 2147483647, 'US', 'United States'), +('199.191.192.0', '199.191.192.255', 2147483647, 2147483647, 'IL', 'Israel'), +('199.191.193.0', '199.194.0.255', 2147483647, 2147483647, 'US', 'United States'), +('199.194.1.0', '199.194.1.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.194.2.0', '199.194.2.255', 2147483647, 2147483647, 'US', 'United States'), +('199.194.3.0', '199.194.6.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.194.7.0', '199.194.8.255', 2147483647, 2147483647, 'US', 'United States'), +('199.194.9.0', '199.194.9.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.194.10.0', '199.194.11.255', 2147483647, 2147483647, 'US', 'United States'), +('199.194.12.0', '199.194.12.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.194.13.0', '199.194.16.255', 2147483647, 2147483647, 'US', 'United States'), +('199.194.17.0', '199.194.17.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.194.18.0', '199.194.20.255', 2147483647, 2147483647, 'US', 'United States'), +('199.194.21.0', '199.194.21.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.194.22.0', '199.194.23.255', 2147483647, 2147483647, 'US', 'United States'), +('199.194.24.0', '199.194.24.255', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('199.194.25.0', '199.194.25.255', 2147483647, 2147483647, 'US', 'United States'), +('199.194.26.0', '199.194.26.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.194.27.0', '199.194.27.255', 2147483647, 2147483647, 'US', 'United States'), +('199.194.28.0', '199.194.28.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.194.29.0', '199.194.30.255', 2147483647, 2147483647, 'US', 'United States'), +('199.194.31.0', '199.194.31.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.194.32.0', '199.194.34.255', 2147483647, 2147483647, 'US', 'United States'), +('199.194.35.0', '199.194.36.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.194.37.0', '199.194.40.255', 2147483647, 2147483647, 'US', 'United States'), +('199.194.41.0', '199.194.42.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.194.43.0', '199.194.48.255', 2147483647, 2147483647, 'US', 'United States'), +('199.194.49.0', '199.194.49.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.194.50.0', '199.194.51.255', 2147483647, 2147483647, 'US', 'United States'), +('199.194.52.0', '199.194.52.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.194.53.0', '199.194.57.255', 2147483647, 2147483647, 'US', 'United States'), +('199.194.58.0', '199.194.58.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.194.59.0', '199.194.62.255', 2147483647, 2147483647, 'US', 'United States'), +('199.194.63.0', '199.194.63.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.194.64.0', '199.194.67.255', 2147483647, 2147483647, 'US', 'United States'), +('199.194.68.0', '199.194.68.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.194.69.0', '199.194.69.255', 2147483647, 2147483647, 'US', 'United States'), +('199.194.70.0', '199.194.70.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.194.71.0', '199.194.71.255', 2147483647, 2147483647, 'US', 'United States'), +('199.194.72.0', '199.194.72.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.194.73.0', '199.194.73.255', 2147483647, 2147483647, 'US', 'United States'), +('199.194.74.0', '199.194.74.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.194.75.0', '199.194.75.255', 2147483647, 2147483647, 'US', 'United States'), +('199.194.76.0', '199.194.77.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.194.78.0', '199.194.78.255', 2147483647, 2147483647, 'US', 'United States'), +('199.194.79.0', '199.194.79.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.194.80.0', '199.194.81.255', 2147483647, 2147483647, 'US', 'United States'), +('199.194.82.0', '199.194.82.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.194.83.0', '199.194.85.255', 2147483647, 2147483647, 'US', 'United States'), +('199.194.86.0', '199.194.86.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.194.87.0', '199.194.87.255', 2147483647, 2147483647, 'US', 'United States'), +('199.194.88.0', '199.194.92.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.194.93.0', '199.194.93.255', 2147483647, 2147483647, 'US', 'United States'), +('199.194.94.0', '199.194.94.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.194.95.0', '199.194.98.255', 2147483647, 2147483647, 'US', 'United States'), +('199.194.99.0', '199.194.99.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.194.100.0', '199.194.100.255', 2147483647, 2147483647, 'US', 'United States'), +('199.194.101.0', '199.194.101.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.194.102.0', '199.194.105.255', 2147483647, 2147483647, 'US', 'United States'), +('199.194.106.0', '199.194.106.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.194.107.0', '199.194.107.255', 2147483647, 2147483647, 'US', 'United States'), +('199.194.108.0', '199.194.109.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.194.110.0', '199.194.112.255', 2147483647, 2147483647, 'US', 'United States'), +('199.194.113.0', '199.194.114.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.194.115.0', '199.194.119.255', 2147483647, 2147483647, 'US', 'United States'), +('199.194.120.0', '199.194.120.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.194.121.0', '199.194.123.255', 2147483647, 2147483647, 'US', 'United States'), +('199.194.124.0', '199.194.124.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.194.125.0', '199.194.125.255', 2147483647, 2147483647, 'US', 'United States'), +('199.194.126.0', '199.194.126.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.194.127.0', '199.194.127.255', 2147483647, 2147483647, 'US', 'United States'), +('199.194.128.0', '199.194.129.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.194.130.0', '199.194.130.255', 2147483647, 2147483647, 'US', 'United States'), +('199.194.131.0', '199.194.131.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.194.132.0', '199.194.133.255', 2147483647, 2147483647, 'US', 'United States'), +('199.194.134.0', '199.194.135.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.194.136.0', '199.194.136.255', 2147483647, 2147483647, 'US', 'United States'), +('199.194.137.0', '199.194.138.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.194.139.0', '199.194.139.255', 2147483647, 2147483647, 'US', 'United States'), +('199.194.140.0', '199.194.140.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.194.141.0', '199.194.144.255', 2147483647, 2147483647, 'US', 'United States'), +('199.194.145.0', '199.194.146.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.194.147.0', '199.194.147.255', 2147483647, 2147483647, 'US', 'United States'), +('199.194.148.0', '199.194.148.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.194.149.0', '199.194.154.255', 2147483647, 2147483647, 'US', 'United States'), +('199.194.155.0', '199.194.155.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.194.156.0', '199.194.170.255', 2147483647, 2147483647, 'US', 'United States'), +('199.194.171.0', '199.194.171.255', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('199.194.172.0', '199.194.183.255', 2147483647, 2147483647, 'US', 'United States'), +('199.194.184.0', '199.194.184.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.194.185.0', '199.194.188.255', 2147483647, 2147483647, 'US', 'United States'), +('199.194.189.0', '199.194.189.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.194.190.0', '199.194.218.255', 2147483647, 2147483647, 'US', 'United States'), +('199.194.219.0', '199.194.219.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.194.220.0', '199.194.220.255', 2147483647, 2147483647, 'US', 'United States'), +('199.194.221.0', '199.194.221.255', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('199.194.222.0', '199.194.222.255', 2147483647, 2147483647, 'US', 'United States'), +('199.194.223.0', '199.194.223.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.194.224.0', '199.194.224.255', 2147483647, 2147483647, 'US', 'United States'), +('199.194.225.0', '199.194.225.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.194.226.0', '199.194.226.255', 2147483647, 2147483647, 'US', 'United States'), +('199.194.227.0', '199.194.227.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.194.228.0', '199.194.228.255', 2147483647, 2147483647, 'US', 'United States'), +('199.194.229.0', '199.194.230.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.194.231.0', '199.194.238.255', 2147483647, 2147483647, 'US', 'United States'), +('199.194.239.0', '199.194.239.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.194.240.0', '199.194.241.255', 2147483647, 2147483647, 'US', 'United States'), +('199.194.242.0', '199.194.242.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.194.243.0', '199.195.127.255', 2147483647, 2147483647, 'US', 'United States'), +('199.196.0.0', '199.196.50.255', 2147483647, 2147483647, 'US', 'United States'), +('199.196.51.0', '199.196.51.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('199.196.52.0', '199.197.255.255', 2147483647, 2147483647, 'US', 'United States'), +('199.198.0.0', '199.198.219.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.198.220.0', '199.201.255.255', 2147483647, 2147483647, 'US', 'United States'), +('199.202.0.0', '199.202.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.203.0.0', '199.203.255.255', 2147483647, 2147483647, 'IL', 'Israel'), +('199.204.0.0', '199.212.0.255', 2147483647, 2147483647, 'US', 'United States'), +('199.212.1.0', '199.212.217.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.212.218.0', '199.212.223.255', 2147483647, 2147483647, 'US', 'United States'), +('199.212.224.0', '199.216.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.217.0.0', '199.228.176.255', 2147483647, 2147483647, 'US', 'United States'), +('199.228.177.0', '199.228.177.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('199.228.178.0', '199.229.189.255', 2147483647, 2147483647, 'US', 'United States'), +('199.229.190.0', '199.229.190.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('199.229.191.0', '199.229.215.255', 2147483647, 2147483647, 'US', 'United States'), +('199.229.216.0', '199.229.216.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('199.229.217.0', '199.229.219.255', 2147483647, 2147483647, 'US', 'United States'), +('199.230.0.0', '199.233.170.255', 2147483647, 2147483647, 'US', 'United States'), +('199.233.171.0', '199.233.171.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.233.172.0', '199.233.182.255', 2147483647, 2147483647, 'US', 'United States'), +('199.233.183.0', '199.233.184.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.233.185.0', '199.233.223.255', 2147483647, 2147483647, 'US', 'United States'), +('199.234.0.0', '199.234.255.255', 2147483647, 2147483647, 'US', 'United States'), +('199.235.0.0', '199.235.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.236.0.0', '199.242.255.255', 2147483647, 2147483647, 'US', 'United States'), +('199.243.0.0', '199.243.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.244.0.0', '199.245.235.255', 2147483647, 2147483647, 'US', 'United States'), +('199.245.236.0', '199.245.236.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.245.237.0', '199.245.255.255', 2147483647, 2147483647, 'US', 'United States'), +('199.246.0.0', '199.246.72.127', 2147483647, 2147483647, 'CA', 'Canada'), +('199.246.72.128', '199.246.72.191', 2147483647, 2147483647, 'US', 'United States'), +('199.246.72.192', '199.246.76.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.246.77.0', '199.246.87.255', 2147483647, 2147483647, 'US', 'United States'), +('199.246.88.0', '199.247.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.248.0.0', '199.248.143.255', 2147483647, 2147483647, 'US', 'United States'), +('199.248.144.0', '199.248.144.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('199.248.145.0', '199.249.111.255', 2147483647, 2147483647, 'US', 'United States'), +('199.249.112.0', '199.249.127.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.249.128.0', '199.250.7.255', 2147483647, 2147483647, 'US', 'United States'), +('199.250.8.0', '199.250.15.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.250.16.0', '199.253.55.255', 2147483647, 2147483647, 'US', 'United States'), +('199.253.56.0', '199.253.63.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.253.64.0', '199.253.248.255', 2147483647, 2147483647, 'US', 'United States'), +('199.253.250.0', '199.253.251.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.254.0.0', '199.254.27.255', 2147483647, 2147483647, 'US', 'United States'), +('199.254.28.0', '199.254.31.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.254.32.0', '199.254.47.255', 2147483647, 2147483647, 'US', 'United States'), +('199.254.48.0', '199.254.63.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.254.64.0', '199.254.95.255', 2147483647, 2147483647, 'US', 'United States'), +('199.254.128.0', '199.254.151.255', 2147483647, 2147483647, 'US', 'United States'), +('199.254.152.0', '199.254.152.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.254.153.0', '199.254.234.255', 2147483647, 2147483647, 'US', 'United States'), +('199.254.235.0', '199.254.235.255', 2147483647, 2147483647, 'CA', 'Canada'), +('199.254.236.0', '199.254.255.255', 2147483647, 2147483647, 'US', 'United States'), +('200.0.0.0', '200.0.7.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.0.8.0', '200.0.15.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('200.0.16.0', '200.0.16.255', 2147483647, 2147483647, 'CU', 'Cuba'), +('200.0.17.0', '200.0.17.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.0.18.0', '200.0.18.255', 2147483647, 2147483647, 'HT', 'Haiti'), +('200.0.20.0', '200.0.23.255', 2147483647, 2147483647, 'AN', 'Netherlands Antilles'), +('200.0.24.0', '200.0.27.255', 2147483647, 2147483647, 'CU', 'Cuba'), +('200.0.28.0', '200.0.31.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('200.0.32.0', '200.0.61.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('200.0.62.0', '200.0.62.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.0.63.0', '200.0.63.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('200.0.64.0', '200.0.64.255', 2147483647, 2147483647, 'PA', 'Panama'), +('200.0.65.0', '200.0.65.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('200.0.66.0', '200.0.66.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.0.67.0', '200.0.72.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('200.0.73.0', '200.0.78.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('200.0.79.0', '200.0.80.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.0.81.0', '200.0.81.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('200.0.82.0', '200.0.82.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.0.83.0', '200.0.84.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('200.0.85.0', '200.0.87.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('200.0.88.0', '200.0.88.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('200.0.89.0', '200.0.93.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('200.0.94.0', '200.0.94.255', 2147483647, 2147483647, 'US', 'United States'), +('200.0.95.0', '200.0.95.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('200.0.96.0', '200.0.99.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.0.100.0', '200.0.102.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('200.0.103.0', '200.0.106.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('200.0.107.0', '200.0.107.255', 2147483647, 2147483647, 'PE', 'Peru'), +('200.0.108.0', '200.0.108.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.0.109.0', '200.0.109.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('200.0.110.0', '200.0.110.255', 2147483647, 2147483647, 'PE', 'Peru'), +('200.0.111.0', '200.0.113.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('200.0.114.0', '200.0.114.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('200.0.115.0', '200.0.117.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.0.118.0', '200.0.119.255', 2147483647, 2147483647, 'PE', 'Peru'), +('200.0.120.0', '200.0.124.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.0.125.0', '200.0.135.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('200.0.136.0', '200.0.136.255', 2147483647, 2147483647, 'PE', 'Peru'), +('200.0.137.0', '200.0.138.255', 2147483647, 2147483647, 'US', 'United States'), +('200.0.139.0', '200.0.139.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('200.0.140.0', '200.0.141.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.0.142.0', '200.0.142.255', 2147483647, 2147483647, 'PE', 'Peru'), +('200.0.143.0', '200.0.143.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('200.0.144.0', '200.0.163.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.0.164.0', '200.0.173.255', 2147483647, 2147483647, 'PE', 'Peru'), +('200.0.174.0', '200.0.174.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.0.175.0', '200.0.175.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.0.176.0', '200.0.177.255', 2147483647, 2147483647, 'GT', 'Guatemala'), +('200.0.178.0', '200.0.178.255', 2147483647, 2147483647, 'PA', 'Panama'), +('200.0.179.0', '200.0.179.255', 2147483647, 2147483647, 'CR', 'Costa Rica'), +('200.0.180.0', '200.0.180.255', 2147483647, 2147483647, 'SV', 'El Salvador'), +('200.0.181.0', '200.0.200.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.0.201.0', '200.0.201.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.0.202.0', '200.0.203.255', 2147483647, 2147483647, 'PA', 'Panama'), +('200.0.204.0', '200.0.207.255', 2147483647, 2147483647, 'UY', 'Uruguay'), +('200.0.208.0', '200.0.215.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.0.216.0', '200.0.223.255', 2147483647, 2147483647, 'US', 'United States'), +('200.0.224.0', '200.0.255.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.1.0.0', '200.1.5.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('200.1.6.0', '200.1.6.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('200.1.7.0', '200.1.7.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.1.8.0', '200.1.15.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('200.1.16.0', '200.1.31.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.1.32.0', '200.1.63.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.1.64.0', '200.1.103.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.1.104.0', '200.1.111.255', 2147483647, 2147483647, 'TT', 'Trinidad and Tobago'), +('200.1.112.0', '200.1.112.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.1.113.0', '200.1.113.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.1.114.0', '200.1.114.255', 2147483647, 2147483647, 'NI', 'Nicaragua'), +('200.1.115.0', '200.1.115.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.1.116.0', '200.1.118.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.1.119.0', '200.1.119.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('200.1.120.0', '200.1.123.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.1.124.0', '200.1.124.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.1.125.0', '200.1.125.255', 2147483647, 2147483647, 'BZ', 'Belize'), +('200.1.126.0', '200.1.127.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.1.128.0', '200.1.143.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.1.144.0', '200.1.151.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('200.1.152.0', '200.1.152.255', 2147483647, 2147483647, 'NI', 'Nicaragua'), +('200.1.153.0', '200.1.153.255', 2147483647, 2147483647, 'GT', 'Guatemala'), +('200.1.154.0', '200.1.155.255', 2147483647, 2147483647, 'DO', 'Dominican Republic'), +('200.1.156.0', '200.1.159.255', 2147483647, 2147483647, 'SR', 'Suriname'), +('200.1.160.0', '200.1.160.255', 2147483647, 2147483647, 'BM', 'Bermuda'), +('200.1.161.0', '200.1.161.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('200.1.162.0', '200.1.171.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('200.1.172.0', '200.1.172.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('200.1.173.0', '200.1.173.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.1.174.0', '200.1.174.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.1.175.0', '200.1.175.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.1.176.0', '200.1.183.255', 2147483647, 2147483647, 'PE', 'Peru'), +('200.1.184.0', '200.1.191.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('200.1.192.0', '200.1.199.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.1.200.0', '200.1.207.255', 2147483647, 2147483647, 'PY', 'Paraguay'), +('200.1.208.0', '200.1.215.255', 2147483647, 2147483647, 'SR', 'Suriname'), +('200.1.224.0', '200.1.255.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.2.0.0', '200.2.7.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.2.8.0', '200.2.15.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('200.2.16.0', '200.2.31.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.2.32.0', '200.2.63.255', 2147483647, 2147483647, 'UY', 'Uruguay'), +('200.2.64.0', '200.2.71.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.2.72.0', '200.2.99.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.2.100.0', '200.2.103.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('200.2.104.0', '200.2.119.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.2.120.0', '200.2.127.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.2.128.0', '200.2.159.255', 2147483647, 2147483647, 'HT', 'Haiti'), +('200.2.160.0', '200.2.191.255', 2147483647, 2147483647, 'SR', 'Suriname'), +('200.2.192.0', '200.2.255.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.3.0.0', '200.3.9.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('200.3.10.0', '200.3.11.255', 2147483647, 2147483647, 'PA', 'Panama'), +('200.3.12.0', '200.3.15.255', 2147483647, 2147483647, 'UY', 'Uruguay'), +('200.3.16.0', '200.3.31.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('200.3.32.0', '200.3.113.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.3.114.0', '200.3.114.255', 2147483647, 2147483647, 'PE', 'Peru'), +('200.3.115.0', '200.3.127.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.3.128.0', '200.3.167.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.3.168.0', '200.3.175.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.3.176.0', '200.3.183.255', 2147483647, 2147483647, 'TT', 'Trinidad and Tobago'), +('200.3.184.0', '200.3.191.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.3.192.0', '200.3.193.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.3.196.0', '200.3.207.255', 2147483647, 2147483647, 'PA', 'Panama'), +('200.3.208.0', '200.3.215.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.3.216.0', '200.3.223.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.3.224.0', '200.3.240.255', 2147483647, 2147483647, 'HN', 'Honduras'), +('200.3.241.0', '200.3.241.255', 2147483647, 2147483647, 'PE', 'Peru'), +('200.3.244.0', '200.3.247.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.3.248.0', '200.3.255.255', 2147483647, 2147483647, 'PY', 'Paraguay'), +('200.4.0.0', '200.4.15.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('200.4.16.0', '200.4.31.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.4.32.0', '200.4.58.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('200.4.59.0', '200.4.59.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.4.60.0', '200.4.159.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('200.4.160.0', '200.4.191.255', 2147483647, 2147483647, 'HT', 'Haiti'), +('200.4.192.0', '200.4.255.255', 2147483647, 2147483647, 'PE', 'Peru'), +('200.5.0.0', '200.5.8.255', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('200.5.9.0', '200.5.9.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('200.5.11.0', '200.5.11.255', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('200.5.12.0', '200.5.15.255', 2147483647, 2147483647, 'CU', 'Cuba'), +('200.5.16.0', '200.5.31.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('200.5.32.0', '200.5.39.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.5.40.0', '200.5.47.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('200.5.48.0', '200.5.55.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.5.56.0', '200.5.63.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.5.64.0', '200.5.127.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.5.128.0', '200.5.191.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('200.5.192.0', '200.5.255.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.6.0.0', '200.6.17.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('200.6.18.0', '200.6.18.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.6.19.0', '200.6.26.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('200.6.27.0', '200.6.27.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('200.6.28.0', '200.6.32.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('200.6.33.0', '200.6.33.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.6.34.0', '200.6.34.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('200.6.35.0', '200.6.48.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('200.6.49.0', '200.6.49.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.6.52.0', '200.6.52.255', 2147483647, 2147483647, 'PA', 'Panama'), +('200.6.53.0', '200.6.54.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.6.55.0', '200.6.55.255', 2147483647, 2147483647, 'NI', 'Nicaragua'), +('200.6.56.0', '200.6.63.255', 2147483647, 2147483647, 'AN', 'Netherlands Antilles'), +('200.6.64.0', '200.6.78.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.6.79.0', '200.6.79.255', 2147483647, 2147483647, 'PA', 'Panama'), +('200.6.80.0', '200.6.87.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('200.6.88.0', '200.6.95.255', 2147483647, 2147483647, 'DO', 'Dominican Republic'), +('200.6.96.0', '200.6.127.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.6.128.0', '200.6.135.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('200.6.136.0', '200.6.137.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.6.138.0', '200.6.138.255', 2147483647, 2147483647, 'UY', 'Uruguay'), +('200.6.139.0', '200.6.140.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.6.141.0', '200.6.142.255', 2147483647, 2147483647, 'UY', 'Uruguay'), +('200.6.143.0', '200.6.143.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.6.144.0', '200.6.151.255', 2147483647, 2147483647, 'AN', 'Netherlands Antilles'), +('200.6.152.0', '200.6.159.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('200.6.160.0', '200.6.191.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.6.192.0', '200.6.255.255', 2147483647, 2147483647, 'GT', 'Guatemala'), +('200.7.0.0', '200.7.3.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('200.7.8.0', '200.7.13.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('200.7.14.0', '200.7.14.255', 2147483647, 2147483647, 'PY', 'Paraguay'), +('200.7.15.0', '200.7.15.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.7.16.0', '200.7.31.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.7.32.0', '200.7.63.255', 2147483647, 2147483647, 'AN', 'Netherlands Antilles'), +('200.7.64.0', '200.7.83.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('200.7.84.0', '200.7.85.255', 2147483647, 2147483647, 'UY', 'Uruguay'), +('200.7.88.0', '200.7.95.255', 2147483647, 2147483647, 'TT', 'Trinidad and Tobago'), +('200.7.96.0', '200.7.127.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('200.7.128.0', '200.7.143.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.7.160.0', '200.7.175.255', 2147483647, 2147483647, 'BO', 'Bolivia'), +('200.7.176.0', '200.7.183.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.7.184.0', '200.7.191.255', 2147483647, 2147483647, 'AN', 'Netherlands Antilles'), +('200.7.192.0', '200.7.255.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('200.8.0.0', '200.8.255.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('200.9.0.0', '200.9.2.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('200.9.3.0', '200.9.3.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.9.4.0', '200.9.7.255', 2147483647, 2147483647, 'PY', 'Paraguay'), +('200.9.8.0', '200.9.15.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('200.9.16.0', '200.9.31.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.9.32.0', '200.9.63.255', 2147483647, 2147483647, 'CR', 'Costa Rica'), +('200.9.64.0', '200.9.64.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.9.65.0', '200.9.71.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('200.9.72.0', '200.9.72.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.9.73.0', '200.9.73.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.9.74.0', '200.9.74.255', 2147483647, 2147483647, 'GT', 'Guatemala'), +('200.9.75.0', '200.9.75.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.9.76.0', '200.9.78.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('200.9.79.0', '200.9.81.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.9.82.0', '200.9.83.255', 2147483647, 2147483647, 'US', 'United States'), +('200.9.84.0', '200.9.95.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('200.9.96.0', '200.9.96.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('200.9.97.0', '200.9.101.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.9.102.0', '200.9.107.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('200.9.108.0', '200.9.111.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.9.112.0', '200.9.114.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('200.9.115.0', '200.9.115.255', 2147483647, 2147483647, 'JM', 'Jamaica'), +('200.9.116.0', '200.9.121.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('200.9.122.0', '200.9.122.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.9.123.0', '200.9.127.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('200.9.128.0', '200.9.128.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.9.129.0', '200.9.140.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('200.9.141.0', '200.9.142.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.9.143.0', '200.9.144.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('200.9.145.0', '200.9.146.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.9.147.0', '200.9.147.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.9.148.0', '200.9.149.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('200.9.150.0', '200.9.153.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.9.158.0', '200.9.164.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('200.9.165.0', '200.9.168.255', 2147483647, 2147483647, 'BO', 'Bolivia'), +('200.9.169.0', '200.9.175.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('200.9.176.0', '200.9.176.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('200.9.177.0', '200.9.180.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.9.181.0', '200.9.186.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('200.9.187.0', '200.9.192.255', 2147483647, 2147483647, 'NI', 'Nicaragua'), +('200.9.193.0', '200.9.193.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.9.194.0', '200.9.194.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.9.195.0', '200.9.198.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.9.199.0', '200.9.200.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('200.9.201.0', '200.9.201.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.9.202.0', '200.9.203.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('200.9.204.0', '200.9.205.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.9.206.0', '200.9.207.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('200.9.208.0', '200.9.208.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.9.209.0', '200.9.209.255', 2147483647, 2147483647, 'CR', 'Costa Rica'), +('200.9.210.0', '200.9.210.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('200.9.211.0', '200.9.211.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.9.212.0', '200.9.213.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.9.214.0', '200.9.214.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('200.9.215.0', '200.9.215.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.9.216.0', '200.9.218.255', 2147483647, 2147483647, 'TT', 'Trinidad and Tobago'), +('200.9.219.0', '200.9.219.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.9.220.0', '200.9.224.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('200.9.225.0', '200.9.225.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.9.226.0', '200.9.227.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('200.9.228.0', '200.9.228.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.9.229.0', '200.9.229.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('200.9.230.0', '200.9.233.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.9.234.0', '200.9.234.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('200.9.235.0', '200.9.237.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.9.238.0', '200.9.241.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.9.242.0', '200.9.246.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.9.247.0', '200.9.247.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.9.248.0', '200.9.248.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('200.9.249.0', '200.9.252.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('200.9.253.0', '200.9.254.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.9.255.0', '200.9.255.255', 2147483647, 2147483647, 'GT', 'Guatemala'), +('200.10.0.0', '200.10.3.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.10.4.0', '200.10.7.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('200.10.8.0', '200.10.14.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.10.15.0', '200.10.15.255', 2147483647, 2147483647, 'PA', 'Panama'), +('200.10.16.0', '200.10.31.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.10.32.0', '200.10.63.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('200.10.64.0', '200.10.95.255', 2147483647, 2147483647, 'PE', 'Peru'), +('200.10.96.0', '200.10.129.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.10.130.0', '200.10.131.255', 2147483647, 2147483647, 'PE', 'Peru'), +('200.10.132.0', '200.10.138.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('200.10.139.0', '200.10.140.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.10.141.0', '200.10.141.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('200.10.142.0', '200.10.142.255', 2147483647, 2147483647, 'DO', 'Dominican Republic'), +('200.10.143.0', '200.10.143.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('200.10.144.0', '200.10.144.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('200.10.145.0', '200.10.145.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.10.146.0', '200.10.146.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('200.10.147.0', '200.10.151.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('200.10.152.0', '200.10.152.255', 2147483647, 2147483647, 'JM', 'Jamaica'), +('200.10.153.0', '200.10.154.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('200.10.155.0', '200.10.155.255', 2147483647, 2147483647, 'US', 'United States'), +('200.10.156.0', '200.10.159.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('200.10.160.0', '200.10.160.255', 2147483647, 2147483647, 'US', 'United States'), +('200.10.161.0', '200.10.161.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.10.162.0', '200.10.162.255', 2147483647, 2147483647, 'DO', 'Dominican Republic'), +('200.10.163.0', '200.10.164.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('200.10.165.0', '200.10.166.255', 2147483647, 2147483647, 'BM', 'Bermuda'), +('200.10.167.0', '200.10.172.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.10.173.0', '200.10.181.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('200.10.182.0', '200.10.182.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.10.183.0', '200.10.183.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('200.10.184.0', '200.10.184.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.10.185.0', '200.10.185.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('200.10.186.0', '200.10.186.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.10.187.0', '200.10.187.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('200.10.188.0', '200.10.188.255', 2147483647, 2147483647, 'PE', 'Peru'), +('200.10.189.0', '200.10.189.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('200.10.190.0', '200.10.190.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.10.191.0', '200.10.193.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('200.10.194.0', '200.10.194.255', 2147483647, 2147483647, 'BZ', 'Belize'), +('200.10.195.0', '200.10.195.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.10.196.0', '200.10.196.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.10.197.0', '200.10.198.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('200.10.199.0', '200.10.199.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.10.200.0', '200.10.200.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('200.10.201.0', '200.10.202.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.10.203.0', '200.10.203.255', 2147483647, 2147483647, 'PA', 'Panama'), +('200.10.204.0', '200.10.204.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.10.205.0', '200.10.205.255', 2147483647, 2147483647, 'NI', 'Nicaragua'), +('200.10.206.0', '200.10.207.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.10.208.0', '200.10.208.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.10.209.0', '200.10.210.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('200.10.211.0', '200.10.211.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.10.212.0', '200.10.218.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('200.10.219.0', '200.10.219.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.10.220.0', '200.10.226.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.10.227.0', '200.10.227.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('200.10.228.0', '200.10.231.255', 2147483647, 2147483647, 'PY', 'Paraguay'), +('200.10.232.0', '200.10.232.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.10.233.0', '200.10.233.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('200.10.234.0', '200.10.234.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.10.235.0', '200.10.235.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.10.236.0', '200.10.238.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.10.239.0', '200.10.240.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('200.10.241.0', '200.10.241.255', 2147483647, 2147483647, 'GT', 'Guatemala'), +('200.10.242.0', '200.10.242.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.10.243.0', '200.10.244.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('200.10.245.0', '200.10.245.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('200.10.246.0', '200.10.249.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('200.10.250.0', '200.10.250.255', 2147483647, 2147483647, 'PE', 'Peru'), +('200.10.251.0', '200.10.253.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.10.254.0', '200.10.254.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('200.10.255.0', '200.10.255.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.11.0.0', '200.11.28.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('200.11.29.0', '200.11.29.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.11.32.0', '200.11.39.255', 2147483647, 2147483647, 'PE', 'Peru'), +('200.11.40.0', '200.11.47.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.11.48.0', '200.11.63.255', 2147483647, 2147483647, 'PE', 'Peru'), +('200.11.64.0', '200.11.103.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.11.104.0', '200.11.111.255', 2147483647, 2147483647, 'DO', 'Dominican Republic'), +('200.11.112.0', '200.11.119.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.11.120.0', '200.11.127.255', 2147483647, 2147483647, 'TT', 'Trinidad and Tobago'), +('200.11.128.0', '200.11.255.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('200.12.0.0', '200.12.15.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('200.12.16.0', '200.12.31.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.12.32.0', '200.12.63.255', 2147483647, 2147483647, 'GT', 'Guatemala'), +('200.12.64.0', '200.12.128.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('200.12.129.0', '200.12.130.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.12.131.0', '200.12.131.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('200.12.132.0', '200.12.132.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.12.133.0', '200.12.138.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.12.139.0', '200.12.139.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('200.12.140.0', '200.12.152.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.12.154.0', '200.12.154.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.12.155.0', '200.12.156.255', 2147483647, 2147483647, 'UY', 'Uruguay'), +('200.12.157.0', '200.12.157.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('200.12.158.0', '200.12.166.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('200.12.167.0', '200.12.167.255', 2147483647, 2147483647, 'CR', 'Costa Rica'), +('200.12.168.0', '200.12.168.255', 2147483647, 2147483647, 'US', 'United States'), +('200.12.169.0', '200.12.169.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('200.12.170.0', '200.12.170.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.12.172.0', '200.12.174.255', 2147483647, 2147483647, 'SV', 'El Salvador'), +('200.12.175.0', '200.12.191.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.12.193.0', '200.12.193.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('200.12.200.0', '200.12.207.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.12.208.0', '200.12.215.255', 2147483647, 2147483647, 'PA', 'Panama'), +('200.12.216.0', '200.12.223.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.12.224.0', '200.12.224.15', 2147483647, 2147483647, 'US', 'United States'), +('200.12.224.16', '200.12.224.31', 2147483647, 2147483647, 'GT', 'Guatemala'), +('200.12.224.32', '200.12.224.47', 2147483647, 2147483647, 'HN', 'Honduras'), +('200.12.224.48', '200.12.224.63', 2147483647, 2147483647, 'GT', 'Guatemala'), +('200.12.224.64', '200.12.224.71', 2147483647, 2147483647, 'US', 'United States'), +('200.12.224.72', '200.12.224.95', 2147483647, 2147483647, 'GT', 'Guatemala'), +('200.12.224.96', '200.12.224.111', 2147483647, 2147483647, 'SV', 'El Salvador'), +('200.12.224.112', '200.12.224.127', 2147483647, 2147483647, 'US', 'United States'), +('200.12.224.128', '200.12.224.159', 2147483647, 2147483647, 'EC', 'Ecuador'), +('200.12.224.160', '200.12.224.175', 2147483647, 2147483647, 'GT', 'Guatemala'), +('200.12.224.176', '200.12.224.255', 2147483647, 2147483647, 'US', 'United States'), +('200.12.225.0', '200.12.225.255', 2147483647, 2147483647, 'GT', 'Guatemala'), +('200.12.226.0', '200.12.227.255', 2147483647, 2147483647, 'AN', 'Netherlands Antilles'), +('200.12.228.0', '200.12.228.255', 2147483647, 2147483647, 'NI', 'Nicaragua'), +('200.12.229.0', '200.12.229.255', 2147483647, 2147483647, 'TT', 'Trinidad and Tobago'), +('200.12.230.0', '200.12.230.255', 2147483647, 2147483647, 'SV', 'El Salvador'), +('200.12.231.0', '200.12.231.255', 2147483647, 2147483647, 'NI', 'Nicaragua'), +('200.12.232.0', '200.12.233.255', 2147483647, 2147483647, 'SV', 'El Salvador'), +('200.12.234.0', '200.12.234.255', 2147483647, 2147483647, 'NI', 'Nicaragua'), +('200.12.235.0', '200.12.235.7', 2147483647, 2147483647, 'US', 'United States'), +('200.12.235.8', '200.12.235.15', 2147483647, 2147483647, 'GT', 'Guatemala'), +('200.12.235.16', '200.12.235.31', 2147483647, 2147483647, 'SV', 'El Salvador'), +('200.12.235.32', '200.12.235.95', 2147483647, 2147483647, 'US', 'United States'), +('200.12.235.96', '200.12.235.127', 2147483647, 2147483647, 'SV', 'El Salvador'), +('200.12.235.128', '200.12.235.159', 2147483647, 2147483647, 'US', 'United States'), +('200.12.235.160', '200.12.235.191', 2147483647, 2147483647, 'GT', 'Guatemala'), +('200.12.235.192', '200.12.236.255', 2147483647, 2147483647, 'US', 'United States'), +('200.12.237.0', '200.12.237.255', 2147483647, 2147483647, 'NI', 'Nicaragua'), +('200.12.238.0', '200.12.239.255', 2147483647, 2147483647, 'CR', 'Costa Rica'), +('200.12.240.0', '200.12.247.255', 2147483647, 2147483647, 'TT', 'Trinidad and Tobago'), +('200.12.248.0', '200.12.255.255', 2147483647, 2147483647, 'AW', 'Aruba'), +('200.13.0.0', '200.13.7.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.13.8.0', '200.13.15.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('200.13.16.0', '200.13.40.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('200.13.41.0', '200.13.41.255', 2147483647, 2147483647, 'AR', 'Argentina'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('200.13.48.0', '200.13.131.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('200.13.136.0', '200.13.143.255', 2147483647, 2147483647, 'GF', 'French Guiana'), +('200.13.144.0', '200.13.151.255', 2147483647, 2147483647, 'CU', 'Cuba'), +('200.13.152.0', '200.13.159.255', 2147483647, 2147483647, 'BO', 'Bolivia'), +('200.13.160.0', '200.13.163.255', 2147483647, 2147483647, 'SV', 'El Salvador'), +('200.13.164.0', '200.13.165.255', 2147483647, 2147483647, 'HN', 'Honduras'), +('200.13.166.0', '200.13.167.135', 2147483647, 2147483647, 'SV', 'El Salvador'), +('200.13.167.136', '200.13.167.143', 2147483647, 2147483647, 'HN', 'Honduras'), +('200.13.167.144', '200.13.176.231', 2147483647, 2147483647, 'SV', 'El Salvador'), +('200.13.176.232', '200.13.176.239', 2147483647, 2147483647, 'HN', 'Honduras'), +('200.13.176.240', '200.13.177.207', 2147483647, 2147483647, 'SV', 'El Salvador'), +('200.13.177.208', '200.13.177.223', 2147483647, 2147483647, 'HN', 'Honduras'), +('200.13.177.224', '200.13.178.127', 2147483647, 2147483647, 'SV', 'El Salvador'), +('200.13.178.128', '200.13.178.143', 2147483647, 2147483647, 'HN', 'Honduras'), +('200.13.178.144', '200.13.179.239', 2147483647, 2147483647, 'SV', 'El Salvador'), +('200.13.179.240', '200.13.179.247', 2147483647, 2147483647, 'HN', 'Honduras'), +('200.13.179.248', '200.13.182.39', 2147483647, 2147483647, 'SV', 'El Salvador'), +('200.13.182.40', '200.13.182.47', 2147483647, 2147483647, 'HN', 'Honduras'), +('200.13.182.48', '200.13.182.103', 2147483647, 2147483647, 'SV', 'El Salvador'), +('200.13.182.104', '200.13.182.111', 2147483647, 2147483647, 'HN', 'Honduras'), +('200.13.182.112', '200.13.187.255', 2147483647, 2147483647, 'SV', 'El Salvador'), +('200.13.188.0', '200.13.188.127', 2147483647, 2147483647, 'HN', 'Honduras'), +('200.13.188.128', '200.13.191.255', 2147483647, 2147483647, 'SV', 'El Salvador'), +('200.13.192.0', '200.13.255.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.14.0.0', '200.14.7.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.14.8.0', '200.14.15.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('200.14.16.0', '200.14.31.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('200.14.32.0', '200.14.33.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('200.14.34.0', '200.14.34.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('200.14.35.0', '200.14.36.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('200.14.40.0', '200.14.47.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.14.48.0', '200.14.55.255', 2147483647, 2147483647, 'CU', 'Cuba'), +('200.14.56.0', '200.14.63.255', 2147483647, 2147483647, 'HN', 'Honduras'), +('200.14.64.0', '200.14.111.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.14.112.0', '200.14.113.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.14.114.0', '200.14.119.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.14.120.0', '200.14.127.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.14.128.0', '200.14.204.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.14.205.0', '200.14.207.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.14.208.0', '200.14.230.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.14.231.0', '200.14.239.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.14.240.0', '200.14.255.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.15.0.0', '200.15.255.255', 2147483647, 2147483647, 'US', 'United States'), +('200.16.0.0', '200.16.7.255', 2147483647, 2147483647, 'PE', 'Peru'), +('200.16.8.0', '200.16.15.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('200.16.16.0', '200.16.31.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.16.32.0', '200.16.63.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('200.16.64.0', '200.16.87.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.16.88.0', '200.16.88.255', 2147483647, 2147483647, 'US', 'United States'), +('200.16.96.0', '200.16.255.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.17.0.0', '200.20.255.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('200.21.0.0', '200.21.255.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.22.0.0', '200.22.255.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.23.0.0', '200.23.255.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('200.24.0.0', '200.24.63.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.24.64.0', '200.24.64.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('200.24.65.0', '200.24.127.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.24.128.0', '200.24.135.255', 2147483647, 2147483647, 'PA', 'Panama'), +('200.24.136.0', '200.24.136.15', 2147483647, 2147483647, 'CR', 'Costa Rica'), +('200.24.136.16', '200.24.149.255', 2147483647, 2147483647, 'PA', 'Panama'), +('200.24.150.0', '200.24.150.255', 2147483647, 2147483647, 'BZ', 'Belize'), +('200.24.151.0', '200.24.151.255', 2147483647, 2147483647, 'PA', 'Panama'), +('200.24.152.0', '200.24.152.111', 2147483647, 2147483647, 'BZ', 'Belize'), +('200.24.152.112', '200.24.152.127', 2147483647, 2147483647, 'PA', 'Panama'), +('200.24.152.128', '200.24.152.255', 2147483647, 2147483647, 'BZ', 'Belize'), +('200.24.153.0', '200.24.159.255', 2147483647, 2147483647, 'PA', 'Panama'), +('200.24.160.0', '200.24.191.255', 2147483647, 2147483647, 'PE', 'Peru'), +('200.24.192.0', '200.24.223.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('200.24.224.0', '200.24.239.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.24.240.0', '200.24.255.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.25.0.0', '200.25.127.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.25.128.0', '200.25.223.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('200.25.224.0', '200.25.255.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.26.0.0', '200.26.127.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.26.128.0', '200.26.159.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.26.160.0', '200.26.167.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('200.26.168.0', '200.26.175.255', 2147483647, 2147483647, 'DO', 'Dominican Republic'), +('200.26.176.0', '200.26.183.255', 2147483647, 2147483647, 'PY', 'Paraguay'), +('200.26.184.0', '200.26.191.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.26.192.0', '200.26.245.255', 2147483647, 2147483647, 'AN', 'Netherlands Antilles'), +('200.26.246.0', '200.26.246.255', 2147483647, 2147483647, 'AW', 'Aruba'), +('200.26.247.0', '200.26.253.255', 2147483647, 2147483647, 'AN', 'Netherlands Antilles'), +('200.26.254.0', '200.26.254.255', 2147483647, 2147483647, 'AW', 'Aruba'), +('200.26.255.0', '200.26.255.255', 2147483647, 2147483647, 'AN', 'Netherlands Antilles'), +('200.27.0.0', '200.29.95.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.29.96.0', '200.29.127.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.29.128.0', '200.29.231.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.29.232.0', '200.29.239.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.29.240.0', '200.29.247.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('200.29.248.0', '200.29.255.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.30.0.0', '200.30.7.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('200.30.8.0', '200.30.11.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('200.30.12.0', '200.30.13.255', 2147483647, 2147483647, 'PE', 'Peru'), +('200.30.14.0', '200.30.14.255', 2147483647, 2147483647, 'US', 'United States'), +('200.30.15.0', '200.30.15.255', 2147483647, 2147483647, 'FR', 'France'), +('200.30.16.0', '200.30.19.255', 2147483647, 2147483647, 'US', 'United States'), +('200.30.20.0', '200.30.23.255', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('200.30.24.0', '200.30.24.255', 2147483647, 2147483647, 'US', 'United States'), +('200.30.25.0', '200.30.27.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('200.30.28.0', '200.30.30.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('200.30.31.0', '200.30.31.255', 2147483647, 2147483647, 'US', 'United States'), +('200.30.32.0', '200.30.35.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.30.36.0', '200.30.36.255', 2147483647, 2147483647, 'NI', 'Nicaragua'), +('200.30.37.0', '200.30.37.255', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('200.30.38.0', '200.30.39.255', 2147483647, 2147483647, 'GT', 'Guatemala'), +('200.30.40.0', '200.30.41.255', 2147483647, 2147483647, 'SZ', 'Swaziland'), +('200.30.42.0', '200.30.45.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.30.46.0', '200.30.46.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.30.47.0', '200.30.47.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.30.48.0', '200.30.52.255', 2147483647, 2147483647, 'NI', 'Nicaragua'), +('200.30.53.0', '200.30.53.255', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('200.30.54.0', '200.30.54.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.30.55.0', '200.30.59.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('200.30.60.0', '200.30.63.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.30.64.0', '200.30.127.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.30.128.0', '200.30.128.255', 2147483647, 2147483647, 'NI', 'Nicaragua'), +('200.30.129.0', '200.30.129.255', 2147483647, 2147483647, 'HN', 'Honduras'), +('200.30.130.0', '200.30.130.255', 2147483647, 2147483647, 'NI', 'Nicaragua'), +('200.30.131.0', '200.30.131.255', 2147483647, 2147483647, 'SV', 'El Salvador'), +('200.30.132.0', '200.30.132.255', 2147483647, 2147483647, 'NI', 'Nicaragua'), +('200.30.133.0', '200.30.133.255', 2147483647, 2147483647, 'GT', 'Guatemala'), +('200.30.134.0', '200.30.137.255', 2147483647, 2147483647, 'HN', 'Honduras'), +('200.30.138.0', '200.30.138.255', 2147483647, 2147483647, 'SV', 'El Salvador'), +('200.30.139.0', '200.30.139.255', 2147483647, 2147483647, 'HN', 'Honduras'), +('200.30.140.0', '200.30.151.255', 2147483647, 2147483647, 'GT', 'Guatemala'), +('200.30.152.0', '200.30.153.255', 2147483647, 2147483647, 'SV', 'El Salvador'), +('200.30.154.0', '200.30.154.255', 2147483647, 2147483647, 'GT', 'Guatemala'), +('200.30.155.0', '200.30.157.255', 2147483647, 2147483647, 'HN', 'Honduras'), +('200.30.158.0', '200.30.161.255', 2147483647, 2147483647, 'GT', 'Guatemala'), +('200.30.162.0', '200.30.164.255', 2147483647, 2147483647, 'HN', 'Honduras'), +('200.30.165.0', '200.30.165.255', 2147483647, 2147483647, 'NI', 'Nicaragua'), +('200.30.166.0', '200.30.166.255', 2147483647, 2147483647, 'HN', 'Honduras'), +('200.30.167.0', '200.30.167.255', 2147483647, 2147483647, 'GT', 'Guatemala'), +('200.30.168.0', '200.30.169.255', 2147483647, 2147483647, 'HN', 'Honduras'), +('200.30.170.0', '200.30.170.255', 2147483647, 2147483647, 'NI', 'Nicaragua'), +('200.30.171.0', '200.30.171.255', 2147483647, 2147483647, 'SV', 'El Salvador'), +('200.30.172.0', '200.30.176.255', 2147483647, 2147483647, 'GT', 'Guatemala'), +('200.30.177.0', '200.30.177.255', 2147483647, 2147483647, 'NI', 'Nicaragua'), +('200.30.178.0', '200.30.178.255', 2147483647, 2147483647, 'HN', 'Honduras'), +('200.30.179.0', '200.30.179.255', 2147483647, 2147483647, 'SV', 'El Salvador'), +('200.30.180.0', '200.30.191.255', 2147483647, 2147483647, 'GT', 'Guatemala'), +('200.30.192.0', '200.30.255.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.31.0.0', '200.31.0.255', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('200.31.1.0', '200.31.3.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.31.4.0', '200.31.5.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('200.31.6.0', '200.31.6.255', 2147483647, 2147483647, 'US', 'United States'), +('200.31.7.0', '200.31.7.255', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('200.31.8.0', '200.31.10.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('200.31.11.0', '200.31.11.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.31.12.0', '200.31.23.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.31.24.0', '200.31.31.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('200.31.32.0', '200.31.63.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.31.64.0', '200.31.95.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.31.96.0', '200.31.127.255', 2147483647, 2147483647, 'PE', 'Peru'), +('200.31.128.0', '200.31.159.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('200.31.160.0', '200.31.191.255', 2147483647, 2147483647, 'SV', 'El Salvador'), +('200.31.192.0', '200.31.223.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.31.224.0', '200.31.239.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.32.0.0', '200.32.63.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.32.64.0', '200.32.64.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('200.32.65.0', '200.32.67.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('200.32.68.0', '200.32.68.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('200.32.69.0', '200.32.69.31', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.32.69.32', '200.32.73.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('200.32.74.0', '200.32.76.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.32.77.0', '200.32.77.255', 2147483647, 2147483647, 'HN', 'Honduras'), +('200.32.78.0', '200.32.78.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('200.32.79.0', '200.32.79.255', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('200.32.80.0', '200.32.83.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.32.84.0', '200.32.159.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.32.160.0', '200.32.191.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.32.192.0', '200.32.255.255', 2147483647, 2147483647, 'BZ', 'Belize'), +('200.33.0.0', '200.34.255.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('200.35.0.0', '200.35.31.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('200.35.32.0', '200.35.63.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.35.64.0', '200.35.80.47', 2147483647, 2147483647, 'VE', 'Venezuela'), +('200.35.80.48', '200.35.80.55', 2147483647, 2147483647, 'BO', 'Bolivia'), +('200.35.80.56', '200.35.143.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('200.35.144.0', '200.35.151.255', 2147483647, 2147483647, 'PA', 'Panama'), +('200.35.152.0', '200.35.159.255', 2147483647, 2147483647, 'UY', 'Uruguay'), +('200.35.160.0', '200.35.191.255', 2147483647, 2147483647, 'GT', 'Guatemala'), +('200.35.192.0', '200.35.255.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('200.36.0.0', '200.36.255.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('200.37.0.0', '200.37.255.255', 2147483647, 2147483647, 'PE', 'Peru'), +('200.38.0.0', '200.39.255.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('200.40.0.0', '200.40.255.255', 2147483647, 2147483647, 'UY', 'Uruguay'), +('200.41.0.0', '200.41.3.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('200.41.4.0', '200.41.4.191', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.41.4.192', '200.41.4.215', 2147483647, 2147483647, 'GT', 'Guatemala'), +('200.41.4.216', '200.41.7.15', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.41.7.16', '200.41.7.23', 2147483647, 2147483647, 'GT', 'Guatemala'), +('200.41.7.24', '200.41.7.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.41.8.0', '200.41.8.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.41.9.0', '200.41.9.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.41.10.0', '200.41.11.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('200.41.12.0', '200.41.12.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('200.41.13.0', '200.41.13.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.41.14.0', '200.41.48.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.41.49.0', '200.41.50.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.41.51.0', '200.41.51.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('200.41.52.0', '200.41.52.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.41.53.0', '200.41.53.255', 2147483647, 2147483647, 'HN', 'Honduras'), +('200.41.54.0', '200.41.54.255', 2147483647, 2147483647, 'SV', 'El Salvador'), +('200.41.55.0', '200.41.55.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.41.56.0', '200.41.56.255', 2147483647, 2147483647, 'HN', 'Honduras'), +('200.41.57.0', '200.41.57.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('200.41.58.0', '200.41.75.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.41.76.0', '200.41.79.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.41.80.0', '200.41.81.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('200.41.82.0', '200.41.82.255', 2147483647, 2147483647, 'PY', 'Paraguay'), +('200.41.83.0', '200.41.83.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.41.84.0', '200.41.87.255', 2147483647, 2147483647, 'GT', 'Guatemala'), +('200.41.88.0', '200.41.88.31', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.41.88.32', '200.41.88.63', 2147483647, 2147483647, 'VE', 'Venezuela'), +('200.41.88.64', '200.41.88.127', 2147483647, 2147483647, 'US', 'United States'), +('200.41.88.128', '200.41.90.63', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.41.90.64', '200.41.90.95', 2147483647, 2147483647, 'US', 'United States'), +('200.41.90.96', '200.41.90.127', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.41.90.128', '200.41.91.63', 2147483647, 2147483647, 'US', 'United States'), +('200.41.91.64', '200.41.91.127', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.41.91.128', '200.41.91.191', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('200.41.91.192', '200.41.91.255', 2147483647, 2147483647, 'US', 'United States'), +('200.41.92.0', '200.41.92.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('200.41.93.0', '200.41.93.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('200.41.94.0', '200.41.94.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.41.95.0', '200.41.95.255', 2147483647, 2147483647, 'SV', 'El Salvador'), +('200.41.96.0', '200.41.99.255', 2147483647, 2147483647, 'PE', 'Peru'), +('200.41.100.0', '200.41.100.255', 2147483647, 2147483647, 'HN', 'Honduras'), +('200.41.101.0', '200.41.111.255', 2147483647, 2147483647, 'PE', 'Peru'), +('200.41.112.0', '200.41.113.55', 2147483647, 2147483647, 'VE', 'Venezuela'), +('200.41.113.56', '200.41.113.63', 2147483647, 2147483647, 'US', 'United States'), +('200.41.113.64', '200.41.113.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('200.41.114.0', '200.41.114.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('200.41.115.0', '200.41.115.255', 2147483647, 2147483647, 'US', 'United States'), +('200.41.116.0', '200.41.119.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('200.41.120.0', '200.41.239.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.41.240.0', '200.41.243.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.41.244.0', '200.42.159.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.42.160.0', '200.42.191.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.42.192.0', '200.42.255.255', 2147483647, 2147483647, 'DO', 'Dominican Republic'), +('200.43.0.0', '200.43.10.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.43.11.0', '200.43.11.255', 2147483647, 2147483647, 'PY', 'Paraguay'), +('200.43.12.0', '200.43.255.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.44.0.0', '200.44.255.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('200.45.0.0', '200.45.255.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.46.0.0', '200.46.255.255', 2147483647, 2147483647, 'PA', 'Panama'), +('200.47.0.0', '200.47.78.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.47.79.0', '200.47.79.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('200.47.80.0', '200.47.80.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('200.47.81.0', '200.47.122.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.47.123.0', '200.47.123.127', 2147483647, 2147483647, 'UY', 'Uruguay'), +('200.47.123.128', '200.47.123.255', 2147483647, 2147483647, 'US', 'United States'), +('200.47.124.0', '200.47.135.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.47.136.0', '200.47.138.255', 2147483647, 2147483647, 'PY', 'Paraguay'), +('200.47.139.0', '200.47.139.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.47.140.0', '200.47.143.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('200.47.144.0', '200.47.149.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.47.150.0', '200.47.151.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('200.47.152.0', '200.47.155.255', 2147483647, 2147483647, 'PE', 'Peru'), +('200.47.156.0', '200.47.158.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.47.159.0', '200.47.159.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('200.47.160.0', '200.47.171.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.47.172.0', '200.47.175.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.47.176.0', '200.47.177.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.47.178.0', '200.47.179.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('200.47.180.0', '200.47.183.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('200.47.184.0', '200.47.184.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('200.47.185.0', '200.47.186.255', 2147483647, 2147483647, 'PE', 'Peru'), +('200.47.187.0', '200.47.188.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('200.47.189.0', '200.47.189.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.47.190.0', '200.47.191.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('200.47.192.0', '200.47.197.127', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.47.197.128', '200.47.197.255', 2147483647, 2147483647, 'UY', 'Uruguay'), +('200.47.198.0', '200.47.208.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.47.209.0', '200.47.210.127', 2147483647, 2147483647, 'PE', 'Peru'), +('200.47.210.128', '200.47.214.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.47.215.0', '200.47.215.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('200.47.216.0', '200.47.220.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.47.221.0', '200.47.221.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.47.222.0', '200.47.223.255', 2147483647, 2147483647, 'PE', 'Peru'), +('200.47.224.0', '200.47.255.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.48.0.0', '200.48.255.255', 2147483647, 2147483647, 'PE', 'Peru'), +('200.49.0.0', '200.49.15.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.49.16.0', '200.49.23.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.49.24.0', '200.49.35.31', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.49.35.32', '200.49.35.63', 2147483647, 2147483647, 'US', 'United States'), +('200.49.35.64', '200.49.42.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.49.43.0', '200.49.43.127', 2147483647, 2147483647, 'US', 'United States'), +('200.49.43.128', '200.49.46.127', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.49.46.128', '200.49.46.255', 2147483647, 2147483647, 'US', 'United States'), +('200.49.47.0', '200.49.47.127', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.49.47.128', '200.49.47.255', 2147483647, 2147483647, 'US', 'United States'), +('200.49.48.0', '200.49.159.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.49.160.0', '200.49.191.255', 2147483647, 2147483647, 'GT', 'Guatemala'), +('200.49.192.0', '200.49.239.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.49.240.0', '200.49.247.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('200.49.248.0', '200.49.255.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.50.0.0', '200.50.0.75', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('200.50.0.76', '200.50.0.83', 2147483647, 2147483647, 'DO', 'Dominican Republic'), +('200.50.0.84', '200.50.7.255', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('200.50.8.0', '200.50.11.255', 2147483647, 2147483647, 'DO', 'Dominican Republic'), +('200.50.12.0', '200.50.12.255', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('200.50.13.0', '200.50.13.255', 2147483647, 2147483647, 'AN', 'Netherlands Antilles'), +('200.50.14.0', '200.50.15.255', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('200.50.16.0', '200.50.19.255', 2147483647, 2147483647, 'DO', 'Dominican Republic'), +('200.50.20.0', '200.50.20.255', 2147483647, 2147483647, 'AN', 'Netherlands Antilles'), +('200.50.21.0', '200.50.31.255', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('200.50.32.0', '200.50.63.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.50.64.0', '200.50.70.255', 2147483647, 2147483647, 'BB', 'Barbados'), +('200.50.71.0', '200.50.72.255', 2147483647, 2147483647, 'GD', 'Grenada'), +('200.50.73.0', '200.50.76.255', 2147483647, 2147483647, 'BB', 'Barbados'), +('200.50.77.0', '200.50.77.255', 2147483647, 2147483647, 'KN', 'Saint Kitts and Nevis'), +('200.50.78.0', '200.50.95.255', 2147483647, 2147483647, 'BB', 'Barbados'), +('200.50.96.0', '200.50.127.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.50.128.0', '200.50.143.255', 2147483647, 2147483647, 'BB', 'Barbados'), +('200.50.144.0', '200.50.159.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.50.160.0', '200.50.176.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.50.177.0', '200.50.177.255', 2147483647, 2147483647, 'UY', 'Uruguay'), +('200.50.178.0', '200.50.178.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.50.179.0', '200.50.181.255', 2147483647, 2147483647, 'UY', 'Uruguay'), +('200.50.182.0', '200.50.191.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.50.192.0', '200.50.223.255', 2147483647, 2147483647, 'HT', 'Haiti'), +('200.50.224.0', '200.50.231.255', 2147483647, 2147483647, 'CR', 'Costa Rica'), +('200.50.232.0', '200.50.239.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('200.50.240.0', '200.51.143.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.51.144.0', '200.51.163.255', 2147483647, 2147483647, 'UY', 'Uruguay'), +('200.51.164.0', '200.51.171.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.51.172.0', '200.51.175.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.51.176.0', '200.51.255.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.52.0.0', '200.53.255.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('200.54.0.0', '200.54.255.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.55.0.0', '200.55.127.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.55.128.0', '200.55.191.255', 2147483647, 2147483647, 'CU', 'Cuba'), +('200.55.192.0', '200.55.223.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.55.224.0', '200.55.239.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('200.55.240.0', '200.55.247.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.55.248.0', '200.55.255.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('200.56.0.0', '200.57.255.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('200.58.0.0', '200.58.15.255', 2147483647, 2147483647, 'US', 'United States'), +('200.58.16.0', '200.58.16.15', 2147483647, 2147483647, 'BR', 'Brazil'), +('200.58.16.16', '200.58.21.15', 2147483647, 2147483647, 'US', 'United States'), +('200.58.21.16', '200.58.21.95', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.58.21.96', '200.58.21.127', 2147483647, 2147483647, 'BR', 'Brazil'), +('200.58.21.128', '200.58.21.223', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.58.21.224', '200.58.22.255', 2147483647, 2147483647, 'US', 'United States'), +('200.58.23.0', '200.58.30.71', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.58.30.72', '200.58.30.79', 2147483647, 2147483647, 'IT', 'Italy'), +('200.58.30.80', '200.58.30.95', 2147483647, 2147483647, 'US', 'United States'), +('200.58.30.96', '200.58.30.127', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.58.30.128', '200.58.30.191', 2147483647, 2147483647, 'US', 'United States'), +('200.58.30.192', '200.58.30.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.58.31.0', '200.58.47.255', 2147483647, 2147483647, 'US', 'United States'), +('200.58.48.0', '200.58.48.63', 2147483647, 2147483647, 'BR', 'Brazil'), +('200.58.48.64', '200.58.49.255', 2147483647, 2147483647, 'US', 'United States'), +('200.58.50.0', '200.58.50.15', 2147483647, 2147483647, 'BR', 'Brazil'), +('200.58.50.16', '200.58.50.39', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.58.50.40', '200.58.50.47', 2147483647, 2147483647, 'BR', 'Brazil'), +('200.58.50.48', '200.58.50.63', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.58.50.64', '200.58.50.95', 2147483647, 2147483647, 'BR', 'Brazil'), +('200.58.50.96', '200.58.50.127', 2147483647, 2147483647, 'US', 'United States'), +('200.58.50.128', '200.58.50.159', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.58.50.160', '200.58.50.175', 2147483647, 2147483647, 'BR', 'Brazil'), +('200.58.50.176', '200.58.50.191', 2147483647, 2147483647, 'US', 'United States'), +('200.58.50.192', '200.58.50.223', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.58.50.224', '200.58.50.239', 2147483647, 2147483647, 'US', 'United States'), +('200.58.50.240', '200.58.50.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.58.51.0', '200.58.63.255', 2147483647, 2147483647, 'US', 'United States'), +('200.58.64.0', '200.58.95.255', 2147483647, 2147483647, 'BO', 'Bolivia'), +('200.58.96.0', '200.58.127.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.58.128.0', '200.58.159.255', 2147483647, 2147483647, 'UY', 'Uruguay'), +('200.58.160.0', '200.58.191.255', 2147483647, 2147483647, 'BO', 'Bolivia'), +('200.58.192.0', '200.58.239.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.58.240.0', '200.58.247.255', 2147483647, 2147483647, 'DO', 'Dominican Republic'), +('200.58.248.0', '200.58.255.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.59.0.0', '200.59.15.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.59.16.0', '200.59.23.255', 2147483647, 2147483647, 'CR', 'Costa Rica'), +('200.59.24.0', '200.59.31.255', 2147483647, 2147483647, 'HN', 'Honduras'), +('200.59.32.0', '200.59.183.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.59.184.0', '200.59.191.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('200.59.192.0', '200.59.199.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.59.200.0', '200.59.203.255', 2147483647, 2147483647, 'UY', 'Uruguay'), +('200.59.204.0', '200.59.207.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.59.224.0', '200.59.255.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.60.0.0', '200.60.255.255', 2147483647, 2147483647, 'PE', 'Peru'), +('200.61.0.0', '200.61.64.207', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.61.64.208', '200.61.64.223', 2147483647, 2147483647, 'EC', 'Ecuador'), +('200.61.64.224', '200.61.65.159', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.61.65.160', '200.61.65.191', 2147483647, 2147483647, 'BO', 'Bolivia'), +('200.61.65.192', '200.61.65.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.61.66.0', '200.61.71.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('200.61.72.0', '200.61.72.255', 2147483647, 2147483647, 'PY', 'Paraguay'), +('200.61.73.0', '200.61.77.239', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.61.77.240', '200.61.78.255', 2147483647, 2147483647, 'UY', 'Uruguay'), +('200.61.79.0', '200.61.79.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.61.80.0', '200.61.81.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('200.61.82.0', '200.61.82.63', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.61.82.64', '200.61.82.127', 2147483647, 2147483647, 'HN', 'Honduras'), +('200.61.82.128', '200.61.83.127', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.61.83.128', '200.61.83.191', 2147483647, 2147483647, 'UY', 'Uruguay'), +('200.61.83.192', '200.61.83.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.61.84.0', '200.61.84.255', 2147483647, 2147483647, 'UY', 'Uruguay'), +('200.61.85.0', '200.61.87.231', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.61.87.232', '200.61.87.239', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.61.87.240', '200.61.88.239', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.61.88.240', '200.61.88.255', 2147483647, 2147483647, 'PY', 'Paraguay'), +('200.61.89.0', '200.61.89.63', 2147483647, 2147483647, 'HN', 'Honduras'), +('200.61.89.64', '200.61.89.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.61.90.0', '200.61.90.191', 2147483647, 2147483647, 'EC', 'Ecuador'), +('200.61.90.192', '200.61.90.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.61.91.0', '200.61.91.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('200.61.92.0', '200.61.95.255', 2147483647, 2147483647, 'UY', 'Uruguay'), +('200.61.96.0', '200.61.97.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.61.98.0', '200.61.99.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.61.100.0', '200.61.100.255', 2147483647, 2147483647, 'BO', 'Bolivia'), +('200.61.101.0', '200.61.102.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.61.103.0', '200.61.103.255', 2147483647, 2147483647, 'UY', 'Uruguay'), +('200.61.104.0', '200.61.105.255', 2147483647, 2147483647, 'BO', 'Bolivia'), +('200.61.106.0', '200.61.107.255', 2147483647, 2147483647, 'UY', 'Uruguay'), +('200.61.108.0', '200.61.108.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.61.109.0', '200.61.111.255', 2147483647, 2147483647, 'UY', 'Uruguay'), +('200.61.112.0', '200.61.115.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.61.116.0', '200.61.119.255', 2147483647, 2147483647, 'PY', 'Paraguay'), +('200.61.120.0', '200.61.121.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.61.122.0', '200.61.123.255', 2147483647, 2147483647, 'BO', 'Bolivia'), +('200.61.124.0', '200.61.127.255', 2147483647, 2147483647, 'PY', 'Paraguay'), +('200.61.128.0', '200.61.134.159', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.61.134.160', '200.61.134.167', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.61.134.168', '200.61.135.63', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.61.135.64', '200.61.135.95', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.61.135.96', '200.61.135.159', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.61.135.160', '200.61.135.167', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.61.135.168', '200.61.147.159', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.61.147.160', '200.61.147.191', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.61.147.192', '200.61.149.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.61.150.0', '200.61.150.7', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.61.150.8', '200.61.150.31', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.61.150.32', '200.61.150.47', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.61.150.48', '200.61.150.79', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.61.150.80', '200.61.150.87', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.61.150.88', '200.61.150.191', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.61.150.192', '200.61.150.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.61.151.0', '200.61.154.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.61.155.0', '200.61.155.239', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.61.155.240', '200.61.156.39', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.61.156.40', '200.61.156.55', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.61.156.56', '200.61.156.79', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.61.156.80', '200.61.156.83', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.61.156.84', '200.61.156.95', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.61.156.96', '200.61.156.103', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.61.156.104', '200.61.156.127', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.61.156.128', '200.61.156.143', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.61.156.144', '200.61.158.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.61.159.0', '200.61.159.63', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.61.159.64', '200.61.159.127', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.61.159.128', '200.61.159.143', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.61.159.144', '200.61.159.223', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.61.159.224', '200.61.159.239', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.61.159.240', '200.61.159.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.61.160.0', '200.61.223.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.61.224.0', '200.61.235.255', 2147483647, 2147483647, 'PY', 'Paraguay'), +('200.61.236.0', '200.61.239.255', 2147483647, 2147483647, 'SR', 'Suriname'), +('200.62.0.0', '200.62.7.255', 2147483647, 2147483647, 'US', 'United States'), +('200.62.8.0', '200.62.31.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('200.62.32.0', '200.62.39.255', 2147483647, 2147483647, 'GT', 'Guatemala'), +('200.62.40.0', '200.62.40.255', 2147483647, 2147483647, 'VG', 'Virgin Islands, British'), +('200.62.41.0', '200.62.41.255', 2147483647, 2147483647, 'US', 'United States'), +('200.62.42.0', '200.62.42.255', 2147483647, 2147483647, 'VG', 'Virgin Islands, British'), +('200.62.43.0', '200.62.43.255', 2147483647, 2147483647, 'US', 'United States'), +('200.62.44.0', '200.62.44.255', 2147483647, 2147483647, 'VG', 'Virgin Islands, British'), +('200.62.45.0', '200.62.53.255', 2147483647, 2147483647, 'US', 'United States'), +('200.62.54.0', '200.62.55.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.62.56.0', '200.62.63.255', 2147483647, 2147483647, 'US', 'United States'), +('200.62.64.0', '200.62.127.255', 2147483647, 2147483647, 'NI', 'Nicaragua'), +('200.62.128.0', '200.62.255.255', 2147483647, 2147483647, 'PE', 'Peru'), +('200.63.0.0', '200.63.39.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.63.40.0', '200.63.47.255', 2147483647, 2147483647, 'PA', 'Panama'), +('200.63.48.0', '200.63.55.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.63.56.0', '200.63.63.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.63.64.0', '200.63.67.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.63.68.0', '200.63.68.255', 2147483647, 2147483647, 'UY', 'Uruguay'), +('200.63.69.0', '200.63.95.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.63.96.0', '200.63.103.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.63.104.0', '200.63.111.255', 2147483647, 2147483647, 'AN', 'Netherlands Antilles'), +('200.63.112.0', '200.63.191.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.63.192.0', '200.63.255.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('200.64.0.0', '200.66.82.15', 2147483647, 2147483647, 'MX', 'Mexico'), +('200.66.82.16', '200.66.82.31', 2147483647, 2147483647, 'US', 'United States'), +('200.66.82.32', '200.67.255.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('200.68.0.0', '200.68.63.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.68.64.0', '200.68.127.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.68.128.0', '200.68.178.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.68.179.0', '200.68.179.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('200.68.180.0', '200.68.191.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.68.192.0', '200.69.17.127', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.69.17.128', '200.69.17.255', 2147483647, 2147483647, 'UY', 'Uruguay'), +('200.69.18.0', '200.69.95.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.69.96.0', '200.69.127.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.69.128.0', '200.69.159.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.69.160.0', '200.69.191.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('200.69.192.0', '200.70.255.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.71.0.0', '200.71.31.255', 2147483647, 2147483647, 'UY', 'Uruguay'), +('200.71.32.0', '200.71.79.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.71.80.0', '200.71.87.255', 2147483647, 2147483647, 'BO', 'Bolivia'), +('200.71.88.0', '200.71.95.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.71.96.0', '200.71.127.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.71.128.0', '200.71.191.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('200.71.192.0', '200.71.223.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.71.224.0', '200.71.239.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.71.240.0', '200.71.247.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('200.71.248.0', '200.71.255.255', 2147483647, 2147483647, 'AN', 'Netherlands Antilles'), +('200.72.0.0', '200.72.255.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.73.0.0', '200.73.3.95', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.73.3.96', '200.73.3.127', 2147483647, 2147483647, 'CL', 'Chile'), +('200.73.3.128', '200.73.5.31', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.73.5.32', '200.73.5.55', 2147483647, 2147483647, 'CL', 'Chile'), +('200.73.5.56', '200.73.6.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.73.7.0', '200.73.15.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.73.16.0', '200.73.16.31', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.73.16.32', '200.73.16.39', 2147483647, 2147483647, 'CL', 'Chile'), +('200.73.16.40', '200.73.16.63', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.73.16.64', '200.73.16.95', 2147483647, 2147483647, 'CL', 'Chile'), +('200.73.16.96', '200.73.16.175', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.73.16.176', '200.73.16.183', 2147483647, 2147483647, 'CL', 'Chile'), +('200.73.16.184', '200.73.16.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.73.17.0', '200.73.28.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.73.29.0', '200.73.30.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.73.31.0', '200.73.31.7', 2147483647, 2147483647, 'CL', 'Chile'), +('200.73.31.8', '200.73.31.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.73.32.0', '200.73.34.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.73.35.0', '200.73.35.15', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.73.35.16', '200.73.35.23', 2147483647, 2147483647, 'CL', 'Chile'), +('200.73.35.24', '200.73.35.135', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.73.35.136', '200.73.35.151', 2147483647, 2147483647, 'CL', 'Chile'), +('200.73.35.152', '200.73.35.199', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.73.35.200', '200.73.35.215', 2147483647, 2147483647, 'CL', 'Chile'), +('200.73.35.216', '200.73.35.239', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.73.35.240', '200.73.35.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.73.36.0', '200.73.36.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.73.37.0', '200.73.41.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.73.42.0', '200.73.45.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.73.46.0', '200.73.47.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.73.48.0', '200.73.52.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.73.53.0', '200.73.64.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.73.65.0', '200.73.81.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.73.82.0', '200.73.82.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.73.83.0', '200.73.95.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.73.96.0', '200.73.103.255', 2147483647, 2147483647, 'BO', 'Bolivia'), +('200.73.104.0', '200.73.111.255', 2147483647, 2147483647, 'SV', 'El Salvador'), +('200.73.112.0', '200.73.119.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.73.120.0', '200.73.127.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.73.128.0', '200.73.191.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.73.192.0', '200.73.199.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('200.73.200.0', '200.73.207.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('200.73.208.0', '200.73.215.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.73.216.0', '200.73.223.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.73.224.0', '200.74.127.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.74.128.0', '200.74.159.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.74.160.0', '200.74.191.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.74.192.0', '200.74.239.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('200.74.240.0', '200.74.247.255', 2147483647, 2147483647, 'PA', 'Panama'), +('200.74.248.0', '200.74.255.255', 2147483647, 2147483647, 'CR', 'Costa Rica'), +('200.75.0.0', '200.75.31.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.75.32.0', '200.75.95.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.75.96.0', '200.75.159.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('200.75.160.0', '200.75.175.255', 2147483647, 2147483647, 'BO', 'Bolivia'), +('200.75.176.0', '200.75.179.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.75.180.0', '200.75.183.255', 2147483647, 2147483647, 'US', 'United States'), +('200.75.184.0', '200.75.191.255', 2147483647, 2147483647, 'HN', 'Honduras'), +('200.75.192.0', '200.75.255.255', 2147483647, 2147483647, 'PA', 'Panama'), +('200.76.0.0', '200.79.255.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('200.80.0.0', '200.80.6.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.80.7.0', '200.80.9.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.80.10.0', '200.80.10.127', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.80.10.128', '200.80.11.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.80.12.0', '200.80.12.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.80.13.0', '200.80.13.127', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.80.13.128', '200.80.13.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.80.14.0', '200.80.14.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.80.15.0', '200.80.15.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.80.16.0', '200.80.16.127', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.80.16.128', '200.80.16.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.80.17.0', '200.80.18.31', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.80.18.32', '200.80.18.63', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.80.18.64', '200.80.18.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.80.19.0', '200.80.21.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.80.22.0', '200.80.24.127', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.80.24.128', '200.80.24.143', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.80.24.144', '200.80.25.127', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.80.25.128', '200.80.25.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.80.26.0', '200.80.27.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.80.28.0', '200.80.28.63', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.80.28.64', '200.80.28.95', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.80.28.96', '200.80.28.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.80.29.0', '200.80.30.31', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.80.30.32', '200.80.30.63', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.80.30.64', '200.80.30.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.80.31.0', '200.80.31.63', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.80.31.64', '200.80.31.127', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.80.31.128', '200.80.31.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.80.32.0', '200.80.32.31', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.80.32.32', '200.80.32.191', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.80.32.192', '200.80.35.31', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.80.35.32', '200.80.35.47', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.80.35.48', '200.80.35.127', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.80.35.128', '200.80.35.159', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.80.35.160', '200.80.35.175', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.80.35.176', '200.80.35.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.80.36.0', '200.80.40.127', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.80.40.128', '200.80.40.191', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.80.40.192', '200.80.40.207', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.80.40.208', '200.80.41.159', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.80.41.160', '200.80.41.191', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.80.41.192', '200.80.41.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.80.42.0', '200.80.46.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.80.47.0', '200.80.51.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.80.52.0', '200.80.54.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.80.55.0', '200.80.55.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.80.56.0', '200.80.59.127', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.80.59.128', '200.80.59.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.80.60.0', '200.80.95.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.80.96.0', '200.80.127.255', 2147483647, 2147483647, 'HT', 'Haiti'), +('200.80.128.0', '200.81.47.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.81.48.0', '200.81.55.255', 2147483647, 2147483647, 'GT', 'Guatemala'), +('200.81.56.0', '200.81.63.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.81.64.0', '200.81.71.255', 2147483647, 2147483647, 'PY', 'Paraguay'), +('200.81.72.0', '200.81.76.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('200.81.77.0', '200.81.78.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.81.79.0', '200.81.79.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('200.81.80.0', '200.81.80.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.81.81.0', '200.81.81.127', 2147483647, 2147483647, 'BO', 'Bolivia'), +('200.81.81.128', '200.81.81.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.81.82.0', '200.81.83.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('200.81.84.0', '200.81.87.255', 2147483647, 2147483647, 'BO', 'Bolivia'), +('200.81.88.0', '200.81.88.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('200.81.89.0', '200.81.89.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.81.90.0', '200.81.90.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('200.81.91.0', '200.81.91.175', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.81.91.176', '200.81.91.187', 2147483647, 2147483647, 'EC', 'Ecuador'), +('200.81.91.188', '200.81.91.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.81.92.0', '200.81.93.255', 2147483647, 2147483647, 'BO', 'Bolivia'), +('200.81.94.0', '200.81.143.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.81.144.0', '200.81.151.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.81.152.0', '200.82.127.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.82.128.0', '200.82.255.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('200.83.0.0', '200.83.255.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.84.0.0', '200.84.255.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('200.85.0.0', '200.85.31.255', 2147483647, 2147483647, 'SV', 'El Salvador'), +('200.85.32.0', '200.85.63.255', 2147483647, 2147483647, 'PY', 'Paraguay'), +('200.85.64.0', '200.85.79.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('200.85.80.0', '200.85.87.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('200.85.88.0', '200.85.127.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.85.128.0', '200.85.151.255', 2147483647, 2147483647, 'BO', 'Bolivia'), +('200.85.152.0', '200.85.159.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.85.160.0', '200.85.175.255', 2147483647, 2147483647, 'NI', 'Nicaragua'), +('200.85.176.0', '200.85.191.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.85.192.0', '200.85.223.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.85.224.0', '200.85.255.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.86.0.0', '200.86.255.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.87.0.0', '200.87.255.255', 2147483647, 2147483647, 'BO', 'Bolivia'), +('200.88.0.0', '200.88.255.255', 2147483647, 2147483647, 'DO', 'Dominican Republic'), +('200.89.0.0', '200.89.31.255', 2147483647, 2147483647, 'PE', 'Peru'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('200.89.32.0', '200.89.79.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.89.80.0', '200.89.87.255', 2147483647, 2147483647, 'SV', 'El Salvador'), +('200.89.88.0', '200.89.95.255', 2147483647, 2147483647, 'DO', 'Dominican Republic'), +('200.89.96.0', '200.89.127.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.89.128.0', '200.89.191.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.89.192.0', '200.89.255.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.90.0.0', '200.90.127.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('200.90.128.0', '200.90.143.255', 2147483647, 2147483647, 'PA', 'Panama'), +('200.90.144.0', '200.90.151.255', 2147483647, 2147483647, 'BO', 'Bolivia'), +('200.90.152.0', '200.90.159.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('200.90.160.0', '200.91.31.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.91.32.0', '200.91.39.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.91.40.0', '200.91.47.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.91.48.0', '200.91.63.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.91.64.0', '200.91.191.255', 2147483647, 2147483647, 'CR', 'Costa Rica'), +('200.91.192.0', '200.91.255.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.92.0.0', '200.92.255.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('200.93.0.0', '200.93.127.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('200.93.128.0', '200.93.191.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.93.192.0', '200.93.239.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('200.93.240.0', '200.93.247.255', 2147483647, 2147483647, 'UY', 'Uruguay'), +('200.93.248.0', '200.93.255.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('200.94.0.0', '200.95.255.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('200.96.0.0', '200.103.255.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('200.104.0.0', '200.104.255.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.105.0.0', '200.105.0.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.105.1.0', '200.105.1.255', 2147483647, 2147483647, 'UY', 'Uruguay'), +('200.105.2.0', '200.105.7.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.105.8.0', '200.105.15.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('200.105.16.0', '200.105.23.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.105.24.0', '200.105.31.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('200.105.32.0', '200.105.47.255', 2147483647, 2147483647, 'PA', 'Panama'), +('200.105.48.0', '200.105.55.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.105.56.0', '200.105.59.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.105.60.0', '200.105.67.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.105.68.0', '200.105.68.255', 2147483647, 2147483647, 'GT', 'Guatemala'), +('200.105.69.0', '200.105.69.255', 2147483647, 2147483647, 'PA', 'Panama'), +('200.105.70.0', '200.105.70.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.105.71.0', '200.105.71.255', 2147483647, 2147483647, 'PA', 'Panama'), +('200.105.72.0', '200.105.79.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.105.80.0', '200.105.87.255', 2147483647, 2147483647, 'PA', 'Panama'), +('200.105.88.0', '200.105.95.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.105.96.0', '200.105.103.255', 2147483647, 2147483647, 'CR', 'Costa Rica'), +('200.105.104.0', '200.105.111.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.105.112.0', '200.105.119.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('200.105.120.0', '200.105.127.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.105.128.0', '200.105.191.255', 2147483647, 2147483647, 'BO', 'Bolivia'), +('200.105.192.0', '200.105.207.255', 2147483647, 2147483647, 'PE', 'Peru'), +('200.105.208.0', '200.105.223.255', 2147483647, 2147483647, 'BO', 'Bolivia'), +('200.105.224.0', '200.105.255.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('200.106.0.0', '200.106.127.255', 2147483647, 2147483647, 'PE', 'Peru'), +('200.106.128.0', '200.106.143.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.106.144.0', '200.106.151.255', 2147483647, 2147483647, 'PA', 'Panama'), +('200.106.152.0', '200.106.159.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.106.160.0', '200.106.223.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.106.224.0', '200.106.239.255', 2147483647, 2147483647, 'SV', 'El Salvador'), +('200.107.0.0', '200.107.63.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('200.107.64.0', '200.107.79.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.107.80.0', '200.107.80.255', 2147483647, 2147483647, 'HN', 'Honduras'), +('200.107.82.0', '200.107.83.255', 2147483647, 2147483647, 'CR', 'Costa Rica'), +('200.107.96.0', '200.107.111.255', 2147483647, 2147483647, 'PE', 'Peru'), +('200.107.112.0', '200.107.113.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.107.114.0', '200.107.114.255', 2147483647, 2147483647, 'UY', 'Uruguay'), +('200.107.115.0', '200.107.117.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.107.118.0', '200.107.118.255', 2147483647, 2147483647, 'UY', 'Uruguay'), +('200.107.119.0', '200.107.119.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.107.120.0', '200.107.127.255', 2147483647, 2147483647, 'HN', 'Honduras'), +('200.107.128.0', '200.107.191.255', 2147483647, 2147483647, 'PE', 'Peru'), +('200.107.192.0', '200.107.199.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('200.107.200.0', '200.107.207.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.107.208.0', '200.107.215.255', 2147483647, 2147483647, 'HN', 'Honduras'), +('200.107.216.0', '200.107.223.255', 2147483647, 2147483647, 'GT', 'Guatemala'), +('200.107.224.0', '200.107.231.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.107.232.0', '200.107.239.255', 2147483647, 2147483647, 'HN', 'Honduras'), +('200.107.240.0', '200.107.247.255', 2147483647, 2147483647, 'BO', 'Bolivia'), +('200.107.248.0', '200.107.255.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('200.108.0.0', '200.108.31.255', 2147483647, 2147483647, 'TT', 'Trinidad and Tobago'), +('200.108.32.0', '200.108.47.255', 2147483647, 2147483647, 'PA', 'Panama'), +('200.108.64.0', '200.108.95.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.108.96.0', '200.108.111.255', 2147483647, 2147483647, 'PE', 'Peru'), +('200.108.128.0', '200.108.143.255', 2147483647, 2147483647, 'PY', 'Paraguay'), +('200.108.160.0', '200.108.163.255', 2147483647, 2147483647, 'BZ', 'Belize'), +('200.108.164.0', '200.108.164.127', 2147483647, 2147483647, 'PA', 'Panama'), +('200.108.164.128', '200.108.165.255', 2147483647, 2147483647, 'BZ', 'Belize'), +('200.108.166.0', '200.108.166.127', 2147483647, 2147483647, 'PA', 'Panama'), +('200.108.166.128', '200.108.167.255', 2147483647, 2147483647, 'BZ', 'Belize'), +('200.108.168.0', '200.108.168.127', 2147483647, 2147483647, 'PA', 'Panama'), +('200.108.168.128', '200.108.169.127', 2147483647, 2147483647, 'BZ', 'Belize'), +('200.108.169.128', '200.108.169.255', 2147483647, 2147483647, 'PA', 'Panama'), +('200.108.170.0', '200.108.172.255', 2147483647, 2147483647, 'BZ', 'Belize'), +('200.108.173.0', '200.108.173.127', 2147483647, 2147483647, 'PA', 'Panama'), +('200.108.173.128', '200.108.173.255', 2147483647, 2147483647, 'BZ', 'Belize'), +('200.108.174.0', '200.108.174.127', 2147483647, 2147483647, 'PA', 'Panama'), +('200.108.174.128', '200.108.180.255', 2147483647, 2147483647, 'BZ', 'Belize'), +('200.108.181.0', '200.108.181.255', 2147483647, 2147483647, 'PA', 'Panama'), +('200.108.182.0', '200.108.189.255', 2147483647, 2147483647, 'BZ', 'Belize'), +('200.108.190.0', '200.108.190.255', 2147483647, 2147483647, 'PA', 'Panama'), +('200.108.191.0', '200.108.191.255', 2147483647, 2147483647, 'BZ', 'Belize'), +('200.108.192.0', '200.108.255.255', 2147483647, 2147483647, 'UY', 'Uruguay'), +('200.109.0.0', '200.109.255.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('200.110.0.0', '200.110.63.255', 2147483647, 2147483647, 'PE', 'Peru'), +('200.110.64.0', '200.110.95.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('200.110.96.0', '200.110.111.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.110.128.0', '200.110.131.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.110.132.0', '200.110.135.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.110.136.0', '200.110.137.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.110.138.0', '200.110.139.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.110.140.0', '200.110.141.127', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.110.141.128', '200.110.141.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.110.142.0', '200.110.145.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.110.146.0', '200.110.147.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.110.148.0', '200.110.148.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.110.149.0', '200.110.150.127', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.110.150.128', '200.110.150.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.110.151.0', '200.110.151.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.110.152.0', '200.110.152.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.110.153.0', '200.110.153.255', 2147483647, 2147483647, 'PA', 'Panama'), +('200.110.154.0', '200.110.155.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.110.156.0', '200.110.156.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.110.157.0', '200.110.157.127', 2147483647, 2147483647, 'MX', 'Mexico'), +('200.110.157.128', '200.110.157.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.110.158.0', '200.110.158.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.110.159.0', '200.110.167.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.110.168.0', '200.110.175.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.110.176.0', '200.110.199.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.110.200.0', '200.110.207.255', 2147483647, 2147483647, 'GT', 'Guatemala'), +('200.110.208.0', '200.110.231.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.110.232.0', '200.110.239.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('200.110.240.0', '200.110.255.255', 2147483647, 2147483647, 'GT', 'Guatemala'), +('200.111.0.0', '200.112.127.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.112.128.0', '200.112.191.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.112.192.0', '200.112.207.255', 2147483647, 2147483647, 'BO', 'Bolivia'), +('200.112.224.0', '200.113.191.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.113.192.0', '200.113.223.255', 2147483647, 2147483647, 'HT', 'Haiti'), +('200.114.0.0', '200.114.79.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.114.80.0', '200.114.87.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.114.88.0', '200.114.95.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.114.128.0', '200.115.15.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.115.32.0', '200.115.47.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('200.115.64.0', '200.115.79.255', 2147483647, 2147483647, 'UY', 'Uruguay'), +('200.115.96.0', '200.115.127.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.115.128.0', '200.115.191.255', 2147483647, 2147483647, 'PA', 'Panama'), +('200.115.192.0', '200.115.255.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.116.0.0', '200.116.255.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.117.0.0', '200.117.255.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.118.0.0', '200.119.127.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.119.128.0', '200.119.159.255', 2147483647, 2147483647, 'GT', 'Guatemala'), +('200.119.192.0', '200.119.223.255', 2147483647, 2147483647, 'BO', 'Bolivia'), +('200.119.224.0', '200.120.255.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.121.0.0', '200.121.255.255', 2147483647, 2147483647, 'PE', 'Peru'), +('200.122.0.0', '200.122.127.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.122.128.0', '200.122.191.255', 2147483647, 2147483647, 'CR', 'Costa Rica'), +('200.122.192.0', '200.122.255.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.123.0.0', '200.123.31.255', 2147483647, 2147483647, 'PE', 'Peru'), +('200.123.64.0', '200.123.193.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.123.194.0', '200.123.194.255', 2147483647, 2147483647, 'PE', 'Peru'), +('200.123.195.0', '200.123.207.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.123.224.0', '200.123.239.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.124.0.0', '200.124.31.255', 2147483647, 2147483647, 'PA', 'Panama'), +('200.124.32.0', '200.124.63.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.124.64.0', '200.124.95.255', 2147483647, 2147483647, 'BZ', 'Belize'), +('200.124.128.0', '200.124.159.255', 2147483647, 2147483647, 'AN', 'Netherlands Antilles'), +('200.124.160.0', '200.124.175.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('200.124.192.0', '200.124.207.255', 2147483647, 2147483647, 'UY', 'Uruguay'), +('200.124.224.0', '200.124.255.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('200.125.0.0', '200.125.63.255', 2147483647, 2147483647, 'UY', 'Uruguay'), +('200.125.64.0', '200.125.127.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.125.128.0', '200.125.159.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('200.125.160.0', '200.125.167.255', 2147483647, 2147483647, 'TT', 'Trinidad and Tobago'), +('200.125.168.0', '200.125.175.255', 2147483647, 2147483647, 'NI', 'Nicaragua'), +('200.125.176.0', '200.125.183.255', 2147483647, 2147483647, 'GT', 'Guatemala'), +('200.125.184.0', '200.125.191.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('200.125.192.0', '200.125.255.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('200.126.0.0', '200.126.31.255', 2147483647, 2147483647, 'CU', 'Cuba'), +('200.126.64.0', '200.126.127.255', 2147483647, 2147483647, 'CL', 'Chile'), +('200.126.128.0', '200.127.255.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('200.128.0.0', '201.95.255.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('201.96.0.0', '201.175.255.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('201.191.0.0', '201.207.255.255', 2147483647, 2147483647, 'CR', 'Costa Rica'), +('201.208.0.0', '201.211.255.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('201.212.0.0', '201.213.255.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('201.214.0.0', '201.215.255.255', 2147483647, 2147483647, 'CL', 'Chile'), +('201.216.0.0', '201.216.63.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('201.216.64.0', '201.216.86.255', 2147483647, 2147483647, 'AN', 'Netherlands Antilles'), +('201.216.87.0', '201.216.87.255', 2147483647, 2147483647, 'VG', 'Virgin Islands, British'), +('201.216.88.0', '201.216.127.255', 2147483647, 2147483647, 'AN', 'Netherlands Antilles'), +('201.216.128.0', '201.216.191.255', 2147483647, 2147483647, 'GT', 'Guatemala'), +('201.216.192.0', '201.216.255.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('201.217.0.0', '201.217.63.255', 2147483647, 2147483647, 'PY', 'Paraguay'), +('201.217.64.0', '201.217.127.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('201.217.128.0', '201.217.191.255', 2147483647, 2147483647, 'UY', 'Uruguay'), +('201.217.192.0', '201.217.223.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('201.218.0.0', '201.218.63.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('201.218.64.0', '201.218.127.255', 2147483647, 2147483647, 'PA', 'Panama'), +('201.218.128.0', '201.218.159.255', 2147483647, 2147483647, 'CL', 'Chile'), +('201.218.192.0', '201.218.255.255', 2147483647, 2147483647, 'PA', 'Panama'), +('201.219.0.0', '201.219.63.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('201.219.64.0', '201.219.95.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('201.219.128.0', '201.219.159.255', 2147483647, 2147483647, 'CL', 'Chile'), +('201.219.192.0', '201.219.223.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('201.220.0.0', '201.220.15.255', 2147483647, 2147483647, 'AN', 'Netherlands Antilles'), +('201.220.32.0', '201.220.95.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('201.220.96.0', '201.220.127.255', 2147483647, 2147483647, 'CL', 'Chile'), +('201.220.128.0', '201.220.143.255', 2147483647, 2147483647, 'HN', 'Honduras'), +('201.220.160.0', '201.220.175.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('201.220.192.0', '201.220.223.255', 2147483647, 2147483647, 'CU', 'Cuba'), +('201.220.224.0', '201.220.255.255', 2147483647, 2147483647, 'CL', 'Chile'), +('201.221.0.0', '201.221.63.255', 2147483647, 2147483647, 'UY', 'Uruguay'), +('201.221.64.0', '201.221.95.255', 2147483647, 2147483647, 'TT', 'Trinidad and Tobago'), +('201.221.96.0', '201.221.111.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('201.221.112.0', '201.221.119.255', 2147483647, 2147483647, 'CL', 'Chile'), +('201.221.128.0', '201.221.191.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('201.221.192.0', '201.221.223.255', 2147483647, 2147483647, 'CL', 'Chile'), +('201.221.224.0', '201.221.255.255', 2147483647, 2147483647, 'PA', 'Panama'), +('201.222.0.0', '201.222.15.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('201.222.32.0', '201.222.47.255', 2147483647, 2147483647, 'AN', 'Netherlands Antilles'), +('201.222.64.0', '201.222.127.255', 2147483647, 2147483647, 'BO', 'Bolivia'), +('201.222.128.0', '201.223.255.255', 2147483647, 2147483647, 'CL', 'Chile'), +('201.224.0.0', '201.227.255.255', 2147483647, 2147483647, 'PA', 'Panama'), +('201.228.0.0', '201.228.255.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('201.229.0.0', '201.229.63.255', 2147483647, 2147483647, 'AW', 'Aruba'), +('201.229.128.0', '201.229.255.255', 2147483647, 2147483647, 'DO', 'Dominican Republic'), +('201.230.0.0', '201.230.255.255', 2147483647, 2147483647, 'PE', 'Peru'), +('201.231.0.0', '201.231.255.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('201.232.0.0', '201.233.255.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('201.234.0.0', '201.234.47.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('201.234.48.0', '201.234.63.255', 2147483647, 2147483647, 'PE', 'Peru'), +('201.234.64.0', '201.234.66.127', 2147483647, 2147483647, 'AR', 'Argentina'), +('201.234.66.128', '201.234.66.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('201.234.67.0', '201.234.68.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('201.234.69.0', '201.234.69.127', 2147483647, 2147483647, 'CO', 'Colombia'), +('201.234.69.128', '201.234.78.127', 2147483647, 2147483647, 'AR', 'Argentina'), +('201.234.78.128', '201.234.78.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('201.234.79.0', '201.234.79.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('201.234.80.0', '201.234.95.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('201.234.96.0', '201.234.111.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('201.234.112.0', '201.234.127.255', 2147483647, 2147483647, 'PE', 'Peru'), +('201.234.128.0', '201.234.175.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('201.234.176.0', '201.234.191.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('201.234.192.0', '201.234.223.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('201.234.224.0', '201.234.239.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('201.234.240.0', '201.234.247.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('201.234.248.0', '201.235.255.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('201.236.0.0', '201.236.191.255', 2147483647, 2147483647, 'CL', 'Chile'), +('201.236.192.0', '201.236.255.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('201.237.0.0', '201.237.255.255', 2147483647, 2147483647, 'CR', 'Costa Rica'), +('201.238.0.0', '201.238.63.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('201.238.64.0', '201.238.127.255', 2147483647, 2147483647, 'TT', 'Trinidad and Tobago'), +('201.238.160.0', '201.238.191.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('201.238.192.0', '201.239.255.255', 2147483647, 2147483647, 'CL', 'Chile'), +('201.240.0.0', '201.240.255.255', 2147483647, 2147483647, 'PE', 'Peru'), +('201.241.0.0', '201.241.255.255', 2147483647, 2147483647, 'CL', 'Chile'), +('201.242.0.0', '201.243.255.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('201.244.0.0', '201.245.255.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('201.246.0.0', '201.246.255.255', 2147483647, 2147483647, 'CL', 'Chile'), +('201.247.0.0', '201.247.255.255', 2147483647, 2147483647, 'SV', 'El Salvador'), +('201.248.0.0', '201.249.255.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('201.250.0.0', '201.252.252.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('201.252.253.0', '201.252.253.255', 2147483647, 2147483647, 'PY', 'Paraguay'), +('201.252.254.0', '201.255.255.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('202.0.0.0', '202.0.15.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.0.16.0', '202.0.31.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('202.0.32.0', '202.0.63.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.0.64.0', '202.0.64.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.0.65.0', '202.0.66.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.0.67.0', '202.0.70.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.0.71.0', '202.0.71.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.0.72.0', '202.0.73.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.0.74.0', '202.0.75.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.0.76.0', '202.0.76.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.0.77.0', '202.0.78.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.0.80.0', '202.0.80.255', 2147483647, 2147483647, 'PG', 'Papua New Guinea'), +('202.0.81.0', '202.0.81.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.0.82.0', '202.0.83.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.0.84.0', '202.0.84.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.0.85.0', '202.0.87.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.0.88.0', '202.0.89.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.0.90.0', '202.0.90.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.0.91.0', '202.0.91.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('202.0.92.0', '202.0.92.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.0.93.0', '202.0.93.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.0.94.0', '202.0.94.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('202.0.95.0', '202.0.96.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.0.97.0', '202.0.97.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.0.98.0', '202.0.99.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.0.100.0', '202.0.100.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.0.101.0', '202.0.102.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.0.103.0', '202.0.103.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.0.104.0', '202.0.104.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.0.105.0', '202.0.109.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.0.110.0', '202.0.110.255', 2147483647, 2147483647, 'CN', 'China'), +('202.0.111.0', '202.0.111.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('202.0.112.0', '202.0.112.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.0.113.0', '202.0.115.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.0.116.0', '202.0.116.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.0.117.0', '202.0.120.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('202.0.121.0', '202.0.121.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.0.122.0', '202.0.123.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.0.124.0', '202.0.125.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.0.126.0', '202.0.127.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.0.128.0', '202.0.147.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.0.148.0', '202.0.148.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.0.149.0', '202.0.150.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.0.151.0', '202.0.151.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.0.152.0', '202.0.152.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.0.153.0', '202.0.153.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.0.154.0', '202.0.155.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.0.156.0', '202.0.159.255', 2147483647, 2147483647, 'NC', 'New Caledonia'), +('202.0.160.0', '202.0.183.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.0.184.0', '202.0.187.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.0.188.0', '202.0.191.255', 2147483647, 2147483647, 'FR', 'France'), +('202.0.192.0', '202.0.255.255', 2147483647, 2147483647, 'US', 'United States'), +('202.1.0.0', '202.1.4.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.1.5.0', '202.1.5.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.1.6.0', '202.1.7.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.1.8.0', '202.1.15.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.1.16.0', '202.1.31.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.1.32.0', '202.1.63.255', 2147483647, 2147483647, 'PG', 'Papua New Guinea'), +('202.1.64.0', '202.1.113.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.1.114.0', '202.1.115.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('202.1.116.0', '202.1.119.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.1.120.0', '202.1.127.255', 2147483647, 2147483647, 'IN', 'India'), +('202.1.128.0', '202.1.159.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.1.160.0', '202.1.191.255', 2147483647, 2147483647, 'SB', 'Solomon Islands'), +('202.1.192.0', '202.1.207.255', 2147483647, 2147483647, 'MV', 'Maldives'), +('202.1.208.0', '202.1.223.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.1.224.0', '202.1.231.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.1.240.0', '202.1.255.255', 2147483647, 2147483647, 'PG', 'Papua New Guinea'), +('202.2.0.0', '202.2.3.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.2.4.0', '202.2.15.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.2.16.0', '202.2.31.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.2.32.0', '202.2.51.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.2.52.0', '202.2.55.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('202.2.56.0', '202.2.63.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.2.64.0', '202.2.87.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.2.88.0', '202.2.91.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.2.92.0', '202.2.95.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.2.96.0', '202.2.127.255', 2147483647, 2147483647, 'TV', 'Tuvalu'), +('202.2.128.0', '202.2.137.15', 2147483647, 2147483647, 'JP', 'Japan'), +('202.2.137.16', '202.2.137.19', 2147483647, 2147483647, 'AU', 'Australia'), +('202.2.137.20', '202.2.142.230', 2147483647, 2147483647, 'JP', 'Japan'), +('202.2.142.231', '202.2.142.231', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.2.142.232', '202.2.144.63', 2147483647, 2147483647, 'JP', 'Japan'), +('202.2.144.64', '202.2.144.127', 2147483647, 2147483647, 'CN', 'China'), +('202.2.144.128', '202.2.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.3.0.0', '202.3.5.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.3.6.0', '202.3.7.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.3.8.0', '202.3.15.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.3.16.0', '202.3.31.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.3.32.0', '202.3.63.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.3.68.0', '202.3.71.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('202.3.72.0', '202.3.74.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.3.75.0', '202.3.77.255', 2147483647, 2147483647, 'IN', 'India'), +('202.3.78.0', '202.3.79.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.3.80.0', '202.3.95.255', 2147483647, 2147483647, 'IN', 'India'), +('202.3.96.0', '202.3.111.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.3.112.0', '202.3.127.255', 2147483647, 2147483647, 'IN', 'India'), +('202.3.128.0', '202.3.128.255', 2147483647, 2147483647, 'PF', 'French Polynesia'), +('202.3.129.0', '202.3.129.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('202.3.130.0', '202.3.131.255', 2147483647, 2147483647, 'PK', 'Pakistan'), +('202.3.132.0', '202.3.134.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.3.135.0', '202.3.135.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.3.136.0', '202.3.136.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.3.137.0', '202.3.137.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.3.138.0', '202.3.139.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.3.140.0', '202.3.159.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.3.160.0', '202.3.191.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('202.3.192.0', '202.3.207.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.3.208.0', '202.3.223.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.3.224.0', '202.3.255.255', 2147483647, 2147483647, 'PF', 'French Polynesia'), +('202.4.0.0', '202.4.15.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('202.4.16.0', '202.4.24.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.4.25.0', '202.4.25.255', 2147483647, 2147483647, 'IN', 'India'), +('202.4.26.0', '202.4.27.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.4.28.0', '202.4.31.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.4.32.0', '202.4.63.255', 2147483647, 2147483647, 'WS', 'Samoa'), +('202.4.64.0', '202.4.95.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.4.96.0', '202.4.127.255', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('202.4.128.0', '202.4.159.255', 2147483647, 2147483647, 'CN', 'China'), +('202.4.192.0', '202.4.223.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.4.224.0', '202.4.243.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.4.244.0', '202.4.250.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.4.251.0', '202.4.251.255', 2147483647, 2147483647, 'VU', 'Vanuatu'), +('202.4.252.0', '202.4.255.255', 2147483647, 2147483647, 'CN', 'China'), +('202.5.0.0', '202.5.3.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.5.4.0', '202.5.5.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('202.5.6.0', '202.5.7.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.5.8.0', '202.5.15.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('202.5.16.0', '202.5.31.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.5.32.0', '202.5.63.255', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('202.5.64.0', '202.5.79.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.5.80.0', '202.5.95.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('202.5.96.0', '202.5.127.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.5.128.0', '202.5.159.255', 2147483647, 2147483647, 'PK', 'Pakistan'), +('202.5.160.0', '202.5.191.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.5.192.0', '202.5.223.255', 2147483647, 2147483647, 'MN', 'Mongolia'), +('202.5.224.0', '202.5.255.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('202.6.0.0', '202.6.1.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.6.2.0', '202.6.2.255', 2147483647, 2147483647, 'VN', 'Vietnam'), +('202.6.3.0', '202.6.4.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.6.5.0', '202.6.7.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.6.8.0', '202.6.79.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.6.80.0', '202.6.80.255', 2147483647, 2147483647, 'IN', 'India'), +('202.6.81.0', '202.6.83.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.6.84.0', '202.6.85.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.6.86.0', '202.6.86.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.6.87.0', '202.6.87.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.6.88.0', '202.6.89.255', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('202.6.90.0', '202.6.90.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('202.6.91.0', '202.6.92.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.6.93.0', '202.6.93.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.6.94.0', '202.6.94.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.6.95.0', '202.6.95.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('202.6.96.0', '202.6.97.255', 2147483647, 2147483647, 'VN', 'Vietnam'), +('202.6.98.0', '202.6.98.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.6.99.0', '202.6.99.255', 2147483647, 2147483647, 'IN', 'India'), +('202.6.100.0', '202.6.101.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('202.6.102.0', '202.6.102.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.6.103.0', '202.6.103.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.6.104.0', '202.6.105.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('202.6.106.0', '202.6.106.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.6.107.0', '202.6.107.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('202.6.108.0', '202.6.108.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.6.109.0', '202.6.110.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.6.111.0', '202.6.111.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('202.6.112.0', '202.6.115.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.6.116.0', '202.6.117.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.6.118.0', '202.6.118.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.6.119.0', '202.6.119.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.6.120.0', '202.6.123.255', 2147483647, 2147483647, 'KI', 'Kiribati'), +('202.6.124.0', '202.6.159.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.6.160.0', '202.6.175.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.6.176.0', '202.6.191.255', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('202.6.192.0', '202.6.207.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.6.208.0', '202.6.239.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.6.240.0', '202.6.243.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.6.244.0', '202.6.247.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.6.248.0', '202.6.251.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.6.252.0', '202.6.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.7.0.0', '202.7.1.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.7.2.0', '202.7.3.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.7.4.0', '202.7.7.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.7.8.0', '202.7.15.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.7.16.0', '202.7.31.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.7.32.0', '202.7.51.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.7.52.0', '202.7.59.255', 2147483647, 2147483647, 'IN', 'India'), +('202.7.60.0', '202.7.63.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.7.64.0', '202.7.95.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.7.96.0', '202.7.127.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.7.128.0', '202.7.143.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.7.144.0', '202.7.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.8.0.0', '202.8.5.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.8.6.0', '202.8.7.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.8.8.0', '202.8.13.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.8.14.0', '202.8.15.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('202.8.16.0', '202.8.24.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.8.25.0', '202.8.25.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('202.8.26.0', '202.8.27.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.8.32.0', '202.8.39.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.8.40.0', '202.8.43.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.8.44.0', '202.8.47.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.8.48.0', '202.8.63.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.8.64.0', '202.8.75.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('202.8.77.0', '202.8.77.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.8.78.0', '202.8.79.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('202.8.80.0', '202.8.83.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.8.84.0', '202.8.87.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('202.8.88.0', '202.8.91.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.8.92.0', '202.8.92.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.8.93.0', '202.8.93.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.8.94.0', '202.8.95.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.8.96.0', '202.8.127.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.8.128.0', '202.8.159.255', 2147483647, 2147483647, 'CN', 'China'), +('202.8.160.0', '202.8.191.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('202.8.192.0', '202.8.207.255', 2147483647, 2147483647, 'LK', 'Sri Lanka'), +('202.8.208.0', '202.8.223.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.8.224.0', '202.8.255.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('202.9.0.0', '202.9.63.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.9.96.0', '202.9.111.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('202.9.112.0', '202.9.207.255', 2147483647, 2147483647, 'IN', 'India'), +('202.9.208.0', '202.9.223.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.9.224.0', '202.9.255.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.10.0.0', '202.10.31.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.10.32.0', '202.10.63.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.10.64.0', '202.10.79.255', 2147483647, 2147483647, 'CN', 'China'), +('202.10.80.0', '202.10.95.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.10.96.0', '202.10.127.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.10.128.0', '202.10.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.11.0.0', '202.11.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.12.0.0', '202.12.0.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.12.1.0', '202.12.1.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.12.2.0', '202.12.2.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.12.3.0', '202.12.3.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.12.4.0', '202.12.7.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.12.8.0', '202.12.15.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.12.16.0', '202.12.16.255', 2147483647, 2147483647, 'IN', 'India'), +('202.12.17.0', '202.12.18.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('202.12.19.0', '202.12.21.255', 2147483647, 2147483647, 'US', 'United States'), +('202.12.22.0', '202.12.25.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.12.26.0', '202.12.26.255', 2147483647, 2147483647, 'BN', 'Brunei Darussalam'), +('202.12.27.0', '202.12.27.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.12.28.0', '202.12.30.255', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('202.12.31.0', '202.12.69.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.12.70.0', '202.12.70.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.12.71.0', '202.12.72.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.12.73.0', '202.12.74.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('202.12.76.0', '202.12.85.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.12.86.0', '202.12.90.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.12.91.0', '202.12.91.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.12.92.0', '202.12.93.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.12.94.0', '202.12.95.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.12.96.0', '202.12.96.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.12.97.0', '202.12.97.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('202.12.98.0', '202.12.100.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.12.101.0', '202.12.101.255', 2147483647, 2147483647, 'IN', 'India'), +('202.12.102.0', '202.12.102.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.12.104.0', '202.12.105.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.12.106.0', '202.12.107.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.12.108.0', '202.12.108.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.12.109.0', '202.12.115.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.12.116.0', '202.12.118.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('202.12.119.0', '202.12.121.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.12.122.0', '202.12.124.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.12.125.0', '202.12.126.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.12.127.0', '202.12.127.255', 2147483647, 2147483647, 'US', 'United States'), +('202.12.128.0', '202.12.242.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.12.243.0', '202.12.247.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.12.248.0', '202.12.255.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.13.0.0', '202.13.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.14.0.0', '202.14.7.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.14.8.0', '202.14.15.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('202.14.16.0', '202.14.63.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.14.64.0', '202.14.66.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.14.67.0', '202.14.68.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.14.69.0', '202.14.69.255', 2147483647, 2147483647, 'IN', 'India'), +('202.14.70.0', '202.14.71.255', 2147483647, 2147483647, 'PK', 'Pakistan'), +('202.14.72.0', '202.14.72.255', 2147483647, 2147483647, 'IN', 'India'), +('202.14.73.0', '202.14.75.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.14.76.0', '202.14.79.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.14.80.0', '202.14.80.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.14.81.0', '202.14.81.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.14.82.0', '202.14.84.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.14.85.0', '202.14.87.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('202.14.88.0', '202.14.88.255', 2147483647, 2147483647, 'CN', 'China'), +('202.14.89.0', '202.14.89.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.14.95.0', '202.14.95.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.14.96.0', '202.14.97.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.14.98.0', '202.14.98.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.14.99.0', '202.14.100.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.14.101.0', '202.14.101.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.14.102.0', '202.14.102.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.14.103.0', '202.14.103.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('202.14.104.0', '202.14.105.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.14.106.0', '202.14.109.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.14.110.0', '202.14.113.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.14.114.0', '202.14.115.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.14.116.0', '202.14.116.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.14.117.0', '202.14.117.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('202.14.118.0', '202.14.126.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.14.127.0', '202.14.127.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.14.128.0', '202.14.134.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.14.135.0', '202.14.136.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.14.137.0', '202.14.139.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.14.140.0', '202.14.142.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.14.143.0', '202.14.148.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.14.149.0', '202.14.149.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.14.151.0', '202.14.152.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.14.153.0', '202.14.154.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.14.155.0', '202.14.161.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.14.162.0', '202.14.164.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('202.14.165.0', '202.14.165.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('202.14.166.0', '202.14.166.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.14.167.0', '202.14.168.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.14.169.0', '202.14.215.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.14.216.0', '202.14.218.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.14.219.0', '202.14.221.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.14.222.0', '202.14.222.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.14.223.0', '202.14.223.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.14.224.0', '202.14.228.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.14.229.0', '202.14.234.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.14.235.0', '202.14.238.255', 2147483647, 2147483647, 'CN', 'China'), +('202.14.239.0', '202.14.251.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.14.252.0', '202.14.254.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.14.255.0', '202.14.255.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.15.0.0', '202.19.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.20.0.0', '202.20.7.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.20.8.0', '202.20.31.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.20.32.0', '202.20.65.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.20.66.0', '202.20.66.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.20.67.0', '202.20.75.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.20.76.0', '202.20.80.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.20.81.0', '202.20.81.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.20.82.0', '202.20.86.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('202.20.87.0', '202.20.87.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('202.20.88.0', '202.20.89.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.20.90.0', '202.20.90.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.20.91.0', '202.20.93.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.20.94.0', '202.20.95.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.20.96.0', '202.20.97.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.20.98.0', '202.20.98.255', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('202.20.99.0', '202.20.99.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('202.20.100.0', '202.20.101.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.20.102.0', '202.20.104.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.20.105.0', '202.20.105.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('202.20.106.0', '202.20.109.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.20.110.0', '202.20.110.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.20.111.0', '202.20.111.255', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('202.20.112.0', '202.20.112.255', 2147483647, 2147483647, 'GU', 'Guam'), +('202.20.113.0', '202.20.113.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.20.114.0', '202.20.116.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.20.117.0', '202.20.118.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.20.119.0', '202.20.119.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('202.20.120.0', '202.20.120.255', 2147483647, 2147483647, 'CN', 'China'), +('202.20.121.0', '202.20.122.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.20.123.0', '202.20.124.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.20.125.0', '202.20.127.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.20.128.0', '202.21.7.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('202.21.8.0', '202.21.15.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.21.16.0', '202.21.31.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.21.32.0', '202.21.63.255', 2147483647, 2147483647, 'LK', 'Sri Lanka'), +('202.21.64.0', '202.21.111.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.21.112.0', '202.21.127.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.21.128.0', '202.21.128.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.21.129.0', '202.21.129.255', 2147483647, 2147483647, 'IN', 'India'), +('202.21.130.0', '202.21.133.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.21.134.0', '202.21.135.255', 2147483647, 2147483647, 'IN', 'India'), +('202.21.136.0', '202.21.139.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.21.140.0', '202.21.140.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('202.21.141.0', '202.21.143.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.21.144.0', '202.21.144.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('202.21.145.0', '202.21.146.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.21.147.0', '202.21.147.255', 2147483647, 2147483647, 'IN', 'India'), +('202.21.148.0', '202.21.148.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('202.21.149.0', '202.21.149.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('202.21.150.0', '202.21.153.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.21.154.0', '202.21.154.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.21.155.0', '202.21.157.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.21.158.0', '202.21.159.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.21.160.0', '202.21.175.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.21.176.0', '202.21.191.255', 2147483647, 2147483647, 'MV', 'Maldives'), +('202.21.192.0', '202.21.216.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.21.217.0', '202.21.218.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.21.219.0', '202.21.255.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.22.0.0', '202.22.7.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.22.8.0', '202.22.15.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('202.22.16.0', '202.22.30.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.22.31.0', '202.22.31.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.22.32.0', '202.22.63.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('202.22.64.0', '202.22.127.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.22.128.0', '202.22.159.255', 2147483647, 2147483647, 'NC', 'New Caledonia'), +('202.22.160.0', '202.22.175.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.22.176.0', '202.22.191.255', 2147483647, 2147483647, 'GU', 'Guam'), +('202.22.192.0', '202.22.207.255', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('202.22.208.0', '202.22.223.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.22.224.0', '202.22.239.255', 2147483647, 2147483647, 'NC', 'New Caledonia'), +('202.22.240.0', '202.22.247.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.22.248.0', '202.22.255.255', 2147483647, 2147483647, 'CN', 'China'), +('202.23.0.0', '202.26.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.27.0.0', '202.27.8.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.27.9.0', '202.27.9.255', 2147483647, 2147483647, 'IN', 'India'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('202.27.10.0', '202.27.11.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('202.27.12.0', '202.27.13.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.27.14.0', '202.27.14.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.27.15.0', '202.27.15.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.27.16.0', '202.27.31.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.27.32.0', '202.27.90.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.27.91.0', '202.27.91.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.27.92.0', '202.27.255.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.28.0.0', '202.29.255.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('202.30.0.0', '202.31.255.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('202.32.0.0', '202.35.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.36.0.0', '202.37.181.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.37.182.0', '202.37.182.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.37.183.0', '202.37.255.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.38.0.0', '202.38.15.255', 2147483647, 2147483647, 'CN', 'China'), +('202.38.16.0', '202.38.31.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.38.32.0', '202.38.47.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.38.48.0', '202.38.63.255', 2147483647, 2147483647, 'PK', 'Pakistan'), +('202.38.64.0', '202.38.143.255', 2147483647, 2147483647, 'CN', 'China'), +('202.38.146.0', '202.38.147.255', 2147483647, 2147483647, 'CN', 'China'), +('202.38.148.0', '202.38.148.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.38.149.0', '202.38.150.255', 2147483647, 2147483647, 'CN', 'China'), +('202.38.151.0', '202.38.151.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.38.152.0', '202.38.156.255', 2147483647, 2147483647, 'CN', 'China'), +('202.38.157.0', '202.38.157.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.38.158.0', '202.38.161.255', 2147483647, 2147483647, 'CN', 'China'), +('202.38.162.0', '202.38.163.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.38.164.0', '202.38.177.255', 2147483647, 2147483647, 'CN', 'China'), +('202.38.178.0', '202.38.179.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.38.180.0', '202.38.183.255', 2147483647, 2147483647, 'IN', 'India'), +('202.38.184.0', '202.38.255.255', 2147483647, 2147483647, 'CN', 'China'), +('202.39.0.0', '202.39.255.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('202.40.0.0', '202.40.5.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.40.6.0', '202.40.6.255', 2147483647, 2147483647, 'IN', 'India'), +('202.40.7.0', '202.40.162.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.40.163.0', '202.40.163.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.40.164.0', '202.40.171.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.40.172.0', '202.40.175.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('202.40.176.0', '202.40.191.255', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('202.40.192.0', '202.40.223.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.40.224.0', '202.40.255.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.41.0.0', '202.41.13.255', 2147483647, 2147483647, 'IN', 'India'), +('202.41.14.0', '202.41.15.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.41.16.0', '202.41.129.255', 2147483647, 2147483647, 'IN', 'India'), +('202.41.130.0', '202.41.130.255', 2147483647, 2147483647, 'US', 'United States'), +('202.41.131.0', '202.41.133.255', 2147483647, 2147483647, 'IN', 'India'), +('202.41.134.0', '202.41.134.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.41.135.0', '202.41.135.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.41.136.0', '202.41.140.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.41.141.0', '202.41.141.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.41.142.0', '202.41.142.255', 2147483647, 2147483647, 'CN', 'China'), +('202.41.143.0', '202.41.143.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.41.144.0', '202.41.144.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.41.145.0', '202.41.145.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('202.41.146.0', '202.41.146.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('202.41.147.0', '202.41.147.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('202.41.148.0', '202.41.151.255', 2147483647, 2147483647, 'IN', 'India'), +('202.41.152.0', '202.41.159.255', 2147483647, 2147483647, 'CN', 'China'), +('202.41.160.0', '202.41.191.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('202.41.192.0', '202.41.192.255', 2147483647, 2147483647, 'IN', 'India'), +('202.41.193.0', '202.41.195.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.41.196.0', '202.41.203.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.41.204.0', '202.41.207.255', 2147483647, 2147483647, 'IN', 'India'), +('202.41.208.0', '202.41.223.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.41.224.0', '202.41.235.191', 2147483647, 2147483647, 'IN', 'India'), +('202.41.235.192', '202.41.235.223', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.41.235.224', '202.41.239.255', 2147483647, 2147483647, 'IN', 'India'), +('202.41.240.0', '202.41.255.255', 2147483647, 2147483647, 'CN', 'China'), +('202.42.0.0', '202.42.255.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.43.0.0', '202.43.7.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.43.8.0', '202.43.15.255', 2147483647, 2147483647, 'TO', 'Tonga'), +('202.43.16.0', '202.43.31.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.43.32.0', '202.43.47.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('202.43.48.0', '202.43.63.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('202.43.64.0', '202.43.65.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.43.66.0', '202.43.66.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.43.67.0', '202.43.67.255', 2147483647, 2147483647, 'IN', 'India'), +('202.43.68.0', '202.43.71.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.43.72.0', '202.43.75.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.43.76.0', '202.43.79.255', 2147483647, 2147483647, 'CN', 'China'), +('202.43.80.0', '202.43.81.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.43.82.0', '202.43.83.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.43.84.0', '202.43.87.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.43.88.0', '202.43.89.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.43.90.0', '202.43.90.255', 2147483647, 2147483647, 'IN', 'India'), +('202.43.91.0', '202.43.91.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.43.92.0', '202.43.95.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.43.96.0', '202.43.99.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.43.100.0', '202.43.103.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('202.43.104.0', '202.43.107.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.43.108.0', '202.43.111.255', 2147483647, 2147483647, 'VN', 'Vietnam'), +('202.43.112.0', '202.43.117.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.43.118.0', '202.43.119.255', 2147483647, 2147483647, 'PK', 'Pakistan'), +('202.43.120.0', '202.43.123.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('202.43.124.0', '202.43.127.255', 2147483647, 2147483647, 'PK', 'Pakistan'), +('202.43.128.0', '202.43.143.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.43.144.0', '202.43.159.255', 2147483647, 2147483647, 'CN', 'China'), +('202.43.160.0', '202.43.191.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.43.192.0', '202.43.207.255', 2147483647, 2147483647, 'US', 'United States'), +('202.43.208.0', '202.43.215.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.43.216.0', '202.43.223.255', 2147483647, 2147483647, 'US', 'United States'), +('202.43.224.0', '202.43.239.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.43.240.0', '202.43.247.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.43.248.0', '202.43.255.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.44.0.0', '202.44.55.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('202.44.56.0', '202.44.59.255', 2147483647, 2147483647, 'IN', 'India'), +('202.44.60.0', '202.44.74.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('202.44.75.0', '202.44.79.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.44.80.0', '202.44.95.255', 2147483647, 2147483647, 'PK', 'Pakistan'), +('202.44.96.0', '202.44.96.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('202.44.97.0', '202.44.97.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.44.98.0', '202.44.99.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.44.100.0', '202.44.103.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('202.44.104.0', '202.44.111.255', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('202.44.112.0', '202.44.115.255', 2147483647, 2147483647, 'IO', 'British Indian Ocean Territory'), +('202.44.116.0', '202.44.119.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.44.120.0', '202.44.127.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.44.128.0', '202.44.151.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('202.44.152.0', '202.44.191.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.44.192.0', '202.44.255.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('202.45.0.0', '202.45.0.255', 2147483647, 2147483647, 'DE', 'Germany'), +('202.45.1.0', '202.45.2.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.45.3.0', '202.45.3.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.45.4.0', '202.45.5.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.45.6.0', '202.45.7.255', 2147483647, 2147483647, 'IN', 'India'), +('202.45.8.0', '202.45.9.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.45.10.0', '202.45.11.255', 2147483647, 2147483647, 'IN', 'India'), +('202.45.12.0', '202.45.12.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.45.13.0', '202.45.13.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.45.14.0', '202.45.95.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.45.96.0', '202.45.127.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.45.128.0', '202.45.128.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.45.129.0', '202.45.129.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.45.130.0', '202.45.131.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.45.132.0', '202.45.143.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('202.45.144.0', '202.45.147.255', 2147483647, 2147483647, 'NP', 'Nepal'), +('202.45.148.0', '202.45.148.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.45.149.0', '202.45.149.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.45.150.0', '202.45.155.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.45.156.0', '202.45.157.255', 2147483647, 2147483647, 'PK', 'Pakistan'), +('202.45.158.0', '202.45.158.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.45.159.0', '202.45.159.255', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('202.45.160.0', '202.45.163.127', 2147483647, 2147483647, 'JP', 'Japan'), +('202.45.163.128', '202.45.163.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.45.164.0', '202.45.175.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.45.176.0', '202.45.255.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.46.0.0', '202.46.18.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.46.19.0', '202.46.19.255', 2147483647, 2147483647, 'IN', 'India'), +('202.46.20.0', '202.46.21.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.46.22.0', '202.46.23.255', 2147483647, 2147483647, 'IN', 'India'), +('202.46.24.0', '202.46.31.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.46.32.0', '202.46.63.255', 2147483647, 2147483647, 'CN', 'China'), +('202.46.64.0', '202.46.111.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.46.112.0', '202.46.127.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('202.46.128.0', '202.46.131.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.46.132.0', '202.46.143.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.46.144.0', '202.46.159.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.46.160.0', '202.46.191.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.46.192.0', '202.46.223.255', 2147483647, 2147483647, 'IN', 'India'), +('202.46.224.0', '202.46.239.255', 2147483647, 2147483647, 'CN', 'China'), +('202.46.240.0', '202.46.255.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.47.0.0', '202.47.7.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.47.8.0', '202.47.15.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('202.47.16.0', '202.47.31.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.47.32.0', '202.47.63.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.47.64.0', '202.47.79.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.47.96.0', '202.47.111.255', 2147483647, 2147483647, 'KH', 'Cambodia'), +('202.47.112.0', '202.47.123.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.47.124.0', '202.47.124.255', 2147483647, 2147483647, 'IN', 'India'), +('202.47.125.0', '202.47.126.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('202.47.127.0', '202.47.127.255', 2147483647, 2147483647, 'IN', 'India'), +('202.47.128.0', '202.47.129.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('202.47.130.0', '202.47.130.255', 2147483647, 2147483647, 'DE', 'Germany'), +('202.47.131.0', '202.47.133.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('202.47.134.0', '202.47.135.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.47.136.0', '202.47.141.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('202.47.142.0', '202.47.142.255', 2147483647, 2147483647, 'VN', 'Vietnam'), +('202.47.143.0', '202.47.143.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('202.47.144.0', '202.47.159.255', 2147483647, 2147483647, 'GU', 'Guam'), +('202.47.160.0', '202.47.191.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('202.47.192.0', '202.47.223.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.47.224.0', '202.47.255.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('202.48.0.0', '202.48.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.49.0.0', '202.50.48.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.50.49.0', '202.50.49.255', 2147483647, 2147483647, 'US', 'United States'), +('202.50.50.0', '202.50.83.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.50.84.0', '202.50.84.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.50.85.0', '202.50.255.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.51.0.0', '202.51.3.255', 2147483647, 2147483647, 'NP', 'Nepal'), +('202.51.4.0', '202.51.15.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.51.16.0', '202.51.31.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.51.32.0', '202.51.55.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.51.56.0', '202.51.63.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.51.64.0', '202.51.95.255', 2147483647, 2147483647, 'NP', 'Nepal'), +('202.51.96.0', '202.51.127.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.51.160.0', '202.51.175.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.51.176.0', '202.51.191.255', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('202.51.192.0', '202.51.239.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.51.240.0', '202.51.247.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.51.248.0', '202.51.251.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.51.252.0', '202.51.255.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.52.0.0', '202.52.1.255', 2147483647, 2147483647, 'NP', 'Nepal'), +('202.52.2.0', '202.52.3.255', 2147483647, 2147483647, 'IN', 'India'), +('202.52.4.0', '202.52.7.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('202.52.8.0', '202.52.15.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.52.16.0', '202.52.31.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.52.64.0', '202.52.96.191', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.52.96.192', '202.52.96.223', 2147483647, 2147483647, 'TW', 'Taiwan'), +('202.52.96.224', '202.52.105.127', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.52.105.128', '202.52.105.159', 2147483647, 2147483647, 'TW', 'Taiwan'), +('202.52.105.160', '202.52.127.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.52.160.0', '202.52.175.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('202.52.176.0', '202.52.191.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.52.192.0', '202.52.223.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.52.224.0', '202.53.3.255', 2147483647, 2147483647, 'NP', 'Nepal'), +('202.53.4.0', '202.53.7.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.53.8.0', '202.53.15.255', 2147483647, 2147483647, 'IN', 'India'), +('202.53.16.0', '202.53.31.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.53.32.0', '202.53.63.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.53.64.0', '202.53.111.255', 2147483647, 2147483647, 'IN', 'India'), +('202.53.112.0', '202.53.127.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.53.128.0', '202.53.159.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.53.160.0', '202.53.175.255', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('202.53.176.0', '202.53.191.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.53.192.0', '202.53.207.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.53.208.0', '202.53.223.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.53.224.0', '202.53.255.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.54.0.0', '202.55.31.255', 2147483647, 2147483647, 'IN', 'India'), +('202.55.32.0', '202.55.63.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.55.64.0', '202.55.95.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.55.96.0', '202.55.111.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.55.112.0', '202.55.127.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.55.128.0', '202.55.131.255', 2147483647, 2147483647, 'PK', 'Pakistan'), +('202.55.132.0', '202.55.135.255', 2147483647, 2147483647, 'VN', 'Vietnam'), +('202.55.136.0', '202.55.139.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.55.140.0', '202.55.143.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('202.55.144.0', '202.55.159.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.55.160.0', '202.55.175.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.55.176.0', '202.55.191.255', 2147483647, 2147483647, 'MN', 'Mongolia'), +('202.55.192.0', '202.55.223.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.55.224.0', '202.55.229.95', 2147483647, 2147483647, 'TW', 'Taiwan'), +('202.55.229.96', '202.55.229.111', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.55.229.112', '202.55.229.175', 2147483647, 2147483647, 'TW', 'Taiwan'), +('202.55.229.176', '202.55.229.191', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.55.229.192', '202.55.255.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('202.56.0.0', '202.56.3.255', 2147483647, 2147483647, 'IN', 'India'), +('202.56.4.0', '202.56.7.255', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('202.56.8.0', '202.56.12.63', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.56.12.64', '202.56.12.79', 2147483647, 2147483647, 'US', 'United States'), +('202.56.12.80', '202.56.12.95', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.56.12.96', '202.56.12.127', 2147483647, 2147483647, 'US', 'United States'), +('202.56.12.128', '202.56.15.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.56.16.0', '202.56.31.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.56.32.0', '202.56.63.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.56.64.0', '202.56.79.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.56.80.0', '202.56.95.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('202.56.96.0', '202.56.127.255', 2147483647, 2147483647, 'IN', 'India'), +('202.56.128.0', '202.56.159.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.56.160.0', '202.56.175.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.56.176.0', '202.56.191.255', 2147483647, 2147483647, 'AF', 'Afghanistan'), +('202.56.192.0', '202.56.255.255', 2147483647, 2147483647, 'IN', 'India'), +('202.57.0.0', '202.57.31.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.57.32.0', '202.57.127.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('202.57.128.0', '202.57.191.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('202.57.192.0', '202.57.223.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.57.224.0', '202.57.239.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.58.0.0', '202.58.0.255', 2147483647, 2147483647, 'LA', 'Lao People''s Democratic Republic'), +('202.58.1.0', '202.58.1.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.58.2.0', '202.58.2.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('202.58.3.0', '202.58.3.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.58.4.0', '202.58.7.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.58.8.0', '202.58.10.95', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.58.10.96', '202.58.10.111', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.58.10.112', '202.58.15.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.58.16.0', '202.58.31.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.58.32.0', '202.58.63.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.58.64.0', '202.58.79.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.58.80.0', '202.58.95.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('202.58.96.0', '202.58.99.255', 2147483647, 2147483647, 'KH', 'Cambodia'), +('202.58.100.0', '202.58.101.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.58.102.0', '202.58.103.255', 2147483647, 2147483647, 'IN', 'India'), +('202.58.104.0', '202.58.107.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.58.108.0', '202.58.111.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('202.58.116.0', '202.58.119.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.58.120.0', '202.58.123.255', 2147483647, 2147483647, 'IN', 'India'), +('202.58.124.0', '202.58.124.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.58.125.0', '202.58.125.255', 2147483647, 2147483647, 'IN', 'India'), +('202.58.126.0', '202.58.126.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('202.58.127.0', '202.58.127.255', 2147483647, 2147483647, 'IN', 'India'), +('202.58.128.0', '202.58.131.255', 2147483647, 2147483647, 'PG', 'Papua New Guinea'), +('202.58.132.0', '202.58.135.255', 2147483647, 2147483647, 'IN', 'India'), +('202.58.136.0', '202.58.143.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.58.144.0', '202.58.159.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.58.160.0', '202.58.183.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.58.184.0', '202.58.191.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.58.192.0', '202.58.223.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.58.224.0', '202.58.255.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('202.59.0.0', '202.59.0.255', 2147483647, 2147483647, 'TO', 'Tonga'), +('202.59.1.0', '202.59.1.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.59.2.0', '202.59.3.255', 2147483647, 2147483647, 'IN', 'India'), +('202.59.4.0', '202.59.7.255', 2147483647, 2147483647, 'NU', 'Niue'), +('202.59.16.0', '202.59.63.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.59.64.0', '202.59.95.255', 2147483647, 2147483647, 'PK', 'Pakistan'), +('202.59.96.0', '202.59.111.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.59.112.0', '202.59.127.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.59.128.0', '202.59.143.255', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('202.59.144.0', '202.59.151.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.59.152.0', '202.59.159.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.59.160.0', '202.59.175.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.59.176.0', '202.59.191.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.59.192.0', '202.59.207.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.59.208.0', '202.59.223.255', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('202.60.0.0', '202.60.7.255', 2147483647, 2147483647, 'MU', 'Mauritius'), +('202.60.8.0', '202.60.15.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('202.60.16.0', '202.60.47.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.60.48.0', '202.60.55.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.60.56.0', '202.60.59.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('202.60.60.0', '202.60.63.255', 2147483647, 2147483647, 'IN', 'India'), +('202.60.64.0', '202.60.95.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.60.104.0', '202.60.111.255', 2147483647, 2147483647, 'VN', 'Vietnam'), +('202.60.112.0', '202.60.127.255', 2147483647, 2147483647, 'CN', 'China'), +('202.60.128.0', '202.60.159.255', 2147483647, 2147483647, 'IN', 'India'), +('202.60.160.0', '202.60.191.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.60.192.0', '202.60.207.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('202.60.208.0', '202.60.223.255', 2147483647, 2147483647, 'IN', 'India'), +('202.60.224.0', '202.60.255.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.61.0.0', '202.61.0.255', 2147483647, 2147483647, 'PG', 'Papua New Guinea'), +('202.61.1.0', '202.61.1.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.61.2.0', '202.61.3.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.61.4.0', '202.61.7.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.61.8.0', '202.61.11.255', 2147483647, 2147483647, 'IN', 'India'), +('202.61.12.0', '202.61.15.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.61.16.0', '202.61.31.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.61.32.0', '202.61.63.255', 2147483647, 2147483647, 'PK', 'Pakistan'), +('202.61.64.0', '202.61.95.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('202.61.128.0', '202.61.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.62.0.0', '202.62.7.255', 2147483647, 2147483647, 'FJ', 'Fiji'), +('202.62.8.0', '202.62.31.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.62.32.0', '202.62.63.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.62.64.0', '202.62.95.255', 2147483647, 2147483647, 'IN', 'India'), +('202.62.96.0', '202.62.111.255', 2147483647, 2147483647, 'LA', 'Lao People''s Democratic Republic'), +('202.62.116.0', '202.62.117.255', 2147483647, 2147483647, 'IN', 'India'), +('202.62.118.0', '202.62.127.255', 2147483647, 2147483647, 'FJ', 'Fiji'), +('202.62.128.0', '202.62.159.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.62.160.0', '202.62.191.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.62.192.0', '202.62.223.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.62.224.0', '202.62.239.255', 2147483647, 2147483647, 'IN', 'India'), +('202.62.252.0', '202.62.252.255', 2147483647, 2147483647, 'IN', 'India'), +('202.62.253.0', '202.62.253.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.62.254.0', '202.62.254.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.62.255.0', '202.62.255.255', 2147483647, 2147483647, 'FJ', 'Fiji'), +('202.63.0.0', '202.63.31.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.63.32.0', '202.63.79.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.63.80.0', '202.63.95.255', 2147483647, 2147483647, 'PK', 'Pakistan'), +('202.63.96.0', '202.63.127.255', 2147483647, 2147483647, 'IN', 'India'), +('202.63.128.0', '202.63.159.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.63.160.0', '202.63.191.255', 2147483647, 2147483647, 'IN', 'India'), +('202.63.192.0', '202.63.223.255', 2147483647, 2147483647, 'PK', 'Pakistan'), +('202.63.224.0', '202.63.239.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.63.240.0', '202.63.247.255', 2147483647, 2147483647, 'NP', 'Nepal'), +('202.63.248.0', '202.63.251.255', 2147483647, 2147483647, 'CN', 'China'), +('202.63.252.0', '202.63.253.255', 2147483647, 2147483647, 'IN', 'India'), +('202.63.254.0', '202.63.255.255', 2147483647, 2147483647, 'SB', 'Solomon Islands'), +('202.64.0.0', '202.65.9.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.65.10.0', '202.65.11.255', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('202.65.12.0', '202.65.31.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.65.32.0', '202.65.63.255', 2147483647, 2147483647, 'CK', 'Cook Islands'), +('202.65.64.0', '202.65.95.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.65.96.0', '202.65.111.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.65.112.0', '202.65.127.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.65.128.0', '202.65.159.255', 2147483647, 2147483647, 'IN', 'India'), +('202.65.160.0', '202.65.167.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.65.168.0', '202.65.175.255', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('202.65.176.0', '202.65.191.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('202.65.192.0', '202.65.223.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.65.224.0', '202.65.239.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.65.240.0', '202.65.247.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.65.248.0', '202.67.3.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.67.4.0', '202.67.7.255', 2147483647, 2147483647, 'IN', 'India'), +('202.67.8.0', '202.67.15.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.67.16.0', '202.67.31.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.67.32.0', '202.67.47.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.67.48.0', '202.67.63.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.67.64.0', '202.67.127.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.67.128.0', '202.68.63.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.68.64.0', '202.68.79.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.68.80.0', '202.68.95.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.68.96.0', '202.68.127.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.68.128.0', '202.68.159.255', 2147483647, 2147483647, 'IN', 'India'), +('202.68.160.0', '202.68.175.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.68.176.0', '202.68.191.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.68.192.0', '202.68.207.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.68.208.0', '202.68.223.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.68.224.0', '202.68.255.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('202.69.0.0', '202.69.3.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.69.4.0', '202.69.7.255', 2147483647, 2147483647, 'CN', 'China'), +('202.69.8.0', '202.69.15.255', 2147483647, 2147483647, 'PK', 'Pakistan'), +('202.69.16.0', '202.69.31.255', 2147483647, 2147483647, 'CN', 'China'), +('202.69.32.0', '202.69.63.255', 2147483647, 2147483647, 'PK', 'Pakistan'), +('202.69.64.0', '202.69.95.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.69.96.0', '202.69.111.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.69.112.0', '202.69.127.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.69.128.0', '202.69.131.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.69.132.0', '202.69.135.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.69.136.0', '202.69.143.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('202.69.144.0', '202.69.159.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.69.160.0', '202.69.191.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('202.69.192.0', '202.69.207.255', 2147483647, 2147483647, 'LK', 'Sri Lanka'), +('202.69.208.0', '202.69.223.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.69.224.0', '202.69.239.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.69.240.0', '202.69.255.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.70.0.0', '202.70.31.255', 2147483647, 2147483647, 'CN', 'China'), +('202.70.32.0', '202.70.47.255', 2147483647, 2147483647, 'MN', 'Mongolia'), +('202.70.48.0', '202.70.63.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.70.64.0', '202.70.95.255', 2147483647, 2147483647, 'NP', 'Nepal'), +('202.70.112.0', '202.70.127.255', 2147483647, 2147483647, 'AS', 'American Samoa'), +('202.70.144.0', '202.70.159.255', 2147483647, 2147483647, 'PK', 'Pakistan'), +('202.70.160.0', '202.70.160.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.70.161.0', '202.70.175.255', 2147483647, 2147483647, 'CN', 'China'), +('202.70.176.0', '202.70.191.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.70.192.0', '202.70.207.255', 2147483647, 2147483647, 'IN', 'India'), +('202.70.208.0', '202.70.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.71.0.0', '202.71.31.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.71.32.0', '202.71.47.255', 2147483647, 2147483647, 'KH', 'Cambodia'), +('202.71.48.0', '202.71.95.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.71.96.0', '202.71.111.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('202.71.112.0', '202.71.127.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('202.71.128.0', '202.71.159.255', 2147483647, 2147483647, 'IN', 'India'), +('202.71.160.0', '202.71.175.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.71.176.0', '202.71.191.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('202.71.192.0', '202.72.31.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.72.32.0', '202.72.39.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.72.40.0', '202.72.47.255', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('202.72.48.0', '202.72.79.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.72.80.0', '202.72.95.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.72.96.0', '202.72.96.255', 2147483647, 2147483647, 'KH', 'Cambodia'), +('202.72.97.0', '202.72.97.255', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('202.72.98.0', '202.72.98.255', 2147483647, 2147483647, 'NP', 'Nepal'), +('202.72.99.0', '202.72.99.7', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('202.72.99.8', '202.72.99.255', 2147483647, 2147483647, 'US', 'United States'), +('202.72.100.0', '202.72.103.255', 2147483647, 2147483647, 'SC', 'Seychelles'), +('202.72.104.0', '202.72.108.255', 2147483647, 2147483647, 'US', 'United States'), +('202.72.109.0', '202.72.109.15', 2147483647, 2147483647, 'TK', 'Tokelau'), +('202.72.109.16', '202.72.109.31', 2147483647, 2147483647, 'US', 'United States'), +('202.72.109.32', '202.72.109.47', 2147483647, 2147483647, 'TK', 'Tokelau'), +('202.72.109.48', '202.72.109.255', 2147483647, 2147483647, 'US', 'United States'), +('202.72.110.0', '202.72.110.31', 2147483647, 2147483647, 'SC', 'Seychelles'), +('202.72.110.32', '202.72.110.63', 2147483647, 2147483647, 'US', 'United States'), +('202.72.110.64', '202.72.110.95', 2147483647, 2147483647, 'MG', 'Madagascar'), +('202.72.110.96', '202.72.110.127', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('202.72.110.128', '202.72.110.191', 2147483647, 2147483647, 'PK', 'Pakistan'), +('202.72.110.192', '202.72.110.255', 2147483647, 2147483647, 'US', 'United States'), +('202.72.111.0', '202.72.111.255', 2147483647, 2147483647, 'KH', 'Cambodia'), +('202.72.112.0', '202.72.127.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('202.72.128.0', '202.72.191.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.72.192.0', '202.72.223.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.72.224.0', '202.72.231.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.72.232.0', '202.72.239.255', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('202.72.240.0', '202.72.247.255', 2147483647, 2147483647, 'MN', 'Mongolia'), +('202.72.248.0', '202.72.251.255', 2147483647, 2147483647, 'IN', 'India'), +('202.72.252.0', '202.73.3.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.73.4.0', '202.73.7.255', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('202.73.8.0', '202.73.15.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('202.73.16.0', '202.73.31.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.73.32.0', '202.73.63.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.73.64.0', '202.73.95.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.73.96.0', '202.73.127.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.73.128.0', '202.73.131.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.73.132.0', '202.73.135.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('202.73.136.0', '202.73.143.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.73.160.0', '202.73.191.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('202.73.192.0', '202.73.207.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.73.208.0', '202.73.223.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.73.224.0', '202.73.239.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.73.240.0', '202.74.3.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.74.4.0', '202.74.7.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.74.8.0', '202.74.15.255', 2147483647, 2147483647, 'CN', 'China'), +('202.74.16.0', '202.74.31.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.74.64.0', '202.74.71.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.74.72.0', '202.74.79.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.74.80.0', '202.74.127.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.74.128.0', '202.74.191.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.74.192.0', '202.74.231.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.74.232.0', '202.74.239.255', 2147483647, 2147483647, 'PK', 'Pakistan'), +('202.74.240.0', '202.74.247.255', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('202.74.248.0', '202.74.251.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('202.74.252.0', '202.74.252.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.74.253.0', '202.74.253.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.74.254.0', '202.75.3.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.75.4.0', '202.75.7.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('202.75.8.0', '202.75.15.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.75.16.0', '202.75.31.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.75.32.0', '202.75.63.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('202.75.64.0', '202.75.95.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.75.96.0', '202.75.111.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.75.112.0', '202.75.127.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.75.128.0', '202.75.191.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('202.75.192.0', '202.75.207.255', 2147483647, 2147483647, 'IN', 'India'), +('202.75.208.0', '202.75.223.255', 2147483647, 2147483647, 'CN', 'China'), +('202.75.224.0', '202.75.239.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.75.240.0', '202.75.247.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('202.75.248.0', '202.75.251.255', 2147483647, 2147483647, 'MO', 'Macau'), +('202.75.252.0', '202.76.127.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.76.128.0', '202.76.191.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.76.192.0', '202.76.223.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.76.224.0', '202.76.239.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('202.76.240.0', '202.76.247.255', 2147483647, 2147483647, 'US', 'United States'), +('202.76.248.0', '202.76.251.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.76.252.0', '202.77.63.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.77.64.0', '202.77.79.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.77.80.0', '202.77.95.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.77.96.0', '202.77.127.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.77.128.0', '202.77.135.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.77.136.0', '202.77.136.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.77.137.0', '202.77.137.255', 2147483647, 2147483647, 'IN', 'India'), +('202.77.138.0', '202.77.139.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('202.77.140.0', '202.77.170.47', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.77.170.48', '202.77.170.63', 2147483647, 2147483647, 'CN', 'China'), +('202.77.170.64', '202.78.7.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.78.8.0', '202.78.15.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('202.78.16.0', '202.78.31.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.78.32.0', '202.78.47.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.78.48.0', '202.78.63.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.78.64.0', '202.78.127.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('202.78.128.0', '202.78.159.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.78.160.0', '202.78.175.255', 2147483647, 2147483647, 'IN', 'India'), +('202.78.176.0', '202.78.191.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.78.192.0', '202.78.207.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.78.208.0', '202.78.223.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.78.224.0', '202.78.231.255', 2147483647, 2147483647, 'VN', 'Vietnam'), +('202.78.232.0', '202.78.239.255', 2147483647, 2147483647, 'IN', 'India'), +('202.78.240.0', '202.78.247.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.78.248.0', '202.78.250.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.78.251.0', '202.78.251.255', 2147483647, 2147483647, 'IN', 'India'), +('202.78.252.0', '202.78.255.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.79.0.0', '202.79.15.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.79.16.0', '202.79.23.255', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('202.79.24.0', '202.79.31.255', 2147483647, 2147483647, 'KH', 'Cambodia'), +('202.79.32.0', '202.79.63.255', 2147483647, 2147483647, 'NP', 'Nepal'), +('202.79.64.0', '202.79.127.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.79.128.0', '202.79.159.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.79.160.0', '202.79.175.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.79.176.0', '202.79.223.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.79.224.0', '202.79.231.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.79.232.0', '202.79.239.255', 2147483647, 2147483647, 'VN', 'Vietnam'), +('202.79.240.0', '202.79.247.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.79.248.0', '202.79.251.255', 2147483647, 2147483647, 'IN', 'India'), +('202.79.252.0', '202.80.31.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.80.32.0', '202.80.47.255', 2147483647, 2147483647, 'VU', 'Vanuatu'), +('202.80.48.0', '202.80.63.255', 2147483647, 2147483647, 'IN', 'India'), +('202.80.64.0', '202.80.95.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.80.96.0', '202.80.103.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.80.104.0', '202.80.111.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('202.80.112.0', '202.80.127.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.80.128.0', '202.80.143.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.80.144.0', '202.80.151.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.80.152.0', '202.80.159.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('202.80.160.0', '202.80.168.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.80.169.0', '202.80.169.255', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('202.80.170.0', '202.80.170.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.80.171.0', '202.80.171.63', 2147483647, 2147483647, 'SO', 'Somalia'), +('202.80.171.64', '202.80.175.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.80.176.0', '202.80.191.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.80.192.0', '202.80.195.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.80.208.0', '202.80.223.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.80.224.0', '202.80.255.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('202.81.0.0', '202.81.3.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.81.4.0', '202.81.7.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.81.8.0', '202.81.15.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.81.16.0', '202.81.31.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.81.32.0', '202.81.63.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.81.64.0', '202.81.79.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.81.80.0', '202.81.95.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.81.96.0', '202.81.127.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.81.128.0', '202.81.159.255', 2147483647, 2147483647, 'IN', 'India'), +('202.81.160.0', '202.81.191.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('202.81.192.0', '202.81.207.255', 2147483647, 2147483647, 'IN', 'India'), +('202.81.208.0', '202.81.223.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.81.224.0', '202.83.15.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.83.16.0', '202.83.63.255', 2147483647, 2147483647, 'IN', 'India'), +('202.83.64.0', '202.83.95.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.83.96.0', '202.83.111.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.83.112.0', '202.83.119.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.83.120.0', '202.83.127.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('202.83.128.0', '202.83.159.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.83.160.0', '202.83.175.255', 2147483647, 2147483647, 'PK', 'Pakistan'), +('202.83.176.0', '202.83.183.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.83.184.0', '202.83.191.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.83.192.0', '202.83.223.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.83.224.0', '202.83.239.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.83.240.0', '202.83.247.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.83.248.0', '202.83.251.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.83.252.0', '202.84.17.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.84.18.0', '202.84.19.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.84.20.0', '202.84.23.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('202.84.32.0', '202.84.47.255', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('202.84.48.0', '202.84.63.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.84.64.0', '202.84.71.255', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('202.84.72.0', '202.84.79.255', 2147483647, 2147483647, 'KH', 'Cambodia'), +('202.84.80.0', '202.84.95.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.84.96.0', '202.84.127.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('202.84.128.0', '202.84.221.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.84.222.0', '202.84.223.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('202.84.224.0', '202.84.239.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.84.240.0', '202.84.241.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('202.84.242.0', '202.84.245.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.84.246.0', '202.84.246.255', 2147483647, 2147483647, 'PK', 'Pakistan'), +('202.84.247.0', '202.84.247.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('202.84.248.0', '202.85.207.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.85.208.0', '202.85.223.255', 2147483647, 2147483647, 'CN', 'China'), +('202.85.224.0', '202.85.239.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.85.240.0', '202.85.247.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.85.248.0', '202.86.3.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.86.4.0', '202.86.7.255', 2147483647, 2147483647, 'IN', 'India'), +('202.86.8.0', '202.86.15.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('202.86.16.0', '202.86.31.255', 2147483647, 2147483647, 'AF', 'Afghanistan'), +('202.86.32.0', '202.86.55.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.86.56.0', '202.86.63.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.86.64.0', '202.86.95.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.86.96.0', '202.86.111.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.86.112.0', '202.86.119.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.86.120.0', '202.86.127.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.86.128.0', '202.86.189.255', 2147483647, 2147483647, 'MO', 'Macau'), +('202.86.190.0', '202.86.191.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.86.192.0', '202.86.207.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('202.86.208.0', '202.86.215.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.86.216.0', '202.86.223.255', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('202.86.224.0', '202.86.247.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.86.248.0', '202.86.248.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.86.249.0', '202.86.249.255', 2147483647, 2147483647, 'PK', 'Pakistan'), +('202.86.250.0', '202.86.250.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.86.251.0', '202.86.251.255', 2147483647, 2147483647, 'IN', 'India'), +('202.87.0.0', '202.87.3.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.87.4.0', '202.87.31.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.87.32.0', '202.87.63.255', 2147483647, 2147483647, 'IN', 'India'), +('202.87.64.0', '202.87.79.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.87.80.0', '202.87.127.255', 2147483647, 2147483647, 'PK', 'Pakistan'), +('202.87.128.0', '202.87.159.255', 2147483647, 2147483647, 'NC', 'New Caledonia'), +('202.87.160.0', '202.87.175.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.87.176.0', '202.87.207.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.87.208.0', '202.87.211.255', 2147483647, 2147483647, 'WS', 'Samoa'), +('202.87.212.0', '202.87.215.255', 2147483647, 2147483647, 'VN', 'Vietnam'), +('202.87.216.0', '202.87.223.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('202.87.224.0', '202.87.239.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.87.240.0', '202.87.255.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.88.0.0', '202.88.31.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.88.32.0', '202.88.47.255', 2147483647, 2147483647, 'PK', 'Pakistan'), +('202.88.48.0', '202.88.63.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.88.64.0', '202.88.95.255', 2147483647, 2147483647, 'MP', 'Northern Mariana Islands'), +('202.88.96.0', '202.88.127.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.88.128.0', '202.88.191.255', 2147483647, 2147483647, 'IN', 'India'), +('202.88.192.0', '202.88.199.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.88.200.0', '202.88.207.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.88.208.0', '202.88.255.255', 2147483647, 2147483647, 'IN', 'India'), +('202.89.0.0', '202.89.3.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.89.4.0', '202.89.7.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.89.8.0', '202.89.15.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('202.89.16.0', '202.89.16.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.89.17.0', '202.89.17.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.89.18.0', '202.89.18.15', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.89.18.16', '202.89.18.31', 2147483647, 2147483647, 'JP', 'Japan'), +('202.89.18.32', '202.89.18.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.89.19.0', '202.89.19.255', 2147483647, 2147483647, 'JP', 'Japan'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('202.89.20.0', '202.89.20.127', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.89.20.128', '202.89.20.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.89.21.0', '202.89.21.255', 2147483647, 2147483647, 'CN', 'China'), +('202.89.22.0', '202.89.23.15', 2147483647, 2147483647, 'JP', 'Japan'), +('202.89.23.16', '202.89.23.23', 2147483647, 2147483647, 'AS', 'American Samoa'), +('202.89.23.24', '202.89.23.191', 2147483647, 2147483647, 'JP', 'Japan'), +('202.89.23.192', '202.89.23.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.89.24.0', '202.89.31.255', 2147483647, 2147483647, 'BT', 'Bhutan'), +('202.89.32.0', '202.89.63.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.89.64.0', '202.89.79.255', 2147483647, 2147483647, 'IN', 'India'), +('202.89.80.0', '202.89.95.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.89.96.0', '202.89.99.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('202.89.100.0', '202.89.103.255', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('202.89.104.0', '202.89.111.255', 2147483647, 2147483647, 'IN', 'India'), +('202.89.112.0', '202.89.115.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.89.116.0', '202.89.117.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.89.118.0', '202.89.119.255', 2147483647, 2147483647, 'IN', 'India'), +('202.89.120.0', '202.89.123.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.89.124.0', '202.89.127.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('202.89.128.0', '202.89.159.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.89.160.0', '202.89.191.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.89.192.0', '202.89.207.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('202.89.208.0', '202.89.223.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.89.224.0', '202.89.247.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.89.248.0', '202.89.251.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('202.89.252.0', '202.89.255.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.90.0.0', '202.90.3.255', 2147483647, 2147483647, 'CN', 'China'), +('202.90.4.0', '202.90.7.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('202.90.8.0', '202.90.15.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.90.16.0', '202.90.31.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.90.34.0', '202.90.35.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.90.36.0', '202.90.36.255', 2147483647, 2147483647, 'BN', 'Brunei Darussalam'), +('202.90.37.0', '202.90.39.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.90.48.0', '202.90.55.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.90.56.0', '202.90.63.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('202.90.64.0', '202.90.95.255', 2147483647, 2147483647, 'PF', 'French Polynesia'), +('202.90.96.0', '202.90.111.255', 2147483647, 2147483647, 'IN', 'India'), +('202.90.112.0', '202.90.127.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('202.90.128.0', '202.90.159.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('202.90.160.0', '202.90.175.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.90.176.0', '202.90.191.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.90.192.0', '202.90.192.255', 2147483647, 2147483647, 'IN', 'India'), +('202.90.193.0', '202.90.193.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.90.194.0', '202.90.195.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.90.196.0', '202.90.197.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.90.198.0', '202.90.199.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.90.200.0', '202.90.203.255', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('202.90.204.0', '202.90.204.255', 2147483647, 2147483647, 'IN', 'India'), +('202.90.205.0', '202.90.205.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('202.90.206.0', '202.90.207.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.90.208.0', '202.90.223.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.90.224.0', '202.90.239.255', 2147483647, 2147483647, 'CN', 'China'), +('202.90.240.0', '202.90.247.255', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('202.90.248.0', '202.90.251.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.90.252.0', '202.91.3.255', 2147483647, 2147483647, 'CN', 'China'), +('202.91.4.0', '202.91.7.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.91.8.0', '202.91.15.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.91.16.0', '202.91.23.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('202.91.24.0', '202.91.31.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.91.32.0', '202.91.38.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.91.39.0', '202.91.39.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.91.40.0', '202.91.47.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.91.48.0', '202.91.63.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.91.64.0', '202.91.95.255', 2147483647, 2147483647, 'IN', 'India'), +('202.91.112.0', '202.91.127.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.91.128.0', '202.91.131.255', 2147483647, 2147483647, 'CN', 'China'), +('202.91.132.0', '202.91.143.255', 2147483647, 2147483647, 'IN', 'India'), +('202.91.144.0', '202.91.159.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.91.160.0', '202.91.175.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('202.91.176.0', '202.91.191.255', 2147483647, 2147483647, 'CN', 'China'), +('202.91.192.0', '202.91.207.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.91.208.0', '202.91.223.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.91.224.0', '202.92.3.255', 2147483647, 2147483647, 'CN', 'China'), +('202.92.4.0', '202.92.7.255', 2147483647, 2147483647, 'VN', 'Vietnam'), +('202.92.8.0', '202.92.15.255', 2147483647, 2147483647, 'IN', 'India'), +('202.92.16.0', '202.92.31.255', 2147483647, 2147483647, 'PK', 'Pakistan'), +('202.92.32.0', '202.92.47.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.92.48.0', '202.92.63.255', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('202.92.64.0', '202.92.127.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.92.128.0', '202.92.159.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('202.92.160.0', '202.92.191.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.92.192.0', '202.92.207.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.92.208.0', '202.92.223.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.92.224.0', '202.92.239.255', 2147483647, 2147483647, 'IN', 'India'), +('202.92.240.0', '202.92.251.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.92.252.0', '202.93.3.255', 2147483647, 2147483647, 'CN', 'China'), +('202.93.4.0', '202.93.5.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.93.6.0', '202.93.7.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('202.93.8.0', '202.93.15.255', 2147483647, 2147483647, 'KH', 'Cambodia'), +('202.93.16.0', '202.93.47.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.93.48.0', '202.93.63.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('202.93.64.0', '202.93.95.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.93.96.0', '202.93.111.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.93.112.0', '202.93.143.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.93.144.0', '202.93.151.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.93.152.0', '202.93.152.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.93.153.0', '202.93.153.255', 2147483647, 2147483647, 'KH', 'Cambodia'), +('202.93.154.0', '202.93.154.255', 2147483647, 2147483647, 'IN', 'India'), +('202.93.155.0', '202.93.155.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.93.156.0', '202.93.159.255', 2147483647, 2147483647, 'VN', 'Vietnam'), +('202.93.160.0', '202.93.191.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.93.192.0', '202.93.207.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.93.208.0', '202.93.223.255', 2147483647, 2147483647, 'BN', 'Brunei Darussalam'), +('202.93.224.0', '202.93.247.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.93.248.0', '202.93.251.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.93.252.0', '202.93.255.255', 2147483647, 2147483647, 'CN', 'China'), +('202.94.32.0', '202.94.47.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.94.48.0', '202.94.63.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.94.96.0', '202.94.127.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.94.128.0', '202.94.159.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.94.160.0', '202.94.175.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('202.94.176.0', '202.94.223.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.94.224.0', '202.94.239.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.94.240.0', '202.94.255.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('202.95.0.0', '202.95.31.255', 2147483647, 2147483647, 'CN', 'China'), +('202.95.32.0', '202.95.63.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.95.64.0', '202.95.121.223', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.95.121.224', '202.95.121.239', 2147483647, 2147483647, 'JP', 'Japan'), +('202.95.121.240', '202.95.127.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.95.128.0', '202.95.159.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.95.160.0', '202.95.191.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.95.192.0', '202.95.207.255', 2147483647, 2147483647, 'PG', 'Papua New Guinea'), +('202.95.208.0', '202.95.223.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.95.224.0', '202.95.239.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('202.95.240.0', '202.95.247.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.95.248.0', '202.95.249.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.95.250.0', '202.95.250.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.95.251.0', '202.95.251.255', 2147483647, 2147483647, 'IN', 'India'), +('202.95.252.0', '202.120.24.223', 2147483647, 2147483647, 'CN', 'China'), +('202.120.24.224', '202.120.24.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.120.25.0', '202.122.7.255', 2147483647, 2147483647, 'CN', 'China'), +('202.122.8.0', '202.122.15.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.122.16.0', '202.122.23.255', 2147483647, 2147483647, 'IN', 'India'), +('202.122.24.0', '202.122.31.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.122.32.0', '202.122.39.255', 2147483647, 2147483647, 'CN', 'China'), +('202.122.40.0', '202.122.47.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('202.122.48.0', '202.122.63.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.122.64.0', '202.122.95.255', 2147483647, 2147483647, 'CN', 'China'), +('202.122.96.0', '202.122.111.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.122.112.0', '202.122.119.255', 2147483647, 2147483647, 'CN', 'China'), +('202.122.120.0', '202.122.127.255', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('202.122.128.0', '202.122.128.255', 2147483647, 2147483647, 'CN', 'China'), +('202.122.129.0', '202.122.129.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.122.130.0', '202.122.131.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('202.122.132.0', '202.122.132.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.122.133.0', '202.122.133.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('202.122.134.0', '202.122.135.255', 2147483647, 2147483647, 'IN', 'India'), +('202.122.136.0', '202.122.143.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.122.144.0', '202.122.159.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('202.122.160.0', '202.122.175.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.122.176.0', '202.122.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.123.0.0', '202.123.31.255', 2147483647, 2147483647, 'MU', 'Mauritius'), +('202.123.32.0', '202.123.47.255', 2147483647, 2147483647, 'IN', 'India'), +('202.123.48.0', '202.123.63.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('202.123.64.0', '202.123.95.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.123.96.0', '202.123.111.255', 2147483647, 2147483647, 'CN', 'China'), +('202.123.112.0', '202.123.127.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.123.128.0', '202.123.159.255', 2147483647, 2147483647, 'GU', 'Guam'), +('202.123.160.0', '202.123.175.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.123.176.0', '202.123.183.255', 2147483647, 2147483647, 'LA', 'Lao People''s Democratic Republic'), +('202.123.184.0', '202.123.191.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.123.192.0', '202.123.223.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.123.224.0', '202.123.239.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.123.240.0', '202.123.255.255', 2147483647, 2147483647, 'PK', 'Pakistan'), +('202.124.0.0', '202.124.15.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.124.24.0', '202.124.27.255', 2147483647, 2147483647, 'CN', 'China'), +('202.124.28.0', '202.124.31.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.124.32.0', '202.124.47.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.124.48.0', '202.124.63.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.124.64.0', '202.124.95.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.124.96.0', '202.124.127.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.124.128.0', '202.124.159.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('202.124.160.0', '202.124.191.255', 2147483647, 2147483647, 'LK', 'Sri Lanka'), +('202.124.208.0', '202.124.223.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.124.224.0', '202.124.239.255', 2147483647, 2147483647, 'PW', 'Palau'), +('202.124.240.0', '202.124.247.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.124.248.0', '202.124.255.255', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('202.125.0.0', '202.125.47.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.125.48.0', '202.125.63.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.125.64.0', '202.125.79.255', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('202.125.112.0', '202.125.159.255', 2147483647, 2147483647, 'PK', 'Pakistan'), +('202.125.160.0', '202.125.175.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.125.176.0', '202.125.191.255', 2147483647, 2147483647, 'CN', 'China'), +('202.125.192.0', '202.125.255.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.126.0.0', '202.126.1.183', 2147483647, 2147483647, 'JP', 'Japan'), +('202.126.1.184', '202.126.1.191', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.126.1.192', '202.126.2.31', 2147483647, 2147483647, 'JP', 'Japan'), +('202.126.2.32', '202.126.2.47', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.126.2.48', '202.126.2.127', 2147483647, 2147483647, 'JP', 'Japan'), +('202.126.2.128', '202.126.2.143', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.126.2.144', '202.126.5.207', 2147483647, 2147483647, 'JP', 'Japan'), +('202.126.5.208', '202.126.5.223', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.126.5.224', '202.126.7.15', 2147483647, 2147483647, 'JP', 'Japan'), +('202.126.7.16', '202.126.7.23', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.126.7.24', '202.126.8.111', 2147483647, 2147483647, 'JP', 'Japan'), +('202.126.8.112', '202.126.8.127', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.126.8.128', '202.126.10.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.126.11.0', '202.126.11.23', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.126.11.24', '202.126.11.31', 2147483647, 2147483647, 'JP', 'Japan'), +('202.126.11.32', '202.126.11.79', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.126.11.80', '202.126.31.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.126.32.0', '202.126.47.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('202.126.48.0', '202.126.63.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.126.64.0', '202.126.79.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('202.126.80.0', '202.126.87.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.126.88.0', '202.126.95.255', 2147483647, 2147483647, 'MN', 'Mongolia'), +('202.126.96.0', '202.126.111.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.126.112.0', '202.126.119.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('202.126.120.0', '202.126.127.255', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('202.126.128.0', '202.126.191.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.126.192.0', '202.126.207.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.126.208.0', '202.126.223.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.126.224.0', '202.126.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.127.0.0', '202.127.7.255', 2147483647, 2147483647, 'CN', 'China'), +('202.127.8.0', '202.127.11.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.127.12.0', '202.127.31.255', 2147483647, 2147483647, 'CN', 'China'), +('202.127.32.0', '202.127.39.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.127.40.0', '202.127.63.255', 2147483647, 2147483647, 'CN', 'China'), +('202.127.64.0', '202.127.79.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.127.80.0', '202.127.95.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.127.96.0', '202.127.111.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.127.112.0', '202.127.167.255', 2147483647, 2147483647, 'CN', 'China'), +('202.127.168.0', '202.127.175.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.127.176.0', '202.127.191.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.127.192.0', '202.127.255.255', 2147483647, 2147483647, 'CN', 'China'), +('202.128.0.0', '202.128.31.255', 2147483647, 2147483647, 'GU', 'Guam'), +('202.128.32.0', '202.128.63.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('202.128.64.0', '202.128.95.255', 2147483647, 2147483647, 'GU', 'Guam'), +('202.128.112.0', '202.128.127.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.128.128.0', '202.128.130.15', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.128.130.16', '202.128.130.31', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('202.128.130.32', '202.128.131.95', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.128.131.96', '202.128.131.128', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('202.128.131.129', '202.128.159.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.128.160.0', '202.128.223.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.128.224.0', '202.128.255.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.129.0.0', '202.129.63.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('202.129.64.0', '202.129.159.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.129.160.0', '202.129.175.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('202.129.176.0', '202.129.183.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.129.184.0', '202.129.191.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.129.192.0', '202.129.195.255', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('202.129.196.0', '202.129.203.255', 2147483647, 2147483647, 'IN', 'India'), +('202.129.204.0', '202.129.207.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('202.129.208.0', '202.129.208.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.129.209.0', '202.129.213.255', 2147483647, 2147483647, 'IN', 'India'), +('202.129.214.0', '202.129.214.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.129.215.0', '202.129.215.255', 2147483647, 2147483647, 'IN', 'India'), +('202.129.216.0', '202.129.217.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.129.218.0', '202.129.218.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.129.219.0', '202.129.219.255', 2147483647, 2147483647, 'IN', 'India'), +('202.129.220.0', '202.129.223.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('202.129.224.0', '202.129.227.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.129.228.0', '202.129.231.255', 2147483647, 2147483647, 'FJ', 'Fiji'), +('202.129.232.0', '202.129.235.255', 2147483647, 2147483647, 'LK', 'Sri Lanka'), +('202.129.236.0', '202.129.236.255', 2147483647, 2147483647, 'KH', 'Cambodia'), +('202.129.237.0', '202.129.237.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.129.238.0', '202.129.238.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('202.129.239.0', '202.129.241.255', 2147483647, 2147483647, 'IN', 'India'), +('202.129.242.0', '202.129.243.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.129.244.0', '202.129.247.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.129.248.0', '202.129.251.255', 2147483647, 2147483647, 'NP', 'Nepal'), +('202.129.252.0', '202.129.252.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.129.253.0', '202.129.253.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.129.254.0', '202.129.254.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.129.255.0', '202.129.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.130.0.0', '202.130.31.255', 2147483647, 2147483647, 'CN', 'China'), +('202.130.32.0', '202.130.35.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.130.36.0', '202.130.37.255', 2147483647, 2147483647, 'VN', 'Vietnam'), +('202.130.38.0', '202.130.38.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.130.39.0', '202.130.39.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.130.40.0', '202.130.43.255', 2147483647, 2147483647, 'IN', 'India'), +('202.130.44.0', '202.130.51.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.130.52.0', '202.130.55.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.130.56.0', '202.130.59.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.130.60.0', '202.130.63.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.130.64.0', '202.130.150.191', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.130.150.192', '202.130.150.223', 2147483647, 2147483647, 'JP', 'Japan'), +('202.130.150.224', '202.130.191.55', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.130.191.56', '202.130.191.63', 2147483647, 2147483647, 'TW', 'Taiwan'), +('202.130.191.64', '202.130.191.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.130.192.0', '202.130.223.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.130.224.0', '202.130.255.255', 2147483647, 2147483647, 'CN', 'China'), +('202.131.0.0', '202.131.7.255', 2147483647, 2147483647, 'MN', 'Mongolia'), +('202.131.8.0', '202.131.15.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.131.16.0', '202.131.23.255', 2147483647, 2147483647, 'CN', 'China'), +('202.131.24.0', '202.131.31.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('202.131.32.0', '202.131.47.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.131.48.0', '202.131.63.255', 2147483647, 2147483647, 'CN', 'China'), +('202.131.64.0', '202.131.79.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.131.80.0', '202.131.87.255', 2147483647, 2147483647, 'KH', 'Cambodia'), +('202.131.88.0', '202.131.95.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.131.96.0', '202.131.159.255', 2147483647, 2147483647, 'IN', 'India'), +('202.131.160.0', '202.131.191.255', 2147483647, 2147483647, 'GU', 'Guam'), +('202.131.192.0', '202.131.207.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.131.208.0', '202.131.223.255', 2147483647, 2147483647, 'CN', 'China'), +('202.131.224.0', '202.131.255.255', 2147483647, 2147483647, 'MN', 'Mongolia'), +('202.132.0.0', '202.132.255.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('202.133.0.0', '202.133.7.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.133.8.0', '202.133.9.207', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.133.9.208', '202.133.9.223', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.133.9.224', '202.133.9.239', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.133.9.240', '202.133.9.255', 2147483647, 2147483647, 'AF', 'Afghanistan'), +('202.133.10.0', '202.133.12.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.133.13.0', '202.133.13.7', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('202.133.13.8', '202.133.13.31', 2147483647, 2147483647, 'AF', 'Afghanistan'), +('202.133.13.32', '202.133.13.39', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.133.13.40', '202.133.13.47', 2147483647, 2147483647, 'AF', 'Afghanistan'), +('202.133.13.48', '202.133.13.55', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.133.13.56', '202.133.13.63', 2147483647, 2147483647, 'AF', 'Afghanistan'), +('202.133.13.64', '202.133.13.95', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.133.13.96', '202.133.13.111', 2147483647, 2147483647, 'AF', 'Afghanistan'), +('202.133.13.112', '202.133.14.207', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.133.14.208', '202.133.14.223', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('202.133.14.224', '202.133.15.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.133.16.0', '202.133.31.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('202.133.32.0', '202.133.47.255', 2147483647, 2147483647, 'PK', 'Pakistan'), +('202.133.48.0', '202.133.63.255', 2147483647, 2147483647, 'IN', 'India'), +('202.133.64.0', '202.133.79.255', 2147483647, 2147483647, 'PK', 'Pakistan'), +('202.133.80.0', '202.133.95.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.133.96.0', '202.133.111.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('202.133.112.0', '202.133.127.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.133.128.0', '202.133.191.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('202.133.192.0', '202.133.223.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('202.133.224.0', '202.133.242.15', 2147483647, 2147483647, 'TW', 'Taiwan'), +('202.133.242.16', '202.133.242.47', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.133.242.48', '202.133.248.127', 2147483647, 2147483647, 'TW', 'Taiwan'), +('202.133.248.128', '202.133.248.143', 2147483647, 2147483647, 'CR', 'Costa Rica'), +('202.133.248.144', '202.133.248.175', 2147483647, 2147483647, 'TW', 'Taiwan'), +('202.133.248.176', '202.133.248.191', 2147483647, 2147483647, 'CR', 'Costa Rica'), +('202.133.248.192', '202.133.249.127', 2147483647, 2147483647, 'TW', 'Taiwan'), +('202.133.249.128', '202.133.249.143', 2147483647, 2147483647, 'CR', 'Costa Rica'), +('202.133.249.144', '202.133.249.175', 2147483647, 2147483647, 'TW', 'Taiwan'), +('202.133.249.176', '202.133.249.191', 2147483647, 2147483647, 'CR', 'Costa Rica'), +('202.133.249.192', '202.133.250.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('202.133.251.0', '202.133.251.15', 2147483647, 2147483647, 'US', 'United States'), +('202.133.251.16', '202.133.255.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('202.134.0.0', '202.134.7.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.134.8.0', '202.134.15.255', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('202.134.16.0', '202.134.23.255', 2147483647, 2147483647, 'VN', 'Vietnam'), +('202.134.24.0', '202.134.31.255', 2147483647, 2147483647, 'TO', 'Tonga'), +('202.134.32.0', '202.134.47.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.134.56.0', '202.134.57.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('202.134.58.0', '202.134.58.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.134.59.0', '202.134.59.255', 2147483647, 2147483647, 'IN', 'India'), +('202.134.60.0', '202.134.127.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.134.128.0', '202.134.143.255', 2147483647, 2147483647, 'PK', 'Pakistan'), +('202.134.144.0', '202.134.207.255', 2147483647, 2147483647, 'IN', 'India'), +('202.134.208.0', '202.134.223.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.134.224.0', '202.134.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.135.0.0', '202.135.34.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.135.35.0', '202.135.35.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.135.36.0', '202.135.39.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.135.40.0', '202.135.40.7', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.135.40.8', '202.135.142.159', 2147483647, 2147483647, 'JP', 'Japan'), +('202.135.142.160', '202.135.142.191', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.135.142.192', '202.135.226.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.135.227.0', '202.135.227.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.135.228.0', '202.135.253.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.135.254.0', '202.135.254.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.135.255.0', '202.135.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.136.0.0', '202.136.31.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.136.32.0', '202.136.47.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.136.48.0', '202.136.63.255', 2147483647, 2147483647, 'CN', 'China'), +('202.136.64.0', '202.136.95.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.136.96.0', '202.136.111.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.136.112.0', '202.136.159.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('202.136.160.0', '202.136.191.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.136.192.0', '202.136.207.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.136.208.0', '202.136.239.255', 2147483647, 2147483647, 'CN', 'China'), +('202.136.240.0', '202.136.247.255', 2147483647, 2147483647, 'LA', 'Lao People''s Democratic Republic'), +('202.136.248.0', '202.136.251.255', 2147483647, 2147483647, 'IN', 'India'), +('202.137.0.0', '202.137.31.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.137.32.0', '202.137.63.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.137.64.0', '202.137.111.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.137.112.0', '202.137.127.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('202.137.128.0', '202.137.159.255', 2147483647, 2147483647, 'LA', 'Lao People''s Democratic Republic'), +('202.137.160.0', '202.137.175.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.137.176.0', '202.137.183.255', 2147483647, 2147483647, 'FJ', 'Fiji'), +('202.137.184.0', '202.137.191.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.137.192.0', '202.137.207.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.137.208.0', '202.137.223.255', 2147483647, 2147483647, 'IN', 'India'), +('202.137.232.0', '202.137.239.255', 2147483647, 2147483647, 'IN', 'India'), +('202.137.240.0', '202.137.247.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.137.248.0', '202.137.251.255', 2147483647, 2147483647, 'IN', 'India'), +('202.137.252.0', '202.137.255.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('202.138.0.0', '202.138.79.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.138.80.0', '202.138.95.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.138.96.0', '202.138.127.255', 2147483647, 2147483647, 'IN', 'India'), +('202.138.128.0', '202.138.191.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('202.138.192.0', '202.138.223.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.138.224.0', '202.138.255.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.139.0.0', '202.139.191.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.139.192.0', '202.139.223.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('202.139.224.0', '202.139.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.140.0.0', '202.140.31.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.140.32.0', '202.140.63.255', 2147483647, 2147483647, 'IN', 'India'), +('202.140.64.0', '202.140.127.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.140.128.0', '202.140.159.255', 2147483647, 2147483647, 'IN', 'India'), +('202.140.160.0', '202.140.191.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.140.192.0', '202.140.223.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.140.224.0', '202.140.255.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.141.0.0', '202.141.159.255', 2147483647, 2147483647, 'IN', 'India'), +('202.141.160.0', '202.141.191.255', 2147483647, 2147483647, 'CN', 'China'), +('202.141.192.0', '202.141.207.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.141.208.0', '202.141.223.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.141.224.0', '202.141.255.255', 2147483647, 2147483647, 'PK', 'Pakistan'), +('202.142.0.0', '202.142.7.255', 2147483647, 2147483647, 'IN', 'India'), +('202.142.8.0', '202.142.15.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.142.16.0', '202.142.31.255', 2147483647, 2147483647, 'CN', 'China'), +('202.142.32.0', '202.142.63.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.142.64.0', '202.142.127.255', 2147483647, 2147483647, 'IN', 'India'), +('202.142.128.0', '202.142.143.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.142.144.0', '202.142.191.255', 2147483647, 2147483647, 'PK', 'Pakistan'), +('202.142.192.0', '202.142.223.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('202.142.224.0', '202.142.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.143.0.0', '202.143.1.255', 2147483647, 2147483647, 'IN', 'India'), +('202.143.2.0', '202.143.3.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.143.4.0', '202.143.7.255', 2147483647, 2147483647, 'IN', 'India'), +('202.143.8.0', '202.143.15.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.143.16.0', '202.143.31.255', 2147483647, 2147483647, 'CN', 'China'), +('202.143.32.0', '202.143.47.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.143.48.0', '202.143.63.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.143.64.0', '202.143.95.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.143.96.0', '202.143.111.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.143.112.0', '202.143.127.255', 2147483647, 2147483647, 'PK', 'Pakistan'), +('202.143.128.0', '202.143.191.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('202.143.192.0', '202.143.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.144.0.0', '202.144.127.255', 2147483647, 2147483647, 'IN', 'India'), +('202.144.128.0', '202.144.159.255', 2147483647, 2147483647, 'BT', 'Bhutan'), +('202.144.160.0', '202.144.183.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.144.184.0', '202.144.191.255', 2147483647, 2147483647, 'LA', 'Lao People''s Democratic Republic'), +('202.144.192.0', '202.144.207.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('202.144.208.0', '202.144.223.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('202.145.0.0', '202.145.15.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.145.16.0', '202.145.31.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.145.32.0', '202.145.255.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('202.146.0.0', '202.146.5.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.146.6.0', '202.146.15.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.146.16.0', '202.146.23.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.146.24.0', '202.146.31.255', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('202.146.32.0', '202.146.63.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.146.64.0', '202.146.95.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('202.146.96.0', '202.146.127.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.146.128.0', '202.146.159.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.146.160.0', '202.146.175.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.146.176.0', '202.146.183.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.146.184.0', '202.146.185.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('202.146.186.0', '202.146.186.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.146.187.0', '202.146.187.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.146.192.0', '202.146.207.255', 2147483647, 2147483647, 'IN', 'India'), +('202.146.208.0', '202.146.215.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.146.216.0', '202.146.223.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.146.224.0', '202.146.255.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.147.0.0', '202.147.1.255', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('202.147.2.0', '202.147.2.79', 2147483647, 2147483647, 'JP', 'Japan'), +('202.147.2.80', '202.147.2.87', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('202.147.2.88', '202.147.2.207', 2147483647, 2147483647, 'JP', 'Japan'), +('202.147.2.208', '202.147.2.239', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('202.147.2.240', '202.147.3.191', 2147483647, 2147483647, 'JP', 'Japan'), +('202.147.3.192', '202.147.3.199', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('202.147.3.200', '202.147.4.175', 2147483647, 2147483647, 'JP', 'Japan'), +('202.147.4.176', '202.147.4.191', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('202.147.4.192', '202.147.5.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.147.6.0', '202.147.9.255', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('202.147.10.0', '202.147.10.127', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('202.147.10.128', '202.147.11.63', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('202.147.11.64', '202.147.11.95', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('202.147.11.96', '202.147.11.103', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('202.147.11.104', '202.147.11.239', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('202.147.11.240', '202.147.11.255', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('202.147.12.0', '202.147.12.95', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('202.147.12.96', '202.147.12.111', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('202.147.12.112', '202.147.12.127', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('202.147.12.128', '202.147.12.255', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('202.147.13.0', '202.147.13.31', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('202.147.13.32', '202.147.14.255', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('202.147.15.0', '202.147.15.127', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('202.147.15.128', '202.147.18.7', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('202.147.18.8', '202.147.18.95', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.147.18.96', '202.147.19.63', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('202.147.19.64', '202.147.19.95', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.147.19.96', '202.147.19.159', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('202.147.19.160', '202.147.19.239', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.147.19.240', '202.147.19.255', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('202.147.20.0', '202.147.20.39', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.147.20.40', '202.147.20.47', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('202.147.20.48', '202.147.20.191', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.147.20.192', '202.147.20.223', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('202.147.20.224', '202.147.20.231', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.147.20.232', '202.147.20.239', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('202.147.20.240', '202.147.20.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.147.21.0', '202.147.22.127', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('202.147.22.128', '202.147.22.159', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.147.22.160', '202.147.22.191', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('202.147.22.192', '202.147.22.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.147.23.0', '202.147.23.63', 2147483647, 2147483647, 'JP', 'Japan'), +('202.147.23.64', '202.147.23.207', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.147.23.208', '202.147.23.239', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('202.147.23.240', '202.147.23.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.147.24.0', '202.147.26.15', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('202.147.26.16', '202.147.26.31', 2147483647, 2147483647, 'PH', 'Philippines'), +('202.147.26.32', '202.147.26.79', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('202.147.26.80', '202.147.26.87', 2147483647, 2147483647, 'PH', 'Philippines'), +('202.147.26.88', '202.147.26.111', 2147483647, 2147483647, 'TW', 'Taiwan'), +('202.147.26.112', '202.147.26.127', 2147483647, 2147483647, 'PH', 'Philippines'), +('202.147.26.128', '202.147.27.31', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('202.147.27.32', '202.147.27.47', 2147483647, 2147483647, 'TW', 'Taiwan'), +('202.147.27.48', '202.147.27.63', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('202.147.27.64', '202.147.27.95', 2147483647, 2147483647, 'TW', 'Taiwan'), +('202.147.27.96', '202.147.27.111', 2147483647, 2147483647, 'PH', 'Philippines'), +('202.147.27.112', '202.147.27.143', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('202.147.27.144', '202.147.27.159', 2147483647, 2147483647, 'TW', 'Taiwan'), +('202.147.27.160', '202.147.28.127', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('202.147.28.128', '202.147.28.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('202.147.29.0', '202.147.29.31', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('202.147.29.32', '202.147.29.63', 2147483647, 2147483647, 'PH', 'Philippines'), +('202.147.29.64', '202.147.29.159', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('202.147.29.160', '202.147.30.127', 2147483647, 2147483647, 'PH', 'Philippines'), +('202.147.30.128', '202.147.30.143', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('202.147.30.144', '202.147.30.159', 2147483647, 2147483647, 'PH', 'Philippines'), +('202.147.30.160', '202.147.30.167', 2147483647, 2147483647, 'TW', 'Taiwan'), +('202.147.30.168', '202.147.31.63', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('202.147.31.64', '202.147.31.95', 2147483647, 2147483647, 'PH', 'Philippines'), +('202.147.31.96', '202.147.33.255', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('202.147.34.0', '202.147.34.31', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.147.34.32', '202.147.34.63', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('202.147.34.64', '202.147.34.79', 2147483647, 2147483647, 'MY', 'Malaysia'), +('202.147.34.80', '202.147.35.255', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('202.147.36.0', '202.147.36.55', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.147.36.56', '202.147.36.143', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('202.147.36.144', '202.147.36.159', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.147.36.160', '202.147.36.255', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('202.147.37.0', '202.147.37.15', 2147483647, 2147483647, 'MY', 'Malaysia'), +('202.147.37.16', '202.147.37.63', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.147.37.64', '202.147.37.111', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('202.147.37.112', '202.147.37.143', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.147.37.144', '202.147.37.159', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('202.147.37.160', '202.147.37.191', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.147.37.192', '202.147.37.199', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('202.147.37.200', '202.147.37.207', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.147.37.208', '202.147.37.223', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('202.147.37.224', '202.147.38.159', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.147.38.160', '202.147.39.15', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('202.147.39.16', '202.147.39.23', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.147.39.24', '202.147.39.39', 2147483647, 2147483647, 'MY', 'Malaysia'), +('202.147.39.40', '202.147.39.47', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('202.147.39.48', '202.147.39.95', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.147.39.96', '202.147.39.127', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('202.147.39.128', '202.147.39.135', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.147.39.136', '202.147.39.159', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('202.147.39.160', '202.147.39.223', 2147483647, 2147483647, 'MY', 'Malaysia'), +('202.147.39.224', '202.147.43.31', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('202.147.43.32', '202.147.43.79', 2147483647, 2147483647, 'AU', 'Australia'), +('202.147.43.80', '202.147.43.95', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.147.43.96', '202.147.43.127', 2147483647, 2147483647, 'AU', 'Australia'), +('202.147.43.128', '202.147.43.191', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('202.147.43.192', '202.147.43.207', 2147483647, 2147483647, 'AU', 'Australia'), +('202.147.43.208', '202.147.43.223', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('202.147.43.224', '202.147.44.127', 2147483647, 2147483647, 'AU', 'Australia'), +('202.147.44.128', '202.147.45.31', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('202.147.45.32', '202.147.45.63', 2147483647, 2147483647, 'AU', 'Australia'), +('202.147.45.64', '202.147.45.79', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('202.147.45.80', '202.147.45.95', 2147483647, 2147483647, 'AU', 'Australia'), +('202.147.45.96', '202.147.45.103', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('202.147.45.104', '202.147.45.127', 2147483647, 2147483647, 'AU', 'Australia'), +('202.147.45.128', '202.147.45.255', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('202.147.46.0', '202.147.46.23', 2147483647, 2147483647, 'AU', 'Australia'), +('202.147.46.24', '202.147.46.47', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.147.46.48', '202.147.46.63', 2147483647, 2147483647, 'AU', 'Australia'), +('202.147.46.64', '202.147.46.143', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('202.147.46.144', '202.147.46.159', 2147483647, 2147483647, 'AU', 'Australia'), +('202.147.46.160', '202.147.46.175', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('202.147.46.176', '202.147.46.183', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.147.46.184', '202.147.47.63', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('202.147.47.64', '202.147.47.127', 2147483647, 2147483647, 'AU', 'Australia'), +('202.147.47.128', '202.147.47.255', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('202.147.48.0', '202.147.48.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.147.49.0', '202.147.55.255', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('202.147.56.0', '202.147.57.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.147.58.0', '202.147.61.255', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('202.147.62.0', '202.147.62.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('202.147.63.0', '202.147.63.255', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('202.147.64.0', '202.147.143.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.147.160.0', '202.147.191.255', 2147483647, 2147483647, 'PK', 'Pakistan'), +('202.147.192.0', '202.147.207.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.147.208.0', '202.147.223.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.147.224.0', '202.148.31.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.148.48.0', '202.148.55.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.148.56.0', '202.148.63.255', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('202.148.96.0', '202.148.127.255', 2147483647, 2147483647, 'CN', 'China'), +('202.148.128.0', '202.148.159.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.148.160.0', '202.148.175.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.148.176.0', '202.148.191.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('202.148.192.0', '202.148.207.255', 2147483647, 2147483647, 'IN', 'India'), +('202.148.208.0', '202.148.223.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('202.148.224.0', '202.148.239.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.148.240.0', '202.149.23.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.149.24.0', '202.149.31.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('202.149.32.0', '202.149.63.255', 2147483647, 2147483647, 'IN', 'India'), +('202.149.64.0', '202.149.95.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.149.96.0', '202.149.127.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('202.149.128.0', '202.149.159.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.149.160.0', '202.149.191.255', 2147483647, 2147483647, 'CN', 'China'), +('202.149.192.0', '202.149.223.255', 2147483647, 2147483647, 'IN', 'India'), +('202.149.224.0', '202.149.255.255', 2147483647, 2147483647, 'CN', 'China'), +('202.150.0.0', '202.150.3.255', 2147483647, 2147483647, 'KH', 'Cambodia'), +('202.150.4.0', '202.150.7.255', 2147483647, 2147483647, 'IN', 'India'), +('202.150.8.0', '202.150.11.255', 2147483647, 2147483647, 'KH', 'Cambodia'), +('202.150.12.0', '202.150.15.255', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('202.150.16.0', '202.150.31.255', 2147483647, 2147483647, 'CN', 'China'), +('202.150.32.0', '202.150.47.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.150.48.0', '202.150.55.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.150.56.0', '202.150.59.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.150.60.0', '202.150.63.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.150.64.0', '202.150.95.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.150.96.0', '202.150.127.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.150.128.0', '202.150.175.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.150.176.0', '202.150.191.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('202.150.208.0', '202.150.223.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.150.224.0', '202.151.3.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.151.4.0', '202.151.7.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('202.151.8.0', '202.151.15.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.151.16.0', '202.151.31.255', 2147483647, 2147483647, 'FJ', 'Fiji'), +('202.151.32.0', '202.151.32.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.151.33.0', '202.151.33.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.151.34.0', '202.151.35.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('202.151.36.0', '202.151.39.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.151.40.0', '202.151.47.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('202.151.48.0', '202.151.63.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('202.151.64.0', '202.151.95.255', 2147483647, 2147483647, 'GU', 'Guam'), +('202.151.96.0', '202.151.127.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.151.128.0', '202.151.159.255', 2147483647, 2147483647, 'IN', 'India'), +('202.151.160.0', '202.151.175.255', 2147483647, 2147483647, 'VN', 'Vietnam'), +('202.151.176.0', '202.151.191.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('202.151.192.0', '202.151.255.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('202.152.0.0', '202.152.63.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.152.64.0', '202.152.95.255', 2147483647, 2147483647, 'BN', 'Brunei Darussalam'), +('202.152.96.0', '202.152.127.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.152.128.0', '202.152.175.255', 2147483647, 2147483647, 'ID', 'Indonesia'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('202.152.176.0', '202.152.191.255', 2147483647, 2147483647, 'CN', 'China'), +('202.152.192.0', '202.152.207.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.152.208.0', '202.152.223.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.152.224.0', '202.152.255.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.153.0.0', '202.153.3.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('202.153.4.0', '202.153.5.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.153.6.0', '202.153.6.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.153.7.0', '202.153.7.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.153.8.0', '202.153.15.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.153.16.0', '202.153.31.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.153.32.0', '202.153.47.255', 2147483647, 2147483647, 'IN', 'India'), +('202.153.48.0', '202.153.63.255', 2147483647, 2147483647, 'CN', 'China'), +('202.153.64.0', '202.153.79.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.153.80.0', '202.153.87.255', 2147483647, 2147483647, 'MV', 'Maldives'), +('202.153.88.0', '202.153.127.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.153.128.0', '202.153.159.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.153.160.0', '202.153.194.191', 2147483647, 2147483647, 'TW', 'Taiwan'), +('202.153.194.192', '202.153.194.223', 2147483647, 2147483647, 'CN', 'China'), +('202.153.194.224', '202.153.198.159', 2147483647, 2147483647, 'TW', 'Taiwan'), +('202.153.198.160', '202.153.198.175', 2147483647, 2147483647, 'CR', 'Costa Rica'), +('202.153.198.176', '202.153.202.79', 2147483647, 2147483647, 'TW', 'Taiwan'), +('202.153.202.80', '202.153.202.95', 2147483647, 2147483647, 'CR', 'Costa Rica'), +('202.153.202.96', '202.153.202.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('202.153.203.0', '202.153.203.31', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.153.203.32', '202.153.203.79', 2147483647, 2147483647, 'TW', 'Taiwan'), +('202.153.203.80', '202.153.203.95', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.153.203.96', '202.153.204.215', 2147483647, 2147483647, 'TW', 'Taiwan'), +('202.153.204.216', '202.153.204.223', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.153.204.224', '202.153.205.239', 2147483647, 2147483647, 'TW', 'Taiwan'), +('202.153.205.240', '202.153.205.255', 2147483647, 2147483647, 'CR', 'Costa Rica'), +('202.153.206.0', '202.153.207.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('202.153.208.0', '202.153.223.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.153.224.0', '202.154.36.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.154.37.0', '202.154.37.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.154.38.0', '202.154.41.47', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.154.41.48', '202.154.41.63', 2147483647, 2147483647, 'AU', 'Australia'), +('202.154.41.64', '202.154.41.79', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.154.41.80', '202.154.41.127', 2147483647, 2147483647, 'AU', 'Australia'), +('202.154.41.128', '202.154.41.191', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.154.41.192', '202.154.41.207', 2147483647, 2147483647, 'AU', 'Australia'), +('202.154.41.208', '202.154.41.223', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.154.41.224', '202.154.41.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.154.42.0', '202.154.45.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.154.46.0', '202.154.46.31', 2147483647, 2147483647, 'AU', 'Australia'), +('202.154.46.32', '202.154.46.127', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.154.46.128', '202.154.46.159', 2147483647, 2147483647, 'AU', 'Australia'), +('202.154.46.160', '202.154.46.175', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.154.46.176', '202.154.46.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.154.47.0', '202.154.47.79', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.154.47.80', '202.154.47.191', 2147483647, 2147483647, 'AU', 'Australia'), +('202.154.47.192', '202.154.47.223', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.154.47.224', '202.154.47.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.154.48.0', '202.154.48.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.154.49.0', '202.154.49.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.154.50.0', '202.154.63.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.154.64.0', '202.154.127.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.154.128.0', '202.154.159.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.154.160.0', '202.154.175.255', 2147483647, 2147483647, 'IN', 'India'), +('202.154.176.0', '202.154.191.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.154.192.0', '202.154.223.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('202.154.224.0', '202.154.255.255', 2147483647, 2147483647, 'PK', 'Pakistan'), +('202.155.0.0', '202.155.159.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.155.160.0', '202.155.191.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.155.192.0', '202.155.255.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.156.0.0', '202.156.255.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.157.0.0', '202.157.63.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.157.64.0', '202.157.95.255', 2147483647, 2147483647, 'IN', 'India'), +('202.157.96.0', '202.157.127.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.157.128.0', '202.157.175.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.157.176.0', '202.157.177.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('202.157.178.0', '202.157.179.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.157.180.0', '202.157.181.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.157.182.0', '202.157.189.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('202.157.190.0', '202.157.191.255', 2147483647, 2147483647, 'IN', 'India'), +('202.157.224.0', '202.157.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.158.0.0', '202.158.143.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.158.144.0', '202.158.159.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('202.158.160.0', '202.158.191.255', 2147483647, 2147483647, 'CN', 'China'), +('202.158.192.0', '202.158.223.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.158.224.0', '202.158.239.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.158.240.0', '202.158.240.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('202.158.241.0', '202.158.241.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.158.242.0', '202.158.242.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.158.243.0', '202.158.243.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.158.244.0', '202.158.247.255', 2147483647, 2147483647, 'VN', 'Vietnam'), +('202.158.248.0', '202.158.251.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.158.252.0', '202.158.252.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.158.253.0', '202.158.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.159.0.0', '202.159.127.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.159.128.0', '202.159.191.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('202.159.192.0', '202.159.255.255', 2147483647, 2147483647, 'IN', 'India'), +('202.160.0.0', '202.160.47.255', 2147483647, 2147483647, 'BN', 'Brunei Darussalam'), +('202.160.48.0', '202.160.63.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.160.64.0', '202.160.95.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('202.160.96.0', '202.160.111.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.160.112.0', '202.160.119.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.160.120.0', '202.160.123.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.160.124.0', '202.160.125.255', 2147483647, 2147483647, 'VN', 'Vietnam'), +('202.160.126.0', '202.160.159.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.160.160.0', '202.160.175.255', 2147483647, 2147483647, 'IN', 'India'), +('202.160.176.0', '202.160.191.255', 2147483647, 2147483647, 'CN', 'China'), +('202.160.192.0', '202.160.238.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.160.239.0', '202.160.239.255', 2147483647, 2147483647, 'IN', 'India'), +('202.160.240.0', '202.160.247.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.160.248.0', '202.160.248.255', 2147483647, 2147483647, 'US', 'United States'), +('202.160.249.0', '202.160.251.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.160.252.0', '202.160.252.7', 2147483647, 2147483647, 'PK', 'Pakistan'), +('202.160.252.8', '202.160.252.31', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.160.252.32', '202.160.252.47', 2147483647, 2147483647, 'PK', 'Pakistan'), +('202.160.252.48', '202.160.252.63', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.160.252.64', '202.160.252.95', 2147483647, 2147483647, 'PK', 'Pakistan'), +('202.160.252.96', '202.160.253.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.160.254.0', '202.160.254.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.160.255.0', '202.160.255.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.161.0.0', '202.161.31.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.161.32.0', '202.161.63.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.161.64.0', '202.161.127.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.161.128.0', '202.161.134.255', 2147483647, 2147483647, 'US', 'United States'), +('202.161.135.0', '202.161.135.255', 2147483647, 2147483647, 'NP', 'Nepal'), +('202.161.136.0', '202.161.137.255', 2147483647, 2147483647, 'US', 'United States'), +('202.161.138.0', '202.161.138.255', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('202.161.139.0', '202.161.151.255', 2147483647, 2147483647, 'US', 'United States'), +('202.161.152.0', '202.161.152.255', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('202.161.153.0', '202.161.158.255', 2147483647, 2147483647, 'US', 'United States'), +('202.161.159.0', '202.161.159.255', 2147483647, 2147483647, 'NP', 'Nepal'), +('202.161.160.0', '202.161.175.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.161.176.0', '202.161.191.255', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('202.161.192.0', '202.161.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.162.0.0', '202.162.31.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('202.162.32.0', '202.162.47.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.162.48.0', '202.162.63.255', 2147483647, 2147483647, 'IN', 'India'), +('202.162.64.0', '202.162.67.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.162.68.0', '202.162.71.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.162.72.0', '202.162.73.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.162.74.0', '202.162.75.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.162.76.0', '202.162.79.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('202.162.80.0', '202.162.95.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.162.96.0', '202.162.111.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.162.112.0', '202.162.159.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.162.160.0', '202.162.175.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('202.162.176.0', '202.162.183.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.162.184.0', '202.162.187.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.162.188.0', '202.162.191.255', 2147483647, 2147483647, 'IN', 'India'), +('202.162.192.0', '202.162.223.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.162.224.0', '202.162.255.255', 2147483647, 2147483647, 'IN', 'India'), +('202.163.0.0', '202.163.31.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.163.32.0', '202.163.63.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.163.64.0', '202.163.127.255', 2147483647, 2147483647, 'PK', 'Pakistan'), +('202.163.128.0', '202.163.159.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('202.163.160.0', '202.163.191.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.163.192.0', '202.163.255.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('202.164.0.0', '202.164.15.255', 2147483647, 2147483647, 'CN', 'China'), +('202.164.16.0', '202.164.23.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.164.24.0', '202.164.25.255', 2147483647, 2147483647, 'IN', 'India'), +('202.164.26.0', '202.164.26.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.164.27.0', '202.164.27.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.164.28.0', '202.164.31.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.164.32.0', '202.164.63.255', 2147483647, 2147483647, 'IN', 'India'), +('202.164.64.0', '202.164.95.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.164.128.0', '202.164.159.255', 2147483647, 2147483647, 'IN', 'India'), +('202.164.160.0', '202.164.191.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('202.164.192.0', '202.164.207.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.164.208.0', '202.164.215.255', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('202.164.216.0', '202.164.223.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.164.224.0', '202.164.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.165.0.0', '202.165.31.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('202.165.32.0', '202.165.47.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.165.48.0', '202.165.55.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.165.56.0', '202.165.59.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('202.165.60.0', '202.165.61.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('202.165.62.0', '202.165.63.255', 2147483647, 2147483647, 'IN', 'India'), +('202.165.64.0', '202.165.95.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.165.96.0', '202.165.111.255', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('202.165.112.0', '202.165.119.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.165.120.0', '202.165.137.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('202.165.138.0', '202.165.138.7', 2147483647, 2147483647, 'US', 'United States'), +('202.165.138.8', '202.165.140.7', 2147483647, 2147483647, 'TW', 'Taiwan'), +('202.165.140.8', '202.165.140.23', 2147483647, 2147483647, 'US', 'United States'), +('202.165.140.24', '202.165.141.79', 2147483647, 2147483647, 'TW', 'Taiwan'), +('202.165.141.80', '202.165.141.95', 2147483647, 2147483647, 'US', 'United States'), +('202.165.141.96', '202.165.159.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('202.165.160.0', '202.165.175.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.165.176.0', '202.165.191.255', 2147483647, 2147483647, 'CN', 'China'), +('202.165.192.0', '202.165.207.255', 2147483647, 2147483647, 'PG', 'Papua New Guinea'), +('202.165.208.0', '202.165.223.255', 2147483647, 2147483647, 'CN', 'China'), +('202.165.224.0', '202.165.255.255', 2147483647, 2147483647, 'PK', 'Pakistan'), +('202.166.0.0', '202.166.159.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.166.160.0', '202.166.175.255', 2147483647, 2147483647, 'PK', 'Pakistan'), +('202.166.176.0', '202.166.183.255', 2147483647, 2147483647, 'NC', 'New Caledonia'), +('202.166.184.0', '202.166.184.255', 2147483647, 2147483647, 'IN', 'India'), +('202.166.185.0', '202.166.185.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.166.186.0', '202.166.187.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.166.188.0', '202.166.191.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('202.166.192.0', '202.166.223.255', 2147483647, 2147483647, 'NP', 'Nepal'), +('202.166.224.0', '202.166.255.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('202.167.0.0', '202.167.31.255', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('202.167.32.0', '202.167.40.255', 2147483647, 2147483647, 'US', 'United States'), +('202.167.41.0', '202.167.41.63', 2147483647, 2147483647, 'AU', 'Australia'), +('202.167.41.64', '202.167.100.127', 2147483647, 2147483647, 'US', 'United States'), +('202.167.100.128', '202.167.100.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.167.101.0', '202.167.127.255', 2147483647, 2147483647, 'US', 'United States'), +('202.167.128.0', '202.167.143.255', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('202.167.144.0', '202.167.159.111', 2147483647, 2147483647, 'US', 'United States'), +('202.167.159.112', '202.167.159.127', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.167.159.128', '202.167.207.255', 2147483647, 2147483647, 'US', 'United States'), +('202.167.208.0', '202.167.223.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('202.167.224.0', '202.167.230.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.167.231.0', '202.167.231.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.167.232.0', '202.167.233.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.167.234.0', '202.167.235.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.167.236.0', '202.167.239.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.167.240.0', '202.167.244.63', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.167.244.64', '202.167.244.95', 2147483647, 2147483647, 'AU', 'Australia'), +('202.167.244.96', '202.167.252.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.167.253.0', '202.167.253.31', 2147483647, 2147483647, 'AU', 'Australia'), +('202.167.253.32', '202.167.255.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.168.0.0', '202.168.63.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.168.64.0', '202.168.79.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('202.168.80.0', '202.168.87.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.168.88.0', '202.168.91.255', 2147483647, 2147483647, 'IN', 'India'), +('202.168.92.0', '202.168.93.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.168.94.0', '202.168.94.255', 2147483647, 2147483647, 'IN', 'India'), +('202.168.95.0', '202.168.95.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.168.96.0', '202.168.159.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.168.160.0', '202.168.191.255', 2147483647, 2147483647, 'CN', 'China'), +('202.168.192.0', '202.168.207.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('202.168.208.0', '202.168.210.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.168.211.0', '202.168.211.63', 2147483647, 2147483647, 'US', 'United States'), +('202.168.211.64', '202.168.211.95', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('202.168.211.96', '202.168.212.31', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.168.212.32', '202.168.212.47', 2147483647, 2147483647, 'US', 'United States'), +('202.168.212.48', '202.168.212.63', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.168.212.64', '202.168.212.95', 2147483647, 2147483647, 'MO', 'Macau'), +('202.168.212.96', '202.168.212.127', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.168.212.128', '202.168.212.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.168.213.0', '202.168.215.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.168.216.0', '202.168.223.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.168.224.0', '202.168.255.255', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('202.169.0.0', '202.169.15.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.169.16.0', '202.169.23.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.169.24.0', '202.169.31.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('202.169.32.0', '202.169.63.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.169.64.0', '202.169.95.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.169.96.0', '202.169.127.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.169.128.0', '202.169.159.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.169.160.0', '202.169.175.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('202.169.176.0', '202.169.183.255', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('202.169.184.0', '202.169.191.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.169.192.0', '202.169.223.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.169.224.0', '202.169.255.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.170.0.0', '202.170.31.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.170.32.0', '202.170.47.255', 2147483647, 2147483647, 'FJ', 'Fiji'), +('202.170.48.0', '202.170.63.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('202.170.64.0', '202.170.95.255', 2147483647, 2147483647, 'MN', 'Mongolia'), +('202.170.96.0', '202.170.111.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.170.112.0', '202.170.127.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('202.170.128.0', '202.170.159.255', 2147483647, 2147483647, 'CN', 'China'), +('202.170.160.0', '202.170.175.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.170.176.0', '202.170.191.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.170.192.0', '202.170.207.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.170.208.0', '202.170.215.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.170.216.0', '202.170.223.255', 2147483647, 2147483647, 'CN', 'China'), +('202.171.0.0', '202.171.31.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.171.32.0', '202.171.63.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('202.171.64.0', '202.171.65.127', 2147483647, 2147483647, 'NC', 'New Caledonia'), +('202.171.65.128', '202.171.65.191', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.171.65.192', '202.171.79.255', 2147483647, 2147483647, 'NC', 'New Caledonia'), +('202.171.80.0', '202.171.95.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.171.96.0', '202.171.111.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.171.112.0', '202.171.159.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.171.160.0', '202.171.191.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.171.192.0', '202.171.207.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('202.171.208.0', '202.171.215.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.171.224.0', '202.171.231.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.171.240.0', '202.171.247.255', 2147483647, 2147483647, 'PG', 'Papua New Guinea'), +('202.171.248.0', '202.171.251.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('202.171.252.0', '202.172.3.255', 2147483647, 2147483647, 'MO', 'Macau'), +('202.172.4.0', '202.172.5.255', 2147483647, 2147483647, 'VN', 'Vietnam'), +('202.172.6.0', '202.172.6.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.172.7.0', '202.172.7.255', 2147483647, 2147483647, 'IN', 'India'), +('202.172.8.0', '202.172.15.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.172.16.0', '202.172.23.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('202.172.24.0', '202.172.31.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.172.32.0', '202.172.63.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.172.64.0', '202.172.95.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.172.96.0', '202.172.159.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.172.160.0', '202.172.255.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.173.0.0', '202.173.3.255', 2147483647, 2147483647, 'MO', 'Macau'), +('202.173.4.0', '202.173.4.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('202.173.5.0', '202.173.5.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.173.6.0', '202.173.6.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.173.7.0', '202.173.7.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('202.173.8.0', '202.173.15.255', 2147483647, 2147483647, 'CN', 'China'), +('202.173.16.0', '202.173.23.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.173.24.0', '202.173.31.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.173.32.0', '202.173.63.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('202.173.64.0', '202.173.95.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.173.96.0', '202.173.127.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.173.128.0', '202.173.207.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.173.208.0', '202.173.223.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('202.173.224.0', '202.173.255.255', 2147483647, 2147483647, 'CN', 'China'), +('202.174.0.0', '202.174.3.255', 2147483647, 2147483647, 'MO', 'Macau'), +('202.174.4.0', '202.174.4.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('202.174.5.0', '202.174.5.255', 2147483647, 2147483647, 'IN', 'India'), +('202.174.6.0', '202.174.7.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.174.8.0', '202.174.15.255', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('202.174.16.0', '202.174.31.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('202.174.32.0', '202.174.47.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.174.48.0', '202.174.63.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.174.64.0', '202.174.79.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.174.80.0', '202.174.87.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.174.88.0', '202.174.91.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('202.174.92.0', '202.174.95.255', 2147483647, 2147483647, 'IN', 'India'), +('202.174.96.0', '202.174.111.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.174.112.0', '202.174.119.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.174.120.0', '202.174.120.255', 2147483647, 2147483647, 'IN', 'India'), +('202.174.121.0', '202.174.121.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.174.122.0', '202.174.127.255', 2147483647, 2147483647, 'IN', 'India'), +('202.174.128.0', '202.174.129.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.174.130.0', '202.174.131.31', 2147483647, 2147483647, 'MY', 'Malaysia'), +('202.174.131.32', '202.174.131.39', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.174.131.40', '202.174.131.47', 2147483647, 2147483647, 'MY', 'Malaysia'), +('202.174.131.48', '202.174.131.55', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.174.131.56', '202.174.131.87', 2147483647, 2147483647, 'MY', 'Malaysia'), +('202.174.131.88', '202.174.131.95', 2147483647, 2147483647, 'MV', 'Maldives'), +('202.174.131.96', '202.174.131.103', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.174.131.104', '202.174.131.111', 2147483647, 2147483647, 'KZ', 'Kazakstan'), +('202.174.131.112', '202.174.131.119', 2147483647, 2147483647, 'MY', 'Malaysia'), +('202.174.131.120', '202.174.131.127', 2147483647, 2147483647, 'KZ', 'Kazakstan'), +('202.174.131.128', '202.174.131.135', 2147483647, 2147483647, 'MV', 'Maldives'), +('202.174.131.136', '202.174.131.143', 2147483647, 2147483647, 'MY', 'Malaysia'), +('202.174.131.144', '202.174.131.151', 2147483647, 2147483647, 'MV', 'Maldives'), +('202.174.131.152', '202.174.131.167', 2147483647, 2147483647, 'MY', 'Malaysia'), +('202.174.131.168', '202.174.131.175', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.174.131.176', '202.174.131.215', 2147483647, 2147483647, 'MV', 'Maldives'), +('202.174.131.216', '202.174.131.223', 2147483647, 2147483647, 'KZ', 'Kazakstan'), +('202.174.131.224', '202.174.131.231', 2147483647, 2147483647, 'MV', 'Maldives'), +('202.174.131.232', '202.174.131.247', 2147483647, 2147483647, 'MY', 'Malaysia'), +('202.174.131.248', '202.174.131.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.174.132.0', '202.174.132.207', 2147483647, 2147483647, 'MY', 'Malaysia'), +('202.174.132.208', '202.174.132.223', 2147483647, 2147483647, 'MV', 'Maldives'), +('202.174.132.224', '202.174.132.239', 2147483647, 2147483647, 'KZ', 'Kazakstan'), +('202.174.132.240', '202.174.132.247', 2147483647, 2147483647, 'MV', 'Maldives'), +('202.174.132.248', '202.174.133.7', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.174.133.8', '202.174.133.15', 2147483647, 2147483647, 'AF', 'Afghanistan'), +('202.174.133.16', '202.174.133.31', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.174.133.32', '202.174.133.47', 2147483647, 2147483647, 'AF', 'Afghanistan'), +('202.174.133.48', '202.174.133.63', 2147483647, 2147483647, 'MA', 'Morocco'), +('202.174.133.64', '202.174.133.127', 2147483647, 2147483647, 'MY', 'Malaysia'), +('202.174.133.128', '202.174.133.143', 2147483647, 2147483647, 'MA', 'Morocco'), +('202.174.133.144', '202.174.133.151', 2147483647, 2147483647, 'AF', 'Afghanistan'), +('202.174.133.152', '202.174.133.175', 2147483647, 2147483647, 'MA', 'Morocco'), +('202.174.133.176', '202.174.133.199', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.174.133.200', '202.174.133.207', 2147483647, 2147483647, 'MA', 'Morocco'), +('202.174.133.208', '202.174.133.215', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.174.133.216', '202.174.133.231', 2147483647, 2147483647, 'MA', 'Morocco'), +('202.174.133.232', '202.174.133.239', 2147483647, 2147483647, 'MY', 'Malaysia'), +('202.174.133.240', '202.174.133.255', 2147483647, 2147483647, 'MV', 'Maldives'), +('202.174.134.0', '202.174.134.7', 2147483647, 2147483647, 'AF', 'Afghanistan'), +('202.174.134.8', '202.174.134.39', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.174.134.40', '202.174.134.63', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.174.134.64', '202.174.134.191', 2147483647, 2147483647, 'MY', 'Malaysia'), +('202.174.134.192', '202.174.134.223', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.174.134.224', '202.174.134.239', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.174.134.240', '202.174.134.255', 2147483647, 2147483647, 'KZ', 'Kazakstan'), +('202.174.135.0', '202.174.135.119', 2147483647, 2147483647, 'MY', 'Malaysia'), +('202.174.135.120', '202.174.135.183', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.174.135.184', '202.174.135.191', 2147483647, 2147483647, 'MY', 'Malaysia'), +('202.174.135.192', '202.174.135.207', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.174.135.208', '202.174.135.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('202.174.136.0', '202.174.138.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.174.139.0', '202.174.139.255', 2147483647, 2147483647, 'NP', 'Nepal'), +('202.174.140.0', '202.174.141.255', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('202.174.142.0', '202.174.142.127', 2147483647, 2147483647, 'PK', 'Pakistan'), +('202.174.142.128', '202.174.142.191', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('202.174.142.192', '202.174.143.23', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.174.143.24', '202.174.143.39', 2147483647, 2147483647, 'MY', 'Malaysia'), +('202.174.143.40', '202.174.143.47', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.174.143.48', '202.174.143.87', 2147483647, 2147483647, 'MY', 'Malaysia'), +('202.174.143.88', '202.174.143.95', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('202.174.143.96', '202.174.143.103', 2147483647, 2147483647, 'MN', 'Mongolia'), +('202.174.143.104', '202.174.143.111', 2147483647, 2147483647, 'MY', 'Malaysia'), +('202.174.143.112', '202.174.143.127', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.174.143.128', '202.174.143.143', 2147483647, 2147483647, 'MY', 'Malaysia'), +('202.174.143.144', '202.174.143.151', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.174.143.152', '202.174.143.159', 2147483647, 2147483647, 'MY', 'Malaysia'), +('202.174.143.160', '202.174.143.167', 2147483647, 2147483647, 'MN', 'Mongolia'), +('202.174.143.168', '202.174.143.175', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.174.143.176', '202.174.143.183', 2147483647, 2147483647, 'MN', 'Mongolia'), +('202.174.143.184', '202.174.143.199', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.174.143.200', '202.174.143.207', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.174.143.208', '202.174.143.215', 2147483647, 2147483647, 'MY', 'Malaysia'), +('202.174.143.216', '202.174.143.223', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.174.143.224', '202.174.143.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.174.144.0', '202.174.144.7', 2147483647, 2147483647, 'AF', 'Afghanistan'), +('202.174.144.8', '202.174.144.15', 2147483647, 2147483647, 'MY', 'Malaysia'), +('202.174.144.16', '202.174.144.23', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.174.144.24', '202.174.144.47', 2147483647, 2147483647, 'NP', 'Nepal'), +('202.174.144.48', '202.174.144.55', 2147483647, 2147483647, 'MN', 'Mongolia'), +('202.174.144.56', '202.174.144.63', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.174.144.64', '202.174.144.71', 2147483647, 2147483647, 'MY', 'Malaysia'), +('202.174.144.72', '202.174.144.87', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.174.144.88', '202.174.144.127', 2147483647, 2147483647, 'MY', 'Malaysia'), +('202.174.144.128', '202.174.144.135', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.174.144.136', '202.174.144.143', 2147483647, 2147483647, 'MY', 'Malaysia'), +('202.174.144.144', '202.174.144.151', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.174.144.152', '202.174.144.167', 2147483647, 2147483647, 'MY', 'Malaysia'), +('202.174.144.168', '202.174.144.175', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.174.144.176', '202.174.144.191', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('202.174.144.192', '202.174.144.199', 2147483647, 2147483647, 'MN', 'Mongolia'), +('202.174.144.200', '202.174.144.207', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.174.144.208', '202.174.144.215', 2147483647, 2147483647, 'MY', 'Malaysia'), +('202.174.144.216', '202.174.144.223', 2147483647, 2147483647, 'AF', 'Afghanistan'), +('202.174.144.224', '202.174.144.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.174.145.0', '202.174.145.63', 2147483647, 2147483647, 'LK', 'Sri Lanka'), +('202.174.145.64', '202.174.145.95', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('202.174.145.96', '202.174.145.127', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.174.145.128', '202.174.145.159', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('202.174.145.160', '202.174.146.127', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.174.146.128', '202.174.147.63', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('202.174.147.64', '202.174.147.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.174.148.0', '202.174.148.31', 2147483647, 2147483647, 'KZ', 'Kazakstan'), +('202.174.148.32', '202.174.148.47', 2147483647, 2147483647, 'PK', 'Pakistan'), +('202.174.148.48', '202.174.148.55', 2147483647, 2147483647, 'AF', 'Afghanistan'), +('202.174.148.56', '202.174.148.63', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.174.148.64', '202.174.148.79', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('202.174.148.80', '202.174.148.87', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.174.148.88', '202.174.148.95', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.174.148.96', '202.174.148.127', 2147483647, 2147483647, 'NP', 'Nepal'), +('202.174.148.128', '202.174.148.135', 2147483647, 2147483647, 'AF', 'Afghanistan'), +('202.174.148.136', '202.174.148.143', 2147483647, 2147483647, 'IN', 'India'), +('202.174.148.144', '202.174.148.159', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('202.174.148.160', '202.174.148.175', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.174.148.176', '202.174.148.207', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.174.148.208', '202.174.148.215', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.174.148.216', '202.174.148.223', 2147483647, 2147483647, 'PK', 'Pakistan'), +('202.174.148.224', '202.174.148.239', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('202.174.148.240', '202.174.148.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.174.149.0', '202.174.149.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.174.150.0', '202.174.150.255', 2147483647, 2147483647, 'PK', 'Pakistan'), +('202.174.151.0', '202.174.151.63', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('202.174.151.64', '202.174.151.127', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.174.151.128', '202.174.151.159', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('202.174.151.160', '202.174.151.191', 2147483647, 2147483647, 'KZ', 'Kazakstan'), +('202.174.151.192', '202.174.151.255', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('202.174.152.0', '202.174.152.63', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.174.152.64', '202.174.152.127', 2147483647, 2147483647, 'NP', 'Nepal'), +('202.174.152.128', '202.174.152.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.174.153.0', '202.174.153.15', 2147483647, 2147483647, 'NP', 'Nepal'), +('202.174.153.16', '202.174.153.23', 2147483647, 2147483647, 'MN', 'Mongolia'), +('202.174.153.24', '202.174.153.31', 2147483647, 2147483647, 'MY', 'Malaysia'), +('202.174.153.32', '202.174.153.47', 2147483647, 2147483647, 'MN', 'Mongolia'), +('202.174.153.48', '202.174.153.63', 2147483647, 2147483647, 'MY', 'Malaysia'), +('202.174.153.64', '202.174.153.71', 2147483647, 2147483647, 'MN', 'Mongolia'), +('202.174.153.72', '202.174.153.79', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.174.153.80', '202.174.153.95', 2147483647, 2147483647, 'MY', 'Malaysia'), +('202.174.153.96', '202.174.153.103', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('202.174.153.104', '202.174.153.111', 2147483647, 2147483647, 'MY', 'Malaysia'), +('202.174.153.112', '202.174.153.127', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('202.174.153.128', '202.174.153.135', 2147483647, 2147483647, 'KZ', 'Kazakstan'), +('202.174.153.136', '202.174.153.143', 2147483647, 2147483647, 'MN', 'Mongolia'), +('202.174.153.144', '202.174.153.159', 2147483647, 2147483647, 'MY', 'Malaysia'), +('202.174.153.160', '202.174.153.175', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('202.174.153.176', '202.174.153.183', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.174.153.184', '202.174.153.191', 2147483647, 2147483647, 'AF', 'Afghanistan'), +('202.174.153.192', '202.174.153.199', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.174.153.200', '202.174.153.207', 2147483647, 2147483647, 'MN', 'Mongolia'), +('202.174.153.208', '202.174.153.231', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.174.153.232', '202.174.153.239', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('202.174.153.240', '202.174.153.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('202.174.154.0', '202.174.154.7', 2147483647, 2147483647, 'AF', 'Afghanistan'), +('202.174.154.8', '202.174.154.15', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.174.154.16', '202.174.154.23', 2147483647, 2147483647, 'NP', 'Nepal'), +('202.174.154.24', '202.174.154.31', 2147483647, 2147483647, 'AF', 'Afghanistan'), +('202.174.154.32', '202.174.154.39', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.174.154.40', '202.174.154.47', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.174.154.48', '202.174.154.55', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.174.154.56', '202.174.154.63', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.174.154.64', '202.174.154.71', 2147483647, 2147483647, 'MN', 'Mongolia'), +('202.174.154.72', '202.174.154.95', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.174.154.96', '202.174.154.111', 2147483647, 2147483647, 'AF', 'Afghanistan'), +('202.174.154.112', '202.174.154.119', 2147483647, 2147483647, 'MY', 'Malaysia'), +('202.174.154.120', '202.174.154.127', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.174.154.128', '202.174.154.135', 2147483647, 2147483647, 'AF', 'Afghanistan'), +('202.174.154.136', '202.174.154.143', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('202.174.154.144', '202.174.154.147', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.174.154.148', '202.174.154.155', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.174.154.156', '202.174.154.159', 2147483647, 2147483647, 'NP', 'Nepal'), +('202.174.154.160', '202.174.154.167', 2147483647, 2147483647, 'AF', 'Afghanistan'), +('202.174.154.168', '202.174.154.175', 2147483647, 2147483647, 'MY', 'Malaysia'), +('202.174.154.176', '202.174.154.179', 2147483647, 2147483647, 'LK', 'Sri Lanka'), +('202.174.154.180', '202.174.154.187', 2147483647, 2147483647, 'AF', 'Afghanistan'), +('202.174.154.188', '202.174.154.199', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.174.154.200', '202.174.154.211', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.174.154.212', '202.174.154.215', 2147483647, 2147483647, 'AF', 'Afghanistan'), +('202.174.154.216', '202.174.154.219', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.174.154.220', '202.174.154.223', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.174.154.224', '202.174.154.231', 2147483647, 2147483647, 'MN', 'Mongolia'), +('202.174.154.232', '202.174.154.255', 2147483647, 2147483647, 'NP', 'Nepal'), +('202.174.155.0', '202.174.155.7', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.174.155.8', '202.174.155.15', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.174.155.16', '202.174.155.31', 2147483647, 2147483647, 'PK', 'Pakistan'), +('202.174.155.32', '202.174.155.47', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.174.155.48', '202.174.155.63', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.174.155.64', '202.174.155.127', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.174.155.128', '202.174.155.136', 2147483647, 2147483647, 'AF', 'Afghanistan'), +('202.174.155.137', '202.174.155.143', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.174.155.144', '202.174.155.151', 2147483647, 2147483647, 'AF', 'Afghanistan'), +('202.174.155.152', '202.174.155.159', 2147483647, 2147483647, 'KZ', 'Kazakstan'), +('202.174.155.160', '202.174.155.167', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('202.174.155.168', '202.174.155.174', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.174.155.175', '202.174.155.175', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.174.155.176', '202.174.155.183', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.174.155.184', '202.174.155.191', 2147483647, 2147483647, 'MY', 'Malaysia'), +('202.174.155.192', '202.174.155.199', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.174.155.200', '202.174.155.207', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.174.155.208', '202.174.155.216', 2147483647, 2147483647, 'MN', 'Mongolia'), +('202.174.155.217', '202.174.155.223', 2147483647, 2147483647, 'AF', 'Afghanistan'), +('202.174.155.224', '202.174.155.232', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('202.174.155.233', '202.174.155.239', 2147483647, 2147483647, 'MY', 'Malaysia'), +('202.174.155.240', '202.174.155.247', 2147483647, 2147483647, 'AF', 'Afghanistan'), +('202.174.155.248', '202.174.155.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('202.174.156.0', '202.174.156.63', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('202.174.156.64', '202.174.156.127', 2147483647, 2147483647, 'AF', 'Afghanistan'), +('202.174.156.128', '202.174.156.191', 2147483647, 2147483647, 'VN', 'Vietnam'), +('202.174.156.192', '202.174.156.215', 2147483647, 2147483647, 'AF', 'Afghanistan'), +('202.174.156.216', '202.174.156.223', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('202.174.156.224', '202.174.156.231', 2147483647, 2147483647, 'PK', 'Pakistan'), +('202.174.156.232', '202.174.156.239', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.174.156.240', '202.174.156.247', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.174.156.248', '202.174.156.255', 2147483647, 2147483647, 'AF', 'Afghanistan'), +('202.174.157.0', '202.174.157.63', 2147483647, 2147483647, 'PK', 'Pakistan'), +('202.174.157.64', '202.174.157.127', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('202.174.157.128', '202.174.157.191', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.174.157.192', '202.174.157.223', 2147483647, 2147483647, 'AF', 'Afghanistan'), +('202.174.157.224', '202.174.157.231', 2147483647, 2147483647, 'LK', 'Sri Lanka'), +('202.174.157.232', '202.174.157.239', 2147483647, 2147483647, 'AF', 'Afghanistan'), +('202.174.157.240', '202.174.157.247', 2147483647, 2147483647, 'LK', 'Sri Lanka'), +('202.174.157.248', '202.174.159.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.174.160.0', '202.174.175.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.174.176.0', '202.174.177.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.174.178.0', '202.174.191.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.174.192.0', '202.174.223.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.174.224.0', '202.174.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.175.0.0', '202.175.127.255', 2147483647, 2147483647, 'MO', 'Macau'), +('202.175.128.0', '202.175.143.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.175.144.0', '202.175.159.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.175.160.0', '202.175.191.255', 2147483647, 2147483647, 'MO', 'Macau'), +('202.175.192.0', '202.175.255.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('202.176.0.0', '202.176.7.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.176.8.0', '202.176.11.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.176.12.0', '202.176.13.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('202.176.14.0', '202.176.15.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.176.16.0', '202.176.63.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.176.64.0', '202.176.191.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('202.176.192.0', '202.176.223.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.177.0.0', '202.177.31.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.177.32.0', '202.177.39.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.177.40.0', '202.177.43.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.177.44.0', '202.177.47.255', 2147483647, 2147483647, 'IN', 'India'), +('202.177.48.0', '202.177.127.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.177.128.0', '202.177.191.255', 2147483647, 2147483647, 'IN', 'India'), +('202.177.192.0', '202.177.196.95', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.177.196.96', '202.177.196.111', 2147483647, 2147483647, 'AU', 'Australia'), +('202.177.196.112', '202.177.201.231', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.177.201.232', '202.177.201.239', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.177.201.240', '202.177.204.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.177.205.0', '202.177.205.63', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.177.205.64', '202.177.206.167', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.177.206.168', '202.177.206.175', 2147483647, 2147483647, 'AU', 'Australia'), +('202.177.206.176', '202.177.212.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.177.213.0', '202.177.213.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.177.214.0', '202.177.214.151', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.177.214.152', '202.177.214.159', 2147483647, 2147483647, 'AU', 'Australia'), +('202.177.214.160', '202.177.214.191', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.177.214.192', '202.177.214.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.177.215.0', '202.177.221.23', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.177.221.24', '202.177.221.31', 2147483647, 2147483647, 'AU', 'Australia'), +('202.177.221.32', '202.177.221.127', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.177.221.128', '202.177.221.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.177.222.0', '202.177.223.103', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.177.223.104', '202.177.223.111', 2147483647, 2147483647, 'AU', 'Australia'), +('202.177.223.112', '202.177.223.127', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.177.223.128', '202.177.223.143', 2147483647, 2147483647, 'AU', 'Australia'), +('202.177.223.144', '202.177.223.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('202.177.224.0', '202.177.255.255', 2147483647, 2147483647, 'IN', 'India'), +('202.178.0.0', '202.178.79.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('202.178.80.0', '202.178.111.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.178.112.0', '202.178.127.255', 2147483647, 2147483647, 'KH', 'Cambodia'), +('202.178.128.0', '202.178.255.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('202.179.0.0', '202.179.31.255', 2147483647, 2147483647, 'MN', 'Mongolia'), +('202.179.32.0', '202.179.63.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.179.64.0', '202.179.95.255', 2147483647, 2147483647, 'IN', 'India'), +('202.179.96.0', '202.179.127.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('202.179.128.0', '202.179.159.255', 2147483647, 2147483647, 'PK', 'Pakistan'), +('202.179.160.0', '202.179.175.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.179.176.0', '202.179.183.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('202.179.184.0', '202.179.191.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.179.192.0', '202.179.239.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.179.240.0', '202.179.255.255', 2147483647, 2147483647, 'CN', 'China'), +('202.180.0.0', '202.180.31.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.180.32.0', '202.180.47.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.180.48.0', '202.180.55.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.180.56.0', '202.180.63.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.180.64.0', '202.180.127.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.180.128.0', '202.180.159.255', 2147483647, 2147483647, 'CN', 'China'), +('202.180.160.0', '202.180.175.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.180.176.0', '202.180.207.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.180.216.0', '202.180.223.255', 2147483647, 2147483647, 'MN', 'Mongolia'), +('202.180.224.0', '202.181.31.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.181.64.0', '202.181.95.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.181.96.0', '202.181.111.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.181.112.0', '202.181.127.255', 2147483647, 2147483647, 'CN', 'China'), +('202.181.128.0', '202.181.255.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.182.0.0', '202.182.31.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('202.182.48.0', '202.182.63.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.182.64.0', '202.182.159.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.182.160.0', '202.182.191.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.182.224.0', '202.182.255.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.183.0.0', '202.183.31.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.183.32.0', '202.183.47.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('202.183.48.0', '202.183.63.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.183.64.0', '202.183.79.255', 2147483647, 2147483647, 'IN', 'India'), +('202.183.80.0', '202.183.95.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.183.96.0', '202.183.127.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.183.128.0', '202.183.255.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('202.184.0.0', '202.188.255.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('202.189.64.0', '202.189.79.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.189.80.0', '202.189.95.255', 2147483647, 2147483647, 'CN', 'China'), +('202.189.96.0', '202.189.127.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('202.189.128.0', '202.189.143.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('202.189.144.0', '202.189.159.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.189.160.0', '202.189.175.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.189.176.0', '202.189.183.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.189.192.0', '202.189.223.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.189.224.0', '202.189.255.255', 2147483647, 2147483647, 'IN', 'India'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('202.190.0.0', '202.190.255.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('202.191.0.0', '202.191.0.255', 2147483647, 2147483647, 'DE', 'Germany'), +('202.191.2.0', '202.191.3.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.191.4.0', '202.191.15.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.191.16.0', '202.191.31.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.191.32.0', '202.191.47.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('202.191.48.0', '202.191.55.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.191.56.0', '202.191.59.255', 2147483647, 2147483647, 'VN', 'Vietnam'), +('202.191.60.0', '202.191.63.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.191.64.0', '202.191.95.255', 2147483647, 2147483647, 'IN', 'India'), +('202.191.96.0', '202.191.111.255', 2147483647, 2147483647, 'AU', 'Australia'), +('202.191.112.0', '202.191.119.255', 2147483647, 2147483647, 'JP', 'Japan'), +('202.191.120.0', '202.191.127.255', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('202.191.128.0', '202.191.255.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('202.192.0.0', '202.192.241.255', 2147483647, 2147483647, 'CN', 'China'), +('202.192.242.0', '202.192.242.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('202.192.243.0', '202.207.255.255', 2147483647, 2147483647, 'CN', 'China'), +('202.208.0.0', '202.242.2.98', 2147483647, 2147483647, 'JP', 'Japan'), +('202.242.2.99', '202.242.2.99', 2147483647, 2147483647, 'ID', 'Indonesia'), +('202.242.2.100', '202.242.2.110', 2147483647, 2147483647, 'JP', 'Japan'), +('202.242.2.111', '202.242.2.111', 2147483647, 2147483647, 'IN', 'India'), +('202.242.2.112', '202.255.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.0.0.0', '203.4.135.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.4.136.0', '203.4.143.255', 2147483647, 2147483647, 'US', 'United States'), +('203.4.144.0', '203.4.159.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.4.160.0', '203.4.160.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('203.4.161.0', '203.8.108.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.8.109.0', '203.8.109.255', 2147483647, 2147483647, 'IN', 'India'), +('203.8.110.0', '203.9.77.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.9.78.0', '203.9.79.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.9.80.0', '203.9.175.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.9.176.0', '203.9.183.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('203.9.184.0', '203.10.15.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.10.16.0', '203.10.23.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('203.10.24.0', '203.11.183.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.11.184.0', '203.11.184.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.11.185.0', '203.12.17.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.12.18.0', '203.12.18.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('203.12.19.0', '203.12.19.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.12.22.0', '203.12.117.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.12.118.0', '203.12.118.255', 2147483647, 2147483647, 'NP', 'Nepal'), +('203.12.119.0', '203.12.219.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.12.220.0', '203.12.220.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('203.12.221.0', '203.12.221.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.12.222.0', '203.12.223.255', 2147483647, 2147483647, 'IN', 'India'), +('203.12.224.0', '203.12.248.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.12.249.0', '203.12.249.255', 2147483647, 2147483647, 'NF', 'Norfolk Island'), +('203.12.250.0', '203.13.167.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.13.168.0', '203.13.171.255', 2147483647, 2147483647, 'IN', 'India'), +('203.13.172.0', '203.14.17.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.14.18.0', '203.14.18.255', 2147483647, 2147483647, 'IN', 'India'), +('203.14.19.0', '203.14.165.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.14.166.0', '203.14.166.255', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('203.14.167.0', '203.14.175.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.14.176.0', '203.14.176.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('203.14.177.0', '203.14.182.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.14.183.0', '203.14.183.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('203.14.184.0', '203.14.211.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.14.212.0', '203.14.212.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.14.213.0', '203.16.164.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.16.165.0', '203.16.165.255', 2147483647, 2147483647, 'IN', 'India'), +('203.16.166.0', '203.17.225.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.17.226.0', '203.17.226.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('203.17.227.0', '203.17.239.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.17.240.0', '203.17.243.255', 2147483647, 2147483647, 'NF', 'Norfolk Island'), +('203.17.244.0', '203.18.25.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.18.26.0', '203.18.26.255', 2147483647, 2147483647, 'IN', 'India'), +('203.18.27.0', '203.18.49.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.18.50.0', '203.18.50.255', 2147483647, 2147483647, 'CN', 'China'), +('203.18.51.0', '203.18.136.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.18.137.0', '203.18.137.255', 2147483647, 2147483647, 'IN', 'India'), +('203.18.138.0', '203.19.0.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.19.1.0', '203.19.1.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.19.2.0', '203.19.2.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.19.3.0', '203.19.3.255', 2147483647, 2147483647, 'IN', 'India'), +('203.19.4.0', '203.19.4.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('203.19.5.0', '203.19.100.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.19.101.0', '203.19.101.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.19.102.0', '203.19.146.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.19.147.0', '203.19.147.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.19.148.0', '203.20.43.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.20.44.0', '203.20.44.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.20.45.0', '203.20.104.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.20.105.0', '203.20.105.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.20.106.0', '203.21.6.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.21.7.0', '203.21.7.255', 2147483647, 2147483647, 'IN', 'India'), +('203.21.8.0', '203.21.25.55', 2147483647, 2147483647, 'AU', 'Australia'), +('203.21.25.56', '203.21.25.59', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('203.21.25.60', '203.21.25.75', 2147483647, 2147483647, 'AU', 'Australia'), +('203.21.25.76', '203.21.25.79', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('203.21.25.80', '203.21.25.107', 2147483647, 2147483647, 'AU', 'Australia'), +('203.21.25.108', '203.21.25.111', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('203.21.25.112', '203.21.25.139', 2147483647, 2147483647, 'AU', 'Australia'), +('203.21.25.140', '203.21.25.143', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('203.21.25.144', '203.21.25.199', 2147483647, 2147483647, 'AU', 'Australia'), +('203.21.25.200', '203.21.25.207', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('203.21.25.208', '203.21.26.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.21.27.0', '203.21.27.31', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('203.21.27.32', '203.21.27.35', 2147483647, 2147483647, 'AU', 'Australia'), +('203.21.27.36', '203.21.27.39', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('203.21.27.40', '203.21.27.95', 2147483647, 2147483647, 'AU', 'Australia'), +('203.21.27.96', '203.21.27.111', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('203.21.27.112', '203.21.27.127', 2147483647, 2147483647, 'AU', 'Australia'), +('203.21.27.128', '203.21.27.135', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('203.21.27.136', '203.21.27.151', 2147483647, 2147483647, 'AU', 'Australia'), +('203.21.27.152', '203.21.27.159', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('203.21.27.160', '203.21.27.191', 2147483647, 2147483647, 'AU', 'Australia'), +('203.21.27.192', '203.21.27.207', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('203.21.27.208', '203.21.27.223', 2147483647, 2147483647, 'AU', 'Australia'), +('203.21.27.224', '203.21.27.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('203.21.28.0', '203.21.31.51', 2147483647, 2147483647, 'AU', 'Australia'), +('203.21.31.52', '203.21.31.55', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('203.21.31.56', '203.21.31.71', 2147483647, 2147483647, 'AU', 'Australia'), +('203.21.31.72', '203.21.31.111', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('203.21.31.112', '203.21.31.151', 2147483647, 2147483647, 'AU', 'Australia'), +('203.21.31.152', '203.21.31.155', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('203.21.31.156', '203.21.31.167', 2147483647, 2147483647, 'AU', 'Australia'), +('203.21.31.168', '203.21.31.175', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('203.21.31.176', '203.21.31.191', 2147483647, 2147483647, 'AU', 'Australia'), +('203.21.31.192', '203.21.31.199', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('203.21.31.200', '203.21.31.223', 2147483647, 2147483647, 'AU', 'Australia'), +('203.21.31.224', '203.21.31.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('203.21.32.0', '203.22.103.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.22.104.0', '203.22.105.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.22.106.0', '203.22.203.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.22.204.0', '203.22.204.255', 2147483647, 2147483647, 'US', 'United States'), +('203.22.205.0', '203.23.185.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.23.186.0', '203.23.186.255', 2147483647, 2147483647, 'IN', 'India'), +('203.23.188.0', '203.24.75.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.24.76.0', '203.24.77.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('203.24.78.0', '203.24.78.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.24.80.0', '203.24.86.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.24.87.0', '203.24.87.255', 2147483647, 2147483647, 'IN', 'India'), +('203.24.88.0', '203.26.76.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.26.77.0', '203.26.77.255', 2147483647, 2147483647, 'PK', 'Pakistan'), +('203.26.78.0', '203.26.178.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.26.179.0', '203.26.179.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('203.26.180.0', '203.27.228.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.27.229.0', '203.27.229.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.27.230.0', '203.27.234.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.27.235.0', '203.27.235.255', 2147483647, 2147483647, 'IN', 'India'), +('203.27.236.0', '203.27.251.139', 2147483647, 2147483647, 'AU', 'Australia'), +('203.27.251.140', '203.27.251.160', 2147483647, 2147483647, 'JP', 'Japan'), +('203.27.251.161', '203.29.221.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.29.222.0', '203.29.222.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.29.223.0', '203.30.37.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.30.38.0', '203.30.39.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.30.40.0', '203.30.47.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.30.48.0', '203.30.49.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.30.50.0', '203.30.173.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.30.174.0', '203.30.174.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('203.30.175.0', '203.30.235.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.30.236.0', '203.30.237.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('203.30.238.0', '203.30.253.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.30.254.0', '203.30.255.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('203.31.0.0', '203.31.31.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.31.32.0', '203.31.33.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.31.34.0', '203.31.87.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.31.88.0', '203.31.89.255', 2147483647, 2147483647, 'US', 'United States'), +('203.31.90.0', '203.31.119.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.31.120.0', '203.31.120.255', 2147483647, 2147483647, 'US', 'United States'), +('203.31.121.0', '203.31.163.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.31.164.0', '203.31.165.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('203.31.166.0', '203.31.233.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.31.234.0', '203.31.234.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('203.31.235.0', '203.32.3.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.32.4.0', '203.32.5.255', 2147483647, 2147483647, 'IN', 'India'), +('203.32.6.0', '203.32.220.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.32.221.0', '203.32.221.255', 2147483647, 2147483647, 'IN', 'India'), +('203.32.222.0', '203.33.188.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.33.189.0', '203.33.189.255', 2147483647, 2147483647, 'KH', 'Cambodia'), +('203.33.190.0', '203.33.195.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.33.196.0', '203.33.196.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('203.33.197.0', '203.33.197.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.33.198.0', '203.33.199.255', 2147483647, 2147483647, 'IN', 'India'), +('203.33.200.0', '203.33.239.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.33.240.0', '203.33.240.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('203.33.241.0', '203.34.36.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.34.37.0', '203.34.37.255', 2147483647, 2147483647, 'MN', 'Mongolia'), +('203.34.38.0', '203.34.80.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.34.81.0', '203.34.81.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.34.82.0', '203.34.115.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.34.116.0', '203.34.117.255', 2147483647, 2147483647, 'IN', 'India'), +('203.34.118.0', '203.34.119.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('203.34.120.0', '203.34.143.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.34.144.0', '203.34.144.255', 2147483647, 2147483647, 'VN', 'Vietnam'), +('203.34.145.0', '203.34.146.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.34.148.0', '203.34.151.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.34.152.0', '203.34.153.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.34.154.0', '203.34.154.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.34.155.0', '203.34.245.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.34.246.0', '203.34.246.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('203.34.247.0', '203.55.66.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.55.67.0', '203.55.67.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('203.55.68.0', '203.55.152.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.55.153.0', '203.55.153.255', 2147483647, 2147483647, 'PL', 'Poland'), +('203.55.154.0', '203.55.159.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.55.160.0', '203.55.160.255', 2147483647, 2147483647, 'IN', 'India'), +('203.55.161.0', '203.55.172.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.55.173.0', '203.55.173.255', 2147483647, 2147483647, 'IN', 'India'), +('203.55.174.0', '203.55.180.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.55.181.0', '203.55.181.255', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('203.55.182.0', '203.56.182.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.56.183.0', '203.56.183.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.56.184.0', '203.56.234.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.56.235.0', '203.56.235.255', 2147483647, 2147483647, 'US', 'United States'), +('203.56.236.0', '203.56.240.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.56.241.0', '203.56.241.255', 2147483647, 2147483647, 'IN', 'India'), +('203.56.242.0', '203.56.252.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.56.253.0', '203.56.253.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.56.254.0', '203.56.255.223', 2147483647, 2147483647, 'AU', 'Australia'), +('203.56.255.224', '203.56.255.239', 2147483647, 2147483647, 'IN', 'India'), +('203.56.255.240', '203.57.23.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.57.24.0', '203.57.25.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('203.57.26.0', '203.57.144.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.57.145.0', '203.57.145.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('203.57.146.0', '203.61.118.79', 2147483647, 2147483647, 'AU', 'Australia'), +('203.61.118.80', '203.61.118.95', 2147483647, 2147483647, 'MT', 'Malta'), +('203.61.118.96', '203.62.0.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.62.1.0', '203.62.1.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('203.62.3.0', '203.62.151.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.62.152.0', '203.62.155.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('203.62.156.0', '203.62.171.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.62.172.0', '203.62.175.255', 2147483647, 2147483647, 'IN', 'India'), +('203.62.176.0', '203.62.194.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.62.195.0', '203.62.195.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.62.196.0', '203.63.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.64.0.0', '203.75.255.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('203.76.0.0', '203.76.63.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.76.64.0', '203.76.95.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.76.96.0', '203.76.127.255', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('203.76.128.0', '203.76.143.255', 2147483647, 2147483647, 'IN', 'India'), +('203.76.144.0', '203.76.159.255', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('203.76.160.0', '203.76.163.255', 2147483647, 2147483647, 'KH', 'Cambodia'), +('203.76.164.0', '203.76.167.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.76.168.0', '203.76.171.255', 2147483647, 2147483647, 'IN', 'India'), +('203.76.172.0', '203.76.175.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.76.176.0', '203.76.191.255', 2147483647, 2147483647, 'IN', 'India'), +('203.76.192.0', '203.76.255.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('203.77.0.0', '203.77.127.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('203.77.128.0', '203.77.159.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.77.160.0', '203.77.175.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.77.176.0', '203.77.176.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('203.77.177.0', '203.77.177.255', 2147483647, 2147483647, 'IN', 'India'), +('203.77.178.0', '203.77.178.255', 2147483647, 2147483647, 'VN', 'Vietnam'), +('203.77.179.0', '203.77.179.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.77.180.0', '203.77.183.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.77.184.0', '203.77.191.255', 2147483647, 2147483647, 'US', 'United States'), +('203.77.192.0', '203.77.207.255', 2147483647, 2147483647, 'IN', 'India'), +('203.77.208.0', '203.77.255.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('203.78.0.0', '203.78.3.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('203.78.4.0', '203.78.4.255', 2147483647, 2147483647, 'IN', 'India'), +('203.78.5.0', '203.78.7.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.78.8.0', '203.78.15.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.78.16.0', '203.78.31.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.78.32.0', '203.78.47.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.78.64.0', '203.78.95.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.78.96.0', '203.78.111.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('203.78.112.0', '203.78.127.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('203.78.128.0', '203.78.159.255', 2147483647, 2147483647, 'IN', 'India'), +('203.78.160.0', '203.78.175.255', 2147483647, 2147483647, 'NP', 'Nepal'), +('203.78.176.0', '203.78.191.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('203.78.192.0', '203.78.207.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('203.78.208.0', '203.78.223.255', 2147483647, 2147483647, 'IN', 'India'), +('203.78.224.0', '203.78.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.79.0.0', '203.79.15.255', 2147483647, 2147483647, 'CN', 'China'), +('203.79.16.0', '203.79.23.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.79.32.0', '203.79.47.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('203.79.48.0', '203.79.63.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.79.64.0', '203.79.127.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('203.79.128.0', '203.79.255.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('203.80.0.0', '203.80.3.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.80.4.0', '203.80.5.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.80.6.0', '203.80.7.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.80.8.0', '203.80.15.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('203.80.16.0', '203.80.23.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('203.80.24.0', '203.80.31.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.80.48.0', '203.80.55.255', 2147483647, 2147483647, 'NC', 'New Caledonia'), +('203.80.56.0', '203.80.56.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('203.80.58.0', '203.80.59.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.80.60.0', '203.80.63.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('203.80.64.0', '203.80.127.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.80.128.0', '203.80.135.255', 2147483647, 2147483647, 'PK', 'Pakistan'), +('203.80.136.0', '203.80.143.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('203.80.144.0', '203.80.159.255', 2147483647, 2147483647, 'CN', 'China'), +('203.80.160.0', '203.80.175.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.80.176.0', '203.80.177.191', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.80.177.192', '203.80.177.255', 2147483647, 2147483647, 'PK', 'Pakistan'), +('203.80.178.0', '203.80.255.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.81.8.0', '203.81.11.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('203.81.12.0', '203.81.15.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.81.16.0', '203.81.31.255', 2147483647, 2147483647, 'CN', 'China'), +('203.81.32.0', '203.81.63.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.81.64.0', '203.81.95.255', 2147483647, 2147483647, 'MM', 'Myanmar'), +('203.81.96.0', '203.81.111.255', 2147483647, 2147483647, 'LK', 'Sri Lanka'), +('203.81.112.0', '203.81.127.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.81.128.0', '203.81.159.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('203.81.160.0', '203.81.175.255', 2147483647, 2147483647, 'MM', 'Myanmar'), +('203.81.176.0', '203.81.183.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.81.184.0', '203.81.191.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('203.81.192.0', '203.81.239.255', 2147483647, 2147483647, 'PK', 'Pakistan'), +('203.81.240.0', '203.81.247.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.81.248.0', '203.81.251.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('203.81.252.0', '203.82.1.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.82.2.0', '203.82.3.255', 2147483647, 2147483647, 'MV', 'Maldives'), +('203.82.4.0', '203.82.7.255', 2147483647, 2147483647, 'IN', 'India'), +('203.82.8.0', '203.82.15.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.82.24.0', '203.82.31.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.82.32.0', '203.82.47.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('203.82.48.0', '203.82.63.255', 2147483647, 2147483647, 'PK', 'Pakistan'), +('203.82.64.0', '203.82.95.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('203.82.96.0', '203.82.111.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.82.112.0', '203.82.159.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.82.160.0', '203.82.191.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.82.192.0', '203.82.207.255', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('203.82.208.0', '203.82.217.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.82.218.0', '203.82.218.255', 2147483647, 2147483647, 'IN', 'India'), +('203.82.219.0', '203.82.221.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('203.82.222.0', '203.82.223.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.82.224.0', '203.82.239.255', 2147483647, 2147483647, 'KH', 'Cambodia'), +('203.82.240.0', '203.82.247.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('203.82.248.0', '203.82.249.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('203.82.250.0', '203.82.251.255', 2147483647, 2147483647, 'IN', 'India'), +('203.82.252.0', '203.83.3.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.83.4.0', '203.83.7.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.83.8.0', '203.83.15.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.83.16.0', '203.83.23.255', 2147483647, 2147483647, 'PG', 'Papua New Guinea'), +('203.83.24.0', '203.83.47.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('203.83.48.0', '203.83.55.255', 2147483647, 2147483647, 'IO', 'British Indian Ocean Territory'), +('203.83.56.0', '203.83.63.255', 2147483647, 2147483647, 'CN', 'China'), +('203.83.64.0', '203.83.127.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.83.128.0', '203.83.159.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('203.83.160.0', '203.83.191.255', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('203.83.192.0', '203.83.215.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.83.216.0', '203.83.217.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('203.83.218.0', '203.83.218.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('203.83.219.0', '203.83.219.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.83.220.0', '203.83.223.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.83.224.0', '203.83.239.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.83.240.0', '203.83.247.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.83.248.0', '203.83.249.255', 2147483647, 2147483647, 'IN', 'India'), +('203.83.250.0', '203.83.250.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.83.251.0', '203.83.251.255', 2147483647, 2147483647, 'FJ', 'Fiji'), +('203.83.252.0', '203.84.63.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.84.64.0', '203.84.127.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.84.128.0', '203.84.129.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.84.130.0', '203.84.131.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('203.84.132.0', '203.84.132.255', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('203.84.133.0', '203.84.133.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.84.134.0', '203.84.135.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('203.84.136.0', '203.84.143.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('203.84.144.0', '203.84.151.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('203.84.152.0', '203.84.159.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('203.84.160.0', '203.84.191.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('203.84.192.0', '203.84.223.255', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('203.84.224.0', '203.84.239.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.84.240.0', '203.84.255.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('203.85.0.0', '203.85.255.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.86.0.0', '203.86.95.255', 2147483647, 2147483647, 'CN', 'China'), +('203.86.96.0', '203.86.127.255', 2147483647, 2147483647, 'IN', 'India'), +('203.86.128.0', '203.86.191.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.86.192.0', '203.86.207.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('203.86.208.0', '203.86.223.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.86.224.0', '203.86.231.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.86.232.0', '203.86.239.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.86.240.0', '203.86.250.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.86.251.0', '203.86.251.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.86.252.0', '203.86.253.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.87.0.0', '203.87.127.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.87.128.0', '203.87.255.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('203.88.0.0', '203.88.31.255', 2147483647, 2147483647, 'IN', 'India'), +('203.88.32.0', '203.88.63.255', 2147483647, 2147483647, 'CN', 'China'), +('203.88.64.0', '203.88.65.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.88.66.0', '203.88.66.15', 2147483647, 2147483647, 'ID', 'Indonesia'), +('203.88.66.16', '203.88.66.31', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.88.66.32', '203.88.66.47', 2147483647, 2147483647, 'ID', 'Indonesia'), +('203.88.66.48', '203.88.66.63', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.88.66.64', '203.88.66.71', 2147483647, 2147483647, 'AF', 'Afghanistan'), +('203.88.66.72', '203.88.66.95', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.88.66.96', '203.88.66.103', 2147483647, 2147483647, 'MY', 'Malaysia'), +('203.88.66.104', '203.88.66.111', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.88.66.112', '203.88.66.119', 2147483647, 2147483647, 'ID', 'Indonesia'), +('203.88.66.120', '203.88.66.123', 2147483647, 2147483647, 'NP', 'Nepal'), +('203.88.66.124', '203.88.66.127', 2147483647, 2147483647, 'PK', 'Pakistan'), +('203.88.66.128', '203.88.66.151', 2147483647, 2147483647, 'ID', 'Indonesia'), +('203.88.66.152', '203.88.66.159', 2147483647, 2147483647, 'MY', 'Malaysia'), +('203.88.66.160', '203.88.66.167', 2147483647, 2147483647, 'AF', 'Afghanistan'), +('203.88.66.168', '203.88.66.175', 2147483647, 2147483647, 'MY', 'Malaysia'), +('203.88.66.176', '203.88.66.183', 2147483647, 2147483647, 'ID', 'Indonesia'), +('203.88.66.184', '203.88.66.191', 2147483647, 2147483647, 'PK', 'Pakistan'), +('203.88.66.192', '203.88.66.199', 2147483647, 2147483647, 'MY', 'Malaysia'), +('203.88.66.200', '203.88.66.223', 2147483647, 2147483647, 'PK', 'Pakistan'), +('203.88.66.224', '203.88.66.231', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.88.66.232', '203.88.66.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('203.88.67.0', '203.88.67.31', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('203.88.67.32', '203.88.67.63', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.88.67.64', '203.88.67.127', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('203.88.67.128', '203.88.67.135', 2147483647, 2147483647, 'ID', 'Indonesia'), +('203.88.67.136', '203.88.67.143', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.88.67.144', '203.88.67.159', 2147483647, 2147483647, 'NP', 'Nepal'), +('203.88.67.160', '203.88.67.175', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.88.67.176', '203.88.67.191', 2147483647, 2147483647, 'ID', 'Indonesia'), +('203.88.67.192', '203.88.67.255', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('203.88.68.0', '203.88.68.31', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.88.68.32', '203.88.68.63', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('203.88.68.64', '203.88.68.127', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.88.68.128', '203.88.68.255', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('203.88.69.0', '203.88.69.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('203.88.70.0', '203.88.70.95', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('203.88.70.96', '203.88.70.127', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.88.70.128', '203.88.71.127', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('203.88.71.128', '203.88.71.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.88.72.0', '203.88.72.255', 2147483647, 2147483647, 'NP', 'Nepal'), +('203.88.73.0', '203.88.78.63', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('203.88.78.64', '203.88.78.127', 2147483647, 2147483647, 'PK', 'Pakistan'), +('203.88.78.128', '203.88.78.255', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('203.88.79.0', '203.88.80.63', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.88.80.64', '203.88.80.95', 2147483647, 2147483647, 'MA', 'Morocco'), +('203.88.80.96', '203.88.80.111', 2147483647, 2147483647, 'PK', 'Pakistan'), +('203.88.80.112', '203.88.80.127', 2147483647, 2147483647, 'MA', 'Morocco'), +('203.88.80.128', '203.88.80.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.88.81.0', '203.88.82.7', 2147483647, 2147483647, 'MY', 'Malaysia'), +('203.88.82.8', '203.88.82.15', 2147483647, 2147483647, 'TH', 'Thailand'), +('203.88.82.16', '203.88.82.39', 2147483647, 2147483647, 'ID', 'Indonesia'), +('203.88.82.40', '203.88.82.47', 2147483647, 2147483647, 'LK', 'Sri Lanka'), +('203.88.82.48', '203.88.82.127', 2147483647, 2147483647, 'ID', 'Indonesia'), +('203.88.82.128', '203.88.82.135', 2147483647, 2147483647, 'TH', 'Thailand'), +('203.88.82.136', '203.88.82.175', 2147483647, 2147483647, 'ID', 'Indonesia'), +('203.88.82.176', '203.88.82.183', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.88.82.184', '203.88.82.239', 2147483647, 2147483647, 'ID', 'Indonesia'), +('203.88.82.240', '203.88.82.247', 2147483647, 2147483647, 'AF', 'Afghanistan'), +('203.88.82.248', '203.88.82.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('203.88.83.0', '203.88.83.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.88.84.0', '203.88.84.255', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('203.88.85.0', '203.88.85.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.88.86.0', '203.88.86.23', 2147483647, 2147483647, 'ID', 'Indonesia'), +('203.88.86.24', '203.88.86.39', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.88.86.40', '203.88.86.55', 2147483647, 2147483647, 'ID', 'Indonesia'), +('203.88.86.56', '203.88.86.63', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.88.86.64', '203.88.86.87', 2147483647, 2147483647, 'ID', 'Indonesia'), +('203.88.86.88', '203.88.86.159', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.88.86.160', '203.88.86.167', 2147483647, 2147483647, 'ID', 'Indonesia'), +('203.88.86.168', '203.88.86.207', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.88.86.208', '203.88.86.215', 2147483647, 2147483647, 'ID', 'Indonesia'), +('203.88.86.216', '203.88.86.223', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.88.86.224', '203.88.86.231', 2147483647, 2147483647, 'ID', 'Indonesia'), +('203.88.86.232', '203.88.86.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.88.87.0', '203.88.87.255', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('203.88.88.0', '203.88.88.7', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.88.88.8', '203.88.88.15', 2147483647, 2147483647, 'PK', 'Pakistan'), +('203.88.88.16', '203.88.88.23', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.88.88.24', '203.88.88.43', 2147483647, 2147483647, 'AF', 'Afghanistan'), +('203.88.88.44', '203.88.88.79', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.88.88.80', '203.88.88.95', 2147483647, 2147483647, 'MY', 'Malaysia'), +('203.88.88.96', '203.88.88.103', 2147483647, 2147483647, 'ID', 'Indonesia'), +('203.88.88.104', '203.88.88.119', 2147483647, 2147483647, 'MY', 'Malaysia'), +('203.88.88.120', '203.88.88.127', 2147483647, 2147483647, 'ID', 'Indonesia'), +('203.88.88.128', '203.88.88.151', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.88.88.152', '203.88.88.159', 2147483647, 2147483647, 'ID', 'Indonesia'), +('203.88.88.160', '203.88.88.167', 2147483647, 2147483647, 'AF', 'Afghanistan'), +('203.88.88.168', '203.88.88.199', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.88.88.200', '203.88.88.207', 2147483647, 2147483647, 'MY', 'Malaysia'), +('203.88.88.208', '203.88.88.223', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.88.88.224', '203.88.88.231', 2147483647, 2147483647, 'AF', 'Afghanistan'), +('203.88.88.232', '203.88.89.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.88.90.0', '203.88.90.7', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('203.88.90.8', '203.88.90.63', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.88.90.64', '203.88.90.191', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('203.88.90.192', '203.88.90.223', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.88.90.224', '203.88.90.255', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('203.88.91.0', '203.88.95.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.88.96.0', '203.88.111.255', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('203.88.112.0', '203.88.127.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.88.128.0', '203.88.159.255', 2147483647, 2147483647, 'IN', 'India'), +('203.88.160.0', '203.88.175.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.88.176.0', '203.88.191.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.88.192.0', '203.88.223.255', 2147483647, 2147483647, 'CN', 'China'), +('203.88.224.0', '203.88.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.89.0.0', '203.89.3.255', 2147483647, 2147483647, 'CN', 'China'), +('203.89.4.0', '203.89.4.255', 2147483647, 2147483647, 'IN', 'India'), +('203.89.5.0', '203.89.5.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.89.6.0', '203.89.7.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.89.16.0', '203.89.31.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('203.89.32.0', '203.89.63.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.89.64.0', '203.89.127.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.89.128.0', '203.89.131.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.89.132.0', '203.89.132.255', 2147483647, 2147483647, 'IN', 'India'), +('203.89.133.0', '203.89.133.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.89.134.0', '203.89.135.255', 2147483647, 2147483647, 'IN', 'India'), +('203.89.140.0', '203.89.143.255', 2147483647, 2147483647, 'VN', 'Vietnam'), +('203.89.144.0', '203.89.145.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.89.146.0', '203.89.149.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('203.89.150.0', '203.89.150.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.89.151.0', '203.89.155.255', 2147483647, 2147483647, 'IN', 'India'), +('203.89.156.0', '203.89.159.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.89.160.0', '203.89.191.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('203.89.192.0', '203.89.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.90.0.0', '203.90.3.255', 2147483647, 2147483647, 'CN', 'China'), +('203.90.4.0', '203.90.5.255', 2147483647, 2147483647, 'IN', 'India'), +('203.90.6.0', '203.90.7.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.90.12.0', '203.90.15.255', 2147483647, 2147483647, 'PK', 'Pakistan'), +('203.90.16.0', '203.90.23.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.90.24.0', '203.90.31.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.90.32.0', '203.90.63.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('203.90.64.0', '203.90.127.255', 2147483647, 2147483647, 'IN', 'India'), +('203.90.128.0', '203.90.223.255', 2147483647, 2147483647, 'CN', 'China'), +('203.90.224.0', '203.90.255.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.91.0.0', '203.91.31.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('203.91.32.0', '203.91.63.255', 2147483647, 2147483647, 'CN', 'China'), +('203.91.64.0', '203.91.95.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.91.96.0', '203.91.111.255', 2147483647, 2147483647, 'CN', 'China'), +('203.91.112.0', '203.91.119.255', 2147483647, 2147483647, 'MN', 'Mongolia'), +('203.91.120.0', '203.91.127.255', 2147483647, 2147483647, 'CN', 'China'), +('203.91.128.0', '203.91.135.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.91.136.0', '203.91.136.255', 2147483647, 2147483647, 'SC', 'Seychelles'), +('203.91.137.0', '203.91.137.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.91.138.0', '203.91.139.255', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('203.91.140.0', '203.91.147.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.91.148.0', '203.91.148.255', 2147483647, 2147483647, 'SC', 'Seychelles'), +('203.91.149.0', '203.91.152.127', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.91.152.128', '203.91.152.255', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('203.91.153.0', '203.91.159.191', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.91.159.192', '203.91.159.207', 2147483647, 2147483647, 'ID', 'Indonesia'), +('203.91.159.208', '203.91.159.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.91.160.0', '203.91.191.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.91.192.0', '203.91.223.255', 2147483647, 2147483647, 'IN', 'India'), +('203.91.224.0', '203.91.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.92.0.0', '203.92.3.255', 2147483647, 2147483647, 'CN', 'China'), +('203.92.4.0', '203.92.5.255', 2147483647, 2147483647, 'PK', 'Pakistan'), +('203.92.6.0', '203.92.6.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.92.7.0', '203.92.7.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.92.8.0', '203.92.15.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('203.92.16.0', '203.92.23.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.92.24.0', '203.92.24.255', 2147483647, 2147483647, 'MN', 'Mongolia'), +('203.92.25.0', '203.92.25.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('203.92.26.0', '203.92.31.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.92.32.0', '203.92.63.255', 2147483647, 2147483647, 'IN', 'India'), +('203.92.64.0', '203.92.127.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.92.128.0', '203.92.159.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('203.92.160.0', '203.92.191.255', 2147483647, 2147483647, 'CN', 'China'), +('203.92.192.0', '203.92.207.255', 2147483647, 2147483647, 'IN', 'India'), +('203.92.208.0', '203.92.208.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('203.92.209.0', '203.92.209.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.92.210.0', '203.92.210.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.92.211.0', '203.92.211.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.92.212.0', '203.92.212.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.92.213.0', '203.92.213.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('203.92.214.0', '203.92.214.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.92.215.0', '203.92.215.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.92.216.0', '203.92.221.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.92.222.0', '203.92.222.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.92.223.0', '203.92.223.127', 2147483647, 2147483647, 'JP', 'Japan'), +('203.92.223.128', '203.92.223.239', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.92.223.240', '203.92.223.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.92.224.0', '203.92.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.93.0.0', '203.94.31.255', 2147483647, 2147483647, 'CN', 'China'), +('203.94.32.0', '203.94.63.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.94.64.0', '203.94.127.255', 2147483647, 2147483647, 'LK', 'Sri Lanka'), +('203.94.128.0', '203.94.191.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.94.192.0', '203.94.255.255', 2147483647, 2147483647, 'IN', 'India'), +('203.95.0.0', '203.95.7.255', 2147483647, 2147483647, 'CN', 'China'), +('203.95.8.0', '203.95.15.255', 2147483647, 2147483647, 'GU', 'Guam'), +('203.95.16.0', '203.95.63.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.95.64.0', '203.95.95.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.95.96.0', '203.95.127.255', 2147483647, 2147483647, 'CN', 'China'), +('203.95.128.0', '203.95.255.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('203.96.0.0', '203.98.63.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('203.98.64.0', '203.98.95.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.98.96.0', '203.98.127.255', 2147483647, 2147483647, 'IN', 'India'), +('203.98.128.0', '203.98.191.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.98.192.0', '203.98.192.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.98.193.0', '203.98.193.15', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.98.193.16', '203.98.193.63', 2147483647, 2147483647, 'AU', 'Australia'), +('203.98.193.64', '203.98.193.127', 2147483647, 2147483647, 'IN', 'India'), +('203.98.193.128', '203.98.193.143', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.98.193.144', '203.98.193.167', 2147483647, 2147483647, 'AU', 'Australia'), +('203.98.193.168', '203.98.193.175', 2147483647, 2147483647, 'CN', 'China'), +('203.98.193.176', '203.98.193.183', 2147483647, 2147483647, 'JP', 'Japan'), +('203.98.193.184', '203.98.193.191', 2147483647, 2147483647, 'AU', 'Australia'), +('203.98.193.192', '203.98.193.223', 2147483647, 2147483647, 'JP', 'Japan'), +('203.98.193.224', '203.98.193.239', 2147483647, 2147483647, 'IN', 'India'), +('203.98.193.240', '203.98.193.247', 2147483647, 2147483647, 'CN', 'China'), +('203.98.193.248', '203.98.193.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('203.98.194.0', '203.98.194.15', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.98.194.16', '203.98.194.31', 2147483647, 2147483647, 'CN', 'China'), +('203.98.194.32', '203.98.194.63', 2147483647, 2147483647, 'JP', 'Japan'), +('203.98.194.64', '203.98.194.127', 2147483647, 2147483647, 'AU', 'Australia'), +('203.98.194.128', '203.98.195.23', 2147483647, 2147483647, 'IN', 'India'), +('203.98.195.24', '203.98.195.31', 2147483647, 2147483647, 'AU', 'Australia'), +('203.98.195.32', '203.98.195.39', 2147483647, 2147483647, 'IN', 'India'), +('203.98.195.40', '203.98.195.47', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.98.195.48', '203.98.195.63', 2147483647, 2147483647, 'CN', 'China'), +('203.98.195.64', '203.98.195.79', 2147483647, 2147483647, 'AU', 'Australia'), +('203.98.195.80', '203.98.195.95', 2147483647, 2147483647, 'MY', 'Malaysia'), +('203.98.195.96', '203.98.195.103', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.98.195.104', '203.98.195.127', 2147483647, 2147483647, 'AU', 'Australia'), +('203.98.195.128', '203.98.195.143', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.98.195.144', '203.98.200.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.98.201.0', '203.98.201.255', 2147483647, 2147483647, 'CN', 'China'), +('203.98.202.0', '203.98.202.15', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.98.202.16', '203.98.204.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.98.205.0', '203.98.205.7', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.98.205.8', '203.98.205.15', 2147483647, 2147483647, 'AU', 'Australia'), +('203.98.205.16', '203.98.205.23', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.98.205.24', '203.98.205.31', 2147483647, 2147483647, 'JP', 'Japan'), +('203.98.205.32', '203.98.205.47', 2147483647, 2147483647, 'CN', 'China'), +('203.98.205.48', '203.98.205.127', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.98.205.128', '203.98.205.159', 2147483647, 2147483647, 'IN', 'India'), +('203.98.205.160', '203.98.205.167', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.98.205.168', '203.98.205.175', 2147483647, 2147483647, 'CN', 'China'), +('203.98.205.176', '203.98.205.207', 2147483647, 2147483647, 'IN', 'India'), +('203.98.205.208', '203.98.205.223', 2147483647, 2147483647, 'AU', 'Australia'), +('203.98.205.224', '203.98.205.231', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('203.98.205.232', '203.98.206.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.98.207.0', '203.98.207.7', 2147483647, 2147483647, 'CN', 'China'), +('203.98.207.8', '203.98.207.15', 2147483647, 2147483647, 'TW', 'Taiwan'), +('203.98.207.16', '203.98.207.31', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.98.207.32', '203.98.207.63', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('203.98.207.64', '203.98.207.79', 2147483647, 2147483647, 'IN', 'India'), +('203.98.207.80', '203.98.207.111', 2147483647, 2147483647, 'CN', 'China'), +('203.98.207.112', '203.98.207.127', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.98.207.128', '203.98.207.135', 2147483647, 2147483647, 'JP', 'Japan'), +('203.98.207.136', '203.98.207.143', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.98.207.144', '203.98.207.159', 2147483647, 2147483647, 'TW', 'Taiwan'), +('203.98.207.160', '203.98.207.191', 2147483647, 2147483647, 'IN', 'India'), +('203.98.207.192', '203.98.207.207', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.98.207.208', '203.98.207.231', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.98.207.232', '203.98.207.239', 2147483647, 2147483647, 'AU', 'Australia'), +('203.98.207.240', '203.98.207.247', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('203.98.207.248', '203.98.207.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.98.208.0', '203.98.208.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.98.209.0', '203.98.209.47', 2147483647, 2147483647, 'AU', 'Australia'), +('203.98.209.48', '203.98.209.79', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.98.209.80', '203.98.209.111', 2147483647, 2147483647, 'JP', 'Japan'), +('203.98.209.112', '203.98.209.127', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.98.209.128', '203.98.209.191', 2147483647, 2147483647, 'CN', 'China'), +('203.98.209.192', '203.98.209.223', 2147483647, 2147483647, 'AU', 'Australia'), +('203.98.209.224', '203.98.209.239', 2147483647, 2147483647, 'PH', 'Philippines'), +('203.98.209.240', '203.98.209.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.98.210.0', '203.98.210.15', 2147483647, 2147483647, 'CN', 'China'), +('203.98.210.16', '203.98.210.31', 2147483647, 2147483647, 'AU', 'Australia'), +('203.98.210.32', '203.98.210.95', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.98.210.96', '203.98.210.103', 2147483647, 2147483647, 'CN', 'China'), +('203.98.210.104', '203.98.210.111', 2147483647, 2147483647, 'AU', 'Australia'), +('203.98.210.112', '203.98.210.127', 2147483647, 2147483647, 'IN', 'India'), +('203.98.210.128', '203.98.210.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.98.211.0', '203.98.211.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('203.98.212.0', '203.98.212.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.98.213.0', '203.98.213.15', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.98.213.16', '203.98.213.23', 2147483647, 2147483647, 'AU', 'Australia'), +('203.98.213.24', '203.98.213.31', 2147483647, 2147483647, 'CN', 'China'), +('203.98.213.32', '203.98.213.63', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.98.213.64', '203.98.213.127', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.98.213.128', '203.98.213.175', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.98.213.176', '203.98.213.183', 2147483647, 2147483647, 'CN', 'China'), +('203.98.213.184', '203.98.213.191', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.98.213.192', '203.98.213.199', 2147483647, 2147483647, 'JP', 'Japan'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('203.98.213.200', '203.98.213.207', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.98.213.208', '203.98.213.255', 2147483647, 2147483647, 'IN', 'India'), +('203.98.214.0', '203.98.214.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('203.98.215.0', '203.98.215.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.98.216.0', '203.98.216.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.98.217.0', '203.98.217.159', 2147483647, 2147483647, 'AU', 'Australia'), +('203.98.217.160', '203.98.217.163', 2147483647, 2147483647, 'JP', 'Japan'), +('203.98.217.164', '203.98.217.171', 2147483647, 2147483647, 'AU', 'Australia'), +('203.98.217.172', '203.98.217.175', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.98.217.176', '203.98.217.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.98.218.0', '203.98.218.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.98.219.0', '203.98.219.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('203.98.220.0', '203.98.223.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.98.224.0', '203.98.255.255', 2147483647, 2147483647, 'NR', 'Nauru'), +('203.99.0.0', '203.99.7.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.99.16.0', '203.99.31.255', 2147483647, 2147483647, 'CN', 'China'), +('203.99.32.0', '203.99.39.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('203.99.40.0', '203.99.47.255', 2147483647, 2147483647, 'IN', 'India'), +('203.99.48.0', '203.99.63.255', 2147483647, 2147483647, 'PK', 'Pakistan'), +('203.99.64.0', '203.99.71.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('203.99.72.0', '203.99.79.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.99.80.0', '203.99.95.255', 2147483647, 2147483647, 'CN', 'China'), +('203.99.96.0', '203.99.127.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('203.99.128.0', '203.99.129.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('203.99.130.0', '203.99.131.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('203.99.132.0', '203.99.135.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('203.99.136.0', '203.99.139.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('203.99.140.0', '203.99.141.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.99.142.0', '203.99.142.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.99.143.0', '203.99.143.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.99.144.0', '203.99.155.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.99.156.0', '203.99.159.255', 2147483647, 2147483647, 'WS', 'Samoa'), +('203.99.160.0', '203.99.191.255', 2147483647, 2147483647, 'PK', 'Pakistan'), +('203.99.192.0', '203.99.223.255', 2147483647, 2147483647, 'IN', 'India'), +('203.99.224.0', '203.99.231.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.99.232.0', '203.99.239.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('203.99.240.0', '203.99.247.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.99.248.0', '203.99.251.255', 2147483647, 2147483647, 'VN', 'Vietnam'), +('203.99.252.0', '203.99.253.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('203.99.254.0', '203.99.254.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.99.255.0', '203.99.255.255', 2147483647, 2147483647, 'WS', 'Samoa'), +('203.100.0.0', '203.100.31.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.100.32.0', '203.100.47.255', 2147483647, 2147483647, 'CN', 'China'), +('203.100.56.0', '203.100.56.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.100.57.0', '203.100.57.255', 2147483647, 2147483647, 'IN', 'India'), +('203.100.58.0', '203.100.58.255', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('203.100.59.0', '203.100.61.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.100.62.0', '203.100.62.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.100.64.0', '203.100.79.255', 2147483647, 2147483647, 'IN', 'India'), +('203.100.80.0', '203.100.127.255', 2147483647, 2147483647, 'CN', 'China'), +('203.100.128.0', '203.100.159.255', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('203.100.160.0', '203.100.191.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('203.100.192.0', '203.100.207.255', 2147483647, 2147483647, 'CN', 'China'), +('203.100.208.0', '203.100.223.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('203.100.224.0', '203.100.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.101.0.0', '203.101.127.255', 2147483647, 2147483647, 'IN', 'India'), +('203.101.128.0', '203.101.159.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('203.101.160.0', '203.101.191.255', 2147483647, 2147483647, 'PK', 'Pakistan'), +('203.101.192.0', '203.101.223.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.101.224.0', '203.104.15.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.104.16.0', '203.104.23.255', 2147483647, 2147483647, 'IN', 'India'), +('203.104.24.0', '203.104.31.255', 2147483647, 2147483647, 'MV', 'Maldives'), +('203.104.48.0', '203.104.63.255', 2147483647, 2147483647, 'NC', 'New Caledonia'), +('203.104.64.0', '203.104.95.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('203.104.96.0', '203.104.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.105.0.0', '203.105.63.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.105.64.0', '203.105.95.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.105.160.0', '203.105.191.255', 2147483647, 2147483647, 'IN', 'India'), +('203.105.192.0', '203.105.223.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.105.224.0', '203.105.255.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('203.106.0.0', '203.106.255.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('203.107.0.0', '203.107.63.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('203.107.128.0', '203.107.255.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('203.108.0.0', '203.108.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.109.0.0', '203.109.31.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('203.109.32.0', '203.109.63.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('203.109.64.0', '203.109.127.255', 2147483647, 2147483647, 'IN', 'India'), +('203.109.128.0', '203.110.63.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('203.110.64.0', '203.110.79.255', 2147483647, 2147483647, 'LA', 'Lao People''s Democratic Republic'), +('203.110.80.0', '203.110.95.255', 2147483647, 2147483647, 'IN', 'India'), +('203.110.96.0', '203.110.127.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.110.128.0', '203.110.159.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.110.160.0', '203.110.191.255', 2147483647, 2147483647, 'CN', 'China'), +('203.110.192.0', '203.110.207.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.110.208.0', '203.110.223.255', 2147483647, 2147483647, 'IN', 'India'), +('203.110.224.0', '203.110.231.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.110.232.0', '203.110.235.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.110.236.0', '203.110.239.255', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('203.110.240.0', '203.110.247.255', 2147483647, 2147483647, 'IN', 'India'), +('203.110.248.0', '203.111.191.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.111.208.0', '203.111.223.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('203.111.224.0', '203.111.239.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('203.111.240.0', '203.111.247.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.111.248.0', '203.111.251.255', 2147483647, 2147483647, 'IN', 'India'), +('203.111.252.0', '203.112.71.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.112.72.0', '203.112.79.255', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('203.112.80.0', '203.112.95.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.112.128.0', '203.112.159.255', 2147483647, 2147483647, 'IN', 'India'), +('203.112.160.0', '203.112.191.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.112.192.0', '203.112.223.255', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('203.112.224.0', '203.112.255.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('203.113.0.0', '203.113.127.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('203.113.128.0', '203.113.191.255', 2147483647, 2147483647, 'VN', 'Vietnam'), +('203.113.192.0', '203.113.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.114.0.0', '203.114.63.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('203.114.64.0', '203.114.95.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('203.114.96.0', '203.114.127.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('203.114.128.0', '203.114.191.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('203.114.192.0', '203.114.223.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.114.224.0', '203.114.227.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('203.114.228.0', '203.114.231.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.114.232.0', '203.114.235.255', 2147483647, 2147483647, 'IN', 'India'), +('203.114.236.0', '203.114.239.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('203.114.240.0', '203.114.243.255', 2147483647, 2147483647, 'IN', 'India'), +('203.114.244.0', '203.114.247.255', 2147483647, 2147483647, 'CN', 'China'), +('203.114.248.0', '203.114.251.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.114.252.0', '203.114.255.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.115.0.0', '203.115.63.255', 2147483647, 2147483647, 'LK', 'Sri Lanka'), +('203.115.64.0', '203.115.127.255', 2147483647, 2147483647, 'IN', 'India'), +('203.115.128.0', '203.115.191.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('203.115.192.0', '203.115.255.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('203.116.0.0', '203.118.63.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.118.64.0', '203.118.127.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('203.118.128.0', '203.118.191.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('203.118.192.0', '203.118.223.255', 2147483647, 2147483647, 'CN', 'China'), +('203.118.224.0', '203.118.239.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('203.118.240.0', '203.118.240.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.118.241.0', '203.118.241.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('203.118.242.0', '203.118.242.255', 2147483647, 2147483647, 'KH', 'Cambodia'), +('203.118.243.0', '203.118.243.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.118.244.0', '203.118.247.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('203.118.248.0', '203.118.251.255', 2147483647, 2147483647, 'CN', 'China'), +('203.118.252.0', '203.118.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.119.0.0', '203.119.0.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.119.1.0', '203.119.1.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.119.2.0', '203.119.2.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.119.3.0', '203.119.3.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('203.119.4.0', '203.119.7.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('203.119.8.0', '203.119.11.255', 2147483647, 2147483647, 'VN', 'Vietnam'), +('203.119.12.0', '203.119.12.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.119.13.0', '203.119.13.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('203.119.14.0', '203.119.15.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.119.16.0', '203.119.23.255', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('203.119.24.0', '203.119.35.255', 2147483647, 2147483647, 'CN', 'China'), +('203.119.36.0', '203.119.39.255', 2147483647, 2147483647, 'VN', 'Vietnam'), +('203.119.40.0', '203.119.40.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.119.41.0', '203.119.41.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('203.119.42.0', '203.119.43.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.119.44.0', '203.119.47.255', 2147483647, 2147483647, 'VN', 'Vietnam'), +('203.119.48.0', '203.119.48.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('203.119.49.0', '203.119.50.255', 2147483647, 2147483647, 'IN', 'India'), +('203.119.51.0', '203.119.51.255', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('203.119.52.0', '203.119.55.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('203.119.56.0', '203.119.56.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('203.119.57.0', '203.119.57.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('203.119.58.0', '203.119.75.255', 2147483647, 2147483647, 'VN', 'Vietnam'), +('203.119.76.0', '203.119.76.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.120.0.0', '203.120.255.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.121.0.0', '203.121.127.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('203.121.128.0', '203.121.191.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('203.121.192.0', '203.121.223.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.121.224.0', '203.121.255.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('203.122.0.0', '203.122.63.255', 2147483647, 2147483647, 'IN', 'India'), +('203.122.64.0', '203.122.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.123.0.0', '203.123.31.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.123.32.0', '203.123.47.255', 2147483647, 2147483647, 'IN', 'India'), +('203.123.48.0', '203.123.55.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.123.56.0', '203.123.58.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.123.59.0', '203.123.59.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.123.60.0', '203.123.63.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('203.123.64.0', '203.123.127.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.123.128.0', '203.123.191.255', 2147483647, 2147483647, 'IN', 'India'), +('203.123.192.0', '203.123.223.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('203.123.224.0', '203.123.247.191', 2147483647, 2147483647, 'ID', 'Indonesia'), +('203.123.247.192', '203.123.247.195', 2147483647, 2147483647, 'IN', 'India'), +('203.123.247.196', '203.123.255.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('203.124.0.0', '203.124.5.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.124.6.0', '203.124.7.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.124.8.0', '203.124.15.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.124.16.0', '203.124.23.255', 2147483647, 2147483647, 'IN', 'India'), +('203.124.24.0', '203.124.63.255', 2147483647, 2147483647, 'PK', 'Pakistan'), +('203.124.64.0', '203.124.95.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.124.96.0', '203.124.127.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.124.128.0', '203.124.175.255', 2147483647, 2147483647, 'IN', 'India'), +('203.124.176.0', '203.124.191.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.124.192.0', '203.124.255.255', 2147483647, 2147483647, 'IN', 'India'), +('203.125.0.0', '203.126.69.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.126.70.0', '203.126.71.255', 2147483647, 2147483647, 'US', 'United States'), +('203.126.72.0', '203.127.0.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.127.1.0', '203.127.1.15', 2147483647, 2147483647, 'ID', 'Indonesia'), +('203.127.1.16', '203.127.224.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.127.225.0', '203.127.225.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('203.127.226.0', '203.127.255.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.128.0.0', '203.128.31.255', 2147483647, 2147483647, 'PK', 'Pakistan'), +('203.128.32.0', '203.128.63.255', 2147483647, 2147483647, 'CN', 'China'), +('203.128.64.0', '203.128.95.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('203.128.96.0', '203.128.127.255', 2147483647, 2147483647, 'CN', 'China'), +('203.128.160.0', '203.128.223.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('203.128.232.0', '203.128.235.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.128.236.0', '203.128.239.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('203.128.240.0', '203.128.247.255', 2147483647, 2147483647, 'VN', 'Vietnam'), +('203.128.248.0', '203.128.251.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('203.128.252.0', '203.129.3.255', 2147483647, 2147483647, 'PK', 'Pakistan'), +('203.129.4.0', '203.129.5.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('203.129.6.0', '203.129.7.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('203.129.16.0', '203.129.63.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.129.64.0', '203.129.95.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.129.96.0', '203.129.127.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.129.128.0', '203.129.159.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.129.160.0', '203.129.191.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.129.192.0', '203.129.255.255', 2147483647, 2147483647, 'IN', 'India'), +('203.130.0.0', '203.130.31.255', 2147483647, 2147483647, 'PK', 'Pakistan'), +('203.130.32.0', '203.130.63.255', 2147483647, 2147483647, 'CN', 'China'), +('203.130.64.0', '203.130.127.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('203.130.128.0', '203.130.159.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('203.130.160.0', '203.130.175.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.130.176.0', '203.130.191.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('203.130.192.0', '203.130.255.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('203.131.0.0', '203.131.63.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.131.64.0', '203.131.191.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('203.131.192.0', '203.131.207.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.131.208.0', '203.131.223.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('203.131.224.0', '203.131.255.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.132.0.0', '203.132.31.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.132.32.0', '203.132.63.255', 2147483647, 2147483647, 'CN', 'China'), +('203.132.64.0', '203.132.95.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.132.96.0', '203.132.127.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.132.128.0', '203.132.159.255', 2147483647, 2147483647, 'IN', 'India'), +('203.132.160.0', '203.132.191.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('203.132.192.0', '203.132.207.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.132.208.0', '203.132.223.255', 2147483647, 2147483647, 'IN', 'India'), +('203.132.224.0', '203.132.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.133.0.0', '203.133.127.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('203.133.128.0', '203.133.159.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.133.160.0', '203.133.191.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('203.133.192.0', '203.133.251.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.133.252.0', '203.133.255.255', 2147483647, 2147483647, 'PK', 'Pakistan'), +('203.134.0.0', '203.134.191.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.134.192.0', '203.134.231.255', 2147483647, 2147483647, 'IN', 'India'), +('203.134.232.0', '203.134.239.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('203.134.240.0', '203.134.247.255', 2147483647, 2147483647, 'CN', 'China'), +('203.134.248.0', '203.134.251.255', 2147483647, 2147483647, 'IN', 'India'), +('203.134.252.0', '203.135.63.255', 2147483647, 2147483647, 'PK', 'Pakistan'), +('203.135.64.0', '203.135.95.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('203.135.96.0', '203.135.127.255', 2147483647, 2147483647, 'CN', 'China'), +('203.135.128.0', '203.135.159.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.135.160.0', '203.135.175.255', 2147483647, 2147483647, 'CN', 'China'), +('203.135.176.0', '203.135.183.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('203.135.184.0', '203.135.187.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.135.188.0', '203.135.188.255', 2147483647, 2147483647, 'IN', 'India'), +('203.135.189.0', '203.135.189.255', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('203.135.190.0', '203.135.191.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('203.135.192.0', '203.141.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.142.0.0', '203.142.7.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('203.142.8.0', '203.142.9.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.142.10.0', '203.142.11.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.142.12.0', '203.142.13.255', 2147483647, 2147483647, 'CN', 'China'), +('203.142.14.0', '203.142.15.255', 2147483647, 2147483647, 'US', 'United States'), +('203.142.16.0', '203.142.25.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.142.26.0', '203.142.26.255', 2147483647, 2147483647, 'US', 'United States'), +('203.142.27.0', '203.142.27.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.142.28.0', '203.142.31.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.142.32.0', '203.142.63.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('203.142.64.0', '203.142.87.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('203.142.88.0', '203.142.127.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.142.128.0', '203.142.159.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.142.160.0', '203.142.191.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('203.142.192.0', '203.142.215.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.142.216.0', '203.142.217.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('203.142.218.0', '203.142.218.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.142.219.0', '203.142.219.255', 2147483647, 2147483647, 'CN', 'China'), +('203.142.220.0', '203.142.220.255', 2147483647, 2147483647, 'IN', 'India'), +('203.142.221.0', '203.142.221.255', 2147483647, 2147483647, 'NF', 'Norfolk Island'), +('203.142.222.0', '203.142.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.143.0.0', '203.143.63.255', 2147483647, 2147483647, 'LK', 'Sri Lanka'), +('203.143.64.0', '203.143.95.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.143.96.0', '203.143.127.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.143.128.0', '203.143.159.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.143.160.0', '203.143.175.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.143.176.0', '203.143.191.255', 2147483647, 2147483647, 'IN', 'India'), +('203.143.192.0', '203.144.31.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.144.32.0', '203.144.47.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('203.144.48.0', '203.144.63.255', 2147483647, 2147483647, 'US', 'United States'), +('203.144.64.0', '203.144.95.255', 2147483647, 2147483647, 'KH', 'Cambodia'), +('203.144.96.0', '203.144.127.255', 2147483647, 2147483647, 'IN', 'India'), +('203.144.128.0', '203.144.255.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('203.145.32.0', '203.145.63.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.145.64.0', '203.145.95.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.145.96.0', '203.145.111.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.145.112.0', '203.145.119.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('203.145.120.0', '203.145.127.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.145.128.0', '203.145.191.255', 2147483647, 2147483647, 'IN', 'India'), +('203.145.192.0', '203.145.223.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('203.145.224.0', '203.145.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.146.0.0', '203.147.63.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('203.147.64.0', '203.147.87.255', 2147483647, 2147483647, 'NC', 'New Caledonia'), +('203.147.88.0', '203.147.91.255', 2147483647, 2147483647, 'IN', 'India'), +('203.147.92.0', '203.147.103.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.147.104.0', '203.147.107.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('203.147.108.0', '203.147.109.255', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('203.147.110.0', '203.147.111.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.147.112.0', '203.147.127.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('203.147.128.0', '203.147.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.148.0.0', '203.148.63.255', 2147483647, 2147483647, 'CN', 'China'), +('203.148.64.0', '203.148.67.255', 2147483647, 2147483647, 'PK', 'Pakistan'), +('203.148.80.0', '203.148.83.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('203.148.84.0', '203.148.85.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('203.148.88.0', '203.148.91.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('203.148.92.0', '203.148.92.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('203.148.93.0', '203.148.95.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.148.96.0', '203.148.127.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.148.128.0', '203.149.63.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('203.149.64.0', '203.149.91.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.149.92.0', '203.149.95.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.149.96.0', '203.149.111.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.149.112.0', '203.149.127.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('203.149.128.0', '203.149.255.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.150.0.0', '203.152.63.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('203.152.64.0', '203.152.95.255', 2147483647, 2147483647, 'CN', 'China'), +('203.152.96.0', '203.152.127.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('203.152.160.0', '203.152.191.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('203.152.192.0', '203.152.223.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.152.224.0', '203.152.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.153.0.0', '203.153.3.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('203.153.4.0', '203.153.5.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.153.6.0', '203.153.15.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('203.153.16.0', '203.153.23.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('203.153.24.0', '203.153.31.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('203.153.32.0', '203.153.48.255', 2147483647, 2147483647, 'IN', 'India'), +('203.153.49.0', '203.153.49.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('203.153.50.0', '203.153.51.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('203.153.52.0', '203.153.55.255', 2147483647, 2147483647, 'IN', 'India'), +('203.153.56.0', '203.153.59.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.153.60.0', '203.153.63.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('203.153.64.0', '203.153.79.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.153.80.0', '203.153.95.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('203.153.96.0', '203.153.127.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('203.153.128.0', '203.153.143.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('203.153.144.0', '203.153.159.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('203.153.160.0', '203.153.191.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('203.153.192.0', '203.153.207.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.153.208.0', '203.153.209.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.153.210.0', '203.153.211.255', 2147483647, 2147483647, 'IN', 'India'), +('203.153.212.0', '203.153.219.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('203.153.220.0', '203.153.223.255', 2147483647, 2147483647, 'LK', 'Sri Lanka'), +('203.153.224.0', '203.153.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.154.0.0', '203.156.191.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('203.156.192.0', '203.156.255.255', 2147483647, 2147483647, 'CN', 'China'), +('203.157.0.0', '203.158.7.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('203.158.8.0', '203.158.15.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('203.158.16.0', '203.158.23.255', 2147483647, 2147483647, 'CN', 'China'), +('203.158.24.0', '203.158.31.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('203.158.32.0', '203.158.63.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.158.64.0', '203.158.95.255', 2147483647, 2147483647, 'IN', 'India'), +('203.158.96.0', '203.159.255.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('203.160.0.0', '203.160.1.255', 2147483647, 2147483647, 'VN', 'Vietnam'), +('203.160.2.0', '203.160.3.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.160.4.0', '203.160.7.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('203.160.8.0', '203.160.15.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.160.16.0', '203.160.31.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.160.32.0', '203.160.47.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.160.48.0', '203.160.55.255', 2147483647, 2147483647, 'MN', 'Mongolia'), +('203.160.56.0', '203.160.63.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('203.160.64.0', '203.160.95.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.160.96.0', '203.160.103.255', 2147483647, 2147483647, 'VN', 'Vietnam'), +('203.160.112.0', '203.160.127.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('203.160.128.0', '203.160.128.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('203.160.129.0', '203.160.129.255', 2147483647, 2147483647, 'IN', 'India'), +('203.160.130.0', '203.160.131.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('203.160.132.0', '203.160.135.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.160.136.0', '203.160.136.255', 2147483647, 2147483647, 'IN', 'India'), +('203.160.137.0', '203.160.137.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('203.160.138.0', '203.160.139.255', 2147483647, 2147483647, 'IN', 'India'), +('203.160.140.0', '203.160.143.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('203.160.144.0', '203.160.159.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('203.160.160.0', '203.160.191.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('203.160.224.0', '203.160.255.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('203.161.0.0', '203.161.3.255', 2147483647, 2147483647, 'VN', 'Vietnam'), +('203.161.4.0', '203.161.7.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.161.8.0', '203.161.15.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.161.16.0', '203.161.31.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('203.161.32.0', '203.161.47.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.161.48.0', '203.161.48.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('203.161.49.0', '203.161.53.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.161.54.0', '203.161.63.255', 2147483647, 2147483647, 'IN', 'India'), +('203.161.64.0', '203.161.191.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.161.192.0', '203.161.223.255', 2147483647, 2147483647, 'CN', 'China'), +('203.161.224.0', '203.161.255.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.162.0.0', '203.162.255.255', 2147483647, 2147483647, 'VN', 'Vietnam'), +('203.163.0.0', '203.163.13.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.163.14.0', '203.163.14.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.163.15.0', '203.163.32.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.163.33.0', '203.163.33.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.163.34.0', '203.163.53.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.163.54.0', '203.163.54.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('203.163.55.0', '203.163.64.127', 2147483647, 2147483647, 'JP', 'Japan'), +('203.163.64.128', '203.163.64.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('203.163.65.0', '203.163.65.15', 2147483647, 2147483647, 'JP', 'Japan'), +('203.163.65.16', '203.163.65.127', 2147483647, 2147483647, 'AU', 'Australia'), +('203.163.65.128', '203.163.65.191', 2147483647, 2147483647, 'JP', 'Japan'), +('203.163.65.192', '203.163.65.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.163.66.0', '203.163.66.127', 2147483647, 2147483647, 'ID', 'Indonesia'), +('203.163.66.128', '203.163.67.7', 2147483647, 2147483647, 'JP', 'Japan'), +('203.163.67.8', '203.163.67.15', 2147483647, 2147483647, 'AU', 'Australia'), +('203.163.67.16', '203.163.67.39', 2147483647, 2147483647, 'JP', 'Japan'), +('203.163.67.40', '203.163.67.47', 2147483647, 2147483647, 'AU', 'Australia'), +('203.163.67.48', '203.163.68.15', 2147483647, 2147483647, 'JP', 'Japan'), +('203.163.68.16', '203.163.68.47', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('203.163.68.48', '203.163.68.63', 2147483647, 2147483647, 'JP', 'Japan'), +('203.163.68.64', '203.163.68.116', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('203.163.68.117', '203.163.68.119', 2147483647, 2147483647, 'JP', 'Japan'), +('203.163.68.120', '203.163.68.135', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('203.163.68.136', '203.163.68.151', 2147483647, 2147483647, 'JP', 'Japan'), +('203.163.68.152', '203.163.68.159', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('203.163.68.160', '203.163.68.223', 2147483647, 2147483647, 'JP', 'Japan'), +('203.163.68.224', '203.163.68.231', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('203.163.68.232', '203.163.70.63', 2147483647, 2147483647, 'JP', 'Japan'), +('203.163.70.64', '203.163.70.127', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('203.163.70.128', '203.163.71.63', 2147483647, 2147483647, 'JP', 'Japan'), +('203.163.71.64', '203.163.71.95', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('203.163.71.96', '203.163.71.223', 2147483647, 2147483647, 'JP', 'Japan'), +('203.163.71.224', '203.163.71.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('203.163.72.0', '203.163.72.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('203.163.73.0', '203.163.73.15', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.163.73.16', '203.163.73.47', 2147483647, 2147483647, 'JP', 'Japan'), +('203.163.73.48', '203.163.73.55', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.163.73.56', '203.163.73.127', 2147483647, 2147483647, 'JP', 'Japan'), +('203.163.73.128', '203.163.73.159', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.163.73.160', '203.163.73.167', 2147483647, 2147483647, 'JP', 'Japan'), +('203.163.73.168', '203.163.73.175', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.163.73.176', '203.163.73.207', 2147483647, 2147483647, 'JP', 'Japan'), +('203.163.73.208', '203.163.73.223', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.163.73.224', '203.163.73.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.163.74.0', '203.163.74.7', 2147483647, 2147483647, 'AU', 'Australia'), +('203.163.74.8', '203.163.74.47', 2147483647, 2147483647, 'JP', 'Japan'), +('203.163.74.48', '203.163.74.95', 2147483647, 2147483647, 'AU', 'Australia'), +('203.163.74.96', '203.163.74.207', 2147483647, 2147483647, 'JP', 'Japan'), +('203.163.74.208', '203.163.74.215', 2147483647, 2147483647, 'AU', 'Australia'), +('203.163.74.216', '203.163.76.191', 2147483647, 2147483647, 'JP', 'Japan'), +('203.163.76.192', '203.163.77.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('203.163.78.0', '203.163.78.15', 2147483647, 2147483647, 'JP', 'Japan'), +('203.163.78.16', '203.163.78.23', 2147483647, 2147483647, 'MY', 'Malaysia'), +('203.163.78.24', '203.163.78.31', 2147483647, 2147483647, 'JP', 'Japan'), +('203.163.78.32', '203.163.78.55', 2147483647, 2147483647, 'MY', 'Malaysia'), +('203.163.78.56', '203.163.78.63', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.163.78.64', '203.163.78.79', 2147483647, 2147483647, 'MY', 'Malaysia'), +('203.163.78.80', '203.163.80.63', 2147483647, 2147483647, 'JP', 'Japan'), +('203.163.80.64', '203.163.80.127', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.163.80.128', '203.163.80.191', 2147483647, 2147483647, 'JP', 'Japan'), +('203.163.80.192', '203.163.80.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.163.81.0', '203.163.81.31', 2147483647, 2147483647, 'ID', 'Indonesia'), +('203.163.81.32', '203.163.81.191', 2147483647, 2147483647, 'JP', 'Japan'), +('203.163.81.192', '203.163.81.223', 2147483647, 2147483647, 'ID', 'Indonesia'), +('203.163.81.224', '203.163.82.31', 2147483647, 2147483647, 'JP', 'Japan'), +('203.163.82.32', '203.163.82.63', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.163.82.64', '203.163.82.95', 2147483647, 2147483647, 'JP', 'Japan'), +('203.163.82.96', '203.163.82.127', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.163.82.128', '203.163.82.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.163.83.0', '203.163.83.15', 2147483647, 2147483647, 'TW', 'Taiwan'), +('203.163.83.16', '203.163.83.63', 2147483647, 2147483647, 'JP', 'Japan'), +('203.163.83.64', '203.163.83.79', 2147483647, 2147483647, 'TW', 'Taiwan'), +('203.163.83.80', '203.163.83.191', 2147483647, 2147483647, 'JP', 'Japan'), +('203.163.83.192', '203.163.83.207', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.163.83.208', '203.163.83.239', 2147483647, 2147483647, 'TW', 'Taiwan'), +('203.163.83.240', '203.163.84.63', 2147483647, 2147483647, 'JP', 'Japan'), +('203.163.84.64', '203.163.84.79', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('203.163.84.80', '203.163.84.127', 2147483647, 2147483647, 'JP', 'Japan'), +('203.163.84.128', '203.163.84.191', 2147483647, 2147483647, 'TW', 'Taiwan'), +('203.163.84.192', '203.163.84.207', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('203.163.84.208', '203.163.85.127', 2147483647, 2147483647, 'JP', 'Japan'), +('203.163.85.128', '203.163.85.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.163.86.0', '203.163.89.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.163.90.0', '203.163.90.127', 2147483647, 2147483647, 'TW', 'Taiwan'), +('203.163.90.128', '203.163.95.23', 2147483647, 2147483647, 'JP', 'Japan'), +('203.163.95.24', '203.163.95.31', 2147483647, 2147483647, 'IN', 'India'), +('203.163.95.32', '203.163.95.39', 2147483647, 2147483647, 'JP', 'Japan'), +('203.163.95.40', '203.163.95.47', 2147483647, 2147483647, 'AU', 'Australia'), +('203.163.95.48', '203.163.96.15', 2147483647, 2147483647, 'JP', 'Japan'), +('203.163.96.16', '203.163.96.23', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.163.96.24', '203.163.96.31', 2147483647, 2147483647, 'JP', 'Japan'), +('203.163.96.32', '203.163.96.47', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.163.96.48', '203.163.96.63', 2147483647, 2147483647, 'JP', 'Japan'), +('203.163.96.64', '203.163.96.79', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.163.96.80', '203.163.96.95', 2147483647, 2147483647, 'JP', 'Japan'), +('203.163.96.96', '203.163.96.127', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.163.96.128', '203.163.96.175', 2147483647, 2147483647, 'JP', 'Japan'), +('203.163.96.176', '203.163.96.191', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.163.96.192', '203.163.96.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.163.97.0', '203.163.97.31', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.163.97.32', '203.163.97.111', 2147483647, 2147483647, 'JP', 'Japan'), +('203.163.97.112', '203.163.97.143', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.163.97.144', '203.163.97.207', 2147483647, 2147483647, 'JP', 'Japan'), +('203.163.97.208', '203.163.97.239', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.163.97.240', '203.163.99.31', 2147483647, 2147483647, 'JP', 'Japan'), +('203.163.99.32', '203.163.99.47', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('203.163.99.48', '203.163.99.111', 2147483647, 2147483647, 'JP', 'Japan'), +('203.163.99.112', '203.163.99.127', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('203.163.99.128', '203.163.99.143', 2147483647, 2147483647, 'JP', 'Japan'), +('203.163.99.144', '203.163.99.159', 2147483647, 2147483647, 'AU', 'Australia'), +('203.163.99.160', '203.163.99.224', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.163.99.225', '203.163.99.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.163.100.0', '203.163.100.63', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('203.163.100.64', '203.163.101.95', 2147483647, 2147483647, 'JP', 'Japan'), +('203.163.101.96', '203.163.101.127', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.163.101.128', '203.163.101.159', 2147483647, 2147483647, 'JP', 'Japan'), +('203.163.101.160', '203.163.101.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.163.102.0', '203.163.102.63', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.163.102.64', '203.163.102.79', 2147483647, 2147483647, 'JP', 'Japan'), +('203.163.102.80', '203.163.102.95', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.163.102.96', '203.163.102.239', 2147483647, 2147483647, 'JP', 'Japan'), +('203.163.102.240', '203.163.102.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.163.103.0', '203.163.103.79', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.163.103.80', '203.163.103.87', 2147483647, 2147483647, 'JP', 'Japan'), +('203.163.103.88', '203.163.103.191', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.163.103.192', '203.163.104.23', 2147483647, 2147483647, 'JP', 'Japan'), +('203.163.104.24', '203.163.104.31', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('203.163.104.32', '203.163.104.63', 2147483647, 2147483647, 'JP', 'Japan'), +('203.163.104.64', '203.163.104.71', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('203.163.104.72', '203.163.104.79', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.163.104.80', '203.163.104.103', 2147483647, 2147483647, 'JP', 'Japan'), +('203.163.104.104', '203.163.104.111', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('203.163.104.112', '203.163.104.119', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.163.104.120', '203.163.104.127', 2147483647, 2147483647, 'AU', 'Australia'), +('203.163.104.128', '203.163.104.135', 2147483647, 2147483647, 'JP', 'Japan'), +('203.163.104.136', '203.163.104.191', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.163.104.192', '203.163.104.199', 2147483647, 2147483647, 'JP', 'Japan'), +('203.163.104.200', '203.163.104.215', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('203.163.104.216', '203.163.105.47', 2147483647, 2147483647, 'JP', 'Japan'), +('203.163.105.48', '203.163.105.63', 2147483647, 2147483647, 'MY', 'Malaysia'), +('203.163.105.64', '203.163.105.79', 2147483647, 2147483647, 'JP', 'Japan'), +('203.163.105.80', '203.163.105.87', 2147483647, 2147483647, 'MY', 'Malaysia'), +('203.163.105.88', '203.163.105.95', 2147483647, 2147483647, 'JP', 'Japan'), +('203.163.105.96', '203.163.105.127', 2147483647, 2147483647, 'MY', 'Malaysia'), +('203.163.105.128', '203.163.105.159', 2147483647, 2147483647, 'JP', 'Japan'), +('203.163.105.160', '203.163.105.175', 2147483647, 2147483647, 'AU', 'Australia'), +('203.163.105.176', '203.163.105.223', 2147483647, 2147483647, 'JP', 'Japan'), +('203.163.105.224', '203.163.105.239', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.163.105.240', '203.163.105.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.163.106.0', '203.163.106.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.163.107.0', '203.163.107.63', 2147483647, 2147483647, 'JP', 'Japan'), +('203.163.107.64', '203.163.107.127', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.163.107.128', '203.163.111.191', 2147483647, 2147483647, 'JP', 'Japan'), +('203.163.111.192', '203.163.112.15', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.163.112.16', '203.163.112.23', 2147483647, 2147483647, 'JP', 'Japan'), +('203.163.112.24', '203.163.112.39', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.163.112.40', '203.163.112.47', 2147483647, 2147483647, 'JP', 'Japan'), +('203.163.112.48', '203.163.112.55', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.163.112.56', '203.163.112.79', 2147483647, 2147483647, 'JP', 'Japan'), +('203.163.112.80', '203.163.112.87', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.163.112.88', '203.163.112.135', 2147483647, 2147483647, 'JP', 'Japan'), +('203.163.112.136', '203.163.112.151', 2147483647, 2147483647, 'AU', 'Australia'), +('203.163.112.152', '203.163.112.159', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.163.112.160', '203.163.112.175', 2147483647, 2147483647, 'JP', 'Japan'), +('203.163.112.176', '203.163.112.215', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.163.112.216', '203.163.112.223', 2147483647, 2147483647, 'JP', 'Japan'), +('203.163.112.224', '203.163.112.231', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.163.112.232', '203.163.112.239', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.163.112.240', '203.163.112.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.163.113.0', '203.163.116.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.163.117.0', '203.163.117.7', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.163.117.8', '203.163.117.15', 2147483647, 2147483647, 'JP', 'Japan'), +('203.163.117.16', '203.163.117.23', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.163.117.24', '203.163.117.87', 2147483647, 2147483647, 'JP', 'Japan'), +('203.163.117.88', '203.163.117.95', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.163.117.96', '203.163.117.103', 2147483647, 2147483647, 'JP', 'Japan'), +('203.163.117.104', '203.163.117.111', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.163.117.112', '203.163.117.135', 2147483647, 2147483647, 'JP', 'Japan'), +('203.163.117.136', '203.163.117.175', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.163.117.176', '203.163.117.191', 2147483647, 2147483647, 'JP', 'Japan'), +('203.163.117.192', '203.163.117.215', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.163.117.216', '203.163.117.223', 2147483647, 2147483647, 'JP', 'Japan'), +('203.163.117.224', '203.163.117.247', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.163.117.248', '203.163.117.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.163.118.0', '203.163.118.63', 2147483647, 2147483647, 'PH', 'Philippines'), +('203.163.118.64', '203.163.122.3', 2147483647, 2147483647, 'JP', 'Japan'), +('203.163.122.4', '203.163.122.5', 2147483647, 2147483647, 'AU', 'Australia'), +('203.163.122.6', '203.163.122.130', 2147483647, 2147483647, 'JP', 'Japan'), +('203.163.122.131', '203.163.122.131', 2147483647, 2147483647, 'TW', 'Taiwan'), +('203.163.122.132', '203.163.122.132', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.163.122.133', '203.163.122.133', 2147483647, 2147483647, 'JP', 'Japan'), +('203.163.122.134', '203.163.122.134', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.163.122.135', '203.163.122.135', 2147483647, 2147483647, 'AU', 'Australia'), +('203.163.122.136', '203.163.125.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.163.126.0', '203.163.126.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.163.127.0', '203.163.127.3', 2147483647, 2147483647, 'JP', 'Japan'), +('203.163.127.4', '203.163.127.7', 2147483647, 2147483647, 'AU', 'Australia'), +('203.163.127.8', '203.163.127.23', 2147483647, 2147483647, 'JP', 'Japan'), +('203.163.127.24', '203.163.127.31', 2147483647, 2147483647, 'AU', 'Australia'), +('203.163.127.32', '203.163.127.35', 2147483647, 2147483647, 'JP', 'Japan'), +('203.163.127.36', '203.163.127.45', 2147483647, 2147483647, 'AU', 'Australia'), +('203.163.127.46', '203.163.127.46', 2147483647, 2147483647, 'JP', 'Japan'), +('203.163.127.47', '203.163.127.55', 2147483647, 2147483647, 'AU', 'Australia'), +('203.163.127.56', '203.163.127.59', 2147483647, 2147483647, 'JP', 'Japan'), +('203.163.127.60', '203.163.127.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.163.192.0', '203.163.223.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('203.163.224.0', '203.163.255.255', 2147483647, 2147483647, 'IN', 'India'), +('203.164.0.0', '203.164.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.165.0.0', '203.165.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.166.0.0', '203.166.47.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.166.48.0', '203.166.48.127', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.166.48.128', '203.166.51.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.166.52.0', '203.166.55.255', 2147483647, 2147483647, 'US', 'United States'), +('203.166.56.0', '203.166.118.143', 2147483647, 2147483647, 'AU', 'Australia'), +('203.166.118.144', '203.166.118.151', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('203.166.118.152', '203.166.127.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.166.128.0', '203.166.159.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.166.160.0', '203.166.191.255', 2147483647, 2147483647, 'CN', 'China'), +('203.166.192.0', '203.166.207.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('203.166.208.0', '203.166.215.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('203.166.216.0', '203.166.216.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.166.217.0', '203.166.217.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('203.166.218.0', '203.166.219.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.166.220.0', '203.166.223.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.166.224.0', '203.166.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.167.0.0', '203.167.31.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('203.167.32.0', '203.167.63.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.167.64.0', '203.167.127.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('203.167.128.0', '203.167.255.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('203.168.32.0', '203.168.63.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.168.64.0', '203.168.127.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.168.128.0', '203.168.255.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.169.0.0', '203.169.3.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('203.169.4.0', '203.169.5.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('203.169.6.0', '203.169.7.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.169.8.0', '203.169.15.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.169.16.0', '203.169.23.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.169.24.0', '203.169.31.255', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('203.169.32.0', '203.169.47.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.169.48.0', '203.169.55.255', 2147483647, 2147483647, 'MN', 'Mongolia'), +('203.169.56.0', '203.169.56.127', 2147483647, 2147483647, 'JP', 'Japan'), +('203.169.56.128', '203.169.56.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.169.57.0', '203.169.57.127', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.169.57.128', '203.169.57.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.169.58.0', '203.169.58.7', 2147483647, 2147483647, 'JP', 'Japan'), +('203.169.58.8', '203.169.58.15', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('203.169.58.16', '203.169.58.23', 2147483647, 2147483647, 'AU', 'Australia'), +('203.169.58.24', '203.169.58.127', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('203.169.58.128', '203.169.59.63', 2147483647, 2147483647, 'JP', 'Japan'), +('203.169.59.64', '203.169.59.71', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.169.59.72', '203.169.59.119', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('203.169.59.120', '203.169.59.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.169.60.0', '203.169.60.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.169.61.0', '203.169.63.255', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('203.169.64.0', '203.169.127.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.169.128.0', '203.169.255.255', 2147483647, 2147483647, 'HK', 'Hong Kong'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('203.170.0.0', '203.170.15.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.170.16.0', '203.170.19.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('203.170.20.0', '203.170.23.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('203.170.24.0', '203.170.24.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.170.25.0', '203.170.25.255', 2147483647, 2147483647, 'IN', 'India'), +('203.170.26.0', '203.170.27.255', 2147483647, 2147483647, 'VN', 'Vietnam'), +('203.170.28.0', '203.170.31.255', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('203.170.32.0', '203.170.47.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.170.48.0', '203.170.48.255', 2147483647, 2147483647, 'IN', 'India'), +('203.170.49.0', '203.170.49.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.170.50.0', '203.170.51.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('203.170.52.0', '203.170.55.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.170.56.0', '203.170.56.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('203.170.57.0', '203.170.59.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.170.60.0', '203.170.63.255', 2147483647, 2147483647, 'IN', 'India'), +('203.170.64.0', '203.170.79.255', 2147483647, 2147483647, 'PK', 'Pakistan'), +('203.170.80.0', '203.170.87.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.170.88.0', '203.170.88.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('203.170.89.0', '203.170.89.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.170.90.0', '203.170.91.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.170.92.0', '203.170.95.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.170.96.0', '203.170.127.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('203.170.128.0', '203.170.255.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('203.171.0.0', '203.171.3.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('203.171.4.0', '203.171.4.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('203.171.5.0', '203.171.5.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.171.6.0', '203.171.7.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('203.171.8.0', '203.171.15.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.171.16.0', '203.171.31.255', 2147483647, 2147483647, 'VN', 'Vietnam'), +('203.171.32.0', '203.171.63.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('203.171.64.0', '203.171.127.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.171.128.0', '203.171.159.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.171.160.0', '203.171.191.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('203.171.192.0', '203.171.207.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.171.208.0', '203.171.208.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('203.171.209.0', '203.171.211.255', 2147483647, 2147483647, 'IN', 'India'), +('203.171.212.0', '203.171.215.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.171.216.0', '203.171.219.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('203.171.220.0', '203.171.220.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.171.221.0', '203.171.221.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('203.171.222.0', '203.171.222.255', 2147483647, 2147483647, 'IN', 'India'), +('203.171.223.0', '203.171.223.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('203.171.224.0', '203.171.239.255', 2147483647, 2147483647, 'CN', 'China'), +('203.171.240.0', '203.171.247.255', 2147483647, 2147483647, 'IN', 'India'), +('203.171.248.0', '203.171.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.172.0.0', '203.172.31.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('203.172.32.0', '203.172.255.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('203.173.0.0', '203.173.63.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.173.64.0', '203.173.87.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.173.88.0', '203.173.95.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('203.173.96.0', '203.173.127.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('203.173.128.0', '203.173.255.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('203.174.0.0', '203.174.3.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('203.174.5.0', '203.174.5.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('203.174.6.0', '203.174.6.255', 2147483647, 2147483647, 'IN', 'India'), +('203.174.7.0', '203.174.7.255', 2147483647, 2147483647, 'CN', 'China'), +('203.174.8.0', '203.174.15.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('203.174.16.0', '203.174.25.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.174.26.0', '203.174.26.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('203.174.27.0', '203.174.27.255', 2147483647, 2147483647, 'AF', 'Afghanistan'), +('203.174.28.0', '203.174.29.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.174.30.0', '203.174.31.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('203.174.32.0', '203.174.63.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.174.64.0', '203.174.79.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.174.80.0', '203.174.87.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.174.88.0', '203.174.95.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.174.96.0', '203.174.127.255', 2147483647, 2147483647, 'CN', 'China'), +('203.174.128.0', '203.174.191.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.174.192.0', '203.174.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.175.0.0', '203.175.3.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('203.175.4.0', '203.175.7.255', 2147483647, 2147483647, 'IN', 'India'), +('203.175.8.0', '203.175.15.255', 2147483647, 2147483647, 'BT', 'Bhutan'), +('203.175.16.0', '203.175.31.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.175.32.0', '203.175.63.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('203.175.64.0', '203.175.79.255', 2147483647, 2147483647, 'PK', 'Pakistan'), +('203.175.80.0', '203.175.95.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.175.96.0', '203.175.111.255', 2147483647, 2147483647, 'PK', 'Pakistan'), +('203.175.112.0', '203.175.119.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('203.175.120.0', '203.175.123.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.175.124.0', '203.175.127.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('203.175.128.0', '203.175.159.255', 2147483647, 2147483647, 'CN', 'China'), +('203.175.160.0', '203.175.175.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.175.176.0', '203.175.177.255', 2147483647, 2147483647, 'IN', 'India'), +('203.175.178.0', '203.175.179.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.175.180.0', '203.175.185.255', 2147483647, 2147483647, 'IN', 'India'), +('203.175.186.0', '203.175.187.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.175.188.0', '203.175.191.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('203.175.192.0', '203.175.255.255', 2147483647, 2147483647, 'CN', 'China'), +('203.176.96.0', '203.176.111.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.176.112.0', '203.176.113.255', 2147483647, 2147483647, 'IN', 'India'), +('203.176.114.0', '203.176.115.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.176.116.0', '203.176.119.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('203.176.120.0', '203.176.121.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.176.122.0', '203.176.127.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('203.176.128.0', '203.176.143.255', 2147483647, 2147483647, 'KH', 'Cambodia'), +('203.176.144.0', '203.176.151.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('203.176.160.0', '203.176.167.255', 2147483647, 2147483647, 'VN', 'Vietnam'), +('203.176.168.0', '203.176.175.255', 2147483647, 2147483647, 'CN', 'China'), +('203.176.176.0', '203.176.183.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('203.176.184.0', '203.176.187.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.176.188.0', '203.176.188.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('203.176.189.0', '203.176.189.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.176.190.0', '203.176.191.255', 2147483647, 2147483647, 'PK', 'Pakistan'), +('203.176.192.0', '203.176.255.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.177.0.0', '203.177.255.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('203.178.0.0', '203.182.14.111', 2147483647, 2147483647, 'JP', 'Japan'), +('203.182.14.112', '203.182.14.115', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.182.14.116', '203.182.55.175', 2147483647, 2147483647, 'JP', 'Japan'), +('203.182.55.176', '203.182.55.179', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.182.55.180', '203.183.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.184.0.0', '203.184.63.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('203.184.64.0', '203.184.79.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.184.80.0', '203.184.95.255', 2147483647, 2147483647, 'CN', 'China'), +('203.184.96.0', '203.184.127.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.184.128.0', '203.185.63.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.185.64.0', '203.185.159.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('203.185.160.0', '203.185.183.255', 2147483647, 2147483647, 'PF', 'French Polynesia'), +('203.185.184.0', '203.185.187.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.185.188.0', '203.185.188.255', 2147483647, 2147483647, 'IN', 'India'), +('203.185.189.0', '203.185.189.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.185.190.0', '203.185.190.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.185.191.0', '203.185.191.255', 2147483647, 2147483647, 'IN', 'India'), +('203.185.192.0', '203.185.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.186.0.0', '203.186.255.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.187.0.0', '203.187.127.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('203.187.128.0', '203.187.159.255', 2147483647, 2147483647, 'IN', 'India'), +('203.187.160.0', '203.187.191.255', 2147483647, 2147483647, 'CN', 'China'), +('203.187.192.0', '203.187.255.255', 2147483647, 2147483647, 'IN', 'India'), +('203.188.0.0', '203.188.63.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('203.188.64.0', '203.188.127.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.188.128.0', '203.188.159.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.188.160.0', '203.188.191.255', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('203.188.192.0', '203.188.207.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('203.188.208.0', '203.188.215.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.188.216.0', '203.188.223.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.188.224.0', '203.188.231.255', 2147483647, 2147483647, 'IN', 'India'), +('203.188.232.0', '203.188.239.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('203.188.240.0', '203.189.1.255', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('203.189.2.0', '203.189.4.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.189.5.0', '203.189.5.255', 2147483647, 2147483647, 'IN', 'India'), +('203.189.8.0', '203.189.15.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('203.189.16.0', '203.189.23.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('203.189.24.0', '203.189.24.255', 2147483647, 2147483647, 'IN', 'India'), +('203.189.25.0', '203.189.25.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.189.26.0', '203.189.27.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.189.28.0', '203.189.31.255', 2147483647, 2147483647, 'VN', 'Vietnam'), +('203.189.32.0', '203.189.63.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.189.64.0', '203.189.79.255', 2147483647, 2147483647, 'LK', 'Sri Lanka'), +('203.189.80.0', '203.189.87.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.189.88.0', '203.189.89.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('203.189.90.0', '203.189.92.255', 2147483647, 2147483647, 'IN', 'India'), +('203.189.93.0', '203.189.95.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.189.96.0', '203.189.111.255', 2147483647, 2147483647, 'PK', 'Pakistan'), +('203.189.112.0', '203.189.115.255', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('203.189.116.0', '203.189.119.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('203.189.120.0', '203.189.123.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('203.189.124.0', '203.189.127.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.189.128.0', '203.189.159.255', 2147483647, 2147483647, 'KH', 'Cambodia'), +('203.189.160.0', '203.189.175.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.189.176.0', '203.189.183.255', 2147483647, 2147483647, 'IN', 'India'), +('203.189.184.0', '203.189.191.255', 2147483647, 2147483647, 'LK', 'Sri Lanka'), +('203.189.224.0', '203.190.3.255', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('203.190.4.0', '203.190.7.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('203.190.8.0', '203.190.15.255', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('203.190.16.0', '203.190.23.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('203.190.24.0', '203.190.25.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.190.26.0', '203.190.27.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('203.190.28.0', '203.190.31.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.190.32.0', '203.190.35.255', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('203.190.36.0', '203.190.37.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('203.190.38.0', '203.190.39.255', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('203.190.40.0', '203.190.55.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('203.190.56.0', '203.190.63.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.190.64.0', '203.190.75.127', 2147483647, 2147483647, 'PH', 'Philippines'), +('203.190.75.128', '203.190.75.135', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.190.75.136', '203.190.95.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('203.190.96.0', '203.190.111.255', 2147483647, 2147483647, 'CN', 'China'), +('203.190.112.0', '203.190.119.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('203.190.120.0', '203.190.127.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.190.128.0', '203.190.159.255', 2147483647, 2147483647, 'IN', 'India'), +('203.190.160.0', '203.190.175.255', 2147483647, 2147483647, 'VN', 'Vietnam'), +('203.190.176.0', '203.190.183.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.190.184.0', '203.190.191.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('203.190.192.0', '203.190.207.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.190.208.0', '203.190.215.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('203.190.216.0', '203.190.216.255', 2147483647, 2147483647, 'IN', 'India'), +('203.190.217.0', '203.190.217.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.190.218.0', '203.190.221.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('203.190.222.0', '203.190.223.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.190.224.0', '203.190.227.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.190.228.0', '203.190.229.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.190.230.0', '203.190.232.31', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.190.232.32', '203.190.232.63', 2147483647, 2147483647, 'AU', 'Australia'), +('203.190.232.64', '203.190.232.147', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.190.232.148', '203.190.232.155', 2147483647, 2147483647, 'AU', 'Australia'), +('203.190.232.156', '203.190.232.159', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.190.232.160', '203.190.232.175', 2147483647, 2147483647, 'AU', 'Australia'), +('203.190.232.176', '203.190.235.79', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.190.235.80', '203.190.235.95', 2147483647, 2147483647, 'AU', 'Australia'), +('203.190.235.96', '203.190.239.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.190.240.0', '203.190.247.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('203.190.248.0', '203.190.248.255', 2147483647, 2147483647, 'IN', 'India'), +('203.190.249.0', '203.190.249.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.190.250.0', '203.190.251.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('203.190.252.0', '203.190.253.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.190.254.0', '203.191.1.255', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('203.191.2.0', '203.191.2.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.191.3.0', '203.191.3.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.191.4.0', '203.191.4.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.191.5.0', '203.191.5.255', 2147483647, 2147483647, 'IN', 'India'), +('203.191.6.0', '203.191.6.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.191.7.0', '203.191.7.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('203.191.8.0', '203.191.15.255', 2147483647, 2147483647, 'VN', 'Vietnam'), +('203.191.16.0', '203.191.31.255', 2147483647, 2147483647, 'CN', 'China'), +('203.191.32.0', '203.191.33.255', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('203.191.34.0', '203.191.35.255', 2147483647, 2147483647, 'IN', 'India'), +('203.191.36.0', '203.191.39.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.191.40.0', '203.191.47.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('203.191.48.0', '203.191.55.255', 2147483647, 2147483647, 'VN', 'Vietnam'), +('203.191.56.0', '203.191.63.255', 2147483647, 2147483647, 'MN', 'Mongolia'), +('203.191.64.0', '203.191.127.255', 2147483647, 2147483647, 'CN', 'China'), +('203.191.128.0', '203.191.131.255', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('203.191.132.0', '203.191.133.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.191.134.0', '203.191.135.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('203.191.136.0', '203.191.143.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.191.144.0', '203.191.159.255', 2147483647, 2147483647, 'CN', 'China'), +('203.191.160.0', '203.191.207.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.191.208.0', '203.191.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.192.0.0', '203.192.31.255', 2147483647, 2147483647, 'CN', 'China'), +('203.192.32.0', '203.192.63.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('203.192.64.0', '203.192.95.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.192.96.0', '203.192.127.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.192.128.0', '203.192.134.255', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('203.192.135.0', '203.192.135.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.192.136.0', '203.192.136.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.192.137.0', '203.192.137.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.192.138.0', '203.192.138.15', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.192.138.16', '203.192.138.23', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('203.192.138.24', '203.192.138.71', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.192.138.72', '203.192.138.95', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('203.192.138.96', '203.192.138.159', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.192.138.160', '203.192.138.191', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('203.192.138.192', '203.192.138.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.192.139.0', '203.192.139.255', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('203.192.140.0', '203.192.140.7', 2147483647, 2147483647, 'JP', 'Japan'), +('203.192.140.8', '203.192.140.79', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('203.192.140.80', '203.192.140.191', 2147483647, 2147483647, 'JP', 'Japan'), +('203.192.140.192', '203.192.140.255', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('203.192.141.0', '203.192.141.127', 2147483647, 2147483647, 'AU', 'Australia'), +('203.192.141.128', '203.192.141.159', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.192.141.160', '203.192.141.191', 2147483647, 2147483647, 'AU', 'Australia'), +('203.192.141.192', '203.192.141.207', 2147483647, 2147483647, 'MY', 'Malaysia'), +('203.192.141.208', '203.192.141.223', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('203.192.141.224', '203.192.141.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.192.142.0', '203.192.142.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('203.192.143.0', '203.192.143.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('203.192.144.0', '203.192.144.255', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('203.192.145.0', '203.192.145.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.192.146.0', '203.192.146.255', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('203.192.147.0', '203.192.147.15', 2147483647, 2147483647, 'JP', 'Japan'), +('203.192.147.16', '203.192.147.31', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('203.192.147.32', '203.192.147.47', 2147483647, 2147483647, 'JP', 'Japan'), +('203.192.147.48', '203.192.147.63', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('203.192.147.64', '203.192.147.128', 2147483647, 2147483647, 'JP', 'Japan'), +('203.192.147.129', '203.192.148.31', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('203.192.148.32', '203.192.148.47', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('203.192.148.48', '203.192.148.191', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('203.192.148.192', '203.192.148.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('203.192.149.0', '203.192.150.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.192.151.0', '203.192.152.47', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('203.192.152.48', '203.192.152.63', 2147483647, 2147483647, 'TW', 'Taiwan'), +('203.192.152.64', '203.192.156.127', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('203.192.156.128', '203.192.156.135', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.192.156.136', '203.192.156.151', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('203.192.156.152', '203.192.156.215', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.192.156.216', '203.192.157.127', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('203.192.157.128', '203.192.157.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('203.192.158.0', '203.192.159.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.192.160.0', '203.192.161.255', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('203.192.162.0', '203.192.162.127', 2147483647, 2147483647, 'PH', 'Philippines'), +('203.192.162.128', '203.192.162.207', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('203.192.162.208', '203.192.162.223', 2147483647, 2147483647, 'PH', 'Philippines'), +('203.192.162.224', '203.192.162.239', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('203.192.162.240', '203.192.162.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('203.192.163.0', '203.192.170.255', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('203.192.171.0', '203.192.171.63', 2147483647, 2147483647, 'PH', 'Philippines'), +('203.192.171.64', '203.192.171.95', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('203.192.171.96', '203.192.171.111', 2147483647, 2147483647, 'PH', 'Philippines'), +('203.192.171.112', '203.192.171.183', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('203.192.171.184', '203.192.171.191', 2147483647, 2147483647, 'PH', 'Philippines'), +('203.192.171.192', '203.192.171.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('203.192.172.0', '203.192.172.95', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('203.192.172.96', '203.192.172.111', 2147483647, 2147483647, 'PH', 'Philippines'), +('203.192.172.112', '203.192.172.127', 2147483647, 2147483647, 'TW', 'Taiwan'), +('203.192.172.128', '203.192.172.143', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('203.192.172.144', '203.192.172.159', 2147483647, 2147483647, 'TW', 'Taiwan'), +('203.192.172.160', '203.192.176.255', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('203.192.177.0', '203.192.177.31', 2147483647, 2147483647, 'MY', 'Malaysia'), +('203.192.177.32', '203.192.178.255', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('203.192.179.0', '203.192.179.7', 2147483647, 2147483647, 'AU', 'Australia'), +('203.192.179.8', '203.192.179.15', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('203.192.179.16', '203.192.179.31', 2147483647, 2147483647, 'AU', 'Australia'), +('203.192.179.32', '203.192.179.39', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('203.192.179.40', '203.192.179.95', 2147483647, 2147483647, 'AU', 'Australia'), +('203.192.179.96', '203.192.179.127', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('203.192.179.128', '203.192.179.191', 2147483647, 2147483647, 'AU', 'Australia'), +('203.192.179.192', '203.192.179.199', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('203.192.179.200', '203.192.179.223', 2147483647, 2147483647, 'AU', 'Australia'), +('203.192.179.224', '203.192.179.231', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('203.192.179.232', '203.192.179.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.192.180.0', '203.192.180.151', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.192.180.152', '203.192.180.159', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('203.192.180.160', '203.192.180.223', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.192.180.224', '203.192.181.63', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('203.192.181.64', '203.192.181.79', 2147483647, 2147483647, 'TW', 'Taiwan'), +('203.192.181.80', '203.192.181.255', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('203.192.182.0', '203.192.182.127', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('203.192.182.128', '203.192.185.255', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('203.192.186.0', '203.192.186.127', 2147483647, 2147483647, 'AU', 'Australia'), +('203.192.186.128', '203.192.186.255', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('203.192.187.0', '203.192.187.31', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.192.187.32', '203.192.187.223', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('203.192.187.224', '203.192.187.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.192.188.0', '203.192.188.255', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('203.192.189.0', '203.192.189.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.192.190.0', '203.192.191.255', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('203.192.192.0', '203.192.255.255', 2147483647, 2147483647, 'IN', 'India'), +('203.193.0.0', '203.193.48.127', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.193.48.128', '203.193.48.159', 2147483647, 2147483647, 'JP', 'Japan'), +('203.193.48.160', '203.193.98.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.193.99.0', '203.193.99.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.193.100.0', '203.193.116.72', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.193.116.73', '203.193.116.73', 2147483647, 2147483647, 'AS', 'American Samoa'), +('203.193.116.74', '203.193.116.79', 2147483647, 2147483647, 'US', 'United States'), +('203.193.116.80', '203.193.116.95', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.193.116.96', '203.193.116.99', 2147483647, 2147483647, 'US', 'United States'), +('203.193.116.100', '203.193.116.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.193.117.0', '203.193.117.127', 2147483647, 2147483647, 'AS', 'American Samoa'), +('203.193.117.128', '203.193.117.159', 2147483647, 2147483647, 'US', 'United States'), +('203.193.117.160', '203.193.117.163', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.193.117.164', '203.193.117.164', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('203.193.117.165', '203.193.117.167', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.193.117.168', '203.193.117.175', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('203.193.117.176', '203.193.118.127', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.193.118.128', '203.193.118.255', 2147483647, 2147483647, 'US', 'United States'), +('203.193.119.0', '203.193.127.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.193.128.0', '203.193.191.255', 2147483647, 2147483647, 'IN', 'India'), +('203.193.192.0', '203.193.223.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.194.0.0', '203.194.63.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.194.64.0', '203.194.70.79', 2147483647, 2147483647, 'JP', 'Japan'), +('203.194.70.80', '203.194.70.127', 2147483647, 2147483647, 'ID', 'Indonesia'), +('203.194.70.128', '203.194.70.143', 2147483647, 2147483647, 'AU', 'Australia'), +('203.194.70.144', '203.194.70.159', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('203.194.70.160', '203.194.71.35', 2147483647, 2147483647, 'JP', 'Japan'), +('203.194.71.36', '203.194.71.39', 2147483647, 2147483647, 'ID', 'Indonesia'), +('203.194.71.40', '203.194.71.63', 2147483647, 2147483647, 'JP', 'Japan'), +('203.194.71.64', '203.194.71.67', 2147483647, 2147483647, 'ID', 'Indonesia'), +('203.194.71.68', '203.194.72.31', 2147483647, 2147483647, 'JP', 'Japan'), +('203.194.72.32', '203.194.72.71', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.194.72.72', '203.194.74.127', 2147483647, 2147483647, 'JP', 'Japan'), +('203.194.74.128', '203.194.74.143', 2147483647, 2147483647, 'MY', 'Malaysia'), +('203.194.74.144', '203.194.74.151', 2147483647, 2147483647, 'JP', 'Japan'), +('203.194.74.152', '203.194.74.195', 2147483647, 2147483647, 'MY', 'Malaysia'), +('203.194.74.196', '203.194.76.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.194.77.0', '203.194.77.63', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.194.77.64', '203.194.77.95', 2147483647, 2147483647, 'JP', 'Japan'), +('203.194.77.96', '203.194.77.127', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.194.77.128', '203.194.78.127', 2147483647, 2147483647, 'JP', 'Japan'), +('203.194.78.128', '203.194.78.224', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.194.78.225', '203.194.78.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.194.79.0', '203.194.79.63', 2147483647, 2147483647, 'TW', 'Taiwan'), +('203.194.79.64', '203.194.80.15', 2147483647, 2147483647, 'JP', 'Japan'), +('203.194.80.16', '203.194.80.143', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.194.80.144', '203.194.83.191', 2147483647, 2147483647, 'JP', 'Japan'), +('203.194.83.192', '203.194.83.199', 2147483647, 2147483647, 'TW', 'Taiwan'), +('203.194.83.200', '203.194.83.207', 2147483647, 2147483647, 'JP', 'Japan'), +('203.194.83.208', '203.194.83.223', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.194.83.224', '203.194.84.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.194.85.0', '203.194.85.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('203.194.86.0', '203.194.86.79', 2147483647, 2147483647, 'JP', 'Japan'), +('203.194.86.80', '203.194.86.95', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.194.86.96', '203.194.86.103', 2147483647, 2147483647, 'AU', 'Australia'), +('203.194.86.104', '203.194.86.143', 2147483647, 2147483647, 'JP', 'Japan'), +('203.194.86.144', '203.194.86.159', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.194.86.160', '203.194.86.175', 2147483647, 2147483647, 'JP', 'Japan'), +('203.194.86.176', '203.194.86.191', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.194.86.192', '203.194.86.239', 2147483647, 2147483647, 'JP', 'Japan'), +('203.194.86.240', '203.194.86.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.194.87.0', '203.194.87.3', 2147483647, 2147483647, 'JP', 'Japan'), +('203.194.87.4', '203.194.87.11', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.194.87.12', '203.194.87.12', 2147483647, 2147483647, 'JP', 'Japan'), +('203.194.87.13', '203.194.87.13', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.194.87.14', '203.194.87.15', 2147483647, 2147483647, 'JP', 'Japan'), +('203.194.87.16', '203.194.87.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.194.88.0', '203.194.88.23', 2147483647, 2147483647, 'JP', 'Japan'), +('203.194.88.24', '203.194.88.39', 2147483647, 2147483647, 'TW', 'Taiwan'), +('203.194.88.40', '203.194.88.47', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.194.88.48', '203.194.88.55', 2147483647, 2147483647, 'TW', 'Taiwan'), +('203.194.88.56', '203.194.88.63', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.194.88.64', '203.194.88.79', 2147483647, 2147483647, 'TW', 'Taiwan'), +('203.194.88.80', '203.194.91.63', 2147483647, 2147483647, 'JP', 'Japan'), +('203.194.91.64', '203.194.91.127', 2147483647, 2147483647, 'AU', 'Australia'), +('203.194.91.128', '203.194.93.63', 2147483647, 2147483647, 'JP', 'Japan'), +('203.194.93.64', '203.194.93.95', 2147483647, 2147483647, 'AU', 'Australia'), +('203.194.93.96', '203.194.94.55', 2147483647, 2147483647, 'JP', 'Japan'), +('203.194.94.56', '203.194.94.63', 2147483647, 2147483647, 'AU', 'Australia'), +('203.194.94.64', '203.194.94.87', 2147483647, 2147483647, 'JP', 'Japan'), +('203.194.94.88', '203.194.94.135', 2147483647, 2147483647, 'AU', 'Australia'), +('203.194.94.136', '203.194.94.143', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.194.94.144', '203.194.94.159', 2147483647, 2147483647, 'AU', 'Australia'), +('203.194.94.160', '203.194.94.167', 2147483647, 2147483647, 'JP', 'Japan'), +('203.194.94.168', '203.194.94.175', 2147483647, 2147483647, 'AU', 'Australia'), +('203.194.94.176', '203.194.94.191', 2147483647, 2147483647, 'JP', 'Japan'), +('203.194.94.192', '203.194.94.231', 2147483647, 2147483647, 'AU', 'Australia'), +('203.194.94.232', '203.194.95.63', 2147483647, 2147483647, 'JP', 'Japan'), +('203.194.95.64', '203.194.95.79', 2147483647, 2147483647, 'TW', 'Taiwan'), +('203.194.95.80', '203.194.95.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.194.96.0', '203.194.111.255', 2147483647, 2147483647, 'IN', 'India'), +('203.194.112.0', '203.194.119.255', 2147483647, 2147483647, 'MN', 'Mongolia'), +('203.194.128.0', '203.194.139.158', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.194.139.159', '203.194.139.190', 2147483647, 2147483647, 'CN', 'China'), +('203.194.139.191', '203.194.139.222', 2147483647, 2147483647, 'TH', 'Thailand'), +('203.194.139.223', '203.194.255.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.195.96.0', '203.195.111.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('203.195.120.0', '203.195.123.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('203.195.124.0', '203.195.124.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.195.125.0', '203.195.125.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.195.126.0', '203.195.126.255', 2147483647, 2147483647, 'PK', 'Pakistan'), +('203.195.127.0', '203.195.127.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.196.0.0', '203.196.7.255', 2147483647, 2147483647, 'CN', 'China'), +('203.196.16.0', '203.196.23.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.196.24.0', '203.196.31.255', 2147483647, 2147483647, 'KI', 'Kiribati'), +('203.196.32.0', '203.196.63.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.196.64.0', '203.196.89.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.196.90.0', '203.196.90.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('203.196.91.0', '203.196.91.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.196.92.0', '203.196.95.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.196.96.0', '203.196.96.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.196.97.0', '203.196.97.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.196.98.0', '203.196.98.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('203.196.99.0', '203.196.99.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.196.100.0', '203.196.100.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.196.101.0', '203.196.102.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('203.196.103.0', '203.196.103.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.196.104.0', '203.196.104.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.196.105.0', '203.196.105.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('203.196.106.0', '203.196.109.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.196.110.0', '203.196.111.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.196.112.0', '203.196.112.15', 2147483647, 2147483647, 'AU', 'Australia'), +('203.196.112.16', '203.196.112.63', 2147483647, 2147483647, 'JP', 'Japan'), +('203.196.112.64', '203.196.112.207', 2147483647, 2147483647, 'AU', 'Australia'), +('203.196.112.208', '203.196.112.223', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.196.112.224', '203.196.112.239', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('203.196.112.240', '203.196.112.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.196.113.0', '203.196.115.95', 2147483647, 2147483647, 'JP', 'Japan'), +('203.196.115.96', '203.196.115.159', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.196.115.160', '203.196.115.175', 2147483647, 2147483647, 'JP', 'Japan'), +('203.196.115.176', '203.196.115.223', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.196.115.224', '203.196.115.239', 2147483647, 2147483647, 'JP', 'Japan'), +('203.196.115.240', '203.196.115.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.196.116.0', '203.196.117.31', 2147483647, 2147483647, 'JP', 'Japan'), +('203.196.117.32', '203.196.117.95', 2147483647, 2147483647, 'PH', 'Philippines'), +('203.196.117.96', '203.196.120.127', 2147483647, 2147483647, 'JP', 'Japan'), +('203.196.120.128', '203.196.120.184', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.196.120.185', '203.196.120.199', 2147483647, 2147483647, 'JP', 'Japan'), +('203.196.120.200', '203.196.120.215', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.196.120.216', '203.196.120.222', 2147483647, 2147483647, 'JP', 'Japan'), +('203.196.120.223', '203.196.120.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.196.121.0', '203.196.121.159', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('203.196.121.160', '203.196.121.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.196.122.0', '203.196.122.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.196.123.0', '203.196.124.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.196.125.0', '203.196.125.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.196.126.0', '203.196.126.3', 2147483647, 2147483647, 'PH', 'Philippines'), +('203.196.126.4', '203.196.126.7', 2147483647, 2147483647, 'JP', 'Japan'), +('203.196.126.8', '203.196.126.11', 2147483647, 2147483647, 'PH', 'Philippines'), +('203.196.126.12', '203.196.126.23', 2147483647, 2147483647, 'JP', 'Japan'), +('203.196.126.24', '203.196.126.47', 2147483647, 2147483647, 'PH', 'Philippines'), +('203.196.126.48', '203.196.126.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.196.127.0', '203.196.127.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.196.128.0', '203.197.255.255', 2147483647, 2147483647, 'IN', 'India'), +('203.198.0.0', '203.198.255.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.199.0.0', '203.200.255.255', 2147483647, 2147483647, 'IN', 'India'), +('203.201.0.0', '203.201.31.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.201.32.0', '203.201.47.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('203.201.48.0', '203.201.49.255', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('203.201.50.0', '203.201.51.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('203.201.52.0', '203.201.55.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.201.56.0', '203.201.59.255', 2147483647, 2147483647, 'VN', 'Vietnam'), +('203.201.60.0', '203.201.63.255', 2147483647, 2147483647, 'IN', 'India'), +('203.201.64.0', '203.201.159.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.201.160.0', '203.201.175.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('203.201.176.0', '203.201.180.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.201.181.0', '203.201.181.255', 2147483647, 2147483647, 'MN', 'Mongolia'), +('203.201.182.0', '203.201.182.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('203.201.183.0', '203.201.183.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.201.184.0', '203.201.187.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('203.201.188.0', '203.201.191.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.201.192.0', '203.201.255.255', 2147483647, 2147483647, 'IN', 'India'), +('203.202.0.0', '203.202.191.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.202.192.0', '203.202.223.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.202.224.0', '203.202.229.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.202.230.0', '203.202.230.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('203.202.231.0', '203.202.231.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.202.232.0', '203.202.233.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.202.234.0', '203.202.234.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.202.235.0', '203.202.235.255', 2147483647, 2147483647, 'FJ', 'Fiji'), +('203.202.236.0', '203.202.239.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.202.240.0', '203.202.255.255', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('203.203.0.0', '203.204.255.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('203.205.0.0', '203.205.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.206.0.0', '203.206.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.207.0.0', '203.207.15.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('203.207.16.0', '203.207.31.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('203.207.32.0', '203.207.47.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('203.207.48.0', '203.207.51.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.207.52.0', '203.207.59.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('203.207.60.0', '203.207.61.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('203.207.62.0', '203.207.63.255', 2147483647, 2147483647, 'IN', 'India'), +('203.207.64.0', '203.208.19.255', 2147483647, 2147483647, 'CN', 'China'), +('203.208.20.0', '203.208.20.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.208.21.0', '203.208.21.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('203.208.23.0', '203.208.23.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.208.24.0', '203.208.31.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('203.208.32.0', '203.208.63.255', 2147483647, 2147483647, 'CN', 'China'), +('203.208.64.0', '203.208.127.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.208.128.0', '203.208.165.127', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.208.165.128', '203.208.165.159', 2147483647, 2147483647, 'NP', 'Nepal'), +('203.208.165.160', '203.208.166.191', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.208.166.192', '203.208.166.223', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('203.208.166.224', '203.208.197.143', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.208.197.144', '203.208.197.159', 2147483647, 2147483647, 'JP', 'Japan'), +('203.208.197.160', '203.208.205.191', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.208.205.192', '203.208.205.255', 2147483647, 2147483647, 'AF', 'Afghanistan'), +('203.208.206.0', '203.208.255.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.209.0.0', '203.209.127.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('203.209.128.0', '203.209.143.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.209.144.0', '203.209.159.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.209.160.0', '203.209.175.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.209.176.0', '203.209.179.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.209.180.0', '203.209.183.255', 2147483647, 2147483647, 'VN', 'Vietnam'), +('203.209.184.0', '203.209.187.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('203.209.188.0', '203.209.190.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('203.209.191.0', '203.209.191.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('203.209.192.0', '203.209.223.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.209.224.0', '203.209.255.255', 2147483647, 2147483647, 'CN', 'China'), +('203.210.0.0', '203.210.15.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.210.16.0', '203.210.63.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('203.210.64.0', '203.210.79.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.210.80.0', '203.210.81.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('203.210.82.0', '203.210.82.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.210.83.0', '203.210.87.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('203.210.88.0', '203.210.91.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.210.92.0', '203.210.95.255', 2147483647, 2147483647, 'IN', 'India'), +('203.210.96.0', '203.210.127.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.210.128.0', '203.210.255.255', 2147483647, 2147483647, 'VN', 'Vietnam'), +('203.211.0.0', '203.211.31.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('203.211.32.0', '203.211.55.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.211.56.0', '203.211.59.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.211.60.0', '203.211.63.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.211.64.0', '203.211.127.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('203.211.128.0', '203.211.159.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.211.160.0', '203.211.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.212.0.0', '203.212.15.255', 2147483647, 2147483647, 'CN', 'China'), +('203.212.16.0', '203.212.23.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.212.24.0', '203.212.27.255', 2147483647, 2147483647, 'IN', 'India'), +('203.212.28.0', '203.212.31.255', 2147483647, 2147483647, 'MN', 'Mongolia'), +('203.212.32.0', '203.212.63.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.212.64.0', '203.212.79.255', 2147483647, 2147483647, 'IN', 'India'), +('203.212.80.0', '203.212.95.255', 2147483647, 2147483647, 'CN', 'China'), +('203.212.96.0', '203.212.127.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('203.212.128.0', '203.212.159.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.212.160.0', '203.212.191.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('203.212.192.0', '203.212.255.255', 2147483647, 2147483647, 'IN', 'India'), +('203.213.0.0', '203.213.159.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.213.160.0', '203.213.191.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.213.192.0', '203.213.223.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('203.213.224.0', '203.215.31.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.215.32.0', '203.215.47.255', 2147483647, 2147483647, 'AF', 'Afghanistan'), +('203.215.48.0', '203.215.48.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('203.215.49.0', '203.215.49.255', 2147483647, 2147483647, 'KH', 'Cambodia'), +('203.215.50.0', '203.215.50.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('203.215.51.0', '203.215.55.255', 2147483647, 2147483647, 'IN', 'India'), +('203.215.56.0', '203.215.59.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.215.60.0', '203.215.63.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('203.215.64.0', '203.215.127.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('203.215.128.0', '203.215.135.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.215.136.0', '203.215.136.255', 2147483647, 2147483647, 'FR', 'France'), +('203.215.137.0', '203.215.137.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('203.215.138.0', '203.215.141.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.215.142.0', '203.215.143.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('203.215.144.0', '203.215.144.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.215.145.0', '203.215.145.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.215.146.0', '203.215.146.255', 2147483647, 2147483647, 'CN', 'China'), +('203.215.147.0', '203.215.147.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.215.148.0', '203.215.148.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.215.149.0', '203.215.149.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.215.150.0', '203.215.159.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.215.160.0', '203.215.191.255', 2147483647, 2147483647, 'PK', 'Pakistan'), +('203.215.192.0', '203.215.223.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('203.215.224.0', '203.215.231.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.215.240.0', '203.215.255.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.216.0.0', '203.216.159.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.216.160.0', '203.216.191.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('203.216.192.0', '203.216.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.217.0.0', '203.217.95.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.217.96.0', '203.217.127.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('203.217.128.0', '203.217.131.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('203.217.132.0', '203.217.135.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('203.217.136.0', '203.217.139.255', 2147483647, 2147483647, 'IN', 'India'), +('203.217.140.0', '203.217.140.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('203.217.141.0', '203.217.141.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.217.142.0', '203.217.143.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('203.217.144.0', '203.217.147.255', 2147483647, 2147483647, 'IN', 'India'), +('203.217.148.0', '203.217.155.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.217.156.0', '203.217.159.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.217.160.0', '203.217.161.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.217.192.0', '203.217.255.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('203.218.0.0', '203.218.255.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.219.0.0', '203.221.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.222.0.0', '203.222.31.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('203.222.32.0', '203.222.41.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.222.42.0', '203.222.42.31', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.222.42.32', '203.222.42.47', 2147483647, 2147483647, 'AU', 'Australia'), +('203.222.42.48', '203.222.42.51', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.222.42.52', '203.222.42.55', 2147483647, 2147483647, 'AU', 'Australia'), +('203.222.42.56', '203.222.42.95', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.222.42.96', '203.222.42.103', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.222.42.104', '203.222.42.111', 2147483647, 2147483647, 'JP', 'Japan'), +('203.222.42.112', '203.222.42.127', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.222.42.128', '203.222.42.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.222.43.0', '203.222.44.167', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.222.44.168', '203.222.44.175', 2147483647, 2147483647, 'CN', 'China'), +('203.222.44.176', '203.222.45.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.222.46.0', '203.222.46.7', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('203.222.46.8', '203.222.46.15', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.222.46.16', '203.222.46.24', 2147483647, 2147483647, 'JP', 'Japan'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('203.222.46.25', '203.222.46.31', 2147483647, 2147483647, 'AU', 'Australia'), +('203.222.46.32', '203.222.46.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.222.47.0', '203.222.47.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.222.48.0', '203.222.48.55', 2147483647, 2147483647, 'JP', 'Japan'), +('203.222.48.56', '203.222.48.71', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.222.48.72', '203.222.48.79', 2147483647, 2147483647, 'JP', 'Japan'), +('203.222.48.80', '203.222.48.95', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.222.48.96', '203.222.48.127', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.222.48.128', '203.222.48.159', 2147483647, 2147483647, 'JP', 'Japan'), +('203.222.48.160', '203.222.48.191', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.222.48.192', '203.222.48.223', 2147483647, 2147483647, 'JP', 'Japan'), +('203.222.48.224', '203.222.48.239', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('203.222.48.240', '203.222.48.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.222.49.0', '203.222.50.15', 2147483647, 2147483647, 'JP', 'Japan'), +('203.222.50.16', '203.222.50.31', 2147483647, 2147483647, 'AU', 'Australia'), +('203.222.50.32', '203.222.50.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.222.51.0', '203.222.51.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.222.52.0', '203.222.52.15', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.222.52.16', '203.222.52.19', 2147483647, 2147483647, 'AU', 'Australia'), +('203.222.52.20', '203.222.52.23', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.222.52.24', '203.222.52.31', 2147483647, 2147483647, 'AU', 'Australia'), +('203.222.52.32', '203.222.53.191', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.222.53.192', '203.222.53.223', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.222.53.224', '203.222.53.227', 2147483647, 2147483647, 'AU', 'Australia'), +('203.222.53.228', '203.222.53.235', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.222.53.236', '203.222.53.239', 2147483647, 2147483647, 'AU', 'Australia'), +('203.222.53.240', '203.222.53.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.222.54.0', '203.222.54.63', 2147483647, 2147483647, 'AU', 'Australia'), +('203.222.54.64', '203.222.54.79', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('203.222.54.80', '203.222.54.171', 2147483647, 2147483647, 'AU', 'Australia'), +('203.222.54.172', '203.222.54.175', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('203.222.54.176', '203.222.63.51', 2147483647, 2147483647, 'AU', 'Australia'), +('203.222.63.52', '203.222.63.55', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('203.222.63.56', '203.222.63.175', 2147483647, 2147483647, 'AU', 'Australia'), +('203.222.63.176', '203.222.63.191', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('203.222.63.192', '203.222.164.23', 2147483647, 2147483647, 'AU', 'Australia'), +('203.222.164.24', '203.222.164.31', 2147483647, 2147483647, 'TW', 'Taiwan'), +('203.222.164.32', '203.222.164.63', 2147483647, 2147483647, 'AU', 'Australia'), +('203.222.164.64', '203.222.164.223', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.222.164.224', '203.222.164.231', 2147483647, 2147483647, 'TW', 'Taiwan'), +('203.222.164.232', '203.222.164.235', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.222.164.236', '203.222.164.239', 2147483647, 2147483647, 'AU', 'Australia'), +('203.222.164.240', '203.222.164.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('203.222.165.0', '203.222.165.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.222.166.0', '203.222.166.95', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.222.166.96', '203.222.166.103', 2147483647, 2147483647, 'CN', 'China'), +('203.222.166.104', '203.222.166.111', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.222.166.112', '203.222.166.127', 2147483647, 2147483647, 'US', 'United States'), +('203.222.166.128', '203.222.166.135', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.222.166.136', '203.222.166.143', 2147483647, 2147483647, 'IN', 'India'), +('203.222.166.144', '203.222.166.159', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.222.166.160', '203.222.166.175', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.222.166.176', '203.222.166.191', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.222.166.192', '203.222.166.255', 2147483647, 2147483647, 'CN', 'China'), +('203.222.167.0', '203.222.167.47', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.222.167.48', '203.222.167.55', 2147483647, 2147483647, 'TW', 'Taiwan'), +('203.222.167.56', '203.222.167.63', 2147483647, 2147483647, 'CN', 'China'), +('203.222.167.64', '203.222.167.127', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.222.167.128', '203.222.167.143', 2147483647, 2147483647, 'CN', 'China'), +('203.222.167.144', '203.222.167.159', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('203.222.167.160', '203.222.167.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.222.168.0', '203.222.168.23', 2147483647, 2147483647, 'JP', 'Japan'), +('203.222.168.24', '203.222.168.31', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('203.222.168.32', '203.222.168.63', 2147483647, 2147483647, 'AU', 'Australia'), +('203.222.168.64', '203.222.168.111', 2147483647, 2147483647, 'JP', 'Japan'), +('203.222.168.112', '203.222.168.127', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('203.222.168.128', '203.222.168.191', 2147483647, 2147483647, 'JP', 'Japan'), +('203.222.168.192', '203.222.168.207', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('203.222.168.208', '203.222.168.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.222.169.0', '203.222.169.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.222.170.0', '203.222.170.23', 2147483647, 2147483647, 'JP', 'Japan'), +('203.222.170.24', '203.222.170.63', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('203.222.170.64', '203.222.170.135', 2147483647, 2147483647, 'JP', 'Japan'), +('203.222.170.136', '203.222.170.143', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('203.222.170.144', '203.222.170.159', 2147483647, 2147483647, 'AU', 'Australia'), +('203.222.170.160', '203.222.171.15', 2147483647, 2147483647, 'JP', 'Japan'), +('203.222.171.16', '203.222.171.31', 2147483647, 2147483647, 'AU', 'Australia'), +('203.222.171.32', '203.222.171.47', 2147483647, 2147483647, 'JP', 'Japan'), +('203.222.171.48', '203.222.171.63', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('203.222.171.64', '203.222.171.127', 2147483647, 2147483647, 'JP', 'Japan'), +('203.222.171.128', '203.222.171.159', 2147483647, 2147483647, 'AU', 'Australia'), +('203.222.171.160', '203.222.171.175', 2147483647, 2147483647, 'TW', 'Taiwan'), +('203.222.171.176', '203.222.171.191', 2147483647, 2147483647, 'IN', 'India'), +('203.222.171.192', '203.222.171.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.222.172.0', '203.222.172.143', 2147483647, 2147483647, 'AU', 'Australia'), +('203.222.172.144', '203.222.172.159', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('203.222.172.160', '203.222.172.191', 2147483647, 2147483647, 'AU', 'Australia'), +('203.222.172.192', '203.222.172.195', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('203.222.172.196', '203.222.174.199', 2147483647, 2147483647, 'AU', 'Australia'), +('203.222.174.200', '203.222.174.207', 2147483647, 2147483647, 'CN', 'China'), +('203.222.174.208', '203.222.174.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.222.175.0', '203.222.175.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('203.222.176.0', '203.222.176.39', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.222.176.40', '203.222.176.47', 2147483647, 2147483647, 'TW', 'Taiwan'), +('203.222.176.48', '203.222.176.95', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.222.176.96', '203.222.176.127', 2147483647, 2147483647, 'AU', 'Australia'), +('203.222.176.128', '203.222.176.159', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.222.176.160', '203.222.176.191', 2147483647, 2147483647, 'AU', 'Australia'), +('203.222.176.192', '203.222.176.243', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.222.176.244', '203.222.177.71', 2147483647, 2147483647, 'CN', 'China'), +('203.222.177.72', '203.222.177.87', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.222.177.88', '203.222.177.103', 2147483647, 2147483647, 'TW', 'Taiwan'), +('203.222.177.104', '203.222.177.111', 2147483647, 2147483647, 'CN', 'China'), +('203.222.177.112', '203.222.177.127', 2147483647, 2147483647, 'AU', 'Australia'), +('203.222.177.128', '203.222.177.191', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.222.177.192', '203.222.177.255', 2147483647, 2147483647, 'CN', 'China'), +('203.222.178.0', '203.222.181.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.222.182.0', '203.222.182.95', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.222.182.96', '203.222.182.111', 2147483647, 2147483647, 'CN', 'China'), +('203.222.182.112', '203.222.182.127', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.222.182.128', '203.222.182.143', 2147483647, 2147483647, 'JP', 'Japan'), +('203.222.182.144', '203.222.182.159', 2147483647, 2147483647, 'CN', 'China'), +('203.222.182.160', '203.222.182.191', 2147483647, 2147483647, 'AU', 'Australia'), +('203.222.182.192', '203.222.183.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.222.184.0', '203.222.184.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.222.185.0', '203.222.185.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.222.186.0', '203.222.187.63', 2147483647, 2147483647, 'JP', 'Japan'), +('203.222.187.64', '203.222.187.95', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('203.222.187.96', '203.222.187.111', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.222.187.112', '203.222.187.127', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('203.222.187.128', '203.222.187.167', 2147483647, 2147483647, 'IN', 'India'), +('203.222.187.168', '203.222.187.175', 2147483647, 2147483647, 'SG', 'Singapore'), +('203.222.187.176', '203.222.187.183', 2147483647, 2147483647, 'CN', 'China'), +('203.222.187.184', '203.222.187.191', 2147483647, 2147483647, 'AU', 'Australia'), +('203.222.187.192', '203.222.187.255', 2147483647, 2147483647, 'IN', 'India'), +('203.222.188.0', '203.222.188.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.222.189.0', '203.222.190.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.222.191.0', '203.222.191.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.222.192.0', '203.222.207.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.222.208.0', '203.222.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.223.0.0', '203.223.15.255', 2147483647, 2147483647, 'US', 'United States'), +('203.223.24.0', '203.223.31.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.223.32.0', '203.223.47.255', 2147483647, 2147483647, 'KH', 'Cambodia'), +('203.223.48.0', '203.223.87.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.223.88.0', '203.223.89.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('203.223.90.0', '203.223.91.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('203.223.92.0', '203.223.95.255', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('203.223.96.0', '203.223.127.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('203.223.128.0', '203.223.159.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('203.223.160.0', '203.223.175.255', 2147483647, 2147483647, 'PK', 'Pakistan'), +('203.223.176.0', '203.223.176.255', 2147483647, 2147483647, 'IN', 'India'), +('203.223.177.0', '203.223.177.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('203.223.178.0', '203.223.178.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.223.179.0', '203.223.179.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.223.180.0', '203.223.183.255', 2147483647, 2147483647, 'JP', 'Japan'), +('203.223.184.0', '203.223.187.255', 2147483647, 2147483647, 'AU', 'Australia'), +('203.223.188.0', '203.223.191.255', 2147483647, 2147483647, 'IN', 'India'), +('203.223.192.0', '203.223.255.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('203.224.0.0', '203.255.255.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('204.0.0.0', '204.2.133.255', 2147483647, 2147483647, 'US', 'United States'), +('204.2.134.0', '204.2.134.255', 2147483647, 2147483647, 'A1', 'Anonymous Proxy'), +('204.2.135.0', '204.4.133.255', 2147483647, 2147483647, 'US', 'United States'), +('204.4.134.0', '204.4.134.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('204.4.135.0', '204.6.39.255', 2147483647, 2147483647, 'US', 'United States'), +('204.6.40.0', '204.6.44.255', 2147483647, 2147483647, 'FR', 'France'), +('204.6.45.0', '204.8.63.255', 2147483647, 2147483647, 'US', 'United States'), +('204.8.64.0', '204.8.64.31', 2147483647, 2147483647, 'VI', 'Virgin Islands, U.S.'), +('204.8.64.32', '204.8.64.47', 2147483647, 2147483647, 'US', 'United States'), +('204.8.64.48', '204.8.64.95', 2147483647, 2147483647, 'VI', 'Virgin Islands, U.S.'), +('204.8.64.96', '204.8.64.111', 2147483647, 2147483647, 'US', 'United States'), +('204.8.64.112', '204.8.67.255', 2147483647, 2147483647, 'VI', 'Virgin Islands, U.S.'), +('204.8.68.0', '204.8.71.255', 2147483647, 2147483647, 'US', 'United States'), +('204.8.72.0', '204.8.75.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.8.76.0', '204.9.7.255', 2147483647, 2147483647, 'US', 'United States'), +('204.9.8.0', '204.9.15.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.9.16.0', '204.9.138.255', 2147483647, 2147483647, 'US', 'United States'), +('204.9.139.0', '204.9.139.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.9.140.0', '204.9.159.255', 2147483647, 2147483647, 'US', 'United States'), +('204.9.160.0', '204.9.167.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.9.168.0', '204.10.0.239', 2147483647, 2147483647, 'US', 'United States'), +('204.10.0.240', '204.10.0.247', 2147483647, 2147483647, 'AN', 'Netherlands Antilles'), +('204.10.0.248', '204.10.3.1', 2147483647, 2147483647, 'US', 'United States'), +('204.10.3.2', '204.10.3.191', 2147483647, 2147483647, 'AN', 'Netherlands Antilles'), +('204.10.3.192', '204.10.55.255', 2147483647, 2147483647, 'US', 'United States'), +('204.10.56.0', '204.10.59.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.10.60.0', '204.10.106.191', 2147483647, 2147483647, 'US', 'United States'), +('204.10.106.192', '204.10.106.223', 2147483647, 2147483647, 'CA', 'Canada'), +('204.10.106.224', '204.10.111.31', 2147483647, 2147483647, 'US', 'United States'), +('204.10.111.32', '204.10.111.63', 2147483647, 2147483647, 'CA', 'Canada'), +('204.10.111.64', '204.10.111.255', 2147483647, 2147483647, 'US', 'United States'), +('204.10.112.0', '204.10.119.255', 2147483647, 2147483647, 'JM', 'Jamaica'), +('204.10.120.0', '204.10.199.255', 2147483647, 2147483647, 'US', 'United States'), +('204.10.200.0', '204.10.207.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.10.216.0', '204.10.239.255', 2147483647, 2147483647, 'US', 'United States'), +('204.10.240.0', '204.10.243.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.10.244.0', '204.11.47.255', 2147483647, 2147483647, 'US', 'United States'), +('204.11.48.0', '204.11.49.47', 2147483647, 2147483647, 'CA', 'Canada'), +('204.11.49.48', '204.11.49.55', 2147483647, 2147483647, 'US', 'United States'), +('204.11.49.56', '204.11.49.79', 2147483647, 2147483647, 'CA', 'Canada'), +('204.11.49.80', '204.11.49.87', 2147483647, 2147483647, 'US', 'United States'), +('204.11.49.88', '204.11.49.143', 2147483647, 2147483647, 'CA', 'Canada'), +('204.11.49.144', '204.11.49.151', 2147483647, 2147483647, 'US', 'United States'), +('204.11.49.152', '204.11.49.239', 2147483647, 2147483647, 'CA', 'Canada'), +('204.11.49.240', '204.11.49.247', 2147483647, 2147483647, 'US', 'United States'), +('204.11.49.248', '204.11.55.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.11.56.0', '204.11.119.255', 2147483647, 2147483647, 'US', 'United States'), +('204.11.120.0', '204.11.123.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.11.124.0', '204.11.151.255', 2147483647, 2147483647, 'US', 'United States'), +('204.11.152.0', '204.11.159.255', 2147483647, 2147483647, 'VI', 'Virgin Islands, U.S.'), +('204.11.160.0', '204.11.221.31', 2147483647, 2147483647, 'US', 'United States'), +('204.11.221.32', '204.11.221.79', 2147483647, 2147483647, 'IL', 'Israel'), +('204.11.221.80', '204.12.127.255', 2147483647, 2147483647, 'US', 'United States'), +('204.12.128.0', '204.12.143.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('204.12.144.0', '204.12.159.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.12.160.0', '204.13.31.255', 2147483647, 2147483647, 'US', 'United States'), +('204.13.32.0', '204.13.39.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.13.40.0', '204.13.228.255', 2147483647, 2147483647, 'US', 'United States'), +('204.13.229.0', '204.13.229.15', 2147483647, 2147483647, 'CA', 'Canada'), +('204.13.229.16', '204.14.15.255', 2147483647, 2147483647, 'US', 'United States'), +('204.14.16.0', '204.14.19.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.14.20.0', '204.14.41.255', 2147483647, 2147483647, 'US', 'United States'), +('204.14.42.0', '204.14.42.127', 2147483647, 2147483647, 'NG', 'Nigeria'), +('204.14.42.128', '204.14.42.255', 2147483647, 2147483647, 'US', 'United States'), +('204.14.43.0', '204.14.43.255', 2147483647, 2147483647, 'DM', 'Dominica'), +('204.14.44.0', '204.14.44.63', 2147483647, 2147483647, 'GY', 'Guyana'), +('204.14.44.64', '204.14.44.103', 2147483647, 2147483647, 'US', 'United States'), +('204.14.44.104', '204.14.44.111', 2147483647, 2147483647, 'AO', 'Angola'), +('204.14.44.112', '204.14.44.191', 2147483647, 2147483647, 'US', 'United States'), +('204.14.44.192', '204.14.44.207', 2147483647, 2147483647, 'NG', 'Nigeria'), +('204.14.44.208', '204.14.46.191', 2147483647, 2147483647, 'US', 'United States'), +('204.14.46.192', '204.14.46.207', 2147483647, 2147483647, 'NG', 'Nigeria'), +('204.14.46.208', '204.14.93.255', 2147483647, 2147483647, 'US', 'United States'), +('204.14.94.0', '204.14.94.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.14.95.0', '204.14.95.15', 2147483647, 2147483647, 'ID', 'Indonesia'), +('204.14.95.16', '204.14.247.255', 2147483647, 2147483647, 'US', 'United States'), +('204.14.248.0', '204.14.255.255', 2147483647, 2147483647, 'AI', 'Anguilla'), +('204.15.0.0', '204.15.31.255', 2147483647, 2147483647, 'US', 'United States'), +('204.15.32.0', '204.15.39.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.15.40.0', '204.15.55.255', 2147483647, 2147483647, 'US', 'United States'), +('204.15.64.0', '204.15.143.255', 2147483647, 2147483647, 'US', 'United States'), +('204.15.144.0', '204.15.151.255', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('204.15.152.0', '204.15.183.255', 2147483647, 2147483647, 'US', 'United States'), +('204.15.184.0', '204.15.192.95', 2147483647, 2147483647, 'CA', 'Canada'), +('204.15.192.96', '204.15.192.103', 2147483647, 2147483647, 'AU', 'Australia'), +('204.15.192.104', '204.15.192.111', 2147483647, 2147483647, 'CA', 'Canada'), +('204.15.192.112', '204.15.192.119', 2147483647, 2147483647, 'US', 'United States'), +('204.15.192.120', '204.15.192.167', 2147483647, 2147483647, 'CA', 'Canada'), +('204.15.192.168', '204.15.192.175', 2147483647, 2147483647, 'US', 'United States'), +('204.15.192.176', '204.15.192.191', 2147483647, 2147483647, 'CA', 'Canada'), +('204.15.192.192', '204.15.192.199', 2147483647, 2147483647, 'US', 'United States'), +('204.15.192.200', '204.15.192.207', 2147483647, 2147483647, 'CA', 'Canada'), +('204.15.192.208', '204.15.192.215', 2147483647, 2147483647, 'US', 'United States'), +('204.15.192.216', '204.15.192.247', 2147483647, 2147483647, 'CA', 'Canada'), +('204.15.192.248', '204.15.192.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('204.15.193.0', '204.15.193.239', 2147483647, 2147483647, 'CA', 'Canada'), +('204.15.193.240', '204.15.193.255', 2147483647, 2147483647, 'US', 'United States'), +('204.15.194.0', '204.15.195.63', 2147483647, 2147483647, 'CA', 'Canada'), +('204.15.195.64', '204.15.195.127', 2147483647, 2147483647, 'AR', 'Argentina'), +('204.15.195.128', '204.15.196.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.15.197.0', '204.15.197.15', 2147483647, 2147483647, 'IR', 'Iran, Islamic Republic of'), +('204.15.197.16', '204.15.198.15', 2147483647, 2147483647, 'CA', 'Canada'), +('204.15.198.16', '204.15.198.31', 2147483647, 2147483647, 'US', 'United States'), +('204.15.198.32', '204.15.198.87', 2147483647, 2147483647, 'CA', 'Canada'), +('204.15.198.88', '204.15.198.95', 2147483647, 2147483647, 'US', 'United States'), +('204.15.198.96', '204.15.198.103', 2147483647, 2147483647, 'CA', 'Canada'), +('204.15.198.104', '204.15.198.111', 2147483647, 2147483647, 'NL', 'Netherlands'), +('204.15.198.112', '204.15.198.119', 2147483647, 2147483647, 'CA', 'Canada'), +('204.15.198.120', '204.15.198.127', 2147483647, 2147483647, 'ES', 'Spain'), +('204.15.198.128', '204.15.198.135', 2147483647, 2147483647, 'CA', 'Canada'), +('204.15.198.136', '204.15.198.143', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('204.15.198.144', '204.15.198.207', 2147483647, 2147483647, 'CA', 'Canada'), +('204.15.198.208', '204.15.198.215', 2147483647, 2147483647, 'US', 'United States'), +('204.15.198.216', '204.15.198.223', 2147483647, 2147483647, 'CA', 'Canada'), +('204.15.198.224', '204.15.198.239', 2147483647, 2147483647, 'US', 'United States'), +('204.15.198.240', '204.15.199.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.15.200.0', '204.16.7.255', 2147483647, 2147483647, 'US', 'United States'), +('204.16.8.0', '204.16.11.255', 2147483647, 2147483647, 'KN', 'Saint Kitts and Nevis'), +('204.16.12.0', '204.16.99.255', 2147483647, 2147483647, 'US', 'United States'), +('204.16.100.0', '204.16.103.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.16.104.0', '204.16.111.255', 2147483647, 2147483647, 'US', 'United States'), +('204.16.124.0', '204.16.127.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('204.16.128.0', '204.16.143.255', 2147483647, 2147483647, 'US', 'United States'), +('204.16.144.0', '204.16.151.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.16.152.0', '204.16.199.255', 2147483647, 2147483647, 'US', 'United States'), +('204.16.200.0', '204.16.207.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.16.208.0', '204.17.167.255', 2147483647, 2147483647, 'US', 'United States'), +('204.17.168.0', '204.17.168.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.17.169.0', '204.18.255.255', 2147483647, 2147483647, 'US', 'United States'), +('204.19.0.0', '204.19.118.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.19.119.0', '204.19.119.255', 2147483647, 2147483647, 'US', 'United States'), +('204.19.120.0', '204.19.199.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.19.200.0', '204.19.203.255', 2147483647, 2147483647, 'KN', 'Saint Kitts and Nevis'), +('204.19.206.0', '204.19.237.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.19.238.0', '204.19.239.255', 2147483647, 2147483647, 'US', 'United States'), +('204.19.240.0', '204.19.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.20.0.0', '204.27.51.255', 2147483647, 2147483647, 'US', 'United States'), +('204.27.52.0', '204.27.55.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.27.56.0', '204.27.223.255', 2147483647, 2147483647, 'US', 'United States'), +('204.27.224.0', '204.27.224.255', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('204.27.225.0', '204.29.160.255', 2147483647, 2147483647, 'US', 'United States'), +('204.29.161.0', '204.29.161.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.29.162.0', '204.29.162.255', 2147483647, 2147483647, 'US', 'United States'), +('204.29.164.0', '204.39.255.255', 2147483647, 2147483647, 'US', 'United States'), +('204.40.0.0', '204.41.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.42.0.0', '204.47.255.255', 2147483647, 2147483647, 'US', 'United States'), +('204.48.0.0', '204.48.7.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.48.8.0', '204.49.255.255', 2147483647, 2147483647, 'US', 'United States'), +('204.50.0.0', '204.50.102.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.50.103.0', '204.50.103.255', 2147483647, 2147483647, 'US', 'United States'), +('204.50.104.0', '204.50.157.111', 2147483647, 2147483647, 'CA', 'Canada'), +('204.50.157.112', '204.50.157.127', 2147483647, 2147483647, 'US', 'United States'), +('204.50.157.128', '204.50.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.51.0.0', '204.52.207.255', 2147483647, 2147483647, 'US', 'United States'), +('204.52.208.0', '204.52.208.255', 2147483647, 2147483647, 'IL', 'Israel'), +('204.52.209.0', '204.58.135.255', 2147483647, 2147483647, 'US', 'United States'), +('204.58.136.0', '204.58.139.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('204.58.140.0', '204.63.247.255', 2147483647, 2147483647, 'US', 'United States'), +('204.63.248.0', '204.63.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.64.0.0', '204.69.207.255', 2147483647, 2147483647, 'US', 'United States'), +('204.69.208.0', '204.69.208.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.69.209.0', '204.69.209.255', 2147483647, 2147483647, 'US', 'United States'), +('204.69.211.0', '204.69.213.255', 2147483647, 2147483647, 'US', 'United States'), +('204.69.216.0', '204.77.77.255', 2147483647, 2147483647, 'US', 'United States'), +('204.77.78.0', '204.77.78.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.77.79.0', '204.78.255.255', 2147483647, 2147483647, 'US', 'United States'), +('204.79.0.0', '204.79.0.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.79.1.0', '204.79.3.255', 2147483647, 2147483647, 'US', 'United States'), +('204.79.4.0', '204.79.4.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('204.79.5.0', '204.79.5.255', 2147483647, 2147483647, 'DE', 'Germany'), +('204.79.6.0', '204.79.9.255', 2147483647, 2147483647, 'US', 'United States'), +('204.79.10.0', '204.79.10.255', 2147483647, 2147483647, 'DE', 'Germany'), +('204.79.11.0', '204.79.11.255', 2147483647, 2147483647, 'US', 'United States'), +('204.79.12.0', '204.79.12.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('204.79.13.0', '204.79.21.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('204.79.22.0', '204.79.22.255', 2147483647, 2147483647, 'US', 'United States'), +('204.79.23.0', '204.79.25.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('204.79.26.0', '204.79.26.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('204.79.27.0', '204.79.48.255', 2147483647, 2147483647, 'US', 'United States'), +('204.79.49.0', '204.79.50.255', 2147483647, 2147483647, 'DE', 'Germany'), +('204.79.51.0', '204.79.51.255', 2147483647, 2147483647, 'AT', 'Austria'), +('204.79.52.0', '204.79.52.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('204.79.53.0', '204.79.54.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('204.79.55.0', '204.79.55.255', 2147483647, 2147483647, 'DE', 'Germany'), +('204.79.56.0', '204.79.56.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.79.57.0', '204.79.57.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('204.79.58.0', '204.79.61.255', 2147483647, 2147483647, 'DE', 'Germany'), +('204.79.62.0', '204.79.63.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('204.79.64.0', '204.79.64.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('204.79.65.0', '204.79.65.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('204.79.66.0', '204.79.66.255', 2147483647, 2147483647, 'US', 'United States'), +('204.79.67.0', '204.79.67.255', 2147483647, 2147483647, 'JP', 'Japan'), +('204.79.68.0', '204.79.68.255', 2147483647, 2147483647, 'DE', 'Germany'), +('204.79.69.0', '204.79.69.255', 2147483647, 2147483647, 'US', 'United States'), +('204.79.70.0', '204.79.70.255', 2147483647, 2147483647, 'DE', 'Germany'), +('204.79.71.0', '204.79.71.255', 2147483647, 2147483647, 'US', 'United States'), +('204.79.72.0', '204.79.72.255', 2147483647, 2147483647, 'NO', 'Norway'), +('204.79.73.0', '204.79.73.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('204.79.74.0', '204.79.74.255', 2147483647, 2147483647, 'JP', 'Japan'), +('204.79.75.0', '204.79.78.255', 2147483647, 2147483647, 'DE', 'Germany'), +('204.79.79.0', '204.79.79.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('204.79.80.0', '204.79.82.255', 2147483647, 2147483647, 'DE', 'Germany'), +('204.79.83.0', '204.79.83.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('204.79.84.0', '204.79.85.255', 2147483647, 2147483647, 'US', 'United States'), +('204.79.86.0', '204.79.86.95', 2147483647, 2147483647, 'BE', 'Belgium'), +('204.79.86.96', '204.79.89.255', 2147483647, 2147483647, 'US', 'United States'), +('204.79.90.0', '204.79.90.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('204.79.91.0', '204.79.91.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('204.79.92.0', '204.79.92.255', 2147483647, 2147483647, 'US', 'United States'), +('204.79.93.0', '204.79.93.255', 2147483647, 2147483647, 'JP', 'Japan'), +('204.79.94.0', '204.79.94.255', 2147483647, 2147483647, 'FI', 'Finland'), +('204.79.95.0', '204.79.95.255', 2147483647, 2147483647, 'IT', 'Italy'), +('204.79.96.0', '204.79.96.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('204.79.97.0', '204.79.97.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('204.79.98.0', '204.79.98.255', 2147483647, 2147483647, 'DE', 'Germany'), +('204.79.99.0', '204.79.99.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.79.100.0', '204.79.100.255', 2147483647, 2147483647, 'IT', 'Italy'), +('204.79.101.0', '204.79.101.255', 2147483647, 2147483647, 'US', 'United States'), +('204.79.102.0', '204.79.102.255', 2147483647, 2147483647, 'DE', 'Germany'), +('204.79.103.0', '204.79.104.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('204.79.105.0', '204.79.105.255', 2147483647, 2147483647, 'AU', 'Australia'), +('204.79.106.0', '204.79.106.255', 2147483647, 2147483647, 'DE', 'Germany'), +('204.79.107.0', '204.79.107.255', 2147483647, 2147483647, 'US', 'United States'), +('204.79.108.0', '204.79.108.255', 2147483647, 2147483647, 'GR', 'Greece'), +('204.79.109.0', '204.79.109.255', 2147483647, 2147483647, 'FR', 'France'), +('204.79.110.0', '204.79.110.255', 2147483647, 2147483647, 'JP', 'Japan'), +('204.79.111.0', '204.79.111.255', 2147483647, 2147483647, 'DE', 'Germany'), +('204.79.112.0', '204.79.113.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('204.79.114.0', '204.79.114.255', 2147483647, 2147483647, 'IT', 'Italy'), +('204.79.115.0', '204.79.115.255', 2147483647, 2147483647, 'US', 'United States'), +('204.79.116.0', '204.79.116.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('204.79.117.0', '204.79.118.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('204.79.119.0', '204.79.119.255', 2147483647, 2147483647, 'US', 'United States'), +('204.79.120.0', '204.79.122.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.79.123.0', '204.79.125.255', 2147483647, 2147483647, 'US', 'United States'), +('204.79.126.0', '204.79.126.255', 2147483647, 2147483647, 'JP', 'Japan'), +('204.79.127.0', '204.79.127.255', 2147483647, 2147483647, 'US', 'United States'), +('204.79.128.0', '204.79.128.255', 2147483647, 2147483647, 'DE', 'Germany'), +('204.79.129.0', '204.79.129.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.79.130.0', '204.79.132.255', 2147483647, 2147483647, 'IT', 'Italy'), +('204.79.133.0', '204.79.133.255', 2147483647, 2147483647, 'AU', 'Australia'), +('204.79.134.0', '204.79.134.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('204.79.135.0', '204.79.135.255', 2147483647, 2147483647, 'US', 'United States'), +('204.79.136.0', '204.79.136.255', 2147483647, 2147483647, 'FR', 'France'), +('204.79.137.0', '204.79.140.255', 2147483647, 2147483647, 'US', 'United States'), +('204.79.141.0', '204.79.141.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('204.79.142.0', '204.79.143.255', 2147483647, 2147483647, 'US', 'United States'), +('204.79.144.0', '204.79.145.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('204.79.146.0', '204.79.146.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('204.79.147.0', '204.79.149.255', 2147483647, 2147483647, 'DE', 'Germany'), +('204.79.150.0', '204.79.156.255', 2147483647, 2147483647, 'US', 'United States'), +('204.79.157.0', '204.79.158.255', 2147483647, 2147483647, 'JP', 'Japan'), +('204.79.159.0', '204.79.159.255', 2147483647, 2147483647, 'NO', 'Norway'), +('204.79.160.0', '204.79.160.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('204.79.161.0', '204.79.163.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('204.79.164.0', '204.79.164.255', 2147483647, 2147483647, 'US', 'United States'), +('204.79.165.0', '204.79.165.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.79.166.0', '204.79.167.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('204.79.168.0', '204.79.168.255', 2147483647, 2147483647, 'DE', 'Germany'), +('204.79.169.0', '204.79.169.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('204.79.170.0', '204.79.170.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('204.79.171.0', '204.79.171.255', 2147483647, 2147483647, 'DE', 'Germany'), +('204.79.172.0', '204.79.172.255', 2147483647, 2147483647, 'US', 'United States'), +('204.79.173.0', '204.79.173.255', 2147483647, 2147483647, 'FR', 'France'), +('204.79.174.0', '204.79.176.255', 2147483647, 2147483647, 'US', 'United States'), +('204.79.177.0', '204.79.178.255', 2147483647, 2147483647, 'DE', 'Germany'), +('204.79.179.0', '204.79.181.255', 2147483647, 2147483647, 'US', 'United States'), +('204.79.182.0', '204.79.183.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('204.79.184.0', '204.79.184.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('204.79.185.0', '204.79.185.255', 2147483647, 2147483647, 'US', 'United States'), +('204.79.186.0', '204.79.186.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('204.79.187.0', '204.79.187.255', 2147483647, 2147483647, 'DE', 'Germany'), +('204.79.188.0', '204.79.188.255', 2147483647, 2147483647, 'US', 'United States'), +('204.79.189.0', '204.79.189.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('204.79.190.0', '204.79.190.255', 2147483647, 2147483647, 'US', 'United States'), +('204.79.191.0', '204.79.191.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('204.79.192.0', '204.79.193.255', 2147483647, 2147483647, 'NO', 'Norway'), +('204.79.194.0', '204.79.194.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('204.79.195.0', '204.79.197.255', 2147483647, 2147483647, 'US', 'United States'), +('204.79.198.0', '204.79.198.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('204.79.199.0', '204.79.199.255', 2147483647, 2147483647, 'DE', 'Germany'), +('204.79.200.0', '204.79.202.255', 2147483647, 2147483647, 'US', 'United States'), +('204.79.203.0', '204.79.203.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('204.79.204.0', '204.79.204.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('204.79.205.0', '204.79.206.255', 2147483647, 2147483647, 'US', 'United States'), +('204.79.207.0', '204.79.207.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('204.79.208.0', '204.79.210.255', 2147483647, 2147483647, 'FR', 'France'), +('204.79.211.0', '204.79.211.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('204.79.212.0', '204.79.212.255', 2147483647, 2147483647, 'US', 'United States'), +('204.79.213.0', '204.79.215.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('204.79.216.0', '204.79.217.255', 2147483647, 2147483647, 'US', 'United States'), +('204.79.218.0', '204.79.218.255', 2147483647, 2147483647, 'JP', 'Japan'), +('204.79.219.0', '204.79.219.255', 2147483647, 2147483647, 'NO', 'Norway'), +('204.79.220.0', '204.79.223.255', 2147483647, 2147483647, 'US', 'United States'), +('204.79.224.0', '204.79.225.255', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('204.79.226.0', '204.79.227.255', 2147483647, 2147483647, 'US', 'United States'), +('204.79.228.0', '204.79.228.255', 2147483647, 2147483647, 'FR', 'France'), +('204.79.229.0', '204.79.229.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('204.79.230.0', '204.79.231.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('204.79.232.0', '204.79.234.255', 2147483647, 2147483647, 'NO', 'Norway'), +('204.79.235.0', '204.79.236.255', 2147483647, 2147483647, 'DE', 'Germany'), +('204.79.237.0', '204.79.239.255', 2147483647, 2147483647, 'US', 'United States'), +('204.79.240.0', '204.79.240.255', 2147483647, 2147483647, 'IT', 'Italy'), +('204.79.241.0', '204.79.242.255', 2147483647, 2147483647, 'DE', 'Germany'), +('204.79.243.0', '204.79.243.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('204.79.244.0', '204.79.245.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.79.246.0', '204.79.246.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('204.79.247.0', '204.79.249.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('204.79.250.0', '204.79.251.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('204.79.252.0', '204.79.252.255', 2147483647, 2147483647, 'US', 'United States'), +('204.79.253.0', '204.79.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('204.80.0.0', '204.80.7.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.80.8.0', '204.80.142.255', 2147483647, 2147483647, 'US', 'United States'), +('204.80.143.0', '204.80.143.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('204.80.144.0', '204.80.255.255', 2147483647, 2147483647, 'US', 'United States'), +('204.81.0.0', '204.83.131.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.83.132.0', '204.83.133.255', 2147483647, 2147483647, 'US', 'United States'), +('204.83.134.0', '204.83.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.84.0.0', '204.87.128.255', 2147483647, 2147483647, 'US', 'United States'), +('204.87.129.0', '204.87.129.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.87.130.0', '204.87.168.255', 2147483647, 2147483647, 'US', 'United States'), +('204.87.169.0', '204.87.169.255', 2147483647, 2147483647, 'CL', 'Chile'), +('204.87.171.0', '204.87.178.255', 2147483647, 2147483647, 'US', 'United States'), +('204.87.179.0', '204.87.179.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('204.87.180.0', '204.87.204.255', 2147483647, 2147483647, 'US', 'United States'), +('204.87.205.0', '204.87.205.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('204.87.206.0', '204.89.195.255', 2147483647, 2147483647, 'US', 'United States'), +('204.89.196.0', '204.89.196.255', 2147483647, 2147483647, 'IT', 'Italy'), +('204.89.197.0', '204.89.205.255', 2147483647, 2147483647, 'US', 'United States'), +('204.89.206.0', '204.89.206.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('204.89.207.0', '204.90.180.255', 2147483647, 2147483647, 'US', 'United States'), +('204.90.181.0', '204.90.182.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('204.90.183.0', '204.91.255.255', 2147483647, 2147483647, 'US', 'United States'), +('204.92.0.0', '204.92.0.191', 2147483647, 2147483647, 'CA', 'Canada'), +('204.92.0.192', '204.92.1.63', 2147483647, 2147483647, 'US', 'United States'), +('204.92.1.64', '204.92.1.127', 2147483647, 2147483647, 'CA', 'Canada'), +('204.92.1.128', '204.92.1.191', 2147483647, 2147483647, 'US', 'United States'), +('204.92.1.192', '204.92.1.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.92.2.0', '204.92.2.63', 2147483647, 2147483647, 'US', 'United States'), +('204.92.2.64', '204.92.3.87', 2147483647, 2147483647, 'CA', 'Canada'), +('204.92.3.88', '204.92.3.95', 2147483647, 2147483647, 'US', 'United States'), +('204.92.3.96', '204.92.3.135', 2147483647, 2147483647, 'CA', 'Canada'), +('204.92.3.136', '204.92.3.143', 2147483647, 2147483647, 'DK', 'Denmark'), +('204.92.3.144', '204.92.3.159', 2147483647, 2147483647, 'CA', 'Canada'), +('204.92.3.160', '204.92.3.167', 2147483647, 2147483647, 'US', 'United States'), +('204.92.3.168', '204.92.3.175', 2147483647, 2147483647, 'CA', 'Canada'), +('204.92.3.176', '204.92.3.183', 2147483647, 2147483647, 'US', 'United States'), +('204.92.3.184', '204.92.3.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.92.4.0', '204.92.4.255', 2147483647, 2147483647, 'US', 'United States'), +('204.92.5.0', '204.92.5.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.92.6.0', '204.92.6.255', 2147483647, 2147483647, 'US', 'United States'), +('204.92.7.0', '204.92.7.63', 2147483647, 2147483647, 'CA', 'Canada'), +('204.92.7.64', '204.92.7.191', 2147483647, 2147483647, 'US', 'United States'), +('204.92.7.192', '204.92.8.31', 2147483647, 2147483647, 'CA', 'Canada'), +('204.92.8.32', '204.92.8.63', 2147483647, 2147483647, 'US', 'United States'), +('204.92.8.64', '204.92.8.127', 2147483647, 2147483647, 'CA', 'Canada'), +('204.92.8.128', '204.92.8.159', 2147483647, 2147483647, 'US', 'United States'), +('204.92.8.160', '204.92.9.63', 2147483647, 2147483647, 'CA', 'Canada'), +('204.92.9.64', '204.92.9.191', 2147483647, 2147483647, 'US', 'United States'), +('204.92.9.192', '204.92.9.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.92.10.0', '204.92.10.191', 2147483647, 2147483647, 'US', 'United States'), +('204.92.10.192', '204.92.10.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.92.11.0', '204.92.12.63', 2147483647, 2147483647, 'US', 'United States'), +('204.92.12.64', '204.92.12.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.92.13.0', '204.92.13.63', 2147483647, 2147483647, 'US', 'United States'), +('204.92.13.64', '204.92.13.191', 2147483647, 2147483647, 'CA', 'Canada'), +('204.92.13.192', '204.92.13.255', 2147483647, 2147483647, 'US', 'United States'), +('204.92.14.0', '204.92.15.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.92.16.0', '204.92.16.127', 2147483647, 2147483647, 'US', 'United States'), +('204.92.16.128', '204.92.16.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.92.17.0', '204.92.17.255', 2147483647, 2147483647, 'US', 'United States'), +('204.92.18.0', '204.92.21.127', 2147483647, 2147483647, 'CA', 'Canada'), +('204.92.21.128', '204.92.21.255', 2147483647, 2147483647, 'US', 'United States'), +('204.92.22.0', '204.92.23.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.92.24.0', '204.92.24.255', 2147483647, 2147483647, 'US', 'United States'), +('204.92.25.0', '204.92.26.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.92.27.0', '204.92.27.255', 2147483647, 2147483647, 'US', 'United States'), +('204.92.28.0', '204.92.29.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.92.30.0', '204.92.40.7', 2147483647, 2147483647, 'US', 'United States'), +('204.92.40.8', '204.92.40.47', 2147483647, 2147483647, 'CA', 'Canada'), +('204.92.40.48', '204.92.40.63', 2147483647, 2147483647, 'US', 'United States'), +('204.92.40.64', '204.92.40.79', 2147483647, 2147483647, 'CA', 'Canada'), +('204.92.40.80', '204.92.40.215', 2147483647, 2147483647, 'US', 'United States'), +('204.92.40.216', '204.92.40.231', 2147483647, 2147483647, 'CA', 'Canada'), +('204.92.40.232', '204.92.40.255', 2147483647, 2147483647, 'US', 'United States'), +('204.92.41.0', '204.92.42.7', 2147483647, 2147483647, 'CA', 'Canada'), +('204.92.42.8', '204.92.42.23', 2147483647, 2147483647, 'US', 'United States'), +('204.92.42.24', '204.92.42.63', 2147483647, 2147483647, 'CA', 'Canada'), +('204.92.42.64', '204.92.42.79', 2147483647, 2147483647, 'US', 'United States'), +('204.92.42.80', '204.92.42.119', 2147483647, 2147483647, 'CA', 'Canada'), +('204.92.42.120', '204.92.42.127', 2147483647, 2147483647, 'US', 'United States'), +('204.92.42.128', '204.92.42.143', 2147483647, 2147483647, 'CA', 'Canada'), +('204.92.42.144', '204.92.42.215', 2147483647, 2147483647, 'US', 'United States'), +('204.92.42.216', '204.92.47.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.92.48.0', '204.92.48.255', 2147483647, 2147483647, 'US', 'United States'), +('204.92.49.0', '204.92.50.127', 2147483647, 2147483647, 'CA', 'Canada'), +('204.92.50.128', '204.92.50.255', 2147483647, 2147483647, 'US', 'United States'), +('204.92.51.0', '204.92.51.63', 2147483647, 2147483647, 'CA', 'Canada'), +('204.92.51.64', '204.92.51.191', 2147483647, 2147483647, 'US', 'United States'), +('204.92.51.192', '204.92.53.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.92.54.0', '204.92.54.15', 2147483647, 2147483647, 'US', 'United States'), +('204.92.54.16', '204.92.54.47', 2147483647, 2147483647, 'CA', 'Canada'), +('204.92.54.48', '204.92.54.255', 2147483647, 2147483647, 'US', 'United States'), +('204.92.55.0', '204.92.56.31', 2147483647, 2147483647, 'CA', 'Canada'), +('204.92.56.32', '204.92.56.95', 2147483647, 2147483647, 'US', 'United States'), +('204.92.56.96', '204.92.56.159', 2147483647, 2147483647, 'CA', 'Canada'), +('204.92.56.160', '204.92.56.191', 2147483647, 2147483647, 'US', 'United States'), +('204.92.56.192', '204.92.56.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.92.57.0', '204.92.57.127', 2147483647, 2147483647, 'US', 'United States'), +('204.92.57.128', '204.92.60.47', 2147483647, 2147483647, 'CA', 'Canada'), +('204.92.60.48', '204.92.60.55', 2147483647, 2147483647, 'US', 'United States'), +('204.92.60.56', '204.92.60.63', 2147483647, 2147483647, 'CA', 'Canada'), +('204.92.60.64', '204.92.60.79', 2147483647, 2147483647, 'US', 'United States'), +('204.92.60.80', '204.92.60.87', 2147483647, 2147483647, 'CA', 'Canada'), +('204.92.60.88', '204.92.60.95', 2147483647, 2147483647, 'US', 'United States'), +('204.92.60.96', '204.92.60.103', 2147483647, 2147483647, 'CA', 'Canada'), +('204.92.60.104', '204.92.60.111', 2147483647, 2147483647, 'US', 'United States'), +('204.92.60.112', '204.92.60.151', 2147483647, 2147483647, 'CA', 'Canada'), +('204.92.60.152', '204.92.60.159', 2147483647, 2147483647, 'US', 'United States'), +('204.92.60.160', '204.92.60.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.92.61.0', '204.92.61.255', 2147483647, 2147483647, 'US', 'United States'), +('204.92.62.0', '204.92.63.7', 2147483647, 2147483647, 'CA', 'Canada'), +('204.92.63.8', '204.92.63.15', 2147483647, 2147483647, 'US', 'United States'), +('204.92.63.16', '204.92.63.47', 2147483647, 2147483647, 'CA', 'Canada'), +('204.92.63.48', '204.92.63.55', 2147483647, 2147483647, 'US', 'United States'), +('204.92.63.56', '204.92.63.71', 2147483647, 2147483647, 'CA', 'Canada'), +('204.92.63.72', '204.92.63.79', 2147483647, 2147483647, 'US', 'United States'), +('204.92.63.80', '204.92.63.119', 2147483647, 2147483647, 'CA', 'Canada'), +('204.92.63.120', '204.92.63.127', 2147483647, 2147483647, 'US', 'United States'), +('204.92.63.128', '204.92.63.151', 2147483647, 2147483647, 'CA', 'Canada'), +('204.92.63.152', '204.92.63.159', 2147483647, 2147483647, 'US', 'United States'), +('204.92.63.160', '204.92.63.223', 2147483647, 2147483647, 'CA', 'Canada'), +('204.92.63.224', '204.92.63.255', 2147483647, 2147483647, 'US', 'United States'), +('204.92.64.0', '204.92.65.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.92.66.0', '204.92.66.255', 2147483647, 2147483647, 'US', 'United States'), +('204.92.67.0', '204.92.67.159', 2147483647, 2147483647, 'CA', 'Canada'), +('204.92.67.160', '204.92.67.191', 2147483647, 2147483647, 'US', 'United States'), +('204.92.67.192', '204.92.67.223', 2147483647, 2147483647, 'CA', 'Canada'), +('204.92.67.224', '204.92.67.255', 2147483647, 2147483647, 'US', 'United States'), +('204.92.68.0', '204.92.69.63', 2147483647, 2147483647, 'CA', 'Canada'), +('204.92.69.64', '204.92.69.191', 2147483647, 2147483647, 'US', 'United States'), +('204.92.69.192', '204.92.78.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.92.79.0', '204.92.80.255', 2147483647, 2147483647, 'US', 'United States'), +('204.92.81.0', '204.92.81.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.92.82.0', '204.92.82.255', 2147483647, 2147483647, 'US', 'United States'), +('204.92.83.0', '204.92.83.63', 2147483647, 2147483647, 'CA', 'Canada'), +('204.92.83.64', '204.92.83.95', 2147483647, 2147483647, 'US', 'United States'), +('204.92.83.96', '204.92.83.223', 2147483647, 2147483647, 'CA', 'Canada'), +('204.92.83.224', '204.92.84.255', 2147483647, 2147483647, 'US', 'United States'), +('204.92.85.0', '204.92.85.63', 2147483647, 2147483647, 'CA', 'Canada'), +('204.92.85.64', '204.92.85.127', 2147483647, 2147483647, 'US', 'United States'), +('204.92.85.128', '204.92.85.191', 2147483647, 2147483647, 'CA', 'Canada'), +('204.92.85.192', '204.92.85.255', 2147483647, 2147483647, 'US', 'United States'), +('204.92.86.0', '204.92.86.127', 2147483647, 2147483647, 'CA', 'Canada'), +('204.92.86.128', '204.92.87.255', 2147483647, 2147483647, 'US', 'United States'), +('204.92.88.0', '204.92.92.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.92.93.0', '204.92.94.255', 2147483647, 2147483647, 'US', 'United States'), +('204.92.95.0', '204.92.95.127', 2147483647, 2147483647, 'CA', 'Canada'), +('204.92.95.128', '204.92.95.159', 2147483647, 2147483647, 'US', 'United States'), +('204.92.95.160', '204.92.96.71', 2147483647, 2147483647, 'CA', 'Canada'), +('204.92.96.72', '204.92.96.79', 2147483647, 2147483647, 'US', 'United States'), +('204.92.96.80', '204.92.96.87', 2147483647, 2147483647, 'CA', 'Canada'), +('204.92.96.88', '204.92.96.159', 2147483647, 2147483647, 'US', 'United States'), +('204.92.96.160', '204.92.96.167', 2147483647, 2147483647, 'CA', 'Canada'), +('204.92.96.168', '204.92.96.255', 2147483647, 2147483647, 'US', 'United States'), +('204.92.97.0', '204.92.97.63', 2147483647, 2147483647, 'CA', 'Canada'), +('204.92.97.64', '204.92.97.159', 2147483647, 2147483647, 'US', 'United States'), +('204.92.97.160', '204.92.97.175', 2147483647, 2147483647, 'CA', 'Canada'), +('204.92.97.176', '204.92.97.207', 2147483647, 2147483647, 'US', 'United States'), +('204.92.97.208', '204.92.97.223', 2147483647, 2147483647, 'CA', 'Canada'), +('204.92.97.224', '204.92.97.255', 2147483647, 2147483647, 'US', 'United States'), +('204.92.98.0', '204.92.98.95', 2147483647, 2147483647, 'CA', 'Canada'), +('204.92.98.96', '204.92.98.191', 2147483647, 2147483647, 'US', 'United States'), +('204.92.98.192', '204.92.98.223', 2147483647, 2147483647, 'CA', 'Canada'), +('204.92.98.224', '204.92.99.191', 2147483647, 2147483647, 'US', 'United States'), +('204.92.99.192', '204.92.99.255', 2147483647, 2147483647, 'IS', 'Iceland'), +('204.92.100.0', '204.92.102.255', 2147483647, 2147483647, 'US', 'United States'), +('204.92.103.0', '204.92.103.127', 2147483647, 2147483647, 'CA', 'Canada'), +('204.92.103.128', '204.92.103.255', 2147483647, 2147483647, 'US', 'United States'), +('204.92.104.0', '204.92.107.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.92.108.0', '204.92.112.255', 2147483647, 2147483647, 'US', 'United States'), +('204.92.113.0', '204.92.115.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.92.116.0', '204.92.117.255', 2147483647, 2147483647, 'US', 'United States'), +('204.92.118.0', '204.92.118.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.92.119.0', '204.92.121.255', 2147483647, 2147483647, 'US', 'United States'), +('204.92.122.0', '204.92.122.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.92.123.0', '204.92.123.255', 2147483647, 2147483647, 'US', 'United States'), +('204.92.124.0', '204.92.126.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.92.127.0', '204.92.127.255', 2147483647, 2147483647, 'US', 'United States'), +('204.92.128.0', '204.92.151.63', 2147483647, 2147483647, 'CA', 'Canada'), +('204.92.151.64', '204.92.151.255', 2147483647, 2147483647, 'US', 'United States'), +('204.92.152.0', '204.92.153.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.92.154.0', '204.92.154.255', 2147483647, 2147483647, 'US', 'United States'), +('204.92.155.0', '204.92.158.63', 2147483647, 2147483647, 'CA', 'Canada'), +('204.92.158.64', '204.92.158.223', 2147483647, 2147483647, 'US', 'United States'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('204.92.158.224', '204.92.159.15', 2147483647, 2147483647, 'CA', 'Canada'), +('204.92.159.16', '204.92.159.255', 2147483647, 2147483647, 'US', 'United States'), +('204.92.160.0', '204.92.164.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.92.165.0', '204.92.165.255', 2147483647, 2147483647, 'US', 'United States'), +('204.92.166.0', '204.92.168.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.92.169.0', '204.92.171.255', 2147483647, 2147483647, 'US', 'United States'), +('204.92.172.0', '204.92.178.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.92.179.0', '204.92.189.255', 2147483647, 2147483647, 'US', 'United States'), +('204.92.190.0', '204.92.207.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.92.208.0', '204.92.208.255', 2147483647, 2147483647, 'US', 'United States'), +('204.92.209.0', '204.92.209.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.92.210.0', '204.92.210.255', 2147483647, 2147483647, 'US', 'United States'), +('204.92.211.0', '204.92.212.31', 2147483647, 2147483647, 'CA', 'Canada'), +('204.92.212.32', '204.92.212.63', 2147483647, 2147483647, 'US', 'United States'), +('204.92.212.64', '204.92.212.127', 2147483647, 2147483647, 'CA', 'Canada'), +('204.92.212.128', '204.92.212.223', 2147483647, 2147483647, 'US', 'United States'), +('204.92.212.224', '204.92.216.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.92.217.0', '204.92.217.63', 2147483647, 2147483647, 'US', 'United States'), +('204.92.217.64', '204.92.217.127', 2147483647, 2147483647, 'CA', 'Canada'), +('204.92.217.128', '204.92.217.191', 2147483647, 2147483647, 'US', 'United States'), +('204.92.217.192', '204.92.218.31', 2147483647, 2147483647, 'CA', 'Canada'), +('204.92.218.32', '204.92.218.63', 2147483647, 2147483647, 'US', 'United States'), +('204.92.218.64', '204.92.218.191', 2147483647, 2147483647, 'CA', 'Canada'), +('204.92.218.192', '204.92.218.223', 2147483647, 2147483647, 'US', 'United States'), +('204.92.218.224', '204.92.221.63', 2147483647, 2147483647, 'CA', 'Canada'), +('204.92.221.64', '204.92.221.127', 2147483647, 2147483647, 'US', 'United States'), +('204.92.221.128', '204.92.221.191', 2147483647, 2147483647, 'CA', 'Canada'), +('204.92.221.192', '204.92.221.255', 2147483647, 2147483647, 'US', 'United States'), +('204.92.222.0', '204.92.223.127', 2147483647, 2147483647, 'CA', 'Canada'), +('204.92.223.128', '204.92.223.255', 2147483647, 2147483647, 'US', 'United States'), +('204.92.224.0', '204.92.226.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.92.227.0', '204.92.229.255', 2147483647, 2147483647, 'US', 'United States'), +('204.92.230.0', '204.92.230.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.92.231.0', '204.92.231.255', 2147483647, 2147483647, 'US', 'United States'), +('204.92.232.0', '204.92.241.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.92.242.0', '204.92.242.255', 2147483647, 2147483647, 'US', 'United States'), +('204.92.243.0', '204.92.244.15', 2147483647, 2147483647, 'CA', 'Canada'), +('204.92.244.16', '204.92.244.31', 2147483647, 2147483647, 'US', 'United States'), +('204.92.244.32', '204.92.244.63', 2147483647, 2147483647, 'CA', 'Canada'), +('204.92.244.64', '204.92.244.79', 2147483647, 2147483647, 'US', 'United States'), +('204.92.244.80', '204.92.244.95', 2147483647, 2147483647, 'CA', 'Canada'), +('204.92.244.96', '204.92.244.111', 2147483647, 2147483647, 'US', 'United States'), +('204.92.244.112', '204.92.244.175', 2147483647, 2147483647, 'CA', 'Canada'), +('204.92.244.176', '204.92.244.207', 2147483647, 2147483647, 'US', 'United States'), +('204.92.244.208', '204.92.244.223', 2147483647, 2147483647, 'CA', 'Canada'), +('204.92.244.224', '204.92.245.255', 2147483647, 2147483647, 'US', 'United States'), +('204.92.246.0', '204.92.250.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.92.251.0', '204.92.251.63', 2147483647, 2147483647, 'US', 'United States'), +('204.92.251.64', '204.92.251.127', 2147483647, 2147483647, 'CA', 'Canada'), +('204.92.251.128', '204.92.251.159', 2147483647, 2147483647, 'US', 'United States'), +('204.92.251.160', '204.92.251.223', 2147483647, 2147483647, 'CA', 'Canada'), +('204.92.251.224', '204.92.251.255', 2147483647, 2147483647, 'US', 'United States'), +('204.92.252.0', '204.92.252.63', 2147483647, 2147483647, 'CA', 'Canada'), +('204.92.252.64', '204.92.252.127', 2147483647, 2147483647, 'US', 'United States'), +('204.92.252.128', '204.92.252.191', 2147483647, 2147483647, 'CA', 'Canada'), +('204.92.252.192', '204.92.252.255', 2147483647, 2147483647, 'US', 'United States'), +('204.92.253.0', '204.92.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.93.0.0', '204.94.104.255', 2147483647, 2147483647, 'US', 'United States'), +('204.94.105.0', '204.94.105.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('204.94.105.16', '204.94.119.255', 2147483647, 2147483647, 'US', 'United States'), +('204.94.120.0', '204.94.123.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.94.124.0', '204.94.150.255', 2147483647, 2147483647, 'US', 'United States'), +('204.94.151.0', '204.94.151.127', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('204.94.151.128', '204.94.155.255', 2147483647, 2147483647, 'US', 'United States'), +('204.94.156.0', '204.94.159.255', 2147483647, 2147483647, 'GH', 'Ghana'), +('204.94.160.0', '204.94.171.255', 2147483647, 2147483647, 'US', 'United States'), +('204.94.172.0', '204.94.172.7', 2147483647, 2147483647, 'SE', 'Sweden'), +('204.94.172.8', '204.95.159.39', 2147483647, 2147483647, 'US', 'United States'), +('204.95.159.40', '204.95.159.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('204.95.159.48', '204.96.197.87', 2147483647, 2147483647, 'US', 'United States'), +('204.96.197.88', '204.96.197.95', 2147483647, 2147483647, 'CA', 'Canada'), +('204.96.197.96', '204.97.191.255', 2147483647, 2147483647, 'US', 'United States'), +('204.97.192.0', '204.97.207.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('204.97.208.0', '204.100.255.255', 2147483647, 2147483647, 'US', 'United States'), +('204.101.0.0', '204.101.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.102.0.0', '204.104.54.255', 2147483647, 2147483647, 'US', 'United States'), +('204.104.55.0', '204.104.55.255', 2147483647, 2147483647, 'DE', 'Germany'), +('204.104.56.0', '204.104.110.255', 2147483647, 2147483647, 'US', 'United States'), +('204.104.111.0', '204.104.111.255', 2147483647, 2147483647, 'DE', 'Germany'), +('204.104.112.0', '204.104.158.255', 2147483647, 2147483647, 'US', 'United States'), +('204.104.159.0', '204.104.159.255', 2147483647, 2147483647, 'DE', 'Germany'), +('204.104.160.0', '204.104.170.255', 2147483647, 2147483647, 'US', 'United States'), +('204.104.171.0', '204.104.171.255', 2147483647, 2147483647, 'DE', 'Germany'), +('204.104.172.0', '204.106.7.255', 2147483647, 2147483647, 'US', 'United States'), +('204.106.8.0', '204.106.15.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('204.106.16.0', '204.110.55.255', 2147483647, 2147483647, 'US', 'United States'), +('204.110.56.0', '204.110.63.255', 2147483647, 2147483647, 'TC', 'Turks and Caicos Islands'), +('204.110.64.0', '204.111.255.255', 2147483647, 2147483647, 'US', 'United States'), +('204.112.0.0', '204.112.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.113.0.0', '204.118.23.95', 2147483647, 2147483647, 'US', 'United States'), +('204.118.23.96', '204.118.23.127', 2147483647, 2147483647, 'IS', 'Iceland'), +('204.118.23.128', '204.118.111.239', 2147483647, 2147483647, 'US', 'United States'), +('204.118.111.240', '204.118.111.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.118.112.0', '204.118.132.31', 2147483647, 2147483647, 'US', 'United States'), +('204.118.132.32', '204.118.132.39', 2147483647, 2147483647, 'SE', 'Sweden'), +('204.118.132.40', '204.118.169.255', 2147483647, 2147483647, 'US', 'United States'), +('204.118.170.0', '204.118.170.255', 2147483647, 2147483647, 'GH', 'Ghana'), +('204.118.171.0', '204.119.15.255', 2147483647, 2147483647, 'US', 'United States'), +('204.119.16.0', '204.119.23.255', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('204.119.24.0', '204.120.203.255', 2147483647, 2147483647, 'US', 'United States'), +('204.120.204.0', '204.120.204.255', 2147483647, 2147483647, 'AQ', 'Antarctica'), +('204.120.205.0', '204.120.205.7', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('204.120.205.8', '204.124.87.255', 2147483647, 2147483647, 'US', 'United States'), +('204.124.88.0', '204.124.91.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.124.92.0', '204.124.103.255', 2147483647, 2147483647, 'US', 'United States'), +('204.124.104.0', '204.124.107.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('204.124.108.0', '204.125.14.255', 2147483647, 2147483647, 'US', 'United States'), +('204.125.15.0', '204.125.15.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.125.16.0', '204.125.22.255', 2147483647, 2147483647, 'US', 'United States'), +('204.125.23.0', '204.125.23.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.125.24.0', '204.125.91.255', 2147483647, 2147483647, 'US', 'United States'), +('204.125.92.0', '204.125.94.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.125.95.0', '204.125.96.255', 2147483647, 2147483647, 'US', 'United States'), +('204.125.97.0', '204.125.97.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.125.98.0', '204.125.98.255', 2147483647, 2147483647, 'US', 'United States'), +('204.125.99.0', '204.125.99.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.125.100.0', '204.125.104.255', 2147483647, 2147483647, 'US', 'United States'), +('204.125.105.0', '204.125.105.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.125.106.0', '204.125.107.255', 2147483647, 2147483647, 'US', 'United States'), +('204.125.108.0', '204.125.109.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.125.110.0', '204.125.113.255', 2147483647, 2147483647, 'US', 'United States'), +('204.125.114.0', '204.125.114.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.125.115.0', '204.125.117.255', 2147483647, 2147483647, 'US', 'United States'), +('204.125.118.0', '204.125.118.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.125.119.0', '204.125.129.255', 2147483647, 2147483647, 'US', 'United States'), +('204.125.130.0', '204.125.130.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.125.131.0', '204.125.131.255', 2147483647, 2147483647, 'US', 'United States'), +('204.125.132.0', '204.125.132.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.125.133.0', '204.125.134.255', 2147483647, 2147483647, 'US', 'United States'), +('204.125.135.0', '204.125.135.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.125.136.0', '204.125.139.255', 2147483647, 2147483647, 'US', 'United States'), +('204.125.140.0', '204.125.140.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.125.141.0', '204.125.142.255', 2147483647, 2147483647, 'US', 'United States'), +('204.125.143.0', '204.125.143.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.125.144.0', '204.125.149.255', 2147483647, 2147483647, 'US', 'United States'), +('204.125.150.0', '204.125.150.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.125.151.0', '204.125.194.255', 2147483647, 2147483647, 'US', 'United States'), +('204.125.195.0', '204.125.195.255', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('204.125.196.0', '204.125.198.255', 2147483647, 2147483647, 'US', 'United States'), +('204.125.199.0', '204.125.199.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.125.200.0', '204.125.209.255', 2147483647, 2147483647, 'US', 'United States'), +('204.125.210.0', '204.125.210.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.125.211.0', '204.125.240.255', 2147483647, 2147483647, 'US', 'United States'), +('204.125.241.0', '204.125.241.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.125.242.0', '204.125.246.255', 2147483647, 2147483647, 'US', 'United States'), +('204.125.247.0', '204.125.247.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.125.248.0', '204.125.253.255', 2147483647, 2147483647, 'US', 'United States'), +('204.125.254.0', '204.125.254.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.125.255.0', '204.126.9.255', 2147483647, 2147483647, 'US', 'United States'), +('204.126.12.0', '204.126.13.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('204.126.14.0', '204.126.127.255', 2147483647, 2147483647, 'US', 'United States'), +('204.126.128.0', '204.126.129.255', 2147483647, 2147483647, 'DO', 'Dominican Republic'), +('204.126.130.0', '204.126.139.255', 2147483647, 2147483647, 'US', 'United States'), +('204.126.140.0', '204.126.141.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('204.126.142.0', '204.130.166.255', 2147483647, 2147483647, 'US', 'United States'), +('204.130.167.0', '204.130.167.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.130.168.0', '204.136.9.255', 2147483647, 2147483647, 'US', 'United States'), +('204.136.12.0', '204.136.15.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.136.16.0', '204.137.255.255', 2147483647, 2147483647, 'US', 'United States'), +('204.138.0.0', '204.138.67.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.138.68.0', '204.138.68.255', 2147483647, 2147483647, 'US', 'United States'), +('204.138.69.0', '204.138.239.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.138.240.0', '204.138.243.255', 2147483647, 2147483647, 'US', 'United States'), +('204.138.244.0', '204.138.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.139.0.0', '204.140.69.255', 2147483647, 2147483647, 'US', 'United States'), +('204.140.70.0', '204.140.70.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('204.140.71.0', '204.140.72.255', 2147483647, 2147483647, 'US', 'United States'), +('204.140.73.0', '204.140.73.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('204.140.74.0', '204.140.75.255', 2147483647, 2147483647, 'US', 'United States'), +('204.140.76.0', '204.140.76.255', 2147483647, 2147483647, 'DE', 'Germany'), +('204.140.77.0', '204.140.77.255', 2147483647, 2147483647, 'US', 'United States'), +('204.140.78.0', '204.140.78.255', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('204.140.79.0', '204.140.83.255', 2147483647, 2147483647, 'US', 'United States'), +('204.140.84.0', '204.140.85.255', 2147483647, 2147483647, 'FR', 'France'), +('204.140.86.0', '204.140.99.255', 2147483647, 2147483647, 'IT', 'Italy'), +('204.140.100.0', '204.140.101.255', 2147483647, 2147483647, 'US', 'United States'), +('204.140.102.0', '204.140.102.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('204.140.103.0', '204.140.108.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.140.109.0', '204.140.126.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('204.140.127.0', '204.140.127.255', 2147483647, 2147483647, 'DE', 'Germany'), +('204.140.128.0', '204.144.56.255', 2147483647, 2147483647, 'US', 'United States'), +('204.144.60.0', '204.144.63.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.144.64.0', '204.144.77.255', 2147483647, 2147483647, 'US', 'United States'), +('204.144.78.0', '204.144.78.255', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('204.144.79.0', '204.145.200.255', 2147483647, 2147483647, 'US', 'United States'), +('204.145.201.0', '204.145.201.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('204.145.202.0', '204.145.228.255', 2147483647, 2147483647, 'US', 'United States'), +('204.145.229.0', '204.145.229.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.145.230.0', '204.146.52.255', 2147483647, 2147483647, 'US', 'United States'), +('204.146.53.0', '204.146.53.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('204.146.54.0', '204.147.75.255', 2147483647, 2147483647, 'US', 'United States'), +('204.147.76.0', '204.147.79.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.147.80.0', '204.148.7.255', 2147483647, 2147483647, 'US', 'United States'), +('204.148.8.0', '204.148.9.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.148.10.0', '204.148.56.255', 2147483647, 2147483647, 'US', 'United States'), +('204.148.57.0', '204.148.61.255', 2147483647, 2147483647, 'DE', 'Germany'), +('204.148.62.0', '204.148.111.255', 2147483647, 2147483647, 'US', 'United States'), +('204.148.112.0', '204.148.112.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('204.148.113.0', '204.149.29.255', 2147483647, 2147483647, 'US', 'United States'), +('204.149.30.0', '204.149.30.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.149.31.0', '204.149.47.255', 2147483647, 2147483647, 'US', 'United States'), +('204.149.48.0', '204.149.51.255', 2147483647, 2147483647, 'DE', 'Germany'), +('204.149.52.0', '204.149.175.255', 2147483647, 2147483647, 'US', 'United States'), +('204.149.176.0', '204.149.191.255', 2147483647, 2147483647, 'DE', 'Germany'), +('204.149.192.0', '204.151.110.255', 2147483647, 2147483647, 'US', 'United States'), +('204.151.111.0', '204.151.111.255', 2147483647, 2147483647, 'DE', 'Germany'), +('204.151.112.0', '204.151.178.255', 2147483647, 2147483647, 'US', 'United States'), +('204.151.179.0', '204.151.183.255', 2147483647, 2147483647, 'DE', 'Germany'), +('204.151.184.0', '204.152.13.255', 2147483647, 2147483647, 'US', 'United States'), +('204.152.14.0', '204.152.15.255', 2147483647, 2147483647, 'NA', 'Namibia'), +('204.152.16.0', '204.152.27.255', 2147483647, 2147483647, 'US', 'United States'), +('204.152.28.0', '204.152.28.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('204.152.29.0', '204.153.23.255', 2147483647, 2147483647, 'US', 'United States'), +('204.153.24.0', '204.153.25.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('204.153.28.0', '204.154.63.255', 2147483647, 2147483647, 'US', 'United States'), +('204.154.64.0', '204.154.69.255', 2147483647, 2147483647, 'DE', 'Germany'), +('204.154.70.0', '204.154.70.3', 2147483647, 2147483647, 'PT', 'Portugal'), +('204.154.70.4', '204.154.71.255', 2147483647, 2147483647, 'DE', 'Germany'), +('204.154.72.0', '204.156.120.255', 2147483647, 2147483647, 'US', 'United States'), +('204.156.124.0', '204.156.127.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.156.128.0', '204.168.75.0', 2147483647, 2147483647, 'US', 'United States'), +('204.168.75.1', '204.168.75.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.168.76.0', '204.173.255.255', 2147483647, 2147483647, 'US', 'United States'), +('204.174.0.0', '204.174.103.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.174.104.0', '204.174.111.255', 2147483647, 2147483647, 'US', 'United States'), +('204.174.112.0', '204.174.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.175.0.0', '204.176.37.191', 2147483647, 2147483647, 'US', 'United States'), +('204.176.37.192', '204.176.37.207', 2147483647, 2147483647, 'AU', 'Australia'), +('204.176.37.208', '204.176.44.255', 2147483647, 2147483647, 'US', 'United States'), +('204.176.45.0', '204.176.45.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('204.176.45.64', '204.176.86.223', 2147483647, 2147483647, 'US', 'United States'), +('204.176.86.224', '204.176.86.255', 2147483647, 2147483647, 'IL', 'Israel'), +('204.176.87.0', '204.176.100.239', 2147483647, 2147483647, 'US', 'United States'), +('204.176.100.240', '204.176.100.255', 2147483647, 2147483647, 'IN', 'India'), +('204.176.101.0', '204.176.121.255', 2147483647, 2147483647, 'US', 'United States'), +('204.176.122.0', '204.176.122.63', 2147483647, 2147483647, 'CA', 'Canada'), +('204.176.122.64', '204.176.184.47', 2147483647, 2147483647, 'US', 'United States'), +('204.176.184.48', '204.176.184.63', 2147483647, 2147483647, 'IL', 'Israel'), +('204.176.184.64', '204.176.184.255', 2147483647, 2147483647, 'US', 'United States'), +('204.176.185.0', '204.176.185.31', 2147483647, 2147483647, 'IL', 'Israel'), +('204.176.185.32', '204.176.185.255', 2147483647, 2147483647, 'US', 'United States'), +('204.176.186.0', '204.176.186.63', 2147483647, 2147483647, 'CA', 'Canada'), +('204.176.186.64', '204.181.35.255', 2147483647, 2147483647, 'US', 'United States'), +('204.181.36.0', '204.181.36.7', 2147483647, 2147483647, 'CA', 'Canada'), +('204.181.36.8', '204.181.51.255', 2147483647, 2147483647, 'US', 'United States'), +('204.181.52.0', '204.181.55.255', 2147483647, 2147483647, 'HN', 'Honduras'), +('204.181.56.0', '204.181.74.255', 2147483647, 2147483647, 'US', 'United States'), +('204.181.75.0', '204.181.75.255', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('204.181.76.0', '204.183.31.255', 2147483647, 2147483647, 'US', 'United States'), +('204.183.32.0', '204.183.32.255', 2147483647, 2147483647, 'ES', 'Spain'), +('204.183.33.0', '204.183.103.255', 2147483647, 2147483647, 'US', 'United States'), +('204.183.104.0', '204.183.111.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('204.183.112.0', '204.183.117.255', 2147483647, 2147483647, 'US', 'United States'), +('204.183.118.0', '204.183.118.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('204.183.119.0', '204.183.147.255', 2147483647, 2147483647, 'US', 'United States'), +('204.183.148.0', '204.183.151.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('204.183.152.0', '204.186.255.255', 2147483647, 2147483647, 'US', 'United States'), +('204.187.0.0', '204.187.93.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.187.94.0', '204.187.94.255', 2147483647, 2147483647, 'US', 'United States'), +('204.187.95.0', '204.187.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.188.0.0', '204.188.135.255', 2147483647, 2147483647, 'US', 'United States'), +('204.188.136.0', '204.188.143.255', 2147483647, 2147483647, 'PA', 'Panama'), +('204.188.144.0', '204.188.159.255', 2147483647, 2147483647, 'US', 'United States'), +('204.188.160.0', '204.188.160.255', 2147483647, 2147483647, 'AG', 'Antigua and Barbuda'), +('204.188.161.0', '204.188.161.255', 2147483647, 2147483647, 'DM', 'Dominica'), +('204.188.162.0', '204.188.162.255', 2147483647, 2147483647, 'VG', 'Virgin Islands, British'), +('204.188.163.0', '204.188.163.255', 2147483647, 2147483647, 'AG', 'Antigua and Barbuda'), +('204.188.164.0', '204.188.165.255', 2147483647, 2147483647, 'VG', 'Virgin Islands, British'), +('204.188.166.0', '204.188.166.255', 2147483647, 2147483647, 'DM', 'Dominica'), +('204.188.167.0', '204.188.167.255', 2147483647, 2147483647, 'KN', 'Saint Kitts and Nevis'), +('204.188.168.0', '204.188.168.255', 2147483647, 2147483647, 'LC', 'Saint Lucia'), +('204.188.169.0', '204.188.169.255', 2147483647, 2147483647, 'AG', 'Antigua and Barbuda'), +('204.188.170.0', '204.188.170.255', 2147483647, 2147483647, 'DM', 'Dominica'), +('204.188.171.0', '204.188.172.255', 2147483647, 2147483647, 'AG', 'Antigua and Barbuda'), +('204.188.173.0', '204.188.173.255', 2147483647, 2147483647, 'LC', 'Saint Lucia'), +('204.188.174.0', '204.188.175.255', 2147483647, 2147483647, 'AG', 'Antigua and Barbuda'), +('204.188.176.0', '204.190.255.255', 2147483647, 2147483647, 'US', 'United States'), +('204.191.0.0', '204.191.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.192.0.0', '204.208.255.255', 2147483647, 2147483647, 'US', 'United States'), +('204.209.0.0', '204.209.129.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.209.130.0', '204.209.130.255', 2147483647, 2147483647, 'US', 'United States'), +('204.209.131.0', '204.209.158.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.209.159.0', '204.209.159.255', 2147483647, 2147483647, 'US', 'United States'), +('204.209.160.0', '204.209.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.210.0.0', '204.212.119.255', 2147483647, 2147483647, 'US', 'United States'), +('204.212.120.0', '204.212.127.255', 2147483647, 2147483647, 'AW', 'Aruba'), +('204.212.128.0', '204.215.213.255', 2147483647, 2147483647, 'US', 'United States'), +('204.215.214.0', '204.215.214.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('204.215.215.0', '204.224.0.255', 2147483647, 2147483647, 'US', 'United States'), +('204.224.1.0', '204.224.1.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.224.2.0', '204.224.41.255', 2147483647, 2147483647, 'US', 'United States'), +('204.224.42.0', '204.224.42.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.224.43.0', '204.224.66.255', 2147483647, 2147483647, 'US', 'United States'), +('204.224.67.0', '204.224.67.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.224.68.0', '204.224.107.255', 2147483647, 2147483647, 'US', 'United States'), +('204.224.108.0', '204.224.108.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.224.109.0', '204.224.116.255', 2147483647, 2147483647, 'US', 'United States'), +('204.224.117.0', '204.224.117.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.224.118.0', '204.224.122.255', 2147483647, 2147483647, 'US', 'United States'), +('204.224.123.0', '204.224.123.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.224.124.0', '204.224.133.255', 2147483647, 2147483647, 'US', 'United States'), +('204.224.134.0', '204.224.134.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.224.135.0', '204.224.184.255', 2147483647, 2147483647, 'US', 'United States'), +('204.224.185.0', '204.224.185.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.224.186.0', '204.224.191.255', 2147483647, 2147483647, 'US', 'United States'), +('204.224.192.0', '204.224.192.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.224.193.0', '204.224.236.255', 2147483647, 2147483647, 'US', 'United States'), +('204.224.237.0', '204.224.237.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.224.238.0', '204.224.251.255', 2147483647, 2147483647, 'US', 'United States'), +('204.224.252.0', '204.224.252.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.224.253.0', '204.224.255.255', 2147483647, 2147483647, 'US', 'United States'), +('204.225.0.0', '204.225.51.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.225.52.0', '204.225.53.255', 2147483647, 2147483647, 'US', 'United States'), +('204.225.54.0', '204.225.132.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.225.133.0', '204.225.133.255', 2147483647, 2147483647, 'US', 'United States'), +('204.225.134.0', '204.225.141.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.225.142.0', '204.225.142.255', 2147483647, 2147483647, 'US', 'United States'), +('204.225.143.0', '204.225.171.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.225.172.0', '204.225.172.255', 2147483647, 2147483647, 'US', 'United States'), +('204.225.173.0', '204.225.238.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.225.239.0', '204.225.239.255', 2147483647, 2147483647, 'US', 'United States'), +('204.225.240.0', '204.226.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.227.0.0', '204.231.1.255', 2147483647, 2147483647, 'US', 'United States'), +('204.231.2.0', '204.231.2.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('204.231.3.0', '204.231.3.255', 2147483647, 2147483647, 'JP', 'Japan'), +('204.231.4.0', '204.231.5.255', 2147483647, 2147483647, 'FR', 'France'), +('204.231.6.0', '204.231.6.255', 2147483647, 2147483647, 'US', 'United States'), +('204.231.7.0', '204.231.9.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.231.10.0', '204.231.10.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('204.231.11.0', '204.231.11.255', 2147483647, 2147483647, 'NO', 'Norway'), +('204.231.12.0', '204.231.12.255', 2147483647, 2147483647, 'ES', 'Spain'), +('204.231.13.0', '204.231.16.255', 2147483647, 2147483647, 'AT', 'Austria'), +('204.231.17.0', '204.231.19.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('204.231.20.0', '204.231.22.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('204.231.23.0', '204.231.46.255', 2147483647, 2147483647, 'US', 'United States'), +('204.231.47.0', '204.231.47.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('204.231.48.0', '204.231.48.255', 2147483647, 2147483647, 'US', 'United States'), +('204.231.49.0', '204.231.49.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('204.231.50.0', '204.231.50.255', 2147483647, 2147483647, 'ES', 'Spain'), +('204.231.51.0', '204.231.51.255', 2147483647, 2147483647, 'US', 'United States'), +('204.231.52.0', '204.231.53.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('204.231.54.0', '204.231.60.255', 2147483647, 2147483647, 'US', 'United States'), +('204.231.61.0', '204.231.61.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('204.231.62.0', '204.231.63.255', 2147483647, 2147483647, 'US', 'United States'), +('204.231.64.0', '204.231.64.255', 2147483647, 2147483647, 'DE', 'Germany'), +('204.231.65.0', '204.231.65.255', 2147483647, 2147483647, 'US', 'United States'), +('204.231.66.0', '204.231.66.255', 2147483647, 2147483647, 'FR', 'France'), +('204.231.67.0', '204.231.67.255', 2147483647, 2147483647, 'US', 'United States'), +('204.231.68.0', '204.231.69.255', 2147483647, 2147483647, 'FI', 'Finland'), +('204.231.70.0', '204.231.71.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.231.72.0', '204.231.73.255', 2147483647, 2147483647, 'FR', 'France'), +('204.231.74.0', '204.231.74.255', 2147483647, 2147483647, 'US', 'United States'), +('204.231.75.0', '204.231.75.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('204.231.76.0', '204.231.84.255', 2147483647, 2147483647, 'US', 'United States'), +('204.231.85.0', '204.231.88.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('204.231.89.0', '204.231.94.255', 2147483647, 2147483647, 'US', 'United States'), +('204.231.95.0', '204.231.95.255', 2147483647, 2147483647, 'DE', 'Germany'), +('204.231.96.0', '204.231.96.255', 2147483647, 2147483647, 'JP', 'Japan'), +('204.231.97.0', '204.231.97.255', 2147483647, 2147483647, 'IT', 'Italy'), +('204.231.98.0', '204.231.101.255', 2147483647, 2147483647, 'DE', 'Germany'), +('204.231.102.0', '204.231.102.255', 2147483647, 2147483647, 'US', 'United States'), +('204.231.103.0', '204.231.107.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('204.231.108.0', '204.231.113.255', 2147483647, 2147483647, 'US', 'United States'), +('204.231.114.0', '204.231.125.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('204.231.126.0', '204.231.133.255', 2147483647, 2147483647, 'US', 'United States'), +('204.231.134.0', '204.231.135.255', 2147483647, 2147483647, 'MN', 'Mongolia'), +('204.231.136.0', '204.231.137.255', 2147483647, 2147483647, 'DE', 'Germany'), +('204.231.138.0', '204.231.138.255', 2147483647, 2147483647, 'US', 'United States'), +('204.231.139.0', '204.231.140.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('204.231.141.0', '204.231.158.255', 2147483647, 2147483647, 'US', 'United States'), +('204.231.159.0', '204.231.159.31', 2147483647, 2147483647, 'AF', 'Afghanistan'), +('204.231.159.32', '204.231.169.255', 2147483647, 2147483647, 'US', 'United States'), +('204.231.170.0', '204.231.170.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('204.231.171.0', '204.231.177.255', 2147483647, 2147483647, 'US', 'United States'), +('204.231.178.0', '204.231.181.255', 2147483647, 2147483647, 'CL', 'Chile'), +('204.231.182.0', '204.231.223.255', 2147483647, 2147483647, 'US', 'United States'), +('204.231.224.0', '204.231.224.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('204.231.225.0', '204.231.226.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('204.231.227.0', '204.231.227.255', 2147483647, 2147483647, 'US', 'United States'), +('204.231.228.0', '204.231.228.255', 2147483647, 2147483647, 'DE', 'Germany'), +('204.231.229.0', '204.231.229.255', 2147483647, 2147483647, 'US', 'United States'), +('204.231.230.0', '204.231.230.255', 2147483647, 2147483647, 'JP', 'Japan'), +('204.231.231.0', '204.231.231.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('204.231.232.0', '204.231.232.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('204.231.233.0', '204.231.236.255', 2147483647, 2147483647, 'US', 'United States'), +('204.231.237.0', '204.231.237.255', 2147483647, 2147483647, 'IT', 'Italy'), +('204.231.238.0', '204.231.238.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('204.231.239.0', '204.231.239.255', 2147483647, 2147483647, 'ES', 'Spain'), +('204.231.240.0', '204.231.240.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('204.231.242.0', '204.231.250.255', 2147483647, 2147483647, 'US', 'United States'), +('204.231.251.0', '204.231.252.255', 2147483647, 2147483647, 'JP', 'Japan'), +('204.231.253.0', '204.231.253.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('204.231.254.0', '204.231.254.255', 2147483647, 2147483647, 'US', 'United States'), +('204.231.255.0', '204.231.255.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('204.232.0.0', '204.232.63.255', 2147483647, 2147483647, 'US', 'United States'), +('204.232.64.0', '204.232.79.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.232.128.0', '204.235.31.255', 2147483647, 2147483647, 'US', 'United States'), +('204.235.32.0', '204.235.43.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('204.235.44.0', '204.235.207.255', 2147483647, 2147483647, 'US', 'United States'), +('204.235.208.0', '204.235.223.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.235.224.0', '204.236.31.255', 2147483647, 2147483647, 'US', 'United States'), +('204.236.64.0', '204.236.127.255', 2147483647, 2147483647, 'BS', 'Bahamas'), +('204.238.0.0', '204.238.255.255', 2147483647, 2147483647, 'US', 'United States'), +('204.239.0.0', '204.239.10.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.239.11.0', '204.239.11.255', 2147483647, 2147483647, 'US', 'United States'), +('204.239.12.0', '204.239.13.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.239.16.0', '204.239.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.240.0.0', '204.243.255.255', 2147483647, 2147483647, 'US', 'United States'), +('204.244.0.0', '204.244.8.47', 2147483647, 2147483647, 'CA', 'Canada'), +('204.244.8.48', '204.244.8.63', 2147483647, 2147483647, 'TC', 'Turks and Caicos Islands'), +('204.244.8.64', '204.244.10.15', 2147483647, 2147483647, 'CA', 'Canada'), +('204.244.10.16', '204.244.10.23', 2147483647, 2147483647, 'US', 'United States'), +('204.244.10.24', '204.244.10.63', 2147483647, 2147483647, 'CA', 'Canada'), +('204.244.10.64', '204.244.10.71', 2147483647, 2147483647, 'US', 'United States'), +('204.244.10.72', '204.244.10.175', 2147483647, 2147483647, 'CA', 'Canada'), +('204.244.10.176', '204.244.10.183', 2147483647, 2147483647, 'US', 'United States'), +('204.244.10.184', '204.244.28.55', 2147483647, 2147483647, 'CA', 'Canada'), +('204.244.28.56', '204.244.28.63', 2147483647, 2147483647, 'US', 'United States'), +('204.244.28.64', '204.244.29.175', 2147483647, 2147483647, 'CA', 'Canada'), +('204.244.29.176', '204.244.29.191', 2147483647, 2147483647, 'US', 'United States'), +('204.244.29.192', '204.244.36.207', 2147483647, 2147483647, 'CA', 'Canada'), +('204.244.36.208', '204.244.36.223', 2147483647, 2147483647, 'US', 'United States'), +('204.244.36.224', '204.244.106.47', 2147483647, 2147483647, 'CA', 'Canada'), +('204.244.106.48', '204.244.106.55', 2147483647, 2147483647, 'MY', 'Malaysia'), +('204.244.106.56', '204.244.183.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.244.184.0', '204.244.184.255', 2147483647, 2147483647, 'TC', 'Turks and Caicos Islands'), +('204.244.185.0', '204.244.187.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.244.188.0', '204.244.188.255', 2147483647, 2147483647, 'TC', 'Turks and Caicos Islands'), +('204.244.189.0', '204.244.192.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.244.193.0', '204.244.193.7', 2147483647, 2147483647, 'US', 'United States'), +('204.244.193.8', '204.244.224.127', 2147483647, 2147483647, 'CA', 'Canada'), +('204.244.224.128', '204.244.224.159', 2147483647, 2147483647, 'US', 'United States'), +('204.244.224.160', '204.244.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('204.245.0.0', '204.248.31.255', 2147483647, 2147483647, 'US', 'United States'), +('204.248.32.0', '204.248.35.255', 2147483647, 2147483647, 'GH', 'Ghana'), +('204.248.36.0', '204.249.95.255', 2147483647, 2147483647, 'US', 'United States'), +('204.249.96.0', '204.249.102.255', 2147483647, 2147483647, 'HN', 'Honduras'), +('204.249.103.0', '204.252.14.255', 2147483647, 2147483647, 'US', 'United States'), +('204.252.15.0', '204.252.15.159', 2147483647, 2147483647, 'MX', 'Mexico'), +('204.252.15.160', '204.253.197.255', 2147483647, 2147483647, 'US', 'United States'), +('204.253.198.0', '204.253.199.255', 2147483647, 2147483647, 'HT', 'Haiti'), +('204.253.200.0', '204.254.84.255', 2147483647, 2147483647, 'US', 'United States'), +('204.254.85.0', '204.254.85.111', 2147483647, 2147483647, 'CL', 'Chile'), +('204.254.85.112', '204.254.85.119', 2147483647, 2147483647, 'US', 'United States'), +('204.254.85.120', '204.254.85.191', 2147483647, 2147483647, 'CL', 'Chile'), +('204.254.85.192', '204.254.85.207', 2147483647, 2147483647, 'US', 'United States'), +('204.254.85.208', '204.254.85.223', 2147483647, 2147483647, 'CL', 'Chile'), +('204.254.85.224', '205.134.188.239', 2147483647, 2147483647, 'US', 'United States'), +('205.134.188.240', '205.134.188.255', 2147483647, 2147483647, 'AG', 'Antigua and Barbuda'), +('205.134.189.0', '205.134.225.127', 2147483647, 2147483647, 'US', 'United States'), +('205.134.225.128', '205.134.225.135', 2147483647, 2147483647, 'IN', 'India'), +('205.134.225.136', '205.134.227.47', 2147483647, 2147483647, 'US', 'United States'), +('205.134.227.48', '205.134.227.63', 2147483647, 2147483647, 'AE', 'United Arab Emirates'), +('205.134.227.64', '205.134.232.15', 2147483647, 2147483647, 'US', 'United States'), +('205.134.232.16', '205.134.232.31', 2147483647, 2147483647, 'UY', 'Uruguay'), +('205.134.232.32', '205.134.241.127', 2147483647, 2147483647, 'US', 'United States'), +('205.134.241.128', '205.134.241.255', 2147483647, 2147483647, 'CA', 'Canada'), +('205.134.242.0', '205.134.243.127', 2147483647, 2147483647, 'US', 'United States'), +('205.134.243.128', '205.134.243.255', 2147483647, 2147483647, 'CA', 'Canada'), +('205.134.244.0', '205.134.244.127', 2147483647, 2147483647, 'US', 'United States'), +('205.134.244.128', '205.134.244.255', 2147483647, 2147483647, 'CA', 'Canada'), +('205.134.245.0', '205.134.245.95', 2147483647, 2147483647, 'US', 'United States'), +('205.134.245.96', '205.134.245.111', 2147483647, 2147483647, 'UY', 'Uruguay'), +('205.134.245.112', '205.134.252.255', 2147483647, 2147483647, 'US', 'United States'), +('205.134.253.0', '205.134.253.255', 2147483647, 2147483647, 'AU', 'Australia'), +('205.134.254.0', '205.136.82.255', 2147483647, 2147483647, 'US', 'United States'), +('205.136.83.0', '205.136.83.7', 2147483647, 2147483647, 'AG', 'Antigua and Barbuda'), +('205.136.83.8', '205.136.83.15', 2147483647, 2147483647, 'KN', 'Saint Kitts and Nevis'), +('205.136.83.16', '205.136.83.23', 2147483647, 2147483647, 'AG', 'Antigua and Barbuda'), +('205.136.83.24', '205.136.83.47', 2147483647, 2147483647, 'KN', 'Saint Kitts and Nevis'), +('205.136.83.48', '205.136.83.63', 2147483647, 2147483647, 'AG', 'Antigua and Barbuda'), +('205.136.83.64', '205.136.83.127', 2147483647, 2147483647, 'AI', 'Anguilla'), +('205.136.83.128', '205.136.83.231', 2147483647, 2147483647, 'AG', 'Antigua and Barbuda'), +('205.136.83.232', '205.136.83.239', 2147483647, 2147483647, 'MS', 'Montserrat'), +('205.136.83.240', '205.136.84.63', 2147483647, 2147483647, 'AG', 'Antigua and Barbuda'), +('205.136.84.64', '205.136.84.191', 2147483647, 2147483647, 'VG', 'Virgin Islands, British'), +('205.136.84.192', '205.136.84.255', 2147483647, 2147483647, 'AG', 'Antigua and Barbuda'), +('205.136.85.0', '205.136.237.255', 2147483647, 2147483647, 'US', 'United States'), +('205.136.238.0', '205.136.240.255', 2147483647, 2147483647, 'KY', 'Cayman Islands'), +('205.136.241.0', '205.137.120.255', 2147483647, 2147483647, 'US', 'United States'), +('205.137.121.0', '205.137.123.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('205.137.124.0', '205.138.15.255', 2147483647, 2147483647, 'US', 'United States'), +('205.138.16.0', '205.138.17.255', 2147483647, 2147483647, 'AG', 'Antigua and Barbuda'), +('205.138.18.0', '205.138.24.23', 2147483647, 2147483647, 'US', 'United States'), +('205.138.24.24', '205.138.24.31', 2147483647, 2147483647, 'IL', 'Israel'), +('205.138.24.32', '205.138.24.127', 2147483647, 2147483647, 'US', 'United States'), +('205.138.24.128', '205.138.24.255', 2147483647, 2147483647, 'IN', 'India'), +('205.138.25.0', '205.138.25.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('205.138.26.0', '205.138.27.255', 2147483647, 2147483647, 'US', 'United States'), +('205.138.28.0', '205.138.28.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('205.138.29.0', '205.138.30.255', 2147483647, 2147483647, 'US', 'United States'), +('205.138.31.0', '205.138.31.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('205.138.32.0', '205.138.96.127', 2147483647, 2147483647, 'US', 'United States'), +('205.138.96.128', '205.138.96.143', 2147483647, 2147483647, 'CA', 'Canada'), +('205.138.96.144', '205.138.97.255', 2147483647, 2147483647, 'US', 'United States'), +('205.138.98.0', '205.138.100.255', 2147483647, 2147483647, 'CA', 'Canada'), +('205.138.101.0', '205.138.101.255', 2147483647, 2147483647, 'US', 'United States'), +('205.138.102.0', '205.138.103.255', 2147483647, 2147483647, 'CA', 'Canada'), +('205.138.104.0', '205.139.87.255', 2147483647, 2147483647, 'US', 'United States'), +('205.139.88.0', '205.139.88.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('205.139.88.80', '205.139.88.231', 2147483647, 2147483647, 'US', 'United States'), +('205.139.88.232', '205.139.88.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('205.139.88.240', '205.139.91.63', 2147483647, 2147483647, 'US', 'United States'), +('205.139.91.64', '205.139.91.127', 2147483647, 2147483647, 'SG', 'Singapore'), +('205.139.91.128', '205.140.204.127', 2147483647, 2147483647, 'US', 'United States'), +('205.140.204.128', '205.140.204.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('205.140.204.192', '205.140.204.255', 2147483647, 2147483647, 'US', 'United States'), +('205.140.205.0', '205.140.205.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('205.140.205.16', '205.140.213.63', 2147483647, 2147483647, 'US', 'United States'), +('205.140.213.64', '205.140.213.71', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('205.140.213.72', '205.140.213.255', 2147483647, 2147483647, 'US', 'United States'), +('205.140.214.0', '205.140.214.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('205.140.215.0', '205.147.149.29', 2147483647, 2147483647, 'US', 'United States'), +('205.147.149.30', '205.147.149.30', 2147483647, 2147483647, 'MC', 'Monaco'), +('205.147.149.31', '205.149.255.255', 2147483647, 2147483647, 'US', 'United States'), +('205.150.0.0', '205.150.3.255', 2147483647, 2147483647, 'CA', 'Canada'), +('205.150.4.0', '205.150.6.255', 2147483647, 2147483647, 'US', 'United States'), +('205.150.7.0', '205.150.14.255', 2147483647, 2147483647, 'CA', 'Canada'), +('205.150.15.0', '205.150.15.255', 2147483647, 2147483647, 'US', 'United States'), +('205.150.16.0', '205.150.20.255', 2147483647, 2147483647, 'CA', 'Canada'), +('205.150.21.0', '205.150.21.255', 2147483647, 2147483647, 'US', 'United States'), +('205.150.22.0', '205.150.22.255', 2147483647, 2147483647, 'CA', 'Canada'), +('205.150.23.0', '205.150.24.255', 2147483647, 2147483647, 'US', 'United States'), +('205.150.25.0', '205.150.34.255', 2147483647, 2147483647, 'CA', 'Canada'), +('205.150.35.0', '205.150.35.255', 2147483647, 2147483647, 'US', 'United States'), +('205.150.36.0', '205.150.36.255', 2147483647, 2147483647, 'CA', 'Canada'), +('205.150.37.0', '205.150.38.255', 2147483647, 2147483647, 'US', 'United States'), +('205.150.39.0', '205.150.44.255', 2147483647, 2147483647, 'CA', 'Canada'), +('205.150.45.0', '205.150.46.255', 2147483647, 2147483647, 'US', 'United States'), +('205.150.47.0', '205.150.51.255', 2147483647, 2147483647, 'CA', 'Canada'), +('205.150.52.0', '205.150.52.255', 2147483647, 2147483647, 'US', 'United States'), +('205.150.53.0', '205.150.58.255', 2147483647, 2147483647, 'CA', 'Canada'), +('205.150.59.0', '205.150.59.255', 2147483647, 2147483647, 'US', 'United States'), +('205.150.60.0', '205.150.60.255', 2147483647, 2147483647, 'CA', 'Canada'), +('205.150.61.0', '205.150.61.255', 2147483647, 2147483647, 'US', 'United States'), +('205.150.62.0', '205.150.62.255', 2147483647, 2147483647, 'CA', 'Canada'), +('205.150.63.0', '205.150.63.255', 2147483647, 2147483647, 'US', 'United States'), +('205.150.64.0', '205.150.67.255', 2147483647, 2147483647, 'CA', 'Canada'), +('205.150.68.0', '205.150.68.15', 2147483647, 2147483647, 'US', 'United States'), +('205.150.68.16', '205.150.72.255', 2147483647, 2147483647, 'CA', 'Canada'), +('205.150.73.0', '205.150.73.255', 2147483647, 2147483647, 'US', 'United States'), +('205.150.74.0', '205.150.79.63', 2147483647, 2147483647, 'CA', 'Canada'), +('205.150.79.64', '205.150.79.127', 2147483647, 2147483647, 'US', 'United States'), +('205.150.79.128', '205.150.79.191', 2147483647, 2147483647, 'CA', 'Canada'), +('205.150.79.192', '205.150.81.255', 2147483647, 2147483647, 'US', 'United States'), +('205.150.82.0', '205.150.86.255', 2147483647, 2147483647, 'CA', 'Canada'), +('205.150.87.0', '205.150.87.31', 2147483647, 2147483647, 'US', 'United States'), +('205.150.87.32', '205.150.87.47', 2147483647, 2147483647, 'CA', 'Canada'), +('205.150.87.48', '205.150.87.63', 2147483647, 2147483647, 'US', 'United States'), +('205.150.87.64', '205.150.87.79', 2147483647, 2147483647, 'CA', 'Canada'), +('205.150.87.80', '205.150.87.95', 2147483647, 2147483647, 'US', 'United States'), +('205.150.87.96', '205.150.87.111', 2147483647, 2147483647, 'CA', 'Canada'), +('205.150.87.112', '205.150.87.127', 2147483647, 2147483647, 'US', 'United States'), +('205.150.87.128', '205.150.87.143', 2147483647, 2147483647, 'CA', 'Canada'), +('205.150.87.144', '205.150.87.159', 2147483647, 2147483647, 'US', 'United States'), +('205.150.87.160', '205.150.87.207', 2147483647, 2147483647, 'CA', 'Canada'), +('205.150.87.208', '205.150.87.255', 2147483647, 2147483647, 'US', 'United States'), +('205.150.88.0', '205.150.103.255', 2147483647, 2147483647, 'CA', 'Canada'), +('205.150.104.0', '205.150.104.255', 2147483647, 2147483647, 'US', 'United States'), +('205.150.105.0', '205.150.105.255', 2147483647, 2147483647, 'CA', 'Canada'), +('205.150.106.0', '205.150.106.255', 2147483647, 2147483647, 'US', 'United States'), +('205.150.107.0', '205.150.109.63', 2147483647, 2147483647, 'CA', 'Canada'), +('205.150.109.64', '205.150.109.127', 2147483647, 2147483647, 'US', 'United States'), +('205.150.109.128', '205.150.111.63', 2147483647, 2147483647, 'CA', 'Canada'), +('205.150.111.64', '205.150.111.127', 2147483647, 2147483647, 'US', 'United States'), +('205.150.111.128', '205.150.113.223', 2147483647, 2147483647, 'CA', 'Canada'), +('205.150.113.224', '205.150.113.255', 2147483647, 2147483647, 'US', 'United States'), +('205.150.114.0', '205.150.116.223', 2147483647, 2147483647, 'CA', 'Canada'), +('205.150.116.224', '205.150.116.255', 2147483647, 2147483647, 'US', 'United States'), +('205.150.117.0', '205.150.117.15', 2147483647, 2147483647, 'CA', 'Canada'), +('205.150.117.16', '205.150.117.31', 2147483647, 2147483647, 'US', 'United States'), +('205.150.117.32', '205.150.117.47', 2147483647, 2147483647, 'CA', 'Canada'), +('205.150.117.48', '205.150.117.79', 2147483647, 2147483647, 'US', 'United States'), +('205.150.117.80', '205.150.117.127', 2147483647, 2147483647, 'CA', 'Canada'), +('205.150.117.128', '205.150.117.143', 2147483647, 2147483647, 'US', 'United States'), +('205.150.117.144', '205.150.117.159', 2147483647, 2147483647, 'CA', 'Canada'), +('205.150.117.160', '205.150.117.207', 2147483647, 2147483647, 'US', 'United States'), +('205.150.117.208', '205.150.120.255', 2147483647, 2147483647, 'CA', 'Canada'), +('205.150.121.0', '205.150.121.255', 2147483647, 2147483647, 'US', 'United States'), +('205.150.122.0', '205.150.123.7', 2147483647, 2147483647, 'CA', 'Canada'), +('205.150.123.8', '205.150.123.15', 2147483647, 2147483647, 'US', 'United States'), +('205.150.123.16', '205.150.123.87', 2147483647, 2147483647, 'CA', 'Canada'), +('205.150.123.88', '205.150.123.95', 2147483647, 2147483647, 'US', 'United States'), +('205.150.123.96', '205.150.123.135', 2147483647, 2147483647, 'CA', 'Canada'), +('205.150.123.136', '205.150.123.143', 2147483647, 2147483647, 'US', 'United States'), +('205.150.123.144', '205.150.123.151', 2147483647, 2147483647, 'CA', 'Canada'), +('205.150.123.152', '205.150.123.159', 2147483647, 2147483647, 'US', 'United States'), +('205.150.123.160', '205.150.123.175', 2147483647, 2147483647, 'CA', 'Canada'), +('205.150.123.176', '205.150.123.183', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('205.150.123.184', '205.150.123.199', 2147483647, 2147483647, 'CA', 'Canada'), +('205.150.123.200', '205.150.123.207', 2147483647, 2147483647, 'US', 'United States'), +('205.150.123.208', '205.150.124.255', 2147483647, 2147483647, 'CA', 'Canada'), +('205.150.125.0', '205.150.125.63', 2147483647, 2147483647, 'US', 'United States'), +('205.150.125.64', '205.150.140.255', 2147483647, 2147483647, 'CA', 'Canada'), +('205.150.141.0', '205.150.141.255', 2147483647, 2147483647, 'US', 'United States'), +('205.150.142.0', '205.150.142.255', 2147483647, 2147483647, 'CA', 'Canada'), +('205.150.143.0', '205.150.152.95', 2147483647, 2147483647, 'US', 'United States'), +('205.150.152.96', '205.150.152.191', 2147483647, 2147483647, 'CA', 'Canada'), +('205.150.152.192', '205.150.153.31', 2147483647, 2147483647, 'US', 'United States'), +('205.150.153.32', '205.150.153.255', 2147483647, 2147483647, 'CA', 'Canada'), +('205.150.154.0', '205.150.156.31', 2147483647, 2147483647, 'US', 'United States'), +('205.150.156.32', '205.150.156.79', 2147483647, 2147483647, 'CA', 'Canada'), +('205.150.156.80', '205.150.156.95', 2147483647, 2147483647, 'US', 'United States'), +('205.150.156.96', '205.150.156.255', 2147483647, 2147483647, 'CA', 'Canada'), +('205.150.157.0', '205.150.168.79', 2147483647, 2147483647, 'US', 'United States'), +('205.150.168.80', '205.150.168.159', 2147483647, 2147483647, 'CA', 'Canada'), +('205.150.168.160', '205.150.168.175', 2147483647, 2147483647, 'US', 'United States'), +('205.150.168.176', '205.150.168.223', 2147483647, 2147483647, 'CA', 'Canada'), +('205.150.168.224', '205.150.168.255', 2147483647, 2147483647, 'US', 'United States'), +('205.150.169.0', '205.150.169.15', 2147483647, 2147483647, 'CA', 'Canada'), +('205.150.169.16', '205.150.169.23', 2147483647, 2147483647, 'US', 'United States'), +('205.150.169.24', '205.150.169.79', 2147483647, 2147483647, 'CA', 'Canada'), +('205.150.169.80', '205.150.169.87', 2147483647, 2147483647, 'US', 'United States'), +('205.150.169.88', '205.150.169.95', 2147483647, 2147483647, 'CA', 'Canada'), +('205.150.169.96', '205.150.169.103', 2147483647, 2147483647, 'US', 'United States'), +('205.150.169.104', '205.150.169.151', 2147483647, 2147483647, 'CA', 'Canada'), +('205.150.169.152', '205.150.169.159', 2147483647, 2147483647, 'US', 'United States'), +('205.150.169.160', '205.150.169.175', 2147483647, 2147483647, 'CA', 'Canada'), +('205.150.169.176', '205.150.169.183', 2147483647, 2147483647, 'US', 'United States'), +('205.150.169.184', '205.150.170.63', 2147483647, 2147483647, 'CA', 'Canada'), +('205.150.170.64', '205.150.170.95', 2147483647, 2147483647, 'US', 'United States'), +('205.150.170.96', '205.150.171.71', 2147483647, 2147483647, 'CA', 'Canada'), +('205.150.171.72', '205.150.171.87', 2147483647, 2147483647, 'US', 'United States'), +('205.150.171.88', '205.150.171.143', 2147483647, 2147483647, 'CA', 'Canada'), +('205.150.171.144', '205.150.171.151', 2147483647, 2147483647, 'US', 'United States'), +('205.150.171.152', '205.150.171.167', 2147483647, 2147483647, 'CA', 'Canada'), +('205.150.171.168', '205.150.171.175', 2147483647, 2147483647, 'US', 'United States'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('205.150.171.176', '205.150.171.199', 2147483647, 2147483647, 'CA', 'Canada'), +('205.150.171.200', '205.150.171.207', 2147483647, 2147483647, 'US', 'United States'), +('205.150.171.208', '205.150.171.231', 2147483647, 2147483647, 'CA', 'Canada'), +('205.150.171.232', '205.150.171.239', 2147483647, 2147483647, 'US', 'United States'), +('205.150.171.240', '205.150.172.63', 2147483647, 2147483647, 'CA', 'Canada'), +('205.150.172.64', '205.150.172.191', 2147483647, 2147483647, 'US', 'United States'), +('205.150.172.192', '205.150.172.255', 2147483647, 2147483647, 'CA', 'Canada'), +('205.150.173.0', '205.150.173.63', 2147483647, 2147483647, 'US', 'United States'), +('205.150.173.64', '205.150.174.255', 2147483647, 2147483647, 'CA', 'Canada'), +('205.150.175.0', '205.150.175.255', 2147483647, 2147483647, 'US', 'United States'), +('205.150.176.0', '205.150.179.255', 2147483647, 2147483647, 'CA', 'Canada'), +('205.150.180.0', '205.150.181.255', 2147483647, 2147483647, 'US', 'United States'), +('205.150.182.0', '205.150.182.63', 2147483647, 2147483647, 'CA', 'Canada'), +('205.150.182.64', '205.150.182.95', 2147483647, 2147483647, 'US', 'United States'), +('205.150.182.96', '205.150.183.63', 2147483647, 2147483647, 'CA', 'Canada'), +('205.150.183.64', '205.150.183.127', 2147483647, 2147483647, 'US', 'United States'), +('205.150.183.128', '205.150.184.223', 2147483647, 2147483647, 'CA', 'Canada'), +('205.150.184.224', '205.150.190.255', 2147483647, 2147483647, 'US', 'United States'), +('205.150.191.0', '205.150.191.191', 2147483647, 2147483647, 'CA', 'Canada'), +('205.150.191.192', '205.150.191.255', 2147483647, 2147483647, 'US', 'United States'), +('205.150.192.0', '205.150.192.47', 2147483647, 2147483647, 'CA', 'Canada'), +('205.150.192.48', '205.150.192.63', 2147483647, 2147483647, 'US', 'United States'), +('205.150.192.64', '205.150.192.143', 2147483647, 2147483647, 'CA', 'Canada'), +('205.150.192.144', '205.150.192.175', 2147483647, 2147483647, 'US', 'United States'), +('205.150.192.176', '205.150.192.191', 2147483647, 2147483647, 'CA', 'Canada'), +('205.150.192.192', '205.150.192.207', 2147483647, 2147483647, 'US', 'United States'), +('205.150.192.208', '205.150.194.255', 2147483647, 2147483647, 'CA', 'Canada'), +('205.150.195.0', '205.150.195.255', 2147483647, 2147483647, 'US', 'United States'), +('205.150.196.0', '205.150.196.127', 2147483647, 2147483647, 'CA', 'Canada'), +('205.150.196.128', '205.150.196.159', 2147483647, 2147483647, 'US', 'United States'), +('205.150.196.160', '205.150.205.255', 2147483647, 2147483647, 'CA', 'Canada'), +('205.150.206.0', '205.150.206.255', 2147483647, 2147483647, 'US', 'United States'), +('205.150.207.0', '205.150.207.255', 2147483647, 2147483647, 'CA', 'Canada'), +('205.150.208.0', '205.150.208.255', 2147483647, 2147483647, 'US', 'United States'), +('205.150.209.0', '205.150.210.255', 2147483647, 2147483647, 'CA', 'Canada'), +('205.150.211.0', '205.150.211.255', 2147483647, 2147483647, 'US', 'United States'), +('205.150.212.0', '205.150.212.127', 2147483647, 2147483647, 'CA', 'Canada'), +('205.150.212.128', '205.150.212.191', 2147483647, 2147483647, 'US', 'United States'), +('205.150.212.192', '205.150.214.119', 2147483647, 2147483647, 'CA', 'Canada'), +('205.150.214.120', '205.150.214.127', 2147483647, 2147483647, 'SE', 'Sweden'), +('205.150.214.128', '205.150.214.159', 2147483647, 2147483647, 'CA', 'Canada'), +('205.150.214.160', '205.150.214.183', 2147483647, 2147483647, 'US', 'United States'), +('205.150.214.184', '205.150.214.255', 2147483647, 2147483647, 'CA', 'Canada'), +('205.150.215.0', '205.150.215.15', 2147483647, 2147483647, 'US', 'United States'), +('205.150.215.16', '205.150.215.95', 2147483647, 2147483647, 'CA', 'Canada'), +('205.150.215.96', '205.150.215.111', 2147483647, 2147483647, 'US', 'United States'), +('205.150.215.112', '205.150.215.127', 2147483647, 2147483647, 'CA', 'Canada'), +('205.150.215.128', '205.150.215.143', 2147483647, 2147483647, 'US', 'United States'), +('205.150.215.144', '205.150.219.255', 2147483647, 2147483647, 'CA', 'Canada'), +('205.150.220.0', '205.150.236.255', 2147483647, 2147483647, 'US', 'United States'), +('205.150.237.0', '205.150.240.255', 2147483647, 2147483647, 'CA', 'Canada'), +('205.150.241.0', '205.150.245.255', 2147483647, 2147483647, 'US', 'United States'), +('205.150.246.0', '205.150.254.255', 2147483647, 2147483647, 'CA', 'Canada'), +('205.150.255.0', '205.150.255.255', 2147483647, 2147483647, 'US', 'United States'), +('205.151.0.0', '205.151.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('205.152.0.0', '205.156.176.255', 2147483647, 2147483647, 'US', 'United States'), +('205.156.177.0', '205.156.177.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('205.156.178.0', '205.159.78.255', 2147483647, 2147483647, 'US', 'United States'), +('205.159.79.0', '205.159.79.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('205.159.80.0', '205.160.31.255', 2147483647, 2147483647, 'US', 'United States'), +('205.160.32.0', '205.160.35.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('205.160.36.0', '205.160.79.255', 2147483647, 2147483647, 'US', 'United States'), +('205.160.80.0', '205.160.83.255', 2147483647, 2147483647, 'ES', 'Spain'), +('205.160.84.0', '205.160.109.255', 2147483647, 2147483647, 'US', 'United States'), +('205.160.110.0', '205.160.111.255', 2147483647, 2147483647, 'YE', 'Yemen'), +('205.160.112.0', '205.160.232.255', 2147483647, 2147483647, 'US', 'United States'), +('205.160.233.0', '205.160.233.255', 2147483647, 2147483647, 'AG', 'Antigua and Barbuda'), +('205.160.234.0', '205.161.117.191', 2147483647, 2147483647, 'US', 'United States'), +('205.161.117.192', '205.161.117.255', 2147483647, 2147483647, 'CA', 'Canada'), +('205.161.118.0', '205.161.167.255', 2147483647, 2147483647, 'US', 'United States'), +('205.161.168.0', '205.161.168.255', 2147483647, 2147483647, 'ES', 'Spain'), +('205.161.169.0', '205.162.111.255', 2147483647, 2147483647, 'US', 'United States'), +('205.162.112.0', '205.162.119.255', 2147483647, 2147483647, 'CA', 'Canada'), +('205.162.120.0', '205.162.132.255', 2147483647, 2147483647, 'US', 'United States'), +('205.162.133.0', '205.162.133.255', 2147483647, 2147483647, 'AN', 'Netherlands Antilles'), +('205.162.134.0', '205.162.187.255', 2147483647, 2147483647, 'US', 'United States'), +('205.162.188.0', '205.162.188.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('205.162.189.0', '205.166.34.255', 2147483647, 2147483647, 'US', 'United States'), +('205.166.35.0', '205.166.35.255', 2147483647, 2147483647, 'LC', 'Saint Lucia'), +('205.166.36.0', '205.166.250.255', 2147483647, 2147483647, 'US', 'United States'), +('205.166.251.0', '205.166.251.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('205.166.252.0', '205.173.251.255', 2147483647, 2147483647, 'US', 'United States'), +('205.173.252.0', '205.173.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('205.174.0.0', '205.174.159.255', 2147483647, 2147483647, 'US', 'United States'), +('205.174.160.0', '205.174.175.255', 2147483647, 2147483647, 'CA', 'Canada'), +('205.174.176.0', '205.177.27.255', 2147483647, 2147483647, 'US', 'United States'), +('205.177.28.0', '205.177.28.31', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('205.177.28.32', '205.178.127.255', 2147483647, 2147483647, 'US', 'United States'), +('205.178.128.0', '205.178.135.255', 2147483647, 2147483647, 'CA', 'Canada'), +('205.178.136.0', '205.178.137.255', 2147483647, 2147483647, 'US', 'United States'), +('205.178.138.0', '205.178.143.255', 2147483647, 2147483647, 'CA', 'Canada'), +('205.178.144.0', '205.178.146.255', 2147483647, 2147483647, 'US', 'United States'), +('205.178.147.0', '205.178.148.255', 2147483647, 2147483647, 'CA', 'Canada'), +('205.178.149.0', '205.178.149.255', 2147483647, 2147483647, 'US', 'United States'), +('205.178.150.0', '205.178.183.255', 2147483647, 2147483647, 'CA', 'Canada'), +('205.178.184.0', '205.180.173.255', 2147483647, 2147483647, 'US', 'United States'), +('205.180.174.0', '205.180.174.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('205.180.175.0', '205.180.242.255', 2147483647, 2147483647, 'US', 'United States'), +('205.180.243.0', '205.180.243.255', 2147483647, 2147483647, 'AU', 'Australia'), +('205.180.244.0', '205.181.62.255', 2147483647, 2147483647, 'US', 'United States'), +('205.181.63.0', '205.181.63.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('205.181.64.0', '205.181.175.255', 2147483647, 2147483647, 'US', 'United States'), +('205.181.176.0', '205.181.176.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('205.181.177.0', '205.183.191.255', 2147483647, 2147483647, 'US', 'United States'), +('205.183.192.0', '205.183.192.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('205.183.193.0', '205.188.255.255', 2147483647, 2147483647, 'US', 'United States'), +('205.189.0.0', '205.189.84.255', 2147483647, 2147483647, 'CA', 'Canada'), +('205.189.85.0', '205.189.85.255', 2147483647, 2147483647, 'US', 'United States'), +('205.189.86.0', '205.189.111.255', 2147483647, 2147483647, 'CA', 'Canada'), +('205.189.112.0', '205.189.116.255', 2147483647, 2147483647, 'US', 'United States'), +('205.189.117.0', '205.189.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('205.190.0.0', '205.190.10.255', 2147483647, 2147483647, 'US', 'United States'), +('205.190.11.0', '205.190.11.255', 2147483647, 2147483647, 'CA', 'Canada'), +('205.190.12.0', '205.190.21.255', 2147483647, 2147483647, 'US', 'United States'), +('205.190.22.0', '205.190.23.255', 2147483647, 2147483647, 'CA', 'Canada'), +('205.190.24.0', '205.190.26.255', 2147483647, 2147483647, 'US', 'United States'), +('205.190.27.0', '205.190.27.255', 2147483647, 2147483647, 'CA', 'Canada'), +('205.190.28.0', '205.190.68.255', 2147483647, 2147483647, 'US', 'United States'), +('205.190.69.0', '205.190.69.255', 2147483647, 2147483647, 'CA', 'Canada'), +('205.190.70.0', '205.190.73.255', 2147483647, 2147483647, 'US', 'United States'), +('205.190.74.0', '205.190.74.255', 2147483647, 2147483647, 'CA', 'Canada'), +('205.190.75.0', '205.190.101.255', 2147483647, 2147483647, 'US', 'United States'), +('205.190.102.0', '205.190.102.255', 2147483647, 2147483647, 'CA', 'Canada'), +('205.190.103.0', '205.190.106.255', 2147483647, 2147483647, 'US', 'United States'), +('205.190.107.0', '205.190.107.255', 2147483647, 2147483647, 'CA', 'Canada'), +('205.190.108.0', '205.190.115.255', 2147483647, 2147483647, 'US', 'United States'), +('205.190.116.0', '205.190.117.255', 2147483647, 2147483647, 'CA', 'Canada'), +('205.190.118.0', '205.190.157.255', 2147483647, 2147483647, 'US', 'United States'), +('205.190.158.0', '205.190.158.255', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('205.190.159.0', '205.190.167.255', 2147483647, 2147483647, 'US', 'United States'), +('205.190.168.0', '205.190.168.255', 2147483647, 2147483647, 'CA', 'Canada'), +('205.190.169.0', '205.190.180.255', 2147483647, 2147483647, 'US', 'United States'), +('205.190.181.0', '205.190.181.255', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('205.190.182.0', '205.190.184.255', 2147483647, 2147483647, 'US', 'United States'), +('205.190.185.0', '205.190.185.255', 2147483647, 2147483647, 'CA', 'Canada'), +('205.190.186.0', '205.190.186.255', 2147483647, 2147483647, 'US', 'United States'), +('205.190.187.0', '205.190.187.255', 2147483647, 2147483647, 'CA', 'Canada'), +('205.190.188.0', '205.190.213.255', 2147483647, 2147483647, 'US', 'United States'), +('205.190.214.0', '205.190.214.255', 2147483647, 2147483647, 'CA', 'Canada'), +('205.190.215.0', '205.190.215.255', 2147483647, 2147483647, 'US', 'United States'), +('205.190.216.0', '205.190.216.255', 2147483647, 2147483647, 'CA', 'Canada'), +('205.190.217.0', '205.190.217.255', 2147483647, 2147483647, 'US', 'United States'), +('205.190.218.0', '205.190.218.255', 2147483647, 2147483647, 'CA', 'Canada'), +('205.190.219.0', '205.190.220.255', 2147483647, 2147483647, 'US', 'United States'), +('205.190.221.0', '205.190.221.255', 2147483647, 2147483647, 'CA', 'Canada'), +('205.190.222.0', '205.190.230.255', 2147483647, 2147483647, 'US', 'United States'), +('205.190.231.0', '205.190.232.255', 2147483647, 2147483647, 'CA', 'Canada'), +('205.190.233.0', '205.191.127.255', 2147483647, 2147483647, 'US', 'United States'), +('205.191.128.0', '205.191.129.255', 2147483647, 2147483647, 'DE', 'Germany'), +('205.191.130.0', '205.191.193.255', 2147483647, 2147483647, 'US', 'United States'), +('205.191.194.0', '205.191.194.255', 2147483647, 2147483647, 'DE', 'Germany'), +('205.191.195.0', '205.191.255.255', 2147483647, 2147483647, 'US', 'United States'), +('205.192.0.0', '205.195.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('205.196.0.0', '205.199.255.255', 2147483647, 2147483647, 'US', 'United States'), +('205.200.0.0', '205.200.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('205.201.0.0', '205.204.255.255', 2147483647, 2147483647, 'US', 'United States'), +('205.205.0.0', '205.205.1.23', 2147483647, 2147483647, 'CA', 'Canada'), +('205.205.1.24', '205.205.1.31', 2147483647, 2147483647, 'US', 'United States'), +('205.205.1.32', '205.205.1.71', 2147483647, 2147483647, 'CA', 'Canada'), +('205.205.1.72', '205.205.1.79', 2147483647, 2147483647, 'US', 'United States'), +('205.205.1.80', '205.205.1.199', 2147483647, 2147483647, 'CA', 'Canada'), +('205.205.1.200', '205.205.1.207', 2147483647, 2147483647, 'US', 'United States'), +('205.205.1.208', '205.205.1.223', 2147483647, 2147483647, 'CA', 'Canada'), +('205.205.1.224', '205.205.1.231', 2147483647, 2147483647, 'US', 'United States'), +('205.205.1.232', '205.205.1.239', 2147483647, 2147483647, 'CA', 'Canada'), +('205.205.1.240', '205.205.1.247', 2147483647, 2147483647, 'US', 'United States'), +('205.205.1.248', '205.205.16.143', 2147483647, 2147483647, 'CA', 'Canada'), +('205.205.16.144', '205.205.16.175', 2147483647, 2147483647, 'US', 'United States'), +('205.205.16.176', '205.205.17.239', 2147483647, 2147483647, 'CA', 'Canada'), +('205.205.17.240', '205.205.17.255', 2147483647, 2147483647, 'US', 'United States'), +('205.205.18.0', '205.205.25.31', 2147483647, 2147483647, 'CA', 'Canada'), +('205.205.25.32', '205.205.25.47', 2147483647, 2147483647, 'US', 'United States'), +('205.205.25.48', '205.205.25.223', 2147483647, 2147483647, 'CA', 'Canada'), +('205.205.25.224', '205.205.25.239', 2147483647, 2147483647, 'US', 'United States'), +('205.205.25.240', '205.205.29.63', 2147483647, 2147483647, 'CA', 'Canada'), +('205.205.29.64', '205.205.29.127', 2147483647, 2147483647, 'US', 'United States'), +('205.205.29.128', '205.205.49.191', 2147483647, 2147483647, 'CA', 'Canada'), +('205.205.49.192', '205.205.49.255', 2147483647, 2147483647, 'US', 'United States'), +('205.205.50.0', '205.205.82.247', 2147483647, 2147483647, 'CA', 'Canada'), +('205.205.82.248', '205.205.82.255', 2147483647, 2147483647, 'US', 'United States'), +('205.205.83.0', '205.205.91.63', 2147483647, 2147483647, 'CA', 'Canada'), +('205.205.91.64', '205.205.91.127', 2147483647, 2147483647, 'US', 'United States'), +('205.205.91.128', '205.205.104.255', 2147483647, 2147483647, 'CA', 'Canada'), +('205.205.105.0', '205.205.105.15', 2147483647, 2147483647, 'US', 'United States'), +('205.205.105.16', '205.205.113.127', 2147483647, 2147483647, 'CA', 'Canada'), +('205.205.113.128', '205.205.113.255', 2147483647, 2147483647, 'US', 'United States'), +('205.205.114.0', '205.205.135.231', 2147483647, 2147483647, 'CA', 'Canada'), +('205.205.135.232', '205.205.135.239', 2147483647, 2147483647, 'US', 'United States'), +('205.205.135.240', '205.205.179.255', 2147483647, 2147483647, 'CA', 'Canada'), +('205.205.180.0', '205.205.181.255', 2147483647, 2147483647, 'US', 'United States'), +('205.205.182.0', '205.205.212.95', 2147483647, 2147483647, 'CA', 'Canada'), +('205.205.212.96', '205.205.212.103', 2147483647, 2147483647, 'US', 'United States'), +('205.205.212.104', '205.205.212.167', 2147483647, 2147483647, 'CA', 'Canada'), +('205.205.212.168', '205.205.212.183', 2147483647, 2147483647, 'US', 'United States'), +('205.205.212.184', '205.205.212.207', 2147483647, 2147483647, 'CA', 'Canada'), +('205.205.212.208', '205.205.212.215', 2147483647, 2147483647, 'US', 'United States'), +('205.205.212.216', '205.205.235.255', 2147483647, 2147483647, 'CA', 'Canada'), +('205.205.236.0', '205.205.236.31', 2147483647, 2147483647, 'US', 'United States'), +('205.205.236.32', '205.207.73.255', 2147483647, 2147483647, 'CA', 'Canada'), +('205.207.74.0', '205.207.74.255', 2147483647, 2147483647, 'US', 'United States'), +('205.207.75.0', '205.207.99.255', 2147483647, 2147483647, 'CA', 'Canada'), +('205.207.100.0', '205.207.107.255', 2147483647, 2147483647, 'US', 'United States'), +('205.207.110.0', '205.207.154.255', 2147483647, 2147483647, 'CA', 'Canada'), +('205.207.155.0', '205.207.159.255', 2147483647, 2147483647, 'US', 'United States'), +('205.207.160.0', '205.207.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('205.208.0.0', '205.208.255.255', 2147483647, 2147483647, 'US', 'United States'), +('205.209.0.0', '205.209.8.255', 2147483647, 2147483647, 'CA', 'Canada'), +('205.209.12.0', '205.209.23.255', 2147483647, 2147483647, 'US', 'United States'), +('205.209.24.0', '205.209.24.255', 2147483647, 2147483647, 'CA', 'Canada'), +('205.209.25.0', '205.209.50.63', 2147483647, 2147483647, 'US', 'United States'), +('205.209.50.64', '205.209.50.79', 2147483647, 2147483647, 'AU', 'Australia'), +('205.209.50.80', '205.209.50.95', 2147483647, 2147483647, 'US', 'United States'), +('205.209.50.96', '205.209.50.111', 2147483647, 2147483647, 'CA', 'Canada'), +('205.209.50.112', '205.209.51.143', 2147483647, 2147483647, 'US', 'United States'), +('205.209.51.144', '205.209.51.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('205.209.51.160', '205.209.255.255', 2147483647, 2147483647, 'US', 'United States'), +('205.210.0.0', '205.210.35.255', 2147483647, 2147483647, 'CA', 'Canada'), +('205.210.36.0', '205.210.36.255', 2147483647, 2147483647, 'US', 'United States'), +('205.210.37.0', '205.210.185.255', 2147483647, 2147483647, 'CA', 'Canada'), +('205.210.188.0', '205.210.191.255', 2147483647, 2147483647, 'US', 'United States'), +('205.210.192.0', '205.210.223.255', 2147483647, 2147483647, 'CA', 'Canada'), +('205.210.224.0', '205.210.224.255', 2147483647, 2147483647, 'US', 'United States'), +('205.210.225.0', '205.211.7.255', 2147483647, 2147483647, 'CA', 'Canada'), +('205.211.8.0', '205.211.9.255', 2147483647, 2147483647, 'BM', 'Bermuda'), +('205.211.10.0', '205.211.191.255', 2147483647, 2147483647, 'CA', 'Canada'), +('205.211.192.0', '205.211.195.255', 2147483647, 2147483647, 'HN', 'Honduras'), +('205.211.196.0', '205.211.196.255', 2147483647, 2147483647, 'NI', 'Nicaragua'), +('205.211.197.0', '205.211.199.255', 2147483647, 2147483647, 'HN', 'Honduras'), +('205.211.200.0', '205.211.200.255', 2147483647, 2147483647, 'NI', 'Nicaragua'), +('205.211.201.0', '205.211.203.255', 2147483647, 2147483647, 'HN', 'Honduras'), +('205.211.204.0', '205.211.204.255', 2147483647, 2147483647, 'US', 'United States'), +('205.211.205.0', '205.211.206.255', 2147483647, 2147483647, 'HN', 'Honduras'), +('205.211.207.0', '205.211.207.255', 2147483647, 2147483647, 'SV', 'El Salvador'), +('205.211.208.0', '205.211.217.255', 2147483647, 2147483647, 'CR', 'Costa Rica'), +('205.211.218.0', '205.211.223.255', 2147483647, 2147483647, 'HN', 'Honduras'), +('205.211.224.0', '205.211.225.255', 2147483647, 2147483647, 'GT', 'Guatemala'), +('205.211.226.0', '205.211.228.255', 2147483647, 2147483647, 'SV', 'El Salvador'), +('205.211.229.0', '205.211.232.255', 2147483647, 2147483647, 'CR', 'Costa Rica'), +('205.211.233.0', '205.211.235.255', 2147483647, 2147483647, 'SV', 'El Salvador'), +('205.211.236.0', '205.211.241.255', 2147483647, 2147483647, 'CR', 'Costa Rica'), +('205.211.242.0', '205.211.242.255', 2147483647, 2147483647, 'US', 'United States'), +('205.211.243.0', '205.211.243.255', 2147483647, 2147483647, 'SV', 'El Salvador'), +('205.211.244.0', '205.211.246.255', 2147483647, 2147483647, 'US', 'United States'), +('205.211.247.0', '205.211.255.255', 2147483647, 2147483647, 'HN', 'Honduras'), +('205.212.0.0', '205.212.71.255', 2147483647, 2147483647, 'US', 'United States'), +('205.212.72.0', '205.212.78.255', 2147483647, 2147483647, 'A1', 'Anonymous Proxy'), +('205.212.79.0', '205.214.64.215', 2147483647, 2147483647, 'US', 'United States'), +('205.214.64.216', '205.214.64.239', 2147483647, 2147483647, 'CA', 'Canada'), +('205.214.64.240', '205.214.65.79', 2147483647, 2147483647, 'US', 'United States'), +('205.214.65.80', '205.214.65.95', 2147483647, 2147483647, 'CA', 'Canada'), +('205.214.65.96', '205.214.67.55', 2147483647, 2147483647, 'US', 'United States'), +('205.214.67.56', '205.214.67.63', 2147483647, 2147483647, 'CA', 'Canada'), +('205.214.67.64', '205.214.67.79', 2147483647, 2147483647, 'US', 'United States'), +('205.214.67.80', '205.214.67.87', 2147483647, 2147483647, 'MY', 'Malaysia'), +('205.214.67.88', '205.214.68.71', 2147483647, 2147483647, 'US', 'United States'), +('205.214.68.72', '205.214.68.79', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('205.214.68.80', '205.214.68.247', 2147483647, 2147483647, 'US', 'United States'), +('205.214.68.248', '205.214.69.15', 2147483647, 2147483647, 'CA', 'Canada'), +('205.214.69.16', '205.214.69.23', 2147483647, 2147483647, 'US', 'United States'), +('205.214.69.24', '205.214.69.31', 2147483647, 2147483647, 'CA', 'Canada'), +('205.214.69.32', '205.214.69.119', 2147483647, 2147483647, 'US', 'United States'), +('205.214.69.120', '205.214.69.135', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('205.214.69.136', '205.214.69.159', 2147483647, 2147483647, 'US', 'United States'), +('205.214.69.160', '205.214.69.167', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('205.214.69.168', '205.214.69.183', 2147483647, 2147483647, 'US', 'United States'), +('205.214.69.184', '205.214.69.191', 2147483647, 2147483647, 'JP', 'Japan'), +('205.214.69.192', '205.214.70.63', 2147483647, 2147483647, 'US', 'United States'), +('205.214.70.64', '205.214.70.71', 2147483647, 2147483647, 'AT', 'Austria'), +('205.214.70.72', '205.214.70.79', 2147483647, 2147483647, 'CA', 'Canada'), +('205.214.70.80', '205.214.70.143', 2147483647, 2147483647, 'US', 'United States'), +('205.214.70.144', '205.214.70.159', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('205.214.70.160', '205.214.71.23', 2147483647, 2147483647, 'US', 'United States'), +('205.214.71.24', '205.214.71.31', 2147483647, 2147483647, 'JP', 'Japan'), +('205.214.71.32', '205.214.71.39', 2147483647, 2147483647, 'CH', 'Switzerland'), +('205.214.71.40', '205.214.71.71', 2147483647, 2147483647, 'US', 'United States'), +('205.214.71.72', '205.214.71.87', 2147483647, 2147483647, 'CA', 'Canada'), +('205.214.71.88', '205.214.71.103', 2147483647, 2147483647, 'US', 'United States'), +('205.214.71.104', '205.214.71.111', 2147483647, 2147483647, 'PT', 'Portugal'), +('205.214.71.112', '205.214.71.127', 2147483647, 2147483647, 'US', 'United States'), +('205.214.71.128', '205.214.71.167', 2147483647, 2147483647, 'CA', 'Canada'), +('205.214.71.168', '205.214.71.255', 2147483647, 2147483647, 'US', 'United States'), +('205.214.72.0', '205.214.72.23', 2147483647, 2147483647, 'UA', 'Ukraine'), +('205.214.72.24', '205.214.72.119', 2147483647, 2147483647, 'US', 'United States'), +('205.214.72.120', '205.214.72.127', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('205.214.72.128', '205.214.72.135', 2147483647, 2147483647, 'LB', 'Lebanon'), +('205.214.72.136', '205.214.73.39', 2147483647, 2147483647, 'US', 'United States'), +('205.214.73.40', '205.214.73.55', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('205.214.73.56', '205.214.73.63', 2147483647, 2147483647, 'OM', 'Oman'), +('205.214.73.64', '205.214.73.95', 2147483647, 2147483647, 'US', 'United States'), +('205.214.73.96', '205.214.73.103', 2147483647, 2147483647, 'AE', 'United Arab Emirates'), +('205.214.73.104', '205.214.73.111', 2147483647, 2147483647, 'US', 'United States'), +('205.214.73.112', '205.214.73.119', 2147483647, 2147483647, 'LB', 'Lebanon'), +('205.214.73.120', '205.214.74.23', 2147483647, 2147483647, 'US', 'United States'), +('205.214.74.24', '205.214.74.39', 2147483647, 2147483647, 'IN', 'India'), +('205.214.74.40', '205.214.74.47', 2147483647, 2147483647, 'US', 'United States'), +('205.214.74.48', '205.214.74.63', 2147483647, 2147483647, 'IN', 'India'), +('205.214.74.64', '205.214.74.79', 2147483647, 2147483647, 'US', 'United States'), +('205.214.74.80', '205.214.74.95', 2147483647, 2147483647, 'IN', 'India'), +('205.214.74.96', '205.214.74.167', 2147483647, 2147483647, 'US', 'United States'), +('205.214.74.168', '205.214.74.199', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('205.214.74.200', '205.214.74.207', 2147483647, 2147483647, 'US', 'United States'), +('205.214.74.208', '205.214.74.215', 2147483647, 2147483647, 'PH', 'Philippines'), +('205.214.74.216', '205.214.75.55', 2147483647, 2147483647, 'US', 'United States'), +('205.214.75.56', '205.214.75.87', 2147483647, 2147483647, 'CA', 'Canada'), +('205.214.75.88', '205.214.80.55', 2147483647, 2147483647, 'US', 'United States'), +('205.214.80.56', '205.214.80.63', 2147483647, 2147483647, 'AT', 'Austria'), +('205.214.80.64', '205.214.80.87', 2147483647, 2147483647, 'US', 'United States'), +('205.214.80.88', '205.214.80.95', 2147483647, 2147483647, 'CA', 'Canada'), +('205.214.80.96', '205.214.80.103', 2147483647, 2147483647, 'US', 'United States'), +('205.214.80.104', '205.214.80.119', 2147483647, 2147483647, 'PH', 'Philippines'), +('205.214.80.120', '205.214.80.127', 2147483647, 2147483647, 'CY', 'Cyprus'), +('205.214.80.128', '205.214.80.175', 2147483647, 2147483647, 'US', 'United States'), +('205.214.80.176', '205.214.80.183', 2147483647, 2147483647, 'CA', 'Canada'), +('205.214.80.184', '205.214.81.71', 2147483647, 2147483647, 'US', 'United States'), +('205.214.81.72', '205.214.81.87', 2147483647, 2147483647, 'PH', 'Philippines'), +('205.214.81.88', '205.214.81.95', 2147483647, 2147483647, 'US', 'United States'), +('205.214.81.96', '205.214.81.103', 2147483647, 2147483647, 'CA', 'Canada'), +('205.214.81.104', '205.214.81.151', 2147483647, 2147483647, 'US', 'United States'), +('205.214.81.152', '205.214.81.159', 2147483647, 2147483647, 'UA', 'Ukraine'), +('205.214.81.160', '205.214.81.207', 2147483647, 2147483647, 'US', 'United States'), +('205.214.81.208', '205.214.81.215', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('205.214.81.216', '205.214.82.7', 2147483647, 2147483647, 'US', 'United States'), +('205.214.82.8', '205.214.82.23', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('205.214.82.24', '205.214.82.47', 2147483647, 2147483647, 'US', 'United States'), +('205.214.82.48', '205.214.82.71', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('205.214.82.72', '205.214.82.119', 2147483647, 2147483647, 'US', 'United States'), +('205.214.82.120', '205.214.82.159', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('205.214.82.160', '205.214.82.167', 2147483647, 2147483647, 'TH', 'Thailand'), +('205.214.82.168', '205.214.82.191', 2147483647, 2147483647, 'US', 'United States'), +('205.214.82.192', '205.214.82.215', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('205.214.82.216', '205.214.82.239', 2147483647, 2147483647, 'US', 'United States'), +('205.214.82.240', '205.214.83.7', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('205.214.83.8', '205.214.83.23', 2147483647, 2147483647, 'US', 'United States'), +('205.214.83.24', '205.214.83.31', 2147483647, 2147483647, 'IN', 'India'), +('205.214.83.32', '205.214.83.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('205.214.83.48', '205.214.83.87', 2147483647, 2147483647, 'TK', 'Tokelau'), +('205.214.83.88', '205.214.83.111', 2147483647, 2147483647, 'US', 'United States'), +('205.214.83.112', '205.214.83.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('205.214.83.144', '205.214.83.151', 2147483647, 2147483647, 'US', 'United States'), +('205.214.83.152', '205.214.83.175', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('205.214.83.176', '205.214.83.183', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('205.214.83.184', '205.214.83.215', 2147483647, 2147483647, 'FR', 'France'), +('205.214.83.216', '205.214.83.255', 2147483647, 2147483647, 'AU', 'Australia'), +('205.214.84.0', '205.214.84.63', 2147483647, 2147483647, 'US', 'United States'), +('205.214.84.64', '205.214.84.71', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('205.214.84.72', '205.214.84.87', 2147483647, 2147483647, 'US', 'United States'), +('205.214.84.88', '205.214.84.95', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('205.214.84.96', '205.214.84.103', 2147483647, 2147483647, 'US', 'United States'), +('205.214.84.104', '205.214.84.111', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('205.214.84.112', '205.214.84.151', 2147483647, 2147483647, 'US', 'United States'), +('205.214.84.152', '205.214.84.159', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('205.214.84.160', '205.214.85.39', 2147483647, 2147483647, 'US', 'United States'), +('205.214.85.40', '205.214.85.47', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('205.214.85.48', '205.214.85.63', 2147483647, 2147483647, 'US', 'United States'), +('205.214.85.64', '205.214.85.143', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('205.214.85.144', '205.214.85.255', 2147483647, 2147483647, 'US', 'United States'), +('205.214.86.0', '205.214.86.255', 2147483647, 2147483647, 'CA', 'Canada'), +('205.214.87.0', '205.214.88.23', 2147483647, 2147483647, 'US', 'United States'), +('205.214.88.24', '205.214.88.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('205.214.88.32', '205.214.88.207', 2147483647, 2147483647, 'US', 'United States'), +('205.214.88.208', '205.214.88.215', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('205.214.88.216', '205.214.88.231', 2147483647, 2147483647, 'US', 'United States'), +('205.214.88.232', '205.214.88.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('205.214.88.240', '205.214.88.247', 2147483647, 2147483647, 'UA', 'Ukraine'), +('205.214.88.248', '205.214.89.15', 2147483647, 2147483647, 'US', 'United States'), +('205.214.89.16', '205.214.89.23', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('205.214.89.24', '205.214.89.55', 2147483647, 2147483647, 'US', 'United States'), +('205.214.89.56', '205.214.89.63', 2147483647, 2147483647, 'AU', 'Australia'), +('205.214.89.64', '205.214.89.71', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('205.214.89.72', '205.214.89.79', 2147483647, 2147483647, 'US', 'United States'), +('205.214.89.80', '205.214.89.119', 2147483647, 2147483647, 'KW', 'Kuwait'), +('205.214.89.120', '205.214.89.151', 2147483647, 2147483647, 'US', 'United States'), +('205.214.89.152', '205.214.89.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('205.214.89.160', '205.214.89.183', 2147483647, 2147483647, 'US', 'United States'), +('205.214.89.184', '205.214.89.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('205.214.89.192', '205.214.89.207', 2147483647, 2147483647, 'US', 'United States'), +('205.214.89.208', '205.214.89.215', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('205.214.89.216', '205.214.90.7', 2147483647, 2147483647, 'US', 'United States'), +('205.214.90.8', '205.214.90.15', 2147483647, 2147483647, 'CA', 'Canada'), +('205.214.90.16', '205.214.90.135', 2147483647, 2147483647, 'US', 'United States'), +('205.214.90.136', '205.214.90.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('205.214.90.144', '205.214.90.159', 2147483647, 2147483647, 'US', 'United States'), +('205.214.90.160', '205.214.90.167', 2147483647, 2147483647, 'AU', 'Australia'), +('205.214.90.168', '205.214.91.39', 2147483647, 2147483647, 'US', 'United States'), +('205.214.91.40', '205.214.91.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('205.214.91.48', '205.214.92.71', 2147483647, 2147483647, 'US', 'United States'), +('205.214.92.72', '205.214.92.79', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('205.214.92.80', '205.214.92.135', 2147483647, 2147483647, 'US', 'United States'), +('205.214.92.136', '205.214.92.143', 2147483647, 2147483647, 'NL', 'Netherlands'), +('205.214.92.144', '205.214.93.23', 2147483647, 2147483647, 'US', 'United States'), +('205.214.93.24', '205.214.93.31', 2147483647, 2147483647, 'HN', 'Honduras'), +('205.214.93.32', '205.214.93.95', 2147483647, 2147483647, 'US', 'United States'), +('205.214.93.96', '205.214.93.111', 2147483647, 2147483647, 'CA', 'Canada'), +('205.214.93.112', '205.214.93.207', 2147483647, 2147483647, 'US', 'United States'), +('205.214.93.208', '205.214.93.215', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('205.214.93.216', '205.214.93.223', 2147483647, 2147483647, 'US', 'United States'), +('205.214.93.224', '205.214.93.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('205.214.93.240', '205.214.93.255', 2147483647, 2147483647, 'US', 'United States'), +('205.214.94.0', '205.214.94.7', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('205.214.94.8', '205.214.94.95', 2147483647, 2147483647, 'US', 'United States'), +('205.214.94.96', '205.214.94.103', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('205.214.94.104', '205.214.94.223', 2147483647, 2147483647, 'US', 'United States'), +('205.214.94.224', '205.214.94.231', 2147483647, 2147483647, 'DK', 'Denmark'), +('205.214.94.232', '205.214.95.199', 2147483647, 2147483647, 'US', 'United States'), +('205.214.95.200', '205.214.95.207', 2147483647, 2147483647, 'BE', 'Belgium'), +('205.214.95.208', '205.214.95.215', 2147483647, 2147483647, 'CA', 'Canada'), +('205.214.95.216', '205.214.95.231', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('205.214.95.232', '205.214.191.255', 2147483647, 2147483647, 'US', 'United States'), +('205.214.192.0', '205.214.202.255', 2147483647, 2147483647, 'BB', 'Barbados'), +('205.214.203.0', '205.214.203.255', 2147483647, 2147483647, 'KN', 'Saint Kitts and Nevis'), +('205.214.204.0', '205.214.204.255', 2147483647, 2147483647, 'TC', 'Turks and Caicos Islands'), +('205.214.205.0', '205.214.206.255', 2147483647, 2147483647, 'VC', 'Saint Vincent and the Grenadines'), +('205.214.207.0', '205.214.207.255', 2147483647, 2147483647, 'GD', 'Grenada'), +('205.214.208.0', '205.214.209.255', 2147483647, 2147483647, 'BB', 'Barbados'), +('205.214.210.0', '205.214.211.255', 2147483647, 2147483647, 'GD', 'Grenada'), +('205.214.212.0', '205.214.214.255', 2147483647, 2147483647, 'BB', 'Barbados'), +('205.214.215.0', '205.214.216.255', 2147483647, 2147483647, 'KN', 'Saint Kitts and Nevis'), +('205.214.217.0', '205.214.223.255', 2147483647, 2147483647, 'BB', 'Barbados'), +('205.214.224.0', '205.217.4.223', 2147483647, 2147483647, 'US', 'United States'), +('205.217.4.224', '205.217.5.7', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('205.217.5.8', '205.217.5.23', 2147483647, 2147483647, 'US', 'United States'), +('205.217.5.24', '205.217.5.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('205.217.5.32', '205.217.5.63', 2147483647, 2147483647, 'US', 'United States'), +('205.217.5.64', '205.217.5.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('205.217.5.96', '205.217.5.167', 2147483647, 2147483647, 'US', 'United States'), +('205.217.5.168', '205.217.5.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('205.217.5.176', '205.217.7.15', 2147483647, 2147483647, 'US', 'United States'), +('205.217.7.16', '205.217.7.23', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('205.217.7.24', '205.217.7.71', 2147483647, 2147483647, 'US', 'United States'), +('205.217.7.72', '205.217.7.79', 2147483647, 2147483647, 'IE', 'Ireland'), +('205.217.7.80', '205.217.7.87', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('205.217.7.88', '205.217.7.127', 2147483647, 2147483647, 'US', 'United States'), +('205.217.7.128', '205.217.7.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('205.217.8.0', '205.217.8.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('205.217.9.0', '205.217.9.255', 2147483647, 2147483647, 'US', 'United States'), +('205.217.10.0', '205.217.10.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('205.217.11.0', '205.217.11.223', 2147483647, 2147483647, 'US', 'United States'), +('205.217.11.224', '205.217.11.231', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('205.217.11.232', '205.217.12.255', 2147483647, 2147483647, 'US', 'United States'), +('205.217.13.0', '205.217.13.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('205.217.13.64', '205.217.13.143', 2147483647, 2147483647, 'US', 'United States'), +('205.217.13.144', '205.217.13.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('205.217.13.176', '205.217.223.255', 2147483647, 2147483647, 'US', 'United States'), +('205.217.224.0', '205.217.255.255', 2147483647, 2147483647, 'AG', 'Antigua and Barbuda'), +('205.218.0.0', '205.223.231.69', 2147483647, 2147483647, 'US', 'United States'), +('205.223.231.70', '205.223.231.70', 2147483647, 2147483647, 'ES', 'Spain'), +('205.223.231.71', '205.223.239.5', 2147483647, 2147483647, 'US', 'United States'), +('205.223.239.6', '205.223.239.6', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('205.223.239.7', '205.230.131.255', 2147483647, 2147483647, 'US', 'United States'), +('205.230.132.0', '205.230.132.255', 2147483647, 2147483647, 'GU', 'Guam'), +('205.230.133.0', '205.231.115.255', 2147483647, 2147483647, 'US', 'United States'), +('205.231.116.0', '205.231.119.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('205.231.120.0', '205.232.255.255', 2147483647, 2147483647, 'US', 'United States'), +('205.233.0.0', '205.233.7.255', 2147483647, 2147483647, 'CA', 'Canada'), +('205.233.8.0', '205.233.15.255', 2147483647, 2147483647, 'US', 'United States'), +('205.233.16.0', '205.233.21.255', 2147483647, 2147483647, 'CA', 'Canada'), +('205.233.22.0', '205.233.31.255', 2147483647, 2147483647, 'US', 'United States'), +('205.233.32.0', '205.233.34.255', 2147483647, 2147483647, 'CA', 'Canada'), +('205.233.35.0', '205.233.35.255', 2147483647, 2147483647, 'US', 'United States'), +('205.233.36.0', '205.233.39.255', 2147483647, 2147483647, 'CA', 'Canada'), +('205.233.40.0', '205.233.47.255', 2147483647, 2147483647, 'US', 'United States'), +('205.233.48.0', '205.233.75.255', 2147483647, 2147483647, 'CA', 'Canada'), +('205.233.76.0', '205.233.79.255', 2147483647, 2147483647, 'US', 'United States'), +('205.233.80.0', '205.233.139.255', 2147483647, 2147483647, 'CA', 'Canada'), +('205.233.140.0', '205.233.143.255', 2147483647, 2147483647, 'US', 'United States'), +('205.233.144.0', '205.233.146.255', 2147483647, 2147483647, 'CA', 'Canada'), +('205.233.147.0', '205.233.147.255', 2147483647, 2147483647, 'US', 'United States'), +('205.233.148.0', '205.233.243.255', 2147483647, 2147483647, 'CA', 'Canada'), +('205.233.244.0', '205.233.247.255', 2147483647, 2147483647, 'US', 'United States'), +('205.233.248.0', '205.233.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('205.234.0.0', '205.234.31.255', 2147483647, 2147483647, 'US', 'United States'), +('205.234.32.0', '205.234.63.255', 2147483647, 2147483647, 'CA', 'Canada'), +('205.234.64.0', '205.234.133.71', 2147483647, 2147483647, 'US', 'United States'), +('205.234.133.72', '205.234.133.87', 2147483647, 2147483647, 'CA', 'Canada'), +('205.234.133.88', '205.234.133.135', 2147483647, 2147483647, 'US', 'United States'), +('205.234.133.136', '205.234.133.143', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('205.234.133.144', '205.234.150.31', 2147483647, 2147483647, 'US', 'United States'), +('205.234.150.32', '205.234.150.39', 2147483647, 2147483647, 'IN', 'India'), +('205.234.150.40', '205.234.150.151', 2147483647, 2147483647, 'US', 'United States'), +('205.234.150.152', '205.234.150.159', 2147483647, 2147483647, 'CA', 'Canada'), +('205.234.150.160', '205.234.157.255', 2147483647, 2147483647, 'US', 'United States'), +('205.234.158.0', '205.234.158.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('205.234.158.64', '205.234.172.191', 2147483647, 2147483647, 'US', 'United States'), +('205.234.172.192', '205.234.172.255', 2147483647, 2147483647, 'IN', 'India'), +('205.234.173.0', '205.234.179.23', 2147483647, 2147483647, 'US', 'United States'), +('205.234.179.24', '205.234.179.31', 2147483647, 2147483647, 'SO', 'Somalia'), +('205.234.179.32', '205.234.179.143', 2147483647, 2147483647, 'US', 'United States'), +('205.234.179.144', '205.234.179.151', 2147483647, 2147483647, 'IN', 'India'), +('205.234.179.152', '205.234.182.191', 2147483647, 2147483647, 'US', 'United States'), +('205.234.182.192', '205.234.182.223', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('205.234.182.224', '205.234.206.111', 2147483647, 2147483647, 'US', 'United States'), +('205.234.206.112', '205.234.206.119', 2147483647, 2147483647, 'CA', 'Canada'), +('205.234.206.120', '205.234.210.159', 2147483647, 2147483647, 'US', 'United States'), +('205.234.210.160', '205.234.210.191', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('205.234.210.192', '205.234.211.47', 2147483647, 2147483647, 'US', 'United States'), +('205.234.211.48', '205.234.211.55', 2147483647, 2147483647, 'EG', 'Egypt'), +('205.234.211.56', '205.234.211.63', 2147483647, 2147483647, 'BE', 'Belgium'), +('205.234.211.64', '205.234.211.239', 2147483647, 2147483647, 'US', 'United States'), +('205.234.211.240', '205.234.211.247', 2147483647, 2147483647, 'TR', 'Turkey'), +('205.234.211.248', '205.234.220.159', 2147483647, 2147483647, 'US', 'United States'), +('205.234.220.160', '205.234.220.167', 2147483647, 2147483647, 'EG', 'Egypt'), +('205.234.220.168', '205.234.238.127', 2147483647, 2147483647, 'US', 'United States'), +('205.234.238.128', '205.234.238.135', 2147483647, 2147483647, 'DE', 'Germany'), +('205.234.238.136', '205.234.241.231', 2147483647, 2147483647, 'US', 'United States'), +('205.234.241.232', '205.234.241.239', 2147483647, 2147483647, 'NL', 'Netherlands'), +('205.234.241.240', '205.234.246.119', 2147483647, 2147483647, 'US', 'United States'), +('205.234.246.120', '205.234.246.127', 2147483647, 2147483647, 'CA', 'Canada'), +('205.234.246.128', '205.234.255.255', 2147483647, 2147483647, 'US', 'United States'), +('205.235.0.0', '205.235.7.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('205.235.8.0', '205.235.255.255', 2147483647, 2147483647, 'US', 'United States'), +('205.236.0.0', '205.236.50.255', 2147483647, 2147483647, 'CA', 'Canada'), +('205.236.51.0', '205.236.51.255', 2147483647, 2147483647, 'US', 'United States'), +('205.236.52.0', '205.236.74.255', 2147483647, 2147483647, 'CA', 'Canada'), +('205.236.75.0', '205.236.75.255', 2147483647, 2147483647, 'US', 'United States'), +('205.236.76.0', '205.236.77.255', 2147483647, 2147483647, 'CA', 'Canada'), +('205.236.80.0', '205.237.87.255', 2147483647, 2147483647, 'CA', 'Canada'), +('205.237.88.0', '205.237.207.255', 2147483647, 2147483647, 'US', 'United States'), +('205.237.208.0', '205.237.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('205.238.0.0', '205.240.151.255', 2147483647, 2147483647, 'US', 'United States'), +('205.240.152.0', '205.240.155.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('205.240.156.0', '205.240.199.255', 2147483647, 2147483647, 'US', 'United States'), +('205.240.200.0', '205.240.207.255', 2147483647, 2147483647, 'HN', 'Honduras'), +('205.240.208.0', '205.240.223.255', 2147483647, 2147483647, 'SR', 'Suriname'), +('205.240.224.0', '205.240.253.191', 2147483647, 2147483647, 'US', 'United States'), +('205.240.253.192', '205.240.253.199', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('205.240.253.200', '205.241.11.255', 2147483647, 2147483647, 'US', 'United States'), +('205.241.12.0', '205.241.12.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('205.241.13.0', '205.241.33.255', 2147483647, 2147483647, 'US', 'United States'), +('205.241.34.0', '205.241.39.255', 2147483647, 2147483647, 'BO', 'Bolivia'), +('205.241.40.0', '205.242.208.167', 2147483647, 2147483647, 'US', 'United States'), +('205.242.208.168', '205.242.208.175', 2147483647, 2147483647, 'CA', 'Canada'), +('205.242.208.176', '205.242.218.47', 2147483647, 2147483647, 'US', 'United States'), +('205.242.218.48', '205.242.218.55', 2147483647, 2147483647, 'CA', 'Canada'), +('205.242.218.56', '205.243.255.255', 2147483647, 2147483647, 'US', 'United States'), +('205.244.0.0', '205.244.7.255', 2147483647, 2147483647, 'FR', 'France'), +('205.244.8.0', '205.244.31.255', 2147483647, 2147483647, 'US', 'United States'), +('205.244.32.0', '205.244.35.255', 2147483647, 2147483647, 'DO', 'Dominican Republic'), +('205.244.36.0', '205.244.41.255', 2147483647, 2147483647, 'US', 'United States'), +('205.244.42.0', '205.244.43.255', 2147483647, 2147483647, 'ES', 'Spain'), +('205.244.44.0', '205.244.53.255', 2147483647, 2147483647, 'US', 'United States'), +('205.244.54.0', '205.244.55.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('205.244.56.0', '205.244.152.255', 2147483647, 2147483647, 'US', 'United States'), +('205.244.153.0', '205.244.153.255', 2147483647, 2147483647, 'ES', 'Spain'), +('205.244.154.0', '205.244.158.159', 2147483647, 2147483647, 'US', 'United States'), +('205.244.158.160', '205.244.158.175', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('205.244.158.176', '205.245.127.255', 2147483647, 2147483647, 'US', 'United States'), +('205.245.128.0', '205.245.129.255', 2147483647, 2147483647, 'KY', 'Cayman Islands'), +('205.245.130.0', '205.245.139.255', 2147483647, 2147483647, 'US', 'United States'), +('205.245.140.0', '205.245.141.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('205.245.142.0', '205.247.137.255', 2147483647, 2147483647, 'US', 'United States'), +('205.247.138.0', '205.247.138.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('205.247.139.0', '205.247.192.255', 2147483647, 2147483647, 'US', 'United States'), +('205.247.193.0', '205.247.193.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('205.247.194.0', '205.247.255.255', 2147483647, 2147483647, 'US', 'United States'), +('205.248.0.0', '205.248.5.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('205.248.6.0', '205.248.7.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('205.248.8.0', '205.248.9.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('205.248.10.0', '205.248.23.255', 2147483647, 2147483647, 'US', 'United States'), +('205.248.24.0', '205.248.25.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('205.248.26.0', '205.248.26.255', 2147483647, 2147483647, 'FR', 'France'), +('205.248.27.0', '205.248.27.255', 2147483647, 2147483647, 'US', 'United States'), +('205.248.28.0', '205.248.28.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('205.248.29.0', '205.248.36.255', 2147483647, 2147483647, 'US', 'United States'), +('205.248.37.0', '205.248.37.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('205.248.38.0', '205.248.38.255', 2147483647, 2147483647, 'US', 'United States'), +('205.248.39.0', '205.248.39.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('205.248.40.0', '205.248.40.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('205.248.41.0', '205.248.46.255', 2147483647, 2147483647, 'US', 'United States'), +('205.248.47.0', '205.248.47.255', 2147483647, 2147483647, 'DE', 'Germany'), +('205.248.48.0', '205.248.48.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('205.248.49.0', '205.248.49.255', 2147483647, 2147483647, 'DE', 'Germany'), +('205.248.50.0', '205.248.51.255', 2147483647, 2147483647, 'US', 'United States'), +('205.248.52.0', '205.248.52.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('205.248.53.0', '205.248.53.255', 2147483647, 2147483647, 'FR', 'France'), +('205.248.54.0', '205.248.55.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('205.248.56.0', '205.248.56.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('205.248.57.0', '205.248.58.255', 2147483647, 2147483647, 'US', 'United States'), +('205.248.59.0', '205.248.59.255', 2147483647, 2147483647, 'FR', 'France'), +('205.248.60.0', '205.248.64.255', 2147483647, 2147483647, 'US', 'United States'), +('205.248.65.0', '205.248.65.255', 2147483647, 2147483647, 'NO', 'Norway'), +('205.248.66.0', '205.248.66.255', 2147483647, 2147483647, 'US', 'United States'), +('205.248.67.0', '205.248.67.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('205.248.68.0', '205.248.69.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('205.248.70.0', '205.248.71.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('205.248.72.0', '205.248.72.255', 2147483647, 2147483647, 'US', 'United States'), +('205.248.73.0', '205.248.73.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('205.248.74.0', '205.248.74.255', 2147483647, 2147483647, 'US', 'United States'), +('205.248.75.0', '205.248.76.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('205.248.77.0', '205.248.77.255', 2147483647, 2147483647, 'US', 'United States'), +('205.248.78.0', '205.248.79.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('205.248.80.0', '205.248.129.255', 2147483647, 2147483647, 'US', 'United States'), +('205.248.130.0', '205.248.132.255', 2147483647, 2147483647, 'JP', 'Japan'), +('205.248.133.0', '205.248.133.255', 2147483647, 2147483647, 'US', 'United States'), +('205.248.134.0', '205.248.134.255', 2147483647, 2147483647, 'CA', 'Canada'), +('205.248.135.0', '205.248.136.255', 2147483647, 2147483647, 'US', 'United States'), +('205.248.137.0', '205.248.143.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('205.248.144.0', '205.248.144.191', 2147483647, 2147483647, 'US', 'United States'), +('205.248.144.192', '205.248.144.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('205.248.145.0', '205.248.146.255', 2147483647, 2147483647, 'US', 'United States'), +('205.248.147.0', '205.248.147.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('205.248.148.0', '205.248.148.191', 2147483647, 2147483647, 'US', 'United States'), +('205.248.148.192', '205.248.148.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('205.248.149.0', '205.248.153.255', 2147483647, 2147483647, 'US', 'United States'), +('205.248.154.0', '205.248.155.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('205.248.156.0', '205.248.163.255', 2147483647, 2147483647, 'US', 'United States'), +('205.248.164.0', '205.248.164.255', 2147483647, 2147483647, 'FR', 'France'), +('205.248.165.0', '205.248.176.255', 2147483647, 2147483647, 'US', 'United States'), +('205.248.177.0', '205.248.179.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('205.248.180.0', '205.248.180.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('205.248.181.0', '205.248.181.255', 2147483647, 2147483647, 'CA', 'Canada'), +('205.248.182.0', '205.248.189.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('205.248.190.0', '205.248.190.255', 2147483647, 2147483647, 'US', 'United States'), +('205.248.191.0', '205.248.191.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('205.248.192.0', '205.248.196.255', 2147483647, 2147483647, 'ES', 'Spain'), +('205.248.197.0', '205.248.197.255', 2147483647, 2147483647, 'US', 'United States'), +('205.248.198.0', '205.248.199.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('205.248.200.0', '205.248.203.255', 2147483647, 2147483647, 'US', 'United States'), +('205.248.204.0', '205.248.207.255', 2147483647, 2147483647, 'DE', 'Germany'), +('205.248.208.0', '205.248.208.255', 2147483647, 2147483647, 'US', 'United States'), +('205.248.209.0', '205.248.209.255', 2147483647, 2147483647, 'FR', 'France'), +('205.248.210.0', '205.248.210.255', 2147483647, 2147483647, 'DE', 'Germany'), +('205.248.211.0', '205.248.211.255', 2147483647, 2147483647, 'CA', 'Canada'), +('205.248.212.0', '205.248.216.255', 2147483647, 2147483647, 'US', 'United States'), +('205.248.217.0', '205.248.218.255', 2147483647, 2147483647, 'GB', 'United Kingdom'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('205.248.219.0', '205.248.219.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('205.248.220.0', '205.248.223.255', 2147483647, 2147483647, 'US', 'United States'), +('205.248.224.0', '205.248.224.255', 2147483647, 2147483647, 'IT', 'Italy'), +('205.248.225.0', '205.248.225.255', 2147483647, 2147483647, 'US', 'United States'), +('205.248.226.0', '205.248.226.255', 2147483647, 2147483647, 'CA', 'Canada'), +('205.248.227.0', '205.248.227.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('205.248.228.0', '205.248.228.255', 2147483647, 2147483647, 'US', 'United States'), +('205.248.229.0', '205.248.229.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('205.248.230.0', '205.248.230.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('205.248.231.0', '205.248.231.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('205.248.232.0', '205.248.236.255', 2147483647, 2147483647, 'US', 'United States'), +('205.248.237.0', '205.248.237.255', 2147483647, 2147483647, 'FR', 'France'), +('205.248.238.0', '205.248.241.255', 2147483647, 2147483647, 'US', 'United States'), +('205.248.242.0', '205.248.242.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('205.248.243.0', '205.248.244.255', 2147483647, 2147483647, 'US', 'United States'), +('205.248.245.0', '205.248.246.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('205.248.247.0', '205.248.247.255', 2147483647, 2147483647, 'JP', 'Japan'), +('205.248.248.0', '205.248.248.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('205.248.249.0', '205.248.251.255', 2147483647, 2147483647, 'FR', 'France'), +('205.248.252.0', '205.248.252.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('205.248.253.0', '205.248.253.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('205.248.254.0', '205.248.254.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('205.248.255.0', '205.248.255.255', 2147483647, 2147483647, 'IT', 'Italy'), +('205.249.0.0', '205.249.255.255', 2147483647, 2147483647, 'US', 'United States'), +('205.250.0.0', '205.250.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('205.252.0.0', '206.2.255.255', 2147483647, 2147483647, 'US', 'United States'), +('206.3.0.0', '206.3.31.255', 2147483647, 2147483647, 'JP', 'Japan'), +('206.3.32.0', '206.11.255.255', 2147483647, 2147483647, 'US', 'United States'), +('206.12.0.0', '206.12.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.13.0.0', '206.14.63.255', 2147483647, 2147483647, 'US', 'United States'), +('206.14.64.0', '206.14.64.255', 2147483647, 2147483647, 'A1', 'Anonymous Proxy'), +('206.14.65.0', '206.17.100.159', 2147483647, 2147483647, 'US', 'United States'), +('206.17.100.160', '206.17.100.175', 2147483647, 2147483647, 'SE', 'Sweden'), +('206.17.100.176', '206.18.101.191', 2147483647, 2147483647, 'US', 'United States'), +('206.18.101.192', '206.18.101.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('206.18.102.0', '206.22.13.255', 2147483647, 2147483647, 'US', 'United States'), +('206.22.14.0', '206.22.14.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.22.15.0', '206.22.18.255', 2147483647, 2147483647, 'US', 'United States'), +('206.22.19.0', '206.22.20.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.22.21.0', '206.22.22.255', 2147483647, 2147483647, 'US', 'United States'), +('206.22.23.0', '206.22.23.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.22.24.0', '206.22.28.255', 2147483647, 2147483647, 'US', 'United States'), +('206.22.29.0', '206.22.29.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.22.30.0', '206.22.64.255', 2147483647, 2147483647, 'US', 'United States'), +('206.22.65.0', '206.22.65.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.22.66.0', '206.22.104.255', 2147483647, 2147483647, 'US', 'United States'), +('206.22.105.0', '206.22.105.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.22.106.0', '206.22.114.255', 2147483647, 2147483647, 'US', 'United States'), +('206.22.115.0', '206.22.116.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.22.117.0', '206.22.125.255', 2147483647, 2147483647, 'US', 'United States'), +('206.22.126.0', '206.22.126.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.22.127.0', '206.22.133.255', 2147483647, 2147483647, 'US', 'United States'), +('206.22.134.0', '206.22.134.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.22.135.0', '206.22.171.255', 2147483647, 2147483647, 'US', 'United States'), +('206.22.172.0', '206.22.172.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.22.173.0', '206.22.183.255', 2147483647, 2147483647, 'US', 'United States'), +('206.22.184.0', '206.22.185.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.22.186.0', '206.22.188.255', 2147483647, 2147483647, 'US', 'United States'), +('206.22.189.0', '206.22.192.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.22.193.0', '206.22.194.255', 2147483647, 2147483647, 'US', 'United States'), +('206.22.195.0', '206.22.195.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.22.196.0', '206.22.203.255', 2147483647, 2147483647, 'US', 'United States'), +('206.22.204.0', '206.22.204.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.22.205.0', '206.24.17.255', 2147483647, 2147483647, 'US', 'United States'), +('206.24.18.0', '206.24.20.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.24.21.0', '206.24.172.143', 2147483647, 2147483647, 'US', 'United States'), +('206.24.172.144', '206.24.172.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('206.24.172.160', '206.26.192.255', 2147483647, 2147483647, 'US', 'United States'), +('206.26.193.0', '206.26.193.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.26.194.0', '206.26.204.191', 2147483647, 2147483647, 'US', 'United States'), +('206.26.204.192', '206.26.204.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.26.205.0', '206.31.223.255', 2147483647, 2147483647, 'US', 'United States'), +('206.31.224.0', '206.31.227.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('206.31.228.0', '206.40.147.63', 2147483647, 2147483647, 'US', 'United States'), +('206.40.147.64', '206.40.147.127', 2147483647, 2147483647, 'CA', 'Canada'), +('206.40.147.128', '206.41.71.255', 2147483647, 2147483647, 'US', 'United States'), +('206.41.80.0', '206.41.95.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.41.96.0', '206.41.103.255', 2147483647, 2147483647, 'US', 'United States'), +('206.41.112.0', '206.41.117.159', 2147483647, 2147483647, 'US', 'United States'), +('206.41.117.160', '206.41.117.167', 2147483647, 2147483647, 'MY', 'Malaysia'), +('206.41.117.168', '206.41.118.21', 2147483647, 2147483647, 'US', 'United States'), +('206.41.118.22', '206.41.118.37', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('206.41.118.38', '206.41.118.45', 2147483647, 2147483647, 'US', 'United States'), +('206.41.118.46', '206.41.118.53', 2147483647, 2147483647, 'GR', 'Greece'), +('206.41.118.54', '206.41.118.85', 2147483647, 2147483647, 'US', 'United States'), +('206.41.118.86', '206.41.118.101', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('206.41.118.102', '206.41.118.109', 2147483647, 2147483647, 'US', 'United States'), +('206.41.118.110', '206.41.118.133', 2147483647, 2147483647, 'IL', 'Israel'), +('206.41.118.134', '206.41.118.166', 2147483647, 2147483647, 'US', 'United States'), +('206.41.118.167', '206.41.118.182', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('206.41.118.183', '206.41.118.191', 2147483647, 2147483647, 'US', 'United States'), +('206.41.118.192', '206.41.118.199', 2147483647, 2147483647, 'MX', 'Mexico'), +('206.41.118.200', '206.41.118.223', 2147483647, 2147483647, 'US', 'United States'), +('206.41.118.224', '206.41.118.239', 2147483647, 2147483647, 'JP', 'Japan'), +('206.41.118.240', '206.41.118.255', 2147483647, 2147483647, 'US', 'United States'), +('206.41.119.0', '206.41.119.31', 2147483647, 2147483647, 'CA', 'Canada'), +('206.41.119.32', '206.41.119.47', 2147483647, 2147483647, 'JP', 'Japan'), +('206.41.119.48', '206.41.119.151', 2147483647, 2147483647, 'US', 'United States'), +('206.41.119.152', '206.41.119.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('206.41.119.176', '206.41.119.223', 2147483647, 2147483647, 'US', 'United States'), +('206.41.119.224', '206.41.119.247', 2147483647, 2147483647, 'ID', 'Indonesia'), +('206.41.119.248', '206.41.119.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('206.41.120.0', '206.44.255.255', 2147483647, 2147483647, 'US', 'United States'), +('206.45.0.0', '206.45.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.46.0.0', '206.46.255.255', 2147483647, 2147483647, 'US', 'United States'), +('206.47.0.0', '206.47.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.48.0.0', '206.48.17.255', 2147483647, 2147483647, 'US', 'United States'), +('206.48.18.0', '206.48.18.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('206.48.19.0', '206.48.19.255', 2147483647, 2147483647, 'US', 'United States'), +('206.48.20.0', '206.48.23.255', 2147483647, 2147483647, 'AW', 'Aruba'), +('206.48.24.0', '206.48.27.255', 2147483647, 2147483647, 'CL', 'Chile'), +('206.48.28.0', '206.48.48.255', 2147483647, 2147483647, 'US', 'United States'), +('206.48.49.0', '206.48.49.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('206.48.50.0', '206.48.55.255', 2147483647, 2147483647, 'US', 'United States'), +('206.48.56.0', '206.48.56.63', 2147483647, 2147483647, 'AG', 'Antigua and Barbuda'), +('206.48.56.64', '206.48.56.95', 2147483647, 2147483647, 'KN', 'Saint Kitts and Nevis'), +('206.48.56.96', '206.48.58.255', 2147483647, 2147483647, 'AG', 'Antigua and Barbuda'), +('206.48.59.0', '206.48.59.255', 2147483647, 2147483647, 'AI', 'Anguilla'), +('206.48.60.0', '206.48.60.255', 2147483647, 2147483647, 'LC', 'Saint Lucia'), +('206.48.61.0', '206.48.61.255', 2147483647, 2147483647, 'DM', 'Dominica'), +('206.48.62.0', '206.48.63.255', 2147483647, 2147483647, 'AG', 'Antigua and Barbuda'), +('206.48.64.0', '206.48.83.255', 2147483647, 2147483647, 'US', 'United States'), +('206.48.84.0', '206.48.87.255', 2147483647, 2147483647, 'CL', 'Chile'), +('206.48.88.0', '206.48.99.255', 2147483647, 2147483647, 'US', 'United States'), +('206.48.100.0', '206.48.103.255', 2147483647, 2147483647, 'AW', 'Aruba'), +('206.48.104.0', '206.48.128.255', 2147483647, 2147483647, 'US', 'United States'), +('206.48.129.0', '206.48.129.63', 2147483647, 2147483647, 'CL', 'Chile'), +('206.48.129.64', '206.48.129.127', 2147483647, 2147483647, 'US', 'United States'), +('206.48.129.128', '206.48.132.255', 2147483647, 2147483647, 'CL', 'Chile'), +('206.48.133.0', '206.48.138.255', 2147483647, 2147483647, 'US', 'United States'), +('206.48.139.0', '206.48.139.255', 2147483647, 2147483647, 'CL', 'Chile'), +('206.48.140.0', '206.48.147.255', 2147483647, 2147483647, 'US', 'United States'), +('206.48.148.0', '206.48.149.255', 2147483647, 2147483647, 'CL', 'Chile'), +('206.48.150.0', '206.48.167.255', 2147483647, 2147483647, 'US', 'United States'), +('206.48.168.0', '206.48.171.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('206.48.172.0', '206.48.235.255', 2147483647, 2147483647, 'US', 'United States'), +('206.48.236.0', '206.48.236.47', 2147483647, 2147483647, 'MX', 'Mexico'), +('206.48.236.48', '206.48.236.127', 2147483647, 2147483647, 'US', 'United States'), +('206.48.236.128', '206.48.236.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('206.48.237.0', '206.49.31.255', 2147483647, 2147483647, 'US', 'United States'), +('206.49.32.0', '206.49.32.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('206.49.33.0', '206.49.33.255', 2147483647, 2147483647, 'SZ', 'Swaziland'), +('206.49.34.0', '206.49.37.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.49.38.0', '206.49.39.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('206.49.40.0', '206.49.43.255', 2147483647, 2147483647, 'CL', 'Chile'), +('206.49.44.0', '206.49.47.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('206.49.48.0', '206.49.49.255', 2147483647, 2147483647, 'CL', 'Chile'), +('206.49.50.0', '206.49.51.255', 2147483647, 2147483647, 'US', 'United States'), +('206.49.52.0', '206.49.53.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('206.49.54.0', '206.49.57.255', 2147483647, 2147483647, 'PA', 'Panama'), +('206.49.58.0', '206.49.59.255', 2147483647, 2147483647, 'US', 'United States'), +('206.49.60.0', '206.49.61.255', 2147483647, 2147483647, 'PW', 'Palau'), +('206.49.62.0', '206.49.62.255', 2147483647, 2147483647, 'MR', 'Mauritania'), +('206.49.63.0', '206.49.64.255', 2147483647, 2147483647, 'US', 'United States'), +('206.49.65.0', '206.49.65.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.49.66.0', '206.49.68.255', 2147483647, 2147483647, 'US', 'United States'), +('206.49.69.0', '206.49.69.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('206.49.70.0', '206.49.70.255', 2147483647, 2147483647, 'DO', 'Dominican Republic'), +('206.49.71.0', '206.49.71.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('206.49.72.0', '206.49.72.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('206.49.73.0', '206.49.73.255', 2147483647, 2147483647, 'US', 'United States'), +('206.49.74.0', '206.49.74.255', 2147483647, 2147483647, 'LK', 'Sri Lanka'), +('206.49.75.0', '206.49.75.255', 2147483647, 2147483647, 'AW', 'Aruba'), +('206.49.76.0', '206.49.76.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('206.49.77.0', '206.49.77.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('206.49.78.0', '206.49.78.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('206.49.79.0', '206.49.79.255', 2147483647, 2147483647, 'US', 'United States'), +('206.49.80.0', '206.49.80.255', 2147483647, 2147483647, 'SV', 'El Salvador'), +('206.49.81.0', '206.49.83.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('206.49.84.0', '206.49.84.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('206.49.85.0', '206.49.85.255', 2147483647, 2147483647, 'US', 'United States'), +('206.49.86.0', '206.49.86.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('206.49.87.0', '206.49.87.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('206.49.88.0', '206.49.88.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('206.49.89.0', '206.49.89.255', 2147483647, 2147483647, 'FM', 'Micronesia, Federated States of'), +('206.49.90.0', '206.49.90.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('206.49.91.0', '206.49.91.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('206.49.92.0', '206.49.92.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('206.49.93.0', '206.49.93.255', 2147483647, 2147483647, 'US', 'United States'), +('206.49.94.0', '206.49.94.255', 2147483647, 2147483647, 'IL', 'Israel'), +('206.49.95.0', '206.49.95.255', 2147483647, 2147483647, 'LK', 'Sri Lanka'), +('206.49.96.0', '206.49.96.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('206.49.97.0', '206.49.97.255', 2147483647, 2147483647, 'BY', 'Belarus'), +('206.49.98.0', '206.49.98.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('206.49.99.0', '206.49.99.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('206.49.100.0', '206.49.100.79', 2147483647, 2147483647, 'CA', 'Canada'), +('206.49.100.80', '206.49.100.95', 2147483647, 2147483647, 'US', 'United States'), +('206.49.100.96', '206.49.100.231', 2147483647, 2147483647, 'CA', 'Canada'), +('206.49.100.232', '206.49.100.239', 2147483647, 2147483647, 'US', 'United States'), +('206.49.100.240', '206.49.100.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.49.101.0', '206.49.102.255', 2147483647, 2147483647, 'OM', 'Oman'), +('206.49.103.0', '206.49.108.255', 2147483647, 2147483647, 'US', 'United States'), +('206.49.109.0', '206.49.110.255', 2147483647, 2147483647, 'OM', 'Oman'), +('206.49.111.0', '206.49.111.255', 2147483647, 2147483647, 'US', 'United States'), +('206.49.112.0', '206.49.112.255', 2147483647, 2147483647, 'LK', 'Sri Lanka'), +('206.49.113.0', '206.49.113.255', 2147483647, 2147483647, 'US', 'United States'), +('206.49.114.0', '206.49.118.255', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('206.49.119.0', '206.49.119.255', 2147483647, 2147483647, 'AG', 'Antigua and Barbuda'), +('206.49.120.0', '206.49.120.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('206.49.121.0', '206.49.121.255', 2147483647, 2147483647, 'BW', 'Botswana'), +('206.49.122.0', '206.49.123.255', 2147483647, 2147483647, 'IT', 'Italy'), +('206.49.124.0', '206.49.127.255', 2147483647, 2147483647, 'US', 'United States'), +('206.49.128.0', '206.49.135.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('206.49.136.0', '206.49.136.255', 2147483647, 2147483647, 'US', 'United States'), +('206.49.137.0', '206.49.137.255', 2147483647, 2147483647, 'FM', 'Micronesia, Federated States of'), +('206.49.138.0', '206.49.138.255', 2147483647, 2147483647, 'US', 'United States'), +('206.49.139.0', '206.49.143.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('206.49.144.0', '206.49.153.255', 2147483647, 2147483647, 'NI', 'Nicaragua'), +('206.49.154.0', '206.49.154.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('206.49.155.0', '206.49.155.255', 2147483647, 2147483647, 'HT', 'Haiti'), +('206.49.156.0', '206.49.156.255', 2147483647, 2147483647, 'SV', 'El Salvador'), +('206.49.157.0', '206.49.157.255', 2147483647, 2147483647, 'TG', 'Togo'), +('206.49.158.0', '206.49.159.255', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('206.49.160.0', '206.49.160.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('206.49.161.0', '206.49.164.255', 2147483647, 2147483647, 'US', 'United States'), +('206.49.165.0', '206.49.166.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('206.49.167.0', '206.49.175.255', 2147483647, 2147483647, 'US', 'United States'), +('206.49.176.0', '206.49.183.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('206.49.184.0', '206.49.191.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('206.49.192.0', '206.49.192.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('206.49.193.0', '206.49.193.255', 2147483647, 2147483647, 'US', 'United States'), +('206.49.194.0', '206.49.194.31', 2147483647, 2147483647, 'VE', 'Venezuela'), +('206.49.194.32', '206.49.194.111', 2147483647, 2147483647, 'VN', 'Vietnam'), +('206.49.194.112', '206.49.194.127', 2147483647, 2147483647, 'VE', 'Venezuela'), +('206.49.194.128', '206.49.194.223', 2147483647, 2147483647, 'VN', 'Vietnam'), +('206.49.194.224', '206.49.195.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('206.49.196.0', '206.49.196.63', 2147483647, 2147483647, 'VN', 'Vietnam'), +('206.49.196.64', '206.49.196.127', 2147483647, 2147483647, 'VE', 'Venezuela'), +('206.49.196.128', '206.49.196.159', 2147483647, 2147483647, 'VN', 'Vietnam'), +('206.49.196.160', '206.49.198.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('206.49.199.0', '206.49.199.255', 2147483647, 2147483647, 'US', 'United States'), +('206.49.200.0', '206.49.207.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('206.49.208.0', '206.49.215.255', 2147483647, 2147483647, 'PE', 'Peru'), +('206.49.216.0', '206.49.216.255', 2147483647, 2147483647, 'US', 'United States'), +('206.49.217.0', '206.49.223.255', 2147483647, 2147483647, 'CL', 'Chile'), +('206.49.224.0', '206.49.227.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('206.49.228.0', '206.50.255.255', 2147483647, 2147483647, 'US', 'United States'), +('206.51.0.0', '206.51.6.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.51.7.0', '206.51.7.255', 2147483647, 2147483647, 'US', 'United States'), +('206.51.8.0', '206.51.25.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.51.26.0', '206.51.26.255', 2147483647, 2147483647, 'US', 'United States'), +('206.51.27.0', '206.51.29.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.51.30.0', '206.51.30.255', 2147483647, 2147483647, 'US', 'United States'), +('206.51.31.0', '206.51.32.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.51.33.0', '206.51.33.255', 2147483647, 2147483647, 'US', 'United States'), +('206.51.34.0', '206.51.34.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.51.35.0', '206.51.35.255', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('206.51.36.0', '206.51.247.255', 2147483647, 2147483647, 'US', 'United States'), +('206.51.248.0', '206.51.253.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.51.254.0', '206.53.47.255', 2147483647, 2147483647, 'US', 'United States'), +('206.53.48.0', '206.53.63.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.53.64.0', '206.53.167.255', 2147483647, 2147483647, 'US', 'United States'), +('206.53.176.0', '206.53.191.255', 2147483647, 2147483647, 'BM', 'Bermuda'), +('206.53.192.0', '206.55.79.255', 2147483647, 2147483647, 'US', 'United States'), +('206.55.80.0', '206.55.95.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.55.96.0', '206.55.134.255', 2147483647, 2147483647, 'US', 'United States'), +('206.55.135.0', '206.55.135.255', 2147483647, 2147483647, 'IT', 'Italy'), +('206.55.136.0', '206.61.1.255', 2147483647, 2147483647, 'US', 'United States'), +('206.61.2.0', '206.61.3.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('206.61.4.0', '206.61.18.95', 2147483647, 2147483647, 'US', 'United States'), +('206.61.18.96', '206.61.18.103', 2147483647, 2147483647, 'FI', 'Finland'), +('206.61.18.104', '206.61.29.255', 2147483647, 2147483647, 'US', 'United States'), +('206.61.30.0', '206.61.30.15', 2147483647, 2147483647, 'CA', 'Canada'), +('206.61.30.16', '206.61.34.143', 2147483647, 2147483647, 'US', 'United States'), +('206.61.34.144', '206.61.34.151', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('206.61.34.152', '206.61.39.255', 2147483647, 2147483647, 'US', 'United States'), +('206.61.40.0', '206.61.47.255', 2147483647, 2147483647, 'SR', 'Suriname'), +('206.61.48.0', '206.61.223.255', 2147483647, 2147483647, 'US', 'United States'), +('206.61.224.0', '206.61.231.255', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('206.61.232.0', '206.65.31.255', 2147483647, 2147483647, 'US', 'United States'), +('206.65.32.0', '206.65.35.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('206.65.36.0', '206.65.164.39', 2147483647, 2147483647, 'US', 'United States'), +('206.65.164.40', '206.65.164.47', 2147483647, 2147483647, 'DE', 'Germany'), +('206.65.164.48', '206.65.170.95', 2147483647, 2147483647, 'US', 'United States'), +('206.65.170.96', '206.65.170.111', 2147483647, 2147483647, 'DE', 'Germany'), +('206.65.170.112', '206.65.184.95', 2147483647, 2147483647, 'US', 'United States'), +('206.65.184.96', '206.65.184.103', 2147483647, 2147483647, 'DE', 'Germany'), +('206.65.184.104', '206.66.84.255', 2147483647, 2147483647, 'US', 'United States'), +('206.66.85.0', '206.66.85.255', 2147483647, 2147483647, 'BS', 'Bahamas'), +('206.66.86.0', '206.67.39.255', 2147483647, 2147483647, 'US', 'United States'), +('206.67.40.0', '206.67.40.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('206.67.41.0', '206.73.1.255', 2147483647, 2147483647, 'US', 'United States'), +('206.73.2.0', '206.73.2.63', 2147483647, 2147483647, 'CL', 'Chile'), +('206.73.2.64', '206.73.5.63', 2147483647, 2147483647, 'US', 'United States'), +('206.73.5.64', '206.73.5.95', 2147483647, 2147483647, 'BR', 'Brazil'), +('206.73.5.96', '206.73.5.127', 2147483647, 2147483647, 'CO', 'Colombia'), +('206.73.5.128', '206.73.5.191', 2147483647, 2147483647, 'VE', 'Venezuela'), +('206.73.5.192', '206.73.5.223', 2147483647, 2147483647, 'BR', 'Brazil'), +('206.73.5.224', '206.73.5.255', 2147483647, 2147483647, 'US', 'United States'), +('206.73.6.0', '206.73.6.63', 2147483647, 2147483647, 'FR', 'France'), +('206.73.6.64', '206.73.6.111', 2147483647, 2147483647, 'BR', 'Brazil'), +('206.73.6.112', '206.73.6.127', 2147483647, 2147483647, 'US', 'United States'), +('206.73.6.128', '206.73.6.255', 2147483647, 2147483647, 'FR', 'France'), +('206.73.7.0', '206.73.10.255', 2147483647, 2147483647, 'US', 'United States'), +('206.73.11.0', '206.73.11.255', 2147483647, 2147483647, 'IT', 'Italy'), +('206.73.12.0', '206.73.14.15', 2147483647, 2147483647, 'US', 'United States'), +('206.73.14.16', '206.73.14.31', 2147483647, 2147483647, 'MX', 'Mexico'), +('206.73.14.32', '206.73.14.127', 2147483647, 2147483647, 'US', 'United States'), +('206.73.14.128', '206.73.14.159', 2147483647, 2147483647, 'MX', 'Mexico'), +('206.73.14.160', '206.73.14.255', 2147483647, 2147483647, 'US', 'United States'), +('206.73.15.0', '206.73.15.255', 2147483647, 2147483647, 'JP', 'Japan'), +('206.73.16.0', '206.73.16.15', 2147483647, 2147483647, 'NL', 'Netherlands'), +('206.73.16.16', '206.73.16.31', 2147483647, 2147483647, 'CA', 'Canada'), +('206.73.16.32', '206.73.16.63', 2147483647, 2147483647, 'US', 'United States'), +('206.73.16.64', '206.73.16.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('206.73.17.0', '206.73.17.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('206.73.18.0', '206.73.18.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('206.73.19.0', '206.73.21.255', 2147483647, 2147483647, 'US', 'United States'), +('206.73.22.0', '206.73.22.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('206.73.23.0', '206.73.23.255', 2147483647, 2147483647, 'ES', 'Spain'), +('206.73.24.0', '206.73.24.255', 2147483647, 2147483647, 'FR', 'France'), +('206.73.25.0', '206.73.25.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('206.73.26.0', '206.73.33.255', 2147483647, 2147483647, 'US', 'United States'), +('206.73.34.0', '206.73.34.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('206.73.35.0', '206.73.38.255', 2147483647, 2147483647, 'US', 'United States'), +('206.73.39.0', '206.73.39.63', 2147483647, 2147483647, 'PE', 'Peru'), +('206.73.39.64', '206.73.39.127', 2147483647, 2147483647, 'US', 'United States'), +('206.73.39.128', '206.73.39.191', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('206.73.39.192', '206.73.39.223', 2147483647, 2147483647, 'EC', 'Ecuador'), +('206.73.39.224', '206.73.41.255', 2147483647, 2147483647, 'US', 'United States'), +('206.73.42.0', '206.73.42.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('206.73.43.0', '206.73.44.255', 2147483647, 2147483647, 'US', 'United States'), +('206.73.45.0', '206.73.45.127', 2147483647, 2147483647, 'IN', 'India'), +('206.73.45.128', '206.73.49.47', 2147483647, 2147483647, 'US', 'United States'), +('206.73.49.48', '206.73.49.63', 2147483647, 2147483647, 'AR', 'Argentina'), +('206.73.49.64', '206.73.49.71', 2147483647, 2147483647, 'BR', 'Brazil'), +('206.73.49.72', '206.73.49.95', 2147483647, 2147483647, 'US', 'United States'), +('206.73.49.96', '206.73.49.127', 2147483647, 2147483647, 'VE', 'Venezuela'), +('206.73.49.128', '206.73.49.191', 2147483647, 2147483647, 'US', 'United States'), +('206.73.49.192', '206.73.49.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('206.73.50.0', '206.73.51.127', 2147483647, 2147483647, 'US', 'United States'), +('206.73.51.128', '206.73.51.191', 2147483647, 2147483647, 'BO', 'Bolivia'), +('206.73.51.192', '206.73.51.255', 2147483647, 2147483647, 'US', 'United States'), +('206.73.52.0', '206.73.52.127', 2147483647, 2147483647, 'VE', 'Venezuela'), +('206.73.52.128', '206.73.52.143', 2147483647, 2147483647, 'MX', 'Mexico'), +('206.73.52.144', '206.73.52.255', 2147483647, 2147483647, 'US', 'United States'), +('206.73.53.0', '206.73.53.31', 2147483647, 2147483647, 'FI', 'Finland'), +('206.73.53.32', '206.73.53.63', 2147483647, 2147483647, 'US', 'United States'), +('206.73.53.64', '206.73.53.127', 2147483647, 2147483647, 'DE', 'Germany'), +('206.73.53.128', '206.73.53.255', 2147483647, 2147483647, 'US', 'United States'), +('206.73.54.0', '206.73.54.31', 2147483647, 2147483647, 'FI', 'Finland'), +('206.73.54.32', '206.73.54.143', 2147483647, 2147483647, 'US', 'United States'), +('206.73.54.144', '206.73.54.159', 2147483647, 2147483647, 'CA', 'Canada'), +('206.73.54.160', '206.73.54.191', 2147483647, 2147483647, 'US', 'United States'), +('206.73.54.192', '206.73.54.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('206.73.55.0', '206.73.55.31', 2147483647, 2147483647, 'US', 'United States'), +('206.73.55.32', '206.73.55.47', 2147483647, 2147483647, 'CA', 'Canada'), +('206.73.55.48', '206.73.57.39', 2147483647, 2147483647, 'US', 'United States'), +('206.73.57.40', '206.73.57.47', 2147483647, 2147483647, 'MX', 'Mexico'), +('206.73.57.48', '206.73.57.79', 2147483647, 2147483647, 'US', 'United States'), +('206.73.57.80', '206.73.57.95', 2147483647, 2147483647, 'BR', 'Brazil'), +('206.73.57.96', '206.73.57.191', 2147483647, 2147483647, 'US', 'United States'), +('206.73.57.192', '206.73.57.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('206.73.58.0', '206.73.59.15', 2147483647, 2147483647, 'US', 'United States'), +('206.73.59.16', '206.73.59.31', 2147483647, 2147483647, 'BR', 'Brazil'), +('206.73.59.32', '206.73.59.63', 2147483647, 2147483647, 'US', 'United States'), +('206.73.59.64', '206.73.59.95', 2147483647, 2147483647, 'BR', 'Brazil'), +('206.73.59.96', '206.73.60.63', 2147483647, 2147483647, 'US', 'United States'), +('206.73.60.64', '206.73.60.95', 2147483647, 2147483647, 'ID', 'Indonesia'), +('206.73.60.96', '206.73.60.127', 2147483647, 2147483647, 'CN', 'China'), +('206.73.60.128', '206.73.60.159', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('206.73.60.160', '206.73.61.255', 2147483647, 2147483647, 'US', 'United States'), +('206.73.62.0', '206.73.62.63', 2147483647, 2147483647, 'ID', 'Indonesia'), +('206.73.62.64', '206.73.64.255', 2147483647, 2147483647, 'US', 'United States'), +('206.73.65.0', '206.73.65.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('206.73.66.0', '206.73.68.255', 2147483647, 2147483647, 'US', 'United States'), +('206.73.69.0', '206.73.69.255', 2147483647, 2147483647, 'FI', 'Finland'), +('206.73.70.0', '206.73.70.255', 2147483647, 2147483647, 'US', 'United States'), +('206.73.71.0', '206.73.76.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('206.73.77.0', '206.73.77.255', 2147483647, 2147483647, 'US', 'United States'), +('206.73.78.0', '206.73.78.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('206.73.79.0', '206.73.80.63', 2147483647, 2147483647, 'US', 'United States'), +('206.73.80.64', '206.73.80.95', 2147483647, 2147483647, 'ID', 'Indonesia'), +('206.73.80.96', '206.73.83.255', 2147483647, 2147483647, 'US', 'United States'), +('206.73.84.0', '206.73.84.255', 2147483647, 2147483647, 'IT', 'Italy'), +('206.73.85.0', '206.73.85.255', 2147483647, 2147483647, 'FR', 'France'), +('206.73.86.0', '206.73.86.255', 2147483647, 2147483647, 'ES', 'Spain'), +('206.73.87.0', '206.73.88.255', 2147483647, 2147483647, 'US', 'United States'), +('206.73.89.0', '206.73.89.31', 2147483647, 2147483647, 'FR', 'France'), +('206.73.89.32', '206.73.89.63', 2147483647, 2147483647, 'US', 'United States'), +('206.73.89.64', '206.73.89.255', 2147483647, 2147483647, 'FR', 'France'), +('206.73.90.0', '206.73.91.31', 2147483647, 2147483647, 'US', 'United States'), +('206.73.91.32', '206.73.91.95', 2147483647, 2147483647, 'CN', 'China'), +('206.73.91.96', '206.73.91.127', 2147483647, 2147483647, 'US', 'United States'), +('206.73.91.128', '206.73.91.191', 2147483647, 2147483647, 'DE', 'Germany'), +('206.73.91.192', '206.73.99.255', 2147483647, 2147483647, 'US', 'United States'), +('206.73.100.0', '206.73.100.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('206.73.101.0', '206.73.101.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('206.73.102.0', '206.73.102.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('206.73.103.0', '206.73.103.31', 2147483647, 2147483647, 'CA', 'Canada'), +('206.73.103.32', '206.73.103.143', 2147483647, 2147483647, 'US', 'United States'), +('206.73.103.144', '206.73.103.159', 2147483647, 2147483647, 'MX', 'Mexico'), +('206.73.103.160', '206.73.103.191', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('206.73.103.192', '206.73.104.31', 2147483647, 2147483647, 'US', 'United States'), +('206.73.104.32', '206.73.104.63', 2147483647, 2147483647, 'CA', 'Canada'), +('206.73.104.64', '206.73.104.95', 2147483647, 2147483647, 'US', 'United States'), +('206.73.104.96', '206.73.104.111', 2147483647, 2147483647, 'CA', 'Canada'), +('206.73.104.112', '206.73.104.175', 2147483647, 2147483647, 'US', 'United States'), +('206.73.104.176', '206.73.104.191', 2147483647, 2147483647, 'MX', 'Mexico'), +('206.73.104.192', '206.73.105.255', 2147483647, 2147483647, 'US', 'United States'), +('206.73.106.0', '206.73.106.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.73.107.0', '206.73.107.191', 2147483647, 2147483647, 'US', 'United States'), +('206.73.107.192', '206.73.107.223', 2147483647, 2147483647, 'AR', 'Argentina'), +('206.73.107.224', '206.73.107.255', 2147483647, 2147483647, 'US', 'United States'), +('206.73.108.0', '206.73.108.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('206.73.109.0', '206.73.109.159', 2147483647, 2147483647, 'US', 'United States'), +('206.73.109.160', '206.73.109.191', 2147483647, 2147483647, 'MX', 'Mexico'), +('206.73.109.192', '206.73.109.255', 2147483647, 2147483647, 'US', 'United States'), +('206.73.110.0', '206.73.110.255', 2147483647, 2147483647, 'JP', 'Japan'), +('206.73.111.0', '206.73.111.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('206.73.112.0', '206.73.112.239', 2147483647, 2147483647, 'US', 'United States'), +('206.73.112.240', '206.73.112.247', 2147483647, 2147483647, 'AR', 'Argentina'), +('206.73.112.248', '206.73.112.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('206.73.113.0', '206.73.115.255', 2147483647, 2147483647, 'US', 'United States'), +('206.73.116.0', '206.73.116.255', 2147483647, 2147483647, 'IT', 'Italy'), +('206.73.117.0', '206.73.117.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('206.73.118.0', '206.73.119.255', 2147483647, 2147483647, 'US', 'United States'), +('206.73.120.0', '206.73.120.255', 2147483647, 2147483647, 'DE', 'Germany'), +('206.73.121.0', '206.73.121.255', 2147483647, 2147483647, 'AU', 'Australia'), +('206.73.122.0', '206.73.127.255', 2147483647, 2147483647, 'US', 'United States'), +('206.73.128.0', '206.73.128.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('206.73.129.0', '206.73.129.31', 2147483647, 2147483647, 'US', 'United States'), +('206.73.129.32', '206.73.129.63', 2147483647, 2147483647, 'FR', 'France'), +('206.73.129.64', '206.73.129.95', 2147483647, 2147483647, 'DE', 'Germany'), +('206.73.129.96', '206.73.129.127', 2147483647, 2147483647, 'CH', 'Switzerland'), +('206.73.129.128', '206.73.129.159', 2147483647, 2147483647, 'SE', 'Sweden'), +('206.73.129.160', '206.73.129.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('206.73.129.192', '206.73.129.223', 2147483647, 2147483647, 'AT', 'Austria'), +('206.73.129.224', '206.73.130.255', 2147483647, 2147483647, 'US', 'United States'), +('206.73.131.0', '206.73.131.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('206.73.131.16', '206.73.131.63', 2147483647, 2147483647, 'US', 'United States'), +('206.73.131.64', '206.73.131.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('206.73.131.128', '206.73.131.255', 2147483647, 2147483647, 'DE', 'Germany'), +('206.73.132.0', '206.73.132.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('206.73.132.192', '206.73.132.255', 2147483647, 2147483647, 'US', 'United States'), +('206.73.133.0', '206.73.134.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('206.73.135.0', '206.73.136.255', 2147483647, 2147483647, 'US', 'United States'), +('206.73.137.0', '206.73.137.255', 2147483647, 2147483647, 'ES', 'Spain'), +('206.73.138.0', '206.73.138.255', 2147483647, 2147483647, 'US', 'United States'), +('206.73.139.0', '206.73.139.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('206.73.140.0', '206.73.140.255', 2147483647, 2147483647, 'US', 'United States'), +('206.73.141.0', '206.73.141.255', 2147483647, 2147483647, 'DE', 'Germany'), +('206.73.142.0', '206.73.142.127', 2147483647, 2147483647, 'US', 'United States'), +('206.73.142.128', '206.73.142.255', 2147483647, 2147483647, 'ES', 'Spain'), +('206.73.143.0', '206.73.149.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('206.73.150.0', '206.73.150.255', 2147483647, 2147483647, 'US', 'United States'), +('206.73.151.0', '206.73.151.255', 2147483647, 2147483647, 'DE', 'Germany'), +('206.73.152.0', '206.73.152.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('206.73.153.0', '206.73.153.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('206.73.154.0', '206.73.157.191', 2147483647, 2147483647, 'US', 'United States'), +('206.73.157.192', '206.73.157.255', 2147483647, 2147483647, 'IT', 'Italy'), +('206.73.158.0', '206.73.158.127', 2147483647, 2147483647, 'GR', 'Greece'), +('206.73.158.128', '206.73.158.175', 2147483647, 2147483647, 'US', 'United States'), +('206.73.158.176', '206.73.158.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('206.73.159.0', '206.73.159.255', 2147483647, 2147483647, 'US', 'United States'), +('206.73.160.0', '206.73.160.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('206.73.161.0', '206.73.161.255', 2147483647, 2147483647, 'DE', 'Germany'), +('206.73.162.0', '206.73.162.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('206.73.163.0', '206.73.163.255', 2147483647, 2147483647, 'FR', 'France'), +('206.73.164.0', '206.73.164.255', 2147483647, 2147483647, 'US', 'United States'), +('206.73.165.0', '206.73.165.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('206.73.166.0', '206.73.166.255', 2147483647, 2147483647, 'US', 'United States'), +('206.73.167.0', '206.73.167.63', 2147483647, 2147483647, 'DE', 'Germany'), +('206.73.167.64', '206.73.168.47', 2147483647, 2147483647, 'US', 'United States'), +('206.73.168.48', '206.73.168.63', 2147483647, 2147483647, 'SE', 'Sweden'), +('206.73.168.64', '206.73.168.191', 2147483647, 2147483647, 'US', 'United States'), +('206.73.168.192', '206.73.168.255', 2147483647, 2147483647, 'IL', 'Israel'), +('206.73.169.0', '206.73.169.255', 2147483647, 2147483647, 'DE', 'Germany'), +('206.73.170.0', '206.73.171.255', 2147483647, 2147483647, 'US', 'United States'), +('206.73.172.0', '206.73.172.127', 2147483647, 2147483647, 'CH', 'Switzerland'), +('206.73.172.128', '206.73.172.255', 2147483647, 2147483647, 'IT', 'Italy'), +('206.73.173.0', '206.73.173.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('206.73.174.0', '206.73.174.31', 2147483647, 2147483647, 'US', 'United States'), +('206.73.174.32', '206.73.174.63', 2147483647, 2147483647, 'ES', 'Spain'), +('206.73.174.64', '206.73.174.127', 2147483647, 2147483647, 'US', 'United States'), +('206.73.174.128', '206.73.174.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('206.73.175.0', '206.73.175.255', 2147483647, 2147483647, 'FR', 'France'), +('206.73.176.0', '206.73.176.255', 2147483647, 2147483647, 'FI', 'Finland'), +('206.73.177.0', '206.73.177.255', 2147483647, 2147483647, 'FR', 'France'), +('206.73.178.0', '206.73.178.255', 2147483647, 2147483647, 'US', 'United States'), +('206.73.179.0', '206.73.179.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('206.73.180.0', '206.73.180.255', 2147483647, 2147483647, 'IT', 'Italy'), +('206.73.181.0', '206.73.181.255', 2147483647, 2147483647, 'DE', 'Germany'), +('206.73.182.0', '206.73.182.255', 2147483647, 2147483647, 'FR', 'France'), +('206.73.183.0', '206.73.183.255', 2147483647, 2147483647, 'US', 'United States'), +('206.73.184.0', '206.73.184.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('206.73.185.0', '206.73.185.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('206.73.186.0', '206.73.186.255', 2147483647, 2147483647, 'DE', 'Germany'), +('206.73.187.0', '206.73.189.31', 2147483647, 2147483647, 'US', 'United States'), +('206.73.189.32', '206.73.189.63', 2147483647, 2147483647, 'BE', 'Belgium'), +('206.73.189.64', '206.73.189.95', 2147483647, 2147483647, 'IT', 'Italy'), +('206.73.189.96', '206.73.189.255', 2147483647, 2147483647, 'US', 'United States'), +('206.73.190.0', '206.73.190.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('206.73.191.0', '206.73.191.191', 2147483647, 2147483647, 'US', 'United States'), +('206.73.191.192', '206.73.191.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('206.73.192.0', '206.73.192.127', 2147483647, 2147483647, 'US', 'United States'), +('206.73.192.128', '206.73.192.159', 2147483647, 2147483647, 'AU', 'Australia'), +('206.73.192.160', '206.73.192.191', 2147483647, 2147483647, 'SG', 'Singapore'), +('206.73.192.192', '206.73.193.255', 2147483647, 2147483647, 'US', 'United States'), +('206.73.194.0', '206.73.194.63', 2147483647, 2147483647, 'MX', 'Mexico'), +('206.73.194.64', '206.73.194.127', 2147483647, 2147483647, 'ID', 'Indonesia'), +('206.73.194.128', '206.73.194.191', 2147483647, 2147483647, 'US', 'United States'), +('206.73.194.192', '206.73.194.223', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('206.73.194.224', '206.73.194.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('206.73.195.0', '206.73.195.15', 2147483647, 2147483647, 'US', 'United States'), +('206.73.195.16', '206.73.195.23', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('206.73.195.24', '206.73.195.63', 2147483647, 2147483647, 'US', 'United States'), +('206.73.195.64', '206.73.195.95', 2147483647, 2147483647, 'CN', 'China'), +('206.73.195.96', '206.73.197.255', 2147483647, 2147483647, 'US', 'United States'), +('206.73.198.0', '206.73.198.63', 2147483647, 2147483647, 'MY', 'Malaysia'), +('206.73.198.64', '206.73.198.127', 2147483647, 2147483647, 'US', 'United States'), +('206.73.198.128', '206.73.198.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('206.73.199.0', '206.73.199.255', 2147483647, 2147483647, 'AU', 'Australia'), +('206.73.200.0', '206.73.200.255', 2147483647, 2147483647, 'US', 'United States'), +('206.73.201.0', '206.73.201.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('206.73.202.0', '206.73.205.255', 2147483647, 2147483647, 'US', 'United States'), +('206.73.206.0', '206.73.206.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('206.73.207.0', '206.73.207.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('206.73.208.0', '206.73.209.255', 2147483647, 2147483647, 'US', 'United States'), +('206.73.210.0', '206.73.210.63', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('206.73.210.64', '206.73.210.95', 2147483647, 2147483647, 'US', 'United States'), +('206.73.210.96', '206.73.210.127', 2147483647, 2147483647, 'CN', 'China'), +('206.73.210.128', '206.73.210.159', 2147483647, 2147483647, 'TH', 'Thailand'), +('206.73.210.160', '206.73.210.191', 2147483647, 2147483647, 'JP', 'Japan'), +('206.73.210.192', '206.73.211.31', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('206.73.211.32', '206.73.211.127', 2147483647, 2147483647, 'US', 'United States'), +('206.73.211.128', '206.73.211.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('206.73.212.0', '206.73.212.255', 2147483647, 2147483647, 'DE', 'Germany'), +('206.73.213.0', '206.73.214.255', 2147483647, 2147483647, 'US', 'United States'), +('206.73.215.0', '206.73.215.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('206.73.216.0', '206.73.218.255', 2147483647, 2147483647, 'US', 'United States'), +('206.73.219.0', '206.73.219.255', 2147483647, 2147483647, 'DE', 'Germany'), +('206.73.220.0', '206.73.220.31', 2147483647, 2147483647, 'CH', 'Switzerland'), +('206.73.220.32', '206.73.220.255', 2147483647, 2147483647, 'US', 'United States'), +('206.73.221.0', '206.73.221.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('206.73.222.0', '206.73.222.255', 2147483647, 2147483647, 'DE', 'Germany'), +('206.73.223.0', '206.73.223.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('206.73.224.0', '206.73.224.127', 2147483647, 2147483647, 'US', 'United States'), +('206.73.224.128', '206.73.224.191', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('206.73.224.192', '206.73.226.255', 2147483647, 2147483647, 'US', 'United States'), +('206.73.227.0', '206.73.227.63', 2147483647, 2147483647, 'PH', 'Philippines'), +('206.73.227.64', '206.73.227.127', 2147483647, 2147483647, 'CN', 'China'), +('206.73.227.128', '206.73.227.191', 2147483647, 2147483647, 'US', 'United States'), +('206.73.227.192', '206.73.227.223', 2147483647, 2147483647, 'ID', 'Indonesia'), +('206.73.227.224', '206.73.228.31', 2147483647, 2147483647, 'US', 'United States'), +('206.73.228.32', '206.73.228.63', 2147483647, 2147483647, 'JP', 'Japan'), +('206.73.228.64', '206.73.228.191', 2147483647, 2147483647, 'ID', 'Indonesia'), +('206.73.228.192', '206.73.232.255', 2147483647, 2147483647, 'US', 'United States'), +('206.73.233.0', '206.73.233.255', 2147483647, 2147483647, 'DE', 'Germany'), +('206.73.234.0', '206.73.234.31', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('206.73.234.32', '206.73.234.143', 2147483647, 2147483647, 'US', 'United States'), +('206.73.234.144', '206.73.234.159', 2147483647, 2147483647, 'JP', 'Japan'), +('206.73.234.160', '206.73.235.207', 2147483647, 2147483647, 'US', 'United States'), +('206.73.235.208', '206.73.235.223', 2147483647, 2147483647, 'JP', 'Japan'), +('206.73.235.224', '206.73.236.255', 2147483647, 2147483647, 'US', 'United States'), +('206.73.237.0', '206.73.237.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('206.73.238.0', '206.73.238.7', 2147483647, 2147483647, 'JP', 'Japan'), +('206.73.238.8', '206.73.238.15', 2147483647, 2147483647, 'US', 'United States'), +('206.73.238.16', '206.73.238.31', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('206.73.238.32', '206.73.238.191', 2147483647, 2147483647, 'US', 'United States'), +('206.73.238.192', '206.73.238.199', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('206.73.238.200', '206.73.238.207', 2147483647, 2147483647, 'ID', 'Indonesia'), +('206.73.238.208', '206.73.239.15', 2147483647, 2147483647, 'US', 'United States'), +('206.73.239.16', '206.73.239.23', 2147483647, 2147483647, 'CA', 'Canada'), +('206.73.239.24', '206.73.239.47', 2147483647, 2147483647, 'US', 'United States'), +('206.73.239.48', '206.73.239.63', 2147483647, 2147483647, 'JP', 'Japan'), +('206.73.239.64', '206.73.239.79', 2147483647, 2147483647, 'CH', 'Switzerland'), +('206.73.239.80', '206.73.239.127', 2147483647, 2147483647, 'US', 'United States'), +('206.73.239.128', '206.73.239.143', 2147483647, 2147483647, 'MX', 'Mexico'), +('206.73.239.144', '206.73.239.199', 2147483647, 2147483647, 'US', 'United States'), +('206.73.239.200', '206.73.239.207', 2147483647, 2147483647, 'CA', 'Canada'), +('206.73.239.208', '206.73.240.191', 2147483647, 2147483647, 'US', 'United States'), +('206.73.240.192', '206.73.240.223', 2147483647, 2147483647, 'CA', 'Canada'), +('206.73.240.224', '206.73.240.255', 2147483647, 2147483647, 'US', 'United States'), +('206.73.241.0', '206.73.241.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('206.73.242.0', '206.73.242.255', 2147483647, 2147483647, 'ES', 'Spain'), +('206.73.243.0', '206.73.243.63', 2147483647, 2147483647, 'US', 'United States'), +('206.73.243.64', '206.73.243.95', 2147483647, 2147483647, 'BR', 'Brazil'), +('206.73.243.96', '206.73.243.127', 2147483647, 2147483647, 'US', 'United States'), +('206.73.243.128', '206.73.243.191', 2147483647, 2147483647, 'CA', 'Canada'), +('206.73.243.192', '206.73.244.23', 2147483647, 2147483647, 'US', 'United States'), +('206.73.244.24', '206.73.244.31', 2147483647, 2147483647, 'TW', 'Taiwan'), +('206.73.244.32', '206.73.244.47', 2147483647, 2147483647, 'MX', 'Mexico'), +('206.73.244.48', '206.73.244.63', 2147483647, 2147483647, 'US', 'United States'), +('206.73.244.64', '206.73.244.79', 2147483647, 2147483647, 'TH', 'Thailand'), +('206.73.244.80', '206.73.244.95', 2147483647, 2147483647, 'JP', 'Japan'), +('206.73.244.96', '206.73.244.111', 2147483647, 2147483647, 'MX', 'Mexico'), +('206.73.244.112', '206.73.244.143', 2147483647, 2147483647, 'US', 'United States'), +('206.73.244.144', '206.73.244.159', 2147483647, 2147483647, 'ID', 'Indonesia'), +('206.73.244.160', '206.73.244.191', 2147483647, 2147483647, 'US', 'United States'), +('206.73.244.192', '206.73.244.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.73.245.0', '206.73.245.255', 2147483647, 2147483647, 'US', 'United States'), +('206.73.246.0', '206.73.246.15', 2147483647, 2147483647, 'BR', 'Brazil'), +('206.73.246.16', '206.73.246.23', 2147483647, 2147483647, 'US', 'United States'), +('206.73.246.24', '206.73.246.31', 2147483647, 2147483647, 'SG', 'Singapore'), +('206.73.246.32', '206.73.246.47', 2147483647, 2147483647, 'CN', 'China'), +('206.73.246.48', '206.73.246.63', 2147483647, 2147483647, 'SG', 'Singapore'), +('206.73.246.64', '206.73.246.127', 2147483647, 2147483647, 'US', 'United States'), +('206.73.246.128', '206.73.246.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('206.73.247.0', '206.73.247.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('206.73.248.0', '206.73.248.79', 2147483647, 2147483647, 'US', 'United States'), +('206.73.248.80', '206.73.248.95', 2147483647, 2147483647, 'SG', 'Singapore'), +('206.73.248.96', '206.73.248.255', 2147483647, 2147483647, 'US', 'United States'), +('206.73.249.0', '206.73.249.63', 2147483647, 2147483647, 'DO', 'Dominican Republic'), +('206.73.249.64', '206.73.249.95', 2147483647, 2147483647, 'US', 'United States'), +('206.73.249.96', '206.73.249.111', 2147483647, 2147483647, 'MY', 'Malaysia'), +('206.73.249.112', '206.73.249.159', 2147483647, 2147483647, 'US', 'United States'), +('206.73.249.160', '206.73.249.191', 2147483647, 2147483647, 'KP', 'Korea, Democratic People''s Republic of'), +('206.73.249.192', '206.73.249.255', 2147483647, 2147483647, 'US', 'United States'), +('206.73.250.0', '206.73.250.255', 2147483647, 2147483647, 'DE', 'Germany'), +('206.73.251.0', '206.73.251.255', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('206.73.252.0', '206.73.252.255', 2147483647, 2147483647, 'US', 'United States'), +('206.73.253.0', '206.73.253.31', 2147483647, 2147483647, 'JP', 'Japan'), +('206.73.253.32', '206.73.253.63', 2147483647, 2147483647, 'US', 'United States'), +('206.73.253.64', '206.73.253.95', 2147483647, 2147483647, 'BR', 'Brazil'), +('206.73.253.96', '206.73.253.127', 2147483647, 2147483647, 'CO', 'Colombia'), +('206.73.253.128', '206.73.253.191', 2147483647, 2147483647, 'BR', 'Brazil'), +('206.73.253.192', '206.74.255.255', 2147483647, 2147483647, 'US', 'United States'), +('206.75.0.0', '206.75.39.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.75.40.0', '206.75.40.255', 2147483647, 2147483647, 'US', 'United States'), +('206.75.41.0', '206.75.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.76.0.0', '206.79.7.255', 2147483647, 2147483647, 'US', 'United States'), +('206.79.8.0', '206.79.8.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('206.79.8.80', '206.79.183.255', 2147483647, 2147483647, 'US', 'United States'), +('206.79.184.0', '206.79.184.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('206.79.185.0', '206.79.186.255', 2147483647, 2147483647, 'US', 'United States'), +('206.79.187.0', '206.79.187.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('206.79.188.0', '206.79.188.255', 2147483647, 2147483647, 'US', 'United States'), +('206.79.189.0', '206.79.189.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('206.79.190.0', '206.79.190.255', 2147483647, 2147483647, 'US', 'United States'), +('206.79.191.0', '206.79.191.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('206.79.192.0', '206.80.231.255', 2147483647, 2147483647, 'US', 'United States'), +('206.80.240.0', '206.80.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.81.0.0', '206.82.127.255', 2147483647, 2147483647, 'US', 'United States'), +('206.82.128.0', '206.82.129.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.82.130.0', '206.82.130.255', 2147483647, 2147483647, 'BF', 'Burkina Faso'), +('206.82.131.0', '206.82.132.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.82.133.0', '206.82.133.255', 2147483647, 2147483647, 'QA', 'Qatar'), +('206.82.134.0', '206.82.139.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.82.140.0', '206.82.140.255', 2147483647, 2147483647, 'IL', 'Israel'), +('206.82.141.0', '206.82.143.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.82.144.0', '206.83.31.255', 2147483647, 2147483647, 'US', 'United States'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('206.83.32.0', '206.83.39.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.83.48.0', '206.83.202.191', 2147483647, 2147483647, 'US', 'United States'), +('206.83.202.192', '206.83.202.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('206.83.203.0', '206.83.203.63', 2147483647, 2147483647, 'US', 'United States'), +('206.83.203.64', '206.83.203.127', 2147483647, 2147483647, 'CO', 'Colombia'), +('206.83.203.128', '206.86.255.255', 2147483647, 2147483647, 'US', 'United States'), +('206.87.0.0', '206.87.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.88.0.0', '206.88.93.255', 2147483647, 2147483647, 'US', 'United States'), +('206.88.94.0', '206.88.94.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.88.95.0', '206.88.123.255', 2147483647, 2147483647, 'US', 'United States'), +('206.88.124.0', '206.88.124.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.88.125.0', '206.89.5.255', 2147483647, 2147483647, 'US', 'United States'), +('206.89.6.0', '206.89.6.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.89.7.0', '206.89.34.255', 2147483647, 2147483647, 'US', 'United States'), +('206.89.35.0', '206.89.35.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.89.36.0', '206.89.37.255', 2147483647, 2147483647, 'US', 'United States'), +('206.89.38.0', '206.89.38.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.89.39.0', '206.89.40.255', 2147483647, 2147483647, 'US', 'United States'), +('206.89.41.0', '206.89.42.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.89.43.0', '206.89.44.255', 2147483647, 2147483647, 'US', 'United States'), +('206.89.45.0', '206.89.46.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.89.47.0', '206.89.55.255', 2147483647, 2147483647, 'US', 'United States'), +('206.89.56.0', '206.89.56.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.89.57.0', '206.89.112.255', 2147483647, 2147483647, 'US', 'United States'), +('206.89.113.0', '206.89.113.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.89.114.0', '206.89.121.255', 2147483647, 2147483647, 'US', 'United States'), +('206.89.122.0', '206.89.122.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.89.123.0', '206.89.128.255', 2147483647, 2147483647, 'US', 'United States'), +('206.89.129.0', '206.89.129.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.89.130.0', '206.89.150.255', 2147483647, 2147483647, 'US', 'United States'), +('206.89.151.0', '206.89.151.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.89.152.0', '206.89.177.255', 2147483647, 2147483647, 'US', 'United States'), +('206.89.178.0', '206.89.178.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.89.179.0', '206.89.208.255', 2147483647, 2147483647, 'US', 'United States'), +('206.89.209.0', '206.89.209.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.89.210.0', '206.89.236.255', 2147483647, 2147483647, 'US', 'United States'), +('206.89.237.0', '206.89.237.255', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('206.89.238.0', '206.89.240.255', 2147483647, 2147483647, 'US', 'United States'), +('206.89.241.0', '206.89.241.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.89.242.0', '206.89.244.255', 2147483647, 2147483647, 'US', 'United States'), +('206.89.245.0', '206.89.246.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.89.247.0', '206.92.49.255', 2147483647, 2147483647, 'US', 'United States'), +('206.92.50.0', '206.92.50.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.92.51.0', '206.92.97.255', 2147483647, 2147483647, 'US', 'United States'), +('206.92.98.0', '206.92.98.255', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('206.92.99.0', '206.92.109.255', 2147483647, 2147483647, 'US', 'United States'), +('206.92.110.0', '206.92.110.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.92.111.0', '206.92.126.255', 2147483647, 2147483647, 'US', 'United States'), +('206.92.127.0', '206.92.127.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.92.128.0', '206.92.131.255', 2147483647, 2147483647, 'US', 'United States'), +('206.92.132.0', '206.92.132.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.92.133.0', '206.92.135.255', 2147483647, 2147483647, 'US', 'United States'), +('206.92.136.0', '206.92.137.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.92.138.0', '206.92.138.255', 2147483647, 2147483647, 'US', 'United States'), +('206.92.139.0', '206.92.139.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.92.140.0', '206.92.147.255', 2147483647, 2147483647, 'US', 'United States'), +('206.92.148.0', '206.92.148.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.92.149.0', '206.92.150.255', 2147483647, 2147483647, 'US', 'United States'), +('206.92.151.0', '206.92.151.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.92.152.0', '206.92.171.255', 2147483647, 2147483647, 'US', 'United States'), +('206.92.172.0', '206.92.172.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.92.173.0', '206.92.177.255', 2147483647, 2147483647, 'US', 'United States'), +('206.92.178.0', '206.92.180.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.92.181.0', '206.92.218.255', 2147483647, 2147483647, 'US', 'United States'), +('206.92.219.0', '206.92.219.255', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('206.92.220.0', '206.92.227.255', 2147483647, 2147483647, 'US', 'United States'), +('206.92.228.0', '206.92.228.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.92.229.0', '206.93.115.255', 2147483647, 2147483647, 'US', 'United States'), +('206.93.116.0', '206.93.116.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.93.117.0', '206.93.118.255', 2147483647, 2147483647, 'US', 'United States'), +('206.93.119.0', '206.93.119.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.93.120.0', '206.94.5.255', 2147483647, 2147483647, 'US', 'United States'), +('206.94.6.0', '206.94.6.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.94.7.0', '206.94.38.255', 2147483647, 2147483647, 'US', 'United States'), +('206.94.39.0', '206.94.39.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.94.40.0', '206.94.90.255', 2147483647, 2147483647, 'US', 'United States'), +('206.94.91.0', '206.94.91.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.94.92.0', '206.94.184.255', 2147483647, 2147483647, 'US', 'United States'), +('206.94.185.0', '206.94.185.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.94.186.0', '206.94.212.255', 2147483647, 2147483647, 'US', 'United States'), +('206.94.213.0', '206.94.213.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.94.214.0', '206.94.214.255', 2147483647, 2147483647, 'US', 'United States'), +('206.94.215.0', '206.94.215.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.94.216.0', '206.94.221.255', 2147483647, 2147483647, 'US', 'United States'), +('206.94.222.0', '206.94.222.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.94.223.0', '206.95.25.255', 2147483647, 2147483647, 'US', 'United States'), +('206.95.26.0', '206.95.27.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.95.28.0', '206.95.31.255', 2147483647, 2147483647, 'US', 'United States'), +('206.95.32.0', '206.95.32.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.95.33.0', '206.95.71.255', 2147483647, 2147483647, 'US', 'United States'), +('206.95.72.0', '206.95.72.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.95.73.0', '206.98.164.87', 2147483647, 2147483647, 'US', 'United States'), +('206.98.164.88', '206.98.164.95', 2147483647, 2147483647, 'CA', 'Canada'), +('206.98.164.96', '206.98.166.143', 2147483647, 2147483647, 'US', 'United States'), +('206.98.166.144', '206.98.166.151', 2147483647, 2147483647, 'CA', 'Canada'), +('206.98.166.152', '206.98.252.255', 2147483647, 2147483647, 'US', 'United States'), +('206.98.253.0', '206.98.255.255', 2147483647, 2147483647, 'GN', 'Guinea'), +('206.99.0.0', '206.99.43.255', 2147483647, 2147483647, 'US', 'United States'), +('206.99.44.0', '206.99.55.255', 2147483647, 2147483647, 'UY', 'Uruguay'), +('206.99.56.0', '206.99.152.255', 2147483647, 2147483647, 'US', 'United States'), +('206.99.153.0', '206.99.153.71', 2147483647, 2147483647, 'BV', 'Bouvet Island'), +('206.99.153.72', '206.99.155.7', 2147483647, 2147483647, 'US', 'United States'), +('206.99.155.8', '206.99.155.15', 2147483647, 2147483647, 'SG', 'Singapore'), +('206.99.155.16', '206.99.155.127', 2147483647, 2147483647, 'US', 'United States'), +('206.99.155.128', '206.99.155.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('206.99.156.0', '206.103.128.7', 2147483647, 2147483647, 'US', 'United States'), +('206.103.128.8', '206.103.128.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('206.103.128.16', '206.105.13.79', 2147483647, 2147483647, 'US', 'United States'), +('206.105.13.80', '206.105.13.87', 2147483647, 2147483647, 'CA', 'Canada'), +('206.105.13.88', '206.105.63.255', 2147483647, 2147483647, 'US', 'United States'), +('206.105.64.0', '206.105.71.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('206.105.72.0', '206.105.173.255', 2147483647, 2147483647, 'US', 'United States'), +('206.105.174.0', '206.105.175.255', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('206.105.176.0', '206.105.215.255', 2147483647, 2147483647, 'US', 'United States'), +('206.105.216.0', '206.105.219.255', 2147483647, 2147483647, 'ES', 'Spain'), +('206.105.220.0', '206.106.139.255', 2147483647, 2147483647, 'US', 'United States'), +('206.106.140.0', '206.106.143.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.106.144.0', '206.106.247.255', 2147483647, 2147483647, 'US', 'United States'), +('206.106.248.0', '206.106.255.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('206.107.0.0', '206.107.147.255', 2147483647, 2147483647, 'US', 'United States'), +('206.107.148.0', '206.107.151.255', 2147483647, 2147483647, 'BO', 'Bolivia'), +('206.107.152.0', '206.107.223.255', 2147483647, 2147483647, 'US', 'United States'), +('206.107.224.0', '206.107.225.255', 2147483647, 2147483647, 'AN', 'Netherlands Antilles'), +('206.107.226.0', '206.107.255.255', 2147483647, 2147483647, 'US', 'United States'), +('206.108.0.0', '206.108.39.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.108.40.0', '206.108.55.255', 2147483647, 2147483647, 'US', 'United States'), +('206.108.56.0', '206.108.112.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.108.113.0', '206.108.113.255', 2147483647, 2147483647, 'US', 'United States'), +('206.108.116.0', '206.108.119.255', 2147483647, 2147483647, 'US', 'United States'), +('206.108.120.0', '206.108.175.143', 2147483647, 2147483647, 'CA', 'Canada'), +('206.108.175.144', '206.108.175.151', 2147483647, 2147483647, 'US', 'United States'), +('206.108.175.152', '206.108.231.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.108.232.0', '206.108.235.255', 2147483647, 2147483647, 'US', 'United States'), +('206.108.236.0', '206.108.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.109.0.0', '206.112.130.255', 2147483647, 2147483647, 'US', 'United States'), +('206.112.131.0', '206.112.131.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.112.132.0', '206.113.23.255', 2147483647, 2147483647, 'US', 'United States'), +('206.113.24.0', '206.113.31.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('206.113.32.0', '206.114.23.79', 2147483647, 2147483647, 'US', 'United States'), +('206.114.23.80', '206.114.23.95', 2147483647, 2147483647, 'UM', 'United States Minor Outlying Islands'), +('206.114.23.96', '206.114.97.255', 2147483647, 2147483647, 'US', 'United States'), +('206.114.98.0', '206.114.98.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('206.114.99.0', '206.115.255.255', 2147483647, 2147483647, 'US', 'United States'), +('206.116.0.0', '206.116.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.117.0.0', '206.122.101.255', 2147483647, 2147483647, 'US', 'United States'), +('206.122.102.0', '206.122.102.255', 2147483647, 2147483647, 'DE', 'Germany'), +('206.122.103.0', '206.122.107.255', 2147483647, 2147483647, 'US', 'United States'), +('206.122.108.0', '206.122.109.255', 2147483647, 2147483647, 'DE', 'Germany'), +('206.122.110.0', '206.122.255.255', 2147483647, 2147483647, 'US', 'United States'), +('206.123.0.0', '206.123.16.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.123.17.0', '206.123.17.255', 2147483647, 2147483647, 'US', 'United States'), +('206.123.18.0', '206.123.51.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.123.52.0', '206.123.66.167', 2147483647, 2147483647, 'US', 'United States'), +('206.123.66.168', '206.123.66.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('206.123.66.176', '206.123.66.191', 2147483647, 2147483647, 'CA', 'Canada'), +('206.123.66.192', '206.123.71.159', 2147483647, 2147483647, 'US', 'United States'), +('206.123.71.160', '206.123.71.191', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('206.123.71.192', '206.123.85.255', 2147483647, 2147483647, 'US', 'United States'), +('206.123.86.0', '206.123.87.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('206.123.88.0', '206.123.89.255', 2147483647, 2147483647, 'US', 'United States'), +('206.123.90.0', '206.123.90.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.123.91.0', '206.123.109.215', 2147483647, 2147483647, 'US', 'United States'), +('206.123.109.216', '206.123.109.223', 2147483647, 2147483647, 'IT', 'Italy'), +('206.123.109.224', '206.123.111.47', 2147483647, 2147483647, 'US', 'United States'), +('206.123.111.48', '206.123.111.55', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('206.123.111.56', '206.123.111.103', 2147483647, 2147483647, 'US', 'United States'), +('206.123.111.104', '206.123.111.111', 2147483647, 2147483647, 'AU', 'Australia'), +('206.123.111.112', '206.123.111.119', 2147483647, 2147483647, 'IT', 'Italy'), +('206.123.111.120', '206.123.112.55', 2147483647, 2147483647, 'US', 'United States'), +('206.123.112.56', '206.123.112.63', 2147483647, 2147483647, 'AU', 'Australia'), +('206.123.112.64', '206.123.112.79', 2147483647, 2147483647, 'US', 'United States'), +('206.123.112.80', '206.123.112.87', 2147483647, 2147483647, 'AU', 'Australia'), +('206.123.112.88', '206.123.112.95', 2147483647, 2147483647, 'IT', 'Italy'), +('206.123.112.96', '206.123.112.191', 2147483647, 2147483647, 'US', 'United States'), +('206.123.112.192', '206.123.112.199', 2147483647, 2147483647, 'SG', 'Singapore'), +('206.123.112.200', '206.123.159.255', 2147483647, 2147483647, 'US', 'United States'), +('206.123.160.0', '206.123.191.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.123.192.0', '206.125.163.255', 2147483647, 2147483647, 'US', 'United States'), +('206.125.164.0', '206.125.167.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.125.168.0', '206.126.71.255', 2147483647, 2147483647, 'US', 'United States'), +('206.126.80.0', '206.126.95.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.126.96.0', '206.126.119.255', 2147483647, 2147483647, 'US', 'United States'), +('206.126.120.0', '206.126.127.255', 2147483647, 2147483647, 'VC', 'Saint Vincent and the Grenadines'), +('206.126.128.0', '206.128.208.15', 2147483647, 2147483647, 'US', 'United States'), +('206.128.208.16', '206.128.208.23', 2147483647, 2147483647, 'AG', 'Antigua and Barbuda'), +('206.128.208.24', '206.128.208.39', 2147483647, 2147483647, 'US', 'United States'), +('206.128.208.40', '206.128.208.47', 2147483647, 2147483647, 'AG', 'Antigua and Barbuda'), +('206.128.208.48', '206.128.208.63', 2147483647, 2147483647, 'US', 'United States'), +('206.128.208.64', '206.128.208.79', 2147483647, 2147483647, 'AG', 'Antigua and Barbuda'), +('206.128.208.80', '206.128.208.127', 2147483647, 2147483647, 'US', 'United States'), +('206.128.208.128', '206.128.208.247', 2147483647, 2147483647, 'AG', 'Antigua and Barbuda'), +('206.128.208.248', '206.128.208.255', 2147483647, 2147483647, 'US', 'United States'), +('206.128.209.0', '206.128.209.255', 2147483647, 2147483647, 'LC', 'Saint Lucia'), +('206.128.210.0', '206.128.210.255', 2147483647, 2147483647, 'KN', 'Saint Kitts and Nevis'), +('206.128.211.0', '206.128.211.255', 2147483647, 2147483647, 'VG', 'Virgin Islands, British'), +('206.128.212.0', '206.128.212.15', 2147483647, 2147483647, 'US', 'United States'), +('206.128.212.16', '206.128.212.23', 2147483647, 2147483647, 'AG', 'Antigua and Barbuda'), +('206.128.212.24', '206.128.212.39', 2147483647, 2147483647, 'US', 'United States'), +('206.128.212.40', '206.128.212.63', 2147483647, 2147483647, 'AG', 'Antigua and Barbuda'), +('206.128.212.64', '206.128.212.127', 2147483647, 2147483647, 'MS', 'Montserrat'), +('206.128.212.128', '206.128.212.143', 2147483647, 2147483647, 'AG', 'Antigua and Barbuda'), +('206.128.212.144', '206.128.212.175', 2147483647, 2147483647, 'US', 'United States'), +('206.128.212.176', '206.128.212.191', 2147483647, 2147483647, 'AG', 'Antigua and Barbuda'), +('206.128.212.192', '206.128.213.7', 2147483647, 2147483647, 'US', 'United States'), +('206.128.213.8', '206.128.213.47', 2147483647, 2147483647, 'AG', 'Antigua and Barbuda'), +('206.128.213.48', '206.128.213.55', 2147483647, 2147483647, 'US', 'United States'), +('206.128.213.56', '206.128.213.95', 2147483647, 2147483647, 'AG', 'Antigua and Barbuda'), +('206.128.213.96', '206.128.213.127', 2147483647, 2147483647, 'KN', 'Saint Kitts and Nevis'), +('206.128.213.128', '206.128.213.223', 2147483647, 2147483647, 'AG', 'Antigua and Barbuda'), +('206.128.213.224', '206.128.213.231', 2147483647, 2147483647, 'US', 'United States'), +('206.128.213.232', '206.128.213.239', 2147483647, 2147483647, 'AG', 'Antigua and Barbuda'), +('206.128.213.240', '206.128.214.31', 2147483647, 2147483647, 'US', 'United States'), +('206.128.214.32', '206.128.214.39', 2147483647, 2147483647, 'AG', 'Antigua and Barbuda'), +('206.128.214.40', '206.128.214.47', 2147483647, 2147483647, 'US', 'United States'), +('206.128.214.48', '206.128.214.55', 2147483647, 2147483647, 'AG', 'Antigua and Barbuda'), +('206.128.214.56', '206.128.214.63', 2147483647, 2147483647, 'US', 'United States'), +('206.128.214.64', '206.128.214.127', 2147483647, 2147483647, 'AG', 'Antigua and Barbuda'), +('206.128.214.128', '206.128.214.159', 2147483647, 2147483647, 'US', 'United States'), +('206.128.214.160', '206.128.214.239', 2147483647, 2147483647, 'AG', 'Antigua and Barbuda'), +('206.128.214.240', '206.128.214.255', 2147483647, 2147483647, 'US', 'United States'), +('206.128.215.0', '206.128.215.255', 2147483647, 2147483647, 'LC', 'Saint Lucia'), +('206.128.216.0', '206.129.255.255', 2147483647, 2147483647, 'US', 'United States'), +('206.130.0.0', '206.130.15.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.130.16.0', '206.130.19.255', 2147483647, 2147483647, 'US', 'United States'), +('206.130.20.0', '206.130.95.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.130.96.0', '206.130.147.255', 2147483647, 2147483647, 'US', 'United States'), +('206.130.148.0', '206.130.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.131.0.0', '206.132.47.255', 2147483647, 2147483647, 'US', 'United States'), +('206.132.48.0', '206.132.63.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.132.64.0', '206.132.175.255', 2147483647, 2147483647, 'US', 'United States'), +('206.132.176.0', '206.132.191.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.132.192.0', '206.138.15.255', 2147483647, 2147483647, 'US', 'United States'), +('206.138.16.0', '206.138.31.255', 2147483647, 2147483647, 'BS', 'Bahamas'), +('206.138.32.0', '206.138.103.255', 2147483647, 2147483647, 'US', 'United States'), +('206.138.104.0', '206.138.111.255', 2147483647, 2147483647, 'PE', 'Peru'), +('206.138.112.0', '206.143.127.255', 2147483647, 2147483647, 'US', 'United States'), +('206.143.128.0', '206.143.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('206.144.0.0', '206.150.180.55', 2147483647, 2147483647, 'US', 'United States'), +('206.150.180.56', '206.150.180.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('206.150.180.96', '206.150.180.255', 2147483647, 2147483647, 'US', 'United States'), +('206.150.181.0', '206.150.181.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('206.150.181.32', '206.150.181.39', 2147483647, 2147483647, 'US', 'United States'), +('206.150.181.40', '206.150.181.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('206.150.181.80', '206.150.181.231', 2147483647, 2147483647, 'US', 'United States'), +('206.150.181.232', '206.150.181.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('206.150.182.0', '206.151.165.231', 2147483647, 2147483647, 'US', 'United States'), +('206.151.165.232', '206.151.165.239', 2147483647, 2147483647, 'PH', 'Philippines'), +('206.151.165.240', '206.153.95.255', 2147483647, 2147483647, 'US', 'United States'), +('206.153.96.0', '206.153.127.255', 2147483647, 2147483647, 'PA', 'Panama'), +('206.153.128.0', '206.158.111.255', 2147483647, 2147483647, 'US', 'United States'), +('206.158.112.0', '206.158.112.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.158.113.0', '206.159.111.63', 2147483647, 2147483647, 'US', 'United States'), +('206.159.111.64', '206.159.111.79', 2147483647, 2147483647, 'CA', 'Canada'), +('206.159.111.80', '206.159.122.255', 2147483647, 2147483647, 'US', 'United States'), +('206.159.123.0', '206.159.123.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('206.159.124.0', '206.159.130.255', 2147483647, 2147483647, 'US', 'United States'), +('206.159.131.0', '206.159.131.255', 2147483647, 2147483647, 'GH', 'Ghana'), +('206.159.132.0', '206.160.135.191', 2147483647, 2147483647, 'US', 'United States'), +('206.160.135.192', '206.160.135.223', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('206.160.135.224', '206.160.213.255', 2147483647, 2147483647, 'US', 'United States'), +('206.160.214.0', '206.160.214.7', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('206.160.214.8', '206.162.44.255', 2147483647, 2147483647, 'US', 'United States'), +('206.162.45.0', '206.162.45.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('206.162.46.0', '206.162.127.255', 2147483647, 2147483647, 'US', 'United States'), +('206.162.128.0', '206.162.191.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.162.192.0', '206.162.223.255', 2147483647, 2147483647, 'US', 'United States'), +('206.163.0.0', '206.163.223.255', 2147483647, 2147483647, 'US', 'United States'), +('206.163.224.0', '206.163.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.164.0.0', '206.166.255.255', 2147483647, 2147483647, 'US', 'United States'), +('206.167.0.0', '206.167.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.168.0.0', '206.168.112.135', 2147483647, 2147483647, 'US', 'United States'), +('206.168.112.136', '206.168.112.143', 2147483647, 2147483647, 'DE', 'Germany'), +('206.168.112.144', '206.168.114.15', 2147483647, 2147483647, 'US', 'United States'), +('206.168.114.16', '206.168.114.23', 2147483647, 2147483647, 'DE', 'Germany'), +('206.168.114.24', '206.168.114.87', 2147483647, 2147483647, 'US', 'United States'), +('206.168.114.88', '206.168.114.95', 2147483647, 2147483647, 'DE', 'Germany'), +('206.168.114.96', '206.168.114.103', 2147483647, 2147483647, 'CH', 'Switzerland'), +('206.168.114.104', '206.168.114.111', 2147483647, 2147483647, 'US', 'United States'), +('206.168.114.112', '206.168.114.119', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('206.168.114.120', '206.168.114.127', 2147483647, 2147483647, 'DE', 'Germany'), +('206.168.114.128', '206.168.116.255', 2147483647, 2147483647, 'US', 'United States'), +('206.168.117.0', '206.168.117.63', 2147483647, 2147483647, 'CO', 'Colombia'), +('206.168.117.64', '206.168.117.95', 2147483647, 2147483647, 'DE', 'Germany'), +('206.168.117.96', '206.168.117.159', 2147483647, 2147483647, 'US', 'United States'), +('206.168.117.160', '206.168.117.175', 2147483647, 2147483647, 'CN', 'China'), +('206.168.117.176', '206.171.255.255', 2147483647, 2147483647, 'US', 'United States'), +('206.172.0.0', '206.172.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.173.0.0', '206.174.175.255', 2147483647, 2147483647, 'US', 'United States'), +('206.174.176.0', '206.174.223.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.174.224.0', '206.175.174.95', 2147483647, 2147483647, 'US', 'United States'), +('206.175.174.96', '206.175.174.127', 2147483647, 2147483647, 'CA', 'Canada'), +('206.175.174.128', '206.176.255.255', 2147483647, 2147483647, 'US', 'United States'), +('206.177.0.0', '206.179.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.180.0.0', '206.181.255.255', 2147483647, 2147483647, 'US', 'United States'), +('206.182.0.0', '206.182.7.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('206.182.8.0', '206.182.8.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('206.182.9.0', '206.182.9.255', 2147483647, 2147483647, 'DE', 'Germany'), +('206.182.10.0', '206.182.10.255', 2147483647, 2147483647, 'ES', 'Spain'), +('206.182.11.0', '206.182.12.255', 2147483647, 2147483647, 'DE', 'Germany'), +('206.182.13.0', '206.182.14.255', 2147483647, 2147483647, 'US', 'United States'), +('206.182.15.0', '206.182.15.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('206.182.16.0', '206.182.17.255', 2147483647, 2147483647, 'FR', 'France'), +('206.182.18.0', '206.182.18.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('206.182.19.0', '206.182.19.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('206.182.20.0', '206.182.20.255', 2147483647, 2147483647, 'FR', 'France'), +('206.182.21.0', '206.182.27.255', 2147483647, 2147483647, 'US', 'United States'), +('206.182.28.0', '206.182.28.255', 2147483647, 2147483647, 'FI', 'Finland'), +('206.182.29.0', '206.182.29.255', 2147483647, 2147483647, 'US', 'United States'), +('206.182.30.0', '206.182.30.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('206.182.31.0', '206.182.32.127', 2147483647, 2147483647, 'US', 'United States'), +('206.182.32.128', '206.182.32.191', 2147483647, 2147483647, 'IT', 'Italy'), +('206.182.32.192', '206.182.32.255', 2147483647, 2147483647, 'US', 'United States'), +('206.182.33.0', '206.182.33.255', 2147483647, 2147483647, 'AT', 'Austria'), +('206.182.34.0', '206.182.35.127', 2147483647, 2147483647, 'US', 'United States'), +('206.182.35.128', '206.182.35.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('206.182.36.0', '206.182.40.255', 2147483647, 2147483647, 'US', 'United States'), +('206.182.41.0', '206.182.41.255', 2147483647, 2147483647, 'ES', 'Spain'), +('206.182.42.0', '206.182.42.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('206.182.42.128', '206.182.42.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('206.182.43.0', '206.182.43.255', 2147483647, 2147483647, 'DE', 'Germany'), +('206.182.44.0', '206.182.45.127', 2147483647, 2147483647, 'US', 'United States'), +('206.182.45.128', '206.182.45.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('206.182.46.0', '206.182.46.255', 2147483647, 2147483647, 'NO', 'Norway'), +('206.182.47.0', '206.182.47.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('206.182.48.0', '206.182.48.255', 2147483647, 2147483647, 'FR', 'France'), +('206.182.49.0', '206.182.49.127', 2147483647, 2147483647, 'US', 'United States'), +('206.182.49.128', '206.182.49.255', 2147483647, 2147483647, 'DE', 'Germany'), +('206.182.50.0', '206.182.50.255', 2147483647, 2147483647, 'IT', 'Italy'), +('206.182.51.0', '206.182.51.255', 2147483647, 2147483647, 'US', 'United States'), +('206.182.52.0', '206.182.52.255', 2147483647, 2147483647, 'DE', 'Germany'), +('206.182.53.0', '206.182.53.127', 2147483647, 2147483647, 'US', 'United States'), +('206.182.53.128', '206.182.53.191', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('206.182.53.192', '206.182.53.255', 2147483647, 2147483647, 'US', 'United States'), +('206.182.54.0', '206.182.54.15', 2147483647, 2147483647, 'ES', 'Spain'), +('206.182.54.16', '206.182.54.127', 2147483647, 2147483647, 'US', 'United States'), +('206.182.54.128', '206.182.54.255', 2147483647, 2147483647, 'DE', 'Germany'), +('206.182.55.0', '206.182.55.255', 2147483647, 2147483647, 'US', 'United States'), +('206.182.56.0', '206.182.56.255', 2147483647, 2147483647, 'FR', 'France'), +('206.182.57.0', '206.182.59.255', 2147483647, 2147483647, 'US', 'United States'), +('206.182.60.0', '206.182.60.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('206.182.61.0', '206.182.61.255', 2147483647, 2147483647, 'US', 'United States'), +('206.182.62.0', '206.182.62.255', 2147483647, 2147483647, 'IT', 'Italy'), +('206.182.63.0', '206.182.63.255', 2147483647, 2147483647, 'US', 'United States'), +('206.182.64.0', '206.182.64.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('206.182.65.0', '206.182.65.255', 2147483647, 2147483647, 'US', 'United States'), +('206.182.66.0', '206.182.66.63', 2147483647, 2147483647, 'IT', 'Italy'), +('206.182.66.64', '206.182.67.31', 2147483647, 2147483647, 'US', 'United States'), +('206.182.67.32', '206.182.67.63', 2147483647, 2147483647, 'DK', 'Denmark'), +('206.182.67.64', '206.182.67.127', 2147483647, 2147483647, 'AT', 'Austria'), +('206.182.67.128', '206.182.71.255', 2147483647, 2147483647, 'US', 'United States'), +('206.182.72.0', '206.182.72.255', 2147483647, 2147483647, 'ES', 'Spain'), +('206.182.73.0', '206.182.73.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('206.182.74.0', '206.182.74.255', 2147483647, 2147483647, 'ES', 'Spain'), +('206.182.75.0', '206.182.75.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('206.182.76.0', '206.182.76.255', 2147483647, 2147483647, 'AU', 'Australia'), +('206.182.77.0', '206.182.77.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('206.182.78.0', '206.182.78.255', 2147483647, 2147483647, 'DE', 'Germany'), +('206.182.79.0', '206.182.82.255', 2147483647, 2147483647, 'US', 'United States'), +('206.182.83.0', '206.182.83.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('206.182.84.0', '206.182.84.255', 2147483647, 2147483647, 'IT', 'Italy'), +('206.182.85.0', '206.182.85.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('206.182.86.0', '206.182.86.255', 2147483647, 2147483647, 'FR', 'France'), +('206.182.87.0', '206.182.87.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('206.182.88.0', '206.182.88.255', 2147483647, 2147483647, 'NO', 'Norway'), +('206.182.89.0', '206.182.89.127', 2147483647, 2147483647, 'DK', 'Denmark'), +('206.182.89.128', '206.182.89.191', 2147483647, 2147483647, 'IN', 'India'), +('206.182.89.192', '206.182.89.255', 2147483647, 2147483647, 'US', 'United States'), +('206.182.90.0', '206.182.90.127', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('206.182.90.128', '206.182.91.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('206.182.91.32', '206.182.91.255', 2147483647, 2147483647, 'US', 'United States'), +('206.182.92.0', '206.182.92.255', 2147483647, 2147483647, 'IL', 'Israel'), +('206.182.93.0', '206.182.93.255', 2147483647, 2147483647, 'US', 'United States'), +('206.182.94.0', '206.182.94.63', 2147483647, 2147483647, 'BE', 'Belgium'), +('206.182.94.64', '206.182.94.127', 2147483647, 2147483647, 'CH', 'Switzerland'), +('206.182.94.128', '206.182.94.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('206.182.95.0', '206.182.95.0', 2147483647, 2147483647, 'US', 'United States'), +('206.182.95.1', '206.182.95.64', 2147483647, 2147483647, 'IT', 'Italy'), +('206.182.95.65', '206.182.95.191', 2147483647, 2147483647, 'US', 'United States'), +('206.182.95.192', '206.182.95.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('206.182.96.0', '206.182.96.63', 2147483647, 2147483647, 'US', 'United States'), +('206.182.96.64', '206.182.96.95', 2147483647, 2147483647, 'ES', 'Spain'), +('206.182.96.96', '206.182.99.255', 2147483647, 2147483647, 'US', 'United States'), +('206.182.100.0', '206.182.100.255', 2147483647, 2147483647, 'FR', 'France'), +('206.182.101.0', '206.182.101.255', 2147483647, 2147483647, 'DE', 'Germany'), +('206.182.102.0', '206.182.103.255', 2147483647, 2147483647, 'FR', 'France'), +('206.182.104.0', '206.182.104.255', 2147483647, 2147483647, 'US', 'United States'), +('206.182.105.0', '206.182.105.63', 2147483647, 2147483647, 'FR', 'France'), +('206.182.105.64', '206.182.105.191', 2147483647, 2147483647, 'US', 'United States'), +('206.182.105.192', '206.182.105.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('206.182.106.0', '206.182.107.255', 2147483647, 2147483647, 'US', 'United States'), +('206.182.108.0', '206.182.108.255', 2147483647, 2147483647, 'JP', 'Japan'), +('206.182.109.0', '206.182.109.127', 2147483647, 2147483647, 'US', 'United States'), +('206.182.109.128', '206.182.109.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('206.182.109.192', '206.182.110.127', 2147483647, 2147483647, 'US', 'United States'), +('206.182.110.128', '206.182.110.191', 2147483647, 2147483647, 'TW', 'Taiwan'), +('206.182.110.192', '206.182.110.255', 2147483647, 2147483647, 'DE', 'Germany'), +('206.182.111.0', '206.182.111.255', 2147483647, 2147483647, 'AT', 'Austria'), +('206.182.112.0', '206.182.113.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('206.182.114.0', '206.182.114.127', 2147483647, 2147483647, 'US', 'United States'), +('206.182.114.128', '206.182.114.191', 2147483647, 2147483647, 'RO', 'Romania'), +('206.182.114.192', '206.182.114.255', 2147483647, 2147483647, 'US', 'United States'), +('206.182.115.0', '206.182.115.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('206.182.116.0', '206.182.116.255', 2147483647, 2147483647, 'US', 'United States'), +('206.182.117.0', '206.182.117.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('206.182.118.0', '206.182.118.255', 2147483647, 2147483647, 'US', 'United States'), +('206.182.119.0', '206.182.119.15', 2147483647, 2147483647, 'BE', 'Belgium'), +('206.182.119.16', '206.182.119.31', 2147483647, 2147483647, 'US', 'United States'), +('206.182.119.32', '206.182.119.63', 2147483647, 2147483647, 'NO', 'Norway'), +('206.182.119.64', '206.182.119.127', 2147483647, 2147483647, 'US', 'United States'), +('206.182.119.128', '206.182.119.191', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('206.182.119.192', '206.182.119.223', 2147483647, 2147483647, 'US', 'United States'), +('206.182.119.224', '206.182.119.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('206.182.120.0', '206.182.120.255', 2147483647, 2147483647, 'DE', 'Germany'), +('206.182.121.0', '206.182.121.255', 2147483647, 2147483647, 'US', 'United States'), +('206.182.122.0', '206.182.122.255', 2147483647, 2147483647, 'DE', 'Germany'), +('206.182.123.0', '206.182.123.255', 2147483647, 2147483647, 'US', 'United States'), +('206.182.124.0', '206.182.124.127', 2147483647, 2147483647, 'IT', 'Italy'), +('206.182.124.128', '206.182.124.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('206.182.124.160', '206.182.124.191', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('206.182.124.192', '206.182.124.207', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('206.182.124.208', '206.182.124.223', 2147483647, 2147483647, 'BE', 'Belgium'), +('206.182.124.224', '206.182.124.255', 2147483647, 2147483647, 'DE', 'Germany'), +('206.182.125.0', '206.182.125.191', 2147483647, 2147483647, 'US', 'United States'), +('206.182.125.192', '206.182.125.223', 2147483647, 2147483647, 'IE', 'Ireland'), +('206.182.125.224', '206.182.126.15', 2147483647, 2147483647, 'US', 'United States'), +('206.182.126.16', '206.182.126.23', 2147483647, 2147483647, 'FR', 'France'), +('206.182.126.24', '206.182.126.63', 2147483647, 2147483647, 'US', 'United States'), +('206.182.126.64', '206.182.126.95', 2147483647, 2147483647, 'FR', 'France'), +('206.182.126.96', '206.182.126.159', 2147483647, 2147483647, 'US', 'United States'), +('206.182.126.160', '206.182.126.191', 2147483647, 2147483647, 'SE', 'Sweden'), +('206.182.126.192', '206.182.126.223', 2147483647, 2147483647, 'CH', 'Switzerland'), +('206.182.126.224', '206.182.126.255', 2147483647, 2147483647, 'FR', 'France'), +('206.182.127.0', '206.182.127.63', 2147483647, 2147483647, 'IT', 'Italy'), +('206.182.127.64', '206.182.129.127', 2147483647, 2147483647, 'US', 'United States'), +('206.182.129.128', '206.182.129.159', 2147483647, 2147483647, 'CA', 'Canada'), +('206.182.129.160', '206.182.129.191', 2147483647, 2147483647, 'US', 'United States'), +('206.182.129.192', '206.182.129.223', 2147483647, 2147483647, 'IL', 'Israel'), +('206.182.129.224', '206.182.129.255', 2147483647, 2147483647, 'US', 'United States'), +('206.182.130.0', '206.182.130.31', 2147483647, 2147483647, 'BR', 'Brazil'), +('206.182.130.32', '206.182.130.63', 2147483647, 2147483647, 'US', 'United States'), +('206.182.130.64', '206.182.130.71', 2147483647, 2147483647, 'BR', 'Brazil'), +('206.182.130.72', '206.182.130.223', 2147483647, 2147483647, 'US', 'United States'), +('206.182.130.224', '206.182.130.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('206.182.130.240', '206.182.131.175', 2147483647, 2147483647, 'US', 'United States'), +('206.182.131.176', '206.182.131.191', 2147483647, 2147483647, 'AR', 'Argentina'), +('206.182.131.192', '206.182.132.255', 2147483647, 2147483647, 'US', 'United States'), +('206.182.133.0', '206.182.133.255', 2147483647, 2147483647, 'MC', 'Monaco'), +('206.182.134.0', '206.182.134.175', 2147483647, 2147483647, 'US', 'United States'), +('206.182.134.176', '206.182.134.191', 2147483647, 2147483647, 'MX', 'Mexico'), +('206.182.134.192', '206.182.135.255', 2147483647, 2147483647, 'US', 'United States'), +('206.182.136.0', '206.182.138.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.182.139.0', '206.182.147.111', 2147483647, 2147483647, 'US', 'United States'), +('206.182.147.112', '206.182.147.127', 2147483647, 2147483647, 'MX', 'Mexico'), +('206.182.147.128', '206.182.147.191', 2147483647, 2147483647, 'US', 'United States'), +('206.182.147.192', '206.182.147.207', 2147483647, 2147483647, 'MX', 'Mexico'), +('206.182.147.208', '206.182.149.159', 2147483647, 2147483647, 'US', 'United States'), +('206.182.149.160', '206.182.149.191', 2147483647, 2147483647, 'CA', 'Canada'), +('206.182.149.192', '206.182.152.223', 2147483647, 2147483647, 'US', 'United States'), +('206.182.152.224', '206.182.152.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('206.182.153.0', '206.182.154.255', 2147483647, 2147483647, 'US', 'United States'), +('206.182.155.0', '206.182.155.63', 2147483647, 2147483647, 'CA', 'Canada'), +('206.182.155.64', '206.182.155.127', 2147483647, 2147483647, 'US', 'United States'), +('206.182.155.128', '206.182.155.191', 2147483647, 2147483647, 'CA', 'Canada'), +('206.182.155.192', '206.182.157.223', 2147483647, 2147483647, 'US', 'United States'), +('206.182.157.224', '206.182.157.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('206.182.157.240', '206.182.163.143', 2147483647, 2147483647, 'US', 'United States'), +('206.182.163.144', '206.182.163.159', 2147483647, 2147483647, 'BR', 'Brazil'), +('206.182.163.160', '206.182.163.191', 2147483647, 2147483647, 'US', 'United States'), +('206.182.163.192', '206.182.163.223', 2147483647, 2147483647, 'MX', 'Mexico'), +('206.182.163.224', '206.182.163.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('206.182.164.0', '206.182.164.159', 2147483647, 2147483647, 'US', 'United States'), +('206.182.164.160', '206.182.164.175', 2147483647, 2147483647, 'BR', 'Brazil'), +('206.182.164.176', '206.182.164.191', 2147483647, 2147483647, 'US', 'United States'), +('206.182.164.192', '206.182.164.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('206.182.165.0', '206.182.170.63', 2147483647, 2147483647, 'US', 'United States'), +('206.182.170.64', '206.182.170.95', 2147483647, 2147483647, 'AR', 'Argentina'), +('206.182.170.96', '206.182.176.223', 2147483647, 2147483647, 'US', 'United States'), +('206.182.176.224', '206.182.176.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('206.182.177.0', '206.182.177.127', 2147483647, 2147483647, 'US', 'United States'), +('206.182.177.128', '206.182.177.191', 2147483647, 2147483647, 'JP', 'Japan'), +('206.182.177.192', '206.182.184.255', 2147483647, 2147483647, 'US', 'United States'), +('206.182.185.0', '206.182.185.255', 2147483647, 2147483647, 'DE', 'Germany'), +('206.182.186.0', '206.182.186.255', 2147483647, 2147483647, 'AT', 'Austria'), +('206.182.187.0', '206.182.188.255', 2147483647, 2147483647, 'US', 'United States'), +('206.182.189.0', '206.182.189.255', 2147483647, 2147483647, 'NO', 'Norway'), +('206.182.190.0', '206.182.192.111', 2147483647, 2147483647, 'US', 'United States'), +('206.182.192.112', '206.182.192.127', 2147483647, 2147483647, 'IN', 'India'), +('206.182.192.128', '206.182.192.191', 2147483647, 2147483647, 'BR', 'Brazil'), +('206.182.192.192', '206.182.193.207', 2147483647, 2147483647, 'US', 'United States'), +('206.182.193.208', '206.182.193.223', 2147483647, 2147483647, 'ID', 'Indonesia'), +('206.182.193.224', '206.182.194.255', 2147483647, 2147483647, 'US', 'United States'), +('206.182.195.0', '206.182.195.255', 2147483647, 2147483647, 'AU', 'Australia'), +('206.182.196.0', '206.182.197.255', 2147483647, 2147483647, 'US', 'United States'), +('206.182.198.0', '206.182.198.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('206.182.199.0', '206.182.199.63', 2147483647, 2147483647, 'CA', 'Canada'), +('206.182.199.64', '206.182.199.127', 2147483647, 2147483647, 'US', 'United States'), +('206.182.199.128', '206.182.199.191', 2147483647, 2147483647, 'CA', 'Canada'), +('206.182.199.192', '206.182.199.199', 2147483647, 2147483647, 'JP', 'Japan'), +('206.182.199.200', '206.182.199.207', 2147483647, 2147483647, 'PH', 'Philippines'), +('206.182.199.208', '206.182.199.215', 2147483647, 2147483647, 'CN', 'China'), +('206.182.199.216', '206.182.199.255', 2147483647, 2147483647, 'US', 'United States'), +('206.182.200.0', '206.182.200.31', 2147483647, 2147483647, 'BR', 'Brazil'), +('206.182.200.32', '206.182.200.63', 2147483647, 2147483647, 'US', 'United States'), +('206.182.200.64', '206.182.200.127', 2147483647, 2147483647, 'BR', 'Brazil'), +('206.182.200.128', '206.182.200.191', 2147483647, 2147483647, 'CN', 'China'), +('206.182.200.192', '206.182.200.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('206.182.201.0', '206.182.201.31', 2147483647, 2147483647, 'JP', 'Japan'), +('206.182.201.32', '206.182.201.47', 2147483647, 2147483647, 'US', 'United States'), +('206.182.201.48', '206.182.201.63', 2147483647, 2147483647, 'PH', 'Philippines'), +('206.182.201.64', '206.182.201.95', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('206.182.201.96', '206.182.201.103', 2147483647, 2147483647, 'US', 'United States'), +('206.182.201.104', '206.182.201.119', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('206.182.201.120', '206.182.201.159', 2147483647, 2147483647, 'US', 'United States'), +('206.182.201.160', '206.182.201.191', 2147483647, 2147483647, 'ID', 'Indonesia'), +('206.182.201.192', '206.182.201.255', 2147483647, 2147483647, 'US', 'United States'), +('206.182.202.0', '206.182.202.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('206.182.203.0', '206.182.203.127', 2147483647, 2147483647, 'US', 'United States'), +('206.182.203.128', '206.182.203.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('206.182.204.0', '206.182.205.255', 2147483647, 2147483647, 'US', 'United States'), +('206.182.206.0', '206.182.206.15', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('206.182.206.16', '206.182.206.95', 2147483647, 2147483647, 'US', 'United States'), +('206.182.206.96', '206.182.206.127', 2147483647, 2147483647, 'SG', 'Singapore'), +('206.182.206.128', '206.182.209.255', 2147483647, 2147483647, 'US', 'United States'), +('206.182.210.0', '206.182.210.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('206.182.211.0', '206.182.211.127', 2147483647, 2147483647, 'US', 'United States'), +('206.182.211.128', '206.182.211.143', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('206.182.211.144', '206.182.211.159', 2147483647, 2147483647, 'US', 'United States'), +('206.182.211.160', '206.182.211.167', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('206.182.211.168', '206.182.212.15', 2147483647, 2147483647, 'US', 'United States'), +('206.182.212.16', '206.182.212.31', 2147483647, 2147483647, 'JP', 'Japan'), +('206.182.212.32', '206.182.212.63', 2147483647, 2147483647, 'ID', 'Indonesia'), +('206.182.212.64', '206.182.212.95', 2147483647, 2147483647, 'US', 'United States'), +('206.182.212.96', '206.182.212.111', 2147483647, 2147483647, 'TW', 'Taiwan'), +('206.182.212.112', '206.182.214.127', 2147483647, 2147483647, 'US', 'United States'), +('206.182.214.128', '206.182.214.159', 2147483647, 2147483647, 'JP', 'Japan'), +('206.182.214.160', '206.182.214.191', 2147483647, 2147483647, 'US', 'United States'), +('206.182.214.192', '206.182.214.223', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('206.182.214.224', '206.182.217.63', 2147483647, 2147483647, 'US', 'United States'), +('206.182.217.64', '206.182.217.95', 2147483647, 2147483647, 'JP', 'Japan'), +('206.182.217.96', '206.182.217.223', 2147483647, 2147483647, 'US', 'United States'), +('206.182.217.224', '206.182.217.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('206.182.218.0', '206.182.220.255', 2147483647, 2147483647, 'US', 'United States'), +('206.182.221.0', '206.182.221.63', 2147483647, 2147483647, 'IT', 'Italy'), +('206.182.221.64', '206.182.221.95', 2147483647, 2147483647, 'MY', 'Malaysia'), +('206.182.221.96', '206.182.221.103', 2147483647, 2147483647, 'US', 'United States'), +('206.182.221.104', '206.182.221.111', 2147483647, 2147483647, 'JP', 'Japan'), +('206.182.221.112', '206.182.221.127', 2147483647, 2147483647, 'CN', 'China'), +('206.182.221.128', '206.182.221.191', 2147483647, 2147483647, 'US', 'United States'), +('206.182.221.192', '206.182.221.255', 2147483647, 2147483647, 'CN', 'China'), +('206.182.222.0', '206.182.222.255', 2147483647, 2147483647, 'US', 'United States'), +('206.182.223.0', '206.182.223.63', 2147483647, 2147483647, 'JP', 'Japan'), +('206.182.223.64', '206.182.223.255', 2147483647, 2147483647, 'US', 'United States'), +('206.182.224.0', '206.182.224.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('206.182.225.0', '206.182.225.255', 2147483647, 2147483647, 'US', 'United States'), +('206.182.226.0', '206.182.226.31', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('206.182.226.32', '206.182.226.127', 2147483647, 2147483647, 'US', 'United States'), +('206.182.226.128', '206.182.226.159', 2147483647, 2147483647, 'TH', 'Thailand'), +('206.182.226.160', '206.182.226.223', 2147483647, 2147483647, 'US', 'United States'), +('206.182.226.224', '206.182.226.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('206.182.227.0', '206.182.231.63', 2147483647, 2147483647, 'US', 'United States'), +('206.182.231.64', '206.182.231.79', 2147483647, 2147483647, 'JP', 'Japan'), +('206.182.231.80', '206.182.231.95', 2147483647, 2147483647, 'US', 'United States'), +('206.182.231.96', '206.182.231.103', 2147483647, 2147483647, 'JP', 'Japan'), +('206.182.231.104', '206.182.231.159', 2147483647, 2147483647, 'US', 'United States'), +('206.182.231.160', '206.182.231.191', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('206.182.231.192', '206.182.231.207', 2147483647, 2147483647, 'SG', 'Singapore'), +('206.182.231.208', '206.182.231.223', 2147483647, 2147483647, 'ID', 'Indonesia'), +('206.182.231.224', '206.182.231.255', 2147483647, 2147483647, 'AU', 'Australia'), +('206.182.232.0', '206.182.232.255', 2147483647, 2147483647, 'US', 'United States'), +('206.182.233.0', '206.182.233.255', 2147483647, 2147483647, 'DE', 'Germany'), +('206.182.234.0', '206.182.234.255', 2147483647, 2147483647, 'US', 'United States'), +('206.182.235.0', '206.182.235.15', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('206.182.235.16', '206.182.235.63', 2147483647, 2147483647, 'US', 'United States'), +('206.182.235.64', '206.182.235.95', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('206.182.235.96', '206.182.235.127', 2147483647, 2147483647, 'ID', 'Indonesia'), +('206.182.235.128', '206.182.238.159', 2147483647, 2147483647, 'US', 'United States'), +('206.182.238.160', '206.182.238.191', 2147483647, 2147483647, 'JP', 'Japan'), +('206.182.238.192', '206.182.238.255', 2147483647, 2147483647, 'US', 'United States'), +('206.182.239.0', '206.182.239.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('206.182.240.0', '206.182.242.255', 2147483647, 2147483647, 'US', 'United States'), +('206.182.243.0', '206.182.243.127', 2147483647, 2147483647, 'CA', 'Canada'), +('206.182.243.128', '206.182.243.191', 2147483647, 2147483647, 'TW', 'Taiwan'), +('206.182.243.192', '206.182.243.223', 2147483647, 2147483647, 'US', 'United States'), +('206.182.243.224', '206.182.243.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('206.182.244.0', '206.182.244.255', 2147483647, 2147483647, 'NO', 'Norway'), +('206.182.245.0', '206.182.245.127', 2147483647, 2147483647, 'PH', 'Philippines'), +('206.182.245.128', '206.182.245.255', 2147483647, 2147483647, 'AU', 'Australia'), +('206.182.246.0', '206.182.249.255', 2147483647, 2147483647, 'US', 'United States'), +('206.182.250.0', '206.182.250.31', 2147483647, 2147483647, 'JP', 'Japan'), +('206.182.250.32', '206.182.250.63', 2147483647, 2147483647, 'SG', 'Singapore'), +('206.182.250.64', '206.182.250.191', 2147483647, 2147483647, 'US', 'United States'), +('206.182.250.192', '206.182.250.223', 2147483647, 2147483647, 'SG', 'Singapore'), +('206.182.250.224', '206.182.254.255', 2147483647, 2147483647, 'US', 'United States'), +('206.182.255.0', '206.182.255.255', 2147483647, 2147483647, 'FR', 'France'), +('206.183.0.0', '206.185.255.255', 2147483647, 2147483647, 'US', 'United States'), +('206.186.0.0', '206.186.51.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.186.52.0', '206.186.52.255', 2147483647, 2147483647, 'US', 'United States'), +('206.186.53.0', '206.186.67.127', 2147483647, 2147483647, 'CA', 'Canada'), +('206.186.67.128', '206.186.67.255', 2147483647, 2147483647, 'US', 'United States'), +('206.186.68.0', '206.186.92.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.186.93.0', '206.186.93.255', 2147483647, 2147483647, 'US', 'United States'), +('206.186.94.0', '206.186.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.187.0.0', '206.188.0.95', 2147483647, 2147483647, 'US', 'United States'), +('206.188.0.96', '206.188.0.111', 2147483647, 2147483647, 'IL', 'Israel'), +('206.188.0.112', '206.188.2.159', 2147483647, 2147483647, 'US', 'United States'), +('206.188.2.160', '206.188.2.191', 2147483647, 2147483647, 'AU', 'Australia'), +('206.188.2.192', '206.188.3.159', 2147483647, 2147483647, 'US', 'United States'), +('206.188.3.160', '206.188.3.175', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('206.188.3.176', '206.188.4.127', 2147483647, 2147483647, 'US', 'United States'), +('206.188.4.128', '206.188.4.159', 2147483647, 2147483647, 'GR', 'Greece'), +('206.188.4.160', '206.188.4.255', 2147483647, 2147483647, 'US', 'United States'), +('206.188.5.0', '206.188.5.15', 2147483647, 2147483647, 'CA', 'Canada'), +('206.188.5.16', '206.188.5.63', 2147483647, 2147483647, 'US', 'United States'), +('206.188.5.64', '206.188.5.127', 2147483647, 2147483647, 'CA', 'Canada'), +('206.188.5.128', '206.188.6.127', 2147483647, 2147483647, 'US', 'United States'), +('206.188.6.128', '206.188.6.191', 2147483647, 2147483647, 'SE', 'Sweden'), +('206.188.6.192', '206.188.8.31', 2147483647, 2147483647, 'US', 'United States'), +('206.188.8.32', '206.188.8.47', 2147483647, 2147483647, 'QA', 'Qatar'), +('206.188.8.48', '206.188.12.159', 2147483647, 2147483647, 'US', 'United States'), +('206.188.12.160', '206.188.12.191', 2147483647, 2147483647, 'CA', 'Canada'), +('206.188.12.192', '206.188.18.127', 2147483647, 2147483647, 'US', 'United States'), +('206.188.18.128', '206.188.18.191', 2147483647, 2147483647, 'CA', 'Canada'), +('206.188.18.192', '206.188.21.31', 2147483647, 2147483647, 'US', 'United States'), +('206.188.21.32', '206.188.21.47', 2147483647, 2147483647, 'ES', 'Spain'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('206.188.21.48', '206.188.23.15', 2147483647, 2147483647, 'US', 'United States'), +('206.188.23.16', '206.188.23.31', 2147483647, 2147483647, 'CA', 'Canada'), +('206.188.23.32', '206.188.23.63', 2147483647, 2147483647, 'US', 'United States'), +('206.188.23.64', '206.188.23.127', 2147483647, 2147483647, 'SE', 'Sweden'), +('206.188.23.128', '206.188.24.31', 2147483647, 2147483647, 'US', 'United States'), +('206.188.24.32', '206.188.24.47', 2147483647, 2147483647, 'AU', 'Australia'), +('206.188.24.48', '206.188.24.255', 2147483647, 2147483647, 'US', 'United States'), +('206.188.25.0', '206.188.25.255', 2147483647, 2147483647, 'AU', 'Australia'), +('206.188.26.0', '206.188.31.159', 2147483647, 2147483647, 'US', 'United States'), +('206.188.31.160', '206.188.31.223', 2147483647, 2147483647, 'AU', 'Australia'), +('206.188.31.224', '206.188.63.255', 2147483647, 2147483647, 'US', 'United States'), +('206.188.64.0', '206.188.127.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.188.128.0', '206.188.159.255', 2147483647, 2147483647, 'BM', 'Bermuda'), +('206.188.160.0', '206.189.206.255', 2147483647, 2147483647, 'US', 'United States'), +('206.189.207.0', '206.189.207.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('206.189.208.0', '206.190.255.255', 2147483647, 2147483647, 'US', 'United States'), +('206.191.0.0', '206.191.2.143', 2147483647, 2147483647, 'CA', 'Canada'), +('206.191.2.144', '206.191.2.159', 2147483647, 2147483647, 'US', 'United States'), +('206.191.2.160', '206.191.7.63', 2147483647, 2147483647, 'CA', 'Canada'), +('206.191.7.64', '206.191.7.79', 2147483647, 2147483647, 'US', 'United States'), +('206.191.7.80', '206.191.12.143', 2147483647, 2147483647, 'CA', 'Canada'), +('206.191.12.144', '206.191.12.159', 2147483647, 2147483647, 'US', 'United States'), +('206.191.12.160', '206.191.13.47', 2147483647, 2147483647, 'CA', 'Canada'), +('206.191.13.48', '206.191.13.63', 2147483647, 2147483647, 'US', 'United States'), +('206.191.13.64', '206.191.14.207', 2147483647, 2147483647, 'CA', 'Canada'), +('206.191.14.208', '206.191.14.223', 2147483647, 2147483647, 'US', 'United States'), +('206.191.14.224', '206.191.16.151', 2147483647, 2147483647, 'CA', 'Canada'), +('206.191.16.152', '206.191.16.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('206.191.16.160', '206.191.16.175', 2147483647, 2147483647, 'CA', 'Canada'), +('206.191.16.176', '206.191.16.191', 2147483647, 2147483647, 'US', 'United States'), +('206.191.16.192', '206.191.16.215', 2147483647, 2147483647, 'CA', 'Canada'), +('206.191.16.216', '206.191.16.223', 2147483647, 2147483647, 'US', 'United States'), +('206.191.16.224', '206.191.17.223', 2147483647, 2147483647, 'CA', 'Canada'), +('206.191.17.224', '206.191.17.231', 2147483647, 2147483647, 'US', 'United States'), +('206.191.17.232', '206.191.18.31', 2147483647, 2147483647, 'CA', 'Canada'), +('206.191.18.32', '206.191.18.127', 2147483647, 2147483647, 'US', 'United States'), +('206.191.18.128', '206.191.19.191', 2147483647, 2147483647, 'CA', 'Canada'), +('206.191.19.192', '206.191.19.255', 2147483647, 2147483647, 'US', 'United States'), +('206.191.20.0', '206.191.20.143', 2147483647, 2147483647, 'CA', 'Canada'), +('206.191.20.144', '206.191.20.151', 2147483647, 2147483647, 'US', 'United States'), +('206.191.20.152', '206.191.21.95', 2147483647, 2147483647, 'CA', 'Canada'), +('206.191.21.96', '206.191.21.103', 2147483647, 2147483647, 'US', 'United States'), +('206.191.21.104', '206.191.30.31', 2147483647, 2147483647, 'CA', 'Canada'), +('206.191.30.32', '206.191.30.63', 2147483647, 2147483647, 'US', 'United States'), +('206.191.30.64', '206.191.30.127', 2147483647, 2147483647, 'CA', 'Canada'), +('206.191.30.128', '206.191.30.143', 2147483647, 2147483647, 'US', 'United States'), +('206.191.30.144', '206.191.32.79', 2147483647, 2147483647, 'CA', 'Canada'), +('206.191.32.80', '206.191.32.95', 2147483647, 2147483647, 'US', 'United States'), +('206.191.32.96', '206.191.32.223', 2147483647, 2147483647, 'CA', 'Canada'), +('206.191.32.224', '206.191.32.231', 2147483647, 2147483647, 'US', 'United States'), +('206.191.32.232', '206.191.34.135', 2147483647, 2147483647, 'CA', 'Canada'), +('206.191.34.136', '206.191.34.143', 2147483647, 2147483647, 'US', 'United States'), +('206.191.34.144', '206.191.35.143', 2147483647, 2147483647, 'CA', 'Canada'), +('206.191.35.144', '206.191.35.159', 2147483647, 2147483647, 'US', 'United States'), +('206.191.35.160', '206.191.38.159', 2147483647, 2147483647, 'CA', 'Canada'), +('206.191.38.160', '206.191.38.191', 2147483647, 2147483647, 'US', 'United States'), +('206.191.38.192', '206.191.41.15', 2147483647, 2147483647, 'CA', 'Canada'), +('206.191.41.16', '206.191.41.23', 2147483647, 2147483647, 'US', 'United States'), +('206.191.41.24', '206.191.41.191', 2147483647, 2147483647, 'CA', 'Canada'), +('206.191.41.192', '206.191.41.223', 2147483647, 2147483647, 'US', 'United States'), +('206.191.41.224', '206.191.45.191', 2147483647, 2147483647, 'CA', 'Canada'), +('206.191.45.192', '206.191.45.255', 2147483647, 2147483647, 'US', 'United States'), +('206.191.46.0', '206.191.47.15', 2147483647, 2147483647, 'CA', 'Canada'), +('206.191.47.16', '206.191.47.31', 2147483647, 2147483647, 'US', 'United States'), +('206.191.47.32', '206.191.54.143', 2147483647, 2147483647, 'CA', 'Canada'), +('206.191.54.144', '206.191.54.151', 2147483647, 2147483647, 'SK', 'Slovakia'), +('206.191.54.152', '206.191.55.191', 2147483647, 2147483647, 'CA', 'Canada'), +('206.191.55.192', '206.191.55.207', 2147483647, 2147483647, 'US', 'United States'), +('206.191.55.208', '206.191.59.135', 2147483647, 2147483647, 'CA', 'Canada'), +('206.191.59.136', '206.191.59.143', 2147483647, 2147483647, 'US', 'United States'), +('206.191.59.144', '206.191.62.191', 2147483647, 2147483647, 'CA', 'Canada'), +('206.191.62.192', '206.191.62.223', 2147483647, 2147483647, 'US', 'United States'), +('206.191.62.224', '206.191.127.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.191.128.0', '206.197.150.255', 2147483647, 2147483647, 'US', 'United States'), +('206.197.151.0', '206.197.151.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.197.152.0', '206.199.109.255', 2147483647, 2147483647, 'US', 'United States'), +('206.199.110.0', '206.199.110.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('206.199.111.0', '206.199.148.255', 2147483647, 2147483647, 'US', 'United States'), +('206.199.149.0', '206.199.149.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('206.199.150.0', '206.210.95.255', 2147483647, 2147483647, 'US', 'United States'), +('206.210.96.0', '206.210.127.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.210.128.0', '206.218.255.255', 2147483647, 2147483647, 'US', 'United States'), +('206.219.0.0', '206.219.63.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('206.219.64.0', '206.220.131.255', 2147483647, 2147483647, 'US', 'United States'), +('206.220.132.0', '206.220.135.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('206.220.136.0', '206.220.191.255', 2147483647, 2147483647, 'US', 'United States'), +('206.220.192.0', '206.220.199.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.220.200.0', '206.221.79.255', 2147483647, 2147483647, 'US', 'United States'), +('206.221.80.0', '206.221.95.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('206.221.96.0', '206.221.239.255', 2147483647, 2147483647, 'US', 'United States'), +('206.221.240.0', '206.221.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.222.0.0', '206.222.2.119', 2147483647, 2147483647, 'US', 'United States'), +('206.222.2.120', '206.222.2.127', 2147483647, 2147483647, 'CO', 'Colombia'), +('206.222.2.128', '206.222.2.191', 2147483647, 2147483647, 'US', 'United States'), +('206.222.2.192', '206.222.2.199', 2147483647, 2147483647, 'IL', 'Israel'), +('206.222.2.200', '206.222.2.215', 2147483647, 2147483647, 'US', 'United States'), +('206.222.2.216', '206.222.2.223', 2147483647, 2147483647, 'BE', 'Belgium'), +('206.222.2.224', '206.222.2.231', 2147483647, 2147483647, 'US', 'United States'), +('206.222.2.232', '206.222.2.239', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('206.222.2.240', '206.222.3.103', 2147483647, 2147483647, 'US', 'United States'), +('206.222.3.104', '206.222.3.111', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('206.222.3.112', '206.222.3.215', 2147483647, 2147483647, 'US', 'United States'), +('206.222.3.216', '206.222.3.223', 2147483647, 2147483647, 'IL', 'Israel'), +('206.222.3.224', '206.222.5.23', 2147483647, 2147483647, 'US', 'United States'), +('206.222.5.24', '206.222.5.31', 2147483647, 2147483647, 'CA', 'Canada'), +('206.222.5.32', '206.222.5.39', 2147483647, 2147483647, 'US', 'United States'), +('206.222.5.40', '206.222.5.47', 2147483647, 2147483647, 'DO', 'Dominican Republic'), +('206.222.5.48', '206.222.5.191', 2147483647, 2147483647, 'US', 'United States'), +('206.222.5.192', '206.222.5.207', 2147483647, 2147483647, 'AE', 'United Arab Emirates'), +('206.222.5.208', '206.222.7.103', 2147483647, 2147483647, 'US', 'United States'), +('206.222.7.104', '206.222.7.111', 2147483647, 2147483647, 'CA', 'Canada'), +('206.222.7.112', '206.222.7.223', 2147483647, 2147483647, 'US', 'United States'), +('206.222.7.224', '206.222.7.231', 2147483647, 2147483647, 'IN', 'India'), +('206.222.7.232', '206.222.8.87', 2147483647, 2147483647, 'US', 'United States'), +('206.222.8.88', '206.222.8.95', 2147483647, 2147483647, 'TR', 'Turkey'), +('206.222.8.96', '206.222.9.95', 2147483647, 2147483647, 'US', 'United States'), +('206.222.9.96', '206.222.9.103', 2147483647, 2147483647, 'PK', 'Pakistan'), +('206.222.9.104', '206.222.9.191', 2147483647, 2147483647, 'US', 'United States'), +('206.222.9.192', '206.222.9.199', 2147483647, 2147483647, 'BR', 'Brazil'), +('206.222.9.200', '206.222.13.55', 2147483647, 2147483647, 'US', 'United States'), +('206.222.13.56', '206.222.13.63', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('206.222.13.64', '206.222.13.239', 2147483647, 2147483647, 'US', 'United States'), +('206.222.13.240', '206.222.13.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('206.222.14.0', '206.222.14.199', 2147483647, 2147483647, 'US', 'United States'), +('206.222.14.200', '206.222.14.207', 2147483647, 2147483647, 'CO', 'Colombia'), +('206.222.14.208', '206.222.14.215', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('206.222.14.216', '206.222.16.95', 2147483647, 2147483647, 'US', 'United States'), +('206.222.16.96', '206.222.16.103', 2147483647, 2147483647, 'JP', 'Japan'), +('206.222.16.104', '206.222.16.127', 2147483647, 2147483647, 'US', 'United States'), +('206.222.16.128', '206.222.16.135', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('206.222.16.136', '206.222.16.199', 2147483647, 2147483647, 'US', 'United States'), +('206.222.16.200', '206.222.16.207', 2147483647, 2147483647, 'CA', 'Canada'), +('206.222.16.208', '206.222.17.7', 2147483647, 2147483647, 'US', 'United States'), +('206.222.17.8', '206.222.17.15', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('206.222.17.16', '206.222.17.167', 2147483647, 2147483647, 'US', 'United States'), +('206.222.17.168', '206.222.17.175', 2147483647, 2147483647, 'PH', 'Philippines'), +('206.222.17.176', '206.222.21.31', 2147483647, 2147483647, 'US', 'United States'), +('206.222.21.32', '206.222.21.39', 2147483647, 2147483647, 'PH', 'Philippines'), +('206.222.21.40', '206.222.21.47', 2147483647, 2147483647, 'US', 'United States'), +('206.222.21.48', '206.222.21.55', 2147483647, 2147483647, 'ID', 'Indonesia'), +('206.222.21.56', '206.222.21.63', 2147483647, 2147483647, 'US', 'United States'), +('206.222.21.64', '206.222.21.71', 2147483647, 2147483647, 'JP', 'Japan'), +('206.222.21.72', '206.222.21.79', 2147483647, 2147483647, 'IR', 'Iran, Islamic Republic of'), +('206.222.21.80', '206.222.21.87', 2147483647, 2147483647, 'US', 'United States'), +('206.222.21.88', '206.222.21.95', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('206.222.21.96', '206.222.21.175', 2147483647, 2147483647, 'US', 'United States'), +('206.222.21.176', '206.222.21.183', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('206.222.21.184', '206.222.22.15', 2147483647, 2147483647, 'US', 'United States'), +('206.222.22.16', '206.222.22.23', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('206.222.22.24', '206.222.22.175', 2147483647, 2147483647, 'US', 'United States'), +('206.222.22.176', '206.222.22.183', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('206.222.22.184', '206.222.22.191', 2147483647, 2147483647, 'US', 'United States'), +('206.222.22.192', '206.222.22.199', 2147483647, 2147483647, 'AU', 'Australia'), +('206.222.22.200', '206.222.22.207', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('206.222.22.208', '206.222.23.111', 2147483647, 2147483647, 'US', 'United States'), +('206.222.23.112', '206.222.23.127', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('206.222.23.128', '206.222.23.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('206.222.23.144', '206.222.23.167', 2147483647, 2147483647, 'US', 'United States'), +('206.222.23.168', '206.222.23.175', 2147483647, 2147483647, 'IR', 'Iran, Islamic Republic of'), +('206.222.23.176', '206.222.23.191', 2147483647, 2147483647, 'US', 'United States'), +('206.222.23.192', '206.222.23.199', 2147483647, 2147483647, 'RO', 'Romania'), +('206.222.23.200', '206.222.28.159', 2147483647, 2147483647, 'US', 'United States'), +('206.222.28.160', '206.222.28.175', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('206.222.28.176', '206.222.28.247', 2147483647, 2147483647, 'US', 'United States'), +('206.222.28.248', '206.222.28.255', 2147483647, 2147483647, 'AU', 'Australia'), +('206.222.29.0', '206.222.29.7', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('206.222.29.8', '206.222.29.223', 2147483647, 2147483647, 'US', 'United States'), +('206.222.29.224', '206.222.29.231', 2147483647, 2147483647, 'IR', 'Iran, Islamic Republic of'), +('206.222.29.232', '206.222.30.103', 2147483647, 2147483647, 'US', 'United States'), +('206.222.30.104', '206.222.30.111', 2147483647, 2147483647, 'PH', 'Philippines'), +('206.222.30.112', '206.222.30.119', 2147483647, 2147483647, 'CA', 'Canada'), +('206.222.30.120', '206.222.30.159', 2147483647, 2147483647, 'US', 'United States'), +('206.222.30.160', '206.222.30.175', 2147483647, 2147483647, 'PK', 'Pakistan'), +('206.222.30.176', '206.222.31.103', 2147483647, 2147483647, 'US', 'United States'), +('206.222.31.104', '206.222.31.111', 2147483647, 2147483647, 'GR', 'Greece'), +('206.222.31.112', '206.222.63.255', 2147483647, 2147483647, 'US', 'United States'), +('206.222.64.0', '206.222.95.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.222.96.0', '206.223.89.255', 2147483647, 2147483647, 'US', 'United States'), +('206.223.90.0', '206.223.91.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.223.92.0', '206.223.96.255', 2147483647, 2147483647, 'US', 'United States'), +('206.223.97.0', '206.223.97.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.223.98.0', '206.223.112.255', 2147483647, 2147483647, 'US', 'United States'), +('206.223.113.0', '206.223.113.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.223.114.0', '206.223.119.255', 2147483647, 2147483647, 'US', 'United States'), +('206.223.122.0', '206.223.123.255', 2147483647, 2147483647, 'US', 'United States'), +('206.223.124.0', '206.223.124.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('206.223.125.0', '206.223.129.255', 2147483647, 2147483647, 'US', 'United States'), +('206.223.130.0', '206.223.130.255', 2147483647, 2147483647, 'PE', 'Peru'), +('206.223.131.0', '206.223.135.255', 2147483647, 2147483647, 'US', 'United States'), +('206.223.136.0', '206.223.136.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('206.223.137.0', '206.223.159.255', 2147483647, 2147483647, 'US', 'United States'), +('206.223.160.0', '206.223.162.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.223.163.0', '206.223.163.7', 2147483647, 2147483647, 'NL', 'Netherlands'), +('206.223.163.8', '206.223.182.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.223.183.0', '206.223.183.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('206.223.184.0', '206.223.191.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.223.192.0', '206.223.223.255', 2147483647, 2147483647, 'US', 'United States'), +('206.223.224.0', '206.223.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.224.0.0', '206.224.31.255', 2147483647, 2147483647, 'US', 'United States'), +('206.224.32.0', '206.224.63.255', 2147483647, 2147483647, 'PA', 'Panama'), +('206.224.64.0', '206.225.82.200', 2147483647, 2147483647, 'US', 'United States'), +('206.225.82.201', '206.225.82.208', 2147483647, 2147483647, 'MX', 'Mexico'), +('206.225.82.209', '206.225.83.240', 2147483647, 2147483647, 'US', 'United States'), +('206.225.83.241', '206.225.83.248', 2147483647, 2147483647, 'NA', 'Namibia'), +('206.225.83.249', '206.225.92.169', 2147483647, 2147483647, 'US', 'United States'), +('206.225.92.170', '206.225.92.179', 2147483647, 2147483647, 'JP', 'Japan'), +('206.225.92.180', '206.225.94.242', 2147483647, 2147483647, 'US', 'United States'), +('206.225.94.243', '206.225.94.250', 2147483647, 2147483647, 'IN', 'India'), +('206.225.94.251', '206.225.127.255', 2147483647, 2147483647, 'US', 'United States'), +('206.225.128.0', '206.225.131.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('206.225.132.0', '206.228.35.255', 2147483647, 2147483647, 'US', 'United States'), +('206.228.36.0', '206.228.39.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('206.228.40.0', '206.228.41.255', 2147483647, 2147483647, 'US', 'United States'), +('206.228.42.0', '206.228.44.255', 2147483647, 2147483647, 'ES', 'Spain'), +('206.228.45.0', '206.228.47.255', 2147483647, 2147483647, 'US', 'United States'), +('206.228.48.0', '206.228.48.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('206.228.49.0', '206.228.49.255', 2147483647, 2147483647, 'US', 'United States'), +('206.228.50.0', '206.228.50.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('206.228.51.0', '206.230.97.71', 2147483647, 2147483647, 'US', 'United States'), +('206.230.97.72', '206.230.97.79', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('206.230.97.80', '206.231.67.255', 2147483647, 2147483647, 'US', 'United States'), +('206.231.68.0', '206.231.71.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('206.231.72.0', '206.231.79.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('206.231.80.0', '206.235.84.255', 2147483647, 2147483647, 'US', 'United States'), +('206.235.85.0', '206.235.87.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.235.88.0', '206.235.199.255', 2147483647, 2147483647, 'US', 'United States'), +('206.235.200.0', '206.235.207.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.235.208.0', '206.235.247.255', 2147483647, 2147483647, 'US', 'United States'), +('206.235.248.0', '206.235.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.236.0.0', '206.248.63.255', 2147483647, 2147483647, 'US', 'United States'), +('206.248.64.0', '206.248.127.255', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('206.248.128.0', '206.248.191.255', 2147483647, 2147483647, 'CA', 'Canada'), +('206.248.192.0', '207.1.159.255', 2147483647, 2147483647, 'US', 'United States'), +('207.1.160.0', '207.1.160.255', 2147483647, 2147483647, 'AS', 'American Samoa'), +('207.1.161.0', '207.2.95.255', 2147483647, 2147483647, 'US', 'United States'), +('207.2.96.0', '207.2.100.255', 2147483647, 2147483647, 'BM', 'Bermuda'), +('207.2.101.0', '207.2.101.255', 2147483647, 2147483647, 'US', 'United States'), +('207.2.102.0', '207.2.103.255', 2147483647, 2147483647, 'BM', 'Bermuda'), +('207.2.104.0', '207.3.62.0', 2147483647, 2147483647, 'US', 'United States'), +('207.3.62.1', '207.3.62.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('207.3.63.0', '207.3.111.255', 2147483647, 2147483647, 'US', 'United States'), +('207.3.112.0', '207.3.127.255', 2147483647, 2147483647, 'UY', 'Uruguay'), +('207.3.128.0', '207.5.255.255', 2147483647, 2147483647, 'US', 'United States'), +('207.6.0.0', '207.6.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('207.7.0.0', '207.7.135.255', 2147483647, 2147483647, 'US', 'United States'), +('207.7.136.0', '207.7.136.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('207.7.137.0', '207.12.130.127', 2147483647, 2147483647, 'US', 'United States'), +('207.12.130.128', '207.12.130.255', 2147483647, 2147483647, 'CA', 'Canada'), +('207.12.131.0', '207.13.76.255', 2147483647, 2147483647, 'US', 'United States'), +('207.13.77.0', '207.13.77.255', 2147483647, 2147483647, 'HN', 'Honduras'), +('207.13.78.0', '207.13.113.191', 2147483647, 2147483647, 'US', 'United States'), +('207.13.113.192', '207.13.113.207', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('207.13.113.208', '207.13.113.215', 2147483647, 2147483647, 'US', 'United States'), +('207.13.113.216', '207.13.113.223', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('207.13.113.224', '207.13.117.255', 2147483647, 2147483647, 'US', 'United States'), +('207.13.118.0', '207.13.119.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('207.13.120.0', '207.13.196.255', 2147483647, 2147483647, 'US', 'United States'), +('207.13.197.0', '207.13.197.15', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('207.13.197.16', '207.14.48.63', 2147483647, 2147483647, 'US', 'United States'), +('207.14.48.64', '207.14.48.95', 2147483647, 2147483647, 'CA', 'Canada'), +('207.14.48.96', '207.15.133.255', 2147483647, 2147483647, 'US', 'United States'), +('207.15.134.0', '207.15.134.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('207.15.135.0', '207.15.197.255', 2147483647, 2147483647, 'US', 'United States'), +('207.15.198.0', '207.15.198.255', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('207.15.199.0', '207.17.189.255', 2147483647, 2147483647, 'US', 'United States'), +('207.17.190.0', '207.17.191.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('207.17.192.0', '207.17.215.255', 2147483647, 2147483647, 'US', 'United States'), +('207.17.216.0', '207.17.223.255', 2147483647, 2147483647, 'PE', 'Peru'), +('207.17.224.0', '207.19.251.255', 2147483647, 2147483647, 'US', 'United States'), +('207.19.252.0', '207.19.252.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('207.19.253.0', '207.19.253.255', 2147483647, 2147483647, 'US', 'United States'), +('207.19.254.0', '207.19.255.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('207.20.0.0', '207.22.145.159', 2147483647, 2147483647, 'US', 'United States'), +('207.22.145.160', '207.22.145.191', 2147483647, 2147483647, 'AU', 'Australia'), +('207.22.145.192', '207.22.148.255', 2147483647, 2147483647, 'US', 'United States'), +('207.22.149.0', '207.22.149.39', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('207.22.149.40', '207.22.149.47', 2147483647, 2147483647, 'US', 'United States'), +('207.22.149.48', '207.22.149.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('207.22.149.64', '207.22.255.255', 2147483647, 2147483647, 'US', 'United States'), +('207.23.0.0', '207.23.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('207.24.0.0', '207.24.25.95', 2147483647, 2147483647, 'US', 'United States'), +('207.24.25.96', '207.24.25.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('207.24.25.112', '207.24.25.207', 2147483647, 2147483647, 'US', 'United States'), +('207.24.25.208', '207.24.25.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('207.24.25.224', '207.24.25.255', 2147483647, 2147483647, 'US', 'United States'), +('207.24.26.0', '207.24.26.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('207.24.27.0', '207.24.28.47', 2147483647, 2147483647, 'US', 'United States'), +('207.24.28.48', '207.24.28.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('207.24.28.64', '207.24.28.111', 2147483647, 2147483647, 'US', 'United States'), +('207.24.28.112', '207.24.28.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('207.24.28.128', '207.24.28.159', 2147483647, 2147483647, 'US', 'United States'), +('207.24.28.160', '207.24.28.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('207.24.28.176', '207.24.29.255', 2147483647, 2147483647, 'US', 'United States'), +('207.24.30.0', '207.24.31.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('207.24.32.0', '207.25.101.255', 2147483647, 2147483647, 'US', 'United States'), +('207.25.102.0', '207.25.102.255', 2147483647, 2147483647, 'JP', 'Japan'), +('207.25.103.0', '207.26.140.111', 2147483647, 2147483647, 'US', 'United States'), +('207.26.140.112', '207.26.140.127', 2147483647, 2147483647, 'CA', 'Canada'), +('207.26.140.128', '207.33.255.255', 2147483647, 2147483647, 'US', 'United States'), +('207.34.0.0', '207.34.4.255', 2147483647, 2147483647, 'CA', 'Canada'), +('207.34.5.0', '207.34.11.255', 2147483647, 2147483647, 'US', 'United States'), +('207.34.12.0', '207.34.31.255', 2147483647, 2147483647, 'CA', 'Canada'), +('207.34.32.0', '207.34.47.255', 2147483647, 2147483647, 'US', 'United States'), +('207.34.48.0', '207.35.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('207.36.0.0', '207.41.74.255', 2147483647, 2147483647, 'US', 'United States'), +('207.41.75.0', '207.41.75.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('207.41.76.0', '207.42.131.255', 2147483647, 2147483647, 'US', 'United States'), +('207.42.132.0', '207.42.132.31', 2147483647, 2147483647, 'AG', 'Antigua and Barbuda'), +('207.42.132.32', '207.42.132.63', 2147483647, 2147483647, 'KN', 'Saint Kitts and Nevis'), +('207.42.132.64', '207.42.132.159', 2147483647, 2147483647, 'AG', 'Antigua and Barbuda'), +('207.42.132.160', '207.42.132.191', 2147483647, 2147483647, 'KN', 'Saint Kitts and Nevis'), +('207.42.132.192', '207.42.132.255', 2147483647, 2147483647, 'AG', 'Antigua and Barbuda'), +('207.42.133.0', '207.42.133.255', 2147483647, 2147483647, 'AI', 'Anguilla'), +('207.42.134.0', '207.42.134.255', 2147483647, 2147483647, 'LC', 'Saint Lucia'), +('207.42.135.0', '207.42.135.63', 2147483647, 2147483647, 'DM', 'Dominica'), +('207.42.135.64', '207.42.135.255', 2147483647, 2147483647, 'AG', 'Antigua and Barbuda'), +('207.42.136.0', '207.42.175.255', 2147483647, 2147483647, 'US', 'United States'), +('207.42.176.0', '207.42.191.255', 2147483647, 2147483647, 'HN', 'Honduras'), +('207.42.192.0', '207.43.68.63', 2147483647, 2147483647, 'US', 'United States'), +('207.43.68.64', '207.43.68.127', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('207.43.68.128', '207.43.170.223', 2147483647, 2147483647, 'US', 'United States'), +('207.43.170.224', '207.43.170.255', 2147483647, 2147483647, 'CA', 'Canada'), +('207.43.171.0', '207.43.198.255', 2147483647, 2147483647, 'US', 'United States'), +('207.43.199.0', '207.43.199.255', 2147483647, 2147483647, 'AN', 'Netherlands Antilles'), +('207.43.200.0', '207.45.191.255', 2147483647, 2147483647, 'US', 'United States'), +('207.45.192.0', '207.45.199.255', 2147483647, 2147483647, 'CA', 'Canada'), +('207.45.200.0', '207.45.200.255', 2147483647, 2147483647, 'US', 'United States'), +('207.45.201.0', '207.45.223.255', 2147483647, 2147483647, 'CA', 'Canada'), +('207.45.224.0', '207.47.127.255', 2147483647, 2147483647, 'US', 'United States'), +('207.47.128.0', '207.47.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('207.48.0.0', '207.48.47.79', 2147483647, 2147483647, 'US', 'United States'), +('207.48.47.80', '207.48.47.111', 2147483647, 2147483647, 'MX', 'Mexico'), +('207.48.47.112', '207.48.183.31', 2147483647, 2147483647, 'US', 'United States'), +('207.48.183.32', '207.48.183.63', 2147483647, 2147483647, 'JO', 'Jordan'), +('207.48.183.64', '207.49.63.255', 2147483647, 2147483647, 'US', 'United States'), +('207.49.64.0', '207.49.65.255', 2147483647, 2147483647, 'CA', 'Canada'), +('207.49.66.0', '207.50.239.255', 2147483647, 2147483647, 'US', 'United States'), +('207.50.240.0', '207.50.247.255', 2147483647, 2147483647, 'UY', 'Uruguay'), +('207.50.248.0', '207.51.155.127', 2147483647, 2147483647, 'US', 'United States'), +('207.51.155.128', '207.51.155.191', 2147483647, 2147483647, 'EG', 'Egypt'), +('207.51.155.192', '207.52.223.255', 2147483647, 2147483647, 'US', 'United States'), +('207.52.224.0', '207.52.224.255', 2147483647, 2147483647, 'CA', 'Canada'), +('207.52.225.0', '207.53.239.255', 2147483647, 2147483647, 'US', 'United States'), +('207.53.240.0', '207.53.244.255', 2147483647, 2147483647, 'CA', 'Canada'), +('207.53.245.0', '207.53.245.119', 2147483647, 2147483647, 'US', 'United States'), +('207.53.245.120', '207.53.245.255', 2147483647, 2147483647, 'CA', 'Canada'), +('207.53.246.0', '207.53.246.255', 2147483647, 2147483647, 'US', 'United States'), +('207.53.247.0', '207.53.247.255', 2147483647, 2147483647, 'CA', 'Canada'), +('207.53.248.0', '207.53.248.255', 2147483647, 2147483647, 'US', 'United States'), +('207.53.249.0', '207.53.252.255', 2147483647, 2147483647, 'CA', 'Canada'), +('207.53.253.0', '207.53.253.255', 2147483647, 2147483647, 'US', 'United States'), +('207.53.254.0', '207.53.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('207.54.0.0', '207.54.95.255', 2147483647, 2147483647, 'US', 'United States'), +('207.54.96.0', '207.54.112.15', 2147483647, 2147483647, 'CA', 'Canada'), +('207.54.112.16', '207.54.112.47', 2147483647, 2147483647, 'US', 'United States'), +('207.54.112.48', '207.54.127.255', 2147483647, 2147483647, 'CA', 'Canada'), +('207.54.128.0', '207.58.142.7', 2147483647, 2147483647, 'US', 'United States'), +('207.58.142.8', '207.58.142.15', 2147483647, 2147483647, 'IT', 'Italy'), +('207.58.142.16', '207.58.142.167', 2147483647, 2147483647, 'US', 'United States'), +('207.58.142.168', '207.58.142.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('207.58.142.176', '207.58.144.15', 2147483647, 2147483647, 'US', 'United States'), +('207.58.144.16', '207.58.144.23', 2147483647, 2147483647, 'IT', 'Italy'), +('207.58.144.24', '207.58.144.39', 2147483647, 2147483647, 'US', 'United States'), +('207.58.144.40', '207.58.144.47', 2147483647, 2147483647, 'SI', 'Slovenia'), +('207.58.144.48', '207.58.144.79', 2147483647, 2147483647, 'US', 'United States'), +('207.58.144.80', '207.58.144.95', 2147483647, 2147483647, 'CA', 'Canada'), +('207.58.144.96', '207.58.144.231', 2147483647, 2147483647, 'US', 'United States'), +('207.58.144.232', '207.58.144.239', 2147483647, 2147483647, 'CA', 'Canada'), +('207.58.144.240', '207.58.144.247', 2147483647, 2147483647, 'AU', 'Australia'), +('207.58.144.248', '207.58.146.15', 2147483647, 2147483647, 'US', 'United States'), +('207.58.146.16', '207.58.146.31', 2147483647, 2147483647, 'BE', 'Belgium'), +('207.58.146.32', '207.58.146.63', 2147483647, 2147483647, 'IT', 'Italy'), +('207.58.146.64', '207.58.146.79', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('207.58.146.80', '207.58.146.95', 2147483647, 2147483647, 'US', 'United States'), +('207.58.146.96', '207.58.146.143', 2147483647, 2147483647, 'IT', 'Italy'), +('207.58.146.144', '207.58.147.15', 2147483647, 2147483647, 'US', 'United States'), +('207.58.147.16', '207.58.147.31', 2147483647, 2147483647, 'IT', 'Italy'), +('207.58.147.32', '207.58.148.7', 2147483647, 2147483647, 'US', 'United States'), +('207.58.148.8', '207.58.148.15', 2147483647, 2147483647, 'CA', 'Canada'), +('207.58.148.16', '207.58.148.39', 2147483647, 2147483647, 'US', 'United States'), +('207.58.148.40', '207.58.148.47', 2147483647, 2147483647, 'BR', 'Brazil'), +('207.58.148.48', '207.58.148.71', 2147483647, 2147483647, 'US', 'United States'), +('207.58.148.72', '207.58.148.79', 2147483647, 2147483647, 'JP', 'Japan'), +('207.58.148.80', '207.58.148.87', 2147483647, 2147483647, 'US', 'United States'), +('207.58.148.88', '207.58.148.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('207.58.148.96', '207.58.150.63', 2147483647, 2147483647, 'US', 'United States'), +('207.58.150.64', '207.58.150.71', 2147483647, 2147483647, 'NL', 'Netherlands'), +('207.58.150.72', '207.58.157.255', 2147483647, 2147483647, 'US', 'United States'), +('207.58.158.0', '207.58.158.7', 2147483647, 2147483647, 'CA', 'Canada'), +('207.58.158.8', '207.58.158.47', 2147483647, 2147483647, 'NL', 'Netherlands'), +('207.58.158.48', '207.58.158.55', 2147483647, 2147483647, 'CA', 'Canada'), +('207.58.158.56', '207.58.158.111', 2147483647, 2147483647, 'NL', 'Netherlands'), +('207.58.158.112', '207.58.158.119', 2147483647, 2147483647, 'US', 'United States'), +('207.58.158.120', '207.58.158.127', 2147483647, 2147483647, 'CA', 'Canada'), +('207.58.158.128', '207.58.158.135', 2147483647, 2147483647, 'VE', 'Venezuela'), +('207.58.158.136', '207.58.158.143', 2147483647, 2147483647, 'US', 'United States'), +('207.58.158.144', '207.58.158.151', 2147483647, 2147483647, 'NL', 'Netherlands'), +('207.58.158.152', '207.58.158.167', 2147483647, 2147483647, 'CA', 'Canada'), +('207.58.158.168', '207.58.158.175', 2147483647, 2147483647, 'US', 'United States'), +('207.58.158.176', '207.58.158.183', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('207.58.158.184', '207.58.158.191', 2147483647, 2147483647, 'NL', 'Netherlands'), +('207.58.158.192', '207.58.158.207', 2147483647, 2147483647, 'US', 'United States'), +('207.58.158.208', '207.58.158.215', 2147483647, 2147483647, 'NL', 'Netherlands'), +('207.58.158.216', '207.60.255.255', 2147483647, 2147483647, 'US', 'United States'), +('207.61.0.0', '207.61.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('207.62.0.0', '207.65.70.31', 2147483647, 2147483647, 'US', 'United States'), +('207.65.70.32', '207.65.70.47', 2147483647, 2147483647, 'TN', 'Tunisia'), +('207.65.70.48', '207.65.70.79', 2147483647, 2147483647, 'US', 'United States'), +('207.65.70.80', '207.65.70.95', 2147483647, 2147483647, 'TN', 'Tunisia'), +('207.65.70.96', '207.65.70.143', 2147483647, 2147483647, 'US', 'United States'), +('207.65.70.144', '207.65.70.151', 2147483647, 2147483647, 'TN', 'Tunisia'), +('207.65.70.152', '207.65.70.159', 2147483647, 2147483647, 'US', 'United States'), +('207.65.70.160', '207.65.70.191', 2147483647, 2147483647, 'TN', 'Tunisia'), +('207.65.70.192', '207.65.71.47', 2147483647, 2147483647, 'US', 'United States'), +('207.65.71.48', '207.65.71.63', 2147483647, 2147483647, 'TN', 'Tunisia'), +('207.65.71.64', '207.67.145.127', 2147483647, 2147483647, 'US', 'United States'), +('207.67.145.128', '207.67.146.255', 2147483647, 2147483647, 'A1', 'Anonymous Proxy'), +('207.67.147.0', '207.67.147.255', 2147483647, 2147483647, 'US', 'United States'), +('207.67.148.0', '207.67.149.127', 2147483647, 2147483647, 'A1', 'Anonymous Proxy'), +('207.67.149.128', '207.79.207.255', 2147483647, 2147483647, 'US', 'United States'), +('207.79.208.0', '207.79.223.255', 2147483647, 2147483647, 'PE', 'Peru'), +('207.79.224.0', '207.80.255.255', 2147483647, 2147483647, 'US', 'United States'), +('207.81.0.0', '207.81.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('207.82.0.0', '207.82.143.255', 2147483647, 2147483647, 'US', 'United States'), +('207.82.144.0', '207.82.144.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('207.82.144.16', '207.83.0.191', 2147483647, 2147483647, 'US', 'United States'), +('207.83.0.192', '207.83.0.199', 2147483647, 2147483647, 'CA', 'Canada'), +('207.83.0.200', '207.83.32.127', 2147483647, 2147483647, 'US', 'United States'), +('207.83.32.128', '207.83.32.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('207.83.33.0', '207.83.33.191', 2147483647, 2147483647, 'US', 'United States'), +('207.83.33.192', '207.83.33.199', 2147483647, 2147483647, 'DK', 'Denmark'), +('207.83.33.200', '207.83.38.63', 2147483647, 2147483647, 'US', 'United States'), +('207.83.38.64', '207.83.38.71', 2147483647, 2147483647, 'CA', 'Canada'), +('207.83.38.72', '207.83.96.127', 2147483647, 2147483647, 'US', 'United States'), +('207.83.96.128', '207.83.96.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('207.83.97.0', '207.83.112.79', 2147483647, 2147483647, 'US', 'United States'), +('207.83.112.80', '207.83.112.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('207.83.112.96', '207.83.112.239', 2147483647, 2147483647, 'US', 'United States'), +('207.83.112.240', '207.83.112.247', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('207.83.112.248', '207.83.159.255', 2147483647, 2147483647, 'US', 'United States'), +('207.83.160.0', '207.83.160.7', 2147483647, 2147483647, 'BR', 'Brazil'), +('207.83.160.8', '207.83.160.31', 2147483647, 2147483647, 'US', 'United States'), +('207.83.160.32', '207.83.160.63', 2147483647, 2147483647, 'BR', 'Brazil'), +('207.83.160.64', '207.83.160.95', 2147483647, 2147483647, 'US', 'United States'), +('207.83.160.96', '207.83.160.111', 2147483647, 2147483647, 'BR', 'Brazil'), +('207.83.160.112', '207.83.191.255', 2147483647, 2147483647, 'US', 'United States'), +('207.83.192.0', '207.83.223.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('207.83.224.0', '207.96.127.255', 2147483647, 2147483647, 'US', 'United States'), +('207.96.128.0', '207.96.151.255', 2147483647, 2147483647, 'CA', 'Canada'), +('207.96.152.0', '207.96.152.255', 2147483647, 2147483647, 'US', 'United States'), +('207.96.153.0', '207.96.218.223', 2147483647, 2147483647, 'CA', 'Canada'), +('207.96.218.224', '207.96.218.231', 2147483647, 2147483647, 'US', 'United States'), +('207.96.218.232', '207.96.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('207.97.0.0', '207.101.255.255', 2147483647, 2147483647, 'US', 'United States'), +('207.102.0.0', '207.102.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('207.103.0.0', '207.105.95.31', 2147483647, 2147483647, 'US', 'United States'), +('207.105.95.32', '207.105.95.48', 2147483647, 2147483647, 'UY', 'Uruguay'), +('207.105.95.49', '207.106.255.255', 2147483647, 2147483647, 'US', 'United States'), +('207.107.0.0', '207.107.105.127', 2147483647, 2147483647, 'CA', 'Canada'), +('207.107.105.128', '207.107.105.135', 2147483647, 2147483647, 'US', 'United States'), +('207.107.105.136', '207.107.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('207.108.0.0', '207.111.255.255', 2147483647, 2147483647, 'US', 'United States'), +('207.112.0.0', '207.112.5.255', 2147483647, 2147483647, 'CA', 'Canada'), +('207.112.6.0', '207.112.6.255', 2147483647, 2147483647, 'US', 'United States'), +('207.112.7.0', '207.112.14.127', 2147483647, 2147483647, 'CA', 'Canada'), +('207.112.14.128', '207.112.14.135', 2147483647, 2147483647, 'US', 'United States'), +('207.112.14.136', '207.112.106.127', 2147483647, 2147483647, 'CA', 'Canada'), +('207.112.106.128', '207.112.106.191', 2147483647, 2147483647, 'US', 'United States'), +('207.112.106.192', '207.112.127.255', 2147483647, 2147483647, 'CA', 'Canada'), +('207.112.128.0', '207.112.235.255', 2147483647, 2147483647, 'US', 'United States'), +('207.112.236.0', '207.112.237.255', 2147483647, 2147483647, 'CA', 'Canada'), +('207.112.238.0', '207.114.239.63', 2147483647, 2147483647, 'US', 'United States'), +('207.114.239.64', '207.114.239.95', 2147483647, 2147483647, 'PA', 'Panama'), +('207.114.239.96', '207.115.95.255', 2147483647, 2147483647, 'US', 'United States'), +('207.115.96.0', '207.115.101.127', 2147483647, 2147483647, 'CA', 'Canada'), +('207.115.101.128', '207.115.101.255', 2147483647, 2147483647, 'US', 'United States'), +('207.115.102.0', '207.115.102.111', 2147483647, 2147483647, 'CA', 'Canada'), +('207.115.102.112', '207.115.102.119', 2147483647, 2147483647, 'ES', 'Spain'), +('207.115.102.120', '207.115.111.255', 2147483647, 2147483647, 'CA', 'Canada'), +('207.115.112.0', '207.116.255.255', 2147483647, 2147483647, 'US', 'United States'), +('207.117.0.0', '207.117.0.255', 2147483647, 2147483647, 'JP', 'Japan'), +('207.117.1.0', '207.117.1.255', 2147483647, 2147483647, 'DE', 'Germany'), +('207.117.2.0', '207.117.2.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('207.117.3.0', '207.117.3.255', 2147483647, 2147483647, 'US', 'United States'), +('207.117.4.0', '207.117.4.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('207.117.5.0', '207.117.5.255', 2147483647, 2147483647, 'US', 'United States'), +('207.117.6.0', '207.117.6.255', 2147483647, 2147483647, 'AT', 'Austria'), +('207.117.7.0', '207.117.7.127', 2147483647, 2147483647, 'US', 'United States'), +('207.117.7.128', '207.117.7.254', 2147483647, 2147483647, 'MX', 'Mexico'), +('207.117.7.255', '207.117.7.255', 2147483647, 2147483647, 'US', 'United States'), +('207.117.8.0', '207.117.8.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('207.117.9.0', '207.117.9.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('207.117.10.0', '207.117.10.255', 2147483647, 2147483647, 'US', 'United States'), +('207.117.11.0', '207.117.11.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('207.117.12.0', '207.117.12.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('207.117.13.0', '207.117.14.255', 2147483647, 2147483647, 'US', 'United States'), +('207.117.15.0', '207.117.15.255', 2147483647, 2147483647, 'NO', 'Norway'), +('207.117.16.0', '207.117.16.255', 2147483647, 2147483647, 'FR', 'France'), +('207.117.17.0', '207.117.18.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('207.117.19.0', '207.117.19.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('207.117.20.0', '207.117.21.255', 2147483647, 2147483647, 'US', 'United States'), +('207.117.22.0', '207.117.22.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('207.117.23.0', '207.117.23.255', 2147483647, 2147483647, 'US', 'United States'), +('207.117.24.0', '207.117.24.255', 2147483647, 2147483647, 'JP', 'Japan'), +('207.117.25.0', '207.117.25.255', 2147483647, 2147483647, 'CA', 'Canada'), +('207.117.26.0', '207.117.27.255', 2147483647, 2147483647, 'US', 'United States'), +('207.117.28.0', '207.117.28.255', 2147483647, 2147483647, 'DO', 'Dominican Republic'), +('207.117.29.0', '207.117.30.255', 2147483647, 2147483647, 'US', 'United States'), +('207.117.31.0', '207.117.31.255', 2147483647, 2147483647, 'IT', 'Italy'), +('207.117.32.0', '207.117.36.255', 2147483647, 2147483647, 'US', 'United States'), +('207.117.37.0', '207.117.37.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('207.117.38.0', '207.117.40.255', 2147483647, 2147483647, 'US', 'United States'), +('207.117.41.0', '207.117.41.255', 2147483647, 2147483647, 'JP', 'Japan'), +('207.117.42.0', '207.117.51.255', 2147483647, 2147483647, 'US', 'United States'), +('207.117.52.0', '207.117.52.255', 2147483647, 2147483647, 'DE', 'Germany'), +('207.117.53.0', '207.117.60.255', 2147483647, 2147483647, 'US', 'United States'), +('207.117.61.0', '207.117.62.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('207.117.63.0', '207.117.65.255', 2147483647, 2147483647, 'US', 'United States'), +('207.117.66.0', '207.117.66.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('207.117.67.0', '207.117.67.95', 2147483647, 2147483647, 'IT', 'Italy'), +('207.117.67.96', '207.117.67.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('207.117.67.128', '207.117.67.255', 2147483647, 2147483647, 'FR', 'France'), +('207.117.68.0', '207.117.70.255', 2147483647, 2147483647, 'US', 'United States'), +('207.117.71.0', '207.117.71.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('207.117.72.0', '207.117.72.255', 2147483647, 2147483647, 'US', 'United States'), +('207.117.73.0', '207.117.73.255', 2147483647, 2147483647, 'FR', 'France'), +('207.117.74.0', '207.117.74.255', 2147483647, 2147483647, 'ES', 'Spain'), +('207.117.75.0', '207.117.75.255', 2147483647, 2147483647, 'JP', 'Japan'), +('207.117.76.0', '207.117.77.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('207.117.78.0', '207.117.78.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('207.117.79.0', '207.117.79.127', 2147483647, 2147483647, 'FI', 'Finland'), +('207.117.79.128', '207.117.86.127', 2147483647, 2147483647, 'US', 'United States'), +('207.117.86.128', '207.117.86.191', 2147483647, 2147483647, 'IT', 'Italy'), +('207.117.86.192', '207.117.86.255', 2147483647, 2147483647, 'DE', 'Germany'), +('207.117.87.0', '207.117.90.63', 2147483647, 2147483647, 'US', 'United States'), +('207.117.90.64', '207.117.90.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('207.117.90.128', '207.117.92.255', 2147483647, 2147483647, 'US', 'United States'), +('207.117.93.0', '207.117.93.255', 2147483647, 2147483647, 'IL', 'Israel'), +('207.117.94.0', '207.117.94.255', 2147483647, 2147483647, 'US', 'United States'), +('207.117.95.0', '207.117.99.255', 2147483647, 2147483647, 'IT', 'Italy'), +('207.117.100.0', '207.117.108.255', 2147483647, 2147483647, 'US', 'United States'), +('207.117.109.0', '207.117.109.255', 2147483647, 2147483647, 'IT', 'Italy'), +('207.117.110.0', '207.117.110.127', 2147483647, 2147483647, 'US', 'United States'), +('207.117.110.128', '207.117.110.191', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('207.117.110.192', '207.117.110.255', 2147483647, 2147483647, 'AU', 'Australia'), +('207.117.111.0', '207.117.111.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('207.117.112.0', '207.117.112.255', 2147483647, 2147483647, 'JP', 'Japan'), +('207.117.113.0', '207.117.113.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('207.117.114.0', '207.117.114.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('207.117.115.0', '207.117.115.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('207.117.116.0', '207.117.116.127', 2147483647, 2147483647, 'US', 'United States'), +('207.117.116.128', '207.117.116.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('207.117.117.0', '207.117.117.255', 2147483647, 2147483647, 'US', 'United States'), +('207.117.118.0', '207.117.118.255', 2147483647, 2147483647, 'CL', 'Chile'), +('207.117.119.0', '207.117.119.255', 2147483647, 2147483647, 'NO', 'Norway'), +('207.117.120.0', '207.117.120.255', 2147483647, 2147483647, 'US', 'United States'), +('207.117.121.0', '207.117.121.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('207.117.122.0', '207.117.124.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('207.117.125.0', '207.117.133.127', 2147483647, 2147483647, 'US', 'United States'), +('207.117.133.128', '207.117.133.191', 2147483647, 2147483647, 'ES', 'Spain'), +('207.117.133.192', '207.117.141.127', 2147483647, 2147483647, 'US', 'United States'), +('207.117.141.128', '207.117.141.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('207.117.142.0', '207.117.145.255', 2147483647, 2147483647, 'US', 'United States'), +('207.117.146.0', '207.117.146.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('207.117.147.0', '207.117.152.127', 2147483647, 2147483647, 'US', 'United States'), +('207.117.152.128', '207.117.152.255', 2147483647, 2147483647, 'FR', 'France'), +('207.117.153.0', '207.117.154.255', 2147483647, 2147483647, 'US', 'United States'), +('207.117.155.0', '207.117.155.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('207.117.156.0', '207.117.156.63', 2147483647, 2147483647, 'US', 'United States'), +('207.117.156.64', '207.117.156.127', 2147483647, 2147483647, 'GR', 'Greece'), +('207.117.156.128', '207.117.156.255', 2147483647, 2147483647, 'US', 'United States'), +('207.117.157.0', '207.117.158.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('207.117.159.0', '207.117.159.255', 2147483647, 2147483647, 'NO', 'Norway'), +('207.117.160.0', '207.117.160.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('207.117.161.0', '207.117.161.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('207.117.162.0', '207.117.162.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('207.117.163.0', '207.117.163.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('207.117.164.0', '207.117.164.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('207.117.165.0', '207.117.165.255', 2147483647, 2147483647, 'CN', 'China'), +('207.117.166.0', '207.117.166.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('207.117.167.0', '207.117.167.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('207.117.168.0', '207.117.172.255', 2147483647, 2147483647, 'US', 'United States'), +('207.117.173.0', '207.117.173.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('207.117.174.0', '207.117.177.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('207.117.178.0', '207.117.178.255', 2147483647, 2147483647, 'US', 'United States'), +('207.117.179.0', '207.117.182.255', 2147483647, 2147483647, 'AU', 'Australia'), +('207.117.183.0', '207.117.183.255', 2147483647, 2147483647, 'FR', 'France'), +('207.117.184.0', '207.117.185.255', 2147483647, 2147483647, 'AU', 'Australia'), +('207.117.186.0', '207.117.186.255', 2147483647, 2147483647, 'JP', 'Japan'), +('207.117.187.0', '207.117.187.255', 2147483647, 2147483647, 'CA', 'Canada'), +('207.117.188.0', '207.117.188.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('207.117.189.0', '207.117.191.255', 2147483647, 2147483647, 'US', 'United States'), +('207.117.192.0', '207.117.193.255', 2147483647, 2147483647, 'DE', 'Germany'), +('207.117.194.0', '207.117.194.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('207.117.195.0', '207.117.195.255', 2147483647, 2147483647, 'AU', 'Australia'), +('207.117.196.0', '207.117.196.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('207.117.197.0', '207.117.197.255', 2147483647, 2147483647, 'FR', 'France'), +('207.117.198.0', '207.117.200.255', 2147483647, 2147483647, 'US', 'United States'), +('207.117.201.0', '207.117.203.255', 2147483647, 2147483647, 'IT', 'Italy'), +('207.117.204.0', '207.117.204.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('207.117.205.0', '207.117.205.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('207.117.206.0', '207.117.207.255', 2147483647, 2147483647, 'ES', 'Spain'), +('207.117.208.0', '207.117.208.255', 2147483647, 2147483647, 'IL', 'Israel'), +('207.117.209.0', '207.117.209.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('207.117.210.0', '207.117.210.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('207.117.211.0', '207.117.211.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('207.117.212.0', '207.117.212.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('207.117.213.0', '207.117.213.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('207.117.214.0', '207.117.214.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('207.117.215.0', '207.117.215.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('207.117.216.0', '207.117.216.255', 2147483647, 2147483647, 'GR', 'Greece'), +('207.117.217.0', '207.117.217.255', 2147483647, 2147483647, 'CA', 'Canada'), +('207.117.218.0', '207.117.218.255', 2147483647, 2147483647, 'IT', 'Italy'), +('207.117.219.0', '207.117.229.255', 2147483647, 2147483647, 'US', 'United States'), +('207.117.230.0', '207.117.230.255', 2147483647, 2147483647, 'ES', 'Spain'), +('207.117.231.0', '207.117.231.255', 2147483647, 2147483647, 'US', 'United States'), +('207.117.232.0', '207.117.232.127', 2147483647, 2147483647, 'AU', 'Australia'), +('207.117.232.128', '207.117.232.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('207.117.233.0', '207.117.233.255', 2147483647, 2147483647, 'US', 'United States'), +('207.117.234.0', '207.117.234.255', 2147483647, 2147483647, 'JP', 'Japan'), +('207.117.235.0', '207.117.235.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('207.117.236.0', '207.117.236.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('207.117.237.0', '207.117.237.255', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('207.117.238.0', '207.117.242.255', 2147483647, 2147483647, 'DE', 'Germany'), +('207.117.243.0', '207.121.100.255', 2147483647, 2147483647, 'US', 'United States'), +('207.121.101.0', '207.121.103.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('207.121.104.0', '207.122.109.255', 2147483647, 2147483647, 'US', 'United States'), +('207.122.110.0', '207.122.111.255', 2147483647, 2147483647, 'FR', 'France'), +('207.122.112.0', '207.123.91.255', 2147483647, 2147483647, 'US', 'United States'), +('207.123.92.0', '207.123.92.255', 2147483647, 2147483647, 'AU', 'Australia'), +('207.123.93.0', '207.126.108.255', 2147483647, 2147483647, 'US', 'United States'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('207.126.109.0', '207.126.109.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('207.126.110.0', '207.133.255.255', 2147483647, 2147483647, 'US', 'United States'), +('207.134.0.0', '207.134.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('207.135.0.0', '207.136.63.255', 2147483647, 2147483647, 'US', 'United States'), +('207.136.64.0', '207.136.99.111', 2147483647, 2147483647, 'CA', 'Canada'), +('207.136.99.112', '207.136.99.127', 2147483647, 2147483647, 'US', 'United States'), +('207.136.99.128', '207.136.127.255', 2147483647, 2147483647, 'CA', 'Canada'), +('207.136.128.0', '207.138.255.255', 2147483647, 2147483647, 'US', 'United States'), +('207.139.0.0', '207.139.2.55', 2147483647, 2147483647, 'CA', 'Canada'), +('207.139.2.56', '207.139.2.63', 2147483647, 2147483647, 'US', 'United States'), +('207.139.2.64', '207.139.2.159', 2147483647, 2147483647, 'CA', 'Canada'), +('207.139.2.160', '207.139.2.167', 2147483647, 2147483647, 'US', 'United States'), +('207.139.2.168', '207.139.8.15', 2147483647, 2147483647, 'CA', 'Canada'), +('207.139.8.16', '207.139.8.23', 2147483647, 2147483647, 'US', 'United States'), +('207.139.8.24', '207.139.8.39', 2147483647, 2147483647, 'CA', 'Canada'), +('207.139.8.40', '207.139.8.47', 2147483647, 2147483647, 'US', 'United States'), +('207.139.8.48', '207.139.8.255', 2147483647, 2147483647, 'CA', 'Canada'), +('207.139.9.0', '207.139.9.7', 2147483647, 2147483647, 'US', 'United States'), +('207.139.9.8', '207.139.9.23', 2147483647, 2147483647, 'CA', 'Canada'), +('207.139.9.24', '207.139.9.31', 2147483647, 2147483647, 'US', 'United States'), +('207.139.9.32', '207.139.20.255', 2147483647, 2147483647, 'CA', 'Canada'), +('207.139.21.0', '207.139.21.255', 2147483647, 2147483647, 'AG', 'Antigua and Barbuda'), +('207.139.22.0', '207.139.81.127', 2147483647, 2147483647, 'CA', 'Canada'), +('207.139.81.128', '207.139.81.255', 2147483647, 2147483647, 'AG', 'Antigua and Barbuda'), +('207.139.82.0', '207.139.99.255', 2147483647, 2147483647, 'CA', 'Canada'), +('207.139.100.0', '207.139.100.255', 2147483647, 2147483647, 'US', 'United States'), +('207.139.101.0', '207.139.115.127', 2147483647, 2147483647, 'CA', 'Canada'), +('207.139.115.128', '207.139.115.191', 2147483647, 2147483647, 'US', 'United States'), +('207.139.115.192', '207.139.197.87', 2147483647, 2147483647, 'CA', 'Canada'), +('207.139.197.88', '207.139.197.95', 2147483647, 2147483647, 'US', 'United States'), +('207.139.197.96', '207.139.214.191', 2147483647, 2147483647, 'CA', 'Canada'), +('207.139.214.192', '207.139.214.255', 2147483647, 2147483647, 'US', 'United States'), +('207.139.215.0', '207.139.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('207.140.0.0', '207.147.255.255', 2147483647, 2147483647, 'US', 'United States'), +('207.148.0.0', '207.148.191.255', 2147483647, 2147483647, 'CA', 'Canada'), +('207.148.192.0', '207.150.239.255', 2147483647, 2147483647, 'US', 'United States'), +('207.150.240.0', '207.150.255.255', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('207.151.0.0', '207.152.74.63', 2147483647, 2147483647, 'US', 'United States'), +('207.152.74.64', '207.152.74.127', 2147483647, 2147483647, 'A1', 'Anonymous Proxy'), +('207.152.74.128', '207.152.255.255', 2147483647, 2147483647, 'US', 'United States'), +('207.153.0.0', '207.153.63.255', 2147483647, 2147483647, 'CA', 'Canada'), +('207.153.64.0', '207.158.225.4', 2147483647, 2147483647, 'US', 'United States'), +('207.158.225.5', '207.158.225.5', 2147483647, 2147483647, 'BE', 'Belgium'), +('207.158.225.6', '207.160.255.255', 2147483647, 2147483647, 'US', 'United States'), +('207.161.0.0', '207.162.127.255', 2147483647, 2147483647, 'CA', 'Canada'), +('207.162.128.0', '207.163.255.255', 2147483647, 2147483647, 'US', 'United States'), +('207.164.0.0', '207.164.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('207.165.0.0', '207.166.111.255', 2147483647, 2147483647, 'US', 'United States'), +('207.166.112.0', '207.166.112.47', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('207.166.112.48', '207.166.112.55', 2147483647, 2147483647, 'VI', 'Virgin Islands, U.S.'), +('207.166.112.56', '207.166.112.63', 2147483647, 2147483647, 'US', 'United States'), +('207.166.112.64', '207.166.112.239', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('207.166.112.240', '207.166.112.247', 2147483647, 2147483647, 'VI', 'Virgin Islands, U.S.'), +('207.166.112.248', '207.166.113.119', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('207.166.113.120', '207.166.113.127', 2147483647, 2147483647, 'VI', 'Virgin Islands, U.S.'), +('207.166.113.128', '207.166.113.215', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('207.166.113.216', '207.166.113.223', 2147483647, 2147483647, 'VI', 'Virgin Islands, U.S.'), +('207.166.113.224', '207.166.114.111', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('207.166.114.112', '207.166.114.127', 2147483647, 2147483647, 'US', 'United States'), +('207.166.114.128', '207.166.114.143', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('207.166.114.144', '207.166.114.159', 2147483647, 2147483647, 'IL', 'Israel'), +('207.166.114.160', '207.166.127.255', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('207.166.128.0', '207.166.255.255', 2147483647, 2147483647, 'US', 'United States'), +('207.167.0.0', '207.167.31.255', 2147483647, 2147483647, 'CA', 'Canada'), +('207.167.32.0', '207.167.191.255', 2147483647, 2147483647, 'US', 'United States'), +('207.167.192.0', '207.167.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('207.168.0.0', '207.169.209.255', 2147483647, 2147483647, 'US', 'United States'), +('207.169.210.0', '207.169.211.255', 2147483647, 2147483647, 'DE', 'Germany'), +('207.169.212.0', '207.174.127.255', 2147483647, 2147483647, 'US', 'United States'), +('207.174.130.0', '207.174.132.47', 2147483647, 2147483647, 'US', 'United States'), +('207.174.132.48', '207.174.132.55', 2147483647, 2147483647, 'DE', 'Germany'), +('207.174.132.64', '207.174.133.255', 2147483647, 2147483647, 'US', 'United States'), +('207.174.136.0', '207.176.127.255', 2147483647, 2147483647, 'US', 'United States'), +('207.176.128.0', '207.176.131.255', 2147483647, 2147483647, 'CA', 'Canada'), +('207.176.132.0', '207.176.132.31', 2147483647, 2147483647, 'US', 'United States'), +('207.176.132.32', '207.176.145.95', 2147483647, 2147483647, 'CA', 'Canada'), +('207.176.145.96', '207.176.145.127', 2147483647, 2147483647, 'US', 'United States'), +('207.176.145.128', '207.176.147.127', 2147483647, 2147483647, 'CA', 'Canada'), +('207.176.147.128', '207.176.147.191', 2147483647, 2147483647, 'US', 'United States'), +('207.176.147.192', '207.176.148.255', 2147483647, 2147483647, 'CA', 'Canada'), +('207.176.149.0', '207.176.150.255', 2147483647, 2147483647, 'US', 'United States'), +('207.176.151.0', '207.176.154.255', 2147483647, 2147483647, 'CA', 'Canada'), +('207.176.155.0', '207.176.155.255', 2147483647, 2147483647, 'US', 'United States'), +('207.176.156.0', '207.176.159.31', 2147483647, 2147483647, 'CA', 'Canada'), +('207.176.159.32', '207.176.159.39', 2147483647, 2147483647, 'US', 'United States'), +('207.176.159.40', '207.176.159.55', 2147483647, 2147483647, 'CA', 'Canada'), +('207.176.159.56', '207.176.159.63', 2147483647, 2147483647, 'US', 'United States'), +('207.176.159.64', '207.176.159.135', 2147483647, 2147483647, 'CA', 'Canada'), +('207.176.159.136', '207.176.159.151', 2147483647, 2147483647, 'US', 'United States'), +('207.176.159.152', '207.176.159.159', 2147483647, 2147483647, 'CA', 'Canada'), +('207.176.159.160', '207.176.159.167', 2147483647, 2147483647, 'US', 'United States'), +('207.176.159.168', '207.176.159.207', 2147483647, 2147483647, 'CA', 'Canada'), +('207.176.159.208', '207.176.159.215', 2147483647, 2147483647, 'US', 'United States'), +('207.176.159.216', '207.176.163.15', 2147483647, 2147483647, 'CA', 'Canada'), +('207.176.163.16', '207.176.163.31', 2147483647, 2147483647, 'US', 'United States'), +('207.176.163.32', '207.176.163.47', 2147483647, 2147483647, 'CA', 'Canada'), +('207.176.163.48', '207.176.163.63', 2147483647, 2147483647, 'US', 'United States'), +('207.176.163.64', '207.176.163.79', 2147483647, 2147483647, 'CA', 'Canada'), +('207.176.163.80', '207.176.163.95', 2147483647, 2147483647, 'US', 'United States'), +('207.176.163.96', '207.176.163.111', 2147483647, 2147483647, 'CA', 'Canada'), +('207.176.163.112', '207.176.163.143', 2147483647, 2147483647, 'US', 'United States'), +('207.176.163.144', '207.176.163.191', 2147483647, 2147483647, 'CA', 'Canada'), +('207.176.163.192', '207.176.163.223', 2147483647, 2147483647, 'US', 'United States'), +('207.176.163.224', '207.176.163.239', 2147483647, 2147483647, 'CA', 'Canada'), +('207.176.163.240', '207.176.163.255', 2147483647, 2147483647, 'US', 'United States'), +('207.176.164.0', '207.176.164.255', 2147483647, 2147483647, 'CA', 'Canada'), +('207.176.165.0', '207.176.165.255', 2147483647, 2147483647, 'US', 'United States'), +('207.176.166.0', '207.176.166.31', 2147483647, 2147483647, 'CA', 'Canada'), +('207.176.166.32', '207.176.166.47', 2147483647, 2147483647, 'US', 'United States'), +('207.176.166.48', '207.176.166.159', 2147483647, 2147483647, 'CA', 'Canada'), +('207.176.166.160', '207.176.166.175', 2147483647, 2147483647, 'US', 'United States'), +('207.176.166.176', '207.176.166.239', 2147483647, 2147483647, 'CA', 'Canada'), +('207.176.166.240', '207.176.166.255', 2147483647, 2147483647, 'US', 'United States'), +('207.176.167.0', '207.176.168.23', 2147483647, 2147483647, 'CA', 'Canada'), +('207.176.168.24', '207.176.168.39', 2147483647, 2147483647, 'US', 'United States'), +('207.176.168.40', '207.176.168.47', 2147483647, 2147483647, 'CA', 'Canada'), +('207.176.168.48', '207.176.168.79', 2147483647, 2147483647, 'US', 'United States'), +('207.176.168.80', '207.176.168.87', 2147483647, 2147483647, 'CA', 'Canada'), +('207.176.168.88', '207.176.168.143', 2147483647, 2147483647, 'US', 'United States'), +('207.176.168.144', '207.176.168.175', 2147483647, 2147483647, 'CA', 'Canada'), +('207.176.168.176', '207.176.168.207', 2147483647, 2147483647, 'US', 'United States'), +('207.176.168.208', '207.176.168.215', 2147483647, 2147483647, 'CA', 'Canada'), +('207.176.168.216', '207.176.168.223', 2147483647, 2147483647, 'US', 'United States'), +('207.176.168.224', '207.176.169.63', 2147483647, 2147483647, 'CA', 'Canada'), +('207.176.169.64', '207.176.169.127', 2147483647, 2147483647, 'US', 'United States'), +('207.176.169.128', '207.176.169.191', 2147483647, 2147483647, 'CA', 'Canada'), +('207.176.169.192', '207.176.170.63', 2147483647, 2147483647, 'US', 'United States'), +('207.176.170.64', '207.176.172.23', 2147483647, 2147483647, 'CA', 'Canada'), +('207.176.172.24', '207.176.172.63', 2147483647, 2147483647, 'US', 'United States'), +('207.176.172.64', '207.176.172.79', 2147483647, 2147483647, 'CA', 'Canada'), +('207.176.172.80', '207.176.172.95', 2147483647, 2147483647, 'US', 'United States'), +('207.176.172.96', '207.176.172.127', 2147483647, 2147483647, 'CA', 'Canada'), +('207.176.172.128', '207.176.172.135', 2147483647, 2147483647, 'US', 'United States'), +('207.176.172.136', '207.176.172.199', 2147483647, 2147483647, 'CA', 'Canada'), +('207.176.172.200', '207.176.172.215', 2147483647, 2147483647, 'US', 'United States'), +('207.176.172.216', '207.176.175.127', 2147483647, 2147483647, 'CA', 'Canada'), +('207.176.175.128', '207.176.175.191', 2147483647, 2147483647, 'US', 'United States'), +('207.176.175.192', '207.176.176.47', 2147483647, 2147483647, 'CA', 'Canada'), +('207.176.176.48', '207.176.176.79', 2147483647, 2147483647, 'US', 'United States'), +('207.176.176.80', '207.176.180.15', 2147483647, 2147483647, 'CA', 'Canada'), +('207.176.180.16', '207.176.180.31', 2147483647, 2147483647, 'US', 'United States'), +('207.176.180.32', '207.176.180.47', 2147483647, 2147483647, 'CA', 'Canada'), +('207.176.180.48', '207.176.180.63', 2147483647, 2147483647, 'US', 'United States'), +('207.176.180.64', '207.176.180.95', 2147483647, 2147483647, 'CA', 'Canada'), +('207.176.180.96', '207.176.180.159', 2147483647, 2147483647, 'US', 'United States'), +('207.176.180.160', '207.176.180.175', 2147483647, 2147483647, 'CA', 'Canada'), +('207.176.180.176', '207.176.180.191', 2147483647, 2147483647, 'US', 'United States'), +('207.176.180.192', '207.176.180.207', 2147483647, 2147483647, 'CA', 'Canada'), +('207.176.180.208', '207.176.180.255', 2147483647, 2147483647, 'US', 'United States'), +('207.176.181.0', '207.176.182.63', 2147483647, 2147483647, 'CA', 'Canada'), +('207.176.182.64', '207.176.182.95', 2147483647, 2147483647, 'US', 'United States'), +('207.176.182.96', '207.176.183.255', 2147483647, 2147483647, 'CA', 'Canada'), +('207.176.184.0', '207.176.184.255', 2147483647, 2147483647, 'US', 'United States'), +('207.176.185.0', '207.176.188.255', 2147483647, 2147483647, 'CA', 'Canada'), +('207.176.189.0', '207.176.189.255', 2147483647, 2147483647, 'US', 'United States'), +('207.176.190.0', '207.176.196.63', 2147483647, 2147483647, 'CA', 'Canada'), +('207.176.196.64', '207.176.196.255', 2147483647, 2147483647, 'US', 'United States'), +('207.176.197.0', '207.176.199.127', 2147483647, 2147483647, 'CA', 'Canada'), +('207.176.199.128', '207.176.199.255', 2147483647, 2147483647, 'US', 'United States'), +('207.176.200.0', '207.176.201.255', 2147483647, 2147483647, 'CA', 'Canada'), +('207.176.202.0', '207.176.202.31', 2147483647, 2147483647, 'US', 'United States'), +('207.176.202.32', '207.176.202.127', 2147483647, 2147483647, 'CA', 'Canada'), +('207.176.202.128', '207.176.202.191', 2147483647, 2147483647, 'US', 'United States'), +('207.176.202.192', '207.176.204.255', 2147483647, 2147483647, 'CA', 'Canada'), +('207.176.205.0', '207.176.207.255', 2147483647, 2147483647, 'US', 'United States'), +('207.176.208.0', '207.176.208.255', 2147483647, 2147483647, 'CA', 'Canada'), +('207.176.209.0', '207.176.209.255', 2147483647, 2147483647, 'US', 'United States'), +('207.176.210.0', '207.176.211.71', 2147483647, 2147483647, 'CA', 'Canada'), +('207.176.211.72', '207.176.211.103', 2147483647, 2147483647, 'US', 'United States'), +('207.176.211.104', '207.176.211.119', 2147483647, 2147483647, 'CA', 'Canada'), +('207.176.211.120', '207.176.211.135', 2147483647, 2147483647, 'US', 'United States'), +('207.176.211.136', '207.176.211.159', 2147483647, 2147483647, 'CA', 'Canada'), +('207.176.211.160', '207.176.211.199', 2147483647, 2147483647, 'US', 'United States'), +('207.176.211.200', '207.176.214.7', 2147483647, 2147483647, 'CA', 'Canada'), +('207.176.214.8', '207.176.214.23', 2147483647, 2147483647, 'US', 'United States'), +('207.176.214.24', '207.176.214.175', 2147483647, 2147483647, 'CA', 'Canada'), +('207.176.214.176', '207.176.214.183', 2147483647, 2147483647, 'US', 'United States'), +('207.176.214.184', '207.176.214.191', 2147483647, 2147483647, 'CA', 'Canada'), +('207.176.214.192', '207.176.214.199', 2147483647, 2147483647, 'US', 'United States'), +('207.176.214.200', '207.176.214.215', 2147483647, 2147483647, 'CA', 'Canada'), +('207.176.214.216', '207.176.214.223', 2147483647, 2147483647, 'US', 'United States'), +('207.176.214.224', '207.176.214.255', 2147483647, 2147483647, 'CA', 'Canada'), +('207.176.215.0', '207.176.215.63', 2147483647, 2147483647, 'US', 'United States'), +('207.176.215.64', '207.176.216.255', 2147483647, 2147483647, 'CA', 'Canada'), +('207.176.217.0', '207.176.217.127', 2147483647, 2147483647, 'US', 'United States'), +('207.176.217.128', '207.176.217.191', 2147483647, 2147483647, 'CA', 'Canada'), +('207.176.217.192', '207.176.217.255', 2147483647, 2147483647, 'US', 'United States'), +('207.176.218.0', '207.176.230.255', 2147483647, 2147483647, 'CA', 'Canada'), +('207.176.231.0', '207.176.232.255', 2147483647, 2147483647, 'US', 'United States'), +('207.176.233.0', '207.176.234.255', 2147483647, 2147483647, 'CA', 'Canada'), +('207.176.235.0', '207.176.236.255', 2147483647, 2147483647, 'US', 'United States'), +('207.176.237.0', '207.176.237.255', 2147483647, 2147483647, 'CA', 'Canada'), +('207.176.238.0', '207.176.238.255', 2147483647, 2147483647, 'US', 'United States'), +('207.176.239.0', '207.176.239.255', 2147483647, 2147483647, 'CA', 'Canada'), +('207.176.240.0', '207.176.240.255', 2147483647, 2147483647, 'US', 'United States'), +('207.176.241.0', '207.176.241.255', 2147483647, 2147483647, 'CA', 'Canada'), +('207.176.242.0', '207.176.242.255', 2147483647, 2147483647, 'US', 'United States'), +('207.176.243.0', '207.176.249.255', 2147483647, 2147483647, 'CA', 'Canada'), +('207.176.250.0', '207.176.251.255', 2147483647, 2147483647, 'US', 'United States'), +('207.176.252.0', '207.176.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('207.177.0.0', '207.179.127.255', 2147483647, 2147483647, 'US', 'United States'), +('207.179.128.0', '207.179.191.255', 2147483647, 2147483647, 'CA', 'Canada'), +('207.179.192.0', '207.181.4.63', 2147483647, 2147483647, 'US', 'United States'), +('207.181.4.64', '207.181.4.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('207.181.4.192', '207.181.63.255', 2147483647, 2147483647, 'US', 'United States'), +('207.181.64.0', '207.181.117.63', 2147483647, 2147483647, 'CA', 'Canada'), +('207.181.117.64', '207.181.117.95', 2147483647, 2147483647, 'US', 'United States'), +('207.181.117.96', '207.181.124.191', 2147483647, 2147483647, 'CA', 'Canada'), +('207.181.124.192', '207.181.124.223', 2147483647, 2147483647, 'US', 'United States'), +('207.181.124.224', '207.181.127.255', 2147483647, 2147483647, 'CA', 'Canada'), +('207.181.128.0', '207.182.152.127', 2147483647, 2147483647, 'US', 'United States'), +('207.182.152.128', '207.182.152.135', 2147483647, 2147483647, 'IR', 'Iran, Islamic Republic of'), +('207.182.152.136', '207.183.31.255', 2147483647, 2147483647, 'US', 'United States'), +('207.183.32.0', '207.183.63.255', 2147483647, 2147483647, 'CA', 'Canada'), +('207.183.64.0', '207.188.63.255', 2147483647, 2147483647, 'US', 'United States'), +('207.188.64.0', '207.188.95.255', 2147483647, 2147483647, 'CA', 'Canada'), +('207.188.96.0', '207.189.79.223', 2147483647, 2147483647, 'US', 'United States'), +('207.189.79.224', '207.189.79.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('207.189.79.240', '207.189.223.255', 2147483647, 2147483647, 'US', 'United States'), +('207.189.224.0', '207.189.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('207.190.0.0', '207.191.159.255', 2147483647, 2147483647, 'US', 'United States'), +('207.191.160.0', '207.191.175.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('207.191.176.0', '207.193.255.255', 2147483647, 2147483647, 'US', 'United States'), +('207.194.0.0', '207.195.32.159', 2147483647, 2147483647, 'CA', 'Canada'), +('207.195.32.160', '207.195.32.191', 2147483647, 2147483647, 'US', 'United States'), +('207.195.32.192', '207.195.36.95', 2147483647, 2147483647, 'CA', 'Canada'), +('207.195.36.96', '207.195.36.103', 2147483647, 2147483647, 'US', 'United States'), +('207.195.36.104', '207.195.127.255', 2147483647, 2147483647, 'CA', 'Canada'), +('207.195.160.0', '207.195.239.255', 2147483647, 2147483647, 'US', 'United States'), +('207.195.240.0', '207.195.255.255', 2147483647, 2147483647, 'A1', 'Anonymous Proxy'), +('207.196.0.0', '207.198.98.199', 2147483647, 2147483647, 'US', 'United States'), +('207.198.98.200', '207.198.98.213', 2147483647, 2147483647, 'CA', 'Canada'), +('207.198.98.214', '207.198.105.197', 2147483647, 2147483647, 'US', 'United States'), +('207.198.105.198', '207.198.105.211', 2147483647, 2147483647, 'IN', 'India'), +('207.198.105.212', '207.198.109.3', 2147483647, 2147483647, 'US', 'United States'), +('207.198.109.4', '207.198.109.33', 2147483647, 2147483647, 'AU', 'Australia'), +('207.198.109.34', '207.200.127.255', 2147483647, 2147483647, 'US', 'United States'), +('207.200.128.0', '207.200.159.255', 2147483647, 2147483647, 'CA', 'Canada'), +('207.200.160.0', '207.203.88.255', 2147483647, 2147483647, 'US', 'United States'), +('207.203.89.0', '207.203.89.15', 2147483647, 2147483647, 'FM', 'Micronesia, Federated States of'), +('207.203.89.16', '207.204.63.255', 2147483647, 2147483647, 'US', 'United States'), +('207.204.64.0', '207.204.95.255', 2147483647, 2147483647, 'JM', 'Jamaica'), +('207.204.128.0', '207.204.191.255', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('207.204.192.0', '207.204.223.255', 2147483647, 2147483647, 'CA', 'Canada'), +('207.205.0.0', '207.207.204.63', 2147483647, 2147483647, 'US', 'United States'), +('207.207.204.64', '207.207.204.79', 2147483647, 2147483647, 'DE', 'Germany'), +('207.207.204.80', '207.208.255.255', 2147483647, 2147483647, 'US', 'United States'), +('207.209.0.0', '207.209.0.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('207.209.1.0', '207.209.2.255', 2147483647, 2147483647, 'DE', 'Germany'), +('207.209.3.0', '207.209.3.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('207.209.4.0', '207.209.4.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('207.209.5.0', '207.209.5.255', 2147483647, 2147483647, 'NO', 'Norway'), +('207.209.6.0', '207.209.6.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('207.209.7.0', '207.209.7.255', 2147483647, 2147483647, 'AU', 'Australia'), +('207.209.8.0', '207.209.8.255', 2147483647, 2147483647, 'DE', 'Germany'), +('207.209.9.0', '207.209.9.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('207.209.10.0', '207.209.11.255', 2147483647, 2147483647, 'US', 'United States'), +('207.209.12.0', '207.209.12.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('207.209.13.0', '207.209.13.255', 2147483647, 2147483647, 'US', 'United States'), +('207.209.14.0', '207.209.15.255', 2147483647, 2147483647, 'CA', 'Canada'), +('207.209.16.0', '207.209.17.255', 2147483647, 2147483647, 'US', 'United States'), +('207.209.18.0', '207.209.18.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('207.209.19.0', '207.209.21.255', 2147483647, 2147483647, 'FR', 'France'), +('207.209.22.0', '207.209.22.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('207.209.23.0', '207.209.23.255', 2147483647, 2147483647, 'US', 'United States'), +('207.209.24.0', '207.209.24.255', 2147483647, 2147483647, 'AU', 'Australia'), +('207.209.25.0', '207.209.25.255', 2147483647, 2147483647, 'FR', 'France'), +('207.209.26.0', '207.209.26.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('207.209.27.0', '207.209.27.255', 2147483647, 2147483647, 'CL', 'Chile'), +('207.209.28.0', '207.209.29.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('207.209.30.0', '207.209.30.255', 2147483647, 2147483647, 'FR', 'France'), +('207.209.31.0', '207.209.32.191', 2147483647, 2147483647, 'US', 'United States'), +('207.209.32.192', '207.209.32.223', 2147483647, 2147483647, 'NL', 'Netherlands'), +('207.209.32.224', '207.209.33.63', 2147483647, 2147483647, 'US', 'United States'), +('207.209.33.64', '207.209.33.95', 2147483647, 2147483647, 'ZA', 'South Africa'), +('207.209.33.96', '207.209.35.255', 2147483647, 2147483647, 'US', 'United States'), +('207.209.36.0', '207.209.36.255', 2147483647, 2147483647, 'IT', 'Italy'), +('207.209.37.0', '207.209.37.255', 2147483647, 2147483647, 'US', 'United States'), +('207.209.38.0', '207.209.42.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('207.209.43.0', '207.209.43.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('207.209.44.0', '207.209.44.63', 2147483647, 2147483647, 'FI', 'Finland'), +('207.209.44.64', '207.209.44.255', 2147483647, 2147483647, 'US', 'United States'), +('207.209.45.0', '207.209.45.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('207.209.46.0', '207.209.47.255', 2147483647, 2147483647, 'NO', 'Norway'), +('207.209.48.0', '207.209.48.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('207.209.49.0', '207.209.50.255', 2147483647, 2147483647, 'DE', 'Germany'), +('207.209.51.0', '207.209.51.255', 2147483647, 2147483647, 'FR', 'France'), +('207.209.52.0', '207.209.52.255', 2147483647, 2147483647, 'DE', 'Germany'), +('207.209.53.0', '207.209.53.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('207.209.54.0', '207.209.54.159', 2147483647, 2147483647, 'US', 'United States'), +('207.209.54.160', '207.209.54.191', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('207.209.54.192', '207.209.54.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('207.209.54.224', '207.209.54.255', 2147483647, 2147483647, 'US', 'United States'), +('207.209.55.0', '207.209.55.127', 2147483647, 2147483647, 'AR', 'Argentina'), +('207.209.55.128', '207.209.55.255', 2147483647, 2147483647, 'US', 'United States'), +('207.209.56.0', '207.209.56.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('207.209.57.0', '207.209.57.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('207.209.58.0', '207.209.58.255', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('207.209.59.0', '207.209.59.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('207.209.60.0', '207.209.60.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('207.209.61.0', '207.209.61.255', 2147483647, 2147483647, 'NO', 'Norway'), +('207.209.62.0', '207.209.62.127', 2147483647, 2147483647, 'US', 'United States'), +('207.209.62.128', '207.209.62.191', 2147483647, 2147483647, 'CH', 'Switzerland'), +('207.209.62.192', '207.209.62.255', 2147483647, 2147483647, 'FR', 'France'), +('207.209.63.0', '207.209.63.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('207.209.64.0', '207.209.64.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('207.209.65.0', '207.209.65.255', 2147483647, 2147483647, 'IT', 'Italy'), +('207.209.66.0', '207.209.66.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('207.209.67.0', '207.209.69.191', 2147483647, 2147483647, 'US', 'United States'), +('207.209.69.192', '207.209.69.255', 2147483647, 2147483647, 'FR', 'France'), +('207.209.70.0', '207.209.70.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('207.209.71.0', '207.209.71.255', 2147483647, 2147483647, 'NO', 'Norway'), +('207.209.72.0', '207.209.72.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('207.209.73.0', '207.209.73.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('207.209.74.0', '207.209.74.255', 2147483647, 2147483647, 'US', 'United States'), +('207.209.75.0', '207.209.76.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('207.209.77.0', '207.209.79.255', 2147483647, 2147483647, 'US', 'United States'), +('207.209.80.0', '207.209.80.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('207.209.81.0', '207.209.81.63', 2147483647, 2147483647, 'TR', 'Turkey'), +('207.209.81.64', '207.209.81.255', 2147483647, 2147483647, 'US', 'United States'), +('207.209.82.0', '207.209.82.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('207.209.83.0', '207.209.83.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('207.209.84.0', '207.209.84.191', 2147483647, 2147483647, 'US', 'United States'), +('207.209.84.192', '207.209.84.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('207.209.85.0', '207.209.86.255', 2147483647, 2147483647, 'US', 'United States'), +('207.209.87.0', '207.209.87.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('207.209.88.0', '207.209.88.31', 2147483647, 2147483647, 'US', 'United States'), +('207.209.88.32', '207.209.88.63', 2147483647, 2147483647, 'BR', 'Brazil'), +('207.209.88.64', '207.209.88.127', 2147483647, 2147483647, 'CL', 'Chile'), +('207.209.88.128', '207.209.88.143', 2147483647, 2147483647, 'US', 'United States'), +('207.209.88.144', '207.209.88.159', 2147483647, 2147483647, 'AR', 'Argentina'), +('207.209.88.160', '207.209.88.191', 2147483647, 2147483647, 'US', 'United States'), +('207.209.88.192', '207.209.88.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('207.209.89.0', '207.209.89.255', 2147483647, 2147483647, 'JP', 'Japan'), +('207.209.90.0', '207.209.90.255', 2147483647, 2147483647, 'US', 'United States'), +('207.209.91.0', '207.209.91.255', 2147483647, 2147483647, 'AU', 'Australia'), +('207.209.92.0', '207.209.92.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('207.209.93.0', '207.209.93.31', 2147483647, 2147483647, 'US', 'United States'), +('207.209.93.32', '207.209.93.63', 2147483647, 2147483647, 'SG', 'Singapore'), +('207.209.93.64', '207.209.93.71', 2147483647, 2147483647, 'MY', 'Malaysia'), +('207.209.93.72', '207.209.93.127', 2147483647, 2147483647, 'US', 'United States'), +('207.209.93.128', '207.209.93.191', 2147483647, 2147483647, 'CO', 'Colombia'), +('207.209.93.192', '207.209.94.255', 2147483647, 2147483647, 'US', 'United States'), +('207.209.95.0', '207.209.95.255', 2147483647, 2147483647, 'ES', 'Spain'), +('207.209.96.0', '207.209.96.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('207.209.97.0', '207.209.98.255', 2147483647, 2147483647, 'US', 'United States'), +('207.209.99.0', '207.209.99.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('207.209.100.0', '207.209.100.255', 2147483647, 2147483647, 'US', 'United States'), +('207.209.101.0', '207.209.101.255', 2147483647, 2147483647, 'FI', 'Finland'), +('207.209.102.0', '207.209.103.255', 2147483647, 2147483647, 'US', 'United States'), +('207.209.104.0', '207.209.104.255', 2147483647, 2147483647, 'JP', 'Japan'), +('207.209.105.0', '207.209.105.255', 2147483647, 2147483647, 'US', 'United States'), +('207.209.106.0', '207.209.106.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('207.209.107.0', '207.209.107.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('207.209.108.0', '207.209.110.255', 2147483647, 2147483647, 'US', 'United States'), +('207.209.111.0', '207.209.112.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('207.209.113.0', '207.209.113.255', 2147483647, 2147483647, 'AU', 'Australia'), +('207.209.114.0', '207.209.114.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('207.209.115.0', '207.209.115.255', 2147483647, 2147483647, 'US', 'United States'), +('207.209.116.0', '207.209.116.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('207.209.117.0', '207.209.117.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('207.209.118.0', '207.209.118.255', 2147483647, 2147483647, 'US', 'United States'), +('207.209.119.0', '207.209.119.15', 2147483647, 2147483647, 'BR', 'Brazil'), +('207.209.119.16', '207.209.119.255', 2147483647, 2147483647, 'US', 'United States'), +('207.209.120.0', '207.209.120.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('207.209.121.0', '207.209.121.63', 2147483647, 2147483647, 'EC', 'Ecuador'), +('207.209.121.64', '207.209.121.255', 2147483647, 2147483647, 'US', 'United States'), +('207.209.122.0', '207.209.122.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('207.209.123.0', '207.209.123.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('207.209.124.0', '207.209.124.127', 2147483647, 2147483647, 'US', 'United States'), +('207.209.124.128', '207.209.124.255', 2147483647, 2147483647, 'FR', 'France'), +('207.209.125.0', '207.209.125.255', 2147483647, 2147483647, 'DE', 'Germany'), +('207.209.126.0', '207.209.126.255', 2147483647, 2147483647, 'US', 'United States'), +('207.209.127.0', '207.209.128.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('207.209.129.0', '207.209.129.255', 2147483647, 2147483647, 'ES', 'Spain'), +('207.209.130.0', '207.209.130.255', 2147483647, 2147483647, 'DE', 'Germany'), +('207.209.131.0', '207.209.131.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('207.209.132.0', '207.209.132.255', 2147483647, 2147483647, 'US', 'United States'), +('207.209.133.0', '207.209.133.255', 2147483647, 2147483647, 'FR', 'France'), +('207.209.134.0', '207.209.134.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('207.209.135.0', '207.209.135.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('207.209.136.0', '207.209.137.63', 2147483647, 2147483647, 'US', 'United States'), +('207.209.137.64', '207.209.137.95', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('207.209.137.96', '207.209.137.127', 2147483647, 2147483647, 'US', 'United States'), +('207.209.137.128', '207.209.137.159', 2147483647, 2147483647, 'CH', 'Switzerland'), +('207.209.137.160', '207.209.138.255', 2147483647, 2147483647, 'US', 'United States'), +('207.209.139.0', '207.209.140.255', 2147483647, 2147483647, 'NO', 'Norway'), +('207.209.141.0', '207.209.142.127', 2147483647, 2147483647, 'US', 'United States'), +('207.209.142.128', '207.209.142.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('207.209.143.0', '207.209.143.255', 2147483647, 2147483647, 'US', 'United States'), +('207.209.144.0', '207.209.144.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('207.209.145.0', '207.209.145.255', 2147483647, 2147483647, 'AU', 'Australia'), +('207.209.146.0', '207.209.146.255', 2147483647, 2147483647, 'NO', 'Norway'), +('207.209.147.0', '207.209.147.255', 2147483647, 2147483647, 'ES', 'Spain'), +('207.209.148.0', '207.209.148.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('207.209.149.0', '207.209.149.255', 2147483647, 2147483647, 'FR', 'France'), +('207.209.150.0', '207.209.150.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('207.209.151.0', '207.209.151.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('207.209.152.0', '207.209.152.255', 2147483647, 2147483647, 'CA', 'Canada'), +('207.209.153.0', '207.209.153.255', 2147483647, 2147483647, 'US', 'United States'), +('207.209.154.0', '207.209.154.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('207.209.155.0', '207.209.155.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('207.209.156.0', '207.209.156.255', 2147483647, 2147483647, 'US', 'United States'), +('207.209.157.0', '207.209.157.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('207.209.158.0', '207.209.158.255', 2147483647, 2147483647, 'US', 'United States'), +('207.209.159.0', '207.209.159.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('207.209.160.0', '207.209.160.255', 2147483647, 2147483647, 'FI', 'Finland'), +('207.209.161.0', '207.209.161.255', 2147483647, 2147483647, 'ES', 'Spain'), +('207.209.162.0', '207.209.162.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('207.209.163.0', '207.209.163.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('207.209.164.0', '207.209.164.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('207.209.165.0', '207.209.165.255', 2147483647, 2147483647, 'DE', 'Germany'), +('207.209.166.0', '207.209.166.255', 2147483647, 2147483647, 'JP', 'Japan'), +('207.209.167.0', '207.209.167.255', 2147483647, 2147483647, 'DE', 'Germany'), +('207.209.168.0', '207.209.168.255', 2147483647, 2147483647, 'US', 'United States'), +('207.209.169.0', '207.209.169.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('207.209.170.0', '207.209.170.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('207.209.171.0', '207.209.171.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('207.209.172.0', '207.209.172.255', 2147483647, 2147483647, 'ES', 'Spain'), +('207.209.173.0', '207.209.173.31', 2147483647, 2147483647, 'US', 'United States'), +('207.209.173.32', '207.209.173.63', 2147483647, 2147483647, 'MX', 'Mexico'), +('207.209.173.64', '207.209.173.127', 2147483647, 2147483647, 'US', 'United States'), +('207.209.173.128', '207.209.173.159', 2147483647, 2147483647, 'MX', 'Mexico'), +('207.209.173.160', '207.209.173.255', 2147483647, 2147483647, 'US', 'United States'), +('207.209.174.0', '207.209.174.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('207.209.175.0', '207.209.175.255', 2147483647, 2147483647, 'NO', 'Norway'), +('207.209.176.0', '207.209.176.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('207.209.177.0', '207.209.177.255', 2147483647, 2147483647, 'FI', 'Finland'), +('207.209.178.0', '207.209.178.255', 2147483647, 2147483647, 'IL', 'Israel'), +('207.209.179.0', '207.209.179.7', 2147483647, 2147483647, 'CH', 'Switzerland'), +('207.209.179.8', '207.209.179.31', 2147483647, 2147483647, 'US', 'United States'), +('207.209.179.32', '207.209.179.63', 2147483647, 2147483647, 'FI', 'Finland'), +('207.209.179.64', '207.209.180.255', 2147483647, 2147483647, 'US', 'United States'), +('207.209.181.0', '207.209.181.255', 2147483647, 2147483647, 'JP', 'Japan'), +('207.209.182.0', '207.209.182.255', 2147483647, 2147483647, 'US', 'United States'), +('207.209.183.0', '207.209.183.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('207.209.184.0', '207.209.184.255', 2147483647, 2147483647, 'BW', 'Botswana'), +('207.209.185.0', '207.209.185.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('207.209.186.0', '207.209.186.255', 2147483647, 2147483647, 'US', 'United States'), +('207.209.187.0', '207.209.187.255', 2147483647, 2147483647, 'NO', 'Norway'), +('207.209.188.0', '207.209.189.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('207.209.190.0', '207.209.190.255', 2147483647, 2147483647, 'US', 'United States'), +('207.209.191.0', '207.209.191.255', 2147483647, 2147483647, 'CL', 'Chile'), +('207.209.192.0', '207.209.192.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('207.209.193.0', '207.209.198.255', 2147483647, 2147483647, 'JP', 'Japan'), +('207.209.199.0', '207.209.199.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('207.209.200.0', '207.209.201.255', 2147483647, 2147483647, 'JP', 'Japan'), +('207.209.202.0', '207.209.202.255', 2147483647, 2147483647, 'US', 'United States'), +('207.209.203.0', '207.209.203.255', 2147483647, 2147483647, 'JP', 'Japan'), +('207.209.204.0', '207.209.204.255', 2147483647, 2147483647, 'IT', 'Italy'), +('207.209.205.0', '207.209.205.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('207.209.206.0', '207.209.206.127', 2147483647, 2147483647, 'US', 'United States'), +('207.209.206.128', '207.209.206.255', 2147483647, 2147483647, 'CN', 'China'), +('207.209.207.0', '207.209.207.255', 2147483647, 2147483647, 'US', 'United States'), +('207.209.208.0', '207.209.208.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('207.209.209.0', '207.209.209.255', 2147483647, 2147483647, 'US', 'United States'), +('207.209.210.0', '207.209.210.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('207.209.211.0', '207.209.211.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('207.209.212.0', '207.209.212.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('207.209.213.0', '207.209.213.255', 2147483647, 2147483647, 'FR', 'France'), +('207.209.214.0', '207.209.214.255', 2147483647, 2147483647, 'ES', 'Spain'), +('207.209.215.0', '207.209.215.255', 2147483647, 2147483647, 'IL', 'Israel'), +('207.209.216.0', '207.209.216.255', 2147483647, 2147483647, 'ES', 'Spain'), +('207.209.217.0', '207.209.217.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('207.209.218.0', '207.209.218.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('207.209.219.0', '207.209.219.255', 2147483647, 2147483647, 'DE', 'Germany'), +('207.209.220.0', '207.209.220.255', 2147483647, 2147483647, 'US', 'United States'), +('207.209.221.0', '207.209.222.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('207.209.223.0', '207.209.224.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('207.209.225.0', '207.209.225.255', 2147483647, 2147483647, 'FR', 'France'), +('207.209.226.0', '207.209.226.31', 2147483647, 2147483647, 'US', 'United States'), +('207.209.226.32', '207.209.226.47', 2147483647, 2147483647, 'CN', 'China'), +('207.209.226.48', '207.209.226.255', 2147483647, 2147483647, 'US', 'United States'), +('207.209.227.0', '207.209.227.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('207.209.228.0', '207.209.228.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('207.209.229.0', '207.209.229.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('207.209.230.0', '207.209.231.255', 2147483647, 2147483647, 'US', 'United States'), +('207.209.232.0', '207.209.232.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('207.209.233.0', '207.209.233.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('207.209.234.0', '207.209.239.255', 2147483647, 2147483647, 'US', 'United States'), +('207.209.240.0', '207.209.240.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('207.209.241.0', '207.209.241.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('207.209.242.0', '207.209.242.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('207.209.243.0', '207.209.254.255', 2147483647, 2147483647, 'US', 'United States'), +('207.209.255.0', '207.209.255.127', 2147483647, 2147483647, 'JP', 'Japan'), +('207.209.255.128', '207.209.255.255', 2147483647, 2147483647, 'US', 'United States'), +('207.210.0.0', '207.210.63.255', 2147483647, 2147483647, 'CA', 'Canada'), +('207.210.64.0', '207.210.207.255', 2147483647, 2147483647, 'US', 'United States'), +('207.210.208.0', '207.210.208.255', 2147483647, 2147483647, 'CA', 'Canada'), +('207.210.209.0', '207.210.211.111', 2147483647, 2147483647, 'US', 'United States'), +('207.210.211.112', '207.210.211.119', 2147483647, 2147483647, 'CA', 'Canada'), +('207.210.211.120', '207.210.211.151', 2147483647, 2147483647, 'US', 'United States'), +('207.210.211.152', '207.210.211.159', 2147483647, 2147483647, 'IT', 'Italy'), +('207.210.211.160', '207.210.211.191', 2147483647, 2147483647, 'US', 'United States'), +('207.210.211.192', '207.210.211.215', 2147483647, 2147483647, 'IN', 'India'), +('207.210.211.216', '207.210.214.255', 2147483647, 2147483647, 'US', 'United States'), +('207.210.215.0', '207.210.215.255', 2147483647, 2147483647, 'CA', 'Canada'), +('207.210.216.0', '207.210.232.255', 2147483647, 2147483647, 'US', 'United States'), +('207.210.233.0', '207.210.233.255', 2147483647, 2147483647, 'IN', 'India'), +('207.210.234.0', '207.210.254.255', 2147483647, 2147483647, 'US', 'United States'), +('207.210.255.0', '207.210.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('207.211.0.0', '207.215.255.255', 2147483647, 2147483647, 'US', 'United States'), +('207.216.0.0', '207.216.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('207.217.0.0', '207.218.64.255', 2147483647, 2147483647, 'US', 'United States'), +('207.218.65.0', '207.218.65.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('207.218.65.16', '207.218.72.255', 2147483647, 2147483647, 'US', 'United States'), +('207.218.73.0', '207.218.73.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('207.218.74.0', '207.218.89.255', 2147483647, 2147483647, 'US', 'United States'), +('207.218.90.0', '207.218.90.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('207.218.91.0', '207.218.103.255', 2147483647, 2147483647, 'US', 'United States'), +('207.218.104.0', '207.218.104.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('207.218.105.0', '207.218.126.255', 2147483647, 2147483647, 'US', 'United States'), +('207.218.127.0', '207.218.127.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('207.218.128.0', '207.218.255.255', 2147483647, 2147483647, 'US', 'United States'), +('207.219.0.0', '207.219.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('207.220.0.0', '207.227.23.255', 2147483647, 2147483647, 'US', 'United States'), +('207.227.24.0', '207.227.31.255', 2147483647, 2147483647, 'CA', 'Canada'), +('207.227.32.0', '207.228.63.255', 2147483647, 2147483647, 'US', 'United States'), +('207.228.64.0', '207.228.127.255', 2147483647, 2147483647, 'CA', 'Canada'), +('207.228.128.0', '207.228.129.255', 2147483647, 2147483647, 'KY', 'Cayman Islands'), +('207.228.130.0', '207.228.139.255', 2147483647, 2147483647, 'BM', 'Bermuda'), +('207.228.140.0', '207.228.140.255', 2147483647, 2147483647, 'KY', 'Cayman Islands'), +('207.228.141.0', '207.228.141.255', 2147483647, 2147483647, 'BM', 'Bermuda'), +('207.228.142.0', '207.228.143.255', 2147483647, 2147483647, 'KY', 'Cayman Islands'), +('207.228.144.0', '207.228.144.255', 2147483647, 2147483647, 'BM', 'Bermuda'), +('207.228.145.0', '207.228.147.255', 2147483647, 2147483647, 'KY', 'Cayman Islands'), +('207.228.148.0', '207.228.191.255', 2147483647, 2147483647, 'BM', 'Bermuda'), +('207.228.192.0', '207.228.255.255', 2147483647, 2147483647, 'US', 'United States'), +('207.229.0.0', '207.229.63.255', 2147483647, 2147483647, 'CA', 'Canada'), +('207.229.64.0', '207.230.49.255', 2147483647, 2147483647, 'US', 'United States'), +('207.230.50.0', '207.230.50.255', 2147483647, 2147483647, 'KW', 'Kuwait'), +('207.230.51.0', '207.230.223.255', 2147483647, 2147483647, 'US', 'United States'), +('207.230.224.0', '207.230.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('207.231.0.0', '207.231.191.255', 2147483647, 2147483647, 'US', 'United States'), +('207.231.192.0', '207.231.195.255', 2147483647, 2147483647, 'CA', 'Canada'), +('207.231.196.0', '207.231.223.255', 2147483647, 2147483647, 'US', 'United States'), +('207.231.224.0', '207.231.239.255', 2147483647, 2147483647, 'CA', 'Canada'), +('207.231.240.0', '207.231.255.255', 2147483647, 2147483647, 'US', 'United States'), +('207.232.0.0', '207.232.63.255', 2147483647, 2147483647, 'IL', 'Israel'), +('207.232.64.0', '207.232.95.255', 2147483647, 2147483647, 'US', 'United States'), +('207.232.96.0', '207.232.100.175', 2147483647, 2147483647, 'CA', 'Canada'), +('207.232.100.176', '207.232.100.191', 2147483647, 2147483647, 'US', 'United States'), +('207.232.100.192', '207.232.112.127', 2147483647, 2147483647, 'CA', 'Canada'), +('207.232.112.128', '207.232.112.135', 2147483647, 2147483647, 'US', 'United States'), +('207.232.112.136', '207.232.117.31', 2147483647, 2147483647, 'CA', 'Canada'), +('207.232.117.32', '207.232.117.39', 2147483647, 2147483647, 'US', 'United States'), +('207.232.117.40', '207.232.127.255', 2147483647, 2147483647, 'CA', 'Canada'), +('207.232.128.0', '207.235.60.255', 2147483647, 2147483647, 'US', 'United States'), +('207.235.61.0', '207.235.61.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('207.235.62.0', '207.235.255.255', 2147483647, 2147483647, 'US', 'United States'), +('207.236.0.0', '207.236.42.255', 2147483647, 2147483647, 'CA', 'Canada'), +('207.236.43.0', '207.236.43.255', 2147483647, 2147483647, 'US', 'United States'), +('207.236.44.0', '207.236.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('207.237.0.0', '207.240.13.255', 2147483647, 2147483647, 'US', 'United States'), +('207.240.14.0', '207.240.14.255', 2147483647, 2147483647, 'AU', 'Australia'), +('207.240.15.0', '207.241.159.255', 2147483647, 2147483647, 'US', 'United States'), +('207.241.160.0', '207.241.164.127', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('207.241.164.128', '207.241.164.191', 2147483647, 2147483647, 'US', 'United States'), +('207.241.164.192', '207.241.164.223', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('207.241.164.224', '207.241.164.239', 2147483647, 2147483647, 'BY', 'Belarus'), +('207.241.164.240', '207.241.166.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('207.241.167.0', '207.241.167.255', 2147483647, 2147483647, 'US', 'United States'), +('207.241.168.0', '207.241.168.255', 2147483647, 2147483647, 'AL', 'Albania'), +('207.241.169.0', '207.241.169.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('207.241.170.0', '207.241.172.255', 2147483647, 2147483647, 'BA', 'Bosnia and Herzegovina'), +('207.241.173.0', '207.241.173.255', 2147483647, 2147483647, 'RO', 'Romania'), +('207.241.174.0', '207.241.174.255', 2147483647, 2147483647, 'AL', 'Albania'), +('207.241.175.0', '207.241.176.255', 2147483647, 2147483647, 'JM', 'Jamaica'), +('207.241.177.0', '207.241.191.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('207.241.192.0', '207.244.106.255', 2147483647, 2147483647, 'US', 'United States'), +('207.244.107.0', '207.244.107.255', 2147483647, 2147483647, 'CA', 'Canada'), +('207.244.108.0', '207.244.255.255', 2147483647, 2147483647, 'US', 'United States'), +('207.245.0.0', '207.245.63.255', 2147483647, 2147483647, 'CA', 'Canada'), +('207.245.64.0', '207.245.191.255', 2147483647, 2147483647, 'US', 'United States'), +('207.245.192.0', '207.245.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('207.246.0.0', '207.247.255.255', 2147483647, 2147483647, 'US', 'United States'), +('207.248.0.0', '207.249.255.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('207.250.0.0', '207.251.31.255', 2147483647, 2147483647, 'US', 'United States'), +('207.251.32.0', '207.251.47.255', 2147483647, 2147483647, 'CA', 'Canada'), +('207.251.48.0', '207.252.255.255', 2147483647, 2147483647, 'US', 'United States'), +('207.253.0.0', '207.253.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('207.254.0.0', '207.254.127.255', 2147483647, 2147483647, 'US', 'United States'), +('207.254.128.0', '207.254.143.255', 2147483647, 2147483647, 'JM', 'Jamaica'), +('207.254.144.0', '208.0.48.255', 2147483647, 2147483647, 'US', 'United States'), +('208.0.49.0', '208.0.49.255', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('208.0.50.0', '208.0.223.255', 2147483647, 2147483647, 'US', 'United States'), +('208.0.224.0', '208.0.224.255', 2147483647, 2147483647, 'DM', 'Dominica'), +('208.0.225.0', '208.0.226.255', 2147483647, 2147483647, 'LC', 'Saint Lucia'), +('208.0.227.0', '208.0.227.151', 2147483647, 2147483647, 'AG', 'Antigua and Barbuda'), +('208.0.227.152', '208.0.227.159', 2147483647, 2147483647, 'VG', 'Virgin Islands, British'), +('208.0.227.160', '208.0.228.255', 2147483647, 2147483647, 'AG', 'Antigua and Barbuda'), +('208.0.229.0', '208.0.229.255', 2147483647, 2147483647, 'VG', 'Virgin Islands, British'), +('208.0.230.0', '208.0.230.255', 2147483647, 2147483647, 'DM', 'Dominica'), +('208.0.231.0', '208.0.231.255', 2147483647, 2147483647, 'LC', 'Saint Lucia'), +('208.0.232.0', '208.1.47.255', 2147483647, 2147483647, 'US', 'United States'), +('208.1.48.0', '208.1.55.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('208.1.56.0', '208.1.89.255', 2147483647, 2147483647, 'US', 'United States'), +('208.1.90.0', '208.1.90.15', 2147483647, 2147483647, 'CA', 'Canada'), +('208.1.90.16', '208.1.104.63', 2147483647, 2147483647, 'US', 'United States'), +('208.1.104.64', '208.1.104.79', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('208.1.104.80', '208.1.115.215', 2147483647, 2147483647, 'US', 'United States'), +('208.1.115.216', '208.1.115.223', 2147483647, 2147483647, 'DE', 'Germany'), +('208.1.115.224', '208.1.137.207', 2147483647, 2147483647, 'US', 'United States'), +('208.1.137.208', '208.1.137.223', 2147483647, 2147483647, 'CA', 'Canada'), +('208.1.137.224', '208.1.188.239', 2147483647, 2147483647, 'US', 'United States'), +('208.1.188.240', '208.1.188.247', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('208.1.188.248', '208.1.189.255', 2147483647, 2147483647, 'US', 'United States'), +('208.1.190.0', '208.1.190.255', 2147483647, 2147483647, 'BO', 'Bolivia'), +('208.1.191.0', '208.4.179.255', 2147483647, 2147483647, 'US', 'United States'), +('208.4.180.0', '208.4.181.255', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('208.4.182.0', '208.5.206.159', 2147483647, 2147483647, 'US', 'United States'), +('208.5.206.160', '208.5.206.191', 2147483647, 2147483647, 'CA', 'Canada'), +('208.5.206.192', '208.6.72.255', 2147483647, 2147483647, 'US', 'United States'), +('208.6.73.0', '208.6.74.191', 2147483647, 2147483647, 'CA', 'Canada'), +('208.6.74.192', '208.6.74.223', 2147483647, 2147483647, 'US', 'United States'), +('208.6.74.224', '208.6.75.31', 2147483647, 2147483647, 'CA', 'Canada'), +('208.6.75.32', '208.6.75.255', 2147483647, 2147483647, 'US', 'United States'), +('208.6.76.0', '208.6.79.254', 2147483647, 2147483647, 'CA', 'Canada'), +('208.6.79.255', '208.8.169.255', 2147483647, 2147483647, 'US', 'United States'), +('208.8.170.0', '208.8.171.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('208.8.172.0', '208.9.47.255', 2147483647, 2147483647, 'US', 'United States'), +('208.9.48.0', '208.9.63.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('208.9.64.0', '208.12.159.255', 2147483647, 2147483647, 'US', 'United States'), +('208.12.160.0', '208.12.163.255', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('208.12.164.0', '208.15.38.175', 2147483647, 2147483647, 'US', 'United States'), +('208.15.38.176', '208.15.38.191', 2147483647, 2147483647, 'CA', 'Canada'), +('208.15.38.192', '208.15.232.255', 2147483647, 2147483647, 'US', 'United States'), +('208.15.233.0', '208.15.233.255', 2147483647, 2147483647, 'PR', 'Puerto Rico'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('208.15.234.0', '208.16.89.143', 2147483647, 2147483647, 'US', 'United States'), +('208.16.89.144', '208.16.89.159', 2147483647, 2147483647, 'CA', 'Canada'), +('208.16.89.160', '208.17.42.255', 2147483647, 2147483647, 'US', 'United States'), +('208.17.43.0', '208.17.43.255', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('208.17.44.0', '208.18.89.255', 2147483647, 2147483647, 'US', 'United States'), +('208.18.90.0', '208.18.90.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.18.91.0', '208.18.150.255', 2147483647, 2147483647, 'US', 'United States'), +('208.18.151.0', '208.18.151.255', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('208.18.152.0', '208.19.63.255', 2147483647, 2147483647, 'US', 'United States'), +('208.19.64.0', '208.19.71.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('208.19.72.0', '208.20.11.255', 2147483647, 2147483647, 'US', 'United States'), +('208.20.12.0', '208.20.15.255', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('208.20.16.0', '208.23.198.239', 2147483647, 2147483647, 'US', 'United States'), +('208.23.198.240', '208.23.198.247', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('208.23.198.248', '208.23.228.63', 2147483647, 2147483647, 'US', 'United States'), +('208.23.228.64', '208.23.228.95', 2147483647, 2147483647, 'CA', 'Canada'), +('208.23.228.96', '208.26.63.255', 2147483647, 2147483647, 'US', 'United States'), +('208.26.64.0', '208.26.95.255', 2147483647, 2147483647, 'BM', 'Bermuda'), +('208.26.96.0', '208.27.181.255', 2147483647, 2147483647, 'US', 'United States'), +('208.27.182.0', '208.27.187.255', 2147483647, 2147483647, 'VI', 'Virgin Islands, U.S.'), +('208.27.188.0', '208.28.47.255', 2147483647, 2147483647, 'US', 'United States'), +('208.28.48.0', '208.28.63.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.28.64.0', '208.29.127.255', 2147483647, 2147483647, 'US', 'United States'), +('208.29.128.0', '208.29.135.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('208.29.136.0', '208.30.39.255', 2147483647, 2147483647, 'US', 'United States'), +('208.30.40.0', '208.30.41.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('208.30.42.0', '208.30.95.255', 2147483647, 2147483647, 'US', 'United States'), +('208.30.96.0', '208.30.127.255', 2147483647, 2147483647, 'VI', 'Virgin Islands, U.S.'), +('208.30.128.0', '208.31.169.255', 2147483647, 2147483647, 'US', 'United States'), +('208.31.170.0', '208.31.170.255', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('208.31.171.0', '208.31.199.255', 2147483647, 2147483647, 'US', 'United States'), +('208.31.200.0', '208.31.207.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('208.31.208.0', '208.32.26.47', 2147483647, 2147483647, 'US', 'United States'), +('208.32.26.48', '208.32.26.55', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('208.32.26.56', '208.32.87.255', 2147483647, 2147483647, 'US', 'United States'), +('208.32.88.0', '208.32.91.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('208.32.92.0', '208.33.11.255', 2147483647, 2147483647, 'US', 'United States'), +('208.33.12.0', '208.33.12.255', 2147483647, 2147483647, 'AN', 'Netherlands Antilles'), +('208.33.13.0', '208.34.126.255', 2147483647, 2147483647, 'US', 'United States'), +('208.34.127.0', '208.34.127.255', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('208.34.128.0', '208.35.3.255', 2147483647, 2147483647, 'US', 'United States'), +('208.35.4.0', '208.35.7.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('208.35.8.0', '208.35.19.255', 2147483647, 2147483647, 'US', 'United States'), +('208.35.20.0', '208.35.21.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('208.35.22.0', '208.35.55.255', 2147483647, 2147483647, 'US', 'United States'), +('208.35.56.0', '208.35.59.255', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('208.35.60.0', '208.35.66.23', 2147483647, 2147483647, 'US', 'United States'), +('208.35.66.24', '208.35.66.31', 2147483647, 2147483647, 'IT', 'Italy'), +('208.35.66.32', '208.35.66.167', 2147483647, 2147483647, 'US', 'United States'), +('208.35.66.168', '208.35.66.175', 2147483647, 2147483647, 'AU', 'Australia'), +('208.35.66.176', '208.35.67.111', 2147483647, 2147483647, 'US', 'United States'), +('208.35.67.112', '208.35.67.127', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('208.35.67.128', '208.35.72.31', 2147483647, 2147483647, 'US', 'United States'), +('208.35.72.32', '208.35.72.39', 2147483647, 2147483647, 'VE', 'Venezuela'), +('208.35.72.40', '208.35.95.255', 2147483647, 2147483647, 'US', 'United States'), +('208.35.96.0', '208.35.105.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('208.35.106.0', '208.35.111.255', 2147483647, 2147483647, 'US', 'United States'), +('208.35.112.0', '208.35.127.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('208.35.128.0', '208.35.197.255', 2147483647, 2147483647, 'US', 'United States'), +('208.35.198.0', '208.35.198.15', 2147483647, 2147483647, 'DK', 'Denmark'), +('208.35.198.16', '208.35.198.63', 2147483647, 2147483647, 'US', 'United States'), +('208.35.198.64', '208.35.198.71', 2147483647, 2147483647, 'DK', 'Denmark'), +('208.35.198.72', '208.35.198.87', 2147483647, 2147483647, 'US', 'United States'), +('208.35.198.88', '208.35.198.111', 2147483647, 2147483647, 'AU', 'Australia'), +('208.35.198.112', '208.37.255.255', 2147483647, 2147483647, 'US', 'United States'), +('208.38.0.0', '208.38.63.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.38.64.0', '208.38.146.127', 2147483647, 2147483647, 'US', 'United States'), +('208.38.146.128', '208.38.146.159', 2147483647, 2147483647, 'CH', 'Switzerland'), +('208.38.146.160', '208.38.191.255', 2147483647, 2147483647, 'US', 'United States'), +('208.39.0.0', '208.42.228.231', 2147483647, 2147483647, 'US', 'United States'), +('208.42.228.232', '208.42.228.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('208.42.228.240', '208.45.232.255', 2147483647, 2147483647, 'US', 'United States'), +('208.45.233.0', '208.45.239.255', 2147483647, 2147483647, 'PA', 'Panama'), +('208.45.240.0', '208.47.213.127', 2147483647, 2147483647, 'US', 'United States'), +('208.47.213.128', '208.47.213.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('208.47.214.0', '208.48.80.255', 2147483647, 2147483647, 'US', 'United States'), +('208.48.81.0', '208.48.81.31', 2147483647, 2147483647, 'CA', 'Canada'), +('208.48.81.32', '208.48.81.39', 2147483647, 2147483647, 'US', 'United States'), +('208.48.81.40', '208.48.81.47', 2147483647, 2147483647, 'DE', 'Germany'), +('208.48.81.48', '208.48.81.63', 2147483647, 2147483647, 'AU', 'Australia'), +('208.48.81.64', '208.48.81.127', 2147483647, 2147483647, 'US', 'United States'), +('208.48.81.128', '208.48.81.255', 2147483647, 2147483647, 'AU', 'Australia'), +('208.48.82.0', '208.48.82.255', 2147483647, 2147483647, 'US', 'United States'), +('208.48.83.0', '208.48.83.63', 2147483647, 2147483647, 'AU', 'Australia'), +('208.48.83.64', '208.51.255.255', 2147483647, 2147483647, 'US', 'United States'), +('208.52.0.0', '208.52.4.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('208.52.5.0', '208.52.7.255', 2147483647, 2147483647, 'US', 'United States'), +('208.52.8.0', '208.52.11.255', 2147483647, 2147483647, 'HT', 'Haiti'), +('208.52.12.0', '208.52.16.255', 2147483647, 2147483647, 'US', 'United States'), +('208.52.17.0', '208.52.17.255', 2147483647, 2147483647, 'BO', 'Bolivia'), +('208.52.18.0', '208.52.18.255', 2147483647, 2147483647, 'US', 'United States'), +('208.52.19.0', '208.52.19.255', 2147483647, 2147483647, 'BO', 'Bolivia'), +('208.52.20.0', '208.52.20.255', 2147483647, 2147483647, 'US', 'United States'), +('208.52.21.0', '208.52.21.255', 2147483647, 2147483647, 'BO', 'Bolivia'), +('208.52.22.0', '208.52.37.255', 2147483647, 2147483647, 'HT', 'Haiti'), +('208.52.38.0', '208.52.39.255', 2147483647, 2147483647, 'US', 'United States'), +('208.52.40.0', '208.52.47.255', 2147483647, 2147483647, 'HT', 'Haiti'), +('208.52.48.0', '208.52.49.255', 2147483647, 2147483647, 'US', 'United States'), +('208.52.50.0', '208.52.53.255', 2147483647, 2147483647, 'PY', 'Paraguay'), +('208.52.54.0', '208.52.78.255', 2147483647, 2147483647, 'US', 'United States'), +('208.52.79.0', '208.52.79.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('208.52.80.0', '208.52.80.31', 2147483647, 2147483647, 'BO', 'Bolivia'), +('208.52.80.32', '208.52.80.63', 2147483647, 2147483647, 'US', 'United States'), +('208.52.80.64', '208.52.85.255', 2147483647, 2147483647, 'BO', 'Bolivia'), +('208.52.86.0', '208.52.86.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('208.52.87.0', '208.52.87.255', 2147483647, 2147483647, 'US', 'United States'), +('208.52.88.0', '208.52.91.255', 2147483647, 2147483647, 'BO', 'Bolivia'), +('208.52.92.0', '208.52.92.255', 2147483647, 2147483647, 'NA', 'Namibia'), +('208.52.93.0', '208.52.111.255', 2147483647, 2147483647, 'US', 'United States'), +('208.52.112.0', '208.52.112.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('208.52.113.0', '208.53.3.63', 2147483647, 2147483647, 'US', 'United States'), +('208.53.3.64', '208.53.3.95', 2147483647, 2147483647, 'CY', 'Cyprus'), +('208.53.3.96', '208.53.5.255', 2147483647, 2147483647, 'US', 'United States'), +('208.53.6.0', '208.53.6.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.53.7.0', '208.53.13.255', 2147483647, 2147483647, 'US', 'United States'), +('208.53.14.0', '208.53.14.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.53.15.0', '208.53.18.255', 2147483647, 2147483647, 'US', 'United States'), +('208.53.19.0', '208.53.19.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.53.20.0', '208.53.22.159', 2147483647, 2147483647, 'US', 'United States'), +('208.53.22.160', '208.53.22.191', 2147483647, 2147483647, 'CA', 'Canada'), +('208.53.22.192', '208.53.27.31', 2147483647, 2147483647, 'US', 'United States'), +('208.53.27.32', '208.53.27.63', 2147483647, 2147483647, 'CY', 'Cyprus'), +('208.53.27.64', '208.54.175.255', 2147483647, 2147483647, 'US', 'United States'), +('208.54.176.0', '208.54.191.255', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('208.54.192.0', '208.62.18.191', 2147483647, 2147483647, 'US', 'United States'), +('208.62.18.192', '208.62.18.223', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('208.62.18.224', '208.64.43.255', 2147483647, 2147483647, 'US', 'United States'), +('208.64.44.0', '208.64.47.255', 2147483647, 2147483647, 'VG', 'Virgin Islands, British'), +('208.64.48.0', '208.64.75.255', 2147483647, 2147483647, 'US', 'United States'), +('208.64.76.0', '208.64.79.255', 2147483647, 2147483647, 'BM', 'Bermuda'), +('208.64.80.0', '208.64.103.255', 2147483647, 2147483647, 'US', 'United States'), +('208.64.104.0', '208.64.107.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.64.108.0', '208.64.202.255', 2147483647, 2147483647, 'US', 'United States'), +('208.64.203.0', '208.64.203.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('208.64.203.32', '208.65.59.255', 2147483647, 2147483647, 'US', 'United States'), +('208.65.60.0', '208.65.63.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.65.64.0', '208.65.71.255', 2147483647, 2147483647, 'US', 'United States'), +('208.65.72.0', '208.65.79.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.65.80.0', '208.65.239.255', 2147483647, 2147483647, 'US', 'United States'), +('208.65.240.0', '208.65.247.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.65.248.0', '208.65.255.255', 2147483647, 2147483647, 'US', 'United States'), +('208.66.0.0', '208.66.3.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.66.4.0', '208.66.15.255', 2147483647, 2147483647, 'US', 'United States'), +('208.66.16.0', '208.66.19.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.66.20.0', '208.66.47.255', 2147483647, 2147483647, 'US', 'United States'), +('208.66.48.0', '208.66.55.255', 2147483647, 2147483647, 'AI', 'Anguilla'), +('208.66.56.0', '208.66.67.255', 2147483647, 2147483647, 'US', 'United States'), +('208.66.68.0', '208.66.71.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.66.72.0', '208.66.91.255', 2147483647, 2147483647, 'US', 'United States'), +('208.66.92.0', '208.66.95.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.66.96.0', '208.66.97.95', 2147483647, 2147483647, 'US', 'United States'), +('208.66.97.96', '208.66.97.111', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('208.66.97.112', '208.66.111.255', 2147483647, 2147483647, 'US', 'United States'), +('208.66.112.0', '208.66.119.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.66.120.0', '208.66.193.79', 2147483647, 2147483647, 'US', 'United States'), +('208.66.193.80', '208.66.193.95', 2147483647, 2147483647, 'BY', 'Belarus'), +('208.66.193.96', '208.66.193.111', 2147483647, 2147483647, 'CY', 'Cyprus'), +('208.66.193.112', '208.66.193.175', 2147483647, 2147483647, 'US', 'United States'), +('208.66.193.176', '208.66.193.192', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('208.66.193.193', '208.66.193.254', 2147483647, 2147483647, 'ES', 'Spain'), +('208.66.193.255', '208.66.194.63', 2147483647, 2147483647, 'US', 'United States'), +('208.66.194.64', '208.66.194.79', 2147483647, 2147483647, 'CA', 'Canada'), +('208.66.194.80', '208.66.194.95', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('208.66.194.96', '208.66.195.31', 2147483647, 2147483647, 'US', 'United States'), +('208.66.195.32', '208.66.195.63', 2147483647, 2147483647, 'CA', 'Canada'), +('208.66.195.64', '208.66.195.95', 2147483647, 2147483647, 'US', 'United States'), +('208.66.195.96', '208.66.195.127', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('208.66.195.128', '208.66.195.193', 2147483647, 2147483647, 'EE', 'Estonia'), +('208.66.195.194', '208.66.195.207', 2147483647, 2147483647, 'US', 'United States'), +('208.66.195.208', '208.66.195.215', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('208.66.195.216', '208.66.227.255', 2147483647, 2147483647, 'US', 'United States'), +('208.66.228.0', '208.66.231.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.66.232.0', '208.66.247.255', 2147483647, 2147483647, 'US', 'United States'), +('208.66.248.0', '208.66.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.67.0.0', '208.67.91.255', 2147483647, 2147483647, 'US', 'United States'), +('208.67.92.0', '208.67.95.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.67.96.0', '208.67.143.255', 2147483647, 2147483647, 'US', 'United States'), +('208.67.144.0', '208.67.151.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.67.152.0', '208.67.167.255', 2147483647, 2147483647, 'US', 'United States'), +('208.67.168.0', '208.67.171.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.67.172.0', '208.67.225.100', 2147483647, 2147483647, 'US', 'United States'), +('208.67.225.101', '208.67.225.108', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('208.67.225.109', '208.67.226.229', 2147483647, 2147483647, 'US', 'United States'), +('208.67.226.230', '208.67.226.246', 2147483647, 2147483647, 'CA', 'Canada'), +('208.67.226.247', '208.67.227.139', 2147483647, 2147483647, 'US', 'United States'), +('208.67.227.140', '208.67.227.157', 2147483647, 2147483647, 'CA', 'Canada'), +('208.67.227.158', '208.67.227.193', 2147483647, 2147483647, 'US', 'United States'), +('208.67.227.194', '208.67.227.209', 2147483647, 2147483647, 'CA', 'Canada'), +('208.67.227.210', '208.68.15.255', 2147483647, 2147483647, 'US', 'United States'), +('208.68.16.0', '208.68.19.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.68.20.0', '208.68.71.255', 2147483647, 2147483647, 'US', 'United States'), +('208.68.72.0', '208.68.75.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.68.76.0', '208.68.87.255', 2147483647, 2147483647, 'US', 'United States'), +('208.68.88.0', '208.68.95.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.68.96.0', '208.68.103.255', 2147483647, 2147483647, 'US', 'United States'), +('208.68.104.0', '208.68.107.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.68.108.0', '208.68.199.255', 2147483647, 2147483647, 'US', 'United States'), +('208.68.200.0', '208.68.207.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.68.208.0', '208.69.7.255', 2147483647, 2147483647, 'US', 'United States'), +('208.69.8.0', '208.69.15.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.69.16.0', '208.69.55.255', 2147483647, 2147483647, 'US', 'United States'), +('208.69.56.0', '208.69.59.243', 2147483647, 2147483647, 'CA', 'Canada'), +('208.69.59.244', '208.69.59.244', 2147483647, 2147483647, 'US', 'United States'), +('208.69.59.245', '208.69.59.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.69.60.0', '208.69.93.127', 2147483647, 2147483647, 'US', 'United States'), +('208.69.93.128', '208.69.93.159', 2147483647, 2147483647, 'CA', 'Canada'), +('208.69.93.160', '208.69.93.191', 2147483647, 2147483647, 'US', 'United States'), +('208.69.93.192', '208.69.93.223', 2147483647, 2147483647, 'CA', 'Canada'), +('208.69.93.224', '208.69.231.199', 2147483647, 2147483647, 'US', 'United States'), +('208.69.231.200', '208.69.231.207', 2147483647, 2147483647, 'CO', 'Colombia'), +('208.69.231.208', '208.69.239.255', 2147483647, 2147483647, 'US', 'United States'), +('208.69.240.0', '208.69.247.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.69.248.0', '208.69.251.255', 2147483647, 2147483647, 'US', 'United States'), +('208.69.252.0', '208.70.7.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.70.8.0', '208.70.55.255', 2147483647, 2147483647, 'US', 'United States'), +('208.70.56.0', '208.70.63.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.70.64.0', '208.70.91.255', 2147483647, 2147483647, 'US', 'United States'), +('208.70.92.0', '208.70.95.255', 2147483647, 2147483647, 'KN', 'Saint Kitts and Nevis'), +('208.70.96.0', '208.70.103.255', 2147483647, 2147483647, 'US', 'United States'), +('208.70.104.0', '208.70.111.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.70.112.0', '208.70.165.255', 2147483647, 2147483647, 'US', 'United States'), +('208.70.166.0', '208.70.167.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('208.70.168.0', '208.70.169.31', 2147483647, 2147483647, 'US', 'United States'), +('208.70.169.32', '208.70.169.39', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('208.70.169.40', '208.70.181.255', 2147483647, 2147483647, 'US', 'United States'), +('208.70.182.0', '208.70.183.255', 2147483647, 2147483647, 'UM', 'United States Minor Outlying Islands'), +('208.70.184.0', '208.70.211.255', 2147483647, 2147483647, 'US', 'United States'), +('208.70.212.0', '208.70.215.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.70.216.0', '208.70.243.255', 2147483647, 2147483647, 'US', 'United States'), +('208.70.244.0', '208.70.247.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.70.248.0', '208.70.252.175', 2147483647, 2147483647, 'US', 'United States'), +('208.70.252.176', '208.70.252.183', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('208.70.252.184', '208.70.252.191', 2147483647, 2147483647, 'RO', 'Romania'), +('208.70.252.192', '208.71.7.255', 2147483647, 2147483647, 'US', 'United States'), +('208.71.8.0', '208.71.11.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.71.12.0', '208.71.87.255', 2147483647, 2147483647, 'US', 'United States'), +('208.71.88.0', '208.71.91.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.71.92.0', '208.71.111.255', 2147483647, 2147483647, 'US', 'United States'), +('208.71.112.0', '208.71.119.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.71.120.0', '208.71.175.255', 2147483647, 2147483647, 'US', 'United States'), +('208.71.176.0', '208.71.179.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.71.180.0', '208.71.183.255', 2147483647, 2147483647, 'US', 'United States'), +('208.71.184.0', '208.71.187.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.71.188.0', '208.72.3.255', 2147483647, 2147483647, 'US', 'United States'), +('208.72.4.0', '208.72.7.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.72.8.0', '208.72.119.255', 2147483647, 2147483647, 'US', 'United States'), +('208.72.120.0', '208.72.127.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.72.128.0', '208.72.154.7', 2147483647, 2147483647, 'US', 'United States'), +('208.72.154.8', '208.72.154.15', 2147483647, 2147483647, 'CA', 'Canada'), +('208.72.154.16', '208.72.154.175', 2147483647, 2147483647, 'US', 'United States'), +('208.72.154.176', '208.72.154.179', 2147483647, 2147483647, 'CA', 'Canada'), +('208.72.154.180', '208.72.155.7', 2147483647, 2147483647, 'US', 'United States'), +('208.72.155.8', '208.72.155.15', 2147483647, 2147483647, 'CA', 'Canada'), +('208.72.155.16', '208.72.155.23', 2147483647, 2147483647, 'IE', 'Ireland'), +('208.72.155.24', '208.72.155.207', 2147483647, 2147483647, 'US', 'United States'), +('208.72.155.208', '208.72.155.211', 2147483647, 2147483647, 'ES', 'Spain'), +('208.72.155.212', '208.72.158.255', 2147483647, 2147483647, 'US', 'United States'), +('208.72.159.0', '208.72.159.15', 2147483647, 2147483647, 'BO', 'Bolivia'), +('208.72.159.16', '208.72.175.255', 2147483647, 2147483647, 'US', 'United States'), +('208.72.176.0', '208.72.179.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.72.180.0', '208.72.207.255', 2147483647, 2147483647, 'US', 'United States'), +('208.72.208.0', '208.72.211.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.72.212.0', '208.72.227.255', 2147483647, 2147483647, 'US', 'United States'), +('208.72.228.0', '208.72.228.95', 2147483647, 2147483647, 'GP', 'Guadeloupe'), +('208.72.228.96', '208.72.228.111', 2147483647, 2147483647, 'KN', 'Saint Kitts and Nevis'), +('208.72.228.112', '208.72.228.255', 2147483647, 2147483647, 'GP', 'Guadeloupe'), +('208.72.229.0', '208.72.229.255', 2147483647, 2147483647, 'VC', 'Saint Vincent and the Grenadines'), +('208.72.230.0', '208.72.230.255', 2147483647, 2147483647, 'KN', 'Saint Kitts and Nevis'), +('208.72.231.0', '208.72.231.255', 2147483647, 2147483647, 'GD', 'Grenada'), +('208.72.232.0', '208.72.235.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.72.236.0', '208.73.15.255', 2147483647, 2147483647, 'US', 'United States'), +('208.73.16.0', '208.73.23.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.73.24.0', '208.73.35.112', 2147483647, 2147483647, 'US', 'United States'), +('208.73.35.113', '208.73.35.142', 2147483647, 2147483647, 'PH', 'Philippines'), +('208.73.35.143', '208.73.39.255', 2147483647, 2147483647, 'US', 'United States'), +('208.73.40.0', '208.73.43.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.73.44.0', '208.73.55.255', 2147483647, 2147483647, 'US', 'United States'), +('208.73.56.0', '208.73.59.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.73.60.0', '208.73.75.255', 2147483647, 2147483647, 'US', 'United States'), +('208.73.76.0', '208.73.79.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.73.80.0', '208.73.255.255', 2147483647, 2147483647, 'US', 'United States'), +('208.74.0.0', '208.74.7.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.74.8.0', '208.74.23.255', 2147483647, 2147483647, 'US', 'United States'), +('208.74.24.0', '208.74.27.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.74.28.0', '208.74.111.255', 2147483647, 2147483647, 'US', 'United States'), +('208.74.112.0', '208.74.115.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('208.74.116.0', '208.74.207.255', 2147483647, 2147483647, 'US', 'United States'), +('208.74.208.0', '208.74.215.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.74.216.0', '208.75.71.255', 2147483647, 2147483647, 'US', 'United States'), +('208.75.72.0', '208.75.75.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.75.76.0', '208.75.115.255', 2147483647, 2147483647, 'US', 'United States'), +('208.75.116.0', '208.75.119.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.75.120.0', '208.75.135.255', 2147483647, 2147483647, 'US', 'United States'), +('208.75.136.0', '208.75.139.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.75.140.0', '208.75.187.255', 2147483647, 2147483647, 'US', 'United States'), +('208.75.188.0', '208.75.191.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.75.192.0', '208.75.199.255', 2147483647, 2147483647, 'US', 'United States'), +('208.75.200.0', '208.75.203.255', 2147483647, 2147483647, 'BM', 'Bermuda'), +('208.75.204.0', '208.76.39.255', 2147483647, 2147483647, 'US', 'United States'), +('208.76.40.0', '208.76.43.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.76.44.0', '208.76.71.255', 2147483647, 2147483647, 'US', 'United States'), +('208.76.72.0', '208.76.75.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.76.76.0', '208.76.103.255', 2147483647, 2147483647, 'US', 'United States'), +('208.76.104.0', '208.76.111.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.76.112.0', '208.76.227.255', 2147483647, 2147483647, 'US', 'United States'), +('208.76.228.0', '208.76.231.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.76.232.0', '208.77.79.255', 2147483647, 2147483647, 'US', 'United States'), +('208.77.80.0', '208.77.87.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.77.88.0', '208.77.91.255', 2147483647, 2147483647, 'US', 'United States'), +('208.77.92.0', '208.77.95.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.77.96.0', '208.77.139.255', 2147483647, 2147483647, 'US', 'United States'), +('208.77.140.0', '208.77.143.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.77.144.0', '208.77.146.127', 2147483647, 2147483647, 'US', 'United States'), +('208.77.146.128', '208.77.146.135', 2147483647, 2147483647, 'DK', 'Denmark'), +('208.77.146.136', '208.77.148.215', 2147483647, 2147483647, 'US', 'United States'), +('208.77.148.216', '208.77.148.223', 2147483647, 2147483647, 'AU', 'Australia'), +('208.77.148.224', '208.77.151.63', 2147483647, 2147483647, 'US', 'United States'), +('208.77.151.64', '208.77.151.71', 2147483647, 2147483647, 'CN', 'China'), +('208.77.151.72', '208.77.195.255', 2147483647, 2147483647, 'US', 'United States'), +('208.77.196.0', '208.77.199.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.77.200.0', '208.77.217.255', 2147483647, 2147483647, 'US', 'United States'), +('208.77.218.0', '208.77.218.7', 2147483647, 2147483647, 'ES', 'Spain'), +('208.77.218.8', '208.77.218.39', 2147483647, 2147483647, 'US', 'United States'), +('208.77.218.40', '208.77.218.47', 2147483647, 2147483647, 'JP', 'Japan'), +('208.77.218.48', '208.77.218.55', 2147483647, 2147483647, 'US', 'United States'), +('208.77.218.56', '208.77.218.63', 2147483647, 2147483647, 'MX', 'Mexico'), +('208.77.218.64', '208.77.218.71', 2147483647, 2147483647, 'ES', 'Spain'), +('208.77.218.72', '208.77.218.111', 2147483647, 2147483647, 'US', 'United States'), +('208.77.218.112', '208.77.218.119', 2147483647, 2147483647, 'DE', 'Germany'), +('208.77.218.120', '208.77.218.135', 2147483647, 2147483647, 'US', 'United States'), +('208.77.218.136', '208.77.218.143', 2147483647, 2147483647, 'ES', 'Spain'), +('208.77.218.144', '208.77.221.127', 2147483647, 2147483647, 'US', 'United States'), +('208.77.221.128', '208.77.221.143', 2147483647, 2147483647, 'AU', 'Australia'), +('208.77.221.144', '208.77.223.143', 2147483647, 2147483647, 'US', 'United States'), +('208.77.223.144', '208.77.223.151', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('208.77.223.152', '208.77.223.159', 2147483647, 2147483647, 'US', 'United States'), +('208.77.223.160', '208.77.223.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('208.77.223.176', '208.78.15.255', 2147483647, 2147483647, 'US', 'United States'), +('208.78.16.0', '208.78.19.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.78.20.0', '208.78.47.255', 2147483647, 2147483647, 'US', 'United States'), +('208.78.48.0', '208.78.55.255', 2147483647, 2147483647, 'GP', 'Guadeloupe'), +('208.78.56.0', '208.78.56.127', 2147483647, 2147483647, 'CA', 'Canada'), +('208.78.56.128', '208.78.63.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('208.78.64.0', '208.79.55.255', 2147483647, 2147483647, 'US', 'United States'), +('208.79.56.0', '208.79.63.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.79.64.0', '208.79.95.255', 2147483647, 2147483647, 'US', 'United States'), +('208.79.96.0', '208.79.99.255', 2147483647, 2147483647, 'GP', 'Guadeloupe'), +('208.79.100.0', '208.79.111.255', 2147483647, 2147483647, 'US', 'United States'), +('208.79.112.0', '208.79.115.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.79.116.0', '208.79.215.255', 2147483647, 2147483647, 'US', 'United States'), +('208.79.216.0', '208.79.219.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.79.220.0', '208.80.51.255', 2147483647, 2147483647, 'US', 'United States'), +('208.80.52.0', '208.80.55.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.80.56.0', '208.80.95.255', 2147483647, 2147483647, 'US', 'United States'), +('208.80.96.0', '208.80.103.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.80.104.0', '208.80.135.255', 2147483647, 2147483647, 'US', 'United States'), +('208.80.136.0', '208.80.139.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.80.140.0', '208.80.235.255', 2147483647, 2147483647, 'US', 'United States'), +('208.80.236.0', '208.80.239.255', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('208.80.240.0', '208.80.251.255', 2147483647, 2147483647, 'US', 'United States'), +('208.80.252.0', '208.81.11.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.81.12.0', '208.81.35.255', 2147483647, 2147483647, 'US', 'United States'), +('208.81.40.0', '208.81.47.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.81.48.0', '208.81.119.255', 2147483647, 2147483647, 'US', 'United States'), +('208.81.120.0', '208.81.123.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.81.124.0', '208.81.143.255', 2147483647, 2147483647, 'US', 'United States'), +('208.81.144.0', '208.81.147.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.81.148.0', '208.81.159.255', 2147483647, 2147483647, 'US', 'United States'), +('208.81.160.0', '208.81.163.255', 2147483647, 2147483647, 'KN', 'Saint Kitts and Nevis'), +('208.81.164.0', '208.81.167.255', 2147483647, 2147483647, 'US', 'United States'), +('208.81.168.0', '208.81.175.255', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('208.81.176.0', '208.81.211.255', 2147483647, 2147483647, 'US', 'United States'), +('208.81.212.0', '208.81.215.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.81.216.0', '208.82.119.255', 2147483647, 2147483647, 'US', 'United States'), +('208.82.120.0', '208.82.123.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.82.124.0', '208.82.163.255', 2147483647, 2147483647, 'US', 'United States'), +('208.82.164.0', '208.82.167.255', 2147483647, 2147483647, 'BM', 'Bermuda'), +('208.82.168.0', '208.82.215.255', 2147483647, 2147483647, 'US', 'United States'), +('208.82.216.0', '208.82.219.255', 2147483647, 2147483647, 'KY', 'Cayman Islands'), +('208.82.220.0', '208.82.247.255', 2147483647, 2147483647, 'US', 'United States'), +('208.82.248.0', '208.82.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.83.0.0', '208.83.79.255', 2147483647, 2147483647, 'US', 'United States'), +('208.83.80.0', '208.83.87.255', 2147483647, 2147483647, 'AG', 'Antigua and Barbuda'), +('208.83.88.0', '208.83.207.255', 2147483647, 2147483647, 'US', 'United States'), +('208.83.208.0', '208.83.215.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.83.216.0', '208.84.103.255', 2147483647, 2147483647, 'US', 'United States'), +('208.84.104.0', '208.84.107.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.84.108.0', '208.84.191.255', 2147483647, 2147483647, 'US', 'United States'), +('208.84.192.0', '208.84.199.255', 2147483647, 2147483647, 'VI', 'Virgin Islands, U.S.'), +('208.84.200.0', '208.84.207.255', 2147483647, 2147483647, 'VC', 'Saint Vincent and the Grenadines'), +('208.84.208.0', '208.85.79.255', 2147483647, 2147483647, 'US', 'United States'), +('208.85.80.0', '208.85.87.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.85.88.0', '208.85.111.255', 2147483647, 2147483647, 'US', 'United States'), +('208.85.112.0', '208.85.115.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.85.116.0', '208.85.215.255', 2147483647, 2147483647, 'US', 'United States'), +('208.85.216.0', '208.85.223.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.85.224.0', '208.86.135.255', 2147483647, 2147483647, 'US', 'United States'), +('208.86.136.0', '208.86.139.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('208.86.140.0', '208.86.143.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.86.144.0', '208.86.203.255', 2147483647, 2147483647, 'US', 'United States'), +('208.86.204.0', '208.86.207.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.86.208.0', '208.86.239.255', 2147483647, 2147483647, 'US', 'United States'), +('208.86.240.0', '208.86.243.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.86.244.0', '208.87.19.255', 2147483647, 2147483647, 'US', 'United States'), +('208.87.20.0', '208.87.23.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.87.24.0', '208.87.31.255', 2147483647, 2147483647, 'US', 'United States'), +('208.87.32.0', '208.87.39.255', 2147483647, 2147483647, 'BS', 'Bahamas'), +('208.87.40.0', '208.87.51.255', 2147483647, 2147483647, 'US', 'United States'), +('208.87.52.0', '208.87.55.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.87.56.0', '208.87.143.255', 2147483647, 2147483647, 'US', 'United States'), +('208.87.144.0', '208.87.147.255', 2147483647, 2147483647, 'KN', 'Saint Kitts and Nevis'), +('208.87.148.0', '208.87.195.255', 2147483647, 2147483647, 'US', 'United States'), +('208.87.196.0', '208.87.199.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.87.200.0', '208.88.3.255', 2147483647, 2147483647, 'US', 'United States'), +('208.88.4.0', '208.88.7.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.88.8.0', '208.88.103.255', 2147483647, 2147483647, 'US', 'United States'), +('208.88.104.0', '208.88.111.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.88.112.0', '208.88.139.255', 2147483647, 2147483647, 'US', 'United States'), +('208.88.140.0', '208.88.143.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.88.144.0', '208.88.183.255', 2147483647, 2147483647, 'US', 'United States'), +('208.88.184.0', '208.88.191.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.88.192.0', '208.88.195.255', 2147483647, 2147483647, 'US', 'United States'), +('208.88.196.0', '208.88.199.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.88.200.0', '208.89.47.255', 2147483647, 2147483647, 'US', 'United States'), +('208.89.48.0', '208.89.55.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.89.56.0', '208.89.83.255', 2147483647, 2147483647, 'US', 'United States'), +('208.89.84.0', '208.89.87.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.89.88.0', '208.89.127.255', 2147483647, 2147483647, 'US', 'United States'), +('208.89.128.0', '208.89.131.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.89.132.0', '208.89.191.255', 2147483647, 2147483647, 'US', 'United States'), +('208.89.192.0', '208.89.199.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('208.89.200.0', '208.89.216.255', 2147483647, 2147483647, 'US', 'United States'), +('208.89.217.0', '208.89.217.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.89.218.0', '208.89.220.79', 2147483647, 2147483647, 'US', 'United States'), +('208.89.220.80', '208.89.220.87', 2147483647, 2147483647, 'CA', 'Canada'), +('208.89.220.88', '208.89.220.255', 2147483647, 2147483647, 'US', 'United States'), +('208.89.221.0', '208.89.221.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.89.222.0', '208.89.227.255', 2147483647, 2147483647, 'US', 'United States'), +('208.89.228.0', '208.89.231.255', 2147483647, 2147483647, 'BM', 'Bermuda'), +('208.89.232.0', '208.90.79.255', 2147483647, 2147483647, 'US', 'United States'), +('208.90.80.0', '208.90.87.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.90.88.0', '208.90.95.255', 2147483647, 2147483647, 'US', 'United States'), +('208.90.96.0', '208.90.103.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.90.104.0', '208.90.111.255', 2147483647, 2147483647, 'US', 'United States'), +('208.90.112.0', '208.90.115.255', 2147483647, 2147483647, 'MS', 'Montserrat'), +('208.90.116.0', '208.90.231.255', 2147483647, 2147483647, 'US', 'United States'), +('208.90.232.0', '208.90.235.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.90.236.0', '208.90.239.255', 2147483647, 2147483647, 'US', 'United States'), +('208.90.240.0', '208.90.247.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.90.248.0', '208.91.111.255', 2147483647, 2147483647, 'US', 'United States'), +('208.91.112.0', '208.91.115.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.91.120.0', '208.91.191.255', 2147483647, 2147483647, 'US', 'United States'), +('208.91.192.0', '208.91.195.255', 2147483647, 2147483647, 'GP', 'Guadeloupe'), +('208.91.196.0', '208.91.239.255', 2147483647, 2147483647, 'US', 'United States'), +('208.91.244.0', '208.91.247.255', 2147483647, 2147483647, 'US', 'United States'), +('208.91.248.0', '208.91.251.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.91.252.0', '208.92.15.255', 2147483647, 2147483647, 'US', 'United States'), +('208.92.16.0', '208.92.23.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.92.24.0', '208.92.51.255', 2147483647, 2147483647, 'US', 'United States'), +('208.92.52.0', '208.92.55.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.92.56.0', '208.92.111.255', 2147483647, 2147483647, 'US', 'United States'), +('208.92.112.0', '208.92.119.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('208.92.120.0', '208.92.131.255', 2147483647, 2147483647, 'US', 'United States'), +('208.92.132.0', '208.92.143.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.92.144.0', '208.92.195.255', 2147483647, 2147483647, 'US', 'United States'), +('208.92.196.0', '208.92.199.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.92.200.0', '208.92.231.255', 2147483647, 2147483647, 'US', 'United States'), +('208.92.232.0', '208.92.235.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.92.236.0', '208.93.71.255', 2147483647, 2147483647, 'US', 'United States'), +('208.93.72.0', '208.93.79.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.93.80.0', '208.93.99.191', 2147483647, 2147483647, 'US', 'United States'), +('208.93.99.192', '208.93.99.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.93.100.0', '208.93.231.255', 2147483647, 2147483647, 'US', 'United States'), +('208.93.232.0', '208.93.239.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.93.240.0', '208.94.27.255', 2147483647, 2147483647, 'US', 'United States'), +('208.94.28.0', '208.94.31.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.94.32.0', '208.94.103.255', 2147483647, 2147483647, 'US', 'United States'), +('208.94.104.0', '208.94.111.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.94.112.0', '208.94.159.255', 2147483647, 2147483647, 'US', 'United States'), +('208.94.160.0', '208.94.167.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.94.168.0', '208.94.171.255', 2147483647, 2147483647, 'GP', 'Guadeloupe'), +('208.94.172.0', '208.94.175.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.94.176.0', '208.94.183.255', 2147483647, 2147483647, 'VC', 'Saint Vincent and the Grenadines'), +('208.94.184.0', '208.94.195.255', 2147483647, 2147483647, 'US', 'United States'), +('208.94.196.0', '208.94.199.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.94.200.0', '208.95.35.255', 2147483647, 2147483647, 'US', 'United States'), +('208.95.36.0', '208.95.39.255', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('208.95.40.0', '208.95.171.255', 2147483647, 2147483647, 'US', 'United States'), +('208.95.172.0', '208.95.175.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.95.176.0', '208.96.63.255', 2147483647, 2147483647, 'US', 'United States'), +('208.96.64.0', '208.96.127.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.96.128.0', '208.96.139.255', 2147483647, 2147483647, 'NI', 'Nicaragua'), +('208.96.140.0', '208.96.143.255', 2147483647, 2147483647, 'GT', 'Guatemala'), +('208.96.144.0', '208.97.63.255', 2147483647, 2147483647, 'US', 'United States'), +('208.97.64.0', '208.97.127.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.97.128.0', '208.98.191.255', 2147483647, 2147483647, 'US', 'United States'), +('208.98.192.0', '208.98.244.31', 2147483647, 2147483647, 'CA', 'Canada'), +('208.98.244.32', '208.98.244.63', 2147483647, 2147483647, 'US', 'United States'), +('208.98.244.64', '208.98.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.99.0.0', '208.99.127.255', 2147483647, 2147483647, 'US', 'United States'), +('208.99.128.0', '208.99.159.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.99.160.0', '208.99.162.95', 2147483647, 2147483647, 'US', 'United States'), +('208.99.162.96', '208.99.163.95', 2147483647, 2147483647, 'CA', 'Canada'), +('208.99.163.96', '208.99.163.103', 2147483647, 2147483647, 'US', 'United States'), +('208.99.163.104', '208.99.163.111', 2147483647, 2147483647, 'CA', 'Canada'), +('208.99.163.112', '208.99.163.143', 2147483647, 2147483647, 'US', 'United States'), +('208.99.163.144', '208.99.163.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.99.164.0', '208.99.207.255', 2147483647, 2147483647, 'US', 'United States'), +('208.99.208.0', '208.99.208.63', 2147483647, 2147483647, 'CA', 'Canada'), +('208.99.208.64', '208.99.222.15', 2147483647, 2147483647, 'US', 'United States'), +('208.99.222.16', '208.99.222.31', 2147483647, 2147483647, 'ID', 'Indonesia'), +('208.99.222.32', '208.99.222.47', 2147483647, 2147483647, 'CA', 'Canada'), +('208.99.222.48', '208.101.63.255', 2147483647, 2147483647, 'US', 'United States'), +('208.101.64.0', '208.101.127.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.101.128.0', '208.103.223.255', 2147483647, 2147483647, 'US', 'United States'), +('208.103.224.0', '208.103.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.104.0.0', '208.110.15.255', 2147483647, 2147483647, 'US', 'United States'), +('208.110.16.0', '208.110.31.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('208.110.32.0', '208.110.47.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.110.48.0', '208.110.64.239', 2147483647, 2147483647, 'US', 'United States'), +('208.110.64.240', '208.110.64.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('208.110.65.0', '208.110.68.255', 2147483647, 2147483647, 'US', 'United States'), +('208.110.69.0', '208.110.69.7', 2147483647, 2147483647, 'TR', 'Turkey'), +('208.110.69.8', '208.110.95.255', 2147483647, 2147483647, 'US', 'United States'), +('208.110.96.0', '208.110.127.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.110.128.0', '208.111.63.255', 2147483647, 2147483647, 'US', 'United States'), +('208.111.64.0', '208.111.95.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.111.96.0', '208.112.1.31', 2147483647, 2147483647, 'US', 'United States'), +('208.112.1.32', '208.112.1.47', 2147483647, 2147483647, 'AU', 'Australia'), +('208.112.1.48', '208.112.1.111', 2147483647, 2147483647, 'US', 'United States'), +('208.112.1.112', '208.112.1.127', 2147483647, 2147483647, 'DE', 'Germany'), +('208.112.1.128', '208.112.19.63', 2147483647, 2147483647, 'US', 'United States'), +('208.112.19.64', '208.112.19.127', 2147483647, 2147483647, 'CA', 'Canada'), +('208.112.19.128', '208.112.27.199', 2147483647, 2147483647, 'US', 'United States'), +('208.112.27.200', '208.112.27.207', 2147483647, 2147483647, 'CA', 'Canada'), +('208.112.27.208', '208.112.30.31', 2147483647, 2147483647, 'US', 'United States'), +('208.112.30.32', '208.112.30.47', 2147483647, 2147483647, 'CA', 'Canada'), +('208.112.30.48', '208.112.32.247', 2147483647, 2147483647, 'US', 'United States'), +('208.112.32.248', '208.112.32.255', 2147483647, 2147483647, 'AE', 'United Arab Emirates'), +('208.112.33.0', '208.112.38.15', 2147483647, 2147483647, 'US', 'United States'), +('208.112.38.16', '208.112.38.23', 2147483647, 2147483647, 'PK', 'Pakistan'), +('208.112.38.24', '208.112.38.31', 2147483647, 2147483647, 'US', 'United States'), +('208.112.38.32', '208.112.38.39', 2147483647, 2147483647, 'AE', 'United Arab Emirates'), +('208.112.38.40', '208.112.38.47', 2147483647, 2147483647, 'US', 'United States'), +('208.112.38.48', '208.112.38.63', 2147483647, 2147483647, 'CA', 'Canada'), +('208.112.38.64', '208.112.53.159', 2147483647, 2147483647, 'US', 'United States'), +('208.112.53.160', '208.112.53.167', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('208.112.53.168', '208.112.78.15', 2147483647, 2147483647, 'US', 'United States'), +('208.112.78.16', '208.112.78.31', 2147483647, 2147483647, 'CA', 'Canada'), +('208.112.78.32', '208.112.83.159', 2147483647, 2147483647, 'US', 'United States'), +('208.112.83.160', '208.112.83.191', 2147483647, 2147483647, 'AU', 'Australia'), +('208.112.83.192', '208.112.92.127', 2147483647, 2147483647, 'US', 'United States'), +('208.112.92.128', '208.112.92.143', 2147483647, 2147483647, 'AU', 'Australia'), +('208.112.92.144', '208.112.100.255', 2147483647, 2147483647, 'US', 'United States'), +('208.112.101.0', '208.112.101.31', 2147483647, 2147483647, 'ES', 'Spain'), +('208.112.101.32', '208.112.101.103', 2147483647, 2147483647, 'US', 'United States'), +('208.112.101.104', '208.112.101.111', 2147483647, 2147483647, 'CA', 'Canada'), +('208.112.101.112', '208.112.103.47', 2147483647, 2147483647, 'US', 'United States'), +('208.112.103.48', '208.112.103.55', 2147483647, 2147483647, 'AE', 'United Arab Emirates'), +('208.112.103.56', '208.112.107.31', 2147483647, 2147483647, 'US', 'United States'), +('208.112.107.32', '208.112.107.39', 2147483647, 2147483647, 'MX', 'Mexico'), +('208.112.107.40', '208.112.107.79', 2147483647, 2147483647, 'US', 'United States'), +('208.112.107.80', '208.112.107.87', 2147483647, 2147483647, 'MX', 'Mexico'), +('208.112.107.88', '208.112.107.127', 2147483647, 2147483647, 'US', 'United States'), +('208.112.107.128', '208.112.107.143', 2147483647, 2147483647, 'AE', 'United Arab Emirates'), +('208.112.107.144', '208.112.109.119', 2147483647, 2147483647, 'US', 'United States'), +('208.112.109.120', '208.112.109.191', 2147483647, 2147483647, 'CA', 'Canada'), +('208.112.109.192', '208.112.109.207', 2147483647, 2147483647, 'US', 'United States'), +('208.112.109.208', '208.112.109.223', 2147483647, 2147483647, 'TH', 'Thailand'), +('208.112.109.224', '208.112.109.231', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('208.112.109.232', '208.112.110.31', 2147483647, 2147483647, 'US', 'United States'), +('208.112.110.32', '208.112.110.47', 2147483647, 2147483647, 'TH', 'Thailand'), +('208.112.110.48', '208.112.110.111', 2147483647, 2147483647, 'US', 'United States'), +('208.112.110.112', '208.112.110.119', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('208.112.110.120', '208.112.115.15', 2147483647, 2147483647, 'US', 'United States'), +('208.112.115.16', '208.112.115.23', 2147483647, 2147483647, 'IN', 'India'), +('208.112.115.24', '208.112.115.95', 2147483647, 2147483647, 'US', 'United States'), +('208.112.115.96', '208.112.115.111', 2147483647, 2147483647, 'AU', 'Australia'), +('208.112.115.112', '208.112.116.111', 2147483647, 2147483647, 'US', 'United States'), +('208.112.116.112', '208.112.116.119', 2147483647, 2147483647, 'CH', 'Switzerland'), +('208.112.116.120', '208.112.116.255', 2147483647, 2147483647, 'US', 'United States'), +('208.112.117.0', '208.112.117.31', 2147483647, 2147483647, 'CH', 'Switzerland'), +('208.112.117.32', '208.112.117.159', 2147483647, 2147483647, 'US', 'United States'), +('208.112.117.160', '208.112.117.167', 2147483647, 2147483647, 'CA', 'Canada'), +('208.112.117.168', '208.112.121.175', 2147483647, 2147483647, 'US', 'United States'), +('208.112.121.176', '208.112.121.183', 2147483647, 2147483647, 'CA', 'Canada'), +('208.112.121.184', '208.112.255.255', 2147483647, 2147483647, 'US', 'United States'), +('208.113.0.0', '208.113.63.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.113.64.0', '208.114.115.135', 2147483647, 2147483647, 'US', 'United States'), +('208.114.115.136', '208.114.115.143', 2147483647, 2147483647, 'NO', 'Norway'), +('208.114.115.144', '208.114.115.231', 2147483647, 2147483647, 'US', 'United States'), +('208.114.115.232', '208.114.115.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('208.114.115.240', '208.114.116.7', 2147483647, 2147483647, 'US', 'United States'), +('208.114.116.8', '208.114.116.15', 2147483647, 2147483647, 'MT', 'Malta'), +('208.114.116.16', '208.114.116.23', 2147483647, 2147483647, 'US', 'United States'), +('208.114.116.24', '208.114.116.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('208.114.116.32', '208.114.116.39', 2147483647, 2147483647, 'PT', 'Portugal'), +('208.114.116.40', '208.114.116.47', 2147483647, 2147483647, 'MT', 'Malta'), +('208.114.116.48', '208.114.116.167', 2147483647, 2147483647, 'US', 'United States'), +('208.114.116.168', '208.114.116.175', 2147483647, 2147483647, 'MT', 'Malta'), +('208.114.116.176', '208.114.116.183', 2147483647, 2147483647, 'US', 'United States'), +('208.114.116.184', '208.114.116.191', 2147483647, 2147483647, 'TN', 'Tunisia'), +('208.114.116.192', '208.114.116.199', 2147483647, 2147483647, 'US', 'United States'), +('208.114.116.200', '208.114.116.207', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('208.114.116.208', '208.114.116.215', 2147483647, 2147483647, 'MT', 'Malta'), +('208.114.116.216', '208.114.122.47', 2147483647, 2147483647, 'US', 'United States'), +('208.114.122.48', '208.114.122.55', 2147483647, 2147483647, 'NO', 'Norway'), +('208.114.122.56', '208.114.122.87', 2147483647, 2147483647, 'US', 'United States'), +('208.114.122.88', '208.114.122.95', 2147483647, 2147483647, 'ES', 'Spain'), +('208.114.122.96', '208.114.122.119', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('208.114.122.120', '208.114.122.135', 2147483647, 2147483647, 'US', 'United States'), +('208.114.122.136', '208.114.122.143', 2147483647, 2147483647, 'NO', 'Norway'), +('208.114.122.144', '208.114.122.183', 2147483647, 2147483647, 'US', 'United States'), +('208.114.122.184', '208.114.122.191', 2147483647, 2147483647, 'ES', 'Spain'), +('208.114.122.192', '208.114.122.199', 2147483647, 2147483647, 'US', 'United States'), +('208.114.122.200', '208.114.122.207', 2147483647, 2147483647, 'ES', 'Spain'), +('208.114.122.208', '208.114.122.255', 2147483647, 2147483647, 'US', 'United States'), +('208.114.123.0', '208.114.123.135', 2147483647, 2147483647, 'DK', 'Denmark'), +('208.114.123.136', '208.114.123.143', 2147483647, 2147483647, 'NO', 'Norway'), +('208.114.123.144', '208.114.123.159', 2147483647, 2147483647, 'DK', 'Denmark'), +('208.114.123.160', '208.114.123.175', 2147483647, 2147483647, 'US', 'United States'), +('208.114.123.176', '208.114.123.183', 2147483647, 2147483647, 'DK', 'Denmark'), +('208.114.123.184', '208.114.125.255', 2147483647, 2147483647, 'US', 'United States'), +('208.114.126.0', '208.114.126.7', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('208.114.126.8', '208.114.127.255', 2147483647, 2147483647, 'US', 'United States'), +('208.114.128.0', '208.114.191.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.114.192.0', '208.115.108.159', 2147483647, 2147483647, 'US', 'United States'), +('208.115.108.160', '208.115.108.167', 2147483647, 2147483647, 'CN', 'China'), +('208.115.108.168', '208.115.108.255', 2147483647, 2147483647, 'US', 'United States'), +('208.115.109.0', '208.115.109.63', 2147483647, 2147483647, 'IN', 'India'), +('208.115.109.64', '208.115.114.31', 2147483647, 2147483647, 'US', 'United States'), +('208.115.114.32', '208.115.114.63', 2147483647, 2147483647, 'CH', 'Switzerland'), +('208.115.114.64', '208.115.114.79', 2147483647, 2147483647, 'US', 'United States'), +('208.115.114.80', '208.115.114.103', 2147483647, 2147483647, 'CH', 'Switzerland'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('208.115.114.104', '208.115.114.127', 2147483647, 2147483647, 'US', 'United States'), +('208.115.114.128', '208.115.114.207', 2147483647, 2147483647, 'CH', 'Switzerland'), +('208.115.114.208', '208.115.115.15', 2147483647, 2147483647, 'US', 'United States'), +('208.115.115.16', '208.115.115.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('208.115.115.32', '208.115.115.223', 2147483647, 2147483647, 'US', 'United States'), +('208.115.115.224', '208.115.115.239', 2147483647, 2147483647, 'CH', 'Switzerland'), +('208.115.115.240', '208.115.115.247', 2147483647, 2147483647, 'CN', 'China'), +('208.115.115.248', '208.115.115.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('208.115.116.0', '208.115.116.127', 2147483647, 2147483647, 'US', 'United States'), +('208.115.116.128', '208.115.116.143', 2147483647, 2147483647, 'CN', 'China'), +('208.115.116.144', '208.115.117.7', 2147483647, 2147483647, 'US', 'United States'), +('208.115.117.8', '208.115.117.15', 2147483647, 2147483647, 'CN', 'China'), +('208.115.117.16', '208.115.118.239', 2147483647, 2147483647, 'US', 'United States'), +('208.115.118.240', '208.115.118.247', 2147483647, 2147483647, 'CN', 'China'), +('208.115.118.248', '208.115.119.47', 2147483647, 2147483647, 'US', 'United States'), +('208.115.119.48', '208.115.119.55', 2147483647, 2147483647, 'CN', 'China'), +('208.115.119.56', '208.115.139.255', 2147483647, 2147483647, 'US', 'United States'), +('208.115.140.0', '208.115.140.255', 2147483647, 2147483647, 'CN', 'China'), +('208.115.141.0', '208.115.191.255', 2147483647, 2147483647, 'US', 'United States'), +('208.116.0.0', '208.116.7.17', 2147483647, 2147483647, 'US', 'United States'), +('208.116.7.18', '208.116.7.54', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('208.116.7.55', '208.116.13.95', 2147483647, 2147483647, 'US', 'United States'), +('208.116.13.96', '208.116.13.103', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('208.116.13.104', '208.116.19.255', 2147483647, 2147483647, 'US', 'United States'), +('208.116.20.0', '208.116.20.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('208.116.20.64', '208.118.63.255', 2147483647, 2147483647, 'US', 'United States'), +('208.118.64.0', '208.118.143.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.118.144.0', '208.118.207.255', 2147483647, 2147483647, 'US', 'United States'), +('208.118.208.0', '208.118.223.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.118.224.0', '208.123.68.63', 2147483647, 2147483647, 'US', 'United States'), +('208.123.68.64', '208.123.68.87', 2147483647, 2147483647, 'IN', 'India'), +('208.123.68.88', '208.124.127.255', 2147483647, 2147483647, 'US', 'United States'), +('208.124.128.0', '208.124.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.125.0.0', '208.131.31.255', 2147483647, 2147483647, 'US', 'United States'), +('208.131.32.0', '208.131.32.31', 2147483647, 2147483647, 'JM', 'Jamaica'), +('208.131.32.32', '208.131.32.95', 2147483647, 2147483647, 'US', 'United States'), +('208.131.32.96', '208.131.32.111', 2147483647, 2147483647, 'JM', 'Jamaica'), +('208.131.32.112', '208.131.32.255', 2147483647, 2147483647, 'US', 'United States'), +('208.131.33.0', '208.131.33.255', 2147483647, 2147483647, 'JM', 'Jamaica'), +('208.131.34.0', '208.131.159.255', 2147483647, 2147483647, 'US', 'United States'), +('208.131.160.0', '208.131.181.63', 2147483647, 2147483647, 'JM', 'Jamaica'), +('208.131.181.64', '208.131.181.71', 2147483647, 2147483647, 'US', 'United States'), +('208.131.181.72', '208.131.191.255', 2147483647, 2147483647, 'JM', 'Jamaica'), +('208.131.192.0', '208.133.111.255', 2147483647, 2147483647, 'US', 'United States'), +('208.133.112.0', '208.133.119.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.133.120.0', '208.133.199.255', 2147483647, 2147483647, 'US', 'United States'), +('208.133.200.0', '208.133.203.255', 2147483647, 2147483647, 'CR', 'Costa Rica'), +('208.133.204.0', '208.133.205.255', 2147483647, 2147483647, 'US', 'United States'), +('208.133.206.0', '208.133.206.255', 2147483647, 2147483647, 'CR', 'Costa Rica'), +('208.133.207.0', '208.135.2.255', 2147483647, 2147483647, 'US', 'United States'), +('208.135.3.0', '208.135.7.255', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('208.135.8.0', '208.135.18.255', 2147483647, 2147483647, 'US', 'United States'), +('208.135.19.0', '208.135.19.255', 2147483647, 2147483647, 'CL', 'Chile'), +('208.135.20.0', '208.135.21.255', 2147483647, 2147483647, 'US', 'United States'), +('208.135.22.0', '208.135.23.255', 2147483647, 2147483647, 'CL', 'Chile'), +('208.135.24.0', '208.136.51.255', 2147483647, 2147483647, 'US', 'United States'), +('208.136.52.0', '208.136.55.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('208.136.56.0', '208.136.101.255', 2147483647, 2147483647, 'US', 'United States'), +('208.136.102.0', '208.136.102.255', 2147483647, 2147483647, 'WS', 'Samoa'), +('208.136.103.0', '208.138.15.255', 2147483647, 2147483647, 'US', 'United States'), +('208.138.16.0', '208.138.34.39', 2147483647, 2147483647, 'JM', 'Jamaica'), +('208.138.34.40', '208.138.34.47', 2147483647, 2147483647, 'CA', 'Canada'), +('208.138.34.48', '208.138.47.255', 2147483647, 2147483647, 'JM', 'Jamaica'), +('208.138.48.0', '208.138.215.255', 2147483647, 2147483647, 'US', 'United States'), +('208.138.216.0', '208.138.223.255', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('208.138.224.0', '208.139.163.255', 2147483647, 2147483647, 'US', 'United States'), +('208.139.164.0', '208.139.164.255', 2147483647, 2147483647, 'PF', 'French Polynesia'), +('208.139.165.0', '208.145.89.159', 2147483647, 2147483647, 'US', 'United States'), +('208.145.89.160', '208.145.89.191', 2147483647, 2147483647, 'MX', 'Mexico'), +('208.145.89.192', '208.147.17.255', 2147483647, 2147483647, 'US', 'United States'), +('208.147.18.0', '208.147.18.255', 2147483647, 2147483647, 'WS', 'Samoa'), +('208.147.19.0', '208.148.167.255', 2147483647, 2147483647, 'US', 'United States'), +('208.148.168.0', '208.148.169.255', 2147483647, 2147483647, 'MW', 'Malawi'), +('208.148.170.0', '208.149.39.255', 2147483647, 2147483647, 'US', 'United States'), +('208.149.40.0', '208.149.40.255', 2147483647, 2147483647, 'DE', 'Germany'), +('208.149.41.0', '208.149.43.255', 2147483647, 2147483647, 'US', 'United States'), +('208.149.44.0', '208.149.44.95', 2147483647, 2147483647, 'DE', 'Germany'), +('208.149.44.96', '208.149.45.111', 2147483647, 2147483647, 'US', 'United States'), +('208.149.45.112', '208.149.45.119', 2147483647, 2147483647, 'IT', 'Italy'), +('208.149.45.120', '208.149.95.255', 2147483647, 2147483647, 'US', 'United States'), +('208.149.96.0', '208.149.99.255', 2147483647, 2147483647, 'IN', 'India'), +('208.149.100.0', '208.153.67.255', 2147483647, 2147483647, 'US', 'United States'), +('208.153.68.0', '208.153.69.255', 2147483647, 2147483647, 'TZ', 'Tanzania, United Republic of'), +('208.153.70.0', '208.153.71.255', 2147483647, 2147483647, 'MG', 'Madagascar'), +('208.153.72.0', '208.157.143.255', 2147483647, 2147483647, 'US', 'United States'), +('208.157.144.0', '208.157.151.255', 2147483647, 2147483647, 'KY', 'Cayman Islands'), +('208.157.152.0', '208.159.175.255', 2147483647, 2147483647, 'US', 'United States'), +('208.159.176.0', '208.159.176.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('208.159.177.0', '208.159.177.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('208.159.178.0', '208.159.247.255', 2147483647, 2147483647, 'US', 'United States'), +('208.159.248.0', '208.159.248.255', 2147483647, 2147483647, 'IT', 'Italy'), +('208.159.249.0', '208.161.241.255', 2147483647, 2147483647, 'US', 'United States'), +('208.161.242.0', '208.161.242.63', 2147483647, 2147483647, 'IE', 'Ireland'), +('208.161.242.64', '208.163.31.255', 2147483647, 2147483647, 'US', 'United States'), +('208.163.32.0', '208.163.63.255', 2147483647, 2147483647, 'JM', 'Jamaica'), +('208.163.64.0', '208.163.110.127', 2147483647, 2147483647, 'US', 'United States'), +('208.163.110.128', '208.163.110.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('208.163.110.144', '208.163.209.31', 2147483647, 2147483647, 'US', 'United States'), +('208.163.209.32', '208.163.209.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('208.163.209.64', '208.165.47.255', 2147483647, 2147483647, 'US', 'United States'), +('208.165.48.0', '208.165.63.255', 2147483647, 2147483647, 'CR', 'Costa Rica'), +('208.165.64.0', '208.167.31.255', 2147483647, 2147483647, 'US', 'United States'), +('208.167.32.0', '208.167.35.255', 2147483647, 2147483647, 'MZ', 'Mozambique'), +('208.167.36.0', '208.168.71.255', 2147483647, 2147483647, 'US', 'United States'), +('208.168.72.0', '208.168.73.255', 2147483647, 2147483647, 'CL', 'Chile'), +('208.168.74.0', '208.168.141.255', 2147483647, 2147483647, 'US', 'United States'), +('208.168.142.0', '208.168.143.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.168.144.0', '208.168.210.255', 2147483647, 2147483647, 'US', 'United States'), +('208.168.211.0', '208.168.212.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('208.168.213.0', '208.168.213.255', 2147483647, 2147483647, 'HT', 'Haiti'), +('208.168.214.0', '208.168.214.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('208.168.215.0', '208.168.215.255', 2147483647, 2147483647, 'HT', 'Haiti'), +('208.168.216.0', '208.168.223.255', 2147483647, 2147483647, 'US', 'United States'), +('208.168.224.0', '208.168.255.255', 2147483647, 2147483647, 'KY', 'Cayman Islands'), +('208.169.0.0', '208.171.209.191', 2147483647, 2147483647, 'US', 'United States'), +('208.171.209.192', '208.171.209.223', 2147483647, 2147483647, 'AU', 'Australia'), +('208.171.209.224', '208.175.203.15', 2147483647, 2147483647, 'US', 'United States'), +('208.175.203.16', '208.175.203.31', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('208.175.203.32', '208.180.255.255', 2147483647, 2147483647, 'US', 'United States'), +('208.181.0.0', '208.181.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.182.0.0', '208.184.36.63', 2147483647, 2147483647, 'US', 'United States'), +('208.184.36.64', '208.184.36.95', 2147483647, 2147483647, 'AU', 'Australia'), +('208.184.36.96', '208.184.48.231', 2147483647, 2147483647, 'US', 'United States'), +('208.184.48.232', '208.184.48.247', 2147483647, 2147483647, 'AU', 'Australia'), +('208.184.48.248', '208.184.110.255', 2147483647, 2147483647, 'US', 'United States'), +('208.184.111.0', '208.184.111.63', 2147483647, 2147483647, 'CA', 'Canada'), +('208.184.111.64', '208.185.93.255', 2147483647, 2147483647, 'US', 'United States'), +('208.185.94.0', '208.185.94.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.185.95.0', '208.185.128.127', 2147483647, 2147483647, 'US', 'United States'), +('208.185.128.128', '208.185.128.159', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('208.185.128.160', '208.188.82.119', 2147483647, 2147483647, 'US', 'United States'), +('208.188.82.120', '208.188.82.127', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('208.188.82.128', '208.188.125.223', 2147483647, 2147483647, 'US', 'United States'), +('208.188.125.224', '208.188.125.231', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('208.188.125.232', '208.188.125.239', 2147483647, 2147483647, 'US', 'United States'), +('208.188.125.240', '208.188.125.247', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('208.188.125.248', '208.188.249.239', 2147483647, 2147483647, 'US', 'United States'), +('208.188.249.240', '208.188.249.247', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('208.188.249.248', '208.189.91.247', 2147483647, 2147483647, 'US', 'United States'), +('208.189.91.248', '208.189.91.255', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('208.189.92.0', '208.189.137.79', 2147483647, 2147483647, 'US', 'United States'), +('208.189.137.80', '208.189.137.87', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('208.189.137.88', '208.189.207.31', 2147483647, 2147483647, 'US', 'United States'), +('208.189.207.32', '208.189.207.39', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('208.189.207.40', '208.190.124.247', 2147483647, 2147483647, 'US', 'United States'), +('208.190.124.248', '208.190.124.255', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('208.190.125.0', '208.190.133.111', 2147483647, 2147483647, 'US', 'United States'), +('208.190.133.112', '208.190.133.119', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('208.190.133.120', '208.190.182.31', 2147483647, 2147483647, 'US', 'United States'), +('208.190.182.32', '208.190.182.39', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('208.190.182.40', '208.190.182.47', 2147483647, 2147483647, 'US', 'United States'), +('208.190.182.48', '208.190.182.55', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('208.190.182.56', '208.191.93.47', 2147483647, 2147483647, 'US', 'United States'), +('208.191.93.48', '208.191.93.55', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('208.191.93.56', '208.191.93.175', 2147483647, 2147483647, 'US', 'United States'), +('208.191.93.176', '208.191.93.183', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('208.191.93.184', '208.191.95.23', 2147483647, 2147483647, 'US', 'United States'), +('208.191.95.24', '208.191.95.31', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('208.191.95.32', '208.191.114.47', 2147483647, 2147483647, 'US', 'United States'), +('208.191.114.48', '208.191.114.55', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('208.191.114.56', '208.194.168.255', 2147483647, 2147483647, 'US', 'United States'), +('208.194.169.0', '208.194.169.255', 2147483647, 2147483647, 'GU', 'Guam'), +('208.194.170.0', '208.194.250.255', 2147483647, 2147483647, 'US', 'United States'), +('208.194.251.0', '208.194.251.255', 2147483647, 2147483647, 'PK', 'Pakistan'), +('208.194.252.0', '208.195.115.255', 2147483647, 2147483647, 'US', 'United States'), +('208.195.116.0', '208.195.119.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('208.195.120.0', '208.196.49.255', 2147483647, 2147483647, 'US', 'United States'), +('208.196.50.0', '208.196.51.255', 2147483647, 2147483647, 'LK', 'Sri Lanka'), +('208.196.52.0', '208.196.136.255', 2147483647, 2147483647, 'US', 'United States'), +('208.196.137.0', '208.196.137.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.196.138.0', '208.196.154.255', 2147483647, 2147483647, 'US', 'United States'), +('208.196.155.0', '208.196.155.255', 2147483647, 2147483647, 'BS', 'Bahamas'), +('208.196.156.0', '208.198.179.255', 2147483647, 2147483647, 'US', 'United States'), +('208.198.180.0', '208.198.180.255', 2147483647, 2147483647, 'MC', 'Monaco'), +('208.198.181.0', '208.202.118.255', 2147483647, 2147483647, 'US', 'United States'), +('208.202.119.0', '208.202.119.255', 2147483647, 2147483647, 'GU', 'Guam'), +('208.202.120.0', '208.203.111.255', 2147483647, 2147483647, 'US', 'United States'), +('208.203.112.0', '208.203.113.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('208.203.114.0', '208.203.244.127', 2147483647, 2147483647, 'US', 'United States'), +('208.203.244.128', '208.203.244.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('208.203.244.160', '208.204.109.255', 2147483647, 2147483647, 'US', 'United States'), +('208.204.110.0', '208.204.110.15', 2147483647, 2147483647, 'CA', 'Canada'), +('208.204.110.16', '208.206.175.255', 2147483647, 2147483647, 'US', 'United States'), +('208.206.176.0', '208.206.177.255', 2147483647, 2147483647, 'CR', 'Costa Rica'), +('208.206.178.0', '208.206.212.7', 2147483647, 2147483647, 'US', 'United States'), +('208.206.212.8', '208.206.212.23', 2147483647, 2147483647, 'NL', 'Netherlands'), +('208.206.212.24', '208.206.239.167', 2147483647, 2147483647, 'US', 'United States'), +('208.206.239.168', '208.206.239.175', 2147483647, 2147483647, 'CA', 'Canada'), +('208.206.239.176', '208.207.1.255', 2147483647, 2147483647, 'US', 'United States'), +('208.207.2.0', '208.207.2.15', 2147483647, 2147483647, 'CA', 'Canada'), +('208.207.2.16', '208.207.91.255', 2147483647, 2147483647, 'US', 'United States'), +('208.207.92.0', '208.207.93.255', 2147483647, 2147483647, 'PK', 'Pakistan'), +('208.207.94.0', '208.208.119.255', 2147483647, 2147483647, 'US', 'United States'), +('208.208.120.0', '208.208.121.255', 2147483647, 2147483647, 'KE', 'Kenya'), +('208.208.122.0', '208.208.122.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('208.208.123.0', '208.209.54.255', 2147483647, 2147483647, 'US', 'United States'), +('208.209.55.0', '208.209.55.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('208.209.56.0', '208.209.109.255', 2147483647, 2147483647, 'US', 'United States'), +('208.209.110.0', '208.209.110.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('208.209.111.0', '208.209.218.111', 2147483647, 2147483647, 'US', 'United States'), +('208.209.218.112', '208.209.218.127', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('208.209.218.128', '208.210.121.255', 2147483647, 2147483647, 'US', 'United States'), +('208.210.122.0', '208.210.122.255', 2147483647, 2147483647, 'AZ', 'Azerbaijan'), +('208.210.123.0', '208.210.215.255', 2147483647, 2147483647, 'US', 'United States'), +('208.210.216.0', '208.210.216.255', 2147483647, 2147483647, 'DE', 'Germany'), +('208.210.217.0', '208.214.207.255', 2147483647, 2147483647, 'US', 'United States'), +('208.214.208.0', '208.214.215.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('208.214.216.0', '208.215.25.255', 2147483647, 2147483647, 'US', 'United States'), +('208.215.26.0', '208.215.27.255', 2147483647, 2147483647, 'GU', 'Guam'), +('208.215.28.0', '208.216.36.167', 2147483647, 2147483647, 'US', 'United States'), +('208.216.36.168', '208.216.36.175', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('208.216.36.176', '208.217.31.255', 2147483647, 2147483647, 'US', 'United States'), +('208.217.32.0', '208.217.47.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('208.217.48.0', '208.218.167.255', 2147483647, 2147483647, 'US', 'United States'), +('208.218.168.0', '208.218.175.255', 2147483647, 2147483647, 'AE', 'United Arab Emirates'), +('208.218.176.0', '208.220.27.255', 2147483647, 2147483647, 'US', 'United States'), +('208.220.28.0', '208.220.29.255', 2147483647, 2147483647, 'LI', 'Liechtenstein'), +('208.220.30.0', '208.220.223.255', 2147483647, 2147483647, 'US', 'United States'), +('208.220.224.0', '208.220.231.255', 2147483647, 2147483647, 'AZ', 'Azerbaijan'), +('208.220.232.0', '208.221.191.255', 2147483647, 2147483647, 'US', 'United States'), +('208.221.192.0', '208.221.195.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('208.221.196.0', '208.221.247.255', 2147483647, 2147483647, 'US', 'United States'), +('208.221.248.0', '208.221.248.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.221.249.0', '208.222.53.255', 2147483647, 2147483647, 'US', 'United States'), +('208.222.54.0', '208.222.54.255', 2147483647, 2147483647, 'RO', 'Romania'), +('208.222.55.0', '208.226.191.255', 2147483647, 2147483647, 'US', 'United States'), +('208.226.192.0', '208.226.193.255', 2147483647, 2147483647, 'GU', 'Guam'), +('208.226.194.0', '208.232.93.255', 2147483647, 2147483647, 'US', 'United States'), +('208.232.94.0', '208.232.95.255', 2147483647, 2147483647, 'PK', 'Pakistan'), +('208.232.96.0', '208.232.223.255', 2147483647, 2147483647, 'US', 'United States'), +('208.232.224.0', '208.232.226.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('208.232.227.0', '208.232.247.175', 2147483647, 2147483647, 'US', 'United States'), +('208.232.247.176', '208.232.247.183', 2147483647, 2147483647, 'IT', 'Italy'), +('208.232.247.184', '208.233.5.255', 2147483647, 2147483647, 'US', 'United States'), +('208.233.6.0', '208.233.7.255', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('208.233.8.0', '208.234.31.255', 2147483647, 2147483647, 'US', 'United States'), +('208.234.32.0', '208.234.63.255', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('208.234.64.0', '208.235.195.255', 2147483647, 2147483647, 'US', 'United States'), +('208.235.196.0', '208.235.196.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('208.235.197.0', '208.235.197.15', 2147483647, 2147483647, 'US', 'United States'), +('208.235.197.16', '208.235.199.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('208.235.200.0', '208.235.223.255', 2147483647, 2147483647, 'US', 'United States'), +('208.235.224.0', '208.235.224.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('208.235.225.0', '208.237.31.255', 2147483647, 2147483647, 'US', 'United States'), +('208.237.32.0', '208.237.32.255', 2147483647, 2147483647, 'JO', 'Jordan'), +('208.237.33.0', '208.237.106.255', 2147483647, 2147483647, 'US', 'United States'), +('208.237.107.0', '208.237.107.127', 2147483647, 2147483647, 'CA', 'Canada'), +('208.237.107.128', '208.237.133.239', 2147483647, 2147483647, 'US', 'United States'), +('208.237.133.240', '208.237.133.247', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('208.237.133.248', '208.238.45.255', 2147483647, 2147483647, 'US', 'United States'), +('208.238.46.0', '208.238.46.255', 2147483647, 2147483647, 'JM', 'Jamaica'), +('208.238.47.0', '208.238.47.255', 2147483647, 2147483647, 'HT', 'Haiti'), +('208.238.48.0', '208.240.105.255', 2147483647, 2147483647, 'US', 'United States'), +('208.240.106.0', '208.240.108.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('208.240.109.0', '208.240.135.255', 2147483647, 2147483647, 'US', 'United States'), +('208.240.136.0', '208.240.139.255', 2147483647, 2147483647, 'PK', 'Pakistan'), +('208.240.140.0', '208.240.166.95', 2147483647, 2147483647, 'US', 'United States'), +('208.240.166.96', '208.240.166.127', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('208.240.166.128', '208.240.221.127', 2147483647, 2147483647, 'US', 'United States'), +('208.240.221.128', '208.240.221.255', 2147483647, 2147483647, 'CA', 'Canada'), +('208.240.222.0', '208.241.75.255', 2147483647, 2147483647, 'US', 'United States'), +('208.241.76.0', '208.241.76.255', 2147483647, 2147483647, 'GU', 'Guam'), +('208.241.77.0', '208.241.220.255', 2147483647, 2147483647, 'US', 'United States'), +('208.241.221.0', '208.241.221.255', 2147483647, 2147483647, 'RO', 'Romania'), +('208.241.222.0', '208.244.39.255', 2147483647, 2147483647, 'US', 'United States'), +('208.244.40.0', '208.244.41.255', 2147483647, 2147483647, 'JM', 'Jamaica'), +('208.244.42.0', '208.244.51.31', 2147483647, 2147483647, 'US', 'United States'), +('208.244.51.32', '208.244.51.63', 2147483647, 2147483647, 'UA', 'Ukraine'), +('208.244.51.64', '208.246.139.255', 2147483647, 2147483647, 'US', 'United States'), +('208.246.140.0', '208.246.143.255', 2147483647, 2147483647, 'BS', 'Bahamas'), +('208.246.144.0', '208.249.77.255', 2147483647, 2147483647, 'US', 'United States'), +('208.249.78.0', '208.249.80.255', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('208.249.81.0', '208.249.248.255', 2147483647, 2147483647, 'US', 'United States'), +('208.249.249.0', '208.249.255.255', 2147483647, 2147483647, 'PA', 'Panama'), +('208.250.0.0', '208.250.29.191', 2147483647, 2147483647, 'US', 'United States'), +('208.250.29.192', '208.250.29.207', 2147483647, 2147483647, 'DE', 'Germany'), +('208.250.29.208', '208.251.96.223', 2147483647, 2147483647, 'US', 'United States'), +('208.251.96.224', '208.251.96.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('208.251.97.0', '208.252.7.175', 2147483647, 2147483647, 'US', 'United States'), +('208.252.7.176', '208.252.7.191', 2147483647, 2147483647, 'DE', 'Germany'), +('208.252.7.192', '208.252.64.255', 2147483647, 2147483647, 'US', 'United States'), +('208.252.65.0', '208.252.65.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('208.252.66.0', '208.252.72.103', 2147483647, 2147483647, 'US', 'United States'), +('208.252.72.104', '208.252.72.111', 2147483647, 2147483647, 'AU', 'Australia'), +('208.252.72.112', '208.252.85.247', 2147483647, 2147483647, 'US', 'United States'), +('208.252.85.248', '208.252.85.255', 2147483647, 2147483647, 'NO', 'Norway'), +('208.252.86.0', '208.252.149.15', 2147483647, 2147483647, 'US', 'United States'), +('208.252.149.16', '208.252.149.31', 2147483647, 2147483647, 'CA', 'Canada'), +('208.252.149.32', '208.254.2.47', 2147483647, 2147483647, 'US', 'United States'), +('208.254.2.48', '208.254.2.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('208.254.2.64', '208.255.44.127', 2147483647, 2147483647, 'US', 'United States'), +('208.255.44.128', '208.255.44.159', 2147483647, 2147483647, 'CA', 'Canada'), +('208.255.44.160', '208.255.192.223', 2147483647, 2147483647, 'US', 'United States'), +('208.255.192.224', '208.255.192.255', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('208.255.193.0', '209.4.255.255', 2147483647, 2147483647, 'US', 'United States'), +('209.5.0.0', '209.5.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.6.0.0', '209.8.245.255', 2147483647, 2147483647, 'US', 'United States'), +('209.8.246.0', '209.8.246.255', 2147483647, 2147483647, 'IQ', 'Iraq'), +('209.8.247.0', '209.10.32.223', 2147483647, 2147483647, 'US', 'United States'), +('209.10.32.224', '209.10.32.239', 2147483647, 2147483647, 'IL', 'Israel'), +('209.10.32.240', '209.10.160.127', 2147483647, 2147483647, 'US', 'United States'), +('209.10.160.128', '209.10.160.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.10.160.144', '209.10.201.95', 2147483647, 2147483647, 'US', 'United States'), +('209.10.201.96', '209.10.201.127', 2147483647, 2147483647, 'VG', 'Virgin Islands, British'), +('209.10.201.128', '209.10.203.95', 2147483647, 2147483647, 'US', 'United States'), +('209.10.203.96', '209.10.203.127', 2147483647, 2147483647, 'VG', 'Virgin Islands, British'), +('209.10.203.128', '209.12.255.255', 2147483647, 2147483647, 'US', 'United States'), +('209.13.0.0', '209.13.255.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('209.14.0.0', '209.16.208.47', 2147483647, 2147483647, 'US', 'United States'), +('209.16.208.48', '209.16.208.63', 2147483647, 2147483647, 'IN', 'India'), +('209.16.208.64', '209.17.127.255', 2147483647, 2147483647, 'US', 'United States'), +('209.17.128.0', '209.17.134.63', 2147483647, 2147483647, 'CA', 'Canada'), +('209.17.134.64', '209.17.134.95', 2147483647, 2147483647, 'US', 'United States'), +('209.17.134.96', '209.17.182.63', 2147483647, 2147483647, 'CA', 'Canada'), +('209.17.182.64', '209.17.182.95', 2147483647, 2147483647, 'US', 'United States'), +('209.17.182.96', '209.17.191.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.17.192.0', '209.18.64.159', 2147483647, 2147483647, 'US', 'United States'), +('209.18.64.160', '209.18.64.175', 2147483647, 2147483647, 'IQ', 'Iraq'), +('209.18.64.176', '209.18.64.207', 2147483647, 2147483647, 'US', 'United States'), +('209.18.64.208', '209.18.64.223', 2147483647, 2147483647, 'ES', 'Spain'), +('209.18.64.224', '209.18.65.191', 2147483647, 2147483647, 'US', 'United States'), +('209.18.65.192', '209.18.65.223', 2147483647, 2147483647, 'CA', 'Canada'), +('209.18.65.224', '209.18.68.191', 2147483647, 2147483647, 'US', 'United States'), +('209.18.68.192', '209.18.68.207', 2147483647, 2147483647, 'AU', 'Australia'), +('209.18.68.208', '209.18.74.223', 2147483647, 2147483647, 'US', 'United States'), +('209.18.74.224', '209.18.74.239', 2147483647, 2147483647, 'CA', 'Canada'), +('209.18.74.240', '209.18.77.47', 2147483647, 2147483647, 'US', 'United States'), +('209.18.77.48', '209.18.77.63', 2147483647, 2147483647, 'IL', 'Israel'), +('209.18.77.64', '209.18.83.149', 2147483647, 2147483647, 'US', 'United States'), +('209.18.83.150', '209.18.83.159', 2147483647, 2147483647, 'IT', 'Italy'), +('209.18.83.160', '209.18.84.89', 2147483647, 2147483647, 'US', 'United States'), +('209.18.84.90', '209.18.84.99', 2147483647, 2147483647, 'BE', 'Belgium'), +('209.18.84.100', '209.18.84.219', 2147483647, 2147483647, 'US', 'United States'), +('209.18.84.220', '209.18.84.229', 2147483647, 2147483647, 'IN', 'India'), +('209.18.84.230', '209.18.85.119', 2147483647, 2147483647, 'US', 'United States'), +('209.18.85.120', '209.18.85.129', 2147483647, 2147483647, 'SY', 'Syrian Arab Republic'), +('209.18.85.130', '209.18.85.159', 2147483647, 2147483647, 'US', 'United States'), +('209.18.85.160', '209.18.85.169', 2147483647, 2147483647, 'BE', 'Belgium'), +('209.18.85.170', '209.18.85.189', 2147483647, 2147483647, 'US', 'United States'), +('209.18.85.190', '209.18.85.199', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('209.18.85.200', '209.18.85.209', 2147483647, 2147483647, 'LB', 'Lebanon'), +('209.18.85.210', '209.18.96.159', 2147483647, 2147483647, 'US', 'United States'), +('209.18.96.160', '209.18.96.191', 2147483647, 2147483647, 'IL', 'Israel'), +('209.18.96.192', '209.18.96.223', 2147483647, 2147483647, 'CA', 'Canada'), +('209.18.96.224', '209.18.98.127', 2147483647, 2147483647, 'US', 'United States'), +('209.18.98.128', '209.18.98.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.18.98.160', '209.18.99.39', 2147483647, 2147483647, 'US', 'United States'), +('209.18.99.40', '209.18.99.49', 2147483647, 2147483647, 'FR', 'France'), +('209.18.99.50', '209.18.99.129', 2147483647, 2147483647, 'US', 'United States'), +('209.18.99.130', '209.18.99.139', 2147483647, 2147483647, 'IQ', 'Iraq'), +('209.18.99.140', '209.18.99.149', 2147483647, 2147483647, 'US', 'United States'), +('209.18.99.150', '209.18.99.159', 2147483647, 2147483647, 'ES', 'Spain'), +('209.18.99.160', '209.18.99.179', 2147483647, 2147483647, 'US', 'United States'), +('209.18.99.180', '209.18.99.189', 2147483647, 2147483647, 'JP', 'Japan'), +('209.18.99.190', '209.18.100.69', 2147483647, 2147483647, 'US', 'United States'), +('209.18.100.70', '209.18.100.79', 2147483647, 2147483647, 'AU', 'Australia'), +('209.18.100.80', '209.18.100.129', 2147483647, 2147483647, 'US', 'United States'), +('209.18.100.130', '209.18.100.139', 2147483647, 2147483647, 'LB', 'Lebanon'), +('209.18.100.140', '209.18.100.209', 2147483647, 2147483647, 'US', 'United States'), +('209.18.100.210', '209.18.100.219', 2147483647, 2147483647, 'IT', 'Italy'), +('209.18.100.220', '209.18.102.127', 2147483647, 2147483647, 'US', 'United States'), +('209.18.102.128', '209.18.102.159', 2147483647, 2147483647, 'IL', 'Israel'), +('209.18.102.160', '209.18.102.223', 2147483647, 2147483647, 'US', 'United States'), +('209.18.102.224', '209.18.102.255', 2147483647, 2147483647, 'FR', 'France'), +('209.18.103.0', '209.18.104.95', 2147483647, 2147483647, 'US', 'United States'), +('209.18.104.96', '209.18.104.127', 2147483647, 2147483647, 'NO', 'Norway'), +('209.18.104.128', '209.18.104.175', 2147483647, 2147483647, 'US', 'United States'), +('209.18.104.176', '209.18.104.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.18.104.192', '209.18.104.223', 2147483647, 2147483647, 'US', 'United States'), +('209.18.104.224', '209.18.104.255', 2147483647, 2147483647, 'FR', 'France'), +('209.18.105.0', '209.18.106.89', 2147483647, 2147483647, 'US', 'United States'), +('209.18.106.90', '209.18.106.99', 2147483647, 2147483647, 'AU', 'Australia'), +('209.18.106.100', '209.18.106.109', 2147483647, 2147483647, 'UA', 'Ukraine'), +('209.18.106.110', '209.18.106.189', 2147483647, 2147483647, 'US', 'United States'), +('209.18.106.190', '209.18.106.199', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('209.18.106.200', '209.18.107.9', 2147483647, 2147483647, 'US', 'United States'), +('209.18.107.10', '209.18.107.19', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('209.18.107.20', '209.18.107.39', 2147483647, 2147483647, 'US', 'United States'), +('209.18.107.40', '209.18.107.49', 2147483647, 2147483647, 'AU', 'Australia'), +('209.18.107.50', '209.18.107.149', 2147483647, 2147483647, 'US', 'United States'), +('209.18.107.150', '209.18.107.159', 2147483647, 2147483647, 'IR', 'Iran, Islamic Republic of'), +('209.18.107.160', '209.18.107.169', 2147483647, 2147483647, 'UA', 'Ukraine'), +('209.18.107.170', '209.18.107.239', 2147483647, 2147483647, 'US', 'United States'), +('209.18.107.240', '209.18.107.249', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.18.107.250', '209.18.108.39', 2147483647, 2147483647, 'US', 'United States'), +('209.18.108.40', '209.18.108.49', 2147483647, 2147483647, 'GR', 'Greece'), +('209.18.108.50', '209.18.110.175', 2147483647, 2147483647, 'US', 'United States'), +('209.18.110.176', '209.18.110.191', 2147483647, 2147483647, 'ES', 'Spain'), +('209.18.110.192', '209.18.117.63', 2147483647, 2147483647, 'US', 'United States'), +('209.18.117.64', '209.18.117.127', 2147483647, 2147483647, 'AU', 'Australia'), +('209.18.117.128', '209.18.122.239', 2147483647, 2147483647, 'US', 'United States'), +('209.18.122.240', '209.18.122.255', 2147483647, 2147483647, 'QA', 'Qatar'), +('209.18.123.0', '209.19.255.255', 2147483647, 2147483647, 'US', 'United States'), +('209.20.0.0', '209.20.63.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.20.64.0', '209.20.235.255', 2147483647, 2147483647, 'US', 'United States'), +('209.20.236.0', '209.20.236.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('209.20.237.0', '209.25.130.191', 2147483647, 2147483647, 'US', 'United States'), +('209.25.130.192', '209.25.130.223', 2147483647, 2147483647, 'CA', 'Canada'), +('209.25.130.224', '209.25.131.127', 2147483647, 2147483647, 'US', 'United States'), +('209.25.131.128', '209.25.131.159', 2147483647, 2147483647, 'ES', 'Spain'), +('209.25.131.160', '209.25.132.255', 2147483647, 2147483647, 'US', 'United States'), +('209.25.133.0', '209.25.134.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.25.135.0', '209.25.135.255', 2147483647, 2147483647, 'US', 'United States'), +('209.25.136.0', '209.25.136.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.25.137.0', '209.25.147.255', 2147483647, 2147483647, 'US', 'United States'), +('209.25.148.0', '209.25.148.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('209.25.149.0', '209.25.153.95', 2147483647, 2147483647, 'US', 'United States'), +('209.25.153.96', '209.25.153.127', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('209.25.153.128', '209.25.159.191', 2147483647, 2147483647, 'US', 'United States'), +('209.25.159.192', '209.25.159.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.25.160.0', '209.25.163.255', 2147483647, 2147483647, 'US', 'United States'), +('209.25.164.0', '209.25.164.31', 2147483647, 2147483647, 'AU', 'Australia'), +('209.25.164.32', '209.25.165.127', 2147483647, 2147483647, 'US', 'United States'), +('209.25.165.128', '209.25.165.159', 2147483647, 2147483647, 'CA', 'Canada'), +('209.25.165.160', '209.25.169.255', 2147483647, 2147483647, 'US', 'United States'), +('209.25.170.0', '209.25.170.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.25.171.0', '209.25.185.31', 2147483647, 2147483647, 'US', 'United States'), +('209.25.185.32', '209.25.185.47', 2147483647, 2147483647, 'CA', 'Canada'), +('209.25.185.48', '209.25.194.31', 2147483647, 2147483647, 'US', 'United States'), +('209.25.194.32', '209.25.194.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.25.194.48', '209.25.194.255', 2147483647, 2147483647, 'US', 'United States'), +('209.25.195.0', '209.25.195.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.25.196.0', '209.25.211.255', 2147483647, 2147483647, 'US', 'United States'), +('209.25.212.0', '209.25.212.15', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('209.25.212.16', '209.25.213.63', 2147483647, 2147483647, 'US', 'United States'), +('209.25.213.64', '209.25.213.127', 2147483647, 2147483647, 'CA', 'Canada'), +('209.25.213.128', '209.25.220.255', 2147483647, 2147483647, 'US', 'United States'), +('209.25.221.0', '209.25.221.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.25.221.128', '209.25.238.159', 2147483647, 2147483647, 'US', 'United States'), +('209.25.238.160', '209.25.238.175', 2147483647, 2147483647, 'SK', 'Slovakia'), +('209.25.238.176', '209.25.238.223', 2147483647, 2147483647, 'US', 'United States'), +('209.25.238.224', '209.25.238.239', 2147483647, 2147483647, 'ID', 'Indonesia'), +('209.25.238.240', '209.27.47.255', 2147483647, 2147483647, 'US', 'United States'), +('209.27.48.0', '209.27.51.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.27.52.0', '209.27.55.255', 2147483647, 2147483647, 'KY', 'Cayman Islands'), +('209.27.56.0', '209.27.59.255', 2147483647, 2147483647, 'US', 'United States'), +('209.27.60.0', '209.27.63.255', 2147483647, 2147483647, 'KY', 'Cayman Islands'), +('209.27.64.0', '209.27.64.255', 2147483647, 2147483647, 'BM', 'Bermuda'), +('209.27.65.0', '209.27.141.255', 2147483647, 2147483647, 'US', 'United States'), +('209.27.142.0', '209.27.142.255', 2147483647, 2147483647, 'BM', 'Bermuda'), +('209.27.143.0', '209.28.0.255', 2147483647, 2147483647, 'US', 'United States'), +('209.28.1.0', '209.28.1.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('209.28.2.0', '209.28.6.31', 2147483647, 2147483647, 'US', 'United States'), +('209.28.6.32', '209.28.6.63', 2147483647, 2147483647, 'AR', 'Argentina'), +('209.28.6.64', '209.28.7.255', 2147483647, 2147483647, 'US', 'United States'), +('209.28.8.0', '209.28.8.127', 2147483647, 2147483647, 'IT', 'Italy'), +('209.28.8.128', '209.28.8.255', 2147483647, 2147483647, 'US', 'United States'), +('209.28.9.0', '209.28.9.31', 2147483647, 2147483647, 'ZA', 'South Africa'), +('209.28.9.32', '209.28.14.255', 2147483647, 2147483647, 'US', 'United States'), +('209.28.15.0', '209.28.15.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('209.28.16.0', '209.28.16.95', 2147483647, 2147483647, 'US', 'United States'), +('209.28.16.96', '209.28.16.127', 2147483647, 2147483647, 'CA', 'Canada'), +('209.28.16.128', '209.28.16.239', 2147483647, 2147483647, 'US', 'United States'), +('209.28.16.240', '209.28.16.255', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('209.28.17.0', '209.28.20.255', 2147483647, 2147483647, 'US', 'United States'), +('209.28.21.0', '209.28.21.255', 2147483647, 2147483647, 'AU', 'Australia'), +('209.28.22.0', '209.28.22.255', 2147483647, 2147483647, 'US', 'United States'), +('209.28.23.0', '209.28.23.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('209.28.24.0', '209.28.24.255', 2147483647, 2147483647, 'US', 'United States'), +('209.28.25.0', '209.28.25.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('209.28.26.0', '209.28.26.255', 2147483647, 2147483647, 'JP', 'Japan'), +('209.28.27.0', '209.28.27.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('209.28.28.0', '209.28.28.255', 2147483647, 2147483647, 'JP', 'Japan'), +('209.28.29.0', '209.28.29.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('209.28.30.0', '209.28.30.255', 2147483647, 2147483647, 'JP', 'Japan'), +('209.28.31.0', '209.28.31.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('209.28.32.0', '209.28.32.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('209.28.33.0', '209.28.33.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('209.28.34.0', '209.28.34.191', 2147483647, 2147483647, 'US', 'United States'), +('209.28.34.192', '209.28.34.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('209.28.35.0', '209.28.35.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('209.28.36.0', '209.28.36.223', 2147483647, 2147483647, 'US', 'United States'), +('209.28.36.224', '209.28.36.255', 2147483647, 2147483647, 'IT', 'Italy'), +('209.28.37.0', '209.28.37.255', 2147483647, 2147483647, 'AU', 'Australia'), +('209.28.38.0', '209.28.38.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('209.28.39.0', '209.28.39.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('209.28.40.0', '209.28.40.255', 2147483647, 2147483647, 'US', 'United States'), +('209.28.41.0', '209.28.41.255', 2147483647, 2147483647, 'AU', 'Australia'), +('209.28.42.0', '209.28.42.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('209.28.43.0', '209.28.43.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('209.28.44.0', '209.28.44.255', 2147483647, 2147483647, 'AU', 'Australia'), +('209.28.45.0', '209.28.45.63', 2147483647, 2147483647, 'JP', 'Japan'), +('209.28.45.64', '209.28.45.255', 2147483647, 2147483647, 'US', 'United States'), +('209.28.46.0', '209.28.46.63', 2147483647, 2147483647, 'ES', 'Spain'), +('209.28.46.64', '209.28.46.159', 2147483647, 2147483647, 'US', 'United States'), +('209.28.46.160', '209.28.46.167', 2147483647, 2147483647, 'ES', 'Spain'), +('209.28.46.168', '209.28.46.191', 2147483647, 2147483647, 'US', 'United States'), +('209.28.46.192', '209.28.46.223', 2147483647, 2147483647, 'ES', 'Spain'), +('209.28.46.224', '209.28.49.127', 2147483647, 2147483647, 'US', 'United States'), +('209.28.49.128', '209.28.49.159', 2147483647, 2147483647, 'ES', 'Spain'), +('209.28.49.160', '209.28.49.191', 2147483647, 2147483647, 'US', 'United States'), +('209.28.49.192', '209.28.49.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.28.50.0', '209.28.50.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('209.28.50.64', '209.28.50.127', 2147483647, 2147483647, 'US', 'United States'), +('209.28.50.128', '209.28.50.159', 2147483647, 2147483647, 'NL', 'Netherlands'), +('209.28.50.160', '209.28.50.255', 2147483647, 2147483647, 'US', 'United States'), +('209.28.51.0', '209.28.51.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('209.28.52.0', '209.28.52.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('209.28.53.0', '209.28.53.127', 2147483647, 2147483647, 'US', 'United States'), +('209.28.53.128', '209.28.53.143', 2147483647, 2147483647, 'TW', 'Taiwan'), +('209.28.53.144', '209.28.53.191', 2147483647, 2147483647, 'US', 'United States'), +('209.28.53.192', '209.28.53.207', 2147483647, 2147483647, 'PH', 'Philippines'), +('209.28.53.208', '209.28.53.223', 2147483647, 2147483647, 'US', 'United States'), +('209.28.53.224', '209.28.53.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('209.28.54.0', '209.28.54.63', 2147483647, 2147483647, 'TH', 'Thailand'), +('209.28.54.64', '209.28.54.79', 2147483647, 2147483647, 'US', 'United States'), +('209.28.54.80', '209.28.54.87', 2147483647, 2147483647, 'TH', 'Thailand'), +('209.28.54.88', '209.28.54.127', 2147483647, 2147483647, 'US', 'United States'), +('209.28.54.128', '209.28.54.191', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('209.28.54.192', '209.28.54.255', 2147483647, 2147483647, 'US', 'United States'), +('209.28.55.0', '209.28.55.31', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('209.28.55.32', '209.28.55.63', 2147483647, 2147483647, 'US', 'United States'), +('209.28.55.64', '209.28.55.127', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('209.28.55.128', '209.28.57.255', 2147483647, 2147483647, 'US', 'United States'), +('209.28.58.0', '209.28.58.127', 2147483647, 2147483647, 'MY', 'Malaysia'), +('209.28.58.128', '209.28.58.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('209.28.59.0', '209.28.59.255', 2147483647, 2147483647, 'JP', 'Japan'), +('209.28.60.0', '209.28.60.255', 2147483647, 2147483647, 'US', 'United States'), +('209.28.61.0', '209.28.61.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('209.28.62.0', '209.28.62.255', 2147483647, 2147483647, 'AU', 'Australia'), +('209.28.63.0', '209.28.63.63', 2147483647, 2147483647, 'BR', 'Brazil'), +('209.28.63.64', '209.28.63.127', 2147483647, 2147483647, 'US', 'United States'), +('209.28.63.128', '209.28.63.191', 2147483647, 2147483647, 'BR', 'Brazil'), +('209.28.63.192', '209.28.63.255', 2147483647, 2147483647, 'US', 'United States'), +('209.28.64.0', '209.28.64.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.28.65.0', '209.28.69.31', 2147483647, 2147483647, 'US', 'United States'), +('209.28.69.32', '209.28.69.63', 2147483647, 2147483647, 'MX', 'Mexico'), +('209.28.69.64', '209.28.69.79', 2147483647, 2147483647, 'US', 'United States'), +('209.28.69.80', '209.28.69.95', 2147483647, 2147483647, 'BR', 'Brazil'), +('209.28.69.96', '209.28.69.111', 2147483647, 2147483647, 'US', 'United States'), +('209.28.69.112', '209.28.69.127', 2147483647, 2147483647, 'BR', 'Brazil'), +('209.28.69.128', '209.28.70.191', 2147483647, 2147483647, 'US', 'United States'), +('209.28.70.192', '209.28.70.255', 2147483647, 2147483647, 'IT', 'Italy'), +('209.28.71.0', '209.28.73.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.28.74.0', '209.28.74.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('209.28.75.0', '209.28.75.63', 2147483647, 2147483647, 'US', 'United States'), +('209.28.75.64', '209.28.75.95', 2147483647, 2147483647, 'CL', 'Chile'), +('209.28.75.96', '209.28.76.255', 2147483647, 2147483647, 'US', 'United States'), +('209.28.77.0', '209.28.81.255', 2147483647, 2147483647, 'DE', 'Germany'), +('209.28.82.0', '209.28.82.127', 2147483647, 2147483647, 'US', 'United States'), +('209.28.82.128', '209.28.82.191', 2147483647, 2147483647, 'VI', 'Virgin Islands, U.S.'), +('209.28.82.192', '209.28.87.15', 2147483647, 2147483647, 'US', 'United States'), +('209.28.87.16', '209.28.87.63', 2147483647, 2147483647, 'BR', 'Brazil'), +('209.28.87.64', '209.28.87.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.28.87.96', '209.28.87.127', 2147483647, 2147483647, 'US', 'United States'), +('209.28.87.128', '209.28.87.191', 2147483647, 2147483647, 'BR', 'Brazil'), +('209.28.87.192', '209.28.87.207', 2147483647, 2147483647, 'ES', 'Spain'), +('209.28.87.208', '209.28.87.223', 2147483647, 2147483647, 'US', 'United States'), +('209.28.87.224', '209.28.87.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('209.28.88.0', '209.28.88.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.28.89.0', '209.28.89.63', 2147483647, 2147483647, 'US', 'United States'), +('209.28.89.64', '209.28.89.79', 2147483647, 2147483647, 'BR', 'Brazil'), +('209.28.89.80', '209.28.89.159', 2147483647, 2147483647, 'US', 'United States'), +('209.28.89.160', '209.28.89.191', 2147483647, 2147483647, 'BR', 'Brazil'), +('209.28.89.192', '209.28.89.255', 2147483647, 2147483647, 'US', 'United States'), +('209.28.90.0', '209.28.90.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.28.90.128', '209.28.90.255', 2147483647, 2147483647, 'US', 'United States'), +('209.28.91.0', '209.28.91.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.28.91.32', '209.28.91.47', 2147483647, 2147483647, 'BE', 'Belgium'), +('209.28.91.48', '209.28.91.95', 2147483647, 2147483647, 'US', 'United States'), +('209.28.91.96', '209.28.91.111', 2147483647, 2147483647, 'SE', 'Sweden'), +('209.28.91.112', '209.28.91.223', 2147483647, 2147483647, 'US', 'United States'), +('209.28.91.224', '209.28.91.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.28.92.0', '209.28.92.63', 2147483647, 2147483647, 'FR', 'France'), +('209.28.92.64', '209.28.92.127', 2147483647, 2147483647, 'US', 'United States'), +('209.28.92.128', '209.28.92.255', 2147483647, 2147483647, 'NO', 'Norway'), +('209.28.93.0', '209.28.93.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('209.28.94.0', '209.28.94.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.28.94.192', '209.28.94.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('209.28.95.0', '209.28.95.255', 2147483647, 2147483647, 'IT', 'Italy'), +('209.28.96.0', '209.28.96.63', 2147483647, 2147483647, 'CH', 'Switzerland'), +('209.28.96.64', '209.28.97.63', 2147483647, 2147483647, 'US', 'United States'), +('209.28.97.64', '209.28.97.95', 2147483647, 2147483647, 'BE', 'Belgium'), +('209.28.97.96', '209.28.97.127', 2147483647, 2147483647, 'US', 'United States'), +('209.28.97.128', '209.28.97.175', 2147483647, 2147483647, 'BE', 'Belgium'), +('209.28.97.176', '209.28.97.223', 2147483647, 2147483647, 'US', 'United States'), +('209.28.97.224', '209.28.97.239', 2147483647, 2147483647, 'BE', 'Belgium'), +('209.28.97.240', '209.28.97.255', 2147483647, 2147483647, 'US', 'United States'), +('209.28.98.0', '209.28.98.255', 2147483647, 2147483647, 'DE', 'Germany'), +('209.28.99.0', '209.28.99.63', 2147483647, 2147483647, 'DK', 'Denmark'), +('209.28.99.64', '209.28.99.127', 2147483647, 2147483647, 'US', 'United States'), +('209.28.99.128', '209.28.99.159', 2147483647, 2147483647, 'DK', 'Denmark'), +('209.28.99.160', '209.28.99.191', 2147483647, 2147483647, 'US', 'United States'), +('209.28.99.192', '209.28.99.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('209.28.100.0', '209.28.100.255', 2147483647, 2147483647, 'ES', 'Spain'), +('209.28.101.0', '209.28.101.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('209.28.102.0', '209.28.102.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.28.103.0', '209.28.103.127', 2147483647, 2147483647, 'US', 'United States'), +('209.28.103.128', '209.28.103.159', 2147483647, 2147483647, 'CH', 'Switzerland'), +('209.28.103.160', '209.28.103.255', 2147483647, 2147483647, 'US', 'United States'), +('209.28.104.0', '209.28.104.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('209.28.105.0', '209.28.105.255', 2147483647, 2147483647, 'DE', 'Germany'), +('209.28.106.0', '209.28.106.255', 2147483647, 2147483647, 'US', 'United States'), +('209.28.107.0', '209.28.107.255', 2147483647, 2147483647, 'FR', 'France'), +('209.28.108.0', '209.28.108.63', 2147483647, 2147483647, 'US', 'United States'), +('209.28.108.64', '209.28.108.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.28.108.80', '209.28.108.95', 2147483647, 2147483647, 'US', 'United States'), +('209.28.108.96', '209.28.108.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.28.108.112', '209.28.111.63', 2147483647, 2147483647, 'US', 'United States'), +('209.28.111.64', '209.28.111.95', 2147483647, 2147483647, 'BR', 'Brazil'), +('209.28.111.96', '209.28.111.255', 2147483647, 2147483647, 'US', 'United States'), +('209.28.112.0', '209.28.112.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.28.112.128', '209.28.112.159', 2147483647, 2147483647, 'DK', 'Denmark'), +('209.28.112.160', '209.28.112.175', 2147483647, 2147483647, 'IT', 'Italy'), +('209.28.112.176', '209.28.112.255', 2147483647, 2147483647, 'US', 'United States'), +('209.28.113.0', '209.28.113.31', 2147483647, 2147483647, 'DE', 'Germany'), +('209.28.113.32', '209.28.113.127', 2147483647, 2147483647, 'US', 'United States'), +('209.28.113.128', '209.28.113.143', 2147483647, 2147483647, 'DE', 'Germany'), +('209.28.113.144', '209.28.113.159', 2147483647, 2147483647, 'US', 'United States'), +('209.28.113.160', '209.28.113.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.28.113.176', '209.28.113.255', 2147483647, 2147483647, 'US', 'United States'), +('209.28.114.0', '209.28.114.127', 2147483647, 2147483647, 'SG', 'Singapore'), +('209.28.114.128', '209.28.114.191', 2147483647, 2147483647, 'BE', 'Belgium'), +('209.28.114.192', '209.28.115.31', 2147483647, 2147483647, 'US', 'United States'), +('209.28.115.32', '209.28.115.95', 2147483647, 2147483647, 'BE', 'Belgium'), +('209.28.115.96', '209.28.117.255', 2147483647, 2147483647, 'US', 'United States'), +('209.28.118.0', '209.28.118.31', 2147483647, 2147483647, 'BE', 'Belgium'), +('209.28.118.32', '209.28.118.63', 2147483647, 2147483647, 'US', 'United States'), +('209.28.118.64', '209.28.118.79', 2147483647, 2147483647, 'BE', 'Belgium'), +('209.28.118.80', '209.28.118.95', 2147483647, 2147483647, 'US', 'United States'), +('209.28.118.96', '209.28.118.111', 2147483647, 2147483647, 'BE', 'Belgium'), +('209.28.118.112', '209.28.118.127', 2147483647, 2147483647, 'US', 'United States'), +('209.28.118.128', '209.28.118.191', 2147483647, 2147483647, 'ES', 'Spain'), +('209.28.118.192', '209.28.118.255', 2147483647, 2147483647, 'US', 'United States'), +('209.28.119.0', '209.28.119.255', 2147483647, 2147483647, 'DE', 'Germany'), +('209.28.120.0', '209.28.120.31', 2147483647, 2147483647, 'US', 'United States'), +('209.28.120.32', '209.28.120.63', 2147483647, 2147483647, 'CL', 'Chile'), +('209.28.120.64', '209.28.120.78', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('209.28.120.79', '209.28.120.79', 2147483647, 2147483647, 'US', 'United States'), +('209.28.120.80', '209.28.120.95', 2147483647, 2147483647, 'CO', 'Colombia'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('209.28.120.96', '209.28.120.111', 2147483647, 2147483647, 'US', 'United States'), +('209.28.120.112', '209.28.120.127', 2147483647, 2147483647, 'BR', 'Brazil'), +('209.28.120.128', '209.28.121.255', 2147483647, 2147483647, 'US', 'United States'), +('209.28.122.0', '209.28.122.255', 2147483647, 2147483647, 'DE', 'Germany'), +('209.28.123.0', '209.28.123.63', 2147483647, 2147483647, 'IR', 'Iran, Islamic Republic of'), +('209.28.123.64', '209.28.124.31', 2147483647, 2147483647, 'US', 'United States'), +('209.28.124.32', '209.28.124.47', 2147483647, 2147483647, 'DE', 'Germany'), +('209.28.124.48', '209.28.124.255', 2147483647, 2147483647, 'US', 'United States'), +('209.28.125.0', '209.28.125.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('209.28.125.64', '209.28.125.95', 2147483647, 2147483647, 'US', 'United States'), +('209.28.125.96', '209.28.125.111', 2147483647, 2147483647, 'NL', 'Netherlands'), +('209.28.125.112', '209.28.127.127', 2147483647, 2147483647, 'US', 'United States'), +('209.28.127.128', '209.28.127.159', 2147483647, 2147483647, 'CO', 'Colombia'), +('209.28.127.160', '209.28.127.191', 2147483647, 2147483647, 'US', 'United States'), +('209.28.127.192', '209.28.127.207', 2147483647, 2147483647, 'BE', 'Belgium'), +('209.28.127.208', '209.28.129.255', 2147483647, 2147483647, 'US', 'United States'), +('209.28.130.0', '209.28.130.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('209.28.131.0', '209.28.131.255', 2147483647, 2147483647, 'US', 'United States'), +('209.28.132.0', '209.28.132.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('209.28.133.0', '209.28.133.255', 2147483647, 2147483647, 'US', 'United States'), +('209.28.134.0', '209.28.134.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('209.28.135.0', '209.28.139.255', 2147483647, 2147483647, 'US', 'United States'), +('209.28.140.0', '209.28.140.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('209.28.141.0', '209.28.145.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('209.28.146.0', '209.28.146.255', 2147483647, 2147483647, 'DE', 'Germany'), +('209.28.147.0', '209.28.147.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('209.28.148.0', '209.28.148.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('209.28.149.0', '209.28.150.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('209.28.151.0', '209.28.151.159', 2147483647, 2147483647, 'US', 'United States'), +('209.28.151.160', '209.28.151.175', 2147483647, 2147483647, 'DE', 'Germany'), +('209.28.151.176', '209.28.151.255', 2147483647, 2147483647, 'US', 'United States'), +('209.28.152.0', '209.28.152.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('209.28.153.0', '209.28.153.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('209.28.154.0', '209.28.154.15', 2147483647, 2147483647, 'ES', 'Spain'), +('209.28.154.16', '209.28.154.255', 2147483647, 2147483647, 'US', 'United States'), +('209.28.155.0', '209.28.156.255', 2147483647, 2147483647, 'DE', 'Germany'), +('209.28.157.0', '209.28.157.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('209.28.158.0', '209.28.158.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('209.28.159.0', '209.28.160.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.28.161.0', '209.28.161.255', 2147483647, 2147483647, 'IT', 'Italy'), +('209.28.162.0', '209.28.162.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('209.28.163.0', '209.28.163.31', 2147483647, 2147483647, 'US', 'United States'), +('209.28.163.32', '209.28.163.47', 2147483647, 2147483647, 'FR', 'France'), +('209.28.163.48', '209.28.163.63', 2147483647, 2147483647, 'US', 'United States'), +('209.28.163.64', '209.28.163.79', 2147483647, 2147483647, 'CH', 'Switzerland'), +('209.28.163.80', '209.28.163.95', 2147483647, 2147483647, 'PT', 'Portugal'), +('209.28.163.96', '209.28.163.255', 2147483647, 2147483647, 'US', 'United States'), +('209.28.164.0', '209.28.164.255', 2147483647, 2147483647, 'NO', 'Norway'), +('209.28.165.0', '209.28.165.255', 2147483647, 2147483647, 'US', 'United States'), +('209.28.166.0', '209.28.166.255', 2147483647, 2147483647, 'FR', 'France'), +('209.28.167.0', '209.28.167.255', 2147483647, 2147483647, 'US', 'United States'), +('209.28.168.0', '209.28.168.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('209.28.169.0', '209.28.169.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.28.170.0', '209.28.170.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('209.28.171.0', '209.28.171.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('209.28.172.0', '209.28.172.15', 2147483647, 2147483647, 'US', 'United States'), +('209.28.172.16', '209.28.172.23', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('209.28.172.24', '209.28.172.47', 2147483647, 2147483647, 'US', 'United States'), +('209.28.172.48', '209.28.172.63', 2147483647, 2147483647, 'AT', 'Austria'), +('209.28.172.64', '209.28.172.191', 2147483647, 2147483647, 'US', 'United States'), +('209.28.172.192', '209.28.172.255', 2147483647, 2147483647, 'FR', 'France'), +('209.28.173.0', '209.28.173.255', 2147483647, 2147483647, 'DE', 'Germany'), +('209.28.174.0', '209.28.174.255', 2147483647, 2147483647, 'US', 'United States'), +('209.28.175.0', '209.28.176.255', 2147483647, 2147483647, 'FI', 'Finland'), +('209.28.177.0', '209.28.177.255', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('209.28.178.0', '209.28.178.255', 2147483647, 2147483647, 'IT', 'Italy'), +('209.28.179.0', '209.28.180.255', 2147483647, 2147483647, 'IL', 'Israel'), +('209.28.181.0', '209.28.181.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('209.28.182.0', '209.28.182.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('209.28.183.0', '209.28.183.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('209.28.184.0', '209.28.184.127', 2147483647, 2147483647, 'PT', 'Portugal'), +('209.28.184.128', '209.28.184.255', 2147483647, 2147483647, 'US', 'United States'), +('209.28.185.0', '209.28.185.15', 2147483647, 2147483647, 'DE', 'Germany'), +('209.28.185.16', '209.28.185.31', 2147483647, 2147483647, 'PT', 'Portugal'), +('209.28.185.32', '209.28.185.255', 2147483647, 2147483647, 'US', 'United States'), +('209.28.186.0', '209.28.189.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('209.28.190.0', '209.28.190.31', 2147483647, 2147483647, 'NL', 'Netherlands'), +('209.28.190.32', '209.28.190.63', 2147483647, 2147483647, 'ZA', 'South Africa'), +('209.28.190.64', '209.28.190.79', 2147483647, 2147483647, 'FR', 'France'), +('209.28.190.80', '209.28.190.95', 2147483647, 2147483647, 'SE', 'Sweden'), +('209.28.190.96', '209.28.191.63', 2147483647, 2147483647, 'US', 'United States'), +('209.28.191.64', '209.28.191.95', 2147483647, 2147483647, 'PL', 'Poland'), +('209.28.191.96', '209.28.191.127', 2147483647, 2147483647, 'US', 'United States'), +('209.28.191.128', '209.28.191.143', 2147483647, 2147483647, 'CH', 'Switzerland'), +('209.28.191.144', '209.28.191.191', 2147483647, 2147483647, 'US', 'United States'), +('209.28.191.192', '209.28.191.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('209.28.192.0', '209.28.192.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.28.193.0', '209.28.193.255', 2147483647, 2147483647, 'FI', 'Finland'), +('209.28.194.0', '209.28.194.255', 2147483647, 2147483647, 'NO', 'Norway'), +('209.28.195.0', '209.28.195.63', 2147483647, 2147483647, 'DE', 'Germany'), +('209.28.195.64', '209.28.195.255', 2147483647, 2147483647, 'US', 'United States'), +('209.28.196.0', '209.28.196.255', 2147483647, 2147483647, 'NO', 'Norway'), +('209.28.197.0', '209.28.197.255', 2147483647, 2147483647, 'DE', 'Germany'), +('209.28.198.0', '209.28.198.255', 2147483647, 2147483647, 'FI', 'Finland'), +('209.28.199.0', '209.28.199.255', 2147483647, 2147483647, 'IT', 'Italy'), +('209.28.200.0', '209.28.200.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('209.28.201.0', '209.28.201.255', 2147483647, 2147483647, 'NO', 'Norway'), +('209.28.202.0', '209.28.202.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.28.203.0', '209.28.203.255', 2147483647, 2147483647, 'DE', 'Germany'), +('209.28.204.0', '209.28.204.95', 2147483647, 2147483647, 'GR', 'Greece'), +('209.28.204.96', '209.28.204.127', 2147483647, 2147483647, 'US', 'United States'), +('209.28.204.128', '209.28.204.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.28.204.192', '209.28.204.255', 2147483647, 2147483647, 'US', 'United States'), +('209.28.205.0', '209.28.205.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('209.28.206.0', '209.28.207.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('209.28.208.0', '209.28.208.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.28.209.0', '209.28.209.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('209.28.210.0', '209.28.210.255', 2147483647, 2147483647, 'IT', 'Italy'), +('209.28.211.0', '209.28.212.255', 2147483647, 2147483647, 'ES', 'Spain'), +('209.28.213.0', '209.28.213.255', 2147483647, 2147483647, 'US', 'United States'), +('209.28.214.0', '209.28.215.255', 2147483647, 2147483647, 'NE', 'Niger'), +('209.28.216.0', '209.28.216.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('209.28.217.0', '209.28.219.255', 2147483647, 2147483647, 'IL', 'Israel'), +('209.28.220.0', '209.28.220.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('209.28.221.0', '209.28.221.255', 2147483647, 2147483647, 'FR', 'France'), +('209.28.222.0', '209.28.223.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('209.28.224.0', '209.28.226.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.28.227.0', '209.28.227.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('209.28.228.0', '209.28.228.63', 2147483647, 2147483647, 'FR', 'France'), +('209.28.228.64', '209.28.228.191', 2147483647, 2147483647, 'US', 'United States'), +('209.28.228.192', '209.28.228.223', 2147483647, 2147483647, 'FR', 'France'), +('209.28.228.224', '209.28.228.255', 2147483647, 2147483647, 'US', 'United States'), +('209.28.229.0', '209.28.229.31', 2147483647, 2147483647, 'IT', 'Italy'), +('209.28.229.32', '209.28.229.63', 2147483647, 2147483647, 'US', 'United States'), +('209.28.229.64', '209.28.229.95', 2147483647, 2147483647, 'AT', 'Austria'), +('209.28.229.96', '209.28.229.255', 2147483647, 2147483647, 'US', 'United States'), +('209.28.230.0', '209.28.230.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.28.231.0', '209.28.231.255', 2147483647, 2147483647, 'GR', 'Greece'), +('209.28.232.0', '209.28.232.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('209.28.233.0', '209.28.233.255', 2147483647, 2147483647, 'NO', 'Norway'), +('209.28.234.0', '209.28.234.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.28.234.128', '209.28.234.255', 2147483647, 2147483647, 'US', 'United States'), +('209.28.235.0', '209.28.236.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('209.28.237.0', '209.28.237.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.28.237.128', '209.28.237.255', 2147483647, 2147483647, 'US', 'United States'), +('209.28.238.0', '209.28.238.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.28.238.128', '209.28.238.255', 2147483647, 2147483647, 'US', 'United States'), +('209.28.239.0', '209.28.239.127', 2147483647, 2147483647, 'DE', 'Germany'), +('209.28.239.128', '209.28.239.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.28.239.192', '209.28.239.255', 2147483647, 2147483647, 'US', 'United States'), +('209.28.240.0', '209.28.240.255', 2147483647, 2147483647, 'AU', 'Australia'), +('209.28.241.0', '209.28.241.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('209.28.242.0', '209.28.242.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('209.28.243.0', '209.28.243.255', 2147483647, 2147483647, 'AU', 'Australia'), +('209.28.244.0', '209.28.245.255', 2147483647, 2147483647, 'JP', 'Japan'), +('209.28.246.0', '209.28.246.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('209.28.247.0', '209.28.247.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('209.28.248.0', '209.28.248.255', 2147483647, 2147483647, 'AU', 'Australia'), +('209.28.249.0', '209.28.249.255', 2147483647, 2147483647, 'JP', 'Japan'), +('209.28.250.0', '209.28.251.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('209.28.252.0', '209.28.252.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('209.28.253.0', '209.28.253.255', 2147483647, 2147483647, 'JP', 'Japan'), +('209.28.254.0', '209.28.254.127', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('209.28.254.128', '209.28.254.159', 2147483647, 2147483647, 'ID', 'Indonesia'), +('209.28.254.160', '209.28.254.191', 2147483647, 2147483647, 'US', 'United States'), +('209.28.254.192', '209.28.254.223', 2147483647, 2147483647, 'SG', 'Singapore'), +('209.28.254.224', '209.28.254.255', 2147483647, 2147483647, 'US', 'United States'), +('209.28.255.0', '209.28.255.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('209.29.0.0', '209.29.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.30.0.0', '209.34.95.255', 2147483647, 2147483647, 'US', 'United States'), +('209.34.96.0', '209.34.111.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.34.112.0', '209.34.248.79', 2147483647, 2147483647, 'US', 'United States'), +('209.34.248.80', '209.34.248.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.34.248.96', '209.35.114.32', 2147483647, 2147483647, 'US', 'United States'), +('209.35.114.33', '209.35.114.48', 2147483647, 2147483647, 'BE', 'Belgium'), +('209.35.114.49', '209.35.114.96', 2147483647, 2147483647, 'US', 'United States'), +('209.35.114.97', '209.35.114.112', 2147483647, 2147483647, 'BE', 'Belgium'), +('209.35.114.113', '209.35.188.47', 2147483647, 2147483647, 'US', 'United States'), +('209.35.188.48', '209.35.188.79', 2147483647, 2147483647, 'NL', 'Netherlands'), +('209.35.188.80', '209.35.190.79', 2147483647, 2147483647, 'US', 'United States'), +('209.35.190.80', '209.35.190.95', 2147483647, 2147483647, 'IT', 'Italy'), +('209.35.190.96', '209.41.127.255', 2147483647, 2147483647, 'US', 'United States'), +('209.41.128.0', '209.41.159.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.41.160.0', '209.42.95.255', 2147483647, 2147483647, 'US', 'United States'), +('209.42.96.0', '209.42.127.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.42.128.0', '209.44.23.79', 2147483647, 2147483647, 'US', 'United States'), +('209.44.23.80', '209.44.23.95', 2147483647, 2147483647, 'CA', 'Canada'), +('209.44.23.96', '209.44.23.191', 2147483647, 2147483647, 'US', 'United States'), +('209.44.23.192', '209.44.23.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.44.24.0', '209.44.95.255', 2147483647, 2147483647, 'US', 'United States'), +('209.44.96.0', '209.44.113.55', 2147483647, 2147483647, 'CA', 'Canada'), +('209.44.113.56', '209.44.113.63', 2147483647, 2147483647, 'US', 'United States'), +('209.44.113.64', '209.44.127.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.44.128.0', '209.44.255.255', 2147483647, 2147483647, 'US', 'United States'), +('209.45.0.0', '209.45.127.255', 2147483647, 2147483647, 'PE', 'Peru'), +('209.45.128.0', '209.47.0.255', 2147483647, 2147483647, 'US', 'United States'), +('209.47.1.0', '209.47.1.223', 2147483647, 2147483647, 'CA', 'Canada'), +('209.47.1.224', '209.47.1.239', 2147483647, 2147483647, 'US', 'United States'), +('209.47.1.240', '209.47.3.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.47.4.0', '209.47.4.63', 2147483647, 2147483647, 'US', 'United States'), +('209.47.4.64', '209.47.5.31', 2147483647, 2147483647, 'CA', 'Canada'), +('209.47.5.32', '209.47.5.63', 2147483647, 2147483647, 'US', 'United States'), +('209.47.5.64', '209.47.8.127', 2147483647, 2147483647, 'CA', 'Canada'), +('209.47.8.128', '209.47.8.255', 2147483647, 2147483647, 'US', 'United States'), +('209.47.9.0', '209.47.9.191', 2147483647, 2147483647, 'CA', 'Canada'), +('209.47.9.192', '209.47.9.255', 2147483647, 2147483647, 'US', 'United States'), +('209.47.10.0', '209.47.10.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.47.11.0', '209.47.11.255', 2147483647, 2147483647, 'US', 'United States'), +('209.47.12.0', '209.47.13.127', 2147483647, 2147483647, 'CA', 'Canada'), +('209.47.13.128', '209.47.13.255', 2147483647, 2147483647, 'US', 'United States'), +('209.47.14.0', '209.47.15.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.47.16.0', '209.47.16.255', 2147483647, 2147483647, 'KW', 'Kuwait'), +('209.47.17.0', '209.47.18.127', 2147483647, 2147483647, 'CA', 'Canada'), +('209.47.18.128', '209.47.18.255', 2147483647, 2147483647, 'US', 'United States'), +('209.47.19.0', '209.47.19.127', 2147483647, 2147483647, 'CA', 'Canada'), +('209.47.19.128', '209.47.19.191', 2147483647, 2147483647, 'US', 'United States'), +('209.47.19.192', '209.47.19.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.47.20.0', '209.47.20.15', 2147483647, 2147483647, 'US', 'United States'), +('209.47.20.16', '209.47.21.63', 2147483647, 2147483647, 'CA', 'Canada'), +('209.47.21.64', '209.47.21.127', 2147483647, 2147483647, 'US', 'United States'), +('209.47.21.128', '209.47.21.191', 2147483647, 2147483647, 'CA', 'Canada'), +('209.47.21.192', '209.47.22.255', 2147483647, 2147483647, 'US', 'United States'), +('209.47.23.0', '209.47.24.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.47.25.0', '209.47.25.255', 2147483647, 2147483647, 'US', 'United States'), +('209.47.26.0', '209.47.29.63', 2147483647, 2147483647, 'CA', 'Canada'), +('209.47.29.64', '209.47.29.127', 2147483647, 2147483647, 'US', 'United States'), +('209.47.29.128', '209.47.33.31', 2147483647, 2147483647, 'CA', 'Canada'), +('209.47.33.32', '209.47.33.95', 2147483647, 2147483647, 'US', 'United States'), +('209.47.33.96', '209.47.34.31', 2147483647, 2147483647, 'CA', 'Canada'), +('209.47.34.32', '209.47.34.79', 2147483647, 2147483647, 'US', 'United States'), +('209.47.34.80', '209.47.34.159', 2147483647, 2147483647, 'CA', 'Canada'), +('209.47.34.160', '209.47.34.175', 2147483647, 2147483647, 'US', 'United States'), +('209.47.34.176', '209.47.35.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.47.36.0', '209.47.36.255', 2147483647, 2147483647, 'US', 'United States'), +('209.47.37.0', '209.47.38.143', 2147483647, 2147483647, 'CA', 'Canada'), +('209.47.38.144', '209.47.38.159', 2147483647, 2147483647, 'US', 'United States'), +('209.47.38.160', '209.47.38.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.47.39.0', '209.47.40.255', 2147483647, 2147483647, 'US', 'United States'), +('209.47.41.0', '209.47.42.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.47.43.0', '209.47.43.255', 2147483647, 2147483647, 'US', 'United States'), +('209.47.44.0', '209.47.44.127', 2147483647, 2147483647, 'CA', 'Canada'), +('209.47.44.128', '209.47.44.223', 2147483647, 2147483647, 'US', 'United States'), +('209.47.44.224', '209.47.45.31', 2147483647, 2147483647, 'CA', 'Canada'), +('209.47.45.32', '209.47.45.95', 2147483647, 2147483647, 'US', 'United States'), +('209.47.45.96', '209.47.46.127', 2147483647, 2147483647, 'CA', 'Canada'), +('209.47.46.128', '209.47.46.255', 2147483647, 2147483647, 'US', 'United States'), +('209.47.47.0', '209.47.47.191', 2147483647, 2147483647, 'CA', 'Canada'), +('209.47.47.192', '209.47.47.255', 2147483647, 2147483647, 'US', 'United States'), +('209.47.48.0', '209.47.55.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.47.56.0', '209.47.56.255', 2147483647, 2147483647, 'US', 'United States'), +('209.47.57.0', '209.47.59.31', 2147483647, 2147483647, 'CA', 'Canada'), +('209.47.59.32', '209.47.59.95', 2147483647, 2147483647, 'US', 'United States'), +('209.47.59.96', '209.47.59.127', 2147483647, 2147483647, 'CA', 'Canada'), +('209.47.59.128', '209.47.59.159', 2147483647, 2147483647, 'US', 'United States'), +('209.47.59.160', '209.47.60.127', 2147483647, 2147483647, 'CA', 'Canada'), +('209.47.60.128', '209.47.62.127', 2147483647, 2147483647, 'US', 'United States'), +('209.47.62.128', '209.47.62.159', 2147483647, 2147483647, 'CA', 'Canada'), +('209.47.62.160', '209.47.64.255', 2147483647, 2147483647, 'US', 'United States'), +('209.47.65.0', '209.47.67.47', 2147483647, 2147483647, 'CA', 'Canada'), +('209.47.67.48', '209.47.67.63', 2147483647, 2147483647, 'US', 'United States'), +('209.47.67.64', '209.47.69.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.47.70.0', '209.47.70.255', 2147483647, 2147483647, 'US', 'United States'), +('209.47.71.0', '209.47.72.127', 2147483647, 2147483647, 'CA', 'Canada'), +('209.47.72.128', '209.47.72.255', 2147483647, 2147483647, 'US', 'United States'), +('209.47.73.0', '209.47.78.31', 2147483647, 2147483647, 'CA', 'Canada'), +('209.47.78.32', '209.47.78.47', 2147483647, 2147483647, 'US', 'United States'), +('209.47.78.48', '209.47.78.95', 2147483647, 2147483647, 'CA', 'Canada'), +('209.47.78.96', '209.47.78.111', 2147483647, 2147483647, 'US', 'United States'), +('209.47.78.112', '209.47.78.143', 2147483647, 2147483647, 'CA', 'Canada'), +('209.47.78.144', '209.47.78.159', 2147483647, 2147483647, 'NO', 'Norway'), +('209.47.78.160', '209.47.79.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.47.80.0', '209.47.80.255', 2147483647, 2147483647, 'US', 'United States'), +('209.47.81.0', '209.47.81.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.47.82.0', '209.47.82.255', 2147483647, 2147483647, 'US', 'United States'), +('209.47.83.0', '209.47.83.95', 2147483647, 2147483647, 'CA', 'Canada'), +('209.47.83.96', '209.47.83.111', 2147483647, 2147483647, 'US', 'United States'), +('209.47.83.112', '209.47.83.239', 2147483647, 2147483647, 'CA', 'Canada'), +('209.47.83.240', '209.47.83.255', 2147483647, 2147483647, 'US', 'United States'), +('209.47.84.0', '209.47.84.63', 2147483647, 2147483647, 'CA', 'Canada'), +('209.47.84.64', '209.47.84.127', 2147483647, 2147483647, 'US', 'United States'), +('209.47.84.128', '209.47.84.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.47.85.0', '209.47.85.31', 2147483647, 2147483647, 'US', 'United States'), +('209.47.85.32', '209.47.85.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.47.86.0', '209.47.86.255', 2147483647, 2147483647, 'US', 'United States'), +('209.47.87.0', '209.47.91.31', 2147483647, 2147483647, 'CA', 'Canada'), +('209.47.91.32', '209.47.91.63', 2147483647, 2147483647, 'US', 'United States'), +('209.47.91.64', '209.47.92.63', 2147483647, 2147483647, 'CA', 'Canada'), +('209.47.92.64', '209.47.92.111', 2147483647, 2147483647, 'US', 'United States'), +('209.47.92.112', '209.47.92.175', 2147483647, 2147483647, 'CA', 'Canada'), +('209.47.92.176', '209.47.92.191', 2147483647, 2147483647, 'US', 'United States'), +('209.47.92.192', '209.47.93.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.47.94.0', '209.47.94.255', 2147483647, 2147483647, 'US', 'United States'), +('209.47.95.0', '209.47.101.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.47.102.0', '209.47.102.255', 2147483647, 2147483647, 'US', 'United States'), +('209.47.103.0', '209.47.104.63', 2147483647, 2147483647, 'CA', 'Canada'), +('209.47.104.64', '209.47.104.127', 2147483647, 2147483647, 'US', 'United States'), +('209.47.104.128', '209.47.104.191', 2147483647, 2147483647, 'CA', 'Canada'), +('209.47.104.192', '209.47.105.255', 2147483647, 2147483647, 'US', 'United States'), +('209.47.106.0', '209.47.108.15', 2147483647, 2147483647, 'CA', 'Canada'), +('209.47.108.16', '209.47.108.31', 2147483647, 2147483647, 'US', 'United States'), +('209.47.108.32', '209.47.108.47', 2147483647, 2147483647, 'CA', 'Canada'), +('209.47.108.48', '209.47.108.79', 2147483647, 2147483647, 'US', 'United States'), +('209.47.108.80', '209.47.108.223', 2147483647, 2147483647, 'CA', 'Canada'), +('209.47.108.224', '209.47.108.239', 2147483647, 2147483647, 'US', 'United States'), +('209.47.108.240', '209.47.122.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.47.123.0', '209.47.123.255', 2147483647, 2147483647, 'US', 'United States'), +('209.47.124.0', '209.47.135.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.47.136.0', '209.47.136.255', 2147483647, 2147483647, 'US', 'United States'), +('209.47.137.0', '209.47.138.191', 2147483647, 2147483647, 'CA', 'Canada'), +('209.47.138.192', '209.47.138.255', 2147483647, 2147483647, 'US', 'United States'), +('209.47.139.0', '209.47.139.127', 2147483647, 2147483647, 'CA', 'Canada'), +('209.47.139.128', '209.47.139.191', 2147483647, 2147483647, 'US', 'United States'), +('209.47.139.192', '209.47.143.175', 2147483647, 2147483647, 'CA', 'Canada'), +('209.47.143.176', '209.47.143.191', 2147483647, 2147483647, 'US', 'United States'), +('209.47.143.192', '209.47.152.191', 2147483647, 2147483647, 'CA', 'Canada'), +('209.47.152.192', '209.47.153.255', 2147483647, 2147483647, 'US', 'United States'), +('209.47.154.0', '209.47.156.95', 2147483647, 2147483647, 'CA', 'Canada'), +('209.47.156.96', '209.47.156.127', 2147483647, 2147483647, 'US', 'United States'), +('209.47.156.128', '209.47.156.191', 2147483647, 2147483647, 'CA', 'Canada'), +('209.47.156.192', '209.47.156.223', 2147483647, 2147483647, 'US', 'United States'), +('209.47.156.224', '209.47.156.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.47.157.0', '209.47.157.31', 2147483647, 2147483647, 'US', 'United States'), +('209.47.157.32', '209.47.157.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.47.158.0', '209.47.158.255', 2147483647, 2147483647, 'US', 'United States'), +('209.47.159.0', '209.47.159.255', 2147483647, 2147483647, 'KW', 'Kuwait'), +('209.47.160.0', '209.47.163.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.47.164.0', '209.47.165.127', 2147483647, 2147483647, 'US', 'United States'), +('209.47.165.128', '209.47.167.127', 2147483647, 2147483647, 'CA', 'Canada'), +('209.47.167.128', '209.47.167.191', 2147483647, 2147483647, 'US', 'United States'), +('209.47.167.192', '209.47.172.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.47.173.0', '209.47.173.127', 2147483647, 2147483647, 'US', 'United States'), +('209.47.173.128', '209.47.173.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.47.174.0', '209.47.175.31', 2147483647, 2147483647, 'US', 'United States'), +('209.47.175.32', '209.47.182.159', 2147483647, 2147483647, 'CA', 'Canada'), +('209.47.182.160', '209.47.182.191', 2147483647, 2147483647, 'US', 'United States'), +('209.47.182.192', '209.47.189.79', 2147483647, 2147483647, 'CA', 'Canada'), +('209.47.189.80', '209.47.189.95', 2147483647, 2147483647, 'US', 'United States'), +('209.47.189.96', '209.47.189.127', 2147483647, 2147483647, 'CA', 'Canada'), +('209.47.189.128', '209.47.189.143', 2147483647, 2147483647, 'US', 'United States'), +('209.47.189.144', '209.47.189.207', 2147483647, 2147483647, 'CA', 'Canada'), +('209.47.189.208', '209.47.189.223', 2147483647, 2147483647, 'US', 'United States'), +('209.47.189.224', '209.47.190.175', 2147483647, 2147483647, 'CA', 'Canada'), +('209.47.190.176', '209.47.190.191', 2147483647, 2147483647, 'US', 'United States'), +('209.47.190.192', '209.47.190.223', 2147483647, 2147483647, 'CA', 'Canada'), +('209.47.190.224', '209.47.190.239', 2147483647, 2147483647, 'US', 'United States'), +('209.47.190.240', '209.47.197.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.47.198.0', '209.47.199.255', 2147483647, 2147483647, 'US', 'United States'), +('209.47.200.0', '209.47.200.127', 2147483647, 2147483647, 'CA', 'Canada'), +('209.47.200.128', '209.47.200.255', 2147483647, 2147483647, 'US', 'United States'), +('209.47.201.0', '209.47.201.127', 2147483647, 2147483647, 'CA', 'Canada'), +('209.47.201.128', '209.47.201.255', 2147483647, 2147483647, 'US', 'United States'), +('209.47.202.0', '209.47.203.127', 2147483647, 2147483647, 'CA', 'Canada'), +('209.47.203.128', '209.47.204.127', 2147483647, 2147483647, 'US', 'United States'), +('209.47.204.128', '209.47.206.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.47.207.0', '209.47.208.63', 2147483647, 2147483647, 'US', 'United States'), +('209.47.208.64', '209.47.208.79', 2147483647, 2147483647, 'CA', 'Canada'), +('209.47.208.80', '209.47.208.255', 2147483647, 2147483647, 'US', 'United States'), +('209.47.209.0', '209.47.209.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.47.210.0', '209.47.210.127', 2147483647, 2147483647, 'US', 'United States'), +('209.47.210.128', '209.47.215.111', 2147483647, 2147483647, 'CA', 'Canada'), +('209.47.215.112', '209.47.215.127', 2147483647, 2147483647, 'US', 'United States'), +('209.47.215.128', '209.47.216.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.47.217.0', '209.47.217.31', 2147483647, 2147483647, 'US', 'United States'), +('209.47.217.32', '209.47.217.63', 2147483647, 2147483647, 'CA', 'Canada'), +('209.47.217.64', '209.47.217.95', 2147483647, 2147483647, 'US', 'United States'), +('209.47.217.96', '209.47.224.15', 2147483647, 2147483647, 'CA', 'Canada'), +('209.47.224.16', '209.47.224.255', 2147483647, 2147483647, 'US', 'United States'), +('209.47.225.0', '209.47.226.63', 2147483647, 2147483647, 'CA', 'Canada'), +('209.47.226.64', '209.47.226.79', 2147483647, 2147483647, 'US', 'United States'), +('209.47.226.80', '209.47.227.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.47.228.0', '209.47.228.255', 2147483647, 2147483647, 'US', 'United States'), +('209.47.229.0', '209.47.230.191', 2147483647, 2147483647, 'CA', 'Canada'), +('209.47.230.192', '209.47.230.255', 2147483647, 2147483647, 'US', 'United States'), +('209.47.231.0', '209.47.231.63', 2147483647, 2147483647, 'CA', 'Canada'), +('209.47.231.64', '209.47.231.79', 2147483647, 2147483647, 'US', 'United States'), +('209.47.231.80', '209.47.231.159', 2147483647, 2147483647, 'CA', 'Canada'), +('209.47.231.160', '209.47.231.175', 2147483647, 2147483647, 'US', 'United States'), +('209.47.231.176', '209.47.231.223', 2147483647, 2147483647, 'CA', 'Canada'), +('209.47.231.224', '209.47.231.239', 2147483647, 2147483647, 'US', 'United States'), +('209.47.231.240', '209.47.231.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.47.232.0', '209.47.232.255', 2147483647, 2147483647, 'US', 'United States'), +('209.47.233.0', '209.47.234.127', 2147483647, 2147483647, 'CA', 'Canada'), +('209.47.234.128', '209.47.234.255', 2147483647, 2147483647, 'US', 'United States'), +('209.47.235.0', '209.47.237.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.47.238.0', '209.47.238.63', 2147483647, 2147483647, 'US', 'United States'), +('209.47.238.64', '209.47.238.191', 2147483647, 2147483647, 'CA', 'Canada'), +('209.47.238.192', '209.47.238.255', 2147483647, 2147483647, 'US', 'United States'), +('209.47.239.0', '209.47.239.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.47.240.0', '209.47.240.255', 2147483647, 2147483647, 'US', 'United States'), +('209.47.241.0', '209.47.241.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.47.242.0', '209.47.243.127', 2147483647, 2147483647, 'US', 'United States'), +('209.47.243.128', '209.47.245.31', 2147483647, 2147483647, 'CA', 'Canada'), +('209.47.245.32', '209.47.245.63', 2147483647, 2147483647, 'US', 'United States'), +('209.47.245.64', '209.47.245.143', 2147483647, 2147483647, 'CA', 'Canada'), +('209.47.245.144', '209.47.245.159', 2147483647, 2147483647, 'US', 'United States'), +('209.47.245.160', '209.47.245.175', 2147483647, 2147483647, 'CA', 'Canada'), +('209.47.245.176', '209.47.245.191', 2147483647, 2147483647, 'US', 'United States'), +('209.47.245.192', '209.47.245.207', 2147483647, 2147483647, 'CA', 'Canada'), +('209.47.245.208', '209.47.245.223', 2147483647, 2147483647, 'US', 'United States'), +('209.47.245.224', '209.47.245.239', 2147483647, 2147483647, 'CA', 'Canada'), +('209.47.245.240', '209.47.245.255', 2147483647, 2147483647, 'US', 'United States'), +('209.47.246.0', '209.47.246.63', 2147483647, 2147483647, 'CA', 'Canada'), +('209.47.246.64', '209.47.246.95', 2147483647, 2147483647, 'US', 'United States'), +('209.47.246.96', '209.47.246.191', 2147483647, 2147483647, 'CA', 'Canada'), +('209.47.246.192', '209.47.246.255', 2147483647, 2147483647, 'US', 'United States'), +('209.47.247.0', '209.47.251.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.47.252.0', '209.47.254.255', 2147483647, 2147483647, 'US', 'United States'), +('209.47.255.0', '209.47.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.48.0.0', '209.50.63.255', 2147483647, 2147483647, 'US', 'United States'), +('209.50.64.0', '209.50.95.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.50.96.0', '209.50.230.167', 2147483647, 2147483647, 'US', 'United States'), +('209.50.230.168', '209.50.230.179', 2147483647, 2147483647, 'GR', 'Greece'), +('209.50.230.180', '209.50.230.189', 2147483647, 2147483647, 'US', 'United States'), +('209.50.230.190', '209.50.230.209', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.50.230.210', '209.50.231.40', 2147483647, 2147483647, 'US', 'United States'), +('209.50.231.41', '209.50.231.55', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.50.231.56', '209.50.231.58', 2147483647, 2147483647, 'US', 'United States'), +('209.50.231.59', '209.50.231.83', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.50.231.84', '209.50.231.183', 2147483647, 2147483647, 'US', 'United States'), +('209.50.231.184', '209.50.231.215', 2147483647, 2147483647, 'HR', 'Croatia'), +('209.50.231.216', '209.50.232.239', 2147483647, 2147483647, 'US', 'United States'), +('209.50.232.240', '209.50.232.255', 2147483647, 2147483647, 'GR', 'Greece'), +('209.50.233.0', '209.50.235.0', 2147483647, 2147483647, 'US', 'United States'), +('209.50.235.1', '209.50.235.16', 2147483647, 2147483647, 'CA', 'Canada'), +('209.50.235.17', '209.50.235.192', 2147483647, 2147483647, 'US', 'United States'), +('209.50.235.193', '209.50.235.208', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.50.235.209', '209.50.235.224', 2147483647, 2147483647, 'CA', 'Canada'), +('209.50.235.225', '209.50.236.84', 2147483647, 2147483647, 'US', 'United States'), +('209.50.236.85', '209.50.236.94', 2147483647, 2147483647, 'TH', 'Thailand'), +('209.50.236.95', '209.50.236.117', 2147483647, 2147483647, 'US', 'United States'), +('209.50.236.118', '209.50.236.132', 2147483647, 2147483647, 'CA', 'Canada'), +('209.50.236.133', '209.50.236.144', 2147483647, 2147483647, 'US', 'United States'), +('209.50.236.145', '209.50.236.160', 2147483647, 2147483647, 'NL', 'Netherlands'), +('209.50.236.161', '209.50.236.176', 2147483647, 2147483647, 'US', 'United States'), +('209.50.236.177', '209.50.236.192', 2147483647, 2147483647, 'DK', 'Denmark'), +('209.50.236.193', '209.50.236.224', 2147483647, 2147483647, 'US', 'United States'), +('209.50.236.225', '209.50.236.254', 2147483647, 2147483647, 'DE', 'Germany'), +('209.50.236.255', '209.50.237.0', 2147483647, 2147483647, 'US', 'United States'), +('209.50.237.1', '209.50.237.32', 2147483647, 2147483647, 'DE', 'Germany'), +('209.50.237.33', '209.50.237.48', 2147483647, 2147483647, 'CA', 'Canada'), +('209.50.237.49', '209.50.237.176', 2147483647, 2147483647, 'US', 'United States'), +('209.50.237.177', '209.50.237.254', 2147483647, 2147483647, 'CA', 'Canada'), +('209.50.237.255', '209.50.237.255', 2147483647, 2147483647, 'US', 'United States'), +('209.50.238.0', '209.50.238.7', 2147483647, 2147483647, 'PK', 'Pakistan'), +('209.50.238.8', '209.50.238.103', 2147483647, 2147483647, 'US', 'United States'), +('209.50.238.104', '209.50.238.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.50.238.112', '209.50.238.151', 2147483647, 2147483647, 'US', 'United States'), +('209.50.238.152', '209.50.238.159', 2147483647, 2147483647, 'CA', 'Canada'), +('209.50.238.160', '209.50.238.175', 2147483647, 2147483647, 'US', 'United States'), +('209.50.238.176', '209.50.238.183', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('209.50.238.184', '209.50.238.239', 2147483647, 2147483647, 'US', 'United States'), +('209.50.238.240', '209.50.238.255', 2147483647, 2147483647, 'IT', 'Italy'), +('209.50.239.0', '209.50.239.31', 2147483647, 2147483647, 'CA', 'Canada'), +('209.50.239.32', '209.50.239.96', 2147483647, 2147483647, 'US', 'United States'), +('209.50.239.97', '209.50.239.128', 2147483647, 2147483647, 'CA', 'Canada'), +('209.50.239.129', '209.50.239.160', 2147483647, 2147483647, 'TC', 'Turks and Caicos Islands'), +('209.50.239.161', '209.50.239.224', 2147483647, 2147483647, 'US', 'United States'), +('209.50.239.225', '209.50.239.254', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.50.239.255', '209.50.243.7', 2147483647, 2147483647, 'US', 'United States'), +('209.50.243.8', '209.50.243.15', 2147483647, 2147483647, 'CN', 'China'), +('209.50.243.16', '209.50.243.23', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('209.50.243.24', '209.50.243.47', 2147483647, 2147483647, 'US', 'United States'), +('209.50.243.48', '209.50.243.55', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.50.243.56', '209.50.243.63', 2147483647, 2147483647, 'CA', 'Canada'), +('209.50.243.64', '209.50.243.71', 2147483647, 2147483647, 'US', 'United States'), +('209.50.243.72', '209.50.243.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.50.243.80', '209.50.243.119', 2147483647, 2147483647, 'US', 'United States'), +('209.50.243.120', '209.50.243.127', 2147483647, 2147483647, 'IT', 'Italy'), +('209.50.243.128', '209.50.243.175', 2147483647, 2147483647, 'US', 'United States'), +('209.50.243.176', '209.50.243.183', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.50.243.184', '209.50.244.41', 2147483647, 2147483647, 'US', 'United States'), +('209.50.244.42', '209.50.244.137', 2147483647, 2147483647, 'ID', 'Indonesia'), +('209.50.244.138', '209.50.244.176', 2147483647, 2147483647, 'US', 'United States'), +('209.50.244.177', '209.50.244.240', 2147483647, 2147483647, 'ID', 'Indonesia'), +('209.50.244.241', '209.51.161.215', 2147483647, 2147483647, 'US', 'United States'), +('209.51.161.216', '209.51.161.223', 2147483647, 2147483647, 'BM', 'Bermuda'), +('209.51.161.224', '209.51.163.127', 2147483647, 2147483647, 'US', 'United States'), +('209.51.163.128', '209.51.163.143', 2147483647, 2147483647, 'DE', 'Germany'), +('209.51.163.144', '209.51.180.31', 2147483647, 2147483647, 'US', 'United States'), +('209.51.180.32', '209.51.180.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.51.180.48', '209.51.191.127', 2147483647, 2147483647, 'US', 'United States'), +('209.51.191.128', '209.51.191.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.51.191.160', '209.51.194.183', 2147483647, 2147483647, 'US', 'United States'), +('209.51.194.184', '209.51.194.191', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('209.51.194.192', '209.51.196.159', 2147483647, 2147483647, 'US', 'United States'), +('209.51.196.160', '209.51.196.167', 2147483647, 2147483647, 'IN', 'India'), +('209.51.196.168', '209.51.197.127', 2147483647, 2147483647, 'US', 'United States'), +('209.51.197.128', '209.51.197.135', 2147483647, 2147483647, 'DE', 'Germany'), +('209.51.197.136', '209.51.197.143', 2147483647, 2147483647, 'US', 'United States'), +('209.51.197.144', '209.51.197.151', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('209.51.197.152', '209.51.198.63', 2147483647, 2147483647, 'US', 'United States'), +('209.51.198.64', '209.51.198.71', 2147483647, 2147483647, 'IR', 'Iran, Islamic Republic of'), +('209.51.198.72', '209.51.198.111', 2147483647, 2147483647, 'US', 'United States'), +('209.51.198.112', '209.51.198.119', 2147483647, 2147483647, 'IN', 'India'), +('209.51.198.120', '209.51.198.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.51.198.128', '209.51.198.135', 2147483647, 2147483647, 'US', 'United States'), +('209.51.198.136', '209.51.198.143', 2147483647, 2147483647, 'CO', 'Colombia'), +('209.51.198.144', '209.51.198.151', 2147483647, 2147483647, 'CN', 'China'), +('209.51.198.152', '209.51.200.119', 2147483647, 2147483647, 'US', 'United States'), +('209.51.200.120', '209.51.200.127', 2147483647, 2147483647, 'DO', 'Dominican Republic'), +('209.51.200.128', '209.51.201.23', 2147483647, 2147483647, 'US', 'United States'), +('209.51.201.24', '209.51.201.31', 2147483647, 2147483647, 'CA', 'Canada'), +('209.51.201.32', '209.51.201.143', 2147483647, 2147483647, 'US', 'United States'), +('209.51.201.144', '209.51.201.151', 2147483647, 2147483647, 'CN', 'China'), +('209.51.201.152', '209.51.201.223', 2147483647, 2147483647, 'US', 'United States'), +('209.51.201.224', '209.51.201.231', 2147483647, 2147483647, 'MY', 'Malaysia'), +('209.51.201.232', '209.51.202.79', 2147483647, 2147483647, 'US', 'United States'), +('209.51.202.80', '209.51.202.87', 2147483647, 2147483647, 'QA', 'Qatar'), +('209.51.202.88', '209.51.207.151', 2147483647, 2147483647, 'US', 'United States'), +('209.51.207.152', '209.51.207.159', 2147483647, 2147483647, 'GR', 'Greece'), +('209.51.207.160', '209.51.207.207', 2147483647, 2147483647, 'US', 'United States'), +('209.51.207.208', '209.51.207.215', 2147483647, 2147483647, 'FI', 'Finland'), +('209.51.207.216', '209.51.207.247', 2147483647, 2147483647, 'US', 'United States'), +('209.51.207.248', '209.51.207.255', 2147483647, 2147483647, 'IR', 'Iran, Islamic Republic of'), +('209.51.208.0', '209.51.208.15', 2147483647, 2147483647, 'US', 'United States'), +('209.51.208.16', '209.51.208.23', 2147483647, 2147483647, 'CR', 'Costa Rica'), +('209.51.208.24', '209.51.208.239', 2147483647, 2147483647, 'US', 'United States'), +('209.51.208.240', '209.51.208.247', 2147483647, 2147483647, 'SG', 'Singapore'), +('209.51.208.248', '209.51.209.79', 2147483647, 2147483647, 'US', 'United States'), +('209.51.209.80', '209.51.209.87', 2147483647, 2147483647, 'ES', 'Spain'), +('209.51.209.88', '209.51.209.95', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('209.51.209.96', '209.51.209.103', 2147483647, 2147483647, 'IT', 'Italy'), +('209.51.209.104', '209.51.209.111', 2147483647, 2147483647, 'US', 'United States'), +('209.51.209.112', '209.51.209.119', 2147483647, 2147483647, 'IL', 'Israel'), +('209.51.209.120', '209.51.209.127', 2147483647, 2147483647, 'US', 'United States'), +('209.51.209.128', '209.51.209.159', 2147483647, 2147483647, 'IL', 'Israel'), +('209.51.209.160', '209.51.209.183', 2147483647, 2147483647, 'US', 'United States'), +('209.51.209.184', '209.51.209.191', 2147483647, 2147483647, 'BR', 'Brazil'), +('209.51.209.192', '209.51.209.207', 2147483647, 2147483647, 'US', 'United States'), +('209.51.209.208', '209.51.209.223', 2147483647, 2147483647, 'DE', 'Germany'), +('209.51.209.224', '209.51.210.47', 2147483647, 2147483647, 'US', 'United States'), +('209.51.210.48', '209.51.210.63', 2147483647, 2147483647, 'IN', 'India'), +('209.51.210.64', '209.51.210.79', 2147483647, 2147483647, 'IL', 'Israel'), +('209.51.210.80', '209.51.210.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.51.210.96', '209.51.210.159', 2147483647, 2147483647, 'US', 'United States'), +('209.51.210.160', '209.51.210.167', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('209.51.210.168', '209.51.210.175', 2147483647, 2147483647, 'US', 'United States'), +('209.51.210.176', '209.51.210.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.51.210.192', '209.51.210.223', 2147483647, 2147483647, 'JP', 'Japan'), +('209.51.210.224', '209.51.210.255', 2147483647, 2147483647, 'US', 'United States'), +('209.51.211.0', '209.51.211.7', 2147483647, 2147483647, 'NO', 'Norway'), +('209.51.211.8', '209.51.213.87', 2147483647, 2147483647, 'US', 'United States'), +('209.51.213.88', '209.51.213.95', 2147483647, 2147483647, 'QA', 'Qatar'), +('209.51.213.96', '209.51.213.103', 2147483647, 2147483647, 'US', 'United States'), +('209.51.213.104', '209.51.213.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.51.213.112', '209.51.213.191', 2147483647, 2147483647, 'US', 'United States'), +('209.51.213.192', '209.51.213.223', 2147483647, 2147483647, 'IR', 'Iran, Islamic Republic of'), +('209.51.213.224', '209.51.218.79', 2147483647, 2147483647, 'US', 'United States'), +('209.51.218.80', '209.51.218.87', 2147483647, 2147483647, 'TR', 'Turkey'), +('209.51.218.88', '209.51.218.95', 2147483647, 2147483647, 'GR', 'Greece'), +('209.51.218.96', '209.51.218.199', 2147483647, 2147483647, 'US', 'United States'), +('209.51.218.200', '209.51.218.207', 2147483647, 2147483647, 'CA', 'Canada'), +('209.51.218.208', '209.51.220.55', 2147483647, 2147483647, 'US', 'United States'), +('209.51.220.56', '209.51.220.63', 2147483647, 2147483647, 'MD', 'Moldova, Republic of'), +('209.51.220.64', '209.51.220.71', 2147483647, 2147483647, 'US', 'United States'), +('209.51.220.72', '209.51.220.79', 2147483647, 2147483647, 'PH', 'Philippines'), +('209.51.220.80', '209.51.220.103', 2147483647, 2147483647, 'US', 'United States'), +('209.51.220.104', '209.51.220.111', 2147483647, 2147483647, 'PK', 'Pakistan'), +('209.51.220.112', '209.51.221.31', 2147483647, 2147483647, 'US', 'United States'), +('209.51.221.32', '209.51.221.39', 2147483647, 2147483647, 'BR', 'Brazil'), +('209.51.221.40', '209.51.221.47', 2147483647, 2147483647, 'CN', 'China'), +('209.51.221.48', '209.51.221.119', 2147483647, 2147483647, 'US', 'United States'), +('209.51.221.120', '209.51.221.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.51.221.128', '209.51.221.215', 2147483647, 2147483647, 'US', 'United States'), +('209.51.221.216', '209.51.221.223', 2147483647, 2147483647, 'CA', 'Canada'), +('209.51.221.224', '209.51.223.159', 2147483647, 2147483647, 'US', 'United States'), +('209.51.223.160', '209.51.223.167', 2147483647, 2147483647, 'PK', 'Pakistan'), +('209.51.223.168', '209.51.255.255', 2147483647, 2147483647, 'US', 'United States'), +('209.52.0.0', '209.53.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.55.0.0', '209.57.255.255', 2147483647, 2147483647, 'US', 'United States'), +('209.58.0.0', '209.58.5.191', 2147483647, 2147483647, 'CA', 'Canada'), +('209.58.5.192', '209.58.5.223', 2147483647, 2147483647, 'AM', 'Armenia'), +('209.58.5.224', '209.58.5.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.58.6.0', '209.58.6.255', 2147483647, 2147483647, 'US', 'United States'), +('209.58.7.0', '209.58.7.39', 2147483647, 2147483647, 'CA', 'Canada'), +('209.58.7.40', '209.58.7.47', 2147483647, 2147483647, 'US', 'United States'), +('209.58.7.48', '209.58.11.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.58.12.0', '209.58.12.255', 2147483647, 2147483647, 'OM', 'Oman'), +('209.58.13.0', '209.58.23.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.58.24.0', '209.58.24.255', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('209.58.25.0', '209.58.29.79', 2147483647, 2147483647, 'CA', 'Canada'), +('209.58.29.80', '209.58.29.111', 2147483647, 2147483647, 'US', 'United States'), +('209.58.29.112', '209.58.39.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.58.40.0', '209.58.41.255', 2147483647, 2147483647, 'QA', 'Qatar'), +('209.58.42.0', '209.58.47.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.58.48.0', '209.58.52.255', 2147483647, 2147483647, 'DO', 'Dominican Republic'), +('209.58.53.0', '209.58.54.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.58.55.0', '209.58.55.255', 2147483647, 2147483647, 'NC', 'New Caledonia'), +('209.58.56.0', '209.58.56.63', 2147483647, 2147483647, 'US', 'United States'), +('209.58.56.64', '209.58.86.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.58.87.0', '209.58.87.255', 2147483647, 2147483647, 'ZM', 'Zambia'), +('209.58.88.0', '209.58.91.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.58.92.0', '209.58.92.255', 2147483647, 2147483647, 'US', 'United States'), +('209.58.93.0', '209.58.96.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.58.97.0', '209.58.97.255', 2147483647, 2147483647, 'UG', 'Uganda'), +('209.58.98.0', '209.58.114.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.58.115.0', '209.58.115.255', 2147483647, 2147483647, 'SY', 'Syrian Arab Republic'), +('209.58.116.0', '209.58.119.127', 2147483647, 2147483647, 'CA', 'Canada'), +('209.58.119.128', '209.58.119.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('209.58.120.0', '209.58.122.255', 2147483647, 2147483647, 'LY', 'Libyan Arab Jamahiriya'), +('209.58.123.0', '209.58.123.255', 2147483647, 2147483647, 'SY', 'Syrian Arab Republic'), +('209.58.124.0', '209.58.127.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.58.128.0', '209.58.176.135', 2147483647, 2147483647, 'US', 'United States'), +('209.58.176.136', '209.58.176.143', 2147483647, 2147483647, 'CA', 'Canada'), +('209.58.176.144', '209.59.31.255', 2147483647, 2147483647, 'US', 'United States'), +('209.59.32.0', '209.59.63.255', 2147483647, 2147483647, 'A1', 'Anonymous Proxy'), +('209.59.64.0', '209.59.65.255', 2147483647, 2147483647, 'VG', 'Virgin Islands, British'), +('209.59.66.0', '209.59.66.255', 2147483647, 2147483647, 'AG', 'Antigua and Barbuda'), +('209.59.67.0', '209.59.67.255', 2147483647, 2147483647, 'KN', 'Saint Kitts and Nevis'), +('209.59.68.0', '209.59.71.255', 2147483647, 2147483647, 'AG', 'Antigua and Barbuda'), +('209.59.72.0', '209.59.75.255', 2147483647, 2147483647, 'KN', 'Saint Kitts and Nevis'), +('209.59.76.0', '209.59.79.255', 2147483647, 2147483647, 'AI', 'Anguilla'), +('209.59.80.0', '209.59.83.255', 2147483647, 2147483647, 'AG', 'Antigua and Barbuda'), +('209.59.84.0', '209.59.87.255', 2147483647, 2147483647, 'VG', 'Virgin Islands, British'), +('209.59.88.0', '209.59.91.255', 2147483647, 2147483647, 'AG', 'Antigua and Barbuda'), +('209.59.92.0', '209.59.92.255', 2147483647, 2147483647, 'KN', 'Saint Kitts and Nevis'), +('209.59.93.0', '209.59.93.255', 2147483647, 2147483647, 'MS', 'Montserrat'), +('209.59.94.0', '209.59.96.255', 2147483647, 2147483647, 'AG', 'Antigua and Barbuda'), +('209.59.97.0', '209.59.97.255', 2147483647, 2147483647, 'MS', 'Montserrat'), +('209.59.98.0', '209.59.103.255', 2147483647, 2147483647, 'AG', 'Antigua and Barbuda'), +('209.59.104.0', '209.59.107.255', 2147483647, 2147483647, 'DM', 'Dominica'), +('209.59.108.0', '209.59.109.255', 2147483647, 2147483647, 'KN', 'Saint Kitts and Nevis'), +('209.59.110.0', '209.59.110.255', 2147483647, 2147483647, 'LC', 'Saint Lucia'), +('209.59.111.0', '209.59.111.255', 2147483647, 2147483647, 'MS', 'Montserrat'), +('209.59.112.0', '209.59.113.255', 2147483647, 2147483647, 'KN', 'Saint Kitts and Nevis'), +('209.59.114.0', '209.59.117.255', 2147483647, 2147483647, 'AG', 'Antigua and Barbuda'), +('209.59.118.0', '209.59.118.255', 2147483647, 2147483647, 'KN', 'Saint Kitts and Nevis'), +('209.59.119.0', '209.59.120.255', 2147483647, 2147483647, 'AI', 'Anguilla'), +('209.59.121.0', '209.59.121.255', 2147483647, 2147483647, 'VG', 'Virgin Islands, British'), +('209.59.122.0', '209.59.126.255', 2147483647, 2147483647, 'AG', 'Antigua and Barbuda'), +('209.59.127.0', '209.59.127.255', 2147483647, 2147483647, 'LC', 'Saint Lucia'), +('209.59.128.0', '209.59.131.132', 2147483647, 2147483647, 'US', 'United States'), +('209.59.131.133', '209.59.131.148', 2147483647, 2147483647, 'ES', 'Spain'), +('209.59.131.149', '209.61.137.15', 2147483647, 2147483647, 'US', 'United States'), +('209.61.137.16', '209.61.137.23', 2147483647, 2147483647, 'IL', 'Israel'), +('209.61.137.24', '209.61.171.175', 2147483647, 2147483647, 'US', 'United States'), +('209.61.171.176', '209.61.171.183', 2147483647, 2147483647, 'IE', 'Ireland'), +('209.61.171.184', '209.67.9.167', 2147483647, 2147483647, 'US', 'United States'), +('209.67.9.168', '209.67.9.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.67.9.176', '209.67.17.15', 2147483647, 2147483647, 'US', 'United States'), +('209.67.17.16', '209.67.17.31', 2147483647, 2147483647, 'CA', 'Canada'), +('209.67.17.32', '209.67.29.191', 2147483647, 2147483647, 'US', 'United States'), +('209.67.29.192', '209.67.29.207', 2147483647, 2147483647, 'CA', 'Canada'), +('209.67.29.208', '209.67.39.95', 2147483647, 2147483647, 'US', 'United States'), +('209.67.39.96', '209.67.39.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.67.39.112', '209.67.39.175', 2147483647, 2147483647, 'US', 'United States'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('209.67.39.176', '209.67.39.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.67.39.192', '209.67.40.15', 2147483647, 2147483647, 'US', 'United States'), +('209.67.40.16', '209.67.40.31', 2147483647, 2147483647, 'IN', 'India'), +('209.67.40.32', '209.67.54.207', 2147483647, 2147483647, 'US', 'United States'), +('209.67.54.208', '209.67.54.215', 2147483647, 2147483647, 'CA', 'Canada'), +('209.67.54.216', '209.67.54.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.67.54.224', '209.67.59.255', 2147483647, 2147483647, 'US', 'United States'), +('209.67.60.0', '209.67.61.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.67.62.0', '209.67.68.63', 2147483647, 2147483647, 'US', 'United States'), +('209.67.68.64', '209.67.68.95', 2147483647, 2147483647, 'CA', 'Canada'), +('209.67.68.96', '209.68.11.34', 2147483647, 2147483647, 'US', 'United States'), +('209.68.11.35', '209.68.11.35', 2147483647, 2147483647, 'IE', 'Ireland'), +('209.68.11.36', '209.68.159.255', 2147483647, 2147483647, 'US', 'United States'), +('209.68.160.0', '209.68.191.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.68.192.0', '209.71.191.255', 2147483647, 2147483647, 'US', 'United States'), +('209.71.192.0', '209.71.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.72.0.0', '209.74.169.127', 2147483647, 2147483647, 'US', 'United States'), +('209.74.169.128', '209.74.169.159', 2147483647, 2147483647, 'CA', 'Canada'), +('209.74.169.160', '209.74.185.63', 2147483647, 2147483647, 'US', 'United States'), +('209.74.185.64', '209.74.185.95', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('209.74.185.96', '209.74.185.127', 2147483647, 2147483647, 'US', 'United States'), +('209.74.185.128', '209.74.185.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('209.74.186.0', '209.76.4.47', 2147483647, 2147483647, 'US', 'United States'), +('209.76.4.48', '209.76.4.55', 2147483647, 2147483647, 'UA', 'Ukraine'), +('209.76.4.56', '209.78.238.255', 2147483647, 2147483647, 'US', 'United States'), +('209.78.239.0', '209.78.239.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.78.240.0', '209.81.255.255', 2147483647, 2147483647, 'US', 'United States'), +('209.82.0.0', '209.82.127.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.82.128.0', '209.85.10.47', 2147483647, 2147483647, 'US', 'United States'), +('209.85.10.48', '209.85.10.63', 2147483647, 2147483647, 'UM', 'United States Minor Outlying Islands'), +('209.85.10.64', '209.85.10.95', 2147483647, 2147483647, 'US', 'United States'), +('209.85.10.96', '209.85.10.111', 2147483647, 2147483647, 'TR', 'Turkey'), +('209.85.10.112', '209.85.12.31', 2147483647, 2147483647, 'US', 'United States'), +('209.85.12.32', '209.85.12.47', 2147483647, 2147483647, 'TW', 'Taiwan'), +('209.85.12.48', '209.85.12.79', 2147483647, 2147483647, 'US', 'United States'), +('209.85.12.80', '209.85.12.95', 2147483647, 2147483647, 'SE', 'Sweden'), +('209.85.12.96', '209.85.12.127', 2147483647, 2147483647, 'IN', 'India'), +('209.85.12.128', '209.85.13.63', 2147483647, 2147483647, 'US', 'United States'), +('209.85.13.64', '209.85.13.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.85.13.128', '209.85.13.143', 2147483647, 2147483647, 'MX', 'Mexico'), +('209.85.13.144', '209.85.13.159', 2147483647, 2147483647, 'US', 'United States'), +('209.85.13.160', '209.85.13.191', 2147483647, 2147483647, 'BR', 'Brazil'), +('209.85.13.192', '209.85.13.223', 2147483647, 2147483647, 'US', 'United States'), +('209.85.13.224', '209.85.13.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.85.14.0', '209.85.19.15', 2147483647, 2147483647, 'US', 'United States'), +('209.85.19.16', '209.85.19.31', 2147483647, 2147483647, 'CA', 'Canada'), +('209.85.19.32', '209.85.19.79', 2147483647, 2147483647, 'US', 'United States'), +('209.85.19.80', '209.85.19.95', 2147483647, 2147483647, 'CA', 'Canada'), +('209.85.19.96', '209.85.19.111', 2147483647, 2147483647, 'US', 'United States'), +('209.85.19.112', '209.85.19.127', 2147483647, 2147483647, 'GR', 'Greece'), +('209.85.19.128', '209.85.19.223', 2147483647, 2147483647, 'US', 'United States'), +('209.85.19.224', '209.85.19.255', 2147483647, 2147483647, 'IN', 'India'), +('209.85.20.0', '209.85.30.159', 2147483647, 2147483647, 'US', 'United States'), +('209.85.30.160', '209.85.30.175', 2147483647, 2147483647, 'IT', 'Italy'), +('209.85.30.176', '209.85.30.191', 2147483647, 2147483647, 'US', 'United States'), +('209.85.30.192', '209.85.30.207', 2147483647, 2147483647, 'TW', 'Taiwan'), +('209.85.30.208', '209.85.30.223', 2147483647, 2147483647, 'US', 'United States'), +('209.85.30.224', '209.85.30.239', 2147483647, 2147483647, 'CA', 'Canada'), +('209.85.30.240', '209.85.31.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.85.31.128', '209.85.31.191', 2147483647, 2147483647, 'US', 'United States'), +('209.85.31.192', '209.85.31.255', 2147483647, 2147483647, 'JO', 'Jordan'), +('209.85.32.0', '209.85.33.31', 2147483647, 2147483647, 'US', 'United States'), +('209.85.33.32', '209.85.33.47', 2147483647, 2147483647, 'AR', 'Argentina'), +('209.85.33.48', '209.85.33.79', 2147483647, 2147483647, 'US', 'United States'), +('209.85.33.80', '209.85.33.95', 2147483647, 2147483647, 'ES', 'Spain'), +('209.85.33.96', '209.85.33.111', 2147483647, 2147483647, 'MX', 'Mexico'), +('209.85.33.112', '209.85.33.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.85.33.128', '209.85.33.207', 2147483647, 2147483647, 'US', 'United States'), +('209.85.33.208', '209.85.33.223', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('209.85.33.224', '209.85.33.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.85.34.0', '209.85.34.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('209.85.35.0', '209.85.35.31', 2147483647, 2147483647, 'CA', 'Canada'), +('209.85.35.32', '209.85.35.63', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('209.85.35.64', '209.85.35.79', 2147483647, 2147483647, 'US', 'United States'), +('209.85.35.80', '209.85.35.95', 2147483647, 2147483647, 'IT', 'Italy'), +('209.85.35.96', '209.85.35.127', 2147483647, 2147483647, 'US', 'United States'), +('209.85.35.128', '209.85.35.143', 2147483647, 2147483647, 'LT', 'Lithuania'), +('209.85.35.144', '209.85.35.159', 2147483647, 2147483647, 'US', 'United States'), +('209.85.35.160', '209.85.35.191', 2147483647, 2147483647, 'JO', 'Jordan'), +('209.85.35.192', '209.85.40.127', 2147483647, 2147483647, 'US', 'United States'), +('209.85.40.128', '209.85.40.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.85.40.192', '209.85.40.207', 2147483647, 2147483647, 'MX', 'Mexico'), +('209.85.40.208', '209.85.40.255', 2147483647, 2147483647, 'US', 'United States'), +('209.85.41.0', '209.85.41.63', 2147483647, 2147483647, 'ES', 'Spain'), +('209.85.41.64', '209.85.41.95', 2147483647, 2147483647, 'US', 'United States'), +('209.85.41.96', '209.85.41.111', 2147483647, 2147483647, 'CA', 'Canada'), +('209.85.41.112', '209.85.41.127', 2147483647, 2147483647, 'US', 'United States'), +('209.85.41.128', '209.85.41.159', 2147483647, 2147483647, 'CA', 'Canada'), +('209.85.41.160', '209.85.44.127', 2147483647, 2147483647, 'US', 'United States'), +('209.85.44.128', '209.85.44.255', 2147483647, 2147483647, 'ES', 'Spain'), +('209.85.45.0', '209.85.45.255', 2147483647, 2147483647, 'US', 'United States'), +('209.85.46.0', '209.85.46.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.85.46.32', '209.85.46.63', 2147483647, 2147483647, 'US', 'United States'), +('209.85.46.64', '209.85.46.127', 2147483647, 2147483647, 'CA', 'Canada'), +('209.85.46.128', '209.85.49.255', 2147483647, 2147483647, 'US', 'United States'), +('209.85.50.0', '209.85.50.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.85.51.0', '209.85.53.63', 2147483647, 2147483647, 'US', 'United States'), +('209.85.53.64', '209.85.53.127', 2147483647, 2147483647, 'ES', 'Spain'), +('209.85.53.128', '209.85.53.159', 2147483647, 2147483647, 'US', 'United States'), +('209.85.53.160', '209.85.53.175', 2147483647, 2147483647, 'IN', 'India'), +('209.85.53.176', '209.85.53.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.85.53.192', '209.85.58.255', 2147483647, 2147483647, 'US', 'United States'), +('209.85.59.0', '209.85.59.31', 2147483647, 2147483647, 'CA', 'Canada'), +('209.85.59.32', '209.85.59.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.85.59.48', '209.85.59.79', 2147483647, 2147483647, 'US', 'United States'), +('209.85.59.80', '209.85.59.95', 2147483647, 2147483647, 'MX', 'Mexico'), +('209.85.59.96', '209.85.59.191', 2147483647, 2147483647, 'US', 'United States'), +('209.85.59.192', '209.85.59.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('209.85.60.0', '209.85.60.255', 2147483647, 2147483647, 'US', 'United States'), +('209.85.61.0', '209.85.61.255', 2147483647, 2147483647, 'AU', 'Australia'), +('209.85.62.0', '209.85.62.15', 2147483647, 2147483647, 'CA', 'Canada'), +('209.85.62.16', '209.85.63.255', 2147483647, 2147483647, 'US', 'United States'), +('209.85.64.0', '209.85.64.15', 2147483647, 2147483647, 'CA', 'Canada'), +('209.85.64.16', '209.85.64.95', 2147483647, 2147483647, 'US', 'United States'), +('209.85.64.96', '209.85.64.127', 2147483647, 2147483647, 'CA', 'Canada'), +('209.85.64.128', '209.85.64.255', 2147483647, 2147483647, 'US', 'United States'), +('209.85.65.0', '209.85.65.15', 2147483647, 2147483647, 'CA', 'Canada'), +('209.85.65.16', '209.85.72.255', 2147483647, 2147483647, 'US', 'United States'), +('209.85.73.0', '209.85.73.127', 2147483647, 2147483647, 'AU', 'Australia'), +('209.85.73.128', '209.85.76.111', 2147483647, 2147483647, 'US', 'United States'), +('209.85.76.112', '209.85.76.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.85.76.128', '209.85.79.191', 2147483647, 2147483647, 'US', 'United States'), +('209.85.79.192', '209.85.79.207', 2147483647, 2147483647, 'CA', 'Canada'), +('209.85.79.208', '209.85.80.79', 2147483647, 2147483647, 'US', 'United States'), +('209.85.80.80', '209.85.80.95', 2147483647, 2147483647, 'CA', 'Canada'), +('209.85.80.96', '209.85.88.63', 2147483647, 2147483647, 'US', 'United States'), +('209.85.88.64', '209.85.88.127', 2147483647, 2147483647, 'JO', 'Jordan'), +('209.85.88.128', '209.85.88.143', 2147483647, 2147483647, 'CA', 'Canada'), +('209.85.88.144', '209.85.89.47', 2147483647, 2147483647, 'US', 'United States'), +('209.85.89.48', '209.85.89.63', 2147483647, 2147483647, 'CA', 'Canada'), +('209.85.89.64', '209.85.90.15', 2147483647, 2147483647, 'US', 'United States'), +('209.85.90.16', '209.85.90.31', 2147483647, 2147483647, 'CA', 'Canada'), +('209.85.90.32', '209.85.111.127', 2147483647, 2147483647, 'US', 'United States'), +('209.85.111.128', '209.85.111.191', 2147483647, 2147483647, 'AU', 'Australia'), +('209.85.111.192', '209.85.117.207', 2147483647, 2147483647, 'US', 'United States'), +('209.85.117.208', '209.85.117.223', 2147483647, 2147483647, 'CA', 'Canada'), +('209.85.117.224', '209.85.122.207', 2147483647, 2147483647, 'US', 'United States'), +('209.85.122.208', '209.85.122.223', 2147483647, 2147483647, 'CA', 'Canada'), +('209.85.122.224', '209.86.255.255', 2147483647, 2147483647, 'US', 'United States'), +('209.87.0.0', '209.87.63.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.87.64.0', '209.87.127.255', 2147483647, 2147483647, 'US', 'United States'), +('209.87.128.0', '209.87.143.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.87.144.0', '209.87.223.255', 2147483647, 2147483647, 'US', 'United States'), +('209.87.224.0', '209.87.230.47', 2147483647, 2147483647, 'CA', 'Canada'), +('209.87.230.48', '209.87.230.63', 2147483647, 2147483647, 'US', 'United States'), +('209.87.230.64', '209.87.235.223', 2147483647, 2147483647, 'CA', 'Canada'), +('209.87.235.224', '209.87.235.239', 2147483647, 2147483647, 'US', 'United States'), +('209.87.235.240', '209.87.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.88.0.0', '209.88.0.255', 2147483647, 2147483647, 'US', 'United States'), +('209.88.1.0', '209.88.1.255', 2147483647, 2147483647, 'CL', 'Chile'), +('209.88.2.0', '209.88.2.255', 2147483647, 2147483647, 'AW', 'Aruba'), +('209.88.3.0', '209.88.3.255', 2147483647, 2147483647, 'CL', 'Chile'), +('209.88.4.0', '209.88.6.255', 2147483647, 2147483647, 'HN', 'Honduras'), +('209.88.7.0', '209.88.7.127', 2147483647, 2147483647, 'NI', 'Nicaragua'), +('209.88.7.128', '209.88.7.255', 2147483647, 2147483647, 'US', 'United States'), +('209.88.8.0', '209.88.15.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('209.88.16.0', '209.88.21.255', 2147483647, 2147483647, 'US', 'United States'), +('209.88.22.0', '209.88.22.255', 2147483647, 2147483647, 'CL', 'Chile'), +('209.88.23.0', '209.88.23.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('209.88.24.0', '209.88.62.255', 2147483647, 2147483647, 'US', 'United States'), +('209.88.63.0', '209.88.63.31', 2147483647, 2147483647, 'CO', 'Colombia'), +('209.88.63.32', '209.88.63.255', 2147483647, 2147483647, 'US', 'United States'), +('209.88.64.0', '209.88.64.63', 2147483647, 2147483647, 'AG', 'Antigua and Barbuda'), +('209.88.64.64', '209.88.64.95', 2147483647, 2147483647, 'GP', 'Guadeloupe'), +('209.88.64.96', '209.88.64.255', 2147483647, 2147483647, 'AG', 'Antigua and Barbuda'), +('209.88.65.0', '209.88.65.255', 2147483647, 2147483647, 'VG', 'Virgin Islands, British'), +('209.88.66.0', '209.88.66.31', 2147483647, 2147483647, 'AG', 'Antigua and Barbuda'), +('209.88.66.32', '209.88.66.63', 2147483647, 2147483647, 'VG', 'Virgin Islands, British'), +('209.88.66.64', '209.88.66.127', 2147483647, 2147483647, 'KN', 'Saint Kitts and Nevis'), +('209.88.66.128', '209.88.66.255', 2147483647, 2147483647, 'AG', 'Antigua and Barbuda'), +('209.88.67.0', '209.88.68.255', 2147483647, 2147483647, 'AI', 'Anguilla'), +('209.88.69.0', '209.88.69.255', 2147483647, 2147483647, 'AG', 'Antigua and Barbuda'), +('209.88.70.0', '209.88.70.255', 2147483647, 2147483647, 'LC', 'Saint Lucia'), +('209.88.71.0', '209.88.71.255', 2147483647, 2147483647, 'AG', 'Antigua and Barbuda'), +('209.88.72.0', '209.88.79.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('209.88.80.0', '209.88.87.255', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('209.88.88.0', '209.88.95.255', 2147483647, 2147483647, 'ZW', 'Zimbabwe'), +('209.88.96.0', '209.88.96.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('209.88.97.0', '209.88.97.127', 2147483647, 2147483647, 'US', 'United States'), +('209.88.97.128', '209.88.97.143', 2147483647, 2147483647, 'CA', 'Canada'), +('209.88.97.144', '209.88.97.255', 2147483647, 2147483647, 'US', 'United States'), +('209.88.98.0', '209.88.98.31', 2147483647, 2147483647, 'CO', 'Colombia'), +('209.88.98.32', '209.88.99.255', 2147483647, 2147483647, 'US', 'United States'), +('209.88.100.0', '209.88.100.255', 2147483647, 2147483647, 'CL', 'Chile'), +('209.88.101.0', '209.88.101.31', 2147483647, 2147483647, 'VE', 'Venezuela'), +('209.88.101.32', '209.88.101.127', 2147483647, 2147483647, 'US', 'United States'), +('209.88.101.128', '209.88.101.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('209.88.102.0', '209.88.102.255', 2147483647, 2147483647, 'CL', 'Chile'), +('209.88.103.0', '209.88.103.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('209.88.104.0', '209.88.104.31', 2147483647, 2147483647, 'CO', 'Colombia'), +('209.88.104.32', '209.88.104.127', 2147483647, 2147483647, 'US', 'United States'), +('209.88.104.128', '209.88.104.191', 2147483647, 2147483647, 'CO', 'Colombia'), +('209.88.104.192', '209.88.104.255', 2147483647, 2147483647, 'US', 'United States'), +('209.88.105.0', '209.88.105.31', 2147483647, 2147483647, 'CO', 'Colombia'), +('209.88.105.32', '209.88.105.127', 2147483647, 2147483647, 'US', 'United States'), +('209.88.105.128', '209.88.105.159', 2147483647, 2147483647, 'CO', 'Colombia'), +('209.88.105.160', '209.88.108.255', 2147483647, 2147483647, 'US', 'United States'), +('209.88.109.0', '209.88.109.255', 2147483647, 2147483647, 'CL', 'Chile'), +('209.88.110.0', '209.88.110.31', 2147483647, 2147483647, 'VE', 'Venezuela'), +('209.88.110.32', '209.88.110.127', 2147483647, 2147483647, 'US', 'United States'), +('209.88.110.128', '209.88.110.159', 2147483647, 2147483647, 'CO', 'Colombia'), +('209.88.110.160', '209.88.110.255', 2147483647, 2147483647, 'US', 'United States'), +('209.88.111.0', '209.88.111.255', 2147483647, 2147483647, 'HN', 'Honduras'), +('209.88.112.0', '209.88.119.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('209.88.120.0', '209.88.120.255', 2147483647, 2147483647, 'US', 'United States'), +('209.88.121.0', '209.88.124.255', 2147483647, 2147483647, 'MR', 'Mauritania'), +('209.88.125.0', '209.88.126.255', 2147483647, 2147483647, 'US', 'United States'), +('209.88.127.0', '209.88.127.255', 2147483647, 2147483647, 'HN', 'Honduras'), +('209.88.128.0', '209.88.135.255', 2147483647, 2147483647, 'AW', 'Aruba'), +('209.88.136.0', '209.88.141.255', 2147483647, 2147483647, 'BS', 'Bahamas'), +('209.88.142.0', '209.88.143.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('209.88.144.0', '209.88.144.255', 2147483647, 2147483647, 'CL', 'Chile'), +('209.88.145.0', '209.88.145.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('209.88.146.0', '209.88.154.255', 2147483647, 2147483647, 'EG', 'Egypt'), +('209.88.155.0', '209.88.158.255', 2147483647, 2147483647, 'IL', 'Israel'), +('209.88.159.0', '209.88.161.255', 2147483647, 2147483647, 'CL', 'Chile'), +('209.88.162.0', '209.88.162.255', 2147483647, 2147483647, 'US', 'United States'), +('209.88.163.0', '209.88.163.255', 2147483647, 2147483647, 'NG', 'Nigeria'), +('209.88.164.0', '209.88.167.255', 2147483647, 2147483647, 'US', 'United States'), +('209.88.168.0', '209.88.170.31', 2147483647, 2147483647, 'CO', 'Colombia'), +('209.88.170.32', '209.88.170.95', 2147483647, 2147483647, 'US', 'United States'), +('209.88.170.96', '209.88.170.127', 2147483647, 2147483647, 'CO', 'Colombia'), +('209.88.170.128', '209.88.170.191', 2147483647, 2147483647, 'US', 'United States'), +('209.88.170.192', '209.88.170.223', 2147483647, 2147483647, 'CO', 'Colombia'), +('209.88.170.224', '209.88.170.255', 2147483647, 2147483647, 'US', 'United States'), +('209.88.171.0', '209.88.171.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('209.88.172.0', '209.88.199.255', 2147483647, 2147483647, 'IL', 'Israel'), +('209.88.200.0', '209.88.207.255', 2147483647, 2147483647, 'CL', 'Chile'), +('209.88.208.0', '209.88.215.255', 2147483647, 2147483647, 'US', 'United States'), +('209.88.216.0', '209.88.219.255', 2147483647, 2147483647, 'GU', 'Guam'), +('209.88.220.0', '209.88.223.255', 2147483647, 2147483647, 'US', 'United States'), +('209.88.224.0', '209.88.227.255', 2147483647, 2147483647, 'GT', 'Guatemala'), +('209.88.228.0', '209.88.231.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('209.88.232.0', '209.88.241.255', 2147483647, 2147483647, 'US', 'United States'), +('209.88.242.0', '209.88.244.255', 2147483647, 2147483647, 'TG', 'Togo'), +('209.88.245.0', '209.88.246.255', 2147483647, 2147483647, 'US', 'United States'), +('209.88.247.0', '209.88.247.255', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('209.88.248.0', '209.88.248.255', 2147483647, 2147483647, 'US', 'United States'), +('209.88.249.0', '209.88.249.255', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('209.88.250.0', '209.88.250.255', 2147483647, 2147483647, 'US', 'United States'), +('209.88.251.0', '209.88.251.255', 2147483647, 2147483647, 'HN', 'Honduras'), +('209.88.252.0', '209.88.255.255', 2147483647, 2147483647, 'US', 'United States'), +('209.89.0.0', '209.89.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.90.0.0', '209.90.127.255', 2147483647, 2147483647, 'US', 'United States'), +('209.90.128.0', '209.90.151.215', 2147483647, 2147483647, 'CA', 'Canada'), +('209.90.151.216', '209.90.151.223', 2147483647, 2147483647, 'US', 'United States'), +('209.90.151.224', '209.90.191.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.90.192.0', '209.90.239.255', 2147483647, 2147483647, 'US', 'United States'), +('209.90.240.0', '209.90.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.91.0.0', '209.91.63.255', 2147483647, 2147483647, 'US', 'United States'), +('209.91.64.0', '209.91.191.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.91.192.0', '209.91.255.255', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('209.92.0.0', '209.93.3.255', 2147483647, 2147483647, 'US', 'United States'), +('209.93.4.0', '209.93.4.63', 2147483647, 2147483647, 'BR', 'Brazil'), +('209.93.4.64', '209.93.10.127', 2147483647, 2147483647, 'US', 'United States'), +('209.93.10.128', '209.93.10.191', 2147483647, 2147483647, 'CA', 'Canada'), +('209.93.10.192', '209.93.11.127', 2147483647, 2147483647, 'US', 'United States'), +('209.93.11.128', '209.93.11.255', 2147483647, 2147483647, 'DE', 'Germany'), +('209.93.12.0', '209.93.12.127', 2147483647, 2147483647, 'US', 'United States'), +('209.93.12.128', '209.93.12.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('209.93.13.0', '209.93.13.63', 2147483647, 2147483647, 'CO', 'Colombia'), +('209.93.13.64', '209.93.13.127', 2147483647, 2147483647, 'US', 'United States'), +('209.93.13.128', '209.93.13.191', 2147483647, 2147483647, 'ES', 'Spain'), +('209.93.13.192', '209.93.13.255', 2147483647, 2147483647, 'US', 'United States'), +('209.93.14.0', '209.93.14.127', 2147483647, 2147483647, 'MX', 'Mexico'), +('209.93.14.128', '209.93.15.255', 2147483647, 2147483647, 'US', 'United States'), +('209.93.16.0', '209.93.16.63', 2147483647, 2147483647, 'CL', 'Chile'), +('209.93.16.64', '209.93.16.127', 2147483647, 2147483647, 'DK', 'Denmark'), +('209.93.16.128', '209.93.17.255', 2147483647, 2147483647, 'US', 'United States'), +('209.93.18.0', '209.93.18.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.93.19.0', '209.93.19.127', 2147483647, 2147483647, 'US', 'United States'), +('209.93.19.128', '209.93.19.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('209.93.20.0', '209.93.21.127', 2147483647, 2147483647, 'US', 'United States'), +('209.93.21.128', '209.93.21.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('209.93.22.0', '209.93.23.127', 2147483647, 2147483647, 'US', 'United States'), +('209.93.23.128', '209.93.23.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('209.93.24.0', '209.93.24.191', 2147483647, 2147483647, 'US', 'United States'), +('209.93.24.192', '209.93.24.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('209.93.25.0', '209.93.26.255', 2147483647, 2147483647, 'US', 'United States'), +('209.93.27.0', '209.93.27.127', 2147483647, 2147483647, 'MX', 'Mexico'), +('209.93.27.128', '209.93.28.127', 2147483647, 2147483647, 'US', 'United States'), +('209.93.28.128', '209.93.28.135', 2147483647, 2147483647, 'TH', 'Thailand'), +('209.93.28.136', '209.93.28.191', 2147483647, 2147483647, 'US', 'United States'), +('209.93.28.192', '209.93.28.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('209.93.29.0', '209.93.31.127', 2147483647, 2147483647, 'US', 'United States'), +('209.93.31.128', '209.93.31.191', 2147483647, 2147483647, 'CO', 'Colombia'), +('209.93.31.192', '209.93.32.47', 2147483647, 2147483647, 'US', 'United States'), +('209.93.32.48', '209.93.32.63', 2147483647, 2147483647, 'SE', 'Sweden'), +('209.93.32.64', '209.93.32.95', 2147483647, 2147483647, 'US', 'United States'), +('209.93.32.96', '209.93.32.111', 2147483647, 2147483647, 'IT', 'Italy'), +('209.93.32.112', '209.93.32.255', 2147483647, 2147483647, 'US', 'United States'), +('209.93.33.0', '209.93.33.143', 2147483647, 2147483647, 'IT', 'Italy'), +('209.93.33.144', '209.93.33.159', 2147483647, 2147483647, 'US', 'United States'), +('209.93.33.160', '209.93.33.175', 2147483647, 2147483647, 'IT', 'Italy'), +('209.93.33.176', '209.93.33.191', 2147483647, 2147483647, 'US', 'United States'), +('209.93.33.192', '209.93.33.255', 2147483647, 2147483647, 'IT', 'Italy'), +('209.93.34.0', '209.93.34.225', 2147483647, 2147483647, 'NO', 'Norway'), +('209.93.34.226', '209.93.35.255', 2147483647, 2147483647, 'US', 'United States'), +('209.93.36.0', '209.93.36.31', 2147483647, 2147483647, 'SE', 'Sweden'), +('209.93.36.32', '209.93.37.255', 2147483647, 2147483647, 'US', 'United States'), +('209.93.38.0', '209.93.38.31', 2147483647, 2147483647, 'DE', 'Germany'), +('209.93.38.32', '209.93.38.255', 2147483647, 2147483647, 'US', 'United States'), +('209.93.39.0', '209.93.39.47', 2147483647, 2147483647, 'IL', 'Israel'), +('209.93.39.48', '209.93.41.255', 2147483647, 2147483647, 'US', 'United States'), +('209.93.42.0', '209.93.42.159', 2147483647, 2147483647, 'FI', 'Finland'), +('209.93.42.160', '209.93.42.255', 2147483647, 2147483647, 'US', 'United States'), +('209.93.43.0', '209.93.43.63', 2147483647, 2147483647, 'DE', 'Germany'), +('209.93.43.64', '209.93.43.71', 2147483647, 2147483647, 'ID', 'Indonesia'), +('209.93.43.72', '209.93.43.79', 2147483647, 2147483647, 'TW', 'Taiwan'), +('209.93.43.80', '209.93.43.87', 2147483647, 2147483647, 'MY', 'Malaysia'), +('209.93.43.88', '209.93.43.95', 2147483647, 2147483647, 'US', 'United States'), +('209.93.43.96', '209.93.43.103', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('209.93.43.104', '209.93.43.111', 2147483647, 2147483647, 'JP', 'Japan'), +('209.93.43.112', '209.93.43.255', 2147483647, 2147483647, 'US', 'United States'), +('209.93.44.0', '209.93.44.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.93.44.80', '209.93.44.127', 2147483647, 2147483647, 'US', 'United States'), +('209.93.44.128', '209.93.44.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.93.44.192', '209.93.44.255', 2147483647, 2147483647, 'US', 'United States'), +('209.93.45.0', '209.93.45.15', 2147483647, 2147483647, 'DE', 'Germany'), +('209.93.45.16', '209.93.45.63', 2147483647, 2147483647, 'US', 'United States'), +('209.93.45.64', '209.93.45.127', 2147483647, 2147483647, 'DE', 'Germany'), +('209.93.45.128', '209.93.45.255', 2147483647, 2147483647, 'US', 'United States'), +('209.93.46.0', '209.93.46.31', 2147483647, 2147483647, 'NO', 'Norway'), +('209.93.46.32', '209.93.46.63', 2147483647, 2147483647, 'US', 'United States'), +('209.93.46.64', '209.93.46.143', 2147483647, 2147483647, 'NO', 'Norway'), +('209.93.46.144', '209.93.46.255', 2147483647, 2147483647, 'US', 'United States'), +('209.93.47.0', '209.93.47.127', 2147483647, 2147483647, 'TW', 'Taiwan'), +('209.93.47.128', '209.93.48.127', 2147483647, 2147483647, 'US', 'United States'), +('209.93.48.128', '209.93.48.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.93.48.160', '209.93.48.191', 2147483647, 2147483647, 'US', 'United States'), +('209.93.48.192', '209.93.49.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.93.49.128', '209.93.49.223', 2147483647, 2147483647, 'US', 'United States'), +('209.93.49.224', '209.93.49.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.93.50.0', '209.93.50.143', 2147483647, 2147483647, 'IT', 'Italy'), +('209.93.50.144', '209.93.50.191', 2147483647, 2147483647, 'US', 'United States'), +('209.93.50.192', '209.93.50.255', 2147483647, 2147483647, 'IT', 'Italy'), +('209.93.51.0', '209.93.51.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.93.51.128', '209.93.51.255', 2147483647, 2147483647, 'US', 'United States'), +('209.93.52.0', '209.93.52.159', 2147483647, 2147483647, 'FR', 'France'), +('209.93.52.160', '209.93.52.255', 2147483647, 2147483647, 'US', 'United States'), +('209.93.53.0', '209.93.53.31', 2147483647, 2147483647, 'IT', 'Italy'), +('209.93.53.32', '209.93.53.47', 2147483647, 2147483647, 'SG', 'Singapore'), +('209.93.53.48', '209.93.53.63', 2147483647, 2147483647, 'JP', 'Japan'), +('209.93.53.64', '209.93.53.71', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('209.93.53.72', '209.93.53.127', 2147483647, 2147483647, 'US', 'United States'), +('209.93.53.128', '209.93.53.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('209.93.54.0', '209.93.54.63', 2147483647, 2147483647, 'DE', 'Germany'), +('209.93.54.64', '209.93.54.127', 2147483647, 2147483647, 'US', 'United States'), +('209.93.54.128', '209.93.54.255', 2147483647, 2147483647, 'DE', 'Germany'), +('209.93.55.0', '209.93.55.31', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('209.93.55.32', '209.93.55.159', 2147483647, 2147483647, 'BE', 'Belgium'), +('209.93.55.160', '209.93.55.191', 2147483647, 2147483647, 'US', 'United States'), +('209.93.55.192', '209.93.55.255', 2147483647, 2147483647, 'ES', 'Spain'), +('209.93.56.0', '209.93.56.31', 2147483647, 2147483647, 'SE', 'Sweden'), +('209.93.56.32', '209.93.56.63', 2147483647, 2147483647, 'US', 'United States'), +('209.93.56.64', '209.93.56.127', 2147483647, 2147483647, 'ZA', 'South Africa'), +('209.93.56.128', '209.93.56.255', 2147483647, 2147483647, 'US', 'United States'), +('209.93.57.0', '209.93.57.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.93.58.0', '209.93.58.31', 2147483647, 2147483647, 'PT', 'Portugal'), +('209.93.58.32', '209.93.58.255', 2147483647, 2147483647, 'US', 'United States'), +('209.93.59.0', '209.93.59.47', 2147483647, 2147483647, 'CH', 'Switzerland'), +('209.93.59.48', '209.93.59.255', 2147483647, 2147483647, 'US', 'United States'), +('209.93.60.0', '209.93.60.127', 2147483647, 2147483647, 'ES', 'Spain'), +('209.93.60.128', '209.93.61.63', 2147483647, 2147483647, 'US', 'United States'), +('209.93.61.64', '209.93.61.95', 2147483647, 2147483647, 'NL', 'Netherlands'), +('209.93.61.96', '209.93.61.127', 2147483647, 2147483647, 'US', 'United States'), +('209.93.61.128', '209.93.61.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('209.93.62.0', '209.93.62.127', 2147483647, 2147483647, 'CH', 'Switzerland'), +('209.93.62.128', '209.93.62.223', 2147483647, 2147483647, 'US', 'United States'), +('209.93.62.224', '209.93.62.255', 2147483647, 2147483647, 'GR', 'Greece'), +('209.93.63.0', '209.93.63.127', 2147483647, 2147483647, 'FR', 'France'), +('209.93.63.128', '209.93.63.191', 2147483647, 2147483647, 'US', 'United States'), +('209.93.63.192', '209.93.63.255', 2147483647, 2147483647, 'FR', 'France'), +('209.93.64.0', '209.93.64.191', 2147483647, 2147483647, 'US', 'United States'), +('209.93.64.192', '209.93.64.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('209.93.65.0', '209.93.65.63', 2147483647, 2147483647, 'DE', 'Germany'), +('209.93.65.64', '209.93.65.95', 2147483647, 2147483647, 'TW', 'Taiwan'), +('209.93.65.96', '209.93.65.127', 2147483647, 2147483647, 'US', 'United States'), +('209.93.65.128', '209.93.65.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('209.93.66.0', '209.93.66.127', 2147483647, 2147483647, 'US', 'United States'), +('209.93.66.128', '209.93.66.143', 2147483647, 2147483647, 'DE', 'Germany'), +('209.93.66.144', '209.93.66.255', 2147483647, 2147483647, 'US', 'United States'), +('209.93.67.0', '209.93.67.31', 2147483647, 2147483647, 'AT', 'Austria'), +('209.93.67.32', '209.93.67.111', 2147483647, 2147483647, 'US', 'United States'), +('209.93.67.112', '209.93.67.127', 2147483647, 2147483647, 'AT', 'Austria'), +('209.93.67.128', '209.93.67.255', 2147483647, 2147483647, 'US', 'United States'), +('209.93.68.0', '209.93.68.15', 2147483647, 2147483647, 'CH', 'Switzerland'), +('209.93.68.16', '209.93.69.255', 2147483647, 2147483647, 'US', 'United States'), +('209.93.70.0', '209.93.70.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.93.71.0', '209.93.71.255', 2147483647, 2147483647, 'DE', 'Germany'), +('209.93.72.0', '209.93.72.127', 2147483647, 2147483647, 'IL', 'Israel'), +('209.93.72.128', '209.93.74.255', 2147483647, 2147483647, 'US', 'United States'), +('209.93.75.0', '209.93.75.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('209.93.76.0', '209.93.76.111', 2147483647, 2147483647, 'US', 'United States'), +('209.93.76.112', '209.93.76.255', 2147483647, 2147483647, 'DE', 'Germany'), +('209.93.77.0', '209.93.77.255', 2147483647, 2147483647, 'US', 'United States'), +('209.93.78.0', '209.93.78.151', 2147483647, 2147483647, 'GR', 'Greece'), +('209.93.78.152', '209.93.79.255', 2147483647, 2147483647, 'US', 'United States'), +('209.93.80.0', '209.93.80.191', 2147483647, 2147483647, 'AT', 'Austria'), +('209.93.80.192', '209.93.80.255', 2147483647, 2147483647, 'US', 'United States'), +('209.93.81.0', '209.93.81.127', 2147483647, 2147483647, 'CH', 'Switzerland'), +('209.93.81.128', '209.93.81.255', 2147483647, 2147483647, 'US', 'United States'), +('209.93.82.0', '209.93.84.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.93.85.0', '209.93.85.15', 2147483647, 2147483647, 'DK', 'Denmark'), +('209.93.85.16', '209.93.88.255', 2147483647, 2147483647, 'US', 'United States'), +('209.93.89.0', '209.93.90.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('209.93.91.0', '209.93.91.127', 2147483647, 2147483647, 'SE', 'Sweden'), +('209.93.91.128', '209.93.91.191', 2147483647, 2147483647, 'DE', 'Germany'), +('209.93.91.192', '209.93.91.255', 2147483647, 2147483647, 'US', 'United States'), +('209.93.92.0', '209.93.92.255', 2147483647, 2147483647, 'FR', 'France'), +('209.93.93.0', '209.93.93.31', 2147483647, 2147483647, 'US', 'United States'), +('209.93.93.32', '209.93.93.47', 2147483647, 2147483647, 'BE', 'Belgium'), +('209.93.93.48', '209.93.93.63', 2147483647, 2147483647, 'US', 'United States'), +('209.93.93.64', '209.93.93.127', 2147483647, 2147483647, 'BE', 'Belgium'), +('209.93.93.128', '209.93.93.255', 2147483647, 2147483647, 'US', 'United States'), +('209.93.94.0', '209.93.94.255', 2147483647, 2147483647, 'DE', 'Germany'), +('209.93.95.0', '209.93.95.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.93.96.0', '209.93.97.87', 2147483647, 2147483647, 'US', 'United States'), +('209.93.97.88', '209.93.97.95', 2147483647, 2147483647, 'JP', 'Japan'), +('209.93.97.96', '209.93.97.127', 2147483647, 2147483647, 'US', 'United States'), +('209.93.97.128', '209.93.97.191', 2147483647, 2147483647, 'ID', 'Indonesia'), +('209.93.97.192', '209.93.97.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('209.93.98.0', '209.93.99.255', 2147483647, 2147483647, 'US', 'United States'), +('209.93.100.0', '209.93.100.127', 2147483647, 2147483647, 'JP', 'Japan'), +('209.93.100.128', '209.93.100.191', 2147483647, 2147483647, 'MY', 'Malaysia'), +('209.93.100.192', '209.93.100.255', 2147483647, 2147483647, 'US', 'United States'), +('209.93.101.0', '209.93.101.63', 2147483647, 2147483647, 'JP', 'Japan'), +('209.93.101.64', '209.93.101.111', 2147483647, 2147483647, 'SG', 'Singapore'), +('209.93.101.112', '209.93.101.127', 2147483647, 2147483647, 'US', 'United States'), +('209.93.101.128', '209.93.101.191', 2147483647, 2147483647, 'JP', 'Japan'), +('209.93.101.192', '209.93.101.223', 2147483647, 2147483647, 'AU', 'Australia'), +('209.93.101.224', '209.93.101.255', 2147483647, 2147483647, 'US', 'United States'), +('209.93.102.0', '209.93.102.31', 2147483647, 2147483647, 'SG', 'Singapore'), +('209.93.102.32', '209.93.102.127', 2147483647, 2147483647, 'US', 'United States'), +('209.93.102.128', '209.93.102.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('209.93.103.0', '209.93.105.255', 2147483647, 2147483647, 'US', 'United States'), +('209.93.106.0', '209.93.106.129', 2147483647, 2147483647, 'TH', 'Thailand'), +('209.93.106.130', '209.93.106.255', 2147483647, 2147483647, 'US', 'United States'), +('209.93.107.0', '209.93.107.127', 2147483647, 2147483647, 'JP', 'Japan'), +('209.93.107.128', '209.93.109.255', 2147483647, 2147483647, 'US', 'United States'), +('209.93.110.0', '209.93.110.127', 2147483647, 2147483647, 'CN', 'China'), +('209.93.110.128', '209.93.110.255', 2147483647, 2147483647, 'US', 'United States'), +('209.93.111.0', '209.93.111.127', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('209.93.111.128', '209.93.111.255', 2147483647, 2147483647, 'US', 'United States'), +('209.93.112.0', '209.93.112.63', 2147483647, 2147483647, 'AU', 'Australia'), +('209.93.112.64', '209.93.112.127', 2147483647, 2147483647, 'JP', 'Japan'), +('209.93.112.128', '209.93.112.255', 2147483647, 2147483647, 'CN', 'China'), +('209.93.113.0', '209.93.113.255', 2147483647, 2147483647, 'JP', 'Japan'), +('209.93.114.0', '209.93.114.63', 2147483647, 2147483647, 'CH', 'Switzerland'), +('209.93.114.64', '209.93.114.95', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('209.93.114.96', '209.93.114.127', 2147483647, 2147483647, 'US', 'United States'), +('209.93.114.128', '209.93.114.191', 2147483647, 2147483647, 'CN', 'China'), +('209.93.114.192', '209.93.114.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('209.93.115.0', '209.93.115.31', 2147483647, 2147483647, 'TH', 'Thailand'), +('209.93.115.32', '209.93.115.111', 2147483647, 2147483647, 'US', 'United States'), +('209.93.115.112', '209.93.115.127', 2147483647, 2147483647, 'TH', 'Thailand'), +('209.93.115.128', '209.93.116.255', 2147483647, 2147483647, 'US', 'United States'), +('209.93.117.0', '209.93.117.127', 2147483647, 2147483647, 'PH', 'Philippines'), +('209.93.117.128', '209.93.117.191', 2147483647, 2147483647, 'US', 'United States'), +('209.93.117.192', '209.93.117.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('209.93.118.0', '209.93.118.191', 2147483647, 2147483647, 'US', 'United States'), +('209.93.118.192', '209.93.118.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('209.93.119.0', '209.93.119.255', 2147483647, 2147483647, 'US', 'United States'), +('209.93.120.0', '209.93.120.15', 2147483647, 2147483647, 'MY', 'Malaysia'), +('209.93.120.16', '209.93.120.31', 2147483647, 2147483647, 'US', 'United States'), +('209.93.120.32', '209.93.120.63', 2147483647, 2147483647, 'AU', 'Australia'), +('209.93.120.64', '209.93.120.95', 2147483647, 2147483647, 'JP', 'Japan'), +('209.93.120.96', '209.93.120.255', 2147483647, 2147483647, 'US', 'United States'), +('209.93.121.0', '209.93.121.127', 2147483647, 2147483647, 'PH', 'Philippines'), +('209.93.121.128', '209.93.121.255', 2147483647, 2147483647, 'US', 'United States'), +('209.93.122.0', '209.93.122.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('209.93.123.0', '209.93.125.127', 2147483647, 2147483647, 'US', 'United States'), +('209.93.125.128', '209.93.125.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('209.93.126.0', '209.93.126.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('209.93.127.0', '209.93.130.255', 2147483647, 2147483647, 'US', 'United States'), +('209.93.131.0', '209.93.131.127', 2147483647, 2147483647, 'BR', 'Brazil'), +('209.93.131.128', '209.93.133.159', 2147483647, 2147483647, 'US', 'United States'), +('209.93.133.160', '209.93.133.191', 2147483647, 2147483647, 'CA', 'Canada'), +('209.93.133.192', '209.93.133.255', 2147483647, 2147483647, 'US', 'United States'), +('209.93.134.0', '209.93.134.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.93.134.128', '209.93.136.127', 2147483647, 2147483647, 'US', 'United States'), +('209.93.136.128', '209.93.136.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('209.93.137.0', '209.93.140.255', 2147483647, 2147483647, 'US', 'United States'), +('209.93.141.0', '209.93.141.127', 2147483647, 2147483647, 'CA', 'Canada'), +('209.93.141.128', '209.93.144.127', 2147483647, 2147483647, 'US', 'United States'), +('209.93.144.128', '209.93.144.143', 2147483647, 2147483647, 'VE', 'Venezuela'), +('209.93.144.144', '209.93.144.159', 2147483647, 2147483647, 'CA', 'Canada'), +('209.93.144.160', '209.93.145.127', 2147483647, 2147483647, 'US', 'United States'), +('209.93.145.128', '209.93.145.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('209.93.146.0', '209.93.151.127', 2147483647, 2147483647, 'US', 'United States'), +('209.93.151.128', '209.93.151.255', 2147483647, 2147483647, 'CL', 'Chile'), +('209.93.152.0', '209.93.152.63', 2147483647, 2147483647, 'VE', 'Venezuela'), +('209.93.152.64', '209.93.155.255', 2147483647, 2147483647, 'US', 'United States'), +('209.93.156.0', '209.93.156.127', 2147483647, 2147483647, 'MX', 'Mexico'), +('209.93.156.128', '209.93.156.223', 2147483647, 2147483647, 'US', 'United States'), +('209.93.156.224', '209.93.156.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('209.93.157.0', '209.93.157.127', 2147483647, 2147483647, 'US', 'United States'), +('209.93.157.128', '209.93.157.191', 2147483647, 2147483647, 'CL', 'Chile'), +('209.93.157.192', '209.93.157.255', 2147483647, 2147483647, 'US', 'United States'), +('209.93.158.0', '209.93.158.255', 2147483647, 2147483647, 'CL', 'Chile'), +('209.93.159.0', '209.93.159.31', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('209.93.159.32', '209.93.159.63', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('209.93.159.64', '209.93.159.95', 2147483647, 2147483647, 'TW', 'Taiwan'), +('209.93.159.96', '209.93.159.127', 2147483647, 2147483647, 'ID', 'Indonesia'), +('209.93.159.128', '209.93.159.159', 2147483647, 2147483647, 'SG', 'Singapore'), +('209.93.159.160', '209.93.159.191', 2147483647, 2147483647, 'US', 'United States'), +('209.93.159.192', '209.93.160.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('209.93.161.0', '209.93.162.255', 2147483647, 2147483647, 'US', 'United States'), +('209.93.163.0', '209.93.163.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('209.93.164.0', '209.93.166.63', 2147483647, 2147483647, 'US', 'United States'), +('209.93.166.64', '209.93.166.127', 2147483647, 2147483647, 'MY', 'Malaysia'), +('209.93.166.128', '209.93.166.255', 2147483647, 2147483647, 'JP', 'Japan'), +('209.93.167.0', '209.93.167.255', 2147483647, 2147483647, 'US', 'United States'), +('209.93.168.0', '209.93.168.31', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('209.93.168.32', '209.93.168.63', 2147483647, 2147483647, 'US', 'United States'), +('209.93.168.64', '209.93.168.127', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('209.93.168.128', '209.93.168.255', 2147483647, 2147483647, 'US', 'United States'), +('209.93.169.0', '209.93.169.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('209.93.170.0', '209.93.170.255', 2147483647, 2147483647, 'US', 'United States'), +('209.93.171.0', '209.93.171.127', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('209.93.171.128', '209.93.171.255', 2147483647, 2147483647, 'US', 'United States'), +('209.93.172.0', '209.93.172.63', 2147483647, 2147483647, 'JP', 'Japan'), +('209.93.172.64', '209.93.172.255', 2147483647, 2147483647, 'US', 'United States'), +('209.93.173.0', '209.93.173.63', 2147483647, 2147483647, 'TW', 'Taiwan'), +('209.93.173.64', '209.93.173.127', 2147483647, 2147483647, 'SG', 'Singapore'), +('209.93.173.128', '209.93.173.159', 2147483647, 2147483647, 'TH', 'Thailand'), +('209.93.173.160', '209.93.173.255', 2147483647, 2147483647, 'US', 'United States'), +('209.93.174.0', '209.93.174.63', 2147483647, 2147483647, 'AU', 'Australia'), +('209.93.174.64', '209.93.174.95', 2147483647, 2147483647, 'PH', 'Philippines'), +('209.93.174.96', '209.93.174.127', 2147483647, 2147483647, 'US', 'United States'), +('209.93.174.128', '209.93.174.191', 2147483647, 2147483647, 'TH', 'Thailand'), +('209.93.174.192', '209.93.174.255', 2147483647, 2147483647, 'US', 'United States'), +('209.93.175.0', '209.93.175.63', 2147483647, 2147483647, 'JP', 'Japan'), +('209.93.175.64', '209.93.175.255', 2147483647, 2147483647, 'US', 'United States'), +('209.93.176.0', '209.93.176.63', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('209.93.176.64', '209.93.177.255', 2147483647, 2147483647, 'US', 'United States'), +('209.93.178.0', '209.93.178.160', 2147483647, 2147483647, 'CN', 'China'), +('209.93.178.161', '209.93.178.255', 2147483647, 2147483647, 'US', 'United States'), +('209.93.179.0', '209.93.179.127', 2147483647, 2147483647, 'TH', 'Thailand'), +('209.93.179.128', '209.93.179.255', 2147483647, 2147483647, 'US', 'United States'), +('209.93.180.0', '209.93.180.127', 2147483647, 2147483647, 'ID', 'Indonesia'), +('209.93.180.128', '209.93.180.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('209.93.181.0', '209.93.181.127', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('209.93.181.128', '209.93.181.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('209.93.182.0', '209.93.182.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('209.93.183.0', '209.93.183.127', 2147483647, 2147483647, 'SG', 'Singapore'), +('209.93.183.128', '209.93.183.191', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('209.93.183.192', '209.93.183.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('209.93.184.0', '209.93.184.127', 2147483647, 2147483647, 'JP', 'Japan'), +('209.93.184.128', '209.93.184.191', 2147483647, 2147483647, 'US', 'United States'), +('209.93.184.192', '209.93.184.255', 2147483647, 2147483647, 'CN', 'China'), +('209.93.185.0', '209.93.185.15', 2147483647, 2147483647, 'CH', 'Switzerland'), +('209.93.185.16', '209.93.185.63', 2147483647, 2147483647, 'US', 'United States'), +('209.93.185.64', '209.93.185.127', 2147483647, 2147483647, 'SG', 'Singapore'), +('209.93.185.128', '209.93.186.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('209.93.187.0', '209.93.187.127', 2147483647, 2147483647, 'ID', 'Indonesia'), +('209.93.187.128', '209.93.187.191', 2147483647, 2147483647, 'SG', 'Singapore'), +('209.93.187.192', '209.93.187.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('209.93.188.0', '209.93.188.127', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('209.93.188.128', '209.93.188.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('209.93.189.0', '209.93.191.255', 2147483647, 2147483647, 'CN', 'China'), +('209.93.192.0', '209.93.192.63', 2147483647, 2147483647, 'US', 'United States'), +('209.93.192.64', '209.93.192.79', 2147483647, 2147483647, 'BR', 'Brazil'), +('209.93.192.80', '209.93.193.63', 2147483647, 2147483647, 'US', 'United States'), +('209.93.193.64', '209.93.193.127', 2147483647, 2147483647, 'BR', 'Brazil'), +('209.93.193.128', '209.93.193.255', 2147483647, 2147483647, 'PE', 'Peru'), +('209.93.194.0', '209.93.194.63', 2147483647, 2147483647, 'BR', 'Brazil'), +('209.93.194.64', '209.93.194.127', 2147483647, 2147483647, 'CN', 'China'), +('209.93.194.128', '209.93.194.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('209.93.195.0', '209.93.196.127', 2147483647, 2147483647, 'US', 'United States'), +('209.93.196.128', '209.93.197.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('209.93.198.0', '209.93.200.255', 2147483647, 2147483647, 'US', 'United States'), +('209.93.201.0', '209.93.201.31', 2147483647, 2147483647, 'BR', 'Brazil'), +('209.93.201.32', '209.93.204.191', 2147483647, 2147483647, 'US', 'United States'), +('209.93.204.192', '209.93.204.223', 2147483647, 2147483647, 'BR', 'Brazil'), +('209.93.204.224', '209.93.206.159', 2147483647, 2147483647, 'US', 'United States'), +('209.93.206.160', '209.93.206.191', 2147483647, 2147483647, 'PE', 'Peru'), +('209.93.206.192', '209.93.206.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('209.93.207.0', '209.93.207.191', 2147483647, 2147483647, 'US', 'United States'), +('209.93.207.192', '209.93.207.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('209.93.208.0', '209.93.208.255', 2147483647, 2147483647, 'US', 'United States'), +('209.93.209.0', '209.93.209.191', 2147483647, 2147483647, 'BR', 'Brazil'), +('209.93.209.192', '209.93.209.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('209.93.210.0', '209.93.212.31', 2147483647, 2147483647, 'US', 'United States'), +('209.93.212.32', '209.93.212.63', 2147483647, 2147483647, 'CH', 'Switzerland'), +('209.93.212.64', '209.93.213.127', 2147483647, 2147483647, 'US', 'United States'), +('209.93.213.128', '209.93.213.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('209.93.214.0', '209.93.214.127', 2147483647, 2147483647, 'US', 'United States'), +('209.93.214.128', '209.93.214.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('209.93.215.0', '209.93.215.127', 2147483647, 2147483647, 'US', 'United States'), +('209.93.215.128', '209.93.215.159', 2147483647, 2147483647, 'PE', 'Peru'), +('209.93.215.160', '209.93.215.191', 2147483647, 2147483647, 'US', 'United States'), +('209.93.215.192', '209.93.215.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('209.93.216.0', '209.93.216.127', 2147483647, 2147483647, 'US', 'United States'), +('209.93.216.128', '209.93.216.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('209.93.217.0', '209.93.220.95', 2147483647, 2147483647, 'US', 'United States'), +('209.93.220.96', '209.93.220.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('209.93.221.0', '209.93.222.63', 2147483647, 2147483647, 'US', 'United States'), +('209.93.222.64', '209.93.222.127', 2147483647, 2147483647, 'CO', 'Colombia'), +('209.93.222.128', '209.93.222.191', 2147483647, 2147483647, 'US', 'United States'), +('209.93.222.192', '209.93.222.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('209.93.223.0', '209.93.223.63', 2147483647, 2147483647, 'MX', 'Mexico'), +('209.93.223.64', '209.93.223.127', 2147483647, 2147483647, 'CH', 'Switzerland'), +('209.93.223.128', '209.93.225.255', 2147483647, 2147483647, 'US', 'United States'), +('209.93.226.0', '209.93.226.127', 2147483647, 2147483647, 'TH', 'Thailand'), +('209.93.226.128', '209.93.226.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('209.93.227.0', '209.93.227.255', 2147483647, 2147483647, 'JP', 'Japan'), +('209.93.228.0', '209.93.231.255', 2147483647, 2147483647, 'US', 'United States'), +('209.93.232.0', '209.93.233.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.93.234.0', '209.93.234.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('209.93.235.0', '209.93.235.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.93.235.128', '209.93.235.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('209.93.236.0', '209.93.236.63', 2147483647, 2147483647, 'TH', 'Thailand'), +('209.93.236.64', '209.93.236.103', 2147483647, 2147483647, 'US', 'United States'), +('209.93.236.104', '209.93.236.111', 2147483647, 2147483647, 'CN', 'China'), +('209.93.236.112', '209.93.236.255', 2147483647, 2147483647, 'US', 'United States'), +('209.93.237.0', '209.93.237.127', 2147483647, 2147483647, 'JP', 'Japan'), +('209.93.237.128', '209.93.237.223', 2147483647, 2147483647, 'US', 'United States'), +('209.93.237.224', '209.93.237.255', 2147483647, 2147483647, 'DE', 'Germany'), +('209.93.238.0', '209.93.238.127', 2147483647, 2147483647, 'US', 'United States'), +('209.93.238.128', '209.93.238.255', 2147483647, 2147483647, 'CN', 'China'), +('209.93.239.0', '209.93.239.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('209.93.240.0', '209.93.240.63', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('209.93.240.64', '209.93.240.127', 2147483647, 2147483647, 'US', 'United States'), +('209.93.240.128', '209.93.240.255', 2147483647, 2147483647, 'CN', 'China'), +('209.93.241.0', '209.93.241.255', 2147483647, 2147483647, 'US', 'United States'), +('209.93.242.0', '209.93.242.63', 2147483647, 2147483647, 'TH', 'Thailand'), +('209.93.242.64', '209.93.242.255', 2147483647, 2147483647, 'US', 'United States'), +('209.93.243.0', '209.93.243.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('209.93.244.0', '209.93.244.255', 2147483647, 2147483647, 'US', 'United States'), +('209.93.245.0', '209.93.245.31', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('209.93.245.32', '209.93.245.63', 2147483647, 2147483647, 'US', 'United States'), +('209.93.245.64', '209.93.245.127', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('209.93.245.128', '209.93.246.255', 2147483647, 2147483647, 'US', 'United States'), +('209.93.247.0', '209.93.247.255', 2147483647, 2147483647, 'JP', 'Japan'), +('209.93.248.0', '209.93.249.255', 2147483647, 2147483647, 'US', 'United States'), +('209.93.250.0', '209.93.250.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('209.93.251.0', '209.93.252.255', 2147483647, 2147483647, 'US', 'United States'), +('209.93.253.0', '209.93.253.255', 2147483647, 2147483647, 'JP', 'Japan'), +('209.93.254.0', '209.93.254.63', 2147483647, 2147483647, 'KR', 'Korea, Republic of'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('209.93.254.64', '209.93.254.127', 2147483647, 2147483647, 'US', 'United States'), +('209.93.254.128', '209.93.254.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('209.93.255.0', '209.93.255.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('209.94.0.0', '209.94.191.255', 2147483647, 2147483647, 'US', 'United States'), +('209.94.192.0', '209.94.223.255', 2147483647, 2147483647, 'TT', 'Trinidad and Tobago'), +('209.94.224.0', '209.95.103.159', 2147483647, 2147483647, 'US', 'United States'), +('209.95.103.160', '209.95.103.191', 2147483647, 2147483647, 'IN', 'India'), +('209.95.103.192', '209.95.124.31', 2147483647, 2147483647, 'US', 'United States'), +('209.95.124.32', '209.95.124.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.95.124.64', '209.95.127.255', 2147483647, 2147483647, 'US', 'United States'), +('209.95.128.0', '209.95.138.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('209.95.139.0', '209.95.147.255', 2147483647, 2147483647, 'US', 'United States'), +('209.95.148.0', '209.95.159.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('209.95.160.0', '209.97.191.255', 2147483647, 2147483647, 'US', 'United States'), +('209.97.192.0', '209.97.192.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.97.193.0', '209.97.193.63', 2147483647, 2147483647, 'A1', 'Anonymous Proxy'), +('209.97.193.64', '209.97.196.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.97.197.0', '209.97.197.127', 2147483647, 2147483647, 'A1', 'Anonymous Proxy'), +('209.97.197.128', '209.97.197.129', 2147483647, 2147483647, 'CA', 'Canada'), +('209.97.197.130', '209.97.197.177', 2147483647, 2147483647, 'A1', 'Anonymous Proxy'), +('209.97.197.178', '209.97.197.179', 2147483647, 2147483647, 'CA', 'Canada'), +('209.97.197.180', '209.97.197.190', 2147483647, 2147483647, 'A1', 'Anonymous Proxy'), +('209.97.197.191', '209.97.197.191', 2147483647, 2147483647, 'CA', 'Canada'), +('209.97.197.192', '209.97.197.255', 2147483647, 2147483647, 'A1', 'Anonymous Proxy'), +('209.97.198.0', '209.97.204.127', 2147483647, 2147483647, 'CA', 'Canada'), +('209.97.204.128', '209.97.204.255', 2147483647, 2147483647, 'A1', 'Anonymous Proxy'), +('209.97.205.0', '209.97.206.127', 2147483647, 2147483647, 'CA', 'Canada'), +('209.97.206.128', '209.97.206.255', 2147483647, 2147483647, 'A1', 'Anonymous Proxy'), +('209.97.207.0', '209.97.207.232', 2147483647, 2147483647, 'CA', 'Canada'), +('209.97.207.233', '209.97.207.233', 2147483647, 2147483647, 'A1', 'Anonymous Proxy'), +('209.97.207.234', '209.97.210.63', 2147483647, 2147483647, 'CA', 'Canada'), +('209.97.210.64', '209.97.210.127', 2147483647, 2147483647, 'A1', 'Anonymous Proxy'), +('209.97.210.128', '209.97.213.33', 2147483647, 2147483647, 'CA', 'Canada'), +('209.97.213.34', '209.97.213.35', 2147483647, 2147483647, 'A1', 'Anonymous Proxy'), +('209.97.213.36', '209.97.223.235', 2147483647, 2147483647, 'CA', 'Canada'), +('209.97.223.236', '209.97.223.237', 2147483647, 2147483647, 'A1', 'Anonymous Proxy'), +('209.97.223.238', '209.97.223.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.97.224.0', '209.98.118.255', 2147483647, 2147483647, 'US', 'United States'), +('209.98.119.0', '209.98.119.31', 2147483647, 2147483647, 'BE', 'Belgium'), +('209.98.119.32', '209.98.119.63', 2147483647, 2147483647, 'AU', 'Australia'), +('209.98.119.64', '209.98.119.95', 2147483647, 2147483647, 'FR', 'France'), +('209.98.119.96', '209.98.119.127', 2147483647, 2147483647, 'KW', 'Kuwait'), +('209.98.119.128', '209.98.119.191', 2147483647, 2147483647, 'US', 'United States'), +('209.98.119.192', '209.98.119.223', 2147483647, 2147483647, 'CA', 'Canada'), +('209.98.119.224', '209.99.223.255', 2147483647, 2147483647, 'US', 'United States'), +('209.99.224.0', '209.99.239.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('209.99.240.0', '209.102.255.255', 2147483647, 2147483647, 'US', 'United States'), +('209.103.0.0', '209.103.63.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.103.64.0', '209.104.63.255', 2147483647, 2147483647, 'US', 'United States'), +('209.104.64.0', '209.104.127.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.104.128.0', '209.104.159.255', 2147483647, 2147483647, 'US', 'United States'), +('209.104.160.0', '209.104.191.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.104.192.0', '209.105.191.255', 2147483647, 2147483647, 'US', 'United States'), +('209.105.192.0', '209.105.201.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.105.202.0', '209.105.202.255', 2147483647, 2147483647, 'US', 'United States'), +('209.105.203.0', '209.105.223.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.105.224.0', '209.107.95.255', 2147483647, 2147483647, 'US', 'United States'), +('209.107.96.0', '209.107.127.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.107.128.0', '209.110.92.255', 2147483647, 2147483647, 'US', 'United States'), +('209.110.93.0', '209.110.93.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('209.110.94.0', '209.111.255.255', 2147483647, 2147483647, 'US', 'United States'), +('209.112.0.0', '209.112.63.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.112.64.0', '209.115.127.255', 2147483647, 2147483647, 'US', 'United States'), +('209.115.128.0', '209.115.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.116.0.0', '209.120.255.255', 2147483647, 2147483647, 'US', 'United States'), +('209.121.0.0', '209.121.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.122.0.0', '209.124.96.255', 2147483647, 2147483647, 'US', 'United States'), +('209.124.97.0', '209.124.97.255', 2147483647, 2147483647, 'GT', 'Guatemala'), +('209.124.98.0', '209.124.99.255', 2147483647, 2147483647, 'SV', 'El Salvador'), +('209.124.100.0', '209.124.101.255', 2147483647, 2147483647, 'NI', 'Nicaragua'), +('209.124.102.0', '209.124.103.127', 2147483647, 2147483647, 'SV', 'El Salvador'), +('209.124.103.128', '209.124.104.255', 2147483647, 2147483647, 'US', 'United States'), +('209.124.105.0', '209.124.107.255', 2147483647, 2147483647, 'NI', 'Nicaragua'), +('209.124.108.0', '209.124.127.255', 2147483647, 2147483647, 'SV', 'El Salvador'), +('209.124.128.0', '209.127.8.159', 2147483647, 2147483647, 'US', 'United States'), +('209.127.8.160', '209.127.8.175', 2147483647, 2147483647, 'PA', 'Panama'), +('209.127.8.176', '209.127.9.191', 2147483647, 2147483647, 'US', 'United States'), +('209.127.9.192', '209.127.9.207', 2147483647, 2147483647, 'VE', 'Venezuela'), +('209.127.9.208', '209.127.9.255', 2147483647, 2147483647, 'US', 'United States'), +('209.127.10.0', '209.127.10.15', 2147483647, 2147483647, 'PA', 'Panama'), +('209.127.10.16', '209.127.11.15', 2147483647, 2147483647, 'US', 'United States'), +('209.127.11.16', '209.127.11.31', 2147483647, 2147483647, 'PA', 'Panama'), +('209.127.11.32', '209.127.17.255', 2147483647, 2147483647, 'US', 'United States'), +('209.127.18.0', '209.127.18.31', 2147483647, 2147483647, 'PA', 'Panama'), +('209.127.18.32', '209.127.18.95', 2147483647, 2147483647, 'US', 'United States'), +('209.127.18.96', '209.127.18.127', 2147483647, 2147483647, 'VE', 'Venezuela'), +('209.127.18.128', '209.127.19.31', 2147483647, 2147483647, 'US', 'United States'), +('209.127.19.32', '209.127.19.63', 2147483647, 2147483647, 'VE', 'Venezuela'), +('209.127.19.64', '209.127.19.127', 2147483647, 2147483647, 'US', 'United States'), +('209.127.19.128', '209.127.19.191', 2147483647, 2147483647, 'PA', 'Panama'), +('209.127.19.192', '209.127.19.223', 2147483647, 2147483647, 'US', 'United States'), +('209.127.19.224', '209.127.19.255', 2147483647, 2147483647, 'PA', 'Panama'), +('209.127.20.0', '209.127.20.127', 2147483647, 2147483647, 'US', 'United States'), +('209.127.20.128', '209.127.20.159', 2147483647, 2147483647, 'PA', 'Panama'), +('209.127.20.160', '209.127.22.31', 2147483647, 2147483647, 'US', 'United States'), +('209.127.22.32', '209.127.22.63', 2147483647, 2147483647, 'PA', 'Panama'), +('209.127.22.64', '209.127.23.95', 2147483647, 2147483647, 'US', 'United States'), +('209.127.23.96', '209.127.23.127', 2147483647, 2147483647, 'VE', 'Venezuela'), +('209.127.23.128', '209.127.24.95', 2147483647, 2147483647, 'US', 'United States'), +('209.127.24.96', '209.127.24.127', 2147483647, 2147483647, 'VE', 'Venezuela'), +('209.127.24.128', '209.127.26.255', 2147483647, 2147483647, 'US', 'United States'), +('209.127.27.0', '209.127.27.63', 2147483647, 2147483647, 'VE', 'Venezuela'), +('209.127.27.64', '209.127.30.127', 2147483647, 2147483647, 'US', 'United States'), +('209.127.30.128', '209.127.30.255', 2147483647, 2147483647, 'PA', 'Panama'), +('209.127.31.0', '209.127.31.63', 2147483647, 2147483647, 'US', 'United States'), +('209.127.31.64', '209.127.31.127', 2147483647, 2147483647, 'PA', 'Panama'), +('209.127.31.128', '209.127.54.255', 2147483647, 2147483647, 'US', 'United States'), +('209.127.55.0', '209.127.55.255', 2147483647, 2147483647, 'PA', 'Panama'), +('209.127.56.0', '209.127.57.255', 2147483647, 2147483647, 'US', 'United States'), +('209.127.58.0', '209.127.58.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('209.127.59.0', '209.127.59.23', 2147483647, 2147483647, 'US', 'United States'), +('209.127.59.24', '209.127.59.31', 2147483647, 2147483647, 'VE', 'Venezuela'), +('209.127.59.32', '209.127.59.87', 2147483647, 2147483647, 'US', 'United States'), +('209.127.59.88', '209.127.59.95', 2147483647, 2147483647, 'VE', 'Venezuela'), +('209.127.59.96', '209.127.79.255', 2147483647, 2147483647, 'US', 'United States'), +('209.127.80.0', '209.127.83.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('209.127.84.0', '209.127.102.255', 2147483647, 2147483647, 'US', 'United States'), +('209.127.103.0', '209.127.103.255', 2147483647, 2147483647, 'PA', 'Panama'), +('209.127.104.0', '209.127.118.255', 2147483647, 2147483647, 'US', 'United States'), +('209.127.119.0', '209.127.127.255', 2147483647, 2147483647, 'PA', 'Panama'), +('209.127.128.0', '209.127.255.255', 2147483647, 2147483647, 'US', 'United States'), +('209.128.0.0', '209.128.63.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.128.64.0', '209.132.99.7', 2147483647, 2147483647, 'US', 'United States'), +('209.132.99.8', '209.132.99.15', 2147483647, 2147483647, 'AU', 'Australia'), +('209.132.99.16', '209.132.219.127', 2147483647, 2147483647, 'US', 'United States'), +('209.132.219.128', '209.132.219.191', 2147483647, 2147483647, 'MC', 'Monaco'), +('209.132.219.192', '209.133.1.255', 2147483647, 2147483647, 'US', 'United States'), +('209.133.2.0', '209.133.2.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.133.3.0', '209.133.3.255', 2147483647, 2147483647, 'US', 'United States'), +('209.133.4.0', '209.133.4.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.133.5.0', '209.133.47.255', 2147483647, 2147483647, 'US', 'United States'), +('209.133.48.0', '209.133.48.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.133.49.0', '209.133.64.175', 2147483647, 2147483647, 'US', 'United States'), +('209.133.64.176', '209.133.64.183', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('209.133.64.184', '209.133.119.255', 2147483647, 2147483647, 'US', 'United States'), +('209.133.120.0', '209.133.120.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.133.121.0', '209.135.63.255', 2147483647, 2147483647, 'US', 'United States'), +('209.135.64.0', '209.135.127.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.135.128.0', '209.136.30.255', 2147483647, 2147483647, 'US', 'United States'), +('209.136.31.0', '209.136.31.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('209.136.32.0', '209.137.141.103', 2147483647, 2147483647, 'US', 'United States'), +('209.137.141.104', '209.137.141.111', 2147483647, 2147483647, 'JP', 'Japan'), +('209.137.141.112', '209.137.142.127', 2147483647, 2147483647, 'US', 'United States'), +('209.137.142.128', '209.137.142.143', 2147483647, 2147483647, 'JP', 'Japan'), +('209.137.142.144', '209.137.146.191', 2147483647, 2147483647, 'US', 'United States'), +('209.137.146.192', '209.137.146.207', 2147483647, 2147483647, 'JP', 'Japan'), +('209.137.146.208', '209.137.146.215', 2147483647, 2147483647, 'US', 'United States'), +('209.137.146.216', '209.137.146.255', 2147483647, 2147483647, 'JP', 'Japan'), +('209.137.147.0', '209.137.147.191', 2147483647, 2147483647, 'US', 'United States'), +('209.137.147.192', '209.137.147.255', 2147483647, 2147483647, 'JP', 'Japan'), +('209.137.148.0', '209.137.151.79', 2147483647, 2147483647, 'US', 'United States'), +('209.137.151.80', '209.137.151.87', 2147483647, 2147483647, 'JP', 'Japan'), +('209.137.151.88', '209.137.153.255', 2147483647, 2147483647, 'US', 'United States'), +('209.137.154.0', '209.137.154.15', 2147483647, 2147483647, 'JP', 'Japan'), +('209.137.154.16', '209.139.191.255', 2147483647, 2147483647, 'US', 'United States'), +('209.139.192.0', '209.139.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.142.0.0', '209.142.191.199', 2147483647, 2147483647, 'US', 'United States'), +('209.142.191.200', '209.142.191.207', 2147483647, 2147483647, 'MO', 'Macau'), +('209.142.191.208', '209.144.149.159', 2147483647, 2147483647, 'US', 'United States'), +('209.144.149.160', '209.144.149.191', 2147483647, 2147483647, 'CA', 'Canada'), +('209.144.149.192', '209.144.160.231', 2147483647, 2147483647, 'US', 'United States'), +('209.144.160.232', '209.144.160.239', 2147483647, 2147483647, 'AU', 'Australia'), +('209.144.160.240', '209.145.95.255', 2147483647, 2147483647, 'US', 'United States'), +('209.145.96.0', '209.145.127.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.145.128.0', '209.145.191.255', 2147483647, 2147483647, 'US', 'United States'), +('209.146.0.0', '209.146.127.255', 2147483647, 2147483647, 'US', 'United States'), +('209.146.128.0', '209.146.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.147.0.0', '209.148.5.255', 2147483647, 2147483647, 'US', 'United States'), +('209.148.6.0', '209.148.6.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.148.7.0', '209.148.63.255', 2147483647, 2147483647, 'US', 'United States'), +('209.148.64.0', '209.148.95.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.148.96.0', '209.148.127.255', 2147483647, 2147483647, 'US', 'United States'), +('209.148.128.0', '209.148.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.149.0.0', '209.150.255.255', 2147483647, 2147483647, 'US', 'United States'), +('209.151.0.0', '209.151.31.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.151.32.0', '209.151.66.79', 2147483647, 2147483647, 'US', 'United States'), +('209.151.66.80', '209.151.66.111', 2147483647, 2147483647, 'TR', 'Turkey'), +('209.151.66.112', '209.151.66.119', 2147483647, 2147483647, 'US', 'United States'), +('209.151.66.120', '209.151.66.127', 2147483647, 2147483647, 'MY', 'Malaysia'), +('209.151.66.128', '209.151.67.23', 2147483647, 2147483647, 'US', 'United States'), +('209.151.67.24', '209.151.67.39', 2147483647, 2147483647, 'AE', 'United Arab Emirates'), +('209.151.67.40', '209.151.84.79', 2147483647, 2147483647, 'US', 'United States'), +('209.151.84.80', '209.151.84.95', 2147483647, 2147483647, 'CA', 'Canada'), +('209.151.84.96', '209.151.91.255', 2147483647, 2147483647, 'US', 'United States'), +('209.151.92.0', '209.151.92.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('209.151.93.0', '209.151.94.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.151.95.0', '209.151.127.255', 2147483647, 2147483647, 'US', 'United States'), +('209.151.128.0', '209.151.143.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.151.144.0', '209.151.175.255', 2147483647, 2147483647, 'US', 'United States'), +('209.151.192.0', '209.153.191.255', 2147483647, 2147483647, 'US', 'United States'), +('209.153.192.0', '209.153.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.154.0.0', '209.159.143.255', 2147483647, 2147483647, 'US', 'United States'), +('209.159.160.0', '209.159.162.7', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('209.159.162.8', '209.159.162.15', 2147483647, 2147483647, 'NG', 'Nigeria'), +('209.159.162.16', '209.159.162.31', 2147483647, 2147483647, 'US', 'United States'), +('209.159.162.32', '209.159.162.47', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('209.159.162.48', '209.159.162.63', 2147483647, 2147483647, 'NG', 'Nigeria'), +('209.159.162.64', '209.159.162.95', 2147483647, 2147483647, 'EC', 'Ecuador'), +('209.159.162.96', '209.159.162.175', 2147483647, 2147483647, 'NG', 'Nigeria'), +('209.159.162.176', '209.159.162.191', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('209.159.162.192', '209.159.162.223', 2147483647, 2147483647, 'US', 'United States'), +('209.159.162.224', '209.159.163.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('209.159.164.0', '209.159.164.255', 2147483647, 2147483647, 'NG', 'Nigeria'), +('209.159.165.0', '209.159.165.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('209.159.166.0', '209.159.166.255', 2147483647, 2147483647, 'NG', 'Nigeria'), +('209.159.167.0', '209.159.169.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('209.159.170.0', '209.159.171.255', 2147483647, 2147483647, 'NG', 'Nigeria'), +('209.159.172.0', '209.159.172.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('209.159.173.0', '209.159.173.255', 2147483647, 2147483647, 'NG', 'Nigeria'), +('209.159.174.0', '209.159.174.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('209.159.175.0', '209.159.175.255', 2147483647, 2147483647, 'NG', 'Nigeria'), +('209.159.176.0', '209.159.191.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.159.192.0', '209.161.191.255', 2147483647, 2147483647, 'US', 'United States'), +('209.161.192.0', '209.161.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.162.0.0', '209.162.159.255', 2147483647, 2147483647, 'US', 'United States'), +('209.162.160.0', '209.162.175.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.162.176.0', '209.162.223.255', 2147483647, 2147483647, 'US', 'United States'), +('209.162.224.0', '209.162.238.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.162.239.0', '209.162.239.255', 2147483647, 2147483647, 'US', 'United States'), +('209.162.240.0', '209.162.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.163.0.0', '209.165.227.255', 2147483647, 2147483647, 'US', 'United States'), +('209.165.228.0', '209.165.239.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.165.240.0', '209.166.255.255', 2147483647, 2147483647, 'US', 'United States'), +('209.167.0.0', '209.167.3.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.4.0', '209.167.4.255', 2147483647, 2147483647, 'US', 'United States'), +('209.167.5.0', '209.167.6.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.7.0', '209.167.9.255', 2147483647, 2147483647, 'US', 'United States'), +('209.167.10.0', '209.167.10.95', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.10.96', '209.167.10.159', 2147483647, 2147483647, 'US', 'United States'), +('209.167.10.160', '209.167.19.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.20.0', '209.167.20.255', 2147483647, 2147483647, 'US', 'United States'), +('209.167.21.0', '209.167.21.223', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.21.224', '209.167.21.239', 2147483647, 2147483647, 'US', 'United States'), +('209.167.21.240', '209.167.23.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.24.0', '209.167.25.255', 2147483647, 2147483647, 'US', 'United States'), +('209.167.26.0', '209.167.26.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.27.0', '209.167.28.255', 2147483647, 2147483647, 'US', 'United States'), +('209.167.29.0', '209.167.29.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.30.0', '209.167.30.255', 2147483647, 2147483647, 'US', 'United States'), +('209.167.31.0', '209.167.34.111', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.34.112', '209.167.34.127', 2147483647, 2147483647, 'US', 'United States'), +('209.167.34.128', '209.167.34.175', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.34.176', '209.167.34.191', 2147483647, 2147483647, 'US', 'United States'), +('209.167.34.192', '209.167.36.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.37.0', '209.167.37.255', 2147483647, 2147483647, 'US', 'United States'), +('209.167.38.0', '209.167.38.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.39.0', '209.167.39.15', 2147483647, 2147483647, 'US', 'United States'), +('209.167.39.16', '209.167.39.79', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.39.80', '209.167.39.95', 2147483647, 2147483647, 'US', 'United States'), +('209.167.39.96', '209.167.39.223', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.39.224', '209.167.39.239', 2147483647, 2147483647, 'US', 'United States'), +('209.167.39.240', '209.167.41.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.42.0', '209.167.42.31', 2147483647, 2147483647, 'US', 'United States'), +('209.167.42.32', '209.167.42.63', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.42.64', '209.167.42.95', 2147483647, 2147483647, 'US', 'United States'), +('209.167.42.96', '209.167.50.207', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.50.208', '209.167.50.223', 2147483647, 2147483647, 'US', 'United States'), +('209.167.50.224', '209.167.50.239', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.50.240', '209.167.51.31', 2147483647, 2147483647, 'US', 'United States'), +('209.167.51.32', '209.167.51.95', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.51.96', '209.167.51.127', 2147483647, 2147483647, 'US', 'United States'), +('209.167.51.128', '209.167.51.159', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.51.160', '209.167.51.191', 2147483647, 2147483647, 'US', 'United States'), +('209.167.51.192', '209.167.52.127', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.52.128', '209.167.52.143', 2147483647, 2147483647, 'US', 'United States'), +('209.167.52.144', '209.167.52.175', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.52.176', '209.167.52.207', 2147483647, 2147483647, 'US', 'United States'), +('209.167.52.208', '209.167.55.175', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.55.176', '209.167.55.191', 2147483647, 2147483647, 'US', 'United States'), +('209.167.55.192', '209.167.55.207', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.55.208', '209.167.55.223', 2147483647, 2147483647, 'US', 'United States'), +('209.167.55.224', '209.167.57.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.58.0', '209.167.58.255', 2147483647, 2147483647, 'US', 'United States'), +('209.167.59.0', '209.167.59.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.60.0', '209.167.61.255', 2147483647, 2147483647, 'US', 'United States'), +('209.167.62.0', '209.167.65.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.66.0', '209.167.66.255', 2147483647, 2147483647, 'US', 'United States'), +('209.167.67.0', '209.167.67.63', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.67.64', '209.167.67.127', 2147483647, 2147483647, 'IL', 'Israel'), +('209.167.67.128', '209.167.70.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.71.0', '209.167.71.15', 2147483647, 2147483647, 'US', 'United States'), +('209.167.71.16', '209.167.72.95', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.72.96', '209.167.72.111', 2147483647, 2147483647, 'US', 'United States'), +('209.167.72.112', '209.167.72.191', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.72.192', '209.167.72.255', 2147483647, 2147483647, 'US', 'United States'), +('209.167.73.0', '209.167.73.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.74.0', '209.167.74.255', 2147483647, 2147483647, 'US', 'United States'), +('209.167.75.0', '209.167.78.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.79.0', '209.167.80.255', 2147483647, 2147483647, 'US', 'United States'), +('209.167.81.0', '209.167.81.63', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.81.64', '209.167.81.127', 2147483647, 2147483647, 'US', 'United States'), +('209.167.81.128', '209.167.86.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.87.0', '209.167.87.255', 2147483647, 2147483647, 'US', 'United States'), +('209.167.88.0', '209.167.94.31', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.94.32', '209.167.94.63', 2147483647, 2147483647, 'US', 'United States'), +('209.167.94.64', '209.167.96.127', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.96.128', '209.167.96.255', 2147483647, 2147483647, 'US', 'United States'), +('209.167.97.0', '209.167.101.71', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.101.72', '209.167.101.79', 2147483647, 2147483647, 'US', 'United States'), +('209.167.101.80', '209.167.101.191', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.101.192', '209.167.101.199', 2147483647, 2147483647, 'US', 'United States'), +('209.167.101.200', '209.167.101.215', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.101.216', '209.167.101.223', 2147483647, 2147483647, 'US', 'United States'), +('209.167.101.224', '209.167.101.231', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.101.232', '209.167.101.255', 2147483647, 2147483647, 'US', 'United States'), +('209.167.102.0', '209.167.102.31', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.102.32', '209.167.102.47', 2147483647, 2147483647, 'US', 'United States'), +('209.167.102.48', '209.167.102.127', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.102.128', '209.167.102.143', 2147483647, 2147483647, 'US', 'United States'), +('209.167.102.144', '209.167.102.223', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.102.224', '209.167.102.239', 2147483647, 2147483647, 'US', 'United States'), +('209.167.102.240', '209.167.103.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.104.0', '209.167.105.255', 2147483647, 2147483647, 'US', 'United States'), +('209.167.106.0', '209.167.110.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.111.0', '209.167.111.255', 2147483647, 2147483647, 'US', 'United States'), +('209.167.112.0', '209.167.124.63', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.124.64', '209.167.124.95', 2147483647, 2147483647, 'US', 'United States'), +('209.167.124.96', '209.167.125.95', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.125.96', '209.167.125.111', 2147483647, 2147483647, 'US', 'United States'), +('209.167.125.112', '209.167.130.47', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.130.48', '209.167.130.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.167.130.64', '209.167.130.127', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.130.128', '209.167.130.143', 2147483647, 2147483647, 'US', 'United States'), +('209.167.130.144', '209.167.130.175', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.130.176', '209.167.130.191', 2147483647, 2147483647, 'US', 'United States'), +('209.167.130.192', '209.167.130.207', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.130.208', '209.167.130.223', 2147483647, 2147483647, 'US', 'United States'), +('209.167.130.224', '209.167.132.143', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.132.144', '209.167.132.159', 2147483647, 2147483647, 'US', 'United States'), +('209.167.132.160', '209.167.133.7', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.133.8', '209.167.133.23', 2147483647, 2147483647, 'US', 'United States'), +('209.167.133.24', '209.167.133.31', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.133.32', '209.167.133.39', 2147483647, 2147483647, 'US', 'United States'), +('209.167.133.40', '209.167.133.71', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.133.72', '209.167.133.79', 2147483647, 2147483647, 'US', 'United States'), +('209.167.133.80', '209.167.133.87', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.133.88', '209.167.133.95', 2147483647, 2147483647, 'US', 'United States'), +('209.167.133.96', '209.167.133.119', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.133.120', '209.167.133.135', 2147483647, 2147483647, 'US', 'United States'), +('209.167.133.136', '209.167.136.63', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.136.64', '209.167.136.95', 2147483647, 2147483647, 'US', 'United States'), +('209.167.136.96', '209.167.136.159', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.136.160', '209.167.136.191', 2147483647, 2147483647, 'US', 'United States'), +('209.167.136.192', '209.167.136.223', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.136.224', '209.167.137.127', 2147483647, 2147483647, 'US', 'United States'), +('209.167.137.128', '209.167.139.127', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.139.128', '209.167.139.159', 2147483647, 2147483647, 'US', 'United States'), +('209.167.139.160', '209.167.142.95', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.142.96', '209.167.142.127', 2147483647, 2147483647, 'US', 'United States'), +('209.167.142.128', '209.167.146.127', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.146.128', '209.167.146.255', 2147483647, 2147483647, 'US', 'United States'), +('209.167.147.0', '209.167.147.15', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.147.16', '209.167.147.23', 2147483647, 2147483647, 'US', 'United States'), +('209.167.147.24', '209.167.147.39', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.147.40', '209.167.147.47', 2147483647, 2147483647, 'US', 'United States'), +('209.167.147.48', '209.167.147.63', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.147.64', '209.167.147.71', 2147483647, 2147483647, 'US', 'United States'), +('209.167.147.72', '209.167.147.79', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.147.80', '209.167.147.87', 2147483647, 2147483647, 'US', 'United States'), +('209.167.147.88', '209.167.147.95', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.147.96', '209.167.147.111', 2147483647, 2147483647, 'US', 'United States'), +('209.167.147.112', '209.167.147.119', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.147.120', '209.167.147.143', 2147483647, 2147483647, 'US', 'United States'), +('209.167.147.144', '209.167.147.151', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.147.152', '209.167.147.159', 2147483647, 2147483647, 'US', 'United States'), +('209.167.147.160', '209.167.147.183', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.147.184', '209.167.147.191', 2147483647, 2147483647, 'US', 'United States'), +('209.167.147.192', '209.167.147.199', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.147.200', '209.167.147.207', 2147483647, 2147483647, 'US', 'United States'), +('209.167.147.208', '209.167.155.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.156.0', '209.167.156.7', 2147483647, 2147483647, 'US', 'United States'), +('209.167.156.8', '209.167.156.71', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.156.72', '209.167.156.95', 2147483647, 2147483647, 'US', 'United States'), +('209.167.156.96', '209.167.156.103', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.156.104', '209.167.156.111', 2147483647, 2147483647, 'US', 'United States'), +('209.167.156.112', '209.167.156.127', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.156.128', '209.167.156.167', 2147483647, 2147483647, 'US', 'United States'), +('209.167.156.168', '209.167.156.191', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.156.192', '209.167.156.199', 2147483647, 2147483647, 'US', 'United States'), +('209.167.156.200', '209.167.156.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.157.0', '209.167.157.255', 2147483647, 2147483647, 'US', 'United States'), +('209.167.158.0', '209.167.160.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.161.0', '209.167.161.255', 2147483647, 2147483647, 'US', 'United States'), +('209.167.162.0', '209.167.162.191', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.162.192', '209.167.162.207', 2147483647, 2147483647, 'SE', 'Sweden'), +('209.167.162.208', '209.167.163.127', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.163.128', '209.167.163.159', 2147483647, 2147483647, 'US', 'United States'), +('209.167.163.160', '209.167.163.239', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.163.240', '209.167.163.255', 2147483647, 2147483647, 'US', 'United States'), +('209.167.164.0', '209.167.169.127', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.169.128', '209.167.169.191', 2147483647, 2147483647, 'US', 'United States'), +('209.167.169.192', '209.167.171.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.172.0', '209.167.172.63', 2147483647, 2147483647, 'US', 'United States'), +('209.167.172.64', '209.167.175.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.176.0', '209.167.176.15', 2147483647, 2147483647, 'US', 'United States'), +('209.167.176.16', '209.167.177.95', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.177.96', '209.167.177.127', 2147483647, 2147483647, 'US', 'United States'), +('209.167.177.128', '209.167.178.207', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.178.208', '209.167.178.223', 2147483647, 2147483647, 'US', 'United States'), +('209.167.178.224', '209.167.180.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.181.0', '209.167.181.255', 2147483647, 2147483647, 'US', 'United States'), +('209.167.182.0', '209.167.183.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.184.0', '209.167.184.31', 2147483647, 2147483647, 'US', 'United States'), +('209.167.184.32', '209.167.184.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.185.0', '209.167.185.15', 2147483647, 2147483647, 'US', 'United States'), +('209.167.185.16', '209.167.185.111', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.185.112', '209.167.185.127', 2147483647, 2147483647, 'US', 'United States'), +('209.167.185.128', '209.167.185.159', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.185.160', '209.167.185.175', 2147483647, 2147483647, 'US', 'United States'), +('209.167.185.176', '209.167.185.191', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.185.192', '209.167.185.207', 2147483647, 2147483647, 'US', 'United States'), +('209.167.185.208', '209.167.185.223', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.185.224', '209.167.185.239', 2147483647, 2147483647, 'US', 'United States'), +('209.167.185.240', '209.167.187.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.188.0', '209.167.188.255', 2147483647, 2147483647, 'US', 'United States'), +('209.167.189.0', '209.167.191.47', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.191.48', '209.167.191.63', 2147483647, 2147483647, 'US', 'United States'), +('209.167.191.64', '209.167.191.111', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.191.112', '209.167.191.127', 2147483647, 2147483647, 'US', 'United States'), +('209.167.191.128', '209.167.191.143', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.191.144', '209.167.191.159', 2147483647, 2147483647, 'NL', 'Netherlands'), +('209.167.191.160', '209.167.191.207', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.191.208', '209.167.191.223', 2147483647, 2147483647, 'US', 'United States'), +('209.167.191.224', '209.167.191.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.192.0', '209.167.192.15', 2147483647, 2147483647, 'US', 'United States'), +('209.167.192.16', '209.167.192.111', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.192.112', '209.167.192.127', 2147483647, 2147483647, 'US', 'United States'), +('209.167.192.128', '209.167.192.159', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.192.160', '209.167.192.175', 2147483647, 2147483647, 'US', 'United States'), +('209.167.192.176', '209.167.193.127', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.193.128', '209.167.193.255', 2147483647, 2147483647, 'US', 'United States'), +('209.167.194.0', '209.167.200.63', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.200.64', '209.167.200.127', 2147483647, 2147483647, 'US', 'United States'), +('209.167.200.128', '209.167.202.7', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.202.8', '209.167.202.15', 2147483647, 2147483647, 'US', 'United States'), +('209.167.202.16', '209.167.202.135', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.202.136', '209.167.202.159', 2147483647, 2147483647, 'US', 'United States'), +('209.167.202.160', '209.167.202.199', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.202.200', '209.167.202.215', 2147483647, 2147483647, 'US', 'United States'), +('209.167.202.216', '209.167.202.239', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.202.240', '209.167.202.247', 2147483647, 2147483647, 'US', 'United States'), +('209.167.202.248', '209.167.204.127', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.204.128', '209.167.204.255', 2147483647, 2147483647, 'US', 'United States'), +('209.167.205.0', '209.167.212.7', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.212.8', '209.167.212.15', 2147483647, 2147483647, 'US', 'United States'), +('209.167.212.16', '209.167.212.47', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.212.48', '209.167.212.55', 2147483647, 2147483647, 'US', 'United States'), +('209.167.212.56', '209.167.212.63', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.212.64', '209.167.212.71', 2147483647, 2147483647, 'US', 'United States'), +('209.167.212.72', '209.167.212.79', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.212.80', '209.167.212.87', 2147483647, 2147483647, 'US', 'United States'), +('209.167.212.88', '209.167.212.111', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.212.112', '209.167.212.135', 2147483647, 2147483647, 'US', 'United States'), +('209.167.212.136', '209.167.212.143', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.212.144', '209.167.212.151', 2147483647, 2147483647, 'US', 'United States'), +('209.167.212.152', '209.167.212.159', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.212.160', '209.167.212.167', 2147483647, 2147483647, 'NO', 'Norway'), +('209.167.212.168', '209.167.212.207', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.212.208', '209.167.212.215', 2147483647, 2147483647, 'US', 'United States'), +('209.167.212.216', '209.167.212.223', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.212.224', '209.167.212.247', 2147483647, 2147483647, 'US', 'United States'), +('209.167.212.248', '209.167.216.63', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.216.64', '209.167.216.127', 2147483647, 2147483647, 'US', 'United States'), +('209.167.216.128', '209.167.216.191', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.216.192', '209.167.216.255', 2147483647, 2147483647, 'US', 'United States'), +('209.167.217.0', '209.167.217.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.218.0', '209.167.218.63', 2147483647, 2147483647, 'US', 'United States'), +('209.167.218.64', '209.167.218.127', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.218.128', '209.167.218.191', 2147483647, 2147483647, 'US', 'United States'), +('209.167.218.192', '209.167.219.31', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.219.32', '209.167.219.63', 2147483647, 2147483647, 'US', 'United States'), +('209.167.219.64', '209.167.219.159', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.219.160', '209.167.219.191', 2147483647, 2147483647, 'KW', 'Kuwait'), +('209.167.219.192', '209.167.221.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.222.0', '209.167.222.127', 2147483647, 2147483647, 'US', 'United States'), +('209.167.222.128', '209.167.223.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.224.0', '209.167.227.255', 2147483647, 2147483647, 'US', 'United States'), +('209.167.228.0', '209.167.232.191', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.232.192', '209.167.232.255', 2147483647, 2147483647, 'US', 'United States'), +('209.167.233.0', '209.167.233.15', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.233.16', '209.167.233.31', 2147483647, 2147483647, 'US', 'United States'), +('209.167.233.32', '209.167.233.79', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.233.80', '209.167.233.95', 2147483647, 2147483647, 'US', 'United States'), +('209.167.233.96', '209.167.233.127', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.233.128', '209.167.233.143', 2147483647, 2147483647, 'US', 'United States'), +('209.167.233.144', '209.167.238.63', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.238.64', '209.167.238.95', 2147483647, 2147483647, 'US', 'United States'), +('209.167.238.96', '209.167.240.127', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.240.128', '209.167.240.255', 2147483647, 2147483647, 'US', 'United States'), +('209.167.241.0', '209.167.242.63', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.242.64', '209.167.242.127', 2147483647, 2147483647, 'US', 'United States'), +('209.167.242.128', '209.167.242.191', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.242.192', '209.167.242.255', 2147483647, 2147483647, 'US', 'United States'), +('209.167.243.0', '209.167.244.79', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.244.80', '209.167.244.255', 2147483647, 2147483647, 'US', 'United States'), +('209.167.245.0', '209.167.245.127', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.245.128', '209.167.245.191', 2147483647, 2147483647, 'US', 'United States'), +('209.167.245.192', '209.167.246.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.247.0', '209.167.247.127', 2147483647, 2147483647, 'US', 'United States'), +('209.167.247.128', '209.167.250.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.251.0', '209.167.251.255', 2147483647, 2147483647, 'US', 'United States'), +('209.167.252.0', '209.167.254.47', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.254.48', '209.167.254.63', 2147483647, 2147483647, 'US', 'United States'), +('209.167.254.64', '209.167.254.79', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.254.80', '209.167.254.87', 2147483647, 2147483647, 'US', 'United States'), +('209.167.254.88', '209.167.254.103', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.254.104', '209.167.254.111', 2147483647, 2147483647, 'US', 'United States'), +('209.167.254.112', '209.167.254.167', 2147483647, 2147483647, 'CA', 'Canada'), +('209.167.254.168', '209.167.254.183', 2147483647, 2147483647, 'US', 'United States'), +('209.167.254.184', '209.167.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.168.0.0', '209.169.36.223', 2147483647, 2147483647, 'US', 'United States'), +('209.169.36.224', '209.169.36.239', 2147483647, 2147483647, 'BS', 'Bahamas'), +('209.169.36.240', '209.169.38.215', 2147483647, 2147483647, 'US', 'United States'), +('209.169.38.216', '209.169.38.223', 2147483647, 2147483647, 'KY', 'Cayman Islands'), +('209.169.38.224', '209.169.39.223', 2147483647, 2147483647, 'US', 'United States'), +('209.169.39.224', '209.169.39.239', 2147483647, 2147483647, 'BZ', 'Belize'), +('209.169.39.240', '209.169.40.207', 2147483647, 2147483647, 'US', 'United States'), +('209.169.40.208', '209.169.40.215', 2147483647, 2147483647, 'GT', 'Guatemala'), +('209.169.40.216', '209.169.40.223', 2147483647, 2147483647, 'VI', 'Virgin Islands, U.S.'), +('209.169.40.224', '209.169.41.207', 2147483647, 2147483647, 'US', 'United States'), +('209.169.41.208', '209.169.41.215', 2147483647, 2147483647, 'GT', 'Guatemala'), +('209.169.41.216', '209.169.127.255', 2147483647, 2147483647, 'US', 'United States'), +('209.169.128.0', '209.169.191.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.169.192.0', '209.170.67.255', 2147483647, 2147483647, 'US', 'United States'), +('209.170.68.0', '209.170.69.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('209.170.70.0', '209.170.71.255', 2147483647, 2147483647, 'US', 'United States'), +('209.170.72.0', '209.170.75.127', 2147483647, 2147483647, 'SE', 'Sweden'), +('209.170.75.128', '209.170.75.255', 2147483647, 2147483647, 'US', 'United States'), +('209.170.76.0', '209.170.83.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('209.170.84.0', '209.170.85.255', 2147483647, 2147483647, 'US', 'United States'), +('209.170.86.0', '209.170.88.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('209.170.89.0', '209.170.89.255', 2147483647, 2147483647, 'DE', 'Germany'), +('209.170.90.0', '209.170.91.127', 2147483647, 2147483647, 'SE', 'Sweden'), +('209.170.91.128', '209.170.91.255', 2147483647, 2147483647, 'US', 'United States'), +('209.170.92.0', '209.170.92.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('209.170.93.0', '209.170.93.255', 2147483647, 2147483647, 'US', 'United States'), +('209.170.94.0', '209.170.95.31', 2147483647, 2147483647, 'SE', 'Sweden'), +('209.170.95.32', '209.170.95.63', 2147483647, 2147483647, 'DE', 'Germany'), +('209.170.95.64', '209.170.95.255', 2147483647, 2147483647, 'US', 'United States'), +('209.170.96.0', '209.170.96.63', 2147483647, 2147483647, 'SE', 'Sweden'), +('209.170.96.64', '209.170.96.127', 2147483647, 2147483647, 'MA', 'Morocco'), +('209.170.96.128', '209.170.96.191', 2147483647, 2147483647, 'DE', 'Germany'), +('209.170.96.192', '209.170.96.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('209.170.97.0', '209.170.97.255', 2147483647, 2147483647, 'US', 'United States'), +('209.170.98.0', '209.170.100.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('209.170.101.0', '209.170.101.255', 2147483647, 2147483647, 'US', 'United States'), +('209.170.102.0', '209.170.103.143', 2147483647, 2147483647, 'SE', 'Sweden'), +('209.170.103.144', '209.170.103.159', 2147483647, 2147483647, 'US', 'United States'), +('209.170.103.160', '209.170.103.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('209.170.104.0', '209.170.105.63', 2147483647, 2147483647, 'US', 'United States'), +('209.170.105.64', '209.170.107.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('209.170.108.0', '209.170.111.255', 2147483647, 2147483647, 'US', 'United States'), +('209.170.112.0', '209.170.112.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('209.170.113.0', '209.170.113.255', 2147483647, 2147483647, 'US', 'United States'), +('209.170.114.0', '209.170.114.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.170.115.0', '209.170.119.15', 2147483647, 2147483647, 'US', 'United States'), +('209.170.119.16', '209.170.119.127', 2147483647, 2147483647, 'SE', 'Sweden'), +('209.170.119.128', '209.170.120.63', 2147483647, 2147483647, 'US', 'United States'), +('209.170.120.64', '209.170.125.103', 2147483647, 2147483647, 'SE', 'Sweden'), +('209.170.125.104', '209.170.125.119', 2147483647, 2147483647, 'US', 'United States'), +('209.170.125.120', '209.170.125.199', 2147483647, 2147483647, 'SE', 'Sweden'), +('209.170.125.200', '209.170.125.207', 2147483647, 2147483647, 'IL', 'Israel'), +('209.170.125.208', '209.170.127.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('209.170.128.0', '209.170.255.255', 2147483647, 2147483647, 'US', 'United States'), +('209.171.0.0', '209.171.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.172.0.0', '209.172.31.255', 2147483647, 2147483647, 'US', 'United States'), +('209.172.32.0', '209.172.63.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.172.64.0', '209.176.66.111', 2147483647, 2147483647, 'US', 'United States'), +('209.176.66.112', '209.176.66.127', 2147483647, 2147483647, 'CA', 'Canada'), +('209.176.66.128', '209.176.67.63', 2147483647, 2147483647, 'US', 'United States'), +('209.176.67.64', '209.176.67.95', 2147483647, 2147483647, 'CA', 'Canada'), +('209.176.67.96', '209.176.68.135', 2147483647, 2147483647, 'US', 'United States'), +('209.176.68.136', '209.176.68.143', 2147483647, 2147483647, 'CA', 'Canada'), +('209.176.68.144', '209.176.71.255', 2147483647, 2147483647, 'US', 'United States'), +('209.176.72.0', '209.176.73.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.176.74.0', '209.177.71.255', 2147483647, 2147483647, 'US', 'United States'), +('209.177.96.0', '209.177.111.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.177.112.0', '209.177.146.63', 2147483647, 2147483647, 'US', 'United States'), +('209.177.146.64', '209.177.146.127', 2147483647, 2147483647, 'AR', 'Argentina'), +('209.177.146.128', '209.177.146.191', 2147483647, 2147483647, 'US', 'United States'), +('209.177.146.192', '209.177.146.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('209.177.147.0', '209.177.147.255', 2147483647, 2147483647, 'AU', 'Australia'), +('209.177.148.0', '209.177.148.175', 2147483647, 2147483647, 'US', 'United States'), +('209.177.148.176', '209.177.148.183', 2147483647, 2147483647, 'AU', 'Australia'), +('209.177.148.184', '209.177.150.255', 2147483647, 2147483647, 'US', 'United States'), +('209.177.151.0', '209.177.151.255', 2147483647, 2147483647, 'PA', 'Panama'), +('209.177.152.0', '209.177.152.175', 2147483647, 2147483647, 'US', 'United States'), +('209.177.152.176', '209.177.152.183', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.177.152.184', '209.182.35.63', 2147483647, 2147483647, 'US', 'United States'), +('209.182.35.64', '209.182.35.127', 2147483647, 2147483647, 'IN', 'India'), +('209.182.35.128', '209.182.56.191', 2147483647, 2147483647, 'US', 'United States'), +('209.182.56.192', '209.182.56.255', 2147483647, 2147483647, 'DE', 'Germany'), +('209.182.57.0', '209.182.59.255', 2147483647, 2147483647, 'US', 'United States'), +('209.182.60.0', '209.182.60.255', 2147483647, 2147483647, 'IN', 'India'), +('209.182.61.0', '209.182.61.127', 2147483647, 2147483647, 'US', 'United States'), +('209.182.61.128', '209.182.61.255', 2147483647, 2147483647, 'IN', 'India'), +('209.182.62.0', '209.182.62.63', 2147483647, 2147483647, 'DE', 'Germany'), +('209.182.62.64', '209.182.62.255', 2147483647, 2147483647, 'US', 'United States'), +('209.182.63.0', '209.182.63.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('209.182.64.0', '209.182.255.255', 2147483647, 2147483647, 'US', 'United States'), +('209.183.0.0', '209.183.31.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.183.32.0', '209.183.127.255', 2147483647, 2147483647, 'US', 'United States'), +('209.183.128.0', '209.183.159.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.183.160.0', '209.187.255.255', 2147483647, 2147483647, 'US', 'United States'), +('209.188.0.0', '209.188.0.63', 2147483647, 2147483647, 'CY', 'Cyprus'), +('209.188.0.64', '209.188.1.239', 2147483647, 2147483647, 'US', 'United States'), +('209.188.1.240', '209.188.1.255', 2147483647, 2147483647, 'CY', 'Cyprus'), +('209.188.2.0', '209.188.6.63', 2147483647, 2147483647, 'US', 'United States'), +('209.188.6.64', '209.188.6.127', 2147483647, 2147483647, 'AU', 'Australia'), +('209.188.6.128', '209.188.6.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('209.188.7.0', '209.188.13.255', 2147483647, 2147483647, 'US', 'United States'), +('209.188.14.0', '209.188.14.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.188.15.0', '209.188.22.127', 2147483647, 2147483647, 'US', 'United States'), +('209.188.22.128', '209.188.22.159', 2147483647, 2147483647, 'NL', 'Netherlands'), +('209.188.22.160', '209.188.24.255', 2147483647, 2147483647, 'US', 'United States'), +('209.188.25.0', '209.188.25.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.188.26.0', '209.188.31.31', 2147483647, 2147483647, 'US', 'United States'), +('209.188.31.32', '209.188.31.63', 2147483647, 2147483647, 'TH', 'Thailand'), +('209.188.31.64', '209.190.3.79', 2147483647, 2147483647, 'US', 'United States'), +('209.190.3.80', '209.190.3.87', 2147483647, 2147483647, 'IT', 'Italy'), +('209.190.3.88', '209.190.4.167', 2147483647, 2147483647, 'US', 'United States'), +('209.190.4.168', '209.190.4.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.190.4.176', '209.190.6.247', 2147483647, 2147483647, 'US', 'United States'), +('209.190.6.248', '209.190.6.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('209.190.7.0', '209.190.8.7', 2147483647, 2147483647, 'US', 'United States'), +('209.190.8.8', '209.190.8.15', 2147483647, 2147483647, 'GT', 'Guatemala'), +('209.190.8.16', '209.190.8.191', 2147483647, 2147483647, 'US', 'United States'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('209.190.8.192', '209.190.8.199', 2147483647, 2147483647, 'CL', 'Chile'), +('209.190.8.200', '209.190.9.127', 2147483647, 2147483647, 'US', 'United States'), +('209.190.9.128', '209.190.9.135', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.190.9.136', '209.190.16.15', 2147483647, 2147483647, 'US', 'United States'), +('209.190.16.16', '209.190.16.23', 2147483647, 2147483647, 'KW', 'Kuwait'), +('209.190.16.24', '209.190.17.7', 2147483647, 2147483647, 'US', 'United States'), +('209.190.17.8', '209.190.17.15', 2147483647, 2147483647, 'MY', 'Malaysia'), +('209.190.17.16', '209.190.17.103', 2147483647, 2147483647, 'US', 'United States'), +('209.190.17.104', '209.190.17.111', 2147483647, 2147483647, 'TK', 'Tokelau'), +('209.190.17.112', '209.190.22.103', 2147483647, 2147483647, 'US', 'United States'), +('209.190.22.104', '209.190.22.111', 2147483647, 2147483647, 'PH', 'Philippines'), +('209.190.22.112', '209.190.22.159', 2147483647, 2147483647, 'US', 'United States'), +('209.190.22.160', '209.190.22.167', 2147483647, 2147483647, 'CA', 'Canada'), +('209.190.22.168', '209.190.22.175', 2147483647, 2147483647, 'TH', 'Thailand'), +('209.190.22.176', '209.190.22.183', 2147483647, 2147483647, 'US', 'United States'), +('209.190.22.184', '209.190.22.191', 2147483647, 2147483647, 'AR', 'Argentina'), +('209.190.22.192', '209.190.23.135', 2147483647, 2147483647, 'US', 'United States'), +('209.190.23.136', '209.190.23.143', 2147483647, 2147483647, 'DO', 'Dominican Republic'), +('209.190.23.144', '209.190.24.87', 2147483647, 2147483647, 'US', 'United States'), +('209.190.24.88', '209.190.24.95', 2147483647, 2147483647, 'CA', 'Canada'), +('209.190.24.96', '209.190.24.103', 2147483647, 2147483647, 'US', 'United States'), +('209.190.24.104', '209.190.24.111', 2147483647, 2147483647, 'CN', 'China'), +('209.190.24.112', '209.190.25.135', 2147483647, 2147483647, 'US', 'United States'), +('209.190.25.136', '209.190.25.143', 2147483647, 2147483647, 'AE', 'United Arab Emirates'), +('209.190.25.144', '209.190.25.159', 2147483647, 2147483647, 'US', 'United States'), +('209.190.25.160', '209.190.25.167', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('209.190.25.168', '209.190.26.255', 2147483647, 2147483647, 'US', 'United States'), +('209.190.27.0', '209.190.27.7', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.190.27.8', '209.190.27.175', 2147483647, 2147483647, 'US', 'United States'), +('209.190.27.176', '209.190.27.183', 2147483647, 2147483647, 'IT', 'Italy'), +('209.190.27.184', '209.190.27.223', 2147483647, 2147483647, 'US', 'United States'), +('209.190.27.224', '209.190.27.231', 2147483647, 2147483647, 'IT', 'Italy'), +('209.190.27.232', '209.190.29.15', 2147483647, 2147483647, 'US', 'United States'), +('209.190.29.16', '209.190.29.23', 2147483647, 2147483647, 'IN', 'India'), +('209.190.29.24', '209.190.30.215', 2147483647, 2147483647, 'US', 'United States'), +('209.190.30.216', '209.190.30.223', 2147483647, 2147483647, 'AM', 'Armenia'), +('209.190.30.224', '209.190.31.95', 2147483647, 2147483647, 'US', 'United States'), +('209.190.31.96', '209.190.31.103', 2147483647, 2147483647, 'IN', 'India'), +('209.190.31.104', '209.190.31.223', 2147483647, 2147483647, 'US', 'United States'), +('209.190.31.224', '209.190.31.231', 2147483647, 2147483647, 'BR', 'Brazil'), +('209.190.31.232', '209.190.31.247', 2147483647, 2147483647, 'US', 'United States'), +('209.190.31.248', '209.190.31.255', 2147483647, 2147483647, 'RO', 'Romania'), +('209.190.32.0', '209.190.51.135', 2147483647, 2147483647, 'US', 'United States'), +('209.190.51.136', '209.190.51.143', 2147483647, 2147483647, 'BR', 'Brazil'), +('209.190.51.144', '209.190.51.151', 2147483647, 2147483647, 'US', 'United States'), +('209.190.51.152', '209.190.51.159', 2147483647, 2147483647, 'JP', 'Japan'), +('209.190.51.160', '209.190.52.103', 2147483647, 2147483647, 'US', 'United States'), +('209.190.52.104', '209.190.52.111', 2147483647, 2147483647, 'PK', 'Pakistan'), +('209.190.52.112', '209.190.54.63', 2147483647, 2147483647, 'US', 'United States'), +('209.190.54.64', '209.190.54.71', 2147483647, 2147483647, 'PK', 'Pakistan'), +('209.190.54.72', '209.190.54.119', 2147483647, 2147483647, 'US', 'United States'), +('209.190.54.120', '209.190.54.127', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('209.190.54.128', '209.190.54.151', 2147483647, 2147483647, 'US', 'United States'), +('209.190.54.152', '209.190.54.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.190.54.160', '209.190.54.191', 2147483647, 2147483647, 'US', 'United States'), +('209.190.54.192', '209.190.54.199', 2147483647, 2147483647, 'ES', 'Spain'), +('209.190.54.200', '209.190.54.207', 2147483647, 2147483647, 'US', 'United States'), +('209.190.54.208', '209.190.54.223', 2147483647, 2147483647, 'EG', 'Egypt'), +('209.190.54.224', '209.190.84.255', 2147483647, 2147483647, 'US', 'United States'), +('209.190.85.0', '209.190.85.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.190.86.0', '209.190.87.255', 2147483647, 2147483647, 'US', 'United States'), +('209.190.88.0', '209.190.88.255', 2147483647, 2147483647, 'IN', 'India'), +('209.190.89.0', '209.190.113.119', 2147483647, 2147483647, 'US', 'United States'), +('209.190.113.120', '209.190.113.127', 2147483647, 2147483647, 'GT', 'Guatemala'), +('209.190.113.128', '209.190.113.183', 2147483647, 2147483647, 'US', 'United States'), +('209.190.113.184', '209.190.113.191', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('209.190.113.192', '209.190.122.231', 2147483647, 2147483647, 'US', 'United States'), +('209.190.122.232', '209.190.122.239', 2147483647, 2147483647, 'CN', 'China'), +('209.190.122.240', '209.190.123.7', 2147483647, 2147483647, 'US', 'United States'), +('209.190.123.8', '209.190.123.15', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('209.190.123.16', '209.190.154.127', 2147483647, 2147483647, 'US', 'United States'), +('209.190.154.128', '209.190.154.191', 2147483647, 2147483647, 'CA', 'Canada'), +('209.190.154.192', '209.191.156.239', 2147483647, 2147483647, 'US', 'United States'), +('209.191.156.240', '209.191.156.247', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.191.156.248', '209.192.157.47', 2147483647, 2147483647, 'US', 'United States'), +('209.192.157.48', '209.192.157.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.192.157.64', '209.195.63.255', 2147483647, 2147483647, 'US', 'United States'), +('209.195.64.0', '209.195.127.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.195.128.0', '209.196.147.143', 2147483647, 2147483647, 'US', 'United States'), +('209.196.147.144', '209.196.147.151', 2147483647, 2147483647, 'GR', 'Greece'), +('209.196.147.152', '209.196.223.255', 2147483647, 2147483647, 'US', 'United States'), +('209.196.224.0', '209.196.239.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.196.240.0', '209.197.127.255', 2147483647, 2147483647, 'US', 'United States'), +('209.197.128.0', '209.197.191.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.197.192.0', '209.197.224.47', 2147483647, 2147483647, 'US', 'United States'), +('209.197.224.48', '209.197.224.71', 2147483647, 2147483647, 'DE', 'Germany'), +('209.197.224.72', '209.197.224.127', 2147483647, 2147483647, 'US', 'United States'), +('209.197.224.128', '209.197.224.135', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('209.197.224.136', '209.197.224.175', 2147483647, 2147483647, 'US', 'United States'), +('209.197.224.176', '209.197.224.183', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('209.197.224.184', '209.197.224.215', 2147483647, 2147483647, 'US', 'United States'), +('209.197.224.216', '209.197.224.223', 2147483647, 2147483647, 'TH', 'Thailand'), +('209.197.224.224', '209.197.224.255', 2147483647, 2147483647, 'US', 'United States'), +('209.197.225.0', '209.197.225.23', 2147483647, 2147483647, 'DE', 'Germany'), +('209.197.225.24', '209.197.225.39', 2147483647, 2147483647, 'US', 'United States'), +('209.197.225.40', '209.197.225.47', 2147483647, 2147483647, 'IT', 'Italy'), +('209.197.225.48', '209.197.225.55', 2147483647, 2147483647, 'IN', 'India'), +('209.197.225.56', '209.197.225.71', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.197.225.72', '209.197.225.143', 2147483647, 2147483647, 'US', 'United States'), +('209.197.225.144', '209.197.225.151', 2147483647, 2147483647, 'AU', 'Australia'), +('209.197.225.152', '209.197.225.167', 2147483647, 2147483647, 'US', 'United States'), +('209.197.225.168', '209.197.225.175', 2147483647, 2147483647, 'CA', 'Canada'), +('209.197.225.176', '209.197.225.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.197.225.192', '209.197.225.223', 2147483647, 2147483647, 'CA', 'Canada'), +('209.197.225.224', '209.197.226.103', 2147483647, 2147483647, 'US', 'United States'), +('209.197.226.104', '209.197.226.239', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('209.197.226.240', '209.197.226.255', 2147483647, 2147483647, 'US', 'United States'), +('209.197.227.0', '209.197.227.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.197.228.0', '209.197.228.47', 2147483647, 2147483647, 'US', 'United States'), +('209.197.228.48', '209.197.228.95', 2147483647, 2147483647, 'MY', 'Malaysia'), +('209.197.228.96', '209.197.228.111', 2147483647, 2147483647, 'AR', 'Argentina'), +('209.197.228.112', '209.197.228.247', 2147483647, 2147483647, 'AE', 'United Arab Emirates'), +('209.197.228.248', '209.197.228.255', 2147483647, 2147483647, 'US', 'United States'), +('209.197.229.0', '209.197.229.223', 2147483647, 2147483647, 'AR', 'Argentina'), +('209.197.229.224', '209.197.229.231', 2147483647, 2147483647, 'US', 'United States'), +('209.197.229.232', '209.197.229.239', 2147483647, 2147483647, 'AE', 'United Arab Emirates'), +('209.197.229.240', '209.197.229.247', 2147483647, 2147483647, 'US', 'United States'), +('209.197.229.248', '209.197.229.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('209.197.230.0', '209.197.230.7', 2147483647, 2147483647, 'AR', 'Argentina'), +('209.197.230.8', '209.197.235.215', 2147483647, 2147483647, 'US', 'United States'), +('209.197.235.216', '209.197.235.223', 2147483647, 2147483647, 'MY', 'Malaysia'), +('209.197.235.224', '209.197.235.239', 2147483647, 2147483647, 'OM', 'Oman'), +('209.197.235.240', '209.197.236.143', 2147483647, 2147483647, 'US', 'United States'), +('209.197.236.144', '209.197.236.151', 2147483647, 2147483647, 'CA', 'Canada'), +('209.197.236.152', '209.197.236.175', 2147483647, 2147483647, 'US', 'United States'), +('209.197.236.176', '209.197.236.183', 2147483647, 2147483647, 'AR', 'Argentina'), +('209.197.236.184', '209.197.236.255', 2147483647, 2147483647, 'US', 'United States'), +('209.197.237.0', '209.197.237.15', 2147483647, 2147483647, 'AE', 'United Arab Emirates'), +('209.197.237.16', '209.197.237.31', 2147483647, 2147483647, 'US', 'United States'), +('209.197.237.32', '209.197.237.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.197.237.48', '209.197.237.191', 2147483647, 2147483647, 'MY', 'Malaysia'), +('209.197.237.192', '209.197.237.207', 2147483647, 2147483647, 'AR', 'Argentina'), +('209.197.237.208', '209.197.238.143', 2147483647, 2147483647, 'US', 'United States'), +('209.197.238.144', '209.197.238.151', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.197.238.152', '209.197.238.255', 2147483647, 2147483647, 'US', 'United States'), +('209.197.239.0', '209.197.239.7', 2147483647, 2147483647, 'AR', 'Argentina'), +('209.197.239.8', '209.197.239.23', 2147483647, 2147483647, 'MY', 'Malaysia'), +('209.197.239.24', '209.197.239.31', 2147483647, 2147483647, 'US', 'United States'), +('209.197.239.32', '209.197.239.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('209.197.240.0', '209.197.240.103', 2147483647, 2147483647, 'US', 'United States'), +('209.197.240.104', '209.197.240.111', 2147483647, 2147483647, 'AU', 'Australia'), +('209.197.240.112', '209.197.242.255', 2147483647, 2147483647, 'US', 'United States'), +('209.197.243.0', '209.197.243.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('209.197.244.0', '209.197.244.127', 2147483647, 2147483647, 'US', 'United States'), +('209.197.244.128', '209.197.244.191', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('209.197.244.192', '209.197.245.255', 2147483647, 2147483647, 'US', 'United States'), +('209.197.246.0', '209.197.246.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('209.197.247.0', '209.197.247.255', 2147483647, 2147483647, 'DE', 'Germany'), +('209.197.248.0', '209.197.248.239', 2147483647, 2147483647, 'US', 'United States'), +('209.197.248.240', '209.197.248.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.197.249.0', '209.197.249.39', 2147483647, 2147483647, 'US', 'United States'), +('209.197.249.40', '209.197.249.47', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('209.197.249.48', '209.197.249.255', 2147483647, 2147483647, 'US', 'United States'), +('209.197.250.0', '209.197.250.15', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('209.197.250.16', '209.197.250.63', 2147483647, 2147483647, 'US', 'United States'), +('209.197.250.64', '209.197.250.79', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('209.197.250.80', '209.197.253.255', 2147483647, 2147483647, 'US', 'United States'), +('209.197.254.0', '209.197.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.198.0.0', '209.198.10.255', 2147483647, 2147483647, 'US', 'United States'), +('209.198.11.0', '209.198.11.63', 2147483647, 2147483647, 'IT', 'Italy'), +('209.198.11.64', '209.200.84.23', 2147483647, 2147483647, 'US', 'United States'), +('209.200.84.24', '209.200.84.31', 2147483647, 2147483647, 'IE', 'Ireland'), +('209.200.84.32', '209.200.84.95', 2147483647, 2147483647, 'US', 'United States'), +('209.200.84.96', '209.200.84.103', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.200.84.104', '209.200.84.239', 2147483647, 2147483647, 'US', 'United States'), +('209.200.84.240', '209.200.84.248', 2147483647, 2147483647, 'IE', 'Ireland'), +('209.200.84.249', '209.200.87.63', 2147483647, 2147483647, 'US', 'United States'), +('209.200.87.64', '209.200.87.71', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.200.87.72', '209.200.87.111', 2147483647, 2147483647, 'US', 'United States'), +('209.200.87.112', '209.200.87.119', 2147483647, 2147483647, 'LB', 'Lebanon'), +('209.200.87.120', '209.200.87.143', 2147483647, 2147483647, 'US', 'United States'), +('209.200.87.144', '209.200.87.151', 2147483647, 2147483647, 'JP', 'Japan'), +('209.200.87.152', '209.200.87.215', 2147483647, 2147483647, 'US', 'United States'), +('209.200.87.216', '209.200.87.247', 2147483647, 2147483647, 'LB', 'Lebanon'), +('209.200.87.248', '209.200.92.15', 2147483647, 2147483647, 'US', 'United States'), +('209.200.92.16', '209.200.92.23', 2147483647, 2147483647, 'FR', 'France'), +('209.200.92.24', '209.200.92.31', 2147483647, 2147483647, 'LB', 'Lebanon'), +('209.200.92.32', '209.200.92.95', 2147483647, 2147483647, 'US', 'United States'), +('209.200.92.96', '209.200.92.103', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.200.92.104', '209.200.92.175', 2147483647, 2147483647, 'US', 'United States'), +('209.200.92.176', '209.200.92.183', 2147483647, 2147483647, 'LB', 'Lebanon'), +('209.200.92.184', '209.200.92.207', 2147483647, 2147483647, 'US', 'United States'), +('209.200.92.208', '209.200.92.215', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.200.92.216', '209.200.92.231', 2147483647, 2147483647, 'US', 'United States'), +('209.200.92.232', '209.200.92.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.200.92.240', '209.200.95.63', 2147483647, 2147483647, 'US', 'United States'), +('209.200.95.64', '209.200.95.71', 2147483647, 2147483647, 'JP', 'Japan'), +('209.200.95.72', '209.200.128.255', 2147483647, 2147483647, 'US', 'United States'), +('209.200.129.0', '209.200.129.255', 2147483647, 2147483647, 'NA', 'Namibia'), +('209.200.130.0', '209.200.130.255', 2147483647, 2147483647, 'US', 'United States'), +('209.200.131.0', '209.200.131.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.200.132.0', '209.200.133.191', 2147483647, 2147483647, 'US', 'United States'), +('209.200.133.192', '209.200.133.199', 2147483647, 2147483647, 'CR', 'Costa Rica'), +('209.200.133.200', '209.200.135.63', 2147483647, 2147483647, 'US', 'United States'), +('209.200.135.64', '209.200.135.79', 2147483647, 2147483647, 'CY', 'Cyprus'), +('209.200.135.80', '209.200.135.87', 2147483647, 2147483647, 'CR', 'Costa Rica'), +('209.200.135.88', '209.200.135.127', 2147483647, 2147483647, 'US', 'United States'), +('209.200.135.128', '209.200.135.143', 2147483647, 2147483647, 'CY', 'Cyprus'), +('209.200.135.144', '209.200.135.159', 2147483647, 2147483647, 'CR', 'Costa Rica'), +('209.200.135.160', '209.200.150.255', 2147483647, 2147483647, 'US', 'United States'), +('209.200.151.0', '209.200.151.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.200.152.0', '209.200.158.255', 2147483647, 2147483647, 'US', 'United States'), +('209.200.159.0', '209.200.160.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.200.161.0', '209.200.161.255', 2147483647, 2147483647, 'US', 'United States'), +('209.200.162.0', '209.200.162.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.200.162.192', '209.200.162.255', 2147483647, 2147483647, 'AG', 'Antigua and Barbuda'), +('209.200.163.0', '209.200.167.255', 2147483647, 2147483647, 'US', 'United States'), +('209.200.168.0', '209.200.168.15', 2147483647, 2147483647, 'CR', 'Costa Rica'), +('209.200.168.16', '209.200.168.39', 2147483647, 2147483647, 'US', 'United States'), +('209.200.168.40', '209.200.168.47', 2147483647, 2147483647, 'CR', 'Costa Rica'), +('209.200.168.48', '209.200.168.95', 2147483647, 2147483647, 'US', 'United States'), +('209.200.168.96', '209.200.168.111', 2147483647, 2147483647, 'CR', 'Costa Rica'), +('209.200.168.112', '209.200.169.31', 2147483647, 2147483647, 'US', 'United States'), +('209.200.169.32', '209.200.169.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.200.169.64', '209.200.169.79', 2147483647, 2147483647, 'US', 'United States'), +('209.200.169.80', '209.200.169.95', 2147483647, 2147483647, 'CY', 'Cyprus'), +('209.200.169.96', '209.200.176.255', 2147483647, 2147483647, 'US', 'United States'), +('209.200.177.0', '209.200.177.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.200.178.0', '209.200.178.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.200.178.16', '209.200.178.31', 2147483647, 2147483647, 'EE', 'Estonia'), +('209.200.178.32', '209.200.178.47', 2147483647, 2147483647, 'AG', 'Antigua and Barbuda'), +('209.200.178.48', '209.200.178.143', 2147483647, 2147483647, 'US', 'United States'), +('209.200.178.144', '209.200.178.159', 2147483647, 2147483647, 'MT', 'Malta'), +('209.200.178.160', '209.200.178.255', 2147483647, 2147483647, 'US', 'United States'), +('209.200.179.0', '209.200.179.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.200.180.0', '209.200.226.4', 2147483647, 2147483647, 'US', 'United States'), +('209.200.226.5', '209.200.226.12', 2147483647, 2147483647, 'VN', 'Vietnam'), +('209.200.226.13', '209.200.226.55', 2147483647, 2147483647, 'US', 'United States'), +('209.200.226.56', '209.200.226.65', 2147483647, 2147483647, 'BR', 'Brazil'), +('209.200.226.66', '209.200.226.71', 2147483647, 2147483647, 'US', 'United States'), +('209.200.226.72', '209.200.226.86', 2147483647, 2147483647, 'CA', 'Canada'), +('209.200.226.87', '209.200.228.60', 2147483647, 2147483647, 'US', 'United States'), +('209.200.228.61', '209.200.228.69', 2147483647, 2147483647, 'IN', 'India'), +('209.200.228.70', '209.201.255.255', 2147483647, 2147483647, 'US', 'United States'), +('209.202.0.0', '209.202.94.79', 2147483647, 2147483647, 'CA', 'Canada'), +('209.202.94.80', '209.202.94.87', 2147483647, 2147483647, 'US', 'United States'), +('209.202.94.88', '209.202.94.95', 2147483647, 2147483647, 'CA', 'Canada'), +('209.202.94.96', '209.202.94.127', 2147483647, 2147483647, 'US', 'United States'), +('209.202.94.128', '209.202.101.47', 2147483647, 2147483647, 'CA', 'Canada'), +('209.202.101.48', '209.202.101.55', 2147483647, 2147483647, 'US', 'United States'), +('209.202.101.56', '209.202.127.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.202.128.0', '209.202.128.127', 2147483647, 2147483647, 'US', 'United States'), +('209.202.128.128', '209.202.128.159', 2147483647, 2147483647, 'CA', 'Canada'), +('209.202.128.160', '209.202.140.191', 2147483647, 2147483647, 'US', 'United States'), +('209.202.140.192', '209.202.140.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.202.141.0', '209.202.151.223', 2147483647, 2147483647, 'US', 'United States'), +('209.202.151.224', '209.202.151.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.202.152.0', '209.202.157.255', 2147483647, 2147483647, 'US', 'United States'), +('209.202.158.0', '209.202.158.127', 2147483647, 2147483647, 'CA', 'Canada'), +('209.202.158.128', '209.202.255.255', 2147483647, 2147483647, 'US', 'United States'), +('209.203.0.0', '209.203.63.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('209.203.64.0', '209.203.191.255', 2147483647, 2147483647, 'US', 'United States'), +('209.203.224.0', '209.203.226.63', 2147483647, 2147483647, 'US', 'United States'), +('209.203.226.64', '209.203.226.95', 2147483647, 2147483647, 'IN', 'India'), +('209.203.226.96', '209.203.246.191', 2147483647, 2147483647, 'US', 'United States'), +('209.203.246.192', '209.203.246.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.203.247.0', '209.204.255.255', 2147483647, 2147483647, 'US', 'United States'), +('209.205.0.0', '209.205.25.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.205.26.0', '209.205.26.7', 2147483647, 2147483647, 'US', 'United States'), +('209.205.26.8', '209.205.26.87', 2147483647, 2147483647, 'CA', 'Canada'), +('209.205.26.88', '209.205.26.95', 2147483647, 2147483647, 'US', 'United States'), +('209.205.26.96', '209.205.26.127', 2147483647, 2147483647, 'CA', 'Canada'), +('209.205.26.128', '209.205.26.135', 2147483647, 2147483647, 'US', 'United States'), +('209.205.26.136', '209.205.26.183', 2147483647, 2147483647, 'CA', 'Canada'), +('209.205.26.184', '209.205.26.191', 2147483647, 2147483647, 'US', 'United States'), +('209.205.26.192', '209.205.30.63', 2147483647, 2147483647, 'CA', 'Canada'), +('209.205.30.64', '209.205.30.127', 2147483647, 2147483647, 'DE', 'Germany'), +('209.205.30.128', '209.205.32.159', 2147483647, 2147483647, 'CA', 'Canada'), +('209.205.32.160', '209.205.32.191', 2147483647, 2147483647, 'US', 'United States'), +('209.205.32.192', '209.205.33.95', 2147483647, 2147483647, 'CA', 'Canada'), +('209.205.33.96', '209.205.33.127', 2147483647, 2147483647, 'US', 'United States'), +('209.205.33.128', '209.205.111.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.205.112.0', '209.205.239.255', 2147483647, 2147483647, 'US', 'United States'), +('209.205.240.0', '209.205.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.206.0.0', '209.207.63.255', 2147483647, 2147483647, 'US', 'United States'), +('209.207.64.0', '209.207.95.71', 2147483647, 2147483647, 'CA', 'Canada'), +('209.207.95.72', '209.207.95.119', 2147483647, 2147483647, 'US', 'United States'), +('209.207.95.120', '209.207.95.127', 2147483647, 2147483647, 'CA', 'Canada'), +('209.207.95.128', '209.207.95.135', 2147483647, 2147483647, 'US', 'United States'), +('209.207.95.136', '209.207.95.239', 2147483647, 2147483647, 'CA', 'Canada'), +('209.207.95.240', '209.207.95.255', 2147483647, 2147483647, 'US', 'United States'), +('209.207.96.0', '209.207.96.15', 2147483647, 2147483647, 'CA', 'Canada'), +('209.207.96.16', '209.207.96.39', 2147483647, 2147483647, 'US', 'United States'), +('209.207.96.40', '209.207.97.239', 2147483647, 2147483647, 'CA', 'Canada'), +('209.207.97.240', '209.207.97.247', 2147483647, 2147483647, 'IL', 'Israel'), +('209.207.97.248', '209.207.127.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.207.128.0', '209.208.8.143', 2147483647, 2147483647, 'US', 'United States'), +('209.208.8.144', '209.208.8.159', 2147483647, 2147483647, 'NL', 'Netherlands'), +('209.208.8.160', '209.208.16.239', 2147483647, 2147483647, 'US', 'United States'), +('209.208.16.240', '209.208.16.247', 2147483647, 2147483647, 'CA', 'Canada'), +('209.208.16.248', '209.208.19.175', 2147483647, 2147483647, 'US', 'United States'), +('209.208.19.176', '209.208.19.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.208.19.192', '209.208.20.31', 2147483647, 2147483647, 'US', 'United States'), +('209.208.20.32', '209.208.20.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('209.208.20.64', '209.208.20.95', 2147483647, 2147483647, 'US', 'United States'), +('209.208.20.96', '209.208.20.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.208.20.112', '209.208.22.47', 2147483647, 2147483647, 'US', 'United States'), +('209.208.22.48', '209.208.22.63', 2147483647, 2147483647, 'BR', 'Brazil'), +('209.208.22.64', '209.208.23.223', 2147483647, 2147483647, 'US', 'United States'), +('209.208.23.224', '209.208.23.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('209.208.24.0', '209.208.45.143', 2147483647, 2147483647, 'US', 'United States'), +('209.208.45.144', '209.208.45.159', 2147483647, 2147483647, 'NL', 'Netherlands'), +('209.208.45.160', '209.208.46.47', 2147483647, 2147483647, 'US', 'United States'), +('209.208.46.48', '209.208.46.63', 2147483647, 2147483647, 'BR', 'Brazil'), +('209.208.46.64', '209.208.47.79', 2147483647, 2147483647, 'US', 'United States'), +('209.208.47.80', '209.208.47.95', 2147483647, 2147483647, 'VG', 'Virgin Islands, British'), +('209.208.47.96', '209.208.48.231', 2147483647, 2147483647, 'US', 'United States'), +('209.208.48.232', '209.208.48.247', 2147483647, 2147483647, 'CA', 'Canada'), +('209.208.48.248', '209.208.64.255', 2147483647, 2147483647, 'US', 'United States'), +('209.208.65.0', '209.208.65.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.208.66.0', '209.208.73.127', 2147483647, 2147483647, 'US', 'United States'), +('209.208.73.128', '209.208.73.143', 2147483647, 2147483647, 'ES', 'Spain'), +('209.208.73.144', '209.208.77.255', 2147483647, 2147483647, 'US', 'United States'), +('209.208.78.0', '209.208.79.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.208.80.0', '209.208.91.63', 2147483647, 2147483647, 'US', 'United States'), +('209.208.91.64', '209.208.91.79', 2147483647, 2147483647, 'IL', 'Israel'), +('209.208.91.80', '209.208.100.207', 2147483647, 2147483647, 'US', 'United States'), +('209.208.100.208', '209.208.100.239', 2147483647, 2147483647, 'NL', 'Netherlands'), +('209.208.100.240', '209.208.109.255', 2147483647, 2147483647, 'US', 'United States'), +('209.208.110.0', '209.208.110.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.208.111.0', '209.208.125.207', 2147483647, 2147483647, 'US', 'United States'), +('209.208.125.208', '209.208.125.223', 2147483647, 2147483647, 'CA', 'Canada'), +('209.208.125.224', '209.208.169.79', 2147483647, 2147483647, 'US', 'United States'), +('209.208.169.80', '209.208.169.95', 2147483647, 2147483647, 'ES', 'Spain'), +('209.208.169.96', '209.208.174.223', 2147483647, 2147483647, 'US', 'United States'), +('209.208.174.224', '209.208.174.231', 2147483647, 2147483647, 'VG', 'Virgin Islands, British'), +('209.208.174.232', '209.208.202.175', 2147483647, 2147483647, 'US', 'United States'), +('209.208.202.176', '209.208.202.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.208.202.192', '209.212.95.255', 2147483647, 2147483647, 'US', 'United States'), +('209.212.96.0', '209.212.127.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('209.212.128.0', '209.213.127.255', 2147483647, 2147483647, 'US', 'United States'), +('209.213.160.0', '209.213.209.127', 2147483647, 2147483647, 'US', 'United States'), +('209.213.209.128', '209.213.209.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.213.209.144', '209.213.223.255', 2147483647, 2147483647, 'US', 'United States'), +('209.213.224.0', '209.213.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.214.0.0', '209.214.253.255', 2147483647, 2147483647, 'US', 'United States'), +('209.214.254.0', '209.214.255.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('209.215.0.0', '209.216.127.255', 2147483647, 2147483647, 'US', 'United States'), +('209.216.128.0', '209.216.159.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.216.160.0', '209.217.63.255', 2147483647, 2147483647, 'US', 'United States'), +('209.217.64.0', '209.217.64.151', 2147483647, 2147483647, 'CA', 'Canada'), +('209.217.64.152', '209.217.64.159', 2147483647, 2147483647, 'US', 'United States'), +('209.217.64.160', '209.217.78.15', 2147483647, 2147483647, 'CA', 'Canada'), +('209.217.78.16', '209.217.78.23', 2147483647, 2147483647, 'US', 'United States'), +('209.217.78.24', '209.217.92.239', 2147483647, 2147483647, 'CA', 'Canada'), +('209.217.92.240', '209.217.92.255', 2147483647, 2147483647, 'US', 'United States'), +('209.217.93.0', '209.217.94.223', 2147483647, 2147483647, 'CA', 'Canada'), +('209.217.94.224', '209.217.94.239', 2147483647, 2147483647, 'US', 'United States'), +('209.217.94.240', '209.217.97.119', 2147483647, 2147483647, 'CA', 'Canada'), +('209.217.97.120', '209.217.97.127', 2147483647, 2147483647, 'US', 'United States'), +('209.217.97.128', '209.217.113.15', 2147483647, 2147483647, 'CA', 'Canada'), +('209.217.113.16', '209.217.113.47', 2147483647, 2147483647, 'US', 'United States'), +('209.217.113.48', '209.217.125.127', 2147483647, 2147483647, 'CA', 'Canada'), +('209.217.125.128', '209.217.125.135', 2147483647, 2147483647, 'US', 'United States'), +('209.217.125.136', '209.217.126.95', 2147483647, 2147483647, 'CA', 'Canada'), +('209.217.126.96', '209.217.126.127', 2147483647, 2147483647, 'US', 'United States'), +('209.217.126.128', '209.217.127.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.217.128.0', '209.218.97.47', 2147483647, 2147483647, 'US', 'United States'), +('209.218.97.48', '209.218.97.55', 2147483647, 2147483647, 'CA', 'Canada'), +('209.218.97.56', '209.221.63.255', 2147483647, 2147483647, 'US', 'United States'), +('209.221.64.0', '209.221.127.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.221.128.0', '209.221.145.63', 2147483647, 2147483647, 'US', 'United States'), +('209.221.145.64', '209.221.145.127', 2147483647, 2147483647, 'CA', 'Canada'), +('209.221.145.128', '209.221.173.223', 2147483647, 2147483647, 'US', 'United States'), +('209.221.173.224', '209.221.173.231', 2147483647, 2147483647, 'CA', 'Canada'), +('209.221.173.232', '209.221.223.255', 2147483647, 2147483647, 'US', 'United States'), +('209.221.224.0', '209.221.226.255', 2147483647, 2147483647, 'BZ', 'Belize'), +('209.221.227.0', '209.221.239.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('209.221.240.0', '209.221.255.255', 2147483647, 2147483647, 'US', 'United States'), +('209.222.32.0', '209.222.47.255', 2147483647, 2147483647, 'US', 'United States'), +('209.222.48.0', '209.222.63.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.222.64.0', '209.222.103.55', 2147483647, 2147483647, 'US', 'United States'), +('209.222.103.56', '209.222.103.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('209.222.103.64', '209.222.104.191', 2147483647, 2147483647, 'US', 'United States'), +('209.222.104.192', '209.222.104.199', 2147483647, 2147483647, 'AU', 'Australia'), +('209.222.104.200', '209.222.105.87', 2147483647, 2147483647, 'US', 'United States'), +('209.222.105.88', '209.222.105.95', 2147483647, 2147483647, 'NL', 'Netherlands'), +('209.222.105.96', '209.222.105.111', 2147483647, 2147483647, 'US', 'United States'), +('209.222.105.112', '209.222.105.119', 2147483647, 2147483647, 'GR', 'Greece'), +('209.222.105.120', '209.222.105.127', 2147483647, 2147483647, 'CA', 'Canada'), +('209.222.105.128', '209.222.159.255', 2147483647, 2147483647, 'US', 'United States'), +('209.222.160.0', '209.222.175.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.222.192.0', '209.222.223.255', 2147483647, 2147483647, 'US', 'United States'), +('209.222.224.0', '209.222.239.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.222.240.0', '209.223.86.47', 2147483647, 2147483647, 'US', 'United States'), +('209.223.86.48', '209.223.86.63', 2147483647, 2147483647, 'AU', 'Australia'), +('209.223.86.64', '209.223.130.255', 2147483647, 2147483647, 'US', 'United States'), +('209.223.131.0', '209.223.131.255', 2147483647, 2147483647, 'AU', 'Australia'), +('209.223.132.0', '209.223.179.55', 2147483647, 2147483647, 'US', 'United States'), +('209.223.179.56', '209.223.179.63', 2147483647, 2147483647, 'MX', 'Mexico'), +('209.223.179.64', '209.223.197.127', 2147483647, 2147483647, 'US', 'United States'), +('209.223.197.128', '209.223.197.159', 2147483647, 2147483647, 'CA', 'Canada'), +('209.223.197.160', '209.223.210.95', 2147483647, 2147483647, 'US', 'United States'), +('209.223.210.96', '209.223.210.111', 2147483647, 2147483647, 'CA', 'Canada'), +('209.223.210.112', '209.225.11.63', 2147483647, 2147483647, 'US', 'United States'), +('209.225.11.64', '209.225.11.127', 2147483647, 2147483647, 'AR', 'Argentina'), +('209.225.11.128', '209.225.34.255', 2147483647, 2147483647, 'US', 'United States'), +('209.225.35.0', '209.225.35.31', 2147483647, 2147483647, 'FR', 'France'), +('209.225.35.32', '209.225.59.255', 2147483647, 2147483647, 'US', 'United States'), +('209.225.60.0', '209.225.60.63', 2147483647, 2147483647, 'CA', 'Canada'), +('209.225.60.64', '209.225.60.111', 2147483647, 2147483647, 'US', 'United States'), +('209.225.60.112', '209.225.60.119', 2147483647, 2147483647, 'CA', 'Canada'), +('209.225.60.120', '209.225.60.127', 2147483647, 2147483647, 'US', 'United States'), +('209.225.60.128', '209.225.60.135', 2147483647, 2147483647, 'CA', 'Canada'), +('209.225.60.136', '209.225.255.255', 2147483647, 2147483647, 'US', 'United States'), +('209.226.0.0', '209.226.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.227.0.0', '209.227.194.255', 2147483647, 2147483647, 'US', 'United States'), +('209.227.195.0', '209.227.195.79', 2147483647, 2147483647, 'IT', 'Italy'), +('209.227.195.80', '209.227.202.255', 2147483647, 2147483647, 'US', 'United States'), +('209.227.203.0', '209.227.203.255', 2147483647, 2147483647, 'CY', 'Cyprus'), +('209.227.204.0', '209.227.221.31', 2147483647, 2147483647, 'US', 'United States'), +('209.227.221.32', '209.227.221.63', 2147483647, 2147483647, 'IT', 'Italy'), +('209.227.221.64', '209.227.221.71', 2147483647, 2147483647, 'US', 'United States'), +('209.227.221.72', '209.227.221.103', 2147483647, 2147483647, 'IT', 'Italy'), +('209.227.221.104', '209.227.221.255', 2147483647, 2147483647, 'US', 'United States'), +('209.227.222.0', '209.227.222.31', 2147483647, 2147483647, 'CA', 'Canada'), +('209.227.222.32', '209.227.222.63', 2147483647, 2147483647, 'US', 'United States'), +('209.227.222.64', '209.227.222.111', 2147483647, 2147483647, 'CA', 'Canada'), +('209.227.222.112', '209.227.222.255', 2147483647, 2147483647, 'US', 'United States'), +('209.227.223.0', '209.227.223.7', 2147483647, 2147483647, 'IT', 'Italy'), +('209.227.223.8', '209.227.223.15', 2147483647, 2147483647, 'US', 'United States'), +('209.227.223.16', '209.227.223.79', 2147483647, 2147483647, 'IT', 'Italy'), +('209.227.223.80', '209.227.223.95', 2147483647, 2147483647, 'US', 'United States'), +('209.227.223.96', '209.227.223.127', 2147483647, 2147483647, 'IT', 'Italy'), +('209.227.223.128', '209.227.223.159', 2147483647, 2147483647, 'US', 'United States'), +('209.227.223.160', '209.227.223.175', 2147483647, 2147483647, 'IN', 'India'), +('209.227.223.176', '209.227.223.191', 2147483647, 2147483647, 'IT', 'Italy'), +('209.227.223.192', '209.227.223.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.227.224.0', '209.227.244.127', 2147483647, 2147483647, 'US', 'United States'), +('209.227.244.128', '209.227.244.159', 2147483647, 2147483647, 'IT', 'Italy'), +('209.227.244.160', '209.234.243.127', 2147483647, 2147483647, 'US', 'United States'), +('209.234.243.128', '209.234.243.191', 2147483647, 2147483647, 'CA', 'Canada'), +('209.234.243.192', '209.235.255.255', 2147483647, 2147483647, 'US', 'United States'), +('209.236.0.0', '209.236.63.255', 2147483647, 2147483647, 'JM', 'Jamaica'), +('209.236.64.0', '209.236.95.255', 2147483647, 2147483647, 'US', 'United States'), +('209.236.128.0', '209.236.235.255', 2147483647, 2147483647, 'US', 'United States'), +('209.236.236.0', '209.236.239.255', 2147483647, 2147483647, 'DE', 'Germany'), +('209.236.240.0', '209.237.240.255', 2147483647, 2147483647, 'US', 'United States'), +('209.237.241.0', '209.237.241.255', 2147483647, 2147483647, 'AT', 'Austria'), +('209.237.242.0', '209.238.255.255', 2147483647, 2147483647, 'US', 'United States'), +('209.239.0.0', '209.239.31.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.239.32.0', '209.239.63.255', 2147483647, 2147483647, 'US', 'United States'), +('209.239.64.0', '209.239.80.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('209.239.81.0', '209.239.81.255', 2147483647, 2147483647, 'AW', 'Aruba'), +('209.239.82.0', '209.239.95.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('209.239.96.0', '209.239.117.255', 2147483647, 2147483647, 'US', 'United States'), +('209.239.118.0', '209.239.118.31', 2147483647, 2147483647, 'RO', 'Romania'), +('209.239.118.32', '209.239.118.63', 2147483647, 2147483647, 'RS', 'Serbia'), +('209.239.118.64', '209.239.126.63', 2147483647, 2147483647, 'US', 'United States'), +('209.239.126.64', '209.239.126.64', 2147483647, 2147483647, 'PT', 'Portugal'), +('209.239.126.65', '209.239.126.95', 2147483647, 2147483647, 'US', 'United States'), +('209.239.126.96', '209.239.126.127', 2147483647, 2147483647, 'JP', 'Japan'), +('209.239.126.128', '209.239.126.159', 2147483647, 2147483647, 'US', 'United States'), +('209.239.126.160', '209.239.126.191', 2147483647, 2147483647, 'DE', 'Germany'), +('209.239.126.192', '209.240.31.255', 2147483647, 2147483647, 'US', 'United States'), +('209.240.32.0', '209.240.47.255', 2147483647, 2147483647, 'BM', 'Bermuda'), +('209.240.48.0', '209.240.111.255', 2147483647, 2147483647, 'US', 'United States'), +('209.240.112.0', '209.240.127.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.240.128.0', '209.249.11.167', 2147483647, 2147483647, 'US', 'United States'), +('209.249.11.168', '209.249.11.175', 2147483647, 2147483647, 'CA', 'Canada'), +('209.249.11.176', '209.249.25.255', 2147483647, 2147483647, 'US', 'United States'), +('209.249.26.0', '209.249.26.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.249.27.0', '209.249.47.255', 2147483647, 2147483647, 'US', 'United States'), +('209.249.48.0', '209.249.48.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.249.49.0', '209.249.51.255', 2147483647, 2147483647, 'US', 'United States'), +('209.249.52.0', '209.249.52.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.249.53.0', '209.249.199.255', 2147483647, 2147483647, 'US', 'United States'), +('209.249.200.0', '209.249.200.7', 2147483647, 2147483647, 'JP', 'Japan'), +('209.249.200.8', '209.249.250.255', 2147483647, 2147483647, 'US', 'United States'), +('209.249.251.0', '209.249.251.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.249.252.0', '209.250.127.255', 2147483647, 2147483647, 'US', 'United States'), +('209.250.128.0', '209.250.147.223', 2147483647, 2147483647, 'CA', 'Canada'), +('209.250.147.224', '209.250.147.255', 2147483647, 2147483647, 'IN', 'India'), +('209.250.148.0', '209.250.191.255', 2147483647, 2147483647, 'CA', 'Canada'), +('209.250.192.0', '209.255.255.255', 2147483647, 2147483647, 'US', 'United States'), +('210.0.0.0', '210.0.31.255', 2147483647, 2147483647, 'AU', 'Australia'), +('210.0.32.0', '210.0.63.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('210.0.64.0', '210.0.127.255', 2147483647, 2147483647, 'AU', 'Australia'), +('210.0.128.0', '210.0.255.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('210.1.0.0', '210.1.63.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('210.1.64.0', '210.1.143.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('210.1.144.0', '210.1.191.255', 2147483647, 2147483647, 'JP', 'Japan'), +('210.1.192.0', '210.1.223.255', 2147483647, 2147483647, 'AU', 'Australia'), +('210.1.240.0', '210.1.255.255', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('210.2.0.0', '210.2.31.255', 2147483647, 2147483647, 'CN', 'China'), +('210.2.32.0', '210.2.63.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('210.2.128.0', '210.2.191.255', 2147483647, 2147483647, 'PK', 'Pakistan'), +('210.2.192.0', '210.2.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('210.3.0.0', '210.3.255.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('210.4.0.0', '210.4.63.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('210.4.64.0', '210.4.79.255', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('210.4.80.0', '210.4.87.255', 2147483647, 2147483647, 'AU', 'Australia'), +('210.4.88.0', '210.4.95.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('210.4.96.0', '210.4.127.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('210.4.128.0', '210.4.159.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('210.4.160.0', '210.4.191.255', 2147483647, 2147483647, 'JP', 'Japan'), +('210.4.192.0', '210.4.207.255', 2147483647, 2147483647, 'US', 'United States'), +('210.4.208.0', '210.4.215.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('210.4.216.0', '210.4.223.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('210.4.224.0', '210.4.239.255', 2147483647, 2147483647, 'AU', 'Australia'), +('210.4.240.0', '210.4.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('210.5.0.0', '210.5.31.255', 2147483647, 2147483647, 'CN', 'China'), +('210.5.32.0', '210.5.39.255', 2147483647, 2147483647, 'AU', 'Australia'), +('210.5.40.0', '210.5.47.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('210.5.48.0', '210.5.55.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('210.5.56.0', '210.5.127.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('210.5.144.0', '210.5.159.255', 2147483647, 2147483647, 'CN', 'China'), +('210.5.160.0', '210.5.193.31', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('210.5.193.32', '210.5.193.47', 2147483647, 2147483647, 'YE', 'Yemen'), +('210.5.193.48', '210.5.193.63', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('210.5.193.64', '210.5.193.127', 2147483647, 2147483647, 'PK', 'Pakistan'), +('210.5.193.128', '210.5.193.255', 2147483647, 2147483647, 'LB', 'Lebanon'), +('210.5.194.0', '210.5.195.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('210.5.196.0', '210.5.196.15', 2147483647, 2147483647, 'KW', 'Kuwait'), +('210.5.196.16', '210.5.196.23', 2147483647, 2147483647, 'AE', 'United Arab Emirates'), +('210.5.196.24', '210.5.196.63', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('210.5.196.64', '210.5.196.127', 2147483647, 2147483647, 'IR', 'Iran, Islamic Republic of'), +('210.5.196.128', '210.5.197.63', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('210.5.197.64', '210.5.197.127', 2147483647, 2147483647, 'IR', 'Iran, Islamic Republic of'), +('210.5.197.128', '210.5.198.15', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('210.5.198.16', '210.5.198.23', 2147483647, 2147483647, 'IQ', 'Iraq'), +('210.5.198.24', '210.5.198.31', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('210.5.198.32', '210.5.198.39', 2147483647, 2147483647, 'IR', 'Iran, Islamic Republic of'), +('210.5.198.40', '210.5.198.47', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('210.5.198.48', '210.5.198.63', 2147483647, 2147483647, 'IQ', 'Iraq'), +('210.5.198.64', '210.5.198.79', 2147483647, 2147483647, 'IR', 'Iran, Islamic Republic of'), +('210.5.198.80', '210.5.198.95', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('210.5.198.96', '210.5.198.223', 2147483647, 2147483647, 'IR', 'Iran, Islamic Republic of'), +('210.5.198.224', '210.5.198.231', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('210.5.198.232', '210.5.198.255', 2147483647, 2147483647, 'IQ', 'Iraq'), +('210.5.199.0', '210.5.199.255', 2147483647, 2147483647, 'PK', 'Pakistan'), +('210.5.200.0', '210.5.203.255', 2147483647, 2147483647, 'IN', 'India'), +('210.5.204.0', '210.5.204.127', 2147483647, 2147483647, 'IR', 'Iran, Islamic Republic of'), +('210.5.204.128', '210.5.204.255', 2147483647, 2147483647, 'PK', 'Pakistan'), +('210.5.205.0', '210.5.205.63', 2147483647, 2147483647, 'IR', 'Iran, Islamic Republic of'), +('210.5.205.64', '210.5.205.71', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('210.5.205.72', '210.5.205.79', 2147483647, 2147483647, 'KE', 'Kenya'), +('210.5.205.80', '210.5.205.111', 2147483647, 2147483647, 'IQ', 'Iraq'), +('210.5.205.112', '210.5.205.127', 2147483647, 2147483647, 'LB', 'Lebanon'), +('210.5.205.128', '210.5.207.255', 2147483647, 2147483647, 'PK', 'Pakistan'), +('210.5.208.0', '210.5.208.63', 2147483647, 2147483647, 'IR', 'Iran, Islamic Republic of'), +('210.5.208.64', '210.5.208.71', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('210.5.208.72', '210.5.208.87', 2147483647, 2147483647, 'PK', 'Pakistan'), +('210.5.208.88', '210.5.208.127', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('210.5.208.128', '210.5.209.127', 2147483647, 2147483647, 'IR', 'Iran, Islamic Republic of'), +('210.5.209.128', '210.5.209.191', 2147483647, 2147483647, 'PK', 'Pakistan'), +('210.5.209.192', '210.5.209.207', 2147483647, 2147483647, 'IN', 'India'), +('210.5.209.208', '210.5.209.215', 2147483647, 2147483647, 'US', 'United States'), +('210.5.209.216', '210.5.209.223', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('210.5.209.224', '210.5.209.231', 2147483647, 2147483647, 'IN', 'India'), +('210.5.209.232', '210.5.209.239', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('210.5.209.240', '210.5.209.247', 2147483647, 2147483647, 'PK', 'Pakistan'), +('210.5.209.248', '210.5.210.15', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('210.5.210.16', '210.5.210.31', 2147483647, 2147483647, 'IQ', 'Iraq'), +('210.5.210.32', '210.5.210.63', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('210.5.210.64', '210.5.210.127', 2147483647, 2147483647, 'IQ', 'Iraq'), +('210.5.210.128', '210.5.211.71', 2147483647, 2147483647, 'PK', 'Pakistan'), +('210.5.211.72', '210.5.211.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('210.5.212.0', '210.5.213.255', 2147483647, 2147483647, 'PK', 'Pakistan'), +('210.5.214.0', '210.5.214.127', 2147483647, 2147483647, 'TZ', 'Tanzania, United Republic of'), +('210.5.214.128', '210.5.214.135', 2147483647, 2147483647, 'IR', 'Iran, Islamic Republic of'), +('210.5.214.136', '210.5.214.159', 2147483647, 2147483647, 'IQ', 'Iraq'), +('210.5.214.160', '210.5.214.167', 2147483647, 2147483647, 'KZ', 'Kazakstan'), +('210.5.214.168', '210.5.214.175', 2147483647, 2147483647, 'US', 'United States'), +('210.5.214.176', '210.5.214.191', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('210.5.214.192', '210.5.214.255', 2147483647, 2147483647, 'IR', 'Iran, Islamic Republic of'), +('210.5.215.0', '210.5.215.127', 2147483647, 2147483647, 'TZ', 'Tanzania, United Republic of'), +('210.5.215.128', '210.5.215.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('210.5.216.0', '210.5.216.255', 2147483647, 2147483647, 'AE', 'United Arab Emirates'), +('210.5.217.0', '210.5.217.255', 2147483647, 2147483647, 'PK', 'Pakistan'), +('210.5.218.0', '210.5.218.63', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('210.5.218.64', '210.5.218.255', 2147483647, 2147483647, 'IR', 'Iran, Islamic Republic of'), +('210.5.219.0', '210.5.219.255', 2147483647, 2147483647, 'AE', 'United Arab Emirates'), +('210.5.220.0', '210.5.220.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('210.5.221.0', '210.5.221.7', 2147483647, 2147483647, 'PK', 'Pakistan'), +('210.5.221.8', '210.5.221.15', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('210.5.221.16', '210.5.221.31', 2147483647, 2147483647, 'PK', 'Pakistan'), +('210.5.221.32', '210.5.221.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('210.5.222.0', '210.5.223.255', 2147483647, 2147483647, 'AE', 'United Arab Emirates'), +('210.5.224.0', '210.5.225.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('210.5.226.0', '210.5.226.255', 2147483647, 2147483647, 'AF', 'Afghanistan'), +('210.5.227.0', '210.5.231.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('210.5.232.0', '210.5.232.127', 2147483647, 2147483647, 'IR', 'Iran, Islamic Republic of'), +('210.5.232.128', '210.5.232.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('210.5.233.0', '210.5.233.191', 2147483647, 2147483647, 'IR', 'Iran, Islamic Republic of'), +('210.5.233.192', '210.5.233.207', 2147483647, 2147483647, 'IQ', 'Iraq'), +('210.5.233.208', '210.5.233.215', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('210.5.233.216', '210.5.233.255', 2147483647, 2147483647, 'IQ', 'Iraq'), +('210.5.234.0', '210.5.235.7', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('210.5.235.8', '210.5.235.47', 2147483647, 2147483647, 'IQ', 'Iraq'), +('210.5.235.48', '210.5.235.55', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('210.5.235.56', '210.5.235.63', 2147483647, 2147483647, 'IQ', 'Iraq'), +('210.5.235.64', '210.5.235.79', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('210.5.235.80', '210.5.235.111', 2147483647, 2147483647, 'IQ', 'Iraq'), +('210.5.235.112', '210.5.235.119', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('210.5.235.120', '210.5.235.143', 2147483647, 2147483647, 'IQ', 'Iraq'), +('210.5.235.144', '210.5.235.183', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('210.5.235.184', '210.5.235.215', 2147483647, 2147483647, 'IQ', 'Iraq'), +('210.5.235.216', '210.5.236.39', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('210.5.236.40', '210.5.236.47', 2147483647, 2147483647, 'IQ', 'Iraq'), +('210.5.236.48', '210.5.236.79', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('210.5.236.80', '210.5.236.103', 2147483647, 2147483647, 'IQ', 'Iraq'), +('210.5.236.104', '210.5.236.119', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('210.5.236.120', '210.5.236.127', 2147483647, 2147483647, 'IQ', 'Iraq'), +('210.5.236.128', '210.5.236.151', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('210.5.236.152', '210.5.236.159', 2147483647, 2147483647, 'IQ', 'Iraq'), +('210.5.236.160', '210.5.236.191', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('210.5.236.192', '210.5.236.207', 2147483647, 2147483647, 'IQ', 'Iraq'), +('210.5.236.208', '210.5.236.223', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('210.5.236.224', '210.5.236.239', 2147483647, 2147483647, 'IQ', 'Iraq'), +('210.5.236.240', '210.5.236.247', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('210.5.236.248', '210.5.236.255', 2147483647, 2147483647, 'IQ', 'Iraq'), +('210.5.237.0', '210.5.238.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('210.5.239.0', '210.5.239.255', 2147483647, 2147483647, 'AE', 'United Arab Emirates'), +('210.5.240.0', '210.5.241.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('210.5.242.0', '210.5.243.255', 2147483647, 2147483647, 'AE', 'United Arab Emirates'), +('210.5.244.0', '210.5.245.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('210.5.246.0', '210.5.247.255', 2147483647, 2147483647, 'AE', 'United Arab Emirates'), +('210.5.248.0', '210.5.248.255', 2147483647, 2147483647, 'AU', 'Australia'), +('210.5.249.0', '210.5.249.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('210.5.250.0', '210.5.254.255', 2147483647, 2147483647, 'AU', 'Australia'), +('210.5.255.0', '210.5.255.255', 2147483647, 2147483647, 'QA', 'Qatar'), +('210.6.0.0', '210.6.255.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('210.7.0.0', '210.7.31.255', 2147483647, 2147483647, 'FJ', 'Fiji'), +('210.7.32.0', '210.7.47.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('210.7.64.0', '210.7.95.255', 2147483647, 2147483647, 'IN', 'India'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('210.7.96.0', '210.7.96.175', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('210.7.96.176', '210.7.96.191', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('210.7.96.192', '210.7.96.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('210.7.97.0', '210.7.97.31', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('210.7.97.32', '210.7.97.63', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('210.7.97.64', '210.7.97.127', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('210.7.97.128', '210.7.97.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('210.7.98.0', '210.7.99.255', 2147483647, 2147483647, 'US', 'United States'), +('210.7.100.0', '210.7.101.255', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('210.7.102.0', '210.7.102.63', 2147483647, 2147483647, 'US', 'United States'), +('210.7.102.64', '210.7.102.127', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('210.7.102.128', '210.7.102.191', 2147483647, 2147483647, 'US', 'United States'), +('210.7.102.192', '210.7.103.191', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('210.7.103.192', '210.7.103.199', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('210.7.103.200', '210.7.103.255', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('210.7.104.0', '210.7.107.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('210.7.108.0', '210.7.111.255', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('210.7.112.0', '210.7.112.15', 2147483647, 2147483647, 'SG', 'Singapore'), +('210.7.112.16', '210.7.112.23', 2147483647, 2147483647, 'SN', 'Senegal'), +('210.7.112.24', '210.7.112.63', 2147483647, 2147483647, 'SG', 'Singapore'), +('210.7.112.64', '210.7.112.87', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('210.7.112.88', '210.7.112.127', 2147483647, 2147483647, 'SG', 'Singapore'), +('210.7.112.128', '210.7.112.255', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('210.7.113.0', '210.7.113.63', 2147483647, 2147483647, 'SG', 'Singapore'), +('210.7.113.64', '210.7.119.127', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('210.7.119.128', '210.7.119.143', 2147483647, 2147483647, 'SG', 'Singapore'), +('210.7.119.144', '210.7.119.175', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('210.7.119.176', '210.7.119.207', 2147483647, 2147483647, 'SG', 'Singapore'), +('210.7.119.208', '210.7.119.215', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('210.7.119.216', '210.7.119.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('210.7.120.0', '210.7.120.7', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('210.7.120.8', '210.7.127.255', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('210.7.128.0', '210.7.128.159', 2147483647, 2147483647, 'AU', 'Australia'), +('210.7.128.160', '210.7.128.191', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('210.7.128.192', '210.7.128.223', 2147483647, 2147483647, 'AU', 'Australia'), +('210.7.128.224', '210.7.128.239', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('210.7.128.240', '210.7.128.255', 2147483647, 2147483647, 'AU', 'Australia'), +('210.7.129.0', '210.7.131.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('210.7.132.0', '210.7.132.255', 2147483647, 2147483647, 'AU', 'Australia'), +('210.7.133.0', '210.7.133.127', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('210.7.133.128', '210.7.133.159', 2147483647, 2147483647, 'AU', 'Australia'), +('210.7.133.160', '210.7.133.191', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('210.7.133.192', '210.7.133.255', 2147483647, 2147483647, 'AU', 'Australia'), +('210.7.134.0', '210.7.135.255', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('210.7.136.0', '210.7.136.47', 2147483647, 2147483647, 'AU', 'Australia'), +('210.7.136.48', '210.7.136.63', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('210.7.136.64', '210.7.136.255', 2147483647, 2147483647, 'AU', 'Australia'), +('210.7.137.0', '210.7.151.255', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('210.7.152.0', '210.7.152.111', 2147483647, 2147483647, 'AU', 'Australia'), +('210.7.152.112', '210.7.152.255', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('210.7.153.0', '210.7.153.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('210.7.154.0', '210.7.155.255', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('210.7.156.0', '210.7.158.159', 2147483647, 2147483647, 'AU', 'Australia'), +('210.7.158.160', '210.7.158.239', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('210.7.158.240', '210.7.159.127', 2147483647, 2147483647, 'AU', 'Australia'), +('210.7.159.128', '210.7.159.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('210.7.159.192', '210.7.159.215', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('210.7.159.216', '210.7.159.255', 2147483647, 2147483647, 'AU', 'Australia'), +('210.7.160.0', '210.7.191.255', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('210.7.192.0', '210.7.199.255', 2147483647, 2147483647, 'US', 'United States'), +('210.7.200.0', '210.7.223.255', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('210.7.224.0', '210.7.224.47', 2147483647, 2147483647, 'JP', 'Japan'), +('210.7.224.48', '210.7.224.63', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('210.7.224.64', '210.7.224.111', 2147483647, 2147483647, 'JP', 'Japan'), +('210.7.224.112', '210.7.224.127', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('210.7.224.128', '210.7.224.159', 2147483647, 2147483647, 'JP', 'Japan'), +('210.7.224.160', '210.7.247.255', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('210.7.248.0', '210.7.249.255', 2147483647, 2147483647, 'US', 'United States'), +('210.7.250.0', '210.7.253.255', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('210.7.254.0', '210.7.255.63', 2147483647, 2147483647, 'JP', 'Japan'), +('210.7.255.64', '210.7.255.127', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('210.7.255.128', '210.7.255.159', 2147483647, 2147483647, 'JP', 'Japan'), +('210.7.255.160', '210.7.255.183', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('210.7.255.184', '210.7.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('210.8.0.0', '210.11.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('210.12.0.0', '210.13.255.255', 2147483647, 2147483647, 'CN', 'China'), +('210.14.0.0', '210.14.47.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('210.14.48.0', '210.14.63.255', 2147483647, 2147483647, 'JP', 'Japan'), +('210.14.64.0', '210.14.95.255', 2147483647, 2147483647, 'CN', 'China'), +('210.14.96.0', '210.14.111.255', 2147483647, 2147483647, 'AU', 'Australia'), +('210.14.112.0', '210.15.191.255', 2147483647, 2147483647, 'CN', 'China'), +('210.15.192.0', '210.15.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('210.16.0.0', '210.16.9.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('210.16.10.0', '210.16.10.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('210.16.11.0', '210.16.39.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('210.16.40.0', '210.16.40.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('210.16.41.0', '210.16.127.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('210.16.128.0', '210.16.191.255', 2147483647, 2147483647, 'CN', 'China'), +('210.16.192.0', '210.16.255.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('210.17.0.0', '210.17.127.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('210.17.128.0', '210.17.255.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('210.18.0.0', '210.18.191.255', 2147483647, 2147483647, 'IN', 'India'), +('210.18.192.0', '210.18.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('210.19.0.0', '210.19.255.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('210.20.0.0', '210.20.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('210.21.0.0', '210.22.255.255', 2147483647, 2147483647, 'CN', 'China'), +('210.23.0.0', '210.23.31.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('210.23.32.0', '210.23.63.255', 2147483647, 2147483647, 'CN', 'China'), +('210.23.64.0', '210.23.79.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('210.23.80.0', '210.23.95.255', 2147483647, 2147483647, 'MP', 'Northern Mariana Islands'), +('210.23.96.0', '210.23.127.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('210.23.128.0', '210.23.159.255', 2147483647, 2147483647, 'AU', 'Australia'), +('210.23.160.0', '210.23.230.223', 2147483647, 2147483647, 'PH', 'Philippines'), +('210.23.230.224', '210.23.230.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('210.23.231.0', '210.23.255.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('210.24.0.0', '210.24.255.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('210.25.0.0', '210.31.210.3', 2147483647, 2147483647, 'CN', 'China'), +('210.31.210.4', '210.31.210.7', 2147483647, 2147483647, 'US', 'United States'), +('210.31.210.8', '210.47.255.255', 2147483647, 2147483647, 'CN', 'China'), +('210.48.0.0', '210.48.127.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('210.48.128.0', '210.48.135.255', 2147483647, 2147483647, 'JP', 'Japan'), +('210.48.136.0', '210.48.143.255', 2147483647, 2147483647, 'KH', 'Cambodia'), +('210.48.144.0', '210.48.159.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('210.48.160.0', '210.48.191.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('210.48.192.0', '210.48.207.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('210.48.208.0', '210.48.215.255', 2147483647, 2147483647, 'AU', 'Australia'), +('210.48.216.0', '210.48.223.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('210.48.224.0', '210.48.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('210.49.0.0', '210.50.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('210.51.0.0', '210.53.255.255', 2147483647, 2147483647, 'CN', 'China'), +('210.54.0.0', '210.55.255.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('210.56.0.0', '210.56.31.255', 2147483647, 2147483647, 'PK', 'Pakistan'), +('210.56.32.0', '210.56.47.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('210.56.48.0', '210.56.63.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('210.56.64.0', '210.56.95.255', 2147483647, 2147483647, 'AU', 'Australia'), +('210.56.96.0', '210.56.127.255', 2147483647, 2147483647, 'IN', 'India'), +('210.56.128.0', '210.56.143.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('210.56.144.0', '210.56.151.255', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('210.56.152.0', '210.56.159.255', 2147483647, 2147483647, 'AU', 'Australia'), +('210.56.160.0', '210.56.191.255', 2147483647, 2147483647, 'JP', 'Japan'), +('210.56.192.0', '210.56.223.255', 2147483647, 2147483647, 'CN', 'China'), +('210.56.224.0', '210.56.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('210.57.0.0', '210.57.207.255', 2147483647, 2147483647, 'JP', 'Japan'), +('210.57.208.0', '210.57.223.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('210.57.224.0', '210.57.255.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('210.58.0.0', '210.71.255.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('210.72.0.0', '210.78.255.255', 2147483647, 2147483647, 'CN', 'China'), +('210.79.0.0', '210.79.15.255', 2147483647, 2147483647, 'JP', 'Japan'), +('210.79.16.0', '210.79.31.255', 2147483647, 2147483647, 'AU', 'Australia'), +('210.79.32.0', '210.79.47.255', 2147483647, 2147483647, 'JP', 'Japan'), +('210.79.48.0', '210.79.55.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('210.79.64.0', '210.79.127.255', 2147483647, 2147483647, 'CN', 'China'), +('210.79.128.0', '210.79.207.255', 2147483647, 2147483647, 'JP', 'Japan'), +('210.79.208.0', '210.79.223.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('210.79.224.0', '210.79.255.255', 2147483647, 2147483647, 'CN', 'China'), +('210.80.0.0', '210.80.9.31', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('210.80.9.32', '210.80.9.47', 2147483647, 2147483647, 'AU', 'Australia'), +('210.80.9.48', '210.80.25.255', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('210.80.26.0', '210.80.26.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('210.80.27.0', '210.80.45.255', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('210.80.46.0', '210.80.46.255', 2147483647, 2147483647, 'AU', 'Australia'), +('210.80.47.0', '210.80.63.255', 2147483647, 2147483647, 'AP', 'Asia/Pacific Region'), +('210.80.64.0', '210.80.95.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('210.80.96.0', '210.80.127.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('210.80.128.0', '210.80.182.175', 2147483647, 2147483647, 'AU', 'Australia'), +('210.80.182.176', '210.80.182.191', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('210.80.182.192', '210.80.188.175', 2147483647, 2147483647, 'AU', 'Australia'), +('210.80.188.176', '210.80.188.191', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('210.80.188.192', '210.80.191.255', 2147483647, 2147483647, 'AU', 'Australia'), +('210.80.192.0', '210.81.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('210.82.0.0', '210.83.255.255', 2147483647, 2147483647, 'CN', 'China'), +('210.84.0.0', '210.84.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('210.85.0.0', '210.85.255.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('210.86.0.0', '210.86.127.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('210.86.128.0', '210.86.223.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('210.86.224.0', '210.86.239.255', 2147483647, 2147483647, 'VN', 'Vietnam'), +('210.86.240.0', '210.87.63.255', 2147483647, 2147483647, 'AU', 'Australia'), +('210.87.64.0', '210.87.127.255', 2147483647, 2147483647, 'JP', 'Japan'), +('210.87.128.0', '210.87.191.255', 2147483647, 2147483647, 'CN', 'China'), +('210.87.192.0', '210.87.223.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('210.87.224.0', '210.87.239.255', 2147483647, 2147483647, 'JP', 'Japan'), +('210.87.240.0', '210.87.255.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('210.88.0.0', '210.88.111.191', 2147483647, 2147483647, 'JP', 'Japan'), +('210.88.111.192', '210.88.111.207', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('210.88.111.208', '210.89.31.255', 2147483647, 2147483647, 'JP', 'Japan'), +('210.89.32.0', '210.89.63.255', 2147483647, 2147483647, 'IN', 'India'), +('210.89.64.0', '210.89.95.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('210.89.96.0', '210.89.127.255', 2147483647, 2147483647, 'JP', 'Japan'), +('210.89.128.0', '210.89.159.255', 2147483647, 2147483647, 'AU', 'Australia'), +('210.89.160.0', '210.89.191.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('210.89.192.0', '210.89.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('210.90.0.0', '210.127.255.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('210.128.0.0', '210.175.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('210.176.0.0', '210.176.32.31', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('210.176.32.32', '210.176.32.63', 2147483647, 2147483647, 'IN', 'India'), +('210.176.32.64', '210.176.32.95', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('210.176.32.96', '210.176.44.63', 2147483647, 2147483647, 'IN', 'India'), +('210.176.44.64', '210.176.44.159', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('210.176.44.160', '210.176.47.255', 2147483647, 2147483647, 'IN', 'India'), +('210.176.48.0', '210.177.255.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('210.178.0.0', '210.183.255.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('210.184.0.0', '210.184.255.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('210.185.0.0', '210.185.63.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('210.185.64.0', '210.185.127.255', 2147483647, 2147483647, 'AU', 'Australia'), +('210.185.128.0', '210.185.159.255', 2147483647, 2147483647, 'JP', 'Japan'), +('210.185.160.0', '210.185.191.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('210.185.192.0', '210.185.255.255', 2147483647, 2147483647, 'CN', 'China'), +('210.186.0.0', '210.187.39.127', 2147483647, 2147483647, 'MY', 'Malaysia'), +('210.187.39.128', '210.187.39.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('210.187.40.0', '210.187.255.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('210.188.0.0', '210.191.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('210.192.0.0', '210.192.63.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('210.192.64.0', '210.192.95.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('210.192.96.0', '210.192.127.255', 2147483647, 2147483647, 'CN', 'China'), +('210.192.128.0', '210.192.255.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('210.193.0.0', '210.193.63.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('210.193.64.0', '210.193.127.255', 2147483647, 2147483647, 'JP', 'Japan'), +('210.193.128.0', '210.193.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('210.194.0.0', '210.194.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('210.195.0.0', '210.195.255.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('210.196.0.0', '210.199.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('210.200.0.0', '210.203.127.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('210.203.128.0', '210.203.191.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('210.203.192.0', '210.203.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('210.204.0.0', '210.207.255.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('210.208.0.0', '210.209.63.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('210.209.64.0', '210.209.127.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('210.209.128.0', '210.209.255.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('210.210.0.0', '210.210.127.255', 2147483647, 2147483647, 'IN', 'India'), +('210.210.128.0', '210.210.191.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('210.210.192.0', '210.210.255.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('210.211.16.0', '210.211.23.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('210.211.24.0', '210.211.31.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('210.211.32.0', '210.211.63.255', 2147483647, 2147483647, 'JP', 'Japan'), +('210.211.128.0', '210.212.255.255', 2147483647, 2147483647, 'IN', 'India'), +('210.213.0.0', '210.213.63.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('210.213.64.0', '210.213.255.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('210.214.0.0', '210.214.255.255', 2147483647, 2147483647, 'IN', 'India'), +('210.215.0.0', '210.215.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('210.216.0.0', '210.223.255.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('210.224.0.0', '210.239.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('210.240.0.0', '210.244.255.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('210.245.0.0', '210.245.127.255', 2147483647, 2147483647, 'VN', 'Vietnam'), +('210.245.128.0', '210.245.255.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('210.246.0.0', '210.246.63.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('210.246.64.0', '210.246.255.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('210.247.0.0', '210.247.127.255', 2147483647, 2147483647, 'JP', 'Japan'), +('210.247.128.0', '210.247.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('210.248.0.0', '211.19.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('211.20.0.0', '211.23.255.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('211.24.0.0', '211.25.255.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('211.26.0.0', '211.31.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('211.32.0.0', '211.63.255.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('211.64.0.0', '211.71.255.255', 2147483647, 2147483647, 'CN', 'China'), +('211.72.0.0', '211.79.255.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('211.80.0.0', '211.103.255.255', 2147483647, 2147483647, 'CN', 'China'), +('211.104.0.0', '211.119.255.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('211.120.0.0', '211.135.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('211.136.0.0', '211.167.255.255', 2147483647, 2147483647, 'CN', 'China'), +('211.168.0.0', '211.222.11.223', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('211.222.11.224', '211.222.11.255', 2147483647, 2147483647, 'DE', 'Germany'), +('211.222.12.0', '211.255.255.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('212.0.0.0', '212.0.17.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.0.18.0', '212.0.63.255', 2147483647, 2147483647, 'EU', 'Europe'), +('212.0.64.0', '212.0.95.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.0.96.0', '212.0.100.255', 2147483647, 2147483647, 'ES', 'Spain'), +('212.0.101.0', '212.0.101.31', 2147483647, 2147483647, 'IT', 'Italy'), +('212.0.101.32', '212.0.127.255', 2147483647, 2147483647, 'ES', 'Spain'), +('212.0.128.0', '212.0.159.255', 2147483647, 2147483647, 'SD', 'Sudan'), +('212.0.160.0', '212.0.191.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('212.0.192.0', '212.0.223.255', 2147483647, 2147483647, 'MD', 'Moldova, Republic of'), +('212.0.224.0', '212.1.31.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.1.32.0', '212.1.49.63', 2147483647, 2147483647, 'DE', 'Germany'), +('212.1.49.64', '212.1.49.95', 2147483647, 2147483647, 'US', 'United States'), +('212.1.49.96', '212.1.63.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.1.64.0', '212.1.127.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('212.1.128.0', '212.1.159.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.1.160.0', '212.1.191.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.1.192.0', '212.1.255.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.2.0.0', '212.2.31.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.2.32.0', '212.2.95.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.2.96.0', '212.2.127.255', 2147483647, 2147483647, 'PL', 'Poland'), +('212.2.128.0', '212.2.159.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('212.2.160.0', '212.2.191.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('212.2.192.0', '212.2.223.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('212.2.224.0', '212.2.255.255', 2147483647, 2147483647, 'KG', 'Kyrgyzstan'), +('212.3.0.0', '212.3.31.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('212.3.32.0', '212.3.63.255', 2147483647, 2147483647, 'ES', 'Spain'), +('212.3.64.0', '212.3.95.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.3.96.0', '212.3.127.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('212.3.128.0', '212.3.159.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.3.160.0', '212.3.191.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.3.192.0', '212.3.223.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.3.224.0', '212.3.224.135', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.3.224.136', '212.3.224.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.3.224.160', '212.3.224.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.3.225.0', '212.3.225.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.3.226.0', '212.3.229.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.3.230.0', '212.3.231.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.3.232.0', '212.3.232.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.3.233.0', '212.3.233.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.3.234.0', '212.3.235.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.3.236.0', '212.3.236.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.3.237.0', '212.3.239.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.3.240.0', '212.3.240.23', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.3.240.24', '212.3.240.31', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.3.240.32', '212.3.240.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.3.240.48', '212.3.240.191', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.3.240.192', '212.3.240.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.3.240.224', '212.3.240.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.3.241.0', '212.3.241.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.3.242.0', '212.3.243.127', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.3.243.128', '212.3.243.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.3.243.192', '212.3.244.47', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.3.244.48', '212.3.244.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.3.244.64', '212.3.244.195', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.3.244.196', '212.3.244.207', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.3.244.208', '212.3.246.191', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.3.246.192', '212.3.246.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.3.247.0', '212.3.248.191', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.3.248.192', '212.3.248.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.3.249.0', '212.3.251.63', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.3.251.64', '212.3.251.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.3.251.96', '212.3.251.111', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.3.251.112', '212.3.251.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.3.251.128', '212.3.252.63', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.3.252.64', '212.3.252.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.3.252.128', '212.3.253.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.3.254.0', '212.3.254.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.3.255.0', '212.3.255.127', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.3.255.128', '212.3.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.4.0.0', '212.4.6.103', 2147483647, 2147483647, 'IT', 'Italy'), +('212.4.6.104', '212.4.6.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.4.6.112', '212.4.8.159', 2147483647, 2147483647, 'IT', 'Italy'), +('212.4.8.160', '212.4.8.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.4.8.192', '212.4.31.255', 2147483647, 2147483647, 'IT', 'Italy'), +('212.4.32.0', '212.4.63.255', 2147483647, 2147483647, 'NO', 'Norway'), +('212.4.64.0', '212.4.95.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.4.96.0', '212.4.127.255', 2147483647, 2147483647, 'ES', 'Spain'), +('212.4.128.0', '212.4.159.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('212.4.160.0', '212.4.191.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.4.192.0', '212.4.211.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.4.211.64', '212.4.211.95', 2147483647, 2147483647, 'DE', 'Germany'), +('212.4.211.96', '212.4.211.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.4.211.128', '212.4.213.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.4.214.0', '212.4.214.63', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.4.214.64', '212.4.214.127', 2147483647, 2147483647, 'IT', 'Italy'), +('212.4.214.128', '212.4.223.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.4.224.0', '212.5.31.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.5.32.0', '212.5.51.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('212.5.52.0', '212.5.58.255', 2147483647, 2147483647, 'RS', 'Serbia'), +('212.5.59.0', '212.5.63.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('212.5.64.0', '212.5.127.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.5.128.0', '212.5.159.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('212.5.160.0', '212.5.191.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.5.192.0', '212.5.223.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('212.5.224.0', '212.6.31.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.6.32.0', '212.6.38.255', 2147483647, 2147483647, 'IR', 'Iran, Islamic Republic of'), +('212.6.39.0', '212.6.40.255', 2147483647, 2147483647, 'IQ', 'Iraq'), +('212.6.41.0', '212.6.41.127', 2147483647, 2147483647, 'IR', 'Iran, Islamic Republic of'), +('212.6.41.128', '212.6.41.191', 2147483647, 2147483647, 'IQ', 'Iraq'), +('212.6.41.192', '212.6.41.199', 2147483647, 2147483647, 'AE', 'United Arab Emirates'), +('212.6.41.200', '212.6.41.255', 2147483647, 2147483647, 'IT', 'Italy'), +('212.6.42.0', '212.6.42.255', 2147483647, 2147483647, 'IR', 'Iran, Islamic Republic of'), +('212.6.43.0', '212.6.44.255', 2147483647, 2147483647, 'IQ', 'Iraq'), +('212.6.45.0', '212.6.45.255', 2147483647, 2147483647, 'IR', 'Iran, Islamic Republic of'), +('212.6.46.0', '212.6.46.255', 2147483647, 2147483647, 'AE', 'United Arab Emirates'), +('212.6.47.0', '212.6.51.63', 2147483647, 2147483647, 'IR', 'Iran, Islamic Republic of'), +('212.6.51.64', '212.6.51.255', 2147483647, 2147483647, 'IT', 'Italy'), +('212.6.52.0', '212.6.53.43', 2147483647, 2147483647, 'NE', 'Niger'), +('212.6.53.44', '212.6.53.255', 2147483647, 2147483647, 'IT', 'Italy'), +('212.6.54.0', '212.6.54.191', 2147483647, 2147483647, 'IQ', 'Iraq'), +('212.6.54.192', '212.6.55.111', 2147483647, 2147483647, 'IT', 'Italy'), +('212.6.55.112', '212.6.55.127', 2147483647, 2147483647, 'IR', 'Iran, Islamic Republic of'), +('212.6.55.128', '212.6.59.255', 2147483647, 2147483647, 'IT', 'Italy'), +('212.6.60.0', '212.6.63.255', 2147483647, 2147483647, 'IR', 'Iran, Islamic Republic of'), +('212.6.64.0', '212.6.196.167', 2147483647, 2147483647, 'DE', 'Germany'), +('212.6.196.168', '212.6.196.175', 2147483647, 2147483647, 'US', 'United States'), +('212.6.196.176', '212.6.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.7.0.0', '212.7.31.255', 2147483647, 2147483647, 'EE', 'Estonia'), +('212.7.32.0', '212.7.63.255', 2147483647, 2147483647, 'ES', 'Spain'), +('212.7.64.0', '212.7.95.255', 2147483647, 2147483647, 'IT', 'Italy'), +('212.7.96.0', '212.7.127.255', 2147483647, 2147483647, 'AT', 'Austria'), +('212.7.128.0', '212.7.191.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.7.192.0', '212.7.223.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('212.7.224.0', '212.7.255.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.8.0.0', '212.8.31.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.8.32.0', '212.8.63.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('212.8.64.0', '212.8.127.255', 2147483647, 2147483647, 'ES', 'Spain'), +('212.8.128.0', '212.8.159.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.8.160.0', '212.8.161.95', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.8.161.96', '212.8.161.159', 2147483647, 2147483647, 'EU', 'Europe'), +('212.8.161.160', '212.8.161.239', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.8.161.240', '212.8.161.255', 2147483647, 2147483647, 'EU', 'Europe'), +('212.8.162.0', '212.8.163.159', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.8.163.160', '212.8.163.191', 2147483647, 2147483647, 'EU', 'Europe'), +('212.8.163.192', '212.8.164.127', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.8.164.128', '212.8.164.191', 2147483647, 2147483647, 'EU', 'Europe'), +('212.8.164.192', '212.8.166.63', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.8.166.64', '212.8.171.255', 2147483647, 2147483647, 'EU', 'Europe'), +('212.8.172.0', '212.8.172.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.8.173.0', '212.8.173.127', 2147483647, 2147483647, 'EU', 'Europe'), +('212.8.173.128', '212.8.175.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.8.176.0', '212.8.176.15', 2147483647, 2147483647, 'EU', 'Europe'), +('212.8.176.16', '212.8.176.39', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.8.176.40', '212.8.176.47', 2147483647, 2147483647, 'EU', 'Europe'), +('212.8.176.48', '212.8.176.63', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.8.176.64', '212.8.176.79', 2147483647, 2147483647, 'EU', 'Europe'), +('212.8.176.80', '212.8.176.87', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.8.176.88', '212.8.176.95', 2147483647, 2147483647, 'EU', 'Europe'), +('212.8.176.96', '212.8.176.131', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.8.176.132', '212.8.176.135', 2147483647, 2147483647, 'EU', 'Europe'), +('212.8.176.136', '212.8.179.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.8.180.0', '212.8.180.31', 2147483647, 2147483647, 'EU', 'Europe'), +('212.8.180.32', '212.8.182.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.8.183.0', '212.8.183.255', 2147483647, 2147483647, 'EU', 'Europe'), +('212.8.184.0', '212.8.185.15', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.8.185.16', '212.8.185.31', 2147483647, 2147483647, 'EU', 'Europe'), +('212.8.185.32', '212.8.185.87', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.8.185.88', '212.8.185.95', 2147483647, 2147483647, 'EU', 'Europe'), +('212.8.185.96', '212.8.185.127', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.8.185.128', '212.8.185.191', 2147483647, 2147483647, 'EU', 'Europe'), +('212.8.185.192', '212.8.185.239', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.8.185.240', '212.8.186.255', 2147483647, 2147483647, 'EU', 'Europe'), +('212.8.187.0', '212.8.189.15', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.8.189.16', '212.8.189.31', 2147483647, 2147483647, 'EU', 'Europe'), +('212.8.189.32', '212.8.189.47', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.8.189.48', '212.8.189.63', 2147483647, 2147483647, 'EU', 'Europe'), +('212.8.189.64', '212.8.189.79', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.8.189.80', '212.8.189.95', 2147483647, 2147483647, 'EU', 'Europe'), +('212.8.189.96', '212.8.189.159', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.8.189.160', '212.8.189.255', 2147483647, 2147483647, 'EU', 'Europe'), +('212.8.190.0', '212.8.191.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.8.192.0', '212.8.223.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.8.224.0', '212.8.255.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.9.0.0', '212.9.0.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.9.0.128', '212.9.0.255', 2147483647, 2147483647, 'JE', 'Jersey'), +('212.9.1.0', '212.9.1.183', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.9.1.184', '212.9.1.191', 2147483647, 2147483647, 'JE', 'Jersey'), +('212.9.1.192', '212.9.2.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.9.2.224', '212.9.2.255', 2147483647, 2147483647, 'JE', 'Jersey'), +('212.9.3.0', '212.9.3.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.9.3.32', '212.9.3.47', 2147483647, 2147483647, 'JE', 'Jersey'), +('212.9.3.48', '212.9.3.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.9.3.112', '212.9.3.143', 2147483647, 2147483647, 'JE', 'Jersey'), +('212.9.3.144', '212.9.3.151', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.9.3.152', '212.9.3.183', 2147483647, 2147483647, 'JE', 'Jersey'), +('212.9.3.184', '212.9.3.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.9.3.192', '212.9.3.223', 2147483647, 2147483647, 'JE', 'Jersey'), +('212.9.3.224', '212.9.3.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.9.3.240', '212.9.5.47', 2147483647, 2147483647, 'JE', 'Jersey'), +('212.9.5.48', '212.9.5.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.9.5.64', '212.9.5.71', 2147483647, 2147483647, 'JE', 'Jersey'), +('212.9.5.72', '212.9.5.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.9.5.96', '212.9.5.127', 2147483647, 2147483647, 'JE', 'Jersey'), +('212.9.5.128', '212.9.5.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.9.5.160', '212.9.5.255', 2147483647, 2147483647, 'JE', 'Jersey'), +('212.9.6.0', '212.9.6.7', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.9.6.8', '212.9.6.15', 2147483647, 2147483647, 'JE', 'Jersey'), +('212.9.6.16', '212.9.6.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.9.6.32', '212.9.6.63', 2147483647, 2147483647, 'JE', 'Jersey'), +('212.9.6.64', '212.9.6.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.9.6.96', '212.9.6.127', 2147483647, 2147483647, 'JE', 'Jersey'), +('212.9.6.128', '212.9.6.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.9.6.224', '212.9.6.239', 2147483647, 2147483647, 'JE', 'Jersey'), +('212.9.6.240', '212.9.7.7', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.9.7.8', '212.9.7.15', 2147483647, 2147483647, 'JE', 'Jersey'), +('212.9.7.16', '212.9.7.199', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.9.7.200', '212.9.7.207', 2147483647, 2147483647, 'JE', 'Jersey'), +('212.9.7.208', '212.9.9.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.9.10.0', '212.9.10.255', 2147483647, 2147483647, 'JE', 'Jersey'), +('212.9.11.0', '212.9.11.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.9.12.0', '212.9.15.255', 2147483647, 2147483647, 'JE', 'Jersey'), +('212.9.16.0', '212.9.16.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.9.17.0', '212.9.17.255', 2147483647, 2147483647, 'JE', 'Jersey'), +('212.9.18.0', '212.9.18.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.9.19.0', '212.9.19.31', 2147483647, 2147483647, 'JE', 'Jersey'), +('212.9.19.32', '212.9.19.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.9.19.48', '212.9.19.79', 2147483647, 2147483647, 'JE', 'Jersey'), +('212.9.19.80', '212.9.19.107', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.9.19.108', '212.9.19.127', 2147483647, 2147483647, 'JE', 'Jersey'), +('212.9.19.128', '212.9.19.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.9.19.224', '212.9.19.239', 2147483647, 2147483647, 'JE', 'Jersey'), +('212.9.19.240', '212.9.19.247', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.9.19.248', '212.9.19.255', 2147483647, 2147483647, 'JE', 'Jersey'), +('212.9.20.0', '212.9.20.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.9.20.16', '212.9.20.23', 2147483647, 2147483647, 'JE', 'Jersey'), +('212.9.20.24', '212.9.20.55', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.9.20.56', '212.9.20.63', 2147483647, 2147483647, 'JE', 'Jersey'), +('212.9.20.64', '212.9.20.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.9.20.80', '212.9.20.111', 2147483647, 2147483647, 'JE', 'Jersey'), +('212.9.20.112', '212.9.20.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.9.20.160', '212.9.20.191', 2147483647, 2147483647, 'JE', 'Jersey'), +('212.9.20.192', '212.9.20.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.9.20.224', '212.9.20.255', 2147483647, 2147483647, 'JE', 'Jersey'), +('212.9.21.0', '212.9.21.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.9.21.64', '212.9.21.111', 2147483647, 2147483647, 'JE', 'Jersey'), +('212.9.21.112', '212.9.21.119', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.9.21.120', '212.9.21.127', 2147483647, 2147483647, 'JE', 'Jersey'), +('212.9.21.128', '212.9.21.207', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.9.21.208', '212.9.21.255', 2147483647, 2147483647, 'JE', 'Jersey'), +('212.9.22.0', '212.9.22.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.9.22.160', '212.9.22.255', 2147483647, 2147483647, 'JE', 'Jersey'), +('212.9.23.0', '212.9.23.7', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.9.23.8', '212.9.23.15', 2147483647, 2147483647, 'JE', 'Jersey'), +('212.9.23.16', '212.9.23.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.9.23.48', '212.9.23.55', 2147483647, 2147483647, 'JE', 'Jersey'), +('212.9.23.56', '212.9.23.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.9.23.128', '212.9.23.191', 2147483647, 2147483647, 'JE', 'Jersey'), +('212.9.23.192', '212.9.24.87', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.9.24.88', '212.9.24.103', 2147483647, 2147483647, 'JE', 'Jersey'), +('212.9.24.104', '212.9.24.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.9.24.128', '212.9.24.135', 2147483647, 2147483647, 'JE', 'Jersey'), +('212.9.24.136', '212.9.24.151', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.9.24.152', '212.9.24.159', 2147483647, 2147483647, 'JE', 'Jersey'), +('212.9.24.160', '212.9.24.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.9.24.176', '212.9.24.255', 2147483647, 2147483647, 'JE', 'Jersey'), +('212.9.25.0', '212.9.25.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.9.25.96', '212.9.25.103', 2147483647, 2147483647, 'JE', 'Jersey'), +('212.9.25.104', '212.9.25.247', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.9.25.248', '212.9.25.255', 2147483647, 2147483647, 'JE', 'Jersey'), +('212.9.26.0', '212.9.31.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.9.32.0', '212.9.63.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.9.64.0', '212.9.95.255', 2147483647, 2147483647, 'ES', 'Spain'), +('212.9.96.0', '212.9.127.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.9.128.0', '212.9.159.255', 2147483647, 2147483647, 'AT', 'Austria'), +('212.9.160.0', '212.9.191.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.9.192.0', '212.9.223.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.9.224.0', '212.9.255.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('212.10.0.0', '212.10.255.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('212.11.0.0', '212.11.26.87', 2147483647, 2147483647, 'FR', 'France'), +('212.11.26.88', '212.11.26.95', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('212.11.26.96', '212.11.63.255', 2147483647, 2147483647, 'FR', 'France'), +('212.11.64.0', '212.11.95.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.11.96.0', '212.11.127.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('212.11.128.0', '212.11.159.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.11.160.0', '212.11.191.255', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('212.11.192.0', '212.11.223.255', 2147483647, 2147483647, 'SY', 'Syrian Arab Republic'), +('212.11.224.0', '212.11.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.12.0.0', '212.12.31.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.12.32.0', '212.12.55.15', 2147483647, 2147483647, 'DE', 'Germany'), +('212.12.55.16', '212.12.55.31', 2147483647, 2147483647, 'ES', 'Spain'), +('212.12.55.32', '212.12.58.223', 2147483647, 2147483647, 'DE', 'Germany'), +('212.12.58.224', '212.12.58.243', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.12.58.244', '212.12.63.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.12.64.0', '212.12.95.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.12.96.0', '212.12.109.159', 2147483647, 2147483647, 'DE', 'Germany'), +('212.12.109.160', '212.12.109.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.12.109.192', '212.12.112.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.12.113.0', '212.12.113.127', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.12.113.128', '212.12.115.31', 2147483647, 2147483647, 'DE', 'Germany'), +('212.12.115.32', '212.12.115.47', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.12.115.48', '212.12.115.223', 2147483647, 2147483647, 'DE', 'Germany'), +('212.12.115.224', '212.12.115.239', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.12.115.240', '212.12.127.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.12.128.0', '212.12.159.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('212.12.160.0', '212.12.162.15', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('212.12.162.16', '212.12.162.23', 2147483647, 2147483647, 'AS', 'American Samoa'), +('212.12.162.24', '212.12.191.255', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('212.12.192.0', '212.12.223.255', 2147483647, 2147483647, 'LT', 'Lithuania'), +('212.12.224.0', '212.12.255.255', 2147483647, 2147483647, 'EG', 'Egypt'), +('212.13.0.0', '212.13.31.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.13.32.0', '212.13.63.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('212.13.64.0', '212.13.95.255', 2147483647, 2147483647, 'MK', 'Macedonia'), +('212.13.96.0', '212.13.127.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.13.128.0', '212.13.191.255', 2147483647, 2147483647, 'KZ', 'Kazakstan'), +('212.13.192.0', '212.13.223.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.13.224.0', '212.13.255.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('212.14.0.0', '212.14.63.255', 2147483647, 2147483647, 'PL', 'Poland'), +('212.14.64.0', '212.14.95.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.14.96.0', '212.14.127.255', 2147483647, 2147483647, 'ES', 'Spain'), +('212.14.128.0', '212.14.159.255', 2147483647, 2147483647, 'IT', 'Italy'), +('212.14.160.0', '212.14.223.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.14.224.0', '212.14.255.255', 2147483647, 2147483647, 'PS', 'Palestinian Territory, Occupied'), +('212.15.0.0', '212.15.31.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('212.15.32.0', '212.15.63.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.15.64.0', '212.15.95.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.15.96.0', '212.15.127.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.15.128.0', '212.15.159.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('212.15.160.0', '212.15.191.255', 2147483647, 2147483647, 'HR', 'Croatia'), +('212.15.192.0', '212.15.223.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.15.224.0', '212.15.255.255', 2147483647, 2147483647, 'ES', 'Spain'), +('212.16.0.0', '212.16.31.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.16.32.0', '212.16.63.255', 2147483647, 2147483647, 'AT', 'Austria'), +('212.16.64.0', '212.16.95.255', 2147483647, 2147483647, 'IR', 'Iran, Islamic Republic of'), +('212.16.96.0', '212.16.127.255', 2147483647, 2147483647, 'FI', 'Finland'), +('212.16.128.0', '212.16.159.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('212.16.160.0', '212.16.191.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('212.16.192.0', '212.16.223.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.16.224.0', '212.16.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.17.0.0', '212.17.31.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.17.32.0', '212.17.63.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('212.17.64.0', '212.17.127.255', 2147483647, 2147483647, 'AT', 'Austria'), +('212.17.128.0', '212.17.159.255', 2147483647, 2147483647, 'NO', 'Norway'), +('212.17.160.0', '212.17.191.255', 2147483647, 2147483647, 'AX', 'Aland Islands'), +('212.17.192.0', '212.17.223.255', 2147483647, 2147483647, 'IT', 'Italy'), +('212.17.224.0', '212.17.239.95', 2147483647, 2147483647, 'DE', 'Germany'), +('212.17.239.96', '212.17.239.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.17.239.112', '212.18.31.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.18.32.0', '212.18.45.15', 2147483647, 2147483647, 'SI', 'Slovenia'), +('212.18.45.16', '212.18.45.23', 2147483647, 2147483647, 'AE', 'United Arab Emirates'), +('212.18.45.24', '212.18.46.159', 2147483647, 2147483647, 'SI', 'Slovenia'), +('212.18.46.160', '212.18.46.191', 2147483647, 2147483647, 'AE', 'United Arab Emirates'), +('212.18.46.192', '212.18.63.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('212.18.64.0', '212.18.95.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.18.96.0', '212.18.127.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.18.128.0', '212.18.159.255', 2147483647, 2147483647, 'NO', 'Norway'), +('212.18.160.0', '212.18.191.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('212.18.192.0', '212.18.223.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.18.224.0', '212.18.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.19.0.0', '212.19.31.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.19.32.0', '212.19.32.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.19.32.32', '212.19.61.63', 2147483647, 2147483647, 'DE', 'Germany'), +('212.19.61.64', '212.19.61.67', 2147483647, 2147483647, 'LI', 'Liechtenstein'), +('212.19.61.68', '212.19.63.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.19.64.0', '212.19.95.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.19.96.0', '212.19.127.255', 2147483647, 2147483647, 'IT', 'Italy'), +('212.19.128.0', '212.19.159.255', 2147483647, 2147483647, 'KZ', 'Kazakstan'), +('212.19.160.0', '212.19.191.255', 2147483647, 2147483647, 'FR', 'France'), +('212.19.192.0', '212.19.206.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.19.206.128', '212.19.206.143', 2147483647, 2147483647, 'US', 'United States'), +('212.19.206.144', '212.19.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.20.0.0', '212.20.63.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.20.64.0', '212.20.127.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('212.20.128.0', '212.20.165.15', 2147483647, 2147483647, 'DE', 'Germany'), +('212.20.165.16', '212.20.165.31', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.20.165.32', '212.20.191.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.20.192.0', '212.20.223.255', 2147483647, 2147483647, 'NO', 'Norway'), +('212.20.224.0', '212.20.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.21.32.0', '212.21.32.127', 2147483647, 2147483647, 'NG', 'Nigeria'), +('212.21.32.128', '212.21.32.255', 2147483647, 2147483647, 'SD', 'Sudan'), +('212.21.33.0', '212.21.33.127', 2147483647, 2147483647, 'MZ', 'Mozambique'), +('212.21.33.128', '212.21.33.255', 2147483647, 2147483647, 'CI', 'Cote D''Ivoire'), +('212.21.34.0', '212.21.34.127', 2147483647, 2147483647, 'CM', 'Cameroon'), +('212.21.34.128', '212.21.34.255', 2147483647, 2147483647, 'SD', 'Sudan'), +('212.21.35.0', '212.21.35.127', 2147483647, 2147483647, 'DE', 'Germany'), +('212.21.35.128', '212.21.35.255', 2147483647, 2147483647, 'SD', 'Sudan'), +('212.21.36.0', '212.21.36.127', 2147483647, 2147483647, 'ET', 'Ethiopia'), +('212.21.36.128', '212.21.36.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.21.37.0', '212.21.38.255', 2147483647, 2147483647, 'SD', 'Sudan'), +('212.21.39.0', '212.21.39.0', 2147483647, 2147483647, 'DE', 'Germany'), +('212.21.39.1', '212.21.39.255', 2147483647, 2147483647, 'KG', 'Kyrgyzstan'), +('212.21.40.0', '212.21.95.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.21.96.0', '212.21.127.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.21.128.0', '212.21.159.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('212.21.160.0', '212.21.191.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.21.192.0', '212.21.192.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.21.193.0', '212.21.195.63', 2147483647, 2147483647, 'ES', 'Spain'), +('212.21.195.64', '212.21.195.79', 2147483647, 2147483647, 'IT', 'Italy'), +('212.21.195.80', '212.21.195.127', 2147483647, 2147483647, 'ES', 'Spain'), +('212.21.195.128', '212.21.195.159', 2147483647, 2147483647, 'IT', 'Italy'), +('212.21.195.160', '212.21.195.191', 2147483647, 2147483647, 'ES', 'Spain'), +('212.21.195.192', '212.21.195.199', 2147483647, 2147483647, 'IT', 'Italy'), +('212.21.195.200', '212.21.195.207', 2147483647, 2147483647, 'ES', 'Spain'), +('212.21.195.208', '212.21.195.223', 2147483647, 2147483647, 'IT', 'Italy'), +('212.21.195.224', '212.21.195.231', 2147483647, 2147483647, 'ES', 'Spain'), +('212.21.195.232', '212.21.196.47', 2147483647, 2147483647, 'IT', 'Italy'), +('212.21.196.48', '212.21.196.127', 2147483647, 2147483647, 'ES', 'Spain'), +('212.21.196.128', '212.21.196.191', 2147483647, 2147483647, 'IT', 'Italy'), +('212.21.196.192', '212.21.196.255', 2147483647, 2147483647, 'ES', 'Spain'), +('212.21.197.0', '212.21.197.15', 2147483647, 2147483647, 'IT', 'Italy'), +('212.21.197.16', '212.21.197.47', 2147483647, 2147483647, 'ES', 'Spain'), +('212.21.197.48', '212.21.197.127', 2147483647, 2147483647, 'IT', 'Italy'), +('212.21.197.128', '212.21.197.239', 2147483647, 2147483647, 'ES', 'Spain'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('212.21.197.240', '212.21.197.247', 2147483647, 2147483647, 'IT', 'Italy'), +('212.21.197.248', '212.21.197.255', 2147483647, 2147483647, 'ES', 'Spain'), +('212.21.198.0', '212.21.223.255', 2147483647, 2147483647, 'US', 'United States'), +('212.21.224.0', '212.21.255.255', 2147483647, 2147483647, 'ES', 'Spain'), +('212.22.0.0', '212.22.31.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.22.32.0', '212.22.63.255', 2147483647, 2147483647, 'ES', 'Spain'), +('212.22.64.0', '212.22.95.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.22.96.0', '212.22.127.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.22.128.0', '212.22.159.255', 2147483647, 2147483647, 'IT', 'Italy'), +('212.22.160.0', '212.22.191.255', 2147483647, 2147483647, 'KE', 'Kenya'), +('212.22.192.0', '212.22.223.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('212.22.224.0', '212.22.225.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.22.226.0', '212.22.227.255', 2147483647, 2147483647, 'GI', 'Gibraltar'), +('212.22.228.0', '212.22.229.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.22.230.0', '212.22.232.255', 2147483647, 2147483647, 'GI', 'Gibraltar'), +('212.22.233.0', '212.22.233.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.22.234.0', '212.22.251.255', 2147483647, 2147483647, 'GI', 'Gibraltar'), +('212.22.252.0', '212.22.254.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.22.255.0', '212.22.255.255', 2147483647, 2147483647, 'GI', 'Gibraltar'), +('212.23.0.0', '212.23.32.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.23.33.0', '212.23.33.31', 2147483647, 2147483647, 'DE', 'Germany'), +('212.23.33.32', '212.23.33.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.23.33.64', '212.23.33.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.23.34.0', '212.23.34.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.23.34.128', '212.23.34.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.23.35.0', '212.23.36.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.23.37.0', '212.23.37.63', 2147483647, 2147483647, 'FR', 'France'), +('212.23.37.64', '212.23.37.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.23.37.128', '212.23.37.255', 2147483647, 2147483647, 'FR', 'France'), +('212.23.38.0', '212.23.41.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.23.41.64', '212.23.41.127', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.23.41.128', '212.23.41.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.23.42.0', '212.23.42.63', 2147483647, 2147483647, 'FR', 'France'), +('212.23.42.64', '212.23.42.127', 2147483647, 2147483647, 'IT', 'Italy'), +('212.23.42.128', '212.23.42.191', 2147483647, 2147483647, 'DE', 'Germany'), +('212.23.42.192', '212.23.42.255', 2147483647, 2147483647, 'ES', 'Spain'), +('212.23.43.0', '212.23.43.63', 2147483647, 2147483647, 'AT', 'Austria'), +('212.23.43.64', '212.23.43.127', 2147483647, 2147483647, 'SE', 'Sweden'), +('212.23.43.128', '212.23.43.191', 2147483647, 2147483647, 'US', 'United States'), +('212.23.43.192', '212.23.43.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.23.44.0', '212.23.44.43', 2147483647, 2147483647, 'US', 'United States'), +('212.23.44.44', '212.23.44.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.23.44.64', '212.23.44.99', 2147483647, 2147483647, 'US', 'United States'), +('212.23.44.100', '212.23.44.103', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.23.44.104', '212.23.44.111', 2147483647, 2147483647, 'GU', 'Guam'), +('212.23.44.112', '212.23.44.255', 2147483647, 2147483647, 'US', 'United States'), +('212.23.45.0', '212.23.45.31', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.23.45.32', '212.23.45.47', 2147483647, 2147483647, 'DE', 'Germany'), +('212.23.45.48', '212.23.45.63', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.23.45.64', '212.23.45.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.23.45.80', '212.23.45.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.23.46.0', '212.23.46.207', 2147483647, 2147483647, 'FR', 'France'), +('212.23.46.208', '212.23.46.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.23.46.224', '212.23.46.255', 2147483647, 2147483647, 'FR', 'France'), +('212.23.47.0', '212.23.47.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.23.48.0', '212.23.48.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.23.49.0', '212.23.49.83', 2147483647, 2147483647, 'IT', 'Italy'), +('212.23.49.84', '212.23.49.87', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.23.49.88', '212.23.49.255', 2147483647, 2147483647, 'IT', 'Italy'), +('212.23.50.0', '212.23.50.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('212.23.51.0', '212.23.51.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.23.52.0', '212.23.52.143', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.23.52.144', '212.23.52.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.23.52.160', '212.23.52.183', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.23.52.184', '212.23.52.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.23.52.224', '212.23.52.231', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.23.52.232', '212.23.52.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.23.52.240', '212.23.52.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.23.53.0', '212.23.53.127', 2147483647, 2147483647, 'ES', 'Spain'), +('212.23.53.128', '212.23.53.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.23.54.0', '212.23.54.15', 2147483647, 2147483647, 'DE', 'Germany'), +('212.23.54.16', '212.23.54.23', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.23.54.24', '212.23.54.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.23.54.32', '212.23.54.47', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.23.54.48', '212.23.54.63', 2147483647, 2147483647, 'DE', 'Germany'), +('212.23.54.64', '212.23.54.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.23.54.80', '212.23.54.87', 2147483647, 2147483647, 'SE', 'Sweden'), +('212.23.54.88', '212.23.54.191', 2147483647, 2147483647, 'DE', 'Germany'), +('212.23.54.192', '212.23.54.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.23.55.0', '212.23.55.15', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.23.55.16', '212.23.55.31', 2147483647, 2147483647, 'AT', 'Austria'), +('212.23.55.32', '212.23.55.39', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.23.55.40', '212.23.55.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.23.55.48', '212.23.55.63', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.23.55.64', '212.23.55.79', 2147483647, 2147483647, 'AT', 'Austria'), +('212.23.55.80', '212.23.55.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.23.55.112', '212.23.55.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.23.56.0', '212.23.57.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.23.57.224', '212.23.57.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.23.58.0', '212.23.58.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.23.59.0', '212.23.59.47', 2147483647, 2147483647, 'SE', 'Sweden'), +('212.23.59.48', '212.23.59.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.23.59.64', '212.23.60.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.23.60.64', '212.23.60.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.23.60.128', '212.23.60.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.23.61.0', '212.23.61.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.23.61.128', '212.23.61.135', 2147483647, 2147483647, 'DE', 'Germany'), +('212.23.61.136', '212.23.63.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.23.64.0', '212.23.95.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.23.96.0', '212.23.159.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.23.160.0', '212.23.167.17', 2147483647, 2147483647, 'FR', 'France'), +('212.23.167.18', '212.23.167.19', 2147483647, 2147483647, 'ES', 'Spain'), +('212.23.167.20', '212.23.223.255', 2147483647, 2147483647, 'FR', 'France'), +('212.23.224.0', '212.23.225.215', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.23.225.216', '212.23.225.223', 2147483647, 2147483647, 'FR', 'France'), +('212.23.225.224', '212.23.228.11', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.23.228.12', '212.23.228.15', 2147483647, 2147483647, 'DE', 'Germany'), +('212.23.228.16', '212.23.228.23', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.23.228.24', '212.23.228.31', 2147483647, 2147483647, 'DE', 'Germany'), +('212.23.228.32', '212.23.235.235', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.23.235.236', '212.23.235.239', 2147483647, 2147483647, 'ES', 'Spain'), +('212.23.235.240', '212.23.235.247', 2147483647, 2147483647, 'DE', 'Germany'), +('212.23.235.248', '212.23.236.247', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.23.236.248', '212.23.236.251', 2147483647, 2147483647, 'DE', 'Germany'), +('212.23.236.252', '212.23.243.31', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.23.243.32', '212.23.243.39', 2147483647, 2147483647, 'ES', 'Spain'), +('212.23.243.40', '212.23.244.115', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.23.244.116', '212.23.244.119', 2147483647, 2147483647, 'DE', 'Germany'), +('212.23.244.120', '212.23.245.199', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.23.245.200', '212.23.245.203', 2147483647, 2147483647, 'DE', 'Germany'), +('212.23.245.204', '212.23.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.24.0.0', '212.24.31.255', 2147483647, 2147483647, 'IT', 'Italy'), +('212.24.32.0', '212.24.63.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.24.64.0', '212.24.95.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.24.96.0', '212.24.96.39', 2147483647, 2147483647, 'AT', 'Austria'), +('212.24.96.40', '212.24.96.47', 2147483647, 2147483647, 'GI', 'Gibraltar'), +('212.24.96.48', '212.24.99.15', 2147483647, 2147483647, 'AT', 'Austria'), +('212.24.99.16', '212.24.99.31', 2147483647, 2147483647, 'AR', 'Argentina'), +('212.24.99.32', '212.24.99.63', 2147483647, 2147483647, 'CL', 'Chile'), +('212.24.99.64', '212.24.99.79', 2147483647, 2147483647, 'ES', 'Spain'), +('212.24.99.80', '212.24.99.95', 2147483647, 2147483647, 'DE', 'Germany'), +('212.24.99.96', '212.24.99.111', 2147483647, 2147483647, 'US', 'United States'), +('212.24.99.112', '212.24.99.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.24.99.128', '212.24.99.159', 2147483647, 2147483647, 'AT', 'Austria'), +('212.24.99.160', '212.24.99.191', 2147483647, 2147483647, 'DE', 'Germany'), +('212.24.99.192', '212.24.99.207', 2147483647, 2147483647, 'US', 'United States'), +('212.24.99.208', '212.24.99.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.24.99.224', '212.24.99.239', 2147483647, 2147483647, 'ES', 'Spain'), +('212.24.99.240', '212.24.99.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('212.24.100.0', '212.24.100.15', 2147483647, 2147483647, 'AT', 'Austria'), +('212.24.100.16', '212.24.100.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.24.100.32', '212.24.100.63', 2147483647, 2147483647, 'CL', 'Chile'), +('212.24.100.64', '212.24.100.127', 2147483647, 2147483647, 'AR', 'Argentina'), +('212.24.100.128', '212.24.100.159', 2147483647, 2147483647, 'AT', 'Austria'), +('212.24.100.160', '212.24.100.223', 2147483647, 2147483647, 'DE', 'Germany'), +('212.24.100.224', '212.24.100.239', 2147483647, 2147483647, 'ES', 'Spain'), +('212.24.100.240', '212.24.100.255', 2147483647, 2147483647, 'US', 'United States'), +('212.24.101.0', '212.24.104.223', 2147483647, 2147483647, 'AT', 'Austria'), +('212.24.104.224', '212.24.104.231', 2147483647, 2147483647, 'FR', 'France'), +('212.24.104.232', '212.24.115.255', 2147483647, 2147483647, 'AT', 'Austria'), +('212.24.116.0', '212.24.116.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('212.24.117.0', '212.24.117.127', 2147483647, 2147483647, 'AT', 'Austria'), +('212.24.117.128', '212.24.117.255', 2147483647, 2147483647, 'ES', 'Spain'), +('212.24.118.0', '212.24.127.255', 2147483647, 2147483647, 'AT', 'Austria'), +('212.24.128.0', '212.24.159.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('212.24.160.0', '212.24.191.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('212.24.192.0', '212.24.223.255', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('212.24.224.0', '212.24.255.255', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('212.25.0.0', '212.25.31.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.25.32.0', '212.25.63.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('212.25.64.0', '212.25.127.255', 2147483647, 2147483647, 'IL', 'Israel'), +('212.25.128.0', '212.25.159.255', 2147483647, 2147483647, 'ES', 'Spain'), +('212.25.160.0', '212.25.191.255', 2147483647, 2147483647, 'IT', 'Italy'), +('212.25.192.0', '212.25.192.63', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.25.192.64', '212.25.192.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.25.193.0', '212.25.193.127', 2147483647, 2147483647, 'FR', 'France'), +('212.25.193.128', '212.25.223.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.25.224.0', '212.25.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.26.0.0', '212.26.127.255', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('212.26.128.0', '212.26.159.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('212.26.160.0', '212.26.191.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('212.26.192.0', '212.26.223.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.26.224.0', '212.26.255.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.27.0.0', '212.27.15.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('212.27.16.0', '212.27.31.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('212.27.32.0', '212.27.63.255', 2147483647, 2147483647, 'FR', 'France'), +('212.27.64.0', '212.27.127.255', 2147483647, 2147483647, 'AT', 'Austria'), +('212.27.128.0', '212.27.158.127', 2147483647, 2147483647, 'DE', 'Germany'), +('212.27.158.128', '212.27.158.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.27.158.160', '212.27.159.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.27.160.0', '212.27.163.127', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.27.163.128', '212.27.163.159', 2147483647, 2147483647, 'DE', 'Germany'), +('212.27.163.160', '212.27.164.175', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.27.164.176', '212.27.164.191', 2147483647, 2147483647, 'DE', 'Germany'), +('212.27.164.192', '212.27.183.191', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.27.183.192', '212.27.183.223', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.27.183.224', '212.27.191.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.27.192.0', '212.27.223.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('212.27.224.0', '212.27.255.255', 2147483647, 2147483647, 'EE', 'Estonia'), +('212.28.0.0', '212.28.31.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.28.32.0', '212.28.63.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.28.64.0', '212.28.95.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.28.96.0', '212.28.127.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.28.128.0', '212.28.159.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.28.160.0', '212.28.191.255', 2147483647, 2147483647, 'IT', 'Italy'), +('212.28.192.0', '212.28.223.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('212.28.224.0', '212.28.255.255', 2147483647, 2147483647, 'LB', 'Lebanon'), +('212.29.0.0', '212.29.63.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.29.64.0', '212.29.127.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('212.29.128.0', '212.29.159.255', 2147483647, 2147483647, 'IT', 'Italy'), +('212.29.160.0', '212.29.191.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.29.192.0', '212.29.255.255', 2147483647, 2147483647, 'IL', 'Israel'), +('212.30.0.0', '212.30.0.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.30.1.0', '212.30.3.255', 2147483647, 2147483647, 'GG', 'Guernsey'), +('212.30.4.0', '212.30.4.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.30.4.128', '212.30.4.255', 2147483647, 2147483647, 'GG', 'Guernsey'), +('212.30.5.0', '212.30.5.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.30.5.128', '212.30.7.255', 2147483647, 2147483647, 'GG', 'Guernsey'), +('212.30.8.0', '212.30.9.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.30.10.0', '212.30.11.255', 2147483647, 2147483647, 'GG', 'Guernsey'), +('212.30.12.0', '212.30.12.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.30.12.48', '212.30.12.63', 2147483647, 2147483647, 'GG', 'Guernsey'), +('212.30.12.64', '212.30.12.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.30.12.96', '212.30.12.111', 2147483647, 2147483647, 'GG', 'Guernsey'), +('212.30.12.112', '212.30.12.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.30.12.128', '212.30.12.143', 2147483647, 2147483647, 'GG', 'Guernsey'), +('212.30.12.144', '212.30.12.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.30.12.240', '212.30.12.255', 2147483647, 2147483647, 'GG', 'Guernsey'), +('212.30.13.0', '212.30.13.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.30.13.96', '212.30.13.223', 2147483647, 2147483647, 'GG', 'Guernsey'), +('212.30.13.224', '212.30.13.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.30.14.0', '212.30.14.255', 2147483647, 2147483647, 'GG', 'Guernsey'), +('212.30.15.0', '212.30.16.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.30.16.176', '212.30.16.183', 2147483647, 2147483647, 'GG', 'Guernsey'), +('212.30.16.184', '212.30.16.215', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.30.16.216', '212.30.16.231', 2147483647, 2147483647, 'GG', 'Guernsey'), +('212.30.16.232', '212.30.16.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.30.16.240', '212.30.16.247', 2147483647, 2147483647, 'GG', 'Guernsey'), +('212.30.16.248', '212.30.16.254', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.30.16.255', '212.30.17.15', 2147483647, 2147483647, 'GG', 'Guernsey'), +('212.30.17.16', '212.30.17.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.30.17.32', '212.30.17.79', 2147483647, 2147483647, 'GG', 'Guernsey'), +('212.30.17.80', '212.30.17.167', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.30.17.168', '212.30.18.127', 2147483647, 2147483647, 'GG', 'Guernsey'), +('212.30.18.128', '212.30.18.207', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.30.18.208', '212.30.20.255', 2147483647, 2147483647, 'GG', 'Guernsey'), +('212.30.21.0', '212.30.21.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.30.22.0', '212.30.23.255', 2147483647, 2147483647, 'GG', 'Guernsey'), +('212.30.24.0', '212.30.24.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.30.25.0', '212.30.25.255', 2147483647, 2147483647, 'GG', 'Guernsey'), +('212.30.26.0', '212.30.26.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.30.27.0', '212.30.27.255', 2147483647, 2147483647, 'GG', 'Guernsey'), +('212.30.28.0', '212.30.28.67', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.30.28.68', '212.30.28.71', 2147483647, 2147483647, 'GG', 'Guernsey'), +('212.30.28.72', '212.30.28.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.30.28.240', '212.30.28.255', 2147483647, 2147483647, 'GG', 'Guernsey'), +('212.30.29.0', '212.30.31.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.30.31.32', '212.30.31.79', 2147483647, 2147483647, 'GG', 'Guernsey'), +('212.30.31.80', '212.30.31.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.30.31.112', '212.30.31.195', 2147483647, 2147483647, 'GG', 'Guernsey'), +('212.30.31.196', '212.30.31.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.30.31.224', '212.30.31.255', 2147483647, 2147483647, 'GG', 'Guernsey'), +('212.30.32.0', '212.30.63.255', 2147483647, 2147483647, 'LB', 'Lebanon'), +('212.30.64.0', '212.30.95.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('212.30.96.0', '212.30.127.255', 2147483647, 2147483647, 'FR', 'France'), +('212.30.128.0', '212.30.191.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.30.192.0', '212.30.255.255', 2147483647, 2147483647, 'IS', 'Iceland'), +('212.31.0.0', '212.31.31.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('212.31.32.0', '212.31.63.255', 2147483647, 2147483647, 'ES', 'Spain'), +('212.31.64.0', '212.31.79.23', 2147483647, 2147483647, 'AT', 'Austria'), +('212.31.79.24', '212.31.79.31', 2147483647, 2147483647, 'DE', 'Germany'), +('212.31.79.32', '212.31.79.163', 2147483647, 2147483647, 'AT', 'Austria'), +('212.31.79.164', '212.31.79.167', 2147483647, 2147483647, 'DE', 'Germany'), +('212.31.79.168', '212.31.79.191', 2147483647, 2147483647, 'AT', 'Austria'), +('212.31.79.192', '212.31.79.199', 2147483647, 2147483647, 'DE', 'Germany'), +('212.31.79.200', '212.31.95.255', 2147483647, 2147483647, 'AT', 'Austria'), +('212.31.96.0', '212.31.103.31', 2147483647, 2147483647, 'CY', 'Cyprus'), +('212.31.103.32', '212.31.103.39', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('212.31.103.40', '212.31.104.255', 2147483647, 2147483647, 'CY', 'Cyprus'), +('212.31.105.0', '212.31.105.15', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('212.31.105.16', '212.31.120.255', 2147483647, 2147483647, 'CY', 'Cyprus'), +('212.31.121.0', '212.31.121.255', 2147483647, 2147483647, 'LB', 'Lebanon'), +('212.31.122.0', '212.31.127.255', 2147483647, 2147483647, 'CY', 'Cyprus'), +('212.31.128.0', '212.31.159.255', 2147483647, 2147483647, 'FR', 'France'), +('212.31.160.0', '212.31.191.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('212.31.192.0', '212.31.192.255', 2147483647, 2147483647, 'ES', 'Spain'), +('212.31.193.0', '212.31.194.255', 2147483647, 2147483647, 'US', 'United States'), +('212.31.195.0', '212.31.195.31', 2147483647, 2147483647, 'ES', 'Spain'), +('212.31.195.32', '212.31.195.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.31.195.64', '212.31.195.143', 2147483647, 2147483647, 'ES', 'Spain'), +('212.31.195.144', '212.31.195.151', 2147483647, 2147483647, 'NO', 'Norway'), +('212.31.195.152', '212.31.196.223', 2147483647, 2147483647, 'ES', 'Spain'), +('212.31.196.224', '212.31.196.231', 2147483647, 2147483647, 'PT', 'Portugal'), +('212.31.196.232', '212.31.197.255', 2147483647, 2147483647, 'ES', 'Spain'), +('212.31.198.0', '212.31.199.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.31.200.0', '212.31.200.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.31.201.0', '212.31.201.255', 2147483647, 2147483647, 'ES', 'Spain'), +('212.31.202.0', '212.31.202.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.31.203.0', '212.31.203.23', 2147483647, 2147483647, 'ES', 'Spain'), +('212.31.203.24', '212.31.203.31', 2147483647, 2147483647, 'DE', 'Germany'), +('212.31.203.32', '212.31.203.63', 2147483647, 2147483647, 'ES', 'Spain'), +('212.31.203.64', '212.31.203.79', 2147483647, 2147483647, 'DE', 'Germany'), +('212.31.203.80', '212.31.203.87', 2147483647, 2147483647, 'ES', 'Spain'), +('212.31.203.88', '212.31.203.91', 2147483647, 2147483647, 'DE', 'Germany'), +('212.31.203.92', '212.31.203.127', 2147483647, 2147483647, 'ES', 'Spain'), +('212.31.203.128', '212.31.203.135', 2147483647, 2147483647, 'DE', 'Germany'), +('212.31.203.136', '212.31.203.159', 2147483647, 2147483647, 'ES', 'Spain'), +('212.31.203.160', '212.31.203.171', 2147483647, 2147483647, 'DE', 'Germany'), +('212.31.203.172', '212.31.203.239', 2147483647, 2147483647, 'ES', 'Spain'), +('212.31.203.240', '212.31.203.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.31.204.0', '212.31.207.255', 2147483647, 2147483647, 'ES', 'Spain'), +('212.31.208.0', '212.31.208.255', 2147483647, 2147483647, 'US', 'United States'), +('212.31.209.0', '212.31.209.63', 2147483647, 2147483647, 'ES', 'Spain'), +('212.31.209.64', '212.31.209.127', 2147483647, 2147483647, 'US', 'United States'), +('212.31.209.128', '212.31.209.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.31.210.0', '212.31.210.15', 2147483647, 2147483647, 'US', 'United States'), +('212.31.210.16', '212.31.210.255', 2147483647, 2147483647, 'ES', 'Spain'), +('212.31.211.0', '212.31.211.7', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.31.211.8', '212.31.212.255', 2147483647, 2147483647, 'ES', 'Spain'), +('212.31.213.0', '212.31.213.255', 2147483647, 2147483647, 'US', 'United States'), +('212.31.214.0', '212.31.215.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.31.215.128', '212.31.215.191', 2147483647, 2147483647, 'ES', 'Spain'), +('212.31.215.192', '212.31.215.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.31.216.0', '212.31.223.255', 2147483647, 2147483647, 'US', 'United States'), +('212.31.224.0', '212.31.255.255', 2147483647, 2147483647, 'IT', 'Italy'), +('212.32.0.0', '212.32.127.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.32.128.0', '212.32.191.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('212.32.192.0', '212.32.223.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.32.224.0', '212.32.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.33.0.0', '212.33.31.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.33.32.0', '212.33.63.255', 2147483647, 2147483647, 'AT', 'Austria'), +('212.33.64.0', '212.33.95.255', 2147483647, 2147483647, 'PL', 'Poland'), +('212.33.96.0', '212.33.127.255', 2147483647, 2147483647, 'PS', 'Palestinian Territory, Occupied'), +('212.33.128.0', '212.33.159.255', 2147483647, 2147483647, 'NO', 'Norway'), +('212.33.160.0', '212.33.191.255', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('212.33.192.0', '212.33.223.255', 2147483647, 2147483647, 'IR', 'Iran, Islamic Republic of'), +('212.33.224.0', '212.33.255.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.34.0.0', '212.34.31.255', 2147483647, 2147483647, 'JO', 'Jordan'), +('212.34.32.0', '212.34.63.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.34.64.0', '212.34.70.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.34.71.0', '212.34.71.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.34.71.16', '212.34.95.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.34.96.0', '212.34.127.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.34.128.0', '212.34.159.0', 2147483647, 2147483647, 'ES', 'Spain'), +('212.34.159.1', '212.34.159.255', 2147483647, 2147483647, 'US', 'United States'), +('212.34.160.0', '212.34.191.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.34.192.0', '212.34.223.255', 2147483647, 2147483647, 'IT', 'Italy'), +('212.34.224.0', '212.34.255.255', 2147483647, 2147483647, 'AM', 'Armenia'), +('212.35.0.0', '212.35.63.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.35.64.0', '212.35.95.255', 2147483647, 2147483647, 'JO', 'Jordan'), +('212.35.96.0', '212.35.96.155', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.35.96.156', '212.35.96.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.35.96.160', '212.35.96.239', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.35.96.240', '212.35.96.243', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.35.96.244', '212.35.99.23', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.35.99.24', '212.35.99.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.35.99.32', '212.35.99.159', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.35.99.160', '212.35.99.167', 2147483647, 2147483647, 'DE', 'Germany'), +('212.35.99.168', '212.35.99.247', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.35.99.248', '212.35.99.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.35.100.0', '212.35.100.7', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.35.100.8', '212.35.100.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.35.100.16', '212.35.100.23', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.35.100.24', '212.35.100.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.35.100.64', '212.35.100.151', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.35.100.152', '212.35.100.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.35.100.160', '212.35.100.175', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.35.100.176', '212.35.100.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.35.100.192', '212.35.101.155', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.35.101.156', '212.35.101.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.35.101.160', '212.35.101.175', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.35.101.176', '212.35.101.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.35.101.192', '212.35.101.199', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.35.101.200', '212.35.101.203', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.35.101.204', '212.35.101.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.35.102.0', '212.35.102.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.35.103.0', '212.35.103.63', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.35.103.64', '212.35.103.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.35.103.128', '212.35.103.151', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.35.103.152', '212.35.103.159', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.35.103.160', '212.35.103.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.35.104.0', '212.35.104.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.35.104.16', '212.35.104.47', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.35.104.48', '212.35.104.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.35.104.64', '212.35.105.87', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.35.105.88', '212.35.105.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.35.105.96', '212.35.106.127', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.35.106.128', '212.35.106.135', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.35.106.136', '212.35.106.207', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.35.106.208', '212.35.106.211', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.35.106.212', '212.35.106.231', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.35.106.232', '212.35.106.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.35.106.240', '212.35.107.167', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.35.107.168', '212.35.107.171', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.35.107.172', '212.35.107.187', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.35.107.188', '212.35.107.207', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.35.107.208', '212.35.108.23', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.35.108.24', '212.35.108.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.35.108.32', '212.35.108.39', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.35.108.40', '212.35.108.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.35.108.48', '212.35.108.127', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.35.108.128', '212.35.108.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.35.108.192', '212.35.108.199', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.35.108.200', '212.35.108.207', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.35.108.208', '212.35.108.223', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.35.108.224', '212.35.108.227', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.35.108.228', '212.35.109.51', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.35.109.52', '212.35.109.55', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.35.109.56', '212.35.109.63', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.35.109.64', '212.35.109.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.35.109.80', '212.35.109.127', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.35.109.128', '212.35.109.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.35.109.160', '212.35.109.175', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.35.109.176', '212.35.109.179', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.35.109.180', '212.35.110.79', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.35.110.80', '212.35.110.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.35.110.96', '212.35.111.191', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.35.111.192', '212.35.111.192', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.35.111.193', '212.35.111.254', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.35.111.255', '212.35.111.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.35.112.0', '212.35.112.15', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.35.112.16', '212.35.112.23', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.35.112.24', '212.35.112.63', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.35.112.64', '212.35.112.71', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.35.112.72', '212.35.112.87', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.35.112.88', '212.35.112.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.35.112.128', '212.35.112.143', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.35.112.144', '212.35.112.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.35.112.160', '212.35.112.223', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.35.112.224', '212.35.112.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.35.112.240', '212.35.112.247', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.35.112.248', '212.35.114.3', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.35.114.4', '212.35.114.119', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.35.114.120', '212.35.114.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.35.114.128', '212.35.114.143', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.35.114.144', '212.35.114.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.35.114.160', '212.35.114.223', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.35.114.224', '212.35.114.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.35.114.240', '212.35.115.15', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.35.115.16', '212.35.115.23', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.35.115.24', '212.35.115.27', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.35.115.28', '212.35.115.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.35.115.32', '212.35.115.91', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.35.115.92', '212.35.115.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.35.115.96', '212.35.115.143', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.35.115.144', '212.35.115.167', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.35.115.168', '212.35.115.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.35.116.0', '212.35.116.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.35.116.16', '212.35.116.51', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.35.116.52', '212.35.116.55', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.35.116.56', '212.35.116.63', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.35.116.64', '212.35.116.71', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.35.116.72', '212.35.116.103', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.35.116.104', '212.35.116.107', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.35.116.108', '212.35.117.63', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.35.117.64', '212.35.117.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.35.117.96', '212.35.117.167', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.35.117.168', '212.35.117.171', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.35.117.172', '212.35.117.175', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.35.117.176', '212.35.117.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.35.117.192', '212.35.117.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.35.118.0', '212.35.118.215', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.35.118.216', '212.35.119.55', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.35.119.56', '212.35.119.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.35.119.64', '212.35.119.71', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.35.119.72', '212.35.119.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.35.119.80', '212.35.119.87', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.35.119.88', '212.35.119.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.35.119.96', '212.35.119.135', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.35.119.136', '212.35.119.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.35.119.144', '212.35.119.167', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.35.119.168', '212.35.119.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.35.119.176', '212.35.120.143', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.35.120.144', '212.35.120.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.35.120.160', '212.35.120.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.35.121.0', '212.35.122.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.35.123.0', '212.35.123.23', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.35.123.24', '212.35.123.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.35.123.32', '212.35.123.79', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.35.123.80', '212.35.123.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.35.123.96', '212.35.123.223', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.35.123.224', '212.35.124.7', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.35.124.8', '212.35.124.55', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.35.124.56', '212.35.124.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.35.124.64', '212.35.124.127', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.35.124.128', '212.35.124.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.35.124.160', '212.35.124.191', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.35.124.192', '212.35.124.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.35.125.0', '212.35.125.23', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.35.125.24', '212.35.125.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.35.125.32', '212.35.125.39', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.35.125.40', '212.35.125.71', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.35.125.72', '212.35.125.79', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.35.125.80', '212.35.125.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.35.125.96', '212.35.125.215', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.35.125.216', '212.35.125.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.35.125.224', '212.35.127.23', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.35.127.24', '212.35.127.39', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.35.127.40', '212.35.127.59', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.35.127.60', '212.35.127.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.35.127.64', '212.35.127.151', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.35.127.152', '212.35.127.159', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.35.127.160', '212.35.127.183', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.35.127.184', '212.35.127.187', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.35.127.188', '212.35.127.191', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.35.127.192', '212.35.127.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.35.128.0', '212.35.154.255', 2147483647, 2147483647, 'RO', 'Romania'), +('212.35.155.0', '212.35.155.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.35.156.0', '212.35.159.255', 2147483647, 2147483647, 'RO', 'Romania'), +('212.35.160.0', '212.35.191.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('212.35.192.0', '212.35.223.255', 2147483647, 2147483647, 'IT', 'Italy'), +('212.35.224.0', '212.35.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.36.0.0', '212.36.31.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('212.36.32.0', '212.36.63.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.36.64.0', '212.36.95.255', 2147483647, 2147483647, 'ES', 'Spain'), +('212.36.96.0', '212.36.187.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.36.188.0', '212.36.188.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.36.189.0', '212.36.189.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.36.190.0', '212.36.191.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.36.192.0', '212.36.223.255', 2147483647, 2147483647, 'LB', 'Lebanon'), +('212.36.224.0', '212.36.255.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.37.0.0', '212.37.31.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('212.37.32.0', '212.37.63.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.37.64.0', '212.37.95.255', 2147483647, 2147483647, 'GR', 'Greece'), +('212.37.96.0', '212.37.127.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('212.37.128.0', '212.37.159.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('212.37.160.0', '212.37.191.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.37.192.0', '212.37.223.255', 2147483647, 2147483647, 'FR', 'France'), +('212.37.224.0', '212.37.255.255', 2147483647, 2147483647, 'NO', 'Norway'), +('212.38.0.0', '212.38.31.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.38.32.0', '212.38.63.255', 2147483647, 2147483647, 'IT', 'Italy'), +('212.38.64.0', '212.38.95.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.38.96.0', '212.38.96.159', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.38.96.160', '212.38.96.175', 2147483647, 2147483647, 'UA', 'Ukraine'), +('212.38.96.176', '212.38.109.111', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.38.109.112', '212.38.109.127', 2147483647, 2147483647, 'UA', 'Ukraine'), +('212.38.109.128', '212.38.109.143', 2147483647, 2147483647, 'AZ', 'Azerbaijan'), +('212.38.109.144', '212.38.110.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.38.111.0', '212.38.115.255', 2147483647, 2147483647, 'AZ', 'Azerbaijan'), +('212.38.116.0', '212.38.121.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.38.122.0', '212.38.122.255', 2147483647, 2147483647, 'AZ', 'Azerbaijan'), +('212.38.123.0', '212.38.123.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.38.124.0', '212.38.124.255', 2147483647, 2147483647, 'AZ', 'Azerbaijan'), +('212.38.125.0', '212.38.127.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.38.128.0', '212.38.159.255', 2147483647, 2147483647, 'JO', 'Jordan'), +('212.38.160.0', '212.38.191.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.38.192.0', '212.38.223.255', 2147483647, 2147483647, 'PL', 'Poland'), +('212.38.224.0', '212.38.255.255', 2147483647, 2147483647, 'FI', 'Finland'), +('212.39.0.0', '212.39.31.255', 2147483647, 2147483647, 'IT', 'Italy'), +('212.39.32.0', '212.39.41.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('212.39.42.0', '212.39.42.255', 2147483647, 2147483647, 'US', 'United States'), +('212.39.43.0', '212.39.63.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('212.39.64.0', '212.39.95.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('212.39.96.0', '212.39.127.255', 2147483647, 2147483647, 'BA', 'Bosnia and Herzegovina'), +('212.39.128.0', '212.39.159.255', 2147483647, 2147483647, 'FR', 'France'), +('212.39.160.0', '212.39.191.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.39.192.0', '212.39.223.255', 2147483647, 2147483647, 'AT', 'Austria'), +('212.39.224.0', '212.39.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.40.0.0', '212.40.31.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.40.32.0', '212.40.48.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('212.40.49.0', '212.40.49.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.40.50.0', '212.40.63.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('212.40.64.0', '212.40.127.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('212.40.128.0', '212.40.159.255', 2147483647, 2147483647, 'LB', 'Lebanon'), +('212.40.160.0', '212.40.191.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.40.192.0', '212.40.223.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.40.224.0', '212.40.255.255', 2147483647, 2147483647, 'ES', 'Spain'), +('212.41.0.0', '212.41.63.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.41.64.0', '212.41.127.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.41.128.0', '212.41.132.31', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.41.132.32', '212.41.132.63', 2147483647, 2147483647, 'DE', 'Germany'), +('212.41.132.64', '212.41.132.191', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.41.132.192', '212.41.132.223', 2147483647, 2147483647, 'ES', 'Spain'), +('212.41.132.224', '212.41.132.231', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.41.132.232', '212.41.132.239', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.41.132.240', '212.41.132.255', 2147483647, 2147483647, 'ES', 'Spain'), +('212.41.133.0', '212.41.134.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.41.134.64', '212.41.134.95', 2147483647, 2147483647, 'ES', 'Spain'), +('212.41.134.96', '212.41.134.159', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.41.134.160', '212.41.134.191', 2147483647, 2147483647, 'ES', 'Spain'), +('212.41.134.192', '212.41.135.119', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.41.135.120', '212.41.135.127', 2147483647, 2147483647, 'ES', 'Spain'), +('212.41.135.128', '212.41.136.183', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.41.136.184', '212.41.136.187', 2147483647, 2147483647, 'ES', 'Spain'), +('212.41.136.188', '212.41.136.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.41.137.0', '212.41.137.31', 2147483647, 2147483647, 'ES', 'Spain'), +('212.41.137.32', '212.41.137.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.41.137.64', '212.41.137.95', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.41.137.96', '212.41.137.127', 2147483647, 2147483647, 'ES', 'Spain'), +('212.41.137.128', '212.41.137.173', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.41.137.174', '212.41.137.175', 2147483647, 2147483647, 'ES', 'Spain'), +('212.41.137.176', '212.41.137.183', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.41.137.184', '212.41.137.191', 2147483647, 2147483647, 'ES', 'Spain'), +('212.41.137.192', '212.41.142.31', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.41.142.32', '212.41.142.47', 2147483647, 2147483647, 'IT', 'Italy'), +('212.41.142.48', '212.41.142.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.41.142.128', '212.41.142.159', 2147483647, 2147483647, 'ES', 'Spain'), +('212.41.142.160', '212.41.142.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.41.142.192', '212.41.142.229', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.41.142.230', '212.41.142.239', 2147483647, 2147483647, 'ES', 'Spain'), +('212.41.142.240', '212.41.159.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.41.160.0', '212.41.191.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.41.192.0', '212.41.223.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.41.224.0', '212.41.255.255', 2147483647, 2147483647, 'AT', 'Austria'), +('212.42.0.0', '212.42.31.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.42.32.0', '212.42.63.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.42.64.0', '212.42.95.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('212.42.96.0', '212.42.127.255', 2147483647, 2147483647, 'KG', 'Kyrgyzstan'), +('212.42.128.0', '212.42.159.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.42.160.0', '212.42.191.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.42.192.0', '212.42.223.255', 2147483647, 2147483647, 'AM', 'Armenia'), +('212.42.224.0', '212.42.249.223', 2147483647, 2147483647, 'DE', 'Germany'), +('212.42.249.224', '212.42.249.255', 2147483647, 2147483647, 'US', 'United States'), +('212.42.250.0', '212.42.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.43.0.0', '212.43.31.255', 2147483647, 2147483647, 'KW', 'Kuwait'), +('212.43.32.0', '212.43.63.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('212.43.64.0', '212.43.95.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.43.96.0', '212.43.127.255', 2147483647, 2147483647, 'IT', 'Italy'), +('212.43.128.0', '212.43.159.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.43.160.0', '212.43.191.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.43.192.0', '212.43.255.255', 2147483647, 2147483647, 'FR', 'France'), +('212.44.0.0', '212.44.63.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.44.64.0', '212.44.95.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.44.96.0', '212.44.127.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('212.44.128.0', '212.44.159.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.44.160.0', '212.44.192.127', 2147483647, 2147483647, 'DE', 'Germany'), +('212.44.192.128', '212.44.192.191', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.44.192.192', '212.44.193.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.44.194.0', '212.44.195.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('212.44.196.0', '212.44.196.127', 2147483647, 2147483647, 'IR', 'Iran, Islamic Republic of'), +('212.44.196.128', '212.44.196.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.44.197.0', '212.44.197.255', 2147483647, 2147483647, 'IR', 'Iran, Islamic Republic of'), +('212.44.198.0', '212.44.222.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.44.223.0', '212.44.223.255', 2147483647, 2147483647, 'IR', 'Iran, Islamic Republic of'), +('212.44.224.0', '212.44.255.255', 2147483647, 2147483647, 'FR', 'France'), +('212.45.0.0', '212.45.31.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.45.32.0', '212.45.63.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.45.64.0', '212.45.95.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('212.45.96.0', '212.45.159.255', 2147483647, 2147483647, 'IT', 'Italy'), +('212.45.160.0', '212.45.191.255', 2147483647, 2147483647, 'NO', 'Norway'), +('212.45.192.0', '212.45.223.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.45.224.0', '212.46.31.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.46.32.0', '212.46.63.255', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('212.46.64.0', '212.46.95.255', 2147483647, 2147483647, 'IT', 'Italy'), +('212.46.96.0', '212.46.127.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.46.128.0', '212.46.159.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.46.160.0', '212.46.191.255', 2147483647, 2147483647, 'IT', 'Italy'), +('212.46.192.0', '212.46.255.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.47.0.0', '212.47.31.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('212.47.32.0', '212.47.63.255', 2147483647, 2147483647, 'IT', 'Italy'), +('212.47.64.0', '212.47.95.255', 2147483647, 2147483647, 'GB', 'United Kingdom'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('212.47.96.0', '212.47.109.63', 2147483647, 2147483647, 'LT', 'Lithuania'), +('212.47.109.64', '212.47.109.79', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.47.109.80', '212.47.127.255', 2147483647, 2147483647, 'LT', 'Lithuania'), +('212.47.128.0', '212.47.159.255', 2147483647, 2147483647, 'AZ', 'Azerbaijan'), +('212.47.160.0', '212.47.191.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.47.192.0', '212.47.195.3', 2147483647, 2147483647, 'EE', 'Estonia'), +('212.47.195.4', '212.47.195.31', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.47.195.32', '212.47.195.47', 2147483647, 2147483647, 'EE', 'Estonia'), +('212.47.195.48', '212.47.195.51', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.47.195.52', '212.47.195.55', 2147483647, 2147483647, 'EE', 'Estonia'), +('212.47.195.56', '212.47.195.87', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.47.195.88', '212.47.203.111', 2147483647, 2147483647, 'EE', 'Estonia'), +('212.47.203.112', '212.47.203.119', 2147483647, 2147483647, 'UA', 'Ukraine'), +('212.47.203.120', '212.47.215.115', 2147483647, 2147483647, 'EE', 'Estonia'), +('212.47.215.116', '212.47.215.119', 2147483647, 2147483647, 'DE', 'Germany'), +('212.47.215.120', '212.47.223.255', 2147483647, 2147483647, 'EE', 'Estonia'), +('212.47.224.0', '212.47.255.255', 2147483647, 2147483647, 'FR', 'France'), +('212.48.0.0', '212.48.31.255', 2147483647, 2147483647, 'IT', 'Italy'), +('212.48.32.0', '212.48.63.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.48.64.0', '212.48.95.255', 2147483647, 2147483647, 'IL', 'Israel'), +('212.48.96.0', '212.48.116.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.48.117.0', '212.48.117.255', 2147483647, 2147483647, 'US', 'United States'), +('212.48.118.0', '212.48.127.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.48.128.0', '212.48.159.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.48.160.0', '212.48.160.63', 2147483647, 2147483647, 'IT', 'Italy'), +('212.48.160.64', '212.48.160.71', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.48.160.72', '212.48.164.63', 2147483647, 2147483647, 'IT', 'Italy'), +('212.48.164.64', '212.48.164.95', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.48.164.96', '212.48.191.255', 2147483647, 2147483647, 'IT', 'Italy'), +('212.48.192.0', '212.48.223.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.48.224.0', '212.48.255.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('212.49.0.0', '212.49.31.255', 2147483647, 2147483647, 'EE', 'Estonia'), +('212.49.32.0', '212.49.63.255', 2147483647, 2147483647, 'PL', 'Poland'), +('212.49.64.0', '212.49.95.255', 2147483647, 2147483647, 'KE', 'Kenya'), +('212.49.96.0', '212.49.127.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.49.128.0', '212.49.191.255', 2147483647, 2147483647, 'ES', 'Spain'), +('212.49.192.0', '212.49.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.50.0.0', '212.50.31.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('212.50.32.0', '212.50.63.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('212.50.64.0', '212.50.95.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('212.50.96.0', '212.50.127.255', 2147483647, 2147483647, 'CY', 'Cyprus'), +('212.50.128.0', '212.50.159.255', 2147483647, 2147483647, 'FI', 'Finland'), +('212.50.160.0', '212.50.191.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.50.192.0', '212.50.223.255', 2147483647, 2147483647, 'FI', 'Finland'), +('212.50.224.0', '212.50.255.255', 2147483647, 2147483647, 'IR', 'Iran, Islamic Republic of'), +('212.51.0.0', '212.51.31.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.51.32.0', '212.51.63.255', 2147483647, 2147483647, 'ES', 'Spain'), +('212.51.64.0', '212.51.127.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('212.51.128.0', '212.51.159.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.51.160.0', '212.51.191.255', 2147483647, 2147483647, 'FR', 'France'), +('212.51.192.0', '212.51.223.255', 2147483647, 2147483647, 'PL', 'Poland'), +('212.51.224.0', '212.51.255.255', 2147483647, 2147483647, 'AT', 'Austria'), +('212.52.0.0', '212.52.31.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.52.32.0', '212.52.63.255', 2147483647, 2147483647, 'LT', 'Lithuania'), +('212.52.64.0', '212.52.127.255', 2147483647, 2147483647, 'IT', 'Italy'), +('212.52.128.0', '212.52.159.255', 2147483647, 2147483647, 'BF', 'Burkina Faso'), +('212.52.160.0', '212.52.191.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('212.52.192.0', '212.52.223.255', 2147483647, 2147483647, 'AT', 'Austria'), +('212.52.224.0', '212.52.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.53.0.0', '212.53.3.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.53.4.0', '212.53.31.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.53.32.0', '212.53.36.103', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.53.36.104', '212.53.36.111', 2147483647, 2147483647, 'UA', 'Ukraine'), +('212.53.36.112', '212.53.39.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.53.40.0', '212.53.40.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('212.53.41.0', '212.53.63.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.53.64.0', '212.53.95.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.53.96.0', '212.53.127.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.53.128.0', '212.53.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.54.0.0', '212.54.31.255', 2147483647, 2147483647, 'FI', 'Finland'), +('212.54.32.0', '212.54.63.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.54.64.0', '212.54.95.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('212.54.96.0', '212.54.127.255', 2147483647, 2147483647, 'RO', 'Romania'), +('212.54.128.0', '212.54.159.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('212.54.160.0', '212.54.191.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.54.192.0', '212.54.223.255', 2147483647, 2147483647, 'GR', 'Greece'), +('212.54.224.0', '212.54.226.95', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.54.226.96', '212.54.226.103', 2147483647, 2147483647, 'IT', 'Italy'), +('212.54.226.104', '212.54.226.111', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.54.226.112', '212.54.226.119', 2147483647, 2147483647, 'IT', 'Italy'), +('212.54.226.120', '212.54.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.55.0.0', '212.55.31.255', 2147483647, 2147483647, 'ES', 'Spain'), +('212.55.32.0', '212.55.50.31', 2147483647, 2147483647, 'FO', 'Faroe Islands'), +('212.55.50.32', '212.55.50.39', 2147483647, 2147483647, 'DK', 'Denmark'), +('212.55.50.40', '212.55.63.255', 2147483647, 2147483647, 'FO', 'Faroe Islands'), +('212.55.64.0', '212.55.127.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.55.128.0', '212.55.191.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('212.55.192.0', '212.55.223.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.55.224.0', '212.55.255.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('212.56.0.0', '212.56.31.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('212.56.32.0', '212.56.38.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.56.39.0', '212.56.39.255', 2147483647, 2147483647, 'US', 'United States'), +('212.56.40.0', '212.56.127.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.56.128.0', '212.56.159.255', 2147483647, 2147483647, 'MT', 'Malta'), +('212.56.160.0', '212.56.191.255', 2147483647, 2147483647, 'IT', 'Italy'), +('212.56.192.0', '212.56.223.255', 2147483647, 2147483647, 'MD', 'Moldova, Republic of'), +('212.56.224.0', '212.56.239.255', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('212.56.240.0', '212.56.240.255', 2147483647, 2147483647, 'EU', 'Europe'), +('212.56.241.0', '212.56.255.255', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('212.57.0.0', '212.57.31.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('212.57.32.0', '212.57.63.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.57.64.0', '212.57.95.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('212.57.96.0', '212.57.191.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.57.192.0', '212.57.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.58.0.0', '212.58.31.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('212.58.32.0', '212.58.63.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.58.64.0', '212.58.95.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.58.96.0', '212.58.127.255', 2147483647, 2147483647, 'GE', 'Georgia'), +('212.58.128.0', '212.58.159.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.58.160.0', '212.58.191.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('212.58.192.0', '212.58.223.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.58.224.0', '212.58.239.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.58.239.144', '212.58.239.151', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.58.239.152', '212.58.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.59.0.0', '212.59.31.255', 2147483647, 2147483647, 'LT', 'Lithuania'), +('212.59.32.0', '212.59.63.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.59.64.0', '212.59.95.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.59.96.0', '212.59.127.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.59.128.0', '212.59.191.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.59.192.0', '212.59.223.255', 2147483647, 2147483647, 'ES', 'Spain'), +('212.59.224.0', '212.59.255.255', 2147483647, 2147483647, 'PL', 'Poland'), +('212.60.0.0', '212.60.31.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.60.32.0', '212.60.63.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.60.64.0', '212.60.95.255', 2147483647, 2147483647, 'GM', 'Gambia'), +('212.60.96.0', '212.60.127.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('212.60.128.0', '212.60.158.223', 2147483647, 2147483647, 'DE', 'Germany'), +('212.60.158.224', '212.60.158.231', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.60.158.232', '212.60.159.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.60.160.0', '212.60.191.255', 2147483647, 2147483647, 'AT', 'Austria'), +('212.60.192.0', '212.60.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.61.0.0', '212.61.252.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.61.253.0', '212.61.253.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.61.254.0', '212.61.255.23', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.61.255.24', '212.61.255.31', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.61.255.32', '212.61.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.62.0.0', '212.62.31.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.62.32.0', '212.62.63.255', 2147483647, 2147483647, 'RS', 'Serbia'), +('212.62.64.0', '212.62.77.175', 2147483647, 2147483647, 'DE', 'Germany'), +('212.62.77.176', '212.62.77.183', 2147483647, 2147483647, 'TH', 'Thailand'), +('212.62.77.184', '212.62.95.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.62.96.0', '212.62.127.255', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('212.62.128.0', '212.62.191.255', 2147483647, 2147483647, 'FR', 'France'), +('212.62.192.0', '212.62.223.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.62.224.0', '212.62.255.255', 2147483647, 2147483647, 'NO', 'Norway'), +('212.63.0.0', '212.63.31.255', 2147483647, 2147483647, 'FI', 'Finland'), +('212.63.32.0', '212.63.69.159', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.69.160', '212.63.69.167', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.63.69.168', '212.63.80.7', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.80.8', '212.63.80.15', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.63.80.16', '212.63.95.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.96.0', '212.63.127.255', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.128.0', '212.63.160.3', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.160.4', '212.63.160.7', 2147483647, 2147483647, 'AT', 'Austria'), +('212.63.160.8', '212.63.160.15', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.160.16', '212.63.160.19', 2147483647, 2147483647, 'PT', 'Portugal'), +('212.63.160.20', '212.63.160.23', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.160.24', '212.63.160.35', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.160.36', '212.63.160.39', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.160.40', '212.63.160.43', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.160.44', '212.63.160.47', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.160.48', '212.63.160.51', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.63.160.52', '212.63.160.59', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.160.60', '212.63.160.63', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.63.160.64', '212.63.160.67', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.160.68', '212.63.160.71', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.63.160.72', '212.63.160.87', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.160.88', '212.63.160.91', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.160.92', '212.63.160.103', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.160.104', '212.63.160.107', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.63.160.108', '212.63.160.111', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.63.160.112', '212.63.160.123', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.160.124', '212.63.160.127', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.63.160.128', '212.63.160.135', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.160.136', '212.63.160.139', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.63.160.140', '212.63.160.143', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.160.144', '212.63.160.147', 2147483647, 2147483647, 'DK', 'Denmark'), +('212.63.160.148', '212.63.160.155', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.160.156', '212.63.160.159', 2147483647, 2147483647, 'PL', 'Poland'), +('212.63.160.160', '212.63.160.163', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.160.164', '212.63.160.167', 2147483647, 2147483647, 'AT', 'Austria'), +('212.63.160.168', '212.63.160.171', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.160.172', '212.63.160.175', 2147483647, 2147483647, 'FR', 'France'), +('212.63.160.176', '212.63.160.183', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.160.184', '212.63.160.187', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.160.188', '212.63.160.199', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.160.200', '212.63.160.207', 2147483647, 2147483647, 'GR', 'Greece'), +('212.63.160.208', '212.63.160.215', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.63.160.216', '212.63.160.231', 2147483647, 2147483647, 'FR', 'France'), +('212.63.160.232', '212.63.160.235', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.160.236', '212.63.160.239', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.160.240', '212.63.160.243', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.160.244', '212.63.160.247', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.160.248', '212.63.160.251', 2147483647, 2147483647, 'IE', 'Ireland'), +('212.63.160.252', '212.63.160.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('212.63.161.0', '212.63.161.3', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.63.161.4', '212.63.161.7', 2147483647, 2147483647, 'DK', 'Denmark'), +('212.63.161.8', '212.63.161.15', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.161.16', '212.63.161.19', 2147483647, 2147483647, 'FR', 'France'), +('212.63.161.20', '212.63.161.23', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.63.161.24', '212.63.161.27', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.161.28', '212.63.161.31', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.161.32', '212.63.161.35', 2147483647, 2147483647, 'FR', 'France'), +('212.63.161.36', '212.63.161.39', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.161.40', '212.63.161.43', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.63.161.44', '212.63.161.47', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.161.48', '212.63.161.51', 2147483647, 2147483647, 'LI', 'Liechtenstein'), +('212.63.161.52', '212.63.161.55', 2147483647, 2147483647, 'FR', 'France'), +('212.63.161.56', '212.63.161.63', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.161.64', '212.63.161.67', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.63.161.68', '212.63.161.71', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.161.72', '212.63.161.75', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.63.161.76', '212.63.161.79', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.161.80', '212.63.161.83', 2147483647, 2147483647, 'FR', 'France'), +('212.63.161.84', '212.63.161.87', 2147483647, 2147483647, 'HU', 'Hungary'), +('212.63.161.88', '212.63.161.91', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.161.92', '212.63.161.99', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.161.100', '212.63.161.103', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.63.161.104', '212.63.161.111', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.161.112', '212.63.161.115', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.63.161.116', '212.63.161.119', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.161.120', '212.63.161.123', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.161.124', '212.63.161.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.63.161.128', '212.63.161.131', 2147483647, 2147483647, 'BR', 'Brazil'), +('212.63.161.132', '212.63.161.135', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.63.161.136', '212.63.161.139', 2147483647, 2147483647, 'RE', 'Reunion'), +('212.63.161.140', '212.63.161.143', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.161.144', '212.63.161.151', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.161.152', '212.63.161.155', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.63.161.156', '212.63.161.159', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.161.160', '212.63.161.163', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.161.164', '212.63.161.167', 2147483647, 2147483647, 'AT', 'Austria'), +('212.63.161.168', '212.63.161.175', 2147483647, 2147483647, 'FR', 'France'), +('212.63.161.176', '212.63.161.179', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.161.180', '212.63.161.183', 2147483647, 2147483647, 'AT', 'Austria'), +('212.63.161.184', '212.63.161.187', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.63.161.188', '212.63.161.191', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.161.192', '212.63.161.195', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.161.196', '212.63.161.199', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.161.200', '212.63.161.207', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.63.161.208', '212.63.161.211', 2147483647, 2147483647, 'FR', 'France'), +('212.63.161.212', '212.63.161.215', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.161.216', '212.63.161.219', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.161.220', '212.63.161.223', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.161.224', '212.63.161.231', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.161.232', '212.63.161.239', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.161.240', '212.63.161.243', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.63.161.244', '212.63.161.247', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.63.161.248', '212.63.161.251', 2147483647, 2147483647, 'GR', 'Greece'), +('212.63.161.252', '212.63.162.11', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.162.12', '212.63.162.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.63.162.16', '212.63.162.19', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.162.20', '212.63.162.23', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.63.162.24', '212.63.162.27', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.63.162.28', '212.63.162.31', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('212.63.162.32', '212.63.162.35', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.63.162.36', '212.63.162.39', 2147483647, 2147483647, 'FR', 'France'), +('212.63.162.40', '212.63.162.43', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.162.44', '212.63.162.47', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.162.48', '212.63.162.55', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.162.56', '212.63.162.59', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.162.60', '212.63.162.63', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.63.162.64', '212.63.162.67', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.162.68', '212.63.162.71', 2147483647, 2147483647, 'FR', 'France'), +('212.63.162.72', '212.63.162.83', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.162.84', '212.63.162.87', 2147483647, 2147483647, 'FR', 'France'), +('212.63.162.88', '212.63.162.91', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.63.162.92', '212.63.162.95', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.162.96', '212.63.162.103', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.162.104', '212.63.162.107', 2147483647, 2147483647, 'AT', 'Austria'), +('212.63.162.108', '212.63.162.111', 2147483647, 2147483647, 'HU', 'Hungary'), +('212.63.162.112', '212.63.162.115', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.162.116', '212.63.162.119', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.162.120', '212.63.162.123', 2147483647, 2147483647, 'FR', 'France'), +('212.63.162.124', '212.63.162.127', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.162.128', '212.63.162.131', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.162.132', '212.63.162.139', 2147483647, 2147483647, 'FR', 'France'), +('212.63.162.140', '212.63.162.143', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.162.144', '212.63.162.147', 2147483647, 2147483647, 'FR', 'France'), +('212.63.162.148', '212.63.162.151', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.63.162.152', '212.63.162.155', 2147483647, 2147483647, 'FR', 'France'), +('212.63.162.156', '212.63.162.159', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.162.160', '212.63.162.163', 2147483647, 2147483647, 'AT', 'Austria'), +('212.63.162.164', '212.63.162.167', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.162.168', '212.63.162.171', 2147483647, 2147483647, 'CY', 'Cyprus'), +('212.63.162.172', '212.63.162.175', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.162.176', '212.63.162.179', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.162.180', '212.63.162.183', 2147483647, 2147483647, 'FR', 'France'), +('212.63.162.184', '212.63.162.187', 2147483647, 2147483647, 'IE', 'Ireland'), +('212.63.162.188', '212.63.162.195', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.162.196', '212.63.162.199', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.63.162.200', '212.63.162.203', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.162.204', '212.63.162.207', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.162.208', '212.63.162.211', 2147483647, 2147483647, 'PT', 'Portugal'), +('212.63.162.212', '212.63.162.215', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.63.162.216', '212.63.162.219', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.162.220', '212.63.162.223', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.63.162.224', '212.63.162.231', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.162.232', '212.63.162.235', 2147483647, 2147483647, 'AT', 'Austria'), +('212.63.162.236', '212.63.162.243', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.63.162.244', '212.63.162.247', 2147483647, 2147483647, 'FR', 'France'), +('212.63.162.248', '212.63.162.251', 2147483647, 2147483647, 'AT', 'Austria'), +('212.63.162.252', '212.63.162.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.163.0', '212.63.163.3', 2147483647, 2147483647, 'FR', 'France'), +('212.63.163.4', '212.63.163.19', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.163.20', '212.63.163.23', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.63.163.24', '212.63.163.39', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.163.40', '212.63.163.43', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.163.44', '212.63.163.51', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.163.52', '212.63.163.55', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.63.163.56', '212.63.163.59', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.63.163.60', '212.63.163.79', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.163.80', '212.63.163.83', 2147483647, 2147483647, 'FR', 'France'), +('212.63.163.84', '212.63.163.91', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.63.163.92', '212.63.163.99', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.163.100', '212.63.163.103', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.163.104', '212.63.163.107', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.163.108', '212.63.163.111', 2147483647, 2147483647, 'IL', 'Israel'), +('212.63.163.112', '212.63.163.115', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.63.163.116', '212.63.163.119', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.163.120', '212.63.163.123', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.163.124', '212.63.163.131', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.163.132', '212.63.163.135', 2147483647, 2147483647, 'GR', 'Greece'), +('212.63.163.136', '212.63.163.143', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.163.144', '212.63.163.147', 2147483647, 2147483647, 'FR', 'France'), +('212.63.163.148', '212.63.163.151', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.163.152', '212.63.163.155', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.63.163.156', '212.63.163.159', 2147483647, 2147483647, 'SL', 'Sierra Leone'), +('212.63.163.160', '212.63.163.163', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.163.164', '212.63.163.167', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.63.163.168', '212.63.163.171', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.163.172', '212.63.163.175', 2147483647, 2147483647, 'HU', 'Hungary'), +('212.63.163.176', '212.63.163.179', 2147483647, 2147483647, 'CY', 'Cyprus'), +('212.63.163.180', '212.63.163.183', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.163.184', '212.63.163.187', 2147483647, 2147483647, 'FR', 'France'), +('212.63.163.188', '212.63.163.191', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.63.163.192', '212.63.163.199', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.163.200', '212.63.163.203', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('212.63.163.204', '212.63.163.207', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.163.208', '212.63.163.211', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.163.212', '212.63.163.215', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.163.216', '212.63.163.219', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.63.163.220', '212.63.163.223', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.163.224', '212.63.163.235', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.163.236', '212.63.163.239', 2147483647, 2147483647, 'FR', 'France'), +('212.63.163.240', '212.63.163.243', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.163.244', '212.63.163.247', 2147483647, 2147483647, 'FR', 'France'), +('212.63.163.248', '212.63.163.251', 2147483647, 2147483647, 'HU', 'Hungary'), +('212.63.163.252', '212.63.163.255', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.164.0', '212.63.164.3', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.164.4', '212.63.164.7', 2147483647, 2147483647, 'IE', 'Ireland'), +('212.63.164.8', '212.63.164.19', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.164.20', '212.63.164.23', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.63.164.24', '212.63.164.27', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.164.28', '212.63.164.31', 2147483647, 2147483647, 'DK', 'Denmark'), +('212.63.164.32', '212.63.164.35', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.164.36', '212.63.164.39', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.164.40', '212.63.164.43', 2147483647, 2147483647, 'FR', 'France'), +('212.63.164.44', '212.63.164.47', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.164.48', '212.63.164.51', 2147483647, 2147483647, 'GR', 'Greece'), +('212.63.164.52', '212.63.164.55', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.63.164.56', '212.63.164.59', 2147483647, 2147483647, 'MA', 'Morocco'), +('212.63.164.60', '212.63.164.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.63.164.64', '212.63.164.67', 2147483647, 2147483647, 'FR', 'France'), +('212.63.164.68', '212.63.164.71', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.63.164.72', '212.63.164.75', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.164.76', '212.63.164.79', 2147483647, 2147483647, 'AT', 'Austria'), +('212.63.164.80', '212.63.164.83', 2147483647, 2147483647, 'SM', 'San Marino'), +('212.63.164.84', '212.63.164.87', 2147483647, 2147483647, 'PL', 'Poland'), +('212.63.164.88', '212.63.164.91', 2147483647, 2147483647, 'AT', 'Austria'), +('212.63.164.92', '212.63.164.95', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.164.96', '212.63.164.103', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.63.164.104', '212.63.164.111', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.164.112', '212.63.164.119', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.164.120', '212.63.164.139', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.164.140', '212.63.164.143', 2147483647, 2147483647, 'DK', 'Denmark'), +('212.63.164.144', '212.63.164.147', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.164.148', '212.63.164.151', 2147483647, 2147483647, 'NO', 'Norway'), +('212.63.164.152', '212.63.164.155', 2147483647, 2147483647, 'FR', 'France'), +('212.63.164.156', '212.63.164.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.63.164.160', '212.63.164.163', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.164.164', '212.63.164.167', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.63.164.168', '212.63.164.171', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.164.172', '212.63.164.175', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.164.176', '212.63.164.179', 2147483647, 2147483647, 'PL', 'Poland'), +('212.63.164.180', '212.63.164.183', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.164.184', '212.63.164.187', 2147483647, 2147483647, 'FR', 'France'), +('212.63.164.188', '212.63.164.191', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.164.192', '212.63.164.195', 2147483647, 2147483647, 'DK', 'Denmark'), +('212.63.164.196', '212.63.164.199', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.164.200', '212.63.164.207', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.164.208', '212.63.164.211', 2147483647, 2147483647, 'IE', 'Ireland'), +('212.63.164.212', '212.63.164.219', 2147483647, 2147483647, 'FR', 'France'), +('212.63.164.220', '212.63.164.223', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.63.164.224', '212.63.164.235', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.164.236', '212.63.164.239', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.164.240', '212.63.164.243', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.63.164.244', '212.63.164.247', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.63.164.248', '212.63.164.255', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.165.0', '212.63.165.3', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.165.4', '212.63.165.7', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.63.165.8', '212.63.165.11', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.165.12', '212.63.165.15', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.165.16', '212.63.165.19', 2147483647, 2147483647, 'FR', 'France'), +('212.63.165.20', '212.63.165.23', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.63.165.24', '212.63.165.27', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.165.28', '212.63.165.31', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.165.32', '212.63.165.35', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.165.36', '212.63.165.39', 2147483647, 2147483647, 'FR', 'France'), +('212.63.165.40', '212.63.165.43', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.165.44', '212.63.165.51', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.165.52', '212.63.165.59', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.165.60', '212.63.165.63', 2147483647, 2147483647, 'PT', 'Portugal'), +('212.63.165.64', '212.63.165.67', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.165.68', '212.63.165.75', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.165.76', '212.63.165.79', 2147483647, 2147483647, 'FR', 'France'), +('212.63.165.80', '212.63.165.83', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.165.84', '212.63.165.87', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.63.165.88', '212.63.165.91', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('212.63.165.92', '212.63.165.95', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.165.96', '212.63.165.99', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.165.100', '212.63.165.103', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.63.165.104', '212.63.165.107', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.165.108', '212.63.165.115', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.63.165.116', '212.63.165.123', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.165.124', '212.63.165.127', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.165.128', '212.63.165.131', 2147483647, 2147483647, 'GR', 'Greece'), +('212.63.165.132', '212.63.165.135', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.63.165.136', '212.63.165.139', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.165.140', '212.63.165.151', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.165.152', '212.63.165.155', 2147483647, 2147483647, 'AT', 'Austria'), +('212.63.165.156', '212.63.165.163', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.63.165.164', '212.63.165.167', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.165.168', '212.63.165.171', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.63.165.172', '212.63.165.175', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.165.176', '212.63.165.179', 2147483647, 2147483647, 'FR', 'France'), +('212.63.165.180', '212.63.165.183', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('212.63.165.184', '212.63.165.187', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.165.188', '212.63.165.195', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.165.196', '212.63.165.199', 2147483647, 2147483647, 'DK', 'Denmark'), +('212.63.165.200', '212.63.165.203', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.165.204', '212.63.165.207', 2147483647, 2147483647, 'PL', 'Poland'), +('212.63.165.208', '212.63.165.211', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.165.212', '212.63.165.215', 2147483647, 2147483647, 'FR', 'France'), +('212.63.165.216', '212.63.165.219', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.165.220', '212.63.165.223', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.165.224', '212.63.165.227', 2147483647, 2147483647, 'FR', 'France'), +('212.63.165.228', '212.63.165.231', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.63.165.232', '212.63.165.235', 2147483647, 2147483647, 'FR', 'France'), +('212.63.165.236', '212.63.165.239', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.165.240', '212.63.165.243', 2147483647, 2147483647, 'FR', 'France'), +('212.63.165.244', '212.63.165.247', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.165.248', '212.63.165.251', 2147483647, 2147483647, 'GR', 'Greece'), +('212.63.165.252', '212.63.166.3', 2147483647, 2147483647, 'FR', 'France'), +('212.63.166.4', '212.63.166.7', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.63.166.8', '212.63.166.15', 2147483647, 2147483647, 'FR', 'France'), +('212.63.166.16', '212.63.166.19', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.63.166.20', '212.63.166.23', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.63.166.24', '212.63.166.27', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.63.166.28', '212.63.166.31', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.166.32', '212.63.166.35', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.166.36', '212.63.166.39', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.63.166.40', '212.63.166.43', 2147483647, 2147483647, 'AT', 'Austria'), +('212.63.166.44', '212.63.166.47', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.166.48', '212.63.166.51', 2147483647, 2147483647, 'FR', 'France'), +('212.63.166.52', '212.63.166.63', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.166.64', '212.63.166.67', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.63.166.68', '212.63.166.71', 2147483647, 2147483647, 'FR', 'France'), +('212.63.166.72', '212.63.166.75', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.166.76', '212.63.166.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.63.166.80', '212.63.166.83', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.166.84', '212.63.166.91', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.166.92', '212.63.166.95', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.166.96', '212.63.166.99', 2147483647, 2147483647, 'DK', 'Denmark'), +('212.63.166.100', '212.63.166.103', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.166.104', '212.63.166.107', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.166.108', '212.63.166.111', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.166.112', '212.63.166.115', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.63.166.116', '212.63.166.119', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.166.120', '212.63.166.123', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.166.124', '212.63.166.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.63.166.128', '212.63.166.131', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.166.132', '212.63.166.135', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.166.136', '212.63.166.139', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.63.166.140', '212.63.166.143', 2147483647, 2147483647, 'FR', 'France'), +('212.63.166.144', '212.63.166.147', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.166.148', '212.63.166.151', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.166.152', '212.63.166.155', 2147483647, 2147483647, 'MA', 'Morocco'), +('212.63.166.156', '212.63.166.159', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.166.160', '212.63.166.163', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.63.166.164', '212.63.166.167', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.63.166.168', '212.63.166.171', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.166.172', '212.63.166.175', 2147483647, 2147483647, 'SE', 'Sweden'), +('212.63.166.176', '212.63.166.179', 2147483647, 2147483647, 'FR', 'France'), +('212.63.166.180', '212.63.166.187', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.166.188', '212.63.166.195', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.166.196', '212.63.166.199', 2147483647, 2147483647, 'FR', 'France'), +('212.63.166.200', '212.63.166.203', 2147483647, 2147483647, 'AT', 'Austria'), +('212.63.166.204', '212.63.166.207', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.63.166.208', '212.63.166.215', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.166.216', '212.63.166.219', 2147483647, 2147483647, 'DK', 'Denmark'), +('212.63.166.220', '212.63.166.223', 2147483647, 2147483647, 'GR', 'Greece'), +('212.63.166.224', '212.63.166.227', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.63.166.228', '212.63.166.231', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.166.232', '212.63.166.235', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.166.236', '212.63.166.239', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.166.240', '212.63.166.247', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.166.248', '212.63.166.251', 2147483647, 2147483647, 'FR', 'France'), +('212.63.166.252', '212.63.167.3', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.167.4', '212.63.167.7', 2147483647, 2147483647, 'SE', 'Sweden'), +('212.63.167.8', '212.63.167.11', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.167.12', '212.63.167.19', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.167.20', '212.63.167.23', 2147483647, 2147483647, 'PT', 'Portugal'), +('212.63.167.24', '212.63.167.27', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.63.167.28', '212.63.167.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.63.167.32', '212.63.167.35', 2147483647, 2147483647, 'FR', 'France'), +('212.63.167.36', '212.63.167.39', 2147483647, 2147483647, 'IE', 'Ireland'), +('212.63.167.40', '212.63.167.43', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.63.167.44', '212.63.167.47', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.167.48', '212.63.167.51', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.167.52', '212.63.167.55', 2147483647, 2147483647, 'SG', 'Singapore'), +('212.63.167.56', '212.63.167.59', 2147483647, 2147483647, 'DK', 'Denmark'), +('212.63.167.60', '212.63.167.67', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.167.68', '212.63.167.71', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.63.167.72', '212.63.167.75', 2147483647, 2147483647, 'IE', 'Ireland'), +('212.63.167.76', '212.63.167.79', 2147483647, 2147483647, 'SE', 'Sweden'), +('212.63.167.80', '212.63.167.83', 2147483647, 2147483647, 'DK', 'Denmark'), +('212.63.167.84', '212.63.167.87', 2147483647, 2147483647, 'IS', 'Iceland'), +('212.63.167.88', '212.63.167.95', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.167.96', '212.63.167.99', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.63.167.100', '212.63.167.103', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.167.104', '212.63.167.107', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.167.108', '212.63.167.111', 2147483647, 2147483647, 'FR', 'France'), +('212.63.167.112', '212.63.167.115', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.167.116', '212.63.167.119', 2147483647, 2147483647, 'FR', 'France'), +('212.63.167.120', '212.63.167.123', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.167.124', '212.63.167.127', 2147483647, 2147483647, 'IN', 'India'), +('212.63.167.128', '212.63.167.131', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.167.132', '212.63.167.135', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.167.136', '212.63.167.147', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.63.167.148', '212.63.167.155', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.167.156', '212.63.167.159', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.63.167.160', '212.63.167.163', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.63.167.164', '212.63.167.167', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.167.168', '212.63.167.171', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.167.172', '212.63.167.175', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.167.176', '212.63.167.179', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.167.180', '212.63.167.183', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.63.167.184', '212.63.167.187', 2147483647, 2147483647, 'FR', 'France'), +('212.63.167.188', '212.63.167.191', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.167.192', '212.63.167.195', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.167.196', '212.63.167.199', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.167.200', '212.63.167.203', 2147483647, 2147483647, 'AT', 'Austria'), +('212.63.167.204', '212.63.167.207', 2147483647, 2147483647, 'SE', 'Sweden'), +('212.63.167.208', '212.63.167.211', 2147483647, 2147483647, 'NO', 'Norway'), +('212.63.167.212', '212.63.167.223', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.167.224', '212.63.167.227', 2147483647, 2147483647, 'DK', 'Denmark'), +('212.63.167.228', '212.63.167.231', 2147483647, 2147483647, 'FR', 'France'), +('212.63.167.232', '212.63.167.235', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.63.167.236', '212.63.167.239', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.167.240', '212.63.167.243', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.167.244', '212.63.167.247', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.167.248', '212.63.167.251', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.63.167.252', '212.63.167.255', 2147483647, 2147483647, 'GR', 'Greece'), +('212.63.168.0', '212.63.168.3', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.168.4', '212.63.168.7', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.63.168.8', '212.63.168.19', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.168.20', '212.63.168.23', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.168.24', '212.63.168.31', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.168.32', '212.63.168.35', 2147483647, 2147483647, 'FR', 'France'), +('212.63.168.36', '212.63.168.39', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.63.168.40', '212.63.168.43', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.63.168.44', '212.63.168.55', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.168.56', '212.63.168.59', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.63.168.60', '212.63.168.63', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.168.64', '212.63.168.67', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.63.168.68', '212.63.168.71', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.63.168.72', '212.63.168.75', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.63.168.76', '212.63.168.79', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.63.168.80', '212.63.168.83', 2147483647, 2147483647, 'NO', 'Norway'), +('212.63.168.84', '212.63.168.87', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.168.88', '212.63.168.91', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.63.168.92', '212.63.168.95', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.63.168.96', '212.63.168.103', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.168.104', '212.63.168.111', 2147483647, 2147483647, 'FR', 'France'), +('212.63.168.112', '212.63.168.115', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.63.168.116', '212.63.168.119', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.168.120', '212.63.168.123', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.168.124', '212.63.168.127', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.168.128', '212.63.168.131', 2147483647, 2147483647, 'FR', 'France'), +('212.63.168.132', '212.63.168.135', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.63.168.136', '212.63.168.139', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.168.140', '212.63.168.143', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.63.168.144', '212.63.168.147', 2147483647, 2147483647, 'FR', 'France'), +('212.63.168.148', '212.63.168.155', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.168.156', '212.63.168.159', 2147483647, 2147483647, 'FR', 'France'), +('212.63.168.160', '212.63.168.167', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.168.168', '212.63.168.171', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.63.168.172', '212.63.168.175', 2147483647, 2147483647, 'NO', 'Norway'), +('212.63.168.176', '212.63.168.179', 2147483647, 2147483647, 'FR', 'France'), +('212.63.168.180', '212.63.168.183', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.168.184', '212.63.168.187', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.63.168.188', '212.63.168.203', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.168.204', '212.63.168.219', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.63.168.220', '212.63.168.223', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.168.224', '212.63.168.227', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.168.228', '212.63.168.231', 2147483647, 2147483647, 'FR', 'France'), +('212.63.168.232', '212.63.168.235', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.63.168.236', '212.63.168.239', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.168.240', '212.63.168.243', 2147483647, 2147483647, 'FR', 'France'), +('212.63.168.244', '212.63.168.247', 2147483647, 2147483647, 'NO', 'Norway'), +('212.63.168.248', '212.63.168.251', 2147483647, 2147483647, 'FR', 'France'), +('212.63.168.252', '212.63.168.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.63.169.0', '212.63.169.3', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.169.4', '212.63.169.7', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.169.8', '212.63.169.11', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.63.169.12', '212.63.169.15', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.169.16', '212.63.169.19', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.63.169.20', '212.63.169.23', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.169.24', '212.63.169.27', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.63.169.28', '212.63.169.31', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.63.169.32', '212.63.169.35', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.63.169.36', '212.63.169.43', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.169.44', '212.63.169.47', 2147483647, 2147483647, 'AT', 'Austria'), +('212.63.169.48', '212.63.169.51', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.63.169.52', '212.63.169.55', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.63.169.56', '212.63.169.59', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('212.63.169.60', '212.63.169.63', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.169.64', '212.63.169.67', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.169.68', '212.63.169.71', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.169.72', '212.63.169.75', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.169.76', '212.63.169.79', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.169.80', '212.63.169.83', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.63.169.84', '212.63.169.87', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.169.88', '212.63.169.95', 2147483647, 2147483647, 'FR', 'France'), +('212.63.169.96', '212.63.169.107', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.169.108', '212.63.169.111', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.63.169.112', '212.63.169.123', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.169.124', '212.63.169.127', 2147483647, 2147483647, 'DK', 'Denmark'), +('212.63.169.128', '212.63.169.131', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.169.132', '212.63.169.135', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.169.136', '212.63.169.139', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('212.63.169.140', '212.63.169.143', 2147483647, 2147483647, 'FR', 'France'), +('212.63.169.144', '212.63.169.147', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.169.148', '212.63.169.151', 2147483647, 2147483647, 'DK', 'Denmark'), +('212.63.169.152', '212.63.169.155', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.169.156', '212.63.169.159', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.169.160', '212.63.169.163', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.63.169.164', '212.63.169.167', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.169.168', '212.63.169.171', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.63.169.172', '212.63.169.175', 2147483647, 2147483647, 'BE', 'Belgium'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('212.63.169.176', '212.63.169.179', 2147483647, 2147483647, 'FR', 'France'), +('212.63.169.180', '212.63.169.183', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.63.169.184', '212.63.169.187', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.169.188', '212.63.169.191', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.169.192', '212.63.169.195', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.63.169.196', '212.63.169.199', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.169.200', '212.63.169.203', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.63.169.204', '212.63.169.211', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.169.212', '212.63.169.215', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.63.169.216', '212.63.169.223', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.169.224', '212.63.169.227', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.169.228', '212.63.169.231', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.169.232', '212.63.169.235', 2147483647, 2147483647, 'IS', 'Iceland'), +('212.63.169.236', '212.63.169.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.63.169.240', '212.63.169.243', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.169.244', '212.63.169.247', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.63.169.248', '212.63.170.3', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.170.4', '212.63.170.7', 2147483647, 2147483647, 'FR', 'France'), +('212.63.170.8', '212.63.170.15', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.170.16', '212.63.170.19', 2147483647, 2147483647, 'FR', 'France'), +('212.63.170.20', '212.63.170.23', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.170.24', '212.63.170.27', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.63.170.28', '212.63.170.35', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.170.36', '212.63.170.39', 2147483647, 2147483647, 'HU', 'Hungary'), +('212.63.170.40', '212.63.170.43', 2147483647, 2147483647, 'AT', 'Austria'), +('212.63.170.44', '212.63.170.47', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.63.170.48', '212.63.170.51', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.170.52', '212.63.170.55', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.170.56', '212.63.170.63', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.170.64', '212.63.170.67', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.63.170.68', '212.63.170.71', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.170.72', '212.63.170.75', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.170.76', '212.63.170.79', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.170.80', '212.63.170.83', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.170.84', '212.63.170.91', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.170.92', '212.63.170.95', 2147483647, 2147483647, 'SE', 'Sweden'), +('212.63.170.96', '212.63.170.99', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.63.170.100', '212.63.170.103', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.170.104', '212.63.170.111', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.170.112', '212.63.170.115', 2147483647, 2147483647, 'HU', 'Hungary'), +('212.63.170.116', '212.63.170.119', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.170.120', '212.63.170.123', 2147483647, 2147483647, 'FR', 'France'), +('212.63.170.124', '212.63.170.127', 2147483647, 2147483647, 'AT', 'Austria'), +('212.63.170.128', '212.63.170.131', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.170.132', '212.63.170.139', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.170.140', '212.63.170.147', 2147483647, 2147483647, 'FR', 'France'), +('212.63.170.148', '212.63.170.151', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.170.152', '212.63.170.163', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.170.164', '212.63.170.167', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.170.168', '212.63.170.171', 2147483647, 2147483647, 'TR', 'Turkey'), +('212.63.170.172', '212.63.170.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.63.170.176', '212.63.170.179', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.170.180', '212.63.170.183', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.170.184', '212.63.170.187', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.63.170.188', '212.63.170.191', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.170.192', '212.63.170.195', 2147483647, 2147483647, 'PL', 'Poland'), +('212.63.170.196', '212.63.170.199', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.170.200', '212.63.170.203', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.63.170.204', '212.63.170.207', 2147483647, 2147483647, 'DK', 'Denmark'), +('212.63.170.208', '212.63.170.211', 2147483647, 2147483647, 'FR', 'France'), +('212.63.170.212', '212.63.170.215', 2147483647, 2147483647, 'BH', 'Bahrain'), +('212.63.170.216', '212.63.170.219', 2147483647, 2147483647, 'MA', 'Morocco'), +('212.63.170.220', '212.63.170.227', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.170.228', '212.63.170.239', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.170.240', '212.63.170.243', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.170.244', '212.63.170.247', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.170.248', '212.63.171.3', 2147483647, 2147483647, 'PT', 'Portugal'), +('212.63.171.4', '212.63.171.7', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.171.8', '212.63.171.11', 2147483647, 2147483647, 'FR', 'France'), +('212.63.171.12', '212.63.171.15', 2147483647, 2147483647, 'GR', 'Greece'), +('212.63.171.16', '212.63.171.19', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.171.20', '212.63.171.23', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.171.24', '212.63.171.27', 2147483647, 2147483647, 'AT', 'Austria'), +('212.63.171.28', '212.63.171.31', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.171.32', '212.63.171.39', 2147483647, 2147483647, 'FR', 'France'), +('212.63.171.40', '212.63.171.43', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.171.44', '212.63.171.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.63.171.48', '212.63.171.51', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.171.52', '212.63.171.55', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.171.56', '212.63.171.71', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.171.72', '212.63.171.75', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.63.171.76', '212.63.171.79', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.171.80', '212.63.171.83', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.171.84', '212.63.171.87', 2147483647, 2147483647, 'FR', 'France'), +('212.63.171.88', '212.63.171.91', 2147483647, 2147483647, 'NO', 'Norway'), +('212.63.171.92', '212.63.171.111', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.171.112', '212.63.171.119', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.63.171.120', '212.63.171.123', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.171.124', '212.63.171.127', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.63.171.128', '212.63.171.131', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.63.171.132', '212.63.171.135', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.171.136', '212.63.171.139', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.171.140', '212.63.171.143', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.63.171.144', '212.63.171.147', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.171.148', '212.63.171.151', 2147483647, 2147483647, 'HU', 'Hungary'), +('212.63.171.152', '212.63.171.159', 2147483647, 2147483647, 'FR', 'France'), +('212.63.171.160', '212.63.171.163', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.171.164', '212.63.171.167', 2147483647, 2147483647, 'FR', 'France'), +('212.63.171.168', '212.63.171.175', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.171.176', '212.63.171.179', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.171.180', '212.63.171.187', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.171.188', '212.63.171.191', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.63.171.192', '212.63.171.199', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.171.200', '212.63.171.203', 2147483647, 2147483647, 'FR', 'France'), +('212.63.171.204', '212.63.171.207', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.171.208', '212.63.171.211', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.63.171.212', '212.63.171.215', 2147483647, 2147483647, 'DK', 'Denmark'), +('212.63.171.216', '212.63.171.219', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.171.220', '212.63.171.223', 2147483647, 2147483647, 'FR', 'France'), +('212.63.171.224', '212.63.171.227', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.171.228', '212.63.171.231', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.171.232', '212.63.171.235', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.171.236', '212.63.171.243', 2147483647, 2147483647, 'FR', 'France'), +('212.63.171.244', '212.63.171.247', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.171.248', '212.63.171.251', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.63.171.252', '212.63.171.254', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.171.255', '212.63.172.7', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.172.8', '212.63.172.11', 2147483647, 2147483647, 'DK', 'Denmark'), +('212.63.172.12', '212.63.172.15', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('212.63.172.16', '212.63.172.27', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.172.28', '212.63.172.31', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.63.172.32', '212.63.172.35', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.172.36', '212.63.172.39', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.63.172.40', '212.63.172.43', 2147483647, 2147483647, 'FR', 'France'), +('212.63.172.44', '212.63.172.51', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.172.52', '212.63.172.55', 2147483647, 2147483647, 'FR', 'France'), +('212.63.172.56', '212.63.172.59', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.172.60', '212.63.172.63', 2147483647, 2147483647, 'GR', 'Greece'), +('212.63.172.64', '212.63.172.71', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.172.72', '212.63.172.75', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.63.172.76', '212.63.172.83', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.172.84', '212.63.172.87', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.63.172.88', '212.63.172.91', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.172.92', '212.63.172.95', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.63.172.96', '212.63.172.99', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.63.172.100', '212.63.172.103', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('212.63.172.104', '212.63.172.107', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.172.108', '212.63.172.111', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.172.112', '212.63.172.115', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.172.116', '212.63.172.119', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.172.120', '212.63.172.123', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('212.63.172.124', '212.63.172.127', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.63.172.128', '212.63.172.135', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.172.136', '212.63.172.139', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.63.172.140', '212.63.172.143', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.172.144', '212.63.172.147', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.63.172.148', '212.63.172.151', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.172.152', '212.63.172.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.63.172.160', '212.63.172.171', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.172.172', '212.63.172.175', 2147483647, 2147483647, 'FR', 'France'), +('212.63.172.176', '212.63.172.179', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.172.180', '212.63.172.183', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.172.184', '212.63.172.187', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.172.188', '212.63.172.191', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.63.172.192', '212.63.172.195', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.172.196', '212.63.172.199', 2147483647, 2147483647, 'HU', 'Hungary'), +('212.63.172.200', '212.63.172.203', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.172.204', '212.63.172.207', 2147483647, 2147483647, 'FR', 'France'), +('212.63.172.208', '212.63.172.211', 2147483647, 2147483647, 'AT', 'Austria'), +('212.63.172.212', '212.63.172.215', 2147483647, 2147483647, 'TR', 'Turkey'), +('212.63.172.216', '212.63.172.219', 2147483647, 2147483647, 'AT', 'Austria'), +('212.63.172.220', '212.63.172.223', 2147483647, 2147483647, 'FR', 'France'), +('212.63.172.224', '212.63.172.227', 2147483647, 2147483647, 'TR', 'Turkey'), +('212.63.172.228', '212.63.172.231', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.172.232', '212.63.172.235', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.63.172.236', '212.63.172.239', 2147483647, 2147483647, 'AT', 'Austria'), +('212.63.172.240', '212.63.172.243', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.172.244', '212.63.172.247', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.63.172.248', '212.63.172.251', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.63.172.252', '212.63.172.255', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.173.0', '212.63.173.3', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.173.4', '212.63.173.7', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.173.8', '212.63.173.11', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.173.12', '212.63.173.15', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.173.16', '212.63.173.23', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.173.24', '212.63.173.27', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.173.28', '212.63.173.31', 2147483647, 2147483647, 'PL', 'Poland'), +('212.63.173.32', '212.63.173.35', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.63.173.36', '212.63.173.39', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.173.40', '212.63.173.43', 2147483647, 2147483647, 'FR', 'France'), +('212.63.173.44', '212.63.173.47', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.173.48', '212.63.173.51', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.173.52', '212.63.173.55', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.173.56', '212.63.173.59', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.63.173.60', '212.63.173.63', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.173.64', '212.63.173.67', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.173.68', '212.63.173.71', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.63.173.72', '212.63.173.75', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.173.76', '212.63.173.79', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.173.80', '212.63.173.83', 2147483647, 2147483647, 'SE', 'Sweden'), +('212.63.173.84', '212.63.173.87', 2147483647, 2147483647, 'AT', 'Austria'), +('212.63.173.88', '212.63.173.91', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.173.92', '212.63.173.95', 2147483647, 2147483647, 'AE', 'United Arab Emirates'), +('212.63.173.96', '212.63.173.103', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.173.104', '212.63.173.107', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.173.108', '212.63.173.111', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.173.112', '212.63.173.115', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.63.173.116', '212.63.173.127', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.173.128', '212.63.173.131', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.173.132', '212.63.173.139', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.173.140', '212.63.173.151', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.173.152', '212.63.173.155', 2147483647, 2147483647, 'PL', 'Poland'), +('212.63.173.156', '212.63.173.159', 2147483647, 2147483647, 'DK', 'Denmark'), +('212.63.173.160', '212.63.173.163', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.63.173.164', '212.63.173.167', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.173.168', '212.63.173.171', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.173.172', '212.63.173.175', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.173.176', '212.63.173.179', 2147483647, 2147483647, 'GR', 'Greece'), +('212.63.173.180', '212.63.173.183', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.173.184', '212.63.173.187', 2147483647, 2147483647, 'FR', 'France'), +('212.63.173.188', '212.63.173.191', 2147483647, 2147483647, 'PL', 'Poland'), +('212.63.173.192', '212.63.173.195', 2147483647, 2147483647, 'NO', 'Norway'), +('212.63.173.196', '212.63.173.199', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.173.200', '212.63.173.203', 2147483647, 2147483647, 'HR', 'Croatia'), +('212.63.173.204', '212.63.173.207', 2147483647, 2147483647, 'CY', 'Cyprus'), +('212.63.173.208', '212.63.173.211', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.63.173.212', '212.63.173.227', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.173.228', '212.63.173.231', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.173.232', '212.63.173.247', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.173.248', '212.63.173.251', 2147483647, 2147483647, 'PL', 'Poland'), +('212.63.173.252', '212.63.174.5', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.174.6', '212.63.174.7', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.174.8', '212.63.174.9', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.174.10', '212.63.174.11', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.174.12', '212.63.174.12', 2147483647, 2147483647, 'DK', 'Denmark'), +('212.63.174.13', '212.63.174.13', 2147483647, 2147483647, 'IL', 'Israel'), +('212.63.174.14', '212.63.174.14', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.174.15', '212.63.174.15', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.174.16', '212.63.174.16', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.174.17', '212.63.174.17', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.63.174.18', '212.63.174.18', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.174.19', '212.63.174.21', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.174.22', '212.63.174.22', 2147483647, 2147483647, 'FR', 'France'), +('212.63.174.23', '212.63.174.23', 2147483647, 2147483647, 'HU', 'Hungary'), +('212.63.174.24', '212.63.174.25', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.174.26', '212.63.174.26', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.63.174.27', '212.63.174.27', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.63.174.28', '212.63.174.28', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.63.174.29', '212.63.174.29', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.174.30', '212.63.174.32', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.174.33', '212.63.174.33', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.174.34', '212.63.174.34', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.63.174.35', '212.63.174.35', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.174.36', '212.63.174.36', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.174.37', '212.63.174.37', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.63.174.38', '212.63.174.38', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.174.39', '212.63.174.41', 2147483647, 2147483647, 'HU', 'Hungary'), +('212.63.174.42', '212.63.174.42', 2147483647, 2147483647, 'IE', 'Ireland'), +('212.63.174.43', '212.63.174.43', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.63.174.44', '212.63.174.45', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.174.46', '212.63.174.46', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.174.47', '212.63.174.47', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.174.48', '212.63.174.48', 2147483647, 2147483647, 'HU', 'Hungary'), +('212.63.174.49', '212.63.174.50', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.174.51', '212.63.174.51', 2147483647, 2147483647, 'FR', 'France'), +('212.63.174.52', '212.63.174.53', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.174.54', '212.63.174.54', 2147483647, 2147483647, 'FR', 'France'), +('212.63.174.55', '212.63.174.55', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.174.56', '212.63.174.56', 2147483647, 2147483647, 'NO', 'Norway'), +('212.63.174.57', '212.63.174.57', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.63.174.58', '212.63.174.58', 2147483647, 2147483647, 'GR', 'Greece'), +('212.63.174.59', '212.63.174.59', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.63.174.60', '212.63.174.60', 2147483647, 2147483647, 'PL', 'Poland'), +('212.63.174.61', '212.63.174.61', 2147483647, 2147483647, 'FR', 'France'), +('212.63.174.62', '212.63.174.62', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.63.174.63', '212.63.174.63', 2147483647, 2147483647, 'FR', 'France'), +('212.63.174.64', '212.63.174.64', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.174.65', '212.63.174.65', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.174.66', '212.63.174.66', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.174.67', '212.63.174.67', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.174.68', '212.63.174.68', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.174.69', '212.63.174.69', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.63.174.70', '212.63.174.71', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.174.72', '212.63.174.73', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.63.174.74', '212.63.174.74', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.174.75', '212.63.174.75', 2147483647, 2147483647, 'PL', 'Poland'), +('212.63.174.76', '212.63.174.76', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.63.174.77', '212.63.174.77', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.174.78', '212.63.174.79', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.174.80', '212.63.174.80', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.174.81', '212.63.174.81', 2147483647, 2147483647, 'DK', 'Denmark'), +('212.63.174.82', '212.63.174.82', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.174.83', '212.63.174.83', 2147483647, 2147483647, 'PT', 'Portugal'), +('212.63.174.84', '212.63.174.84', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.174.85', '212.63.174.88', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.174.89', '212.63.174.89', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.174.90', '212.63.174.90', 2147483647, 2147483647, 'AT', 'Austria'), +('212.63.174.91', '212.63.174.91', 2147483647, 2147483647, 'PL', 'Poland'), +('212.63.174.92', '212.63.174.93', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.174.94', '212.63.174.94', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.174.95', '212.63.174.95', 2147483647, 2147483647, 'PT', 'Portugal'), +('212.63.174.96', '212.63.174.96', 2147483647, 2147483647, 'AT', 'Austria'), +('212.63.174.97', '212.63.174.97', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.174.98', '212.63.174.98', 2147483647, 2147483647, 'IL', 'Israel'), +('212.63.174.99', '212.63.174.99', 2147483647, 2147483647, 'FR', 'France'), +('212.63.174.100', '212.63.174.100', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.63.174.101', '212.63.174.101', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.174.102', '212.63.174.103', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.174.104', '212.63.174.104', 2147483647, 2147483647, 'AT', 'Austria'), +('212.63.174.105', '212.63.174.106', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.174.107', '212.63.174.107', 2147483647, 2147483647, 'FR', 'France'), +('212.63.174.108', '212.63.174.108', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.174.109', '212.63.174.109', 2147483647, 2147483647, 'FR', 'France'), +('212.63.174.110', '212.63.174.110', 2147483647, 2147483647, 'PL', 'Poland'), +('212.63.174.111', '212.63.174.114', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.174.115', '212.63.174.115', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.174.116', '212.63.174.117', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.174.118', '212.63.174.118', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.174.119', '212.63.174.119', 2147483647, 2147483647, 'FR', 'France'), +('212.63.174.120', '212.63.174.120', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.174.121', '212.63.174.122', 2147483647, 2147483647, 'GR', 'Greece'), +('212.63.174.123', '212.63.174.123', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.174.124', '212.63.174.126', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.63.174.127', '212.63.174.128', 2147483647, 2147483647, 'FR', 'France'), +('212.63.174.129', '212.63.174.129', 2147483647, 2147483647, 'PL', 'Poland'), +('212.63.174.130', '212.63.174.130', 2147483647, 2147483647, 'EE', 'Estonia'), +('212.63.174.131', '212.63.174.131', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.63.174.132', '212.63.174.133', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.63.174.134', '212.63.174.134', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.174.135', '212.63.174.135', 2147483647, 2147483647, 'FR', 'France'), +('212.63.174.136', '212.63.174.136', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.63.174.137', '212.63.174.137', 2147483647, 2147483647, 'FR', 'France'), +('212.63.174.138', '212.63.174.138', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.174.139', '212.63.174.139', 2147483647, 2147483647, 'FR', 'France'), +('212.63.174.140', '212.63.174.140', 2147483647, 2147483647, 'PL', 'Poland'), +('212.63.174.141', '212.63.174.141', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.63.174.142', '212.63.174.143', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.174.144', '212.63.174.144', 2147483647, 2147483647, 'GR', 'Greece'), +('212.63.174.145', '212.63.174.145', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.63.174.146', '212.63.174.146', 2147483647, 2147483647, 'AT', 'Austria'), +('212.63.174.147', '212.63.174.147', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.63.174.148', '212.63.174.148', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.63.174.149', '212.63.174.149', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.174.150', '212.63.174.150', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.174.151', '212.63.174.151', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.63.174.152', '212.63.174.152', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.174.153', '212.63.174.153', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.174.154', '212.63.174.154', 2147483647, 2147483647, 'FR', 'France'), +('212.63.174.155', '212.63.174.155', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.174.156', '212.63.174.156', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.174.157', '212.63.174.157', 2147483647, 2147483647, 'IE', 'Ireland'), +('212.63.174.158', '212.63.174.158', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.174.159', '212.63.174.159', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.174.160', '212.63.174.160', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('212.63.174.161', '212.63.174.161', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.174.162', '212.63.174.162', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.63.174.163', '212.63.174.163', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.174.164', '212.63.174.165', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.174.166', '212.63.174.166', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.63.174.167', '212.63.174.167', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.174.168', '212.63.174.168', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.174.169', '212.63.174.169', 2147483647, 2147483647, 'FR', 'France'), +('212.63.174.170', '212.63.174.170', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.63.174.171', '212.63.174.171', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.174.172', '212.63.174.172', 2147483647, 2147483647, 'FR', 'France'), +('212.63.174.173', '212.63.174.173', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.174.174', '212.63.174.174', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.174.175', '212.63.174.175', 2147483647, 2147483647, 'FR', 'France'), +('212.63.174.176', '212.63.174.176', 2147483647, 2147483647, 'GR', 'Greece'), +('212.63.174.177', '212.63.174.177', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.174.178', '212.63.174.178', 2147483647, 2147483647, 'FR', 'France'), +('212.63.174.179', '212.63.174.179', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.174.180', '212.63.174.182', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.174.183', '212.63.174.183', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.63.174.184', '212.63.174.186', 2147483647, 2147483647, 'FR', 'France'), +('212.63.174.187', '212.63.174.188', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.174.189', '212.63.174.189', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.174.190', '212.63.174.190', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.174.191', '212.63.174.191', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.174.192', '212.63.174.192', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.63.174.193', '212.63.174.193', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.174.194', '212.63.174.194', 2147483647, 2147483647, 'FR', 'France'), +('212.63.174.195', '212.63.174.195', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.63.174.196', '212.63.174.196', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.174.197', '212.63.174.197', 2147483647, 2147483647, 'FR', 'France'), +('212.63.174.198', '212.63.174.198', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.174.199', '212.63.174.199', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.174.200', '212.63.174.200', 2147483647, 2147483647, 'FR', 'France'), +('212.63.174.201', '212.63.174.202', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.174.203', '212.63.174.203', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.174.204', '212.63.174.205', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.174.206', '212.63.174.207', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.174.208', '212.63.174.208', 2147483647, 2147483647, 'PL', 'Poland'), +('212.63.174.209', '212.63.174.209', 2147483647, 2147483647, 'FR', 'France'), +('212.63.174.210', '212.63.174.210', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.174.211', '212.63.174.211', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.174.212', '212.63.174.212', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.63.174.213', '212.63.174.213', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.174.214', '212.63.174.214', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.63.174.215', '212.63.174.215', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.174.216', '212.63.174.216', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.174.217', '212.63.174.217', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.63.174.218', '212.63.174.218', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.174.219', '212.63.174.219', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.63.174.220', '212.63.174.220', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.174.221', '212.63.174.221', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.63.174.222', '212.63.174.222', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.63.174.223', '212.63.174.225', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.174.226', '212.63.174.227', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.174.228', '212.63.174.231', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.174.232', '212.63.174.232', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.174.233', '212.63.174.233', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.174.234', '212.63.174.234', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.63.174.235', '212.63.174.235', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.63.174.236', '212.63.174.237', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.174.238', '212.63.174.238', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.174.239', '212.63.174.239', 2147483647, 2147483647, 'FR', 'France'), +('212.63.174.240', '212.63.174.240', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.63.174.241', '212.63.174.241', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.63.174.242', '212.63.174.242', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.174.243', '212.63.174.243', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.174.244', '212.63.174.244', 2147483647, 2147483647, 'FR', 'France'), +('212.63.174.245', '212.63.174.245', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.174.246', '212.63.174.246', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.63.174.247', '212.63.174.247', 2147483647, 2147483647, 'SE', 'Sweden'), +('212.63.174.248', '212.63.174.248', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.174.249', '212.63.174.250', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.174.251', '212.63.174.251', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.174.252', '212.63.174.252', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.174.253', '212.63.174.253', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.174.254', '212.63.174.254', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.63.174.255', '212.63.175.1', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.175.2', '212.63.175.2', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.63.175.3', '212.63.175.5', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.175.6', '212.63.175.7', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.175.8', '212.63.175.8', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.63.175.9', '212.63.175.9', 2147483647, 2147483647, 'GR', 'Greece'), +('212.63.175.10', '212.63.175.10', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.175.11', '212.63.175.11', 2147483647, 2147483647, 'AT', 'Austria'), +('212.63.175.12', '212.63.175.12', 2147483647, 2147483647, 'FR', 'France'), +('212.63.175.13', '212.63.175.15', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.175.16', '212.63.175.16', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.175.17', '212.63.175.17', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.63.175.18', '212.63.175.18', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.175.19', '212.63.175.20', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.175.21', '212.63.175.23', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.175.24', '212.63.175.24', 2147483647, 2147483647, 'FR', 'France'), +('212.63.175.25', '212.63.175.25', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.175.26', '212.63.175.26', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.63.175.27', '212.63.175.27', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.63.175.28', '212.63.175.31', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.175.32', '212.63.175.32', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.63.175.33', '212.63.175.33', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.175.34', '212.63.175.34', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.175.35', '212.63.175.35', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.63.175.36', '212.63.175.36', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.63.175.37', '212.63.175.37', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.175.38', '212.63.175.38', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.63.175.39', '212.63.175.39', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.63.175.40', '212.63.175.40', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.175.41', '212.63.175.41', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.175.42', '212.63.175.42', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.63.175.43', '212.63.175.43', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.175.44', '212.63.175.44', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.63.175.45', '212.63.175.45', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.175.46', '212.63.175.47', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.175.48', '212.63.175.48', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.175.49', '212.63.175.49', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.175.50', '212.63.175.50', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.63.175.51', '212.63.175.51', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.175.52', '212.63.175.52', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.175.53', '212.63.175.53', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.175.54', '212.63.175.55', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.175.56', '212.63.175.56', 2147483647, 2147483647, 'FR', 'France'), +('212.63.175.57', '212.63.175.57', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.175.58', '212.63.175.58', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.63.175.59', '212.63.175.59', 2147483647, 2147483647, 'FR', 'France'), +('212.63.175.60', '212.63.175.60', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.175.61', '212.63.175.61', 2147483647, 2147483647, 'HU', 'Hungary'), +('212.63.175.62', '212.63.175.62', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.63.175.63', '212.63.175.63', 2147483647, 2147483647, 'FR', 'France'), +('212.63.175.64', '212.63.175.64', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.175.65', '212.63.175.65', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.175.66', '212.63.175.66', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.175.67', '212.63.175.67', 2147483647, 2147483647, 'FR', 'France'), +('212.63.175.68', '212.63.175.68', 2147483647, 2147483647, 'NO', 'Norway'), +('212.63.175.69', '212.63.175.70', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.63.175.71', '212.63.175.72', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.175.73', '212.63.175.73', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.63.175.74', '212.63.175.74', 2147483647, 2147483647, 'SE', 'Sweden'), +('212.63.175.75', '212.63.175.75', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.63.175.76', '212.63.175.76', 2147483647, 2147483647, 'FR', 'France'), +('212.63.175.77', '212.63.175.77', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.175.78', '212.63.175.78', 2147483647, 2147483647, 'FR', 'France'), +('212.63.175.79', '212.63.175.79', 2147483647, 2147483647, 'NO', 'Norway'), +('212.63.175.80', '212.63.175.80', 2147483647, 2147483647, 'FR', 'France'), +('212.63.175.81', '212.63.175.81', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.175.82', '212.63.175.82', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.175.83', '212.63.175.83', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.63.175.84', '212.63.175.84', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.63.175.85', '212.63.175.85', 2147483647, 2147483647, 'PT', 'Portugal'), +('212.63.175.86', '212.63.175.86', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.175.87', '212.63.175.87', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.63.175.88', '212.63.175.90', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.175.91', '212.63.175.91', 2147483647, 2147483647, 'PL', 'Poland'), +('212.63.175.92', '212.63.175.92', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.63.175.93', '212.63.175.94', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.175.95', '212.63.175.96', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.63.175.97', '212.63.175.97', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.175.98', '212.63.175.99', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.175.100', '212.63.175.100', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.175.101', '212.63.175.101', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.63.175.102', '212.63.175.102', 2147483647, 2147483647, 'FR', 'France'), +('212.63.175.103', '212.63.175.103', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.63.175.104', '212.63.175.104', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.175.105', '212.63.175.105', 2147483647, 2147483647, 'FR', 'France'), +('212.63.175.106', '212.63.175.106', 2147483647, 2147483647, 'NO', 'Norway'), +('212.63.175.107', '212.63.175.107', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.175.108', '212.63.175.108', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.63.175.109', '212.63.175.109', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.175.110', '212.63.175.110', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.175.111', '212.63.175.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.63.175.112', '212.63.175.112', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.63.175.113', '212.63.175.113', 2147483647, 2147483647, 'AT', 'Austria'), +('212.63.175.114', '212.63.175.114', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.63.175.115', '212.63.175.115', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.175.116', '212.63.175.116', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.63.175.117', '212.63.175.117', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.175.118', '212.63.175.118', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.175.119', '212.63.175.119', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.63.175.120', '212.63.175.120', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.63.175.121', '212.63.175.121', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('212.63.175.122', '212.63.175.122', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.175.123', '212.63.175.126', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.175.127', '212.63.175.127', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.175.128', '212.63.175.128', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.175.129', '212.63.175.129', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.175.130', '212.63.175.130', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.63.175.131', '212.63.175.131', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.175.132', '212.63.175.133', 2147483647, 2147483647, 'FR', 'France'), +('212.63.175.134', '212.63.175.134', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.63.175.135', '212.63.175.135', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.175.136', '212.63.175.139', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.175.140', '212.63.175.140', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.63.175.141', '212.63.175.141', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.175.142', '212.63.175.147', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.175.148', '212.63.175.148', 2147483647, 2147483647, 'DK', 'Denmark'), +('212.63.175.149', '212.63.175.150', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.175.151', '212.63.175.151', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.175.152', '212.63.175.152', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.175.153', '212.63.175.153', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('212.63.175.154', '212.63.175.155', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.175.156', '212.63.175.157', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.175.158', '212.63.175.158', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('212.63.175.159', '212.63.175.159', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.175.160', '212.63.175.160', 2147483647, 2147483647, 'DK', 'Denmark'), +('212.63.175.161', '212.63.175.161', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.175.162', '212.63.175.162', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.63.175.163', '212.63.175.163', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.175.164', '212.63.175.164', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.175.165', '212.63.175.165', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.63.175.166', '212.63.175.166', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.175.167', '212.63.175.167', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.175.168', '212.63.175.168', 2147483647, 2147483647, 'FR', 'France'), +('212.63.175.169', '212.63.175.169', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.175.170', '212.63.175.170', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.63.175.171', '212.63.175.172', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.175.173', '212.63.175.173', 2147483647, 2147483647, 'HU', 'Hungary'), +('212.63.175.174', '212.63.175.174', 2147483647, 2147483647, 'BY', 'Belarus'), +('212.63.175.175', '212.63.175.175', 2147483647, 2147483647, 'FR', 'France'), +('212.63.175.176', '212.63.175.176', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.63.175.177', '212.63.175.177', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.175.178', '212.63.175.178', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.63.175.179', '212.63.175.179', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.175.180', '212.63.175.180', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.63.175.181', '212.63.175.181', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.63.175.182', '212.63.175.182', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.175.183', '212.63.175.183', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.63.175.184', '212.63.175.184', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.175.185', '212.63.175.186', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.175.187', '212.63.175.187', 2147483647, 2147483647, 'SI', 'Slovenia'), +('212.63.175.188', '212.63.175.188', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.63.175.189', '212.63.175.189', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.175.190', '212.63.175.190', 2147483647, 2147483647, 'HU', 'Hungary'), +('212.63.175.191', '212.63.175.191', 2147483647, 2147483647, 'FR', 'France'), +('212.63.175.192', '212.63.175.192', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.175.193', '212.63.175.193', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.175.194', '212.63.175.194', 2147483647, 2147483647, 'IS', 'Iceland'), +('212.63.175.195', '212.63.175.195', 2147483647, 2147483647, 'FR', 'France'), +('212.63.175.196', '212.63.175.196', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.175.197', '212.63.175.197', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.175.198', '212.63.175.198', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.175.199', '212.63.175.199', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.63.175.200', '212.63.175.202', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.175.203', '212.63.175.203', 2147483647, 2147483647, 'HU', 'Hungary'), +('212.63.175.204', '212.63.175.204', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.175.205', '212.63.175.205', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.63.175.206', '212.63.175.206', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.175.207', '212.63.175.207', 2147483647, 2147483647, 'FR', 'France'), +('212.63.175.208', '212.63.175.208', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.63.175.209', '212.63.175.210', 2147483647, 2147483647, 'FR', 'France'), +('212.63.175.211', '212.63.175.212', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.175.213', '212.63.175.213', 2147483647, 2147483647, 'FR', 'France'), +('212.63.175.214', '212.63.175.214', 2147483647, 2147483647, 'NO', 'Norway'), +('212.63.175.215', '212.63.175.215', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.63.175.216', '212.63.175.216', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.175.217', '212.63.175.217', 2147483647, 2147483647, 'DK', 'Denmark'), +('212.63.175.218', '212.63.175.218', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.175.219', '212.63.175.220', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.175.221', '212.63.175.221', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.63.175.222', '212.63.175.222', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.175.223', '212.63.175.223', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.175.224', '212.63.175.224', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.175.225', '212.63.175.225', 2147483647, 2147483647, 'FR', 'France'), +('212.63.175.226', '212.63.175.226', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.175.227', '212.63.175.227', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.175.228', '212.63.175.228', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.175.229', '212.63.175.229', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.63.175.230', '212.63.175.230', 2147483647, 2147483647, 'HU', 'Hungary'), +('212.63.175.231', '212.63.175.231', 2147483647, 2147483647, 'AT', 'Austria'), +('212.63.175.232', '212.63.175.232', 2147483647, 2147483647, 'SK', 'Slovakia'), +('212.63.175.233', '212.63.175.233', 2147483647, 2147483647, 'PL', 'Poland'), +('212.63.175.234', '212.63.175.234', 2147483647, 2147483647, 'FR', 'France'), +('212.63.175.235', '212.63.175.236', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.175.237', '212.63.175.239', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.175.240', '212.63.175.240', 2147483647, 2147483647, 'AT', 'Austria'), +('212.63.175.241', '212.63.175.242', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.175.243', '212.63.175.243', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.63.175.244', '212.63.175.244', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.175.245', '212.63.175.245', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.63.175.246', '212.63.175.247', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.175.248', '212.63.175.248', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.175.249', '212.63.175.250', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.175.251', '212.63.175.251', 2147483647, 2147483647, 'FR', 'France'), +('212.63.175.252', '212.63.175.252', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.175.253', '212.63.175.253', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.175.254', '212.63.176.1', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.176.2', '212.63.176.2', 2147483647, 2147483647, 'FR', 'France'), +('212.63.176.3', '212.63.176.4', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.176.5', '212.63.176.5', 2147483647, 2147483647, 'SE', 'Sweden'), +('212.63.176.6', '212.63.176.6', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.63.176.7', '212.63.176.7', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.176.8', '212.63.176.8', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.176.9', '212.63.176.9', 2147483647, 2147483647, 'AT', 'Austria'), +('212.63.176.10', '212.63.176.10', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.176.11', '212.63.176.11', 2147483647, 2147483647, 'DK', 'Denmark'), +('212.63.176.12', '212.63.176.12', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.176.13', '212.63.176.13', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.176.14', '212.63.176.14', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.176.15', '212.63.176.15', 2147483647, 2147483647, 'HU', 'Hungary'), +('212.63.176.16', '212.63.176.16', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.63.176.17', '212.63.176.17', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.176.18', '212.63.176.18', 2147483647, 2147483647, 'FR', 'France'), +('212.63.176.19', '212.63.176.19', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.176.20', '212.63.176.20', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.176.21', '212.63.176.21', 2147483647, 2147483647, 'PL', 'Poland'), +('212.63.176.22', '212.63.176.22', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.176.23', '212.63.176.23', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.176.24', '212.63.176.24', 2147483647, 2147483647, 'FR', 'France'), +('212.63.176.25', '212.63.176.27', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.176.28', '212.63.176.28', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.176.29', '212.63.176.29', 2147483647, 2147483647, 'GB', 'United Kingdom'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('212.63.176.30', '212.63.176.30', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.176.31', '212.63.176.31', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.176.32', '212.63.176.32', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.176.33', '212.63.176.33', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.63.176.34', '212.63.176.35', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.176.36', '212.63.176.36', 2147483647, 2147483647, 'AT', 'Austria'), +('212.63.176.37', '212.63.176.37', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.176.38', '212.63.176.38', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.176.39', '212.63.176.39', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.176.40', '212.63.176.40', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.176.41', '212.63.176.41', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.176.42', '212.63.176.42', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.63.176.43', '212.63.176.43', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.176.44', '212.63.176.44', 2147483647, 2147483647, 'PT', 'Portugal'), +('212.63.176.45', '212.63.176.45', 2147483647, 2147483647, 'DK', 'Denmark'), +('212.63.176.46', '212.63.176.46', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.176.47', '212.63.176.48', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.63.176.49', '212.63.176.50', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.176.51', '212.63.176.51', 2147483647, 2147483647, 'PL', 'Poland'), +('212.63.176.52', '212.63.176.52', 2147483647, 2147483647, 'DK', 'Denmark'), +('212.63.176.53', '212.63.176.53', 2147483647, 2147483647, 'FR', 'France'), +('212.63.176.54', '212.63.176.55', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.176.56', '212.63.176.56', 2147483647, 2147483647, 'BH', 'Bahrain'), +('212.63.176.57', '212.63.176.57', 2147483647, 2147483647, 'SE', 'Sweden'), +('212.63.176.58', '212.63.176.58', 2147483647, 2147483647, 'MA', 'Morocco'), +('212.63.176.59', '212.63.176.59', 2147483647, 2147483647, 'FR', 'France'), +('212.63.176.60', '212.63.176.61', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.176.62', '212.63.176.64', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.176.65', '212.63.176.66', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.176.67', '212.63.176.67', 2147483647, 2147483647, 'GR', 'Greece'), +('212.63.176.68', '212.63.176.68', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.63.176.69', '212.63.176.69', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.176.70', '212.63.176.70', 2147483647, 2147483647, 'FR', 'France'), +('212.63.176.71', '212.63.176.71', 2147483647, 2147483647, 'PT', 'Portugal'), +('212.63.176.72', '212.63.176.72', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.176.73', '212.63.176.73', 2147483647, 2147483647, 'PT', 'Portugal'), +('212.63.176.74', '212.63.176.74', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.176.75', '212.63.176.75', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.176.76', '212.63.176.76', 2147483647, 2147483647, 'SE', 'Sweden'), +('212.63.176.77', '212.63.176.77', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.176.78', '212.63.176.78', 2147483647, 2147483647, 'FR', 'France'), +('212.63.176.79', '212.63.176.79', 2147483647, 2147483647, 'GR', 'Greece'), +('212.63.176.80', '212.63.176.81', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.63.176.82', '212.63.176.82', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.176.83', '212.63.176.83', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.176.84', '212.63.176.84', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.176.85', '212.63.176.85', 2147483647, 2147483647, 'AT', 'Austria'), +('212.63.176.86', '212.63.176.86', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.176.87', '212.63.176.87', 2147483647, 2147483647, 'FR', 'France'), +('212.63.176.88', '212.63.176.88', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.176.89', '212.63.176.89', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.63.176.90', '212.63.176.90', 2147483647, 2147483647, 'LI', 'Liechtenstein'), +('212.63.176.91', '212.63.176.93', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.176.94', '212.63.176.94', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.63.176.95', '212.63.176.95', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.176.96', '212.63.176.96', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.176.97', '212.63.176.97', 2147483647, 2147483647, 'PL', 'Poland'), +('212.63.176.98', '212.63.176.98', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.63.176.99', '212.63.176.99', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.176.100', '212.63.176.100', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.63.176.101', '212.63.176.101', 2147483647, 2147483647, 'FR', 'France'), +('212.63.176.102', '212.63.176.103', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.176.104', '212.63.176.105', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.176.106', '212.63.176.110', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.176.111', '212.63.176.111', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.176.112', '212.63.176.112', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.63.176.113', '212.63.176.113', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.176.114', '212.63.176.114', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.63.176.115', '212.63.176.115', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.176.116', '212.63.176.116', 2147483647, 2147483647, 'FR', 'France'), +('212.63.176.117', '212.63.176.117', 2147483647, 2147483647, 'NO', 'Norway'), +('212.63.176.118', '212.63.176.120', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.176.121', '212.63.176.121', 2147483647, 2147483647, 'GR', 'Greece'), +('212.63.176.122', '212.63.176.122', 2147483647, 2147483647, 'PT', 'Portugal'), +('212.63.176.123', '212.63.176.124', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.176.125', '212.63.176.125', 2147483647, 2147483647, 'FR', 'France'), +('212.63.176.126', '212.63.176.126', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.176.127', '212.63.176.127', 2147483647, 2147483647, 'PL', 'Poland'), +('212.63.176.128', '212.63.176.128', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.176.129', '212.63.176.129', 2147483647, 2147483647, 'PL', 'Poland'), +('212.63.176.130', '212.63.176.132', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.176.133', '212.63.176.133', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.63.176.134', '212.63.176.134', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.176.135', '212.63.176.135', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.176.136', '212.63.176.136', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.176.137', '212.63.176.137', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.176.138', '212.63.176.138', 2147483647, 2147483647, 'HU', 'Hungary'), +('212.63.176.139', '212.63.176.139', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.63.176.140', '212.63.176.140', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.176.141', '212.63.176.141', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.176.142', '212.63.176.142', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('212.63.176.143', '212.63.176.143', 2147483647, 2147483647, 'IE', 'Ireland'), +('212.63.176.144', '212.63.176.144', 2147483647, 2147483647, 'NO', 'Norway'), +('212.63.176.145', '212.63.176.145', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.63.176.146', '212.63.176.146', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.176.147', '212.63.176.147', 2147483647, 2147483647, 'FR', 'France'), +('212.63.176.148', '212.63.176.148', 2147483647, 2147483647, 'PL', 'Poland'), +('212.63.176.149', '212.63.176.149', 2147483647, 2147483647, 'SE', 'Sweden'), +('212.63.176.150', '212.63.176.150', 2147483647, 2147483647, 'CY', 'Cyprus'), +('212.63.176.151', '212.63.176.152', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.176.153', '212.63.176.153', 2147483647, 2147483647, 'FR', 'France'), +('212.63.176.154', '212.63.176.154', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.63.176.155', '212.63.176.155', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.176.156', '212.63.176.158', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.176.159', '212.63.176.159', 2147483647, 2147483647, 'FR', 'France'), +('212.63.176.160', '212.63.176.164', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.176.165', '212.63.176.165', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.176.166', '212.63.176.166', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.176.167', '212.63.176.167', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.63.176.168', '212.63.176.170', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.176.171', '212.63.176.171', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.176.172', '212.63.176.172', 2147483647, 2147483647, 'DK', 'Denmark'), +('212.63.176.173', '212.63.176.173', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.176.174', '212.63.176.174', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.176.175', '212.63.176.175', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.176.176', '212.63.176.177', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.176.178', '212.63.176.178', 2147483647, 2147483647, 'FR', 'France'), +('212.63.176.179', '212.63.176.179', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.176.180', '212.63.176.180', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.176.181', '212.63.176.181', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.176.182', '212.63.176.182', 2147483647, 2147483647, 'DK', 'Denmark'), +('212.63.176.183', '212.63.176.183', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.176.184', '212.63.176.184', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.63.176.185', '212.63.176.185', 2147483647, 2147483647, 'FR', 'France'), +('212.63.176.186', '212.63.176.186', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.176.187', '212.63.176.187', 2147483647, 2147483647, 'HU', 'Hungary'), +('212.63.176.188', '212.63.176.188', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.176.189', '212.63.176.189', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.176.190', '212.63.176.190', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.176.191', '212.63.176.191', 2147483647, 2147483647, 'DK', 'Denmark'), +('212.63.176.192', '212.63.176.194', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.176.195', '212.63.176.195', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.176.196', '212.63.176.196', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.176.197', '212.63.176.197', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.63.176.198', '212.63.176.198', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.176.199', '212.63.176.199', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.176.200', '212.63.176.201', 2147483647, 2147483647, 'FR', 'France'), +('212.63.176.202', '212.63.176.202', 2147483647, 2147483647, 'PT', 'Portugal'), +('212.63.176.203', '212.63.176.203', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.176.204', '212.63.176.204', 2147483647, 2147483647, 'FR', 'France'), +('212.63.176.205', '212.63.176.205', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.176.206', '212.63.176.206', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.176.207', '212.63.176.207', 2147483647, 2147483647, 'GR', 'Greece'), +('212.63.176.208', '212.63.176.211', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.176.212', '212.63.176.212', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.176.213', '212.63.176.213', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.63.176.214', '212.63.176.214', 2147483647, 2147483647, 'DK', 'Denmark'), +('212.63.176.215', '212.63.176.217', 2147483647, 2147483647, 'FR', 'France'), +('212.63.176.218', '212.63.176.219', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.176.220', '212.63.176.220', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.63.176.221', '212.63.176.221', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.63.176.222', '212.63.176.222', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.176.223', '212.63.176.223', 2147483647, 2147483647, 'NO', 'Norway'), +('212.63.176.224', '212.63.176.224', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('212.63.176.225', '212.63.176.225', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.63.176.226', '212.63.176.226', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.176.227', '212.63.176.227', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.63.176.228', '212.63.176.228', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.63.176.229', '212.63.176.229', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('212.63.176.230', '212.63.176.230', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('212.63.176.231', '212.63.176.231', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('212.63.176.232', '212.63.176.232', 2147483647, 2147483647, 'FR', 'France'), +('212.63.176.233', '212.63.176.233', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.176.234', '212.63.176.234', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.63.176.235', '212.63.176.241', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.176.242', '212.63.176.242', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.63.176.243', '212.63.176.243', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.176.244', '212.63.176.244', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.63.176.245', '212.63.176.249', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.176.250', '212.63.176.250', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.63.176.251', '212.63.176.251', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.176.252', '212.63.176.252', 2147483647, 2147483647, 'FR', 'France'), +('212.63.176.253', '212.63.176.253', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('212.63.176.254', '212.63.176.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.177.0', '212.63.177.3', 2147483647, 2147483647, 'BR', 'Brazil'), +('212.63.177.4', '212.63.177.7', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.177.8', '212.63.177.15', 2147483647, 2147483647, 'US', 'United States'), +('212.63.177.16', '212.63.177.19', 2147483647, 2147483647, 'CA', 'Canada'), +('212.63.177.20', '212.63.177.23', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.177.24', '212.63.177.27', 2147483647, 2147483647, 'CL', 'Chile'), +('212.63.177.28', '212.63.177.31', 2147483647, 2147483647, 'MX', 'Mexico'), +('212.63.177.32', '212.63.177.43', 2147483647, 2147483647, 'US', 'United States'), +('212.63.177.44', '212.63.177.47', 2147483647, 2147483647, 'CA', 'Canada'), +('212.63.177.48', '212.63.177.51', 2147483647, 2147483647, 'US', 'United States'), +('212.63.177.52', '212.63.177.55', 2147483647, 2147483647, 'MX', 'Mexico'), +('212.63.177.56', '212.63.177.63', 2147483647, 2147483647, 'US', 'United States'), +('212.63.177.64', '212.63.177.67', 2147483647, 2147483647, 'PE', 'Peru'), +('212.63.177.68', '212.63.177.71', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.177.72', '212.63.177.75', 2147483647, 2147483647, 'US', 'United States'), +('212.63.177.76', '212.63.177.103', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.177.104', '212.63.177.107', 2147483647, 2147483647, 'US', 'United States'), +('212.63.177.108', '212.63.177.111', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.177.112', '212.63.177.115', 2147483647, 2147483647, 'US', 'United States'), +('212.63.177.116', '212.63.177.119', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.177.120', '212.63.177.127', 2147483647, 2147483647, 'US', 'United States'), +('212.63.177.128', '212.63.177.151', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.177.152', '212.63.177.159', 2147483647, 2147483647, 'US', 'United States'), +('212.63.177.160', '212.63.177.163', 2147483647, 2147483647, 'MX', 'Mexico'), +('212.63.177.164', '212.63.177.167', 2147483647, 2147483647, 'US', 'United States'), +('212.63.177.168', '212.63.177.171', 2147483647, 2147483647, 'MX', 'Mexico'), +('212.63.177.172', '212.63.177.187', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.177.188', '212.63.177.191', 2147483647, 2147483647, 'US', 'United States'), +('212.63.177.192', '212.63.177.195', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.177.196', '212.63.177.199', 2147483647, 2147483647, 'US', 'United States'), +('212.63.177.200', '212.63.177.207', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.177.208', '212.63.177.211', 2147483647, 2147483647, 'US', 'United States'), +('212.63.177.212', '212.63.177.215', 2147483647, 2147483647, 'CL', 'Chile'), +('212.63.177.216', '212.63.177.231', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.177.232', '212.63.177.235', 2147483647, 2147483647, 'US', 'United States'), +('212.63.177.236', '212.63.177.247', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.177.248', '212.63.178.7', 2147483647, 2147483647, 'US', 'United States'), +('212.63.178.8', '212.63.178.11', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.178.12', '212.63.178.31', 2147483647, 2147483647, 'US', 'United States'), +('212.63.178.32', '212.63.178.35', 2147483647, 2147483647, 'MX', 'Mexico'), +('212.63.178.36', '212.63.178.39', 2147483647, 2147483647, 'AR', 'Argentina'), +('212.63.178.40', '212.63.178.47', 2147483647, 2147483647, 'US', 'United States'), +('212.63.178.48', '212.63.178.51', 2147483647, 2147483647, 'BR', 'Brazil'), +('212.63.178.52', '212.63.178.55', 2147483647, 2147483647, 'PA', 'Panama'), +('212.63.178.56', '212.63.178.59', 2147483647, 2147483647, 'US', 'United States'), +('212.63.178.60', '212.63.178.63', 2147483647, 2147483647, 'CA', 'Canada'), +('212.63.178.64', '212.63.178.67', 2147483647, 2147483647, 'US', 'United States'), +('212.63.178.68', '212.63.178.71', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.178.72', '212.63.178.75', 2147483647, 2147483647, 'BO', 'Bolivia'), +('212.63.178.76', '212.63.178.79', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.178.80', '212.63.178.83', 2147483647, 2147483647, 'CA', 'Canada'), +('212.63.178.84', '212.63.178.87', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.178.88', '212.63.178.91', 2147483647, 2147483647, 'BR', 'Brazil'), +('212.63.178.92', '212.63.178.99', 2147483647, 2147483647, 'US', 'United States'), +('212.63.178.100', '212.63.178.103', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.178.104', '212.63.178.107', 2147483647, 2147483647, 'US', 'United States'), +('212.63.178.108', '212.63.178.111', 2147483647, 2147483647, 'CA', 'Canada'), +('212.63.178.112', '212.63.178.115', 2147483647, 2147483647, 'US', 'United States'), +('212.63.178.116', '212.63.178.119', 2147483647, 2147483647, 'MX', 'Mexico'), +('212.63.178.120', '212.63.178.139', 2147483647, 2147483647, 'US', 'United States'), +('212.63.178.140', '212.63.178.143', 2147483647, 2147483647, 'CO', 'Colombia'), +('212.63.178.144', '212.63.178.147', 2147483647, 2147483647, 'BR', 'Brazil'), +('212.63.178.148', '212.63.178.151', 2147483647, 2147483647, 'PE', 'Peru'), +('212.63.178.152', '212.63.178.155', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.178.156', '212.63.178.167', 2147483647, 2147483647, 'US', 'United States'), +('212.63.178.168', '212.63.178.171', 2147483647, 2147483647, 'CO', 'Colombia'), +('212.63.178.172', '212.63.178.179', 2147483647, 2147483647, 'US', 'United States'), +('212.63.178.180', '212.63.178.183', 2147483647, 2147483647, 'MX', 'Mexico'), +('212.63.178.184', '212.63.178.187', 2147483647, 2147483647, 'US', 'United States'), +('212.63.178.188', '212.63.178.195', 2147483647, 2147483647, 'AR', 'Argentina'), +('212.63.178.196', '212.63.178.211', 2147483647, 2147483647, 'US', 'United States'), +('212.63.178.212', '212.63.178.215', 2147483647, 2147483647, 'CO', 'Colombia'), +('212.63.178.216', '212.63.178.223', 2147483647, 2147483647, 'US', 'United States'), +('212.63.178.224', '212.63.178.227', 2147483647, 2147483647, 'GT', 'Guatemala'), +('212.63.178.228', '212.63.178.231', 2147483647, 2147483647, 'CA', 'Canada'), +('212.63.178.232', '212.63.178.235', 2147483647, 2147483647, 'DO', 'Dominican Republic'), +('212.63.178.236', '212.63.178.239', 2147483647, 2147483647, 'AR', 'Argentina'), +('212.63.178.240', '212.63.178.243', 2147483647, 2147483647, 'BR', 'Brazil'), +('212.63.178.244', '212.63.178.247', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.178.248', '212.63.178.251', 2147483647, 2147483647, 'AR', 'Argentina'), +('212.63.178.252', '212.63.178.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.179.0', '212.63.179.11', 2147483647, 2147483647, 'US', 'United States'), +('212.63.179.12', '212.63.179.15', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('212.63.179.16', '212.63.179.19', 2147483647, 2147483647, 'CA', 'Canada'), +('212.63.179.20', '212.63.179.27', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.179.28', '212.63.179.31', 2147483647, 2147483647, 'US', 'United States'), +('212.63.179.32', '212.63.179.35', 2147483647, 2147483647, 'SG', 'Singapore'), +('212.63.179.36', '212.63.179.47', 2147483647, 2147483647, 'US', 'United States'), +('212.63.179.48', '212.63.179.51', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.179.52', '212.63.179.63', 2147483647, 2147483647, 'US', 'United States'), +('212.63.179.64', '212.63.179.67', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.179.68', '212.63.179.75', 2147483647, 2147483647, 'US', 'United States'), +('212.63.179.76', '212.63.179.76', 2147483647, 2147483647, 'AR', 'Argentina'), +('212.63.179.77', '212.63.179.79', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.179.80', '212.63.179.83', 2147483647, 2147483647, 'CA', 'Canada'), +('212.63.179.84', '212.63.179.87', 2147483647, 2147483647, 'BR', 'Brazil'), +('212.63.179.88', '212.63.179.91', 2147483647, 2147483647, 'US', 'United States'), +('212.63.179.92', '212.63.179.95', 2147483647, 2147483647, 'AR', 'Argentina'), +('212.63.179.96', '212.63.179.103', 2147483647, 2147483647, 'US', 'United States'), +('212.63.179.104', '212.63.179.107', 2147483647, 2147483647, 'CA', 'Canada'), +('212.63.179.108', '212.63.179.135', 2147483647, 2147483647, 'US', 'United States'), +('212.63.179.136', '212.63.179.139', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.179.140', '212.63.179.147', 2147483647, 2147483647, 'US', 'United States'), +('212.63.179.148', '212.63.179.151', 2147483647, 2147483647, 'MX', 'Mexico'), +('212.63.179.152', '212.63.179.167', 2147483647, 2147483647, 'US', 'United States'), +('212.63.179.168', '212.63.179.171', 2147483647, 2147483647, 'BR', 'Brazil'), +('212.63.179.172', '212.63.179.175', 2147483647, 2147483647, 'MX', 'Mexico'), +('212.63.179.176', '212.63.179.179', 2147483647, 2147483647, 'US', 'United States'), +('212.63.179.180', '212.63.179.183', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.179.184', '212.63.179.191', 2147483647, 2147483647, 'US', 'United States'), +('212.63.179.192', '212.63.179.195', 2147483647, 2147483647, 'BR', 'Brazil'), +('212.63.179.196', '212.63.179.219', 2147483647, 2147483647, 'US', 'United States'), +('212.63.179.220', '212.63.179.223', 2147483647, 2147483647, 'CA', 'Canada'), +('212.63.179.224', '212.63.179.231', 2147483647, 2147483647, 'US', 'United States'), +('212.63.179.232', '212.63.179.235', 2147483647, 2147483647, 'EC', 'Ecuador'), +('212.63.179.236', '212.63.179.239', 2147483647, 2147483647, 'US', 'United States'), +('212.63.179.240', '212.63.179.243', 2147483647, 2147483647, 'CL', 'Chile'), +('212.63.179.244', '212.63.179.247', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.179.248', '212.63.179.251', 2147483647, 2147483647, 'CA', 'Canada'), +('212.63.179.252', '212.63.179.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.180.0', '212.63.180.3', 2147483647, 2147483647, 'TR', 'Turkey'), +('212.63.180.4', '212.63.180.7', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.180.8', '212.63.180.11', 2147483647, 2147483647, 'TR', 'Turkey'), +('212.63.180.12', '212.63.180.15', 2147483647, 2147483647, 'HU', 'Hungary'), +('212.63.180.16', '212.63.180.19', 2147483647, 2147483647, 'TR', 'Turkey'), +('212.63.180.20', '212.63.180.23', 2147483647, 2147483647, 'MZ', 'Mozambique'), +('212.63.180.24', '212.63.180.27', 2147483647, 2147483647, 'FR', 'France'), +('212.63.180.28', '212.63.180.31', 2147483647, 2147483647, 'TR', 'Turkey'), +('212.63.180.32', '212.63.180.35', 2147483647, 2147483647, 'KZ', 'Kazakstan'), +('212.63.180.36', '212.63.180.39', 2147483647, 2147483647, 'GR', 'Greece'), +('212.63.180.40', '212.63.180.47', 2147483647, 2147483647, 'TR', 'Turkey'), +('212.63.180.48', '212.63.180.51', 2147483647, 2147483647, 'FR', 'France'), +('212.63.180.52', '212.63.180.55', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('212.63.180.56', '212.63.180.59', 2147483647, 2147483647, 'TR', 'Turkey'), +('212.63.180.60', '212.63.180.63', 2147483647, 2147483647, 'CU', 'Cuba'), +('212.63.180.64', '212.63.180.67', 2147483647, 2147483647, 'ZW', 'Zimbabwe'), +('212.63.180.68', '212.63.180.71', 2147483647, 2147483647, 'TR', 'Turkey'), +('212.63.180.72', '212.63.180.75', 2147483647, 2147483647, 'IL', 'Israel'), +('212.63.180.76', '212.63.180.79', 2147483647, 2147483647, 'ZW', 'Zimbabwe'), +('212.63.180.80', '212.63.180.83', 2147483647, 2147483647, 'SK', 'Slovakia'), +('212.63.180.84', '212.63.180.87', 2147483647, 2147483647, 'TR', 'Turkey'), +('212.63.180.88', '212.63.180.91', 2147483647, 2147483647, 'KZ', 'Kazakstan'), +('212.63.180.92', '212.63.180.95', 2147483647, 2147483647, 'TR', 'Turkey'), +('212.63.180.96', '212.63.180.103', 2147483647, 2147483647, 'FR', 'France'), +('212.63.180.104', '212.63.180.107', 2147483647, 2147483647, 'GR', 'Greece'), +('212.63.180.108', '212.63.180.115', 2147483647, 2147483647, 'TR', 'Turkey'), +('212.63.180.116', '212.63.180.119', 2147483647, 2147483647, 'MZ', 'Mozambique'), +('212.63.180.120', '212.63.180.127', 2147483647, 2147483647, 'TR', 'Turkey'), +('212.63.180.128', '212.63.180.131', 2147483647, 2147483647, 'MZ', 'Mozambique'), +('212.63.180.132', '212.63.180.139', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.180.140', '212.63.180.143', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.180.144', '212.63.180.147', 2147483647, 2147483647, 'FR', 'France'), +('212.63.180.148', '212.63.180.151', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.63.180.152', '212.63.180.155', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.180.156', '212.63.180.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.63.180.160', '212.63.180.163', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.180.164', '212.63.180.167', 2147483647, 2147483647, 'FR', 'France'), +('212.63.180.168', '212.63.180.171', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.180.172', '212.63.180.175', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.180.176', '212.63.180.183', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.180.184', '212.63.180.187', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.180.188', '212.63.180.191', 2147483647, 2147483647, 'IE', 'Ireland'), +('212.63.180.192', '212.63.180.195', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.180.196', '212.63.180.199', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.180.200', '212.63.180.203', 2147483647, 2147483647, 'TR', 'Turkey'), +('212.63.180.204', '212.63.180.207', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.180.208', '212.63.180.215', 2147483647, 2147483647, 'FR', 'France'), +('212.63.180.216', '212.63.180.219', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.63.180.220', '212.63.180.223', 2147483647, 2147483647, 'DK', 'Denmark'), +('212.63.180.224', '212.63.180.231', 2147483647, 2147483647, 'FR', 'France'), +('212.63.180.232', '212.63.180.235', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.180.236', '212.63.180.239', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.180.240', '212.63.180.243', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('212.63.180.244', '212.63.180.247', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.180.248', '212.63.180.251', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.63.180.252', '212.63.180.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.181.0', '212.63.181.3', 2147483647, 2147483647, 'TW', 'Taiwan'), +('212.63.181.4', '212.63.181.7', 2147483647, 2147483647, 'SG', 'Singapore'), +('212.63.181.8', '212.63.181.11', 2147483647, 2147483647, 'MY', 'Malaysia'), +('212.63.181.12', '212.63.181.23', 2147483647, 2147483647, 'SG', 'Singapore'), +('212.63.181.24', '212.63.181.27', 2147483647, 2147483647, 'MY', 'Malaysia'), +('212.63.181.28', '212.63.181.31', 2147483647, 2147483647, 'CN', 'China'), +('212.63.181.32', '212.63.181.35', 2147483647, 2147483647, 'MY', 'Malaysia'), +('212.63.181.36', '212.63.181.39', 2147483647, 2147483647, 'SG', 'Singapore'), +('212.63.181.40', '212.63.181.47', 2147483647, 2147483647, 'CN', 'China'), +('212.63.181.48', '212.63.181.51', 2147483647, 2147483647, 'MY', 'Malaysia'), +('212.63.181.52', '212.63.181.55', 2147483647, 2147483647, 'SG', 'Singapore'), +('212.63.181.56', '212.63.181.59', 2147483647, 2147483647, 'TW', 'Taiwan'), +('212.63.181.60', '212.63.181.63', 2147483647, 2147483647, 'SG', 'Singapore'), +('212.63.181.64', '212.63.181.67', 2147483647, 2147483647, 'IN', 'India'), +('212.63.181.68', '212.63.181.71', 2147483647, 2147483647, 'MY', 'Malaysia'), +('212.63.181.72', '212.63.181.75', 2147483647, 2147483647, 'SG', 'Singapore'), +('212.63.181.76', '212.63.181.79', 2147483647, 2147483647, 'CN', 'China'), +('212.63.181.80', '212.63.181.91', 2147483647, 2147483647, 'IN', 'India'), +('212.63.181.92', '212.63.181.95', 2147483647, 2147483647, 'SG', 'Singapore'), +('212.63.181.96', '212.63.181.99', 2147483647, 2147483647, 'MY', 'Malaysia'), +('212.63.181.100', '212.63.181.103', 2147483647, 2147483647, 'SG', 'Singapore'), +('212.63.181.104', '212.63.181.107', 2147483647, 2147483647, 'MY', 'Malaysia'), +('212.63.181.108', '212.63.181.111', 2147483647, 2147483647, 'IN', 'India'), +('212.63.181.112', '212.63.181.115', 2147483647, 2147483647, 'SG', 'Singapore'), +('212.63.181.116', '212.63.181.119', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.181.120', '212.63.181.131', 2147483647, 2147483647, 'IN', 'India'), +('212.63.181.132', '212.63.181.135', 2147483647, 2147483647, 'MY', 'Malaysia'), +('212.63.181.136', '212.63.181.139', 2147483647, 2147483647, 'IN', 'India'), +('212.63.181.140', '212.63.181.143', 2147483647, 2147483647, 'CN', 'China'), +('212.63.181.144', '212.63.181.147', 2147483647, 2147483647, 'SG', 'Singapore'), +('212.63.181.148', '212.63.181.151', 2147483647, 2147483647, 'TW', 'Taiwan'), +('212.63.181.152', '212.63.181.163', 2147483647, 2147483647, 'IN', 'India'), +('212.63.181.164', '212.63.181.167', 2147483647, 2147483647, 'SG', 'Singapore'), +('212.63.181.168', '212.63.181.171', 2147483647, 2147483647, 'MY', 'Malaysia'), +('212.63.181.172', '212.63.181.179', 2147483647, 2147483647, 'IN', 'India'), +('212.63.181.180', '212.63.181.187', 2147483647, 2147483647, 'CN', 'China'), +('212.63.181.188', '212.63.181.195', 2147483647, 2147483647, 'IN', 'India'), +('212.63.181.196', '212.63.181.199', 2147483647, 2147483647, 'SG', 'Singapore'), +('212.63.181.200', '212.63.181.203', 2147483647, 2147483647, 'CN', 'China'), +('212.63.181.204', '212.63.181.207', 2147483647, 2147483647, 'SG', 'Singapore'), +('212.63.181.208', '212.63.181.211', 2147483647, 2147483647, 'MY', 'Malaysia'), +('212.63.181.212', '212.63.181.215', 2147483647, 2147483647, 'TW', 'Taiwan'), +('212.63.181.216', '212.63.181.219', 2147483647, 2147483647, 'SG', 'Singapore'), +('212.63.181.220', '212.63.181.223', 2147483647, 2147483647, 'IN', 'India'), +('212.63.181.224', '212.63.181.227', 2147483647, 2147483647, 'CN', 'China'), +('212.63.181.228', '212.63.181.235', 2147483647, 2147483647, 'SG', 'Singapore'), +('212.63.181.236', '212.63.181.239', 2147483647, 2147483647, 'TW', 'Taiwan'), +('212.63.181.240', '212.63.181.243', 2147483647, 2147483647, 'MY', 'Malaysia'), +('212.63.181.244', '212.63.181.247', 2147483647, 2147483647, 'SG', 'Singapore'), +('212.63.181.248', '212.63.181.251', 2147483647, 2147483647, 'IN', 'India'), +('212.63.181.252', '212.63.181.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('212.63.182.0', '212.63.182.1', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.182.2', '212.63.182.4', 2147483647, 2147483647, 'AU', 'Australia'), +('212.63.182.5', '212.63.182.5', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('212.63.182.6', '212.63.182.15', 2147483647, 2147483647, 'AU', 'Australia'), +('212.63.182.16', '212.63.182.16', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.182.17', '212.63.182.17', 2147483647, 2147483647, 'AU', 'Australia'), +('212.63.182.18', '212.63.182.39', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.182.40', '212.63.182.40', 2147483647, 2147483647, 'AU', 'Australia'), +('212.63.182.41', '212.63.182.42', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.182.43', '212.63.182.43', 2147483647, 2147483647, 'AU', 'Australia'), +('212.63.182.44', '212.63.182.52', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.182.53', '212.63.182.53', 2147483647, 2147483647, 'AU', 'Australia'), +('212.63.182.54', '212.63.182.54', 2147483647, 2147483647, 'IN', 'India'), +('212.63.182.55', '212.63.182.57', 2147483647, 2147483647, 'AU', 'Australia'), +('212.63.182.58', '212.63.182.75', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.182.76', '212.63.182.79', 2147483647, 2147483647, 'IN', 'India'), +('212.63.182.80', '212.63.182.115', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.182.116', '212.63.182.119', 2147483647, 2147483647, 'AU', 'Australia'), +('212.63.182.120', '212.63.182.123', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.182.124', '212.63.182.127', 2147483647, 2147483647, 'AU', 'Australia'), +('212.63.182.128', '212.63.182.203', 2147483647, 2147483647, 'JP', 'Japan'), +('212.63.182.204', '212.63.182.207', 2147483647, 2147483647, 'TH', 'Thailand'), +('212.63.182.208', '212.63.182.251', 2147483647, 2147483647, 'JP', 'Japan'), +('212.63.182.252', '212.63.182.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('212.63.183.0', '212.63.183.1', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.183.2', '212.63.183.2', 2147483647, 2147483647, 'MY', 'Malaysia'), +('212.63.183.3', '212.63.183.3', 2147483647, 2147483647, 'TW', 'Taiwan'), +('212.63.183.4', '212.63.183.4', 2147483647, 2147483647, 'CN', 'China'), +('212.63.183.5', '212.63.183.5', 2147483647, 2147483647, 'SG', 'Singapore'), +('212.63.183.6', '212.63.183.6', 2147483647, 2147483647, 'IN', 'India'), +('212.63.183.7', '212.63.183.8', 2147483647, 2147483647, 'SG', 'Singapore'), +('212.63.183.9', '212.63.183.10', 2147483647, 2147483647, 'CN', 'China'), +('212.63.183.11', '212.63.183.11', 2147483647, 2147483647, 'MY', 'Malaysia'), +('212.63.183.12', '212.63.183.12', 2147483647, 2147483647, 'IN', 'India'), +('212.63.183.13', '212.63.183.14', 2147483647, 2147483647, 'SG', 'Singapore'), +('212.63.183.15', '212.63.183.15', 2147483647, 2147483647, 'CN', 'China'), +('212.63.183.16', '212.63.183.16', 2147483647, 2147483647, 'MY', 'Malaysia'), +('212.63.183.17', '212.63.183.17', 2147483647, 2147483647, 'IN', 'India'), +('212.63.183.18', '212.63.183.18', 2147483647, 2147483647, 'MY', 'Malaysia'), +('212.63.183.19', '212.63.183.19', 2147483647, 2147483647, 'CN', 'China'), +('212.63.183.20', '212.63.183.20', 2147483647, 2147483647, 'SG', 'Singapore'), +('212.63.183.21', '212.63.183.21', 2147483647, 2147483647, 'TW', 'Taiwan'), +('212.63.183.22', '212.63.183.22', 2147483647, 2147483647, 'MY', 'Malaysia'), +('212.63.183.23', '212.63.183.23', 2147483647, 2147483647, 'CN', 'China'), +('212.63.183.24', '212.63.183.25', 2147483647, 2147483647, 'IN', 'India'), +('212.63.183.26', '212.63.183.26', 2147483647, 2147483647, 'TW', 'Taiwan'), +('212.63.183.27', '212.63.183.27', 2147483647, 2147483647, 'MY', 'Malaysia'), +('212.63.183.28', '212.63.183.28', 2147483647, 2147483647, 'CN', 'China'), +('212.63.183.29', '212.63.183.29', 2147483647, 2147483647, 'SG', 'Singapore'), +('212.63.183.30', '212.63.183.30', 2147483647, 2147483647, 'TW', 'Taiwan'), +('212.63.183.31', '212.63.183.31', 2147483647, 2147483647, 'SG', 'Singapore'), +('212.63.183.32', '212.63.183.32', 2147483647, 2147483647, 'ID', 'Indonesia'), +('212.63.183.33', '212.63.183.33', 2147483647, 2147483647, 'SG', 'Singapore'), +('212.63.183.34', '212.63.183.35', 2147483647, 2147483647, 'IN', 'India'), +('212.63.183.36', '212.63.183.40', 2147483647, 2147483647, 'SG', 'Singapore'), +('212.63.183.41', '212.63.183.41', 2147483647, 2147483647, 'IN', 'India'), +('212.63.183.42', '212.63.183.42', 2147483647, 2147483647, 'SG', 'Singapore'), +('212.63.183.43', '212.63.183.43', 2147483647, 2147483647, 'IN', 'India'), +('212.63.183.44', '212.63.183.44', 2147483647, 2147483647, 'SG', 'Singapore'), +('212.63.183.45', '212.63.183.45', 2147483647, 2147483647, 'IN', 'India'), +('212.63.183.46', '212.63.183.50', 2147483647, 2147483647, 'SG', 'Singapore'), +('212.63.183.51', '212.63.183.51', 2147483647, 2147483647, 'TW', 'Taiwan'), +('212.63.183.52', '212.63.183.53', 2147483647, 2147483647, 'SG', 'Singapore'), +('212.63.183.54', '212.63.183.54', 2147483647, 2147483647, 'IN', 'India'), +('212.63.183.55', '212.63.183.57', 2147483647, 2147483647, 'SG', 'Singapore'), +('212.63.183.58', '212.63.183.58', 2147483647, 2147483647, 'CN', 'China'), +('212.63.183.59', '212.63.183.59', 2147483647, 2147483647, 'MY', 'Malaysia'), +('212.63.183.60', '212.63.183.61', 2147483647, 2147483647, 'SG', 'Singapore'), +('212.63.183.62', '212.63.183.62', 2147483647, 2147483647, 'CN', 'China'), +('212.63.183.63', '212.63.183.63', 2147483647, 2147483647, 'SG', 'Singapore'), +('212.63.183.64', '212.63.183.64', 2147483647, 2147483647, 'CN', 'China'), +('212.63.183.65', '212.63.183.65', 2147483647, 2147483647, 'TW', 'Taiwan'), +('212.63.183.66', '212.63.183.67', 2147483647, 2147483647, 'SG', 'Singapore'), +('212.63.183.68', '212.63.183.68', 2147483647, 2147483647, 'CN', 'China'), +('212.63.183.69', '212.63.183.69', 2147483647, 2147483647, 'TW', 'Taiwan'), +('212.63.183.70', '212.63.183.70', 2147483647, 2147483647, 'IN', 'India'), +('212.63.183.71', '212.63.183.71', 2147483647, 2147483647, 'SG', 'Singapore'), +('212.63.183.72', '212.63.183.73', 2147483647, 2147483647, 'IN', 'India'), +('212.63.183.74', '212.63.183.74', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.183.75', '212.63.183.77', 2147483647, 2147483647, 'MY', 'Malaysia'), +('212.63.183.78', '212.63.183.79', 2147483647, 2147483647, 'IN', 'India'), +('212.63.183.80', '212.63.183.80', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.183.81', '212.63.183.81', 2147483647, 2147483647, 'MY', 'Malaysia'), +('212.63.183.82', '212.63.183.82', 2147483647, 2147483647, 'TH', 'Thailand'), +('212.63.183.83', '212.63.183.84', 2147483647, 2147483647, 'IN', 'India'), +('212.63.183.85', '212.63.183.87', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.183.88', '212.63.183.88', 2147483647, 2147483647, 'IN', 'India'), +('212.63.183.89', '212.63.183.89', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.183.90', '212.63.183.91', 2147483647, 2147483647, 'IN', 'India'), +('212.63.183.92', '212.63.183.92', 2147483647, 2147483647, 'SG', 'Singapore'), +('212.63.183.93', '212.63.183.93', 2147483647, 2147483647, 'US', 'United States'), +('212.63.183.94', '212.63.183.94', 2147483647, 2147483647, 'IN', 'India'), +('212.63.183.95', '212.63.183.127', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.183.128', '212.63.183.131', 2147483647, 2147483647, 'IN', 'India'), +('212.63.183.132', '212.63.183.135', 2147483647, 2147483647, 'SG', 'Singapore'), +('212.63.183.136', '212.63.183.151', 2147483647, 2147483647, 'IN', 'India'), +('212.63.183.152', '212.63.183.155', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.183.156', '212.63.183.159', 2147483647, 2147483647, 'SG', 'Singapore'), +('212.63.183.160', '212.63.183.167', 2147483647, 2147483647, 'IN', 'India'), +('212.63.183.168', '212.63.183.171', 2147483647, 2147483647, 'SG', 'Singapore'), +('212.63.183.172', '212.63.183.175', 2147483647, 2147483647, 'MY', 'Malaysia'), +('212.63.183.176', '212.63.183.179', 2147483647, 2147483647, 'SG', 'Singapore'), +('212.63.183.180', '212.63.183.183', 2147483647, 2147483647, 'TW', 'Taiwan'), +('212.63.183.184', '212.63.183.195', 2147483647, 2147483647, 'SG', 'Singapore'), +('212.63.183.196', '212.63.183.199', 2147483647, 2147483647, 'US', 'United States'), +('212.63.183.200', '212.63.183.203', 2147483647, 2147483647, 'IN', 'India'), +('212.63.183.204', '212.63.183.211', 2147483647, 2147483647, 'SG', 'Singapore'), +('212.63.183.212', '212.63.183.219', 2147483647, 2147483647, 'CN', 'China'), +('212.63.183.220', '212.63.183.227', 2147483647, 2147483647, 'SG', 'Singapore'), +('212.63.183.228', '212.63.183.231', 2147483647, 2147483647, 'CN', 'China'), +('212.63.183.232', '212.63.183.235', 2147483647, 2147483647, 'IN', 'India'), +('212.63.183.236', '212.63.183.239', 2147483647, 2147483647, 'MY', 'Malaysia'), +('212.63.183.240', '212.63.183.243', 2147483647, 2147483647, 'IN', 'India'), +('212.63.183.244', '212.63.183.251', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.183.252', '212.63.183.255', 2147483647, 2147483647, 'IN', 'India'), +('212.63.184.0', '212.63.184.3', 2147483647, 2147483647, 'US', 'United States'), +('212.63.184.4', '212.63.184.7', 2147483647, 2147483647, 'BR', 'Brazil'), +('212.63.184.8', '212.63.184.11', 2147483647, 2147483647, 'US', 'United States'), +('212.63.184.12', '212.63.184.15', 2147483647, 2147483647, 'PE', 'Peru'), +('212.63.184.16', '212.63.184.19', 2147483647, 2147483647, 'BR', 'Brazil'), +('212.63.184.20', '212.63.184.27', 2147483647, 2147483647, 'CO', 'Colombia'), +('212.63.184.28', '212.63.184.35', 2147483647, 2147483647, 'US', 'United States'), +('212.63.184.36', '212.63.184.39', 2147483647, 2147483647, 'CO', 'Colombia'), +('212.63.184.40', '212.63.184.43', 2147483647, 2147483647, 'US', 'United States'), +('212.63.184.44', '212.63.184.47', 2147483647, 2147483647, 'CO', 'Colombia'), +('212.63.184.48', '212.63.184.63', 2147483647, 2147483647, 'US', 'United States'), +('212.63.184.64', '212.63.184.67', 2147483647, 2147483647, 'AR', 'Argentina'), +('212.63.184.68', '212.63.184.75', 2147483647, 2147483647, 'US', 'United States'), +('212.63.184.76', '212.63.184.79', 2147483647, 2147483647, 'BR', 'Brazil'), +('212.63.184.80', '212.63.184.83', 2147483647, 2147483647, 'US', 'United States'), +('212.63.184.84', '212.63.184.87', 2147483647, 2147483647, 'AR', 'Argentina'), +('212.63.184.88', '212.63.184.99', 2147483647, 2147483647, 'US', 'United States'), +('212.63.184.100', '212.63.184.103', 2147483647, 2147483647, 'AR', 'Argentina'), +('212.63.184.104', '212.63.184.107', 2147483647, 2147483647, 'BR', 'Brazil'), +('212.63.184.108', '212.63.184.111', 2147483647, 2147483647, 'CA', 'Canada'), +('212.63.184.112', '212.63.184.123', 2147483647, 2147483647, 'US', 'United States'), +('212.63.184.124', '212.63.184.127', 2147483647, 2147483647, 'CO', 'Colombia'), +('212.63.184.128', '212.63.184.131', 2147483647, 2147483647, 'AR', 'Argentina'), +('212.63.184.132', '212.63.184.135', 2147483647, 2147483647, 'US', 'United States'), +('212.63.184.136', '212.63.184.139', 2147483647, 2147483647, 'BR', 'Brazil'), +('212.63.184.140', '212.63.184.143', 2147483647, 2147483647, 'US', 'United States'), +('212.63.184.144', '212.63.184.147', 2147483647, 2147483647, 'CO', 'Colombia'), +('212.63.184.148', '212.63.184.151', 2147483647, 2147483647, 'US', 'United States'), +('212.63.184.152', '212.63.184.155', 2147483647, 2147483647, 'AR', 'Argentina'), +('212.63.184.156', '212.63.184.159', 2147483647, 2147483647, 'US', 'United States'), +('212.63.184.160', '212.63.184.163', 2147483647, 2147483647, 'BR', 'Brazil'), +('212.63.184.164', '212.63.184.171', 2147483647, 2147483647, 'US', 'United States'), +('212.63.184.172', '212.63.184.175', 2147483647, 2147483647, 'CL', 'Chile'), +('212.63.184.176', '212.63.184.179', 2147483647, 2147483647, 'BR', 'Brazil'), +('212.63.184.180', '212.63.184.187', 2147483647, 2147483647, 'US', 'United States'), +('212.63.184.188', '212.63.184.191', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.184.192', '212.63.184.195', 2147483647, 2147483647, 'US', 'United States'), +('212.63.184.196', '212.63.184.199', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.184.200', '212.63.184.203', 2147483647, 2147483647, 'US', 'United States'), +('212.63.184.204', '212.63.184.207', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.184.208', '212.63.184.211', 2147483647, 2147483647, 'CA', 'Canada'), +('212.63.184.212', '212.63.184.247', 2147483647, 2147483647, 'US', 'United States'), +('212.63.184.248', '212.63.184.251', 2147483647, 2147483647, 'CA', 'Canada'), +('212.63.184.252', '212.63.184.255', 2147483647, 2147483647, 'US', 'United States'), +('212.63.185.0', '212.63.185.97', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.185.98', '212.63.185.98', 2147483647, 2147483647, 'FI', 'Finland'), +('212.63.185.99', '212.63.185.99', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('212.63.185.100', '212.63.186.0', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.186.1', '212.63.186.13', 2147483647, 2147483647, 'US', 'United States'), +('212.63.186.14', '212.63.186.14', 2147483647, 2147483647, 'AR', 'Argentina'), +('212.63.186.15', '212.63.186.18', 2147483647, 2147483647, 'US', 'United States'), +('212.63.186.19', '212.63.186.19', 2147483647, 2147483647, 'PE', 'Peru'), +('212.63.186.20', '212.63.186.20', 2147483647, 2147483647, 'CA', 'Canada'), +('212.63.186.21', '212.63.186.21', 2147483647, 2147483647, 'US', 'United States'), +('212.63.186.22', '212.63.186.22', 2147483647, 2147483647, 'CA', 'Canada'), +('212.63.186.23', '212.63.186.23', 2147483647, 2147483647, 'AR', 'Argentina'), +('212.63.186.24', '212.63.186.24', 2147483647, 2147483647, 'US', 'United States'), +('212.63.186.25', '212.63.186.25', 2147483647, 2147483647, 'CA', 'Canada'), +('212.63.186.26', '212.63.186.26', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.186.27', '212.63.186.27', 2147483647, 2147483647, 'CA', 'Canada'), +('212.63.186.28', '212.63.186.28', 2147483647, 2147483647, 'US', 'United States'), +('212.63.186.29', '212.63.186.29', 2147483647, 2147483647, 'PE', 'Peru'), +('212.63.186.30', '212.63.186.32', 2147483647, 2147483647, 'US', 'United States'), +('212.63.186.33', '212.63.186.33', 2147483647, 2147483647, 'CA', 'Canada'), +('212.63.186.34', '212.63.186.36', 2147483647, 2147483647, 'US', 'United States'), +('212.63.186.37', '212.63.186.37', 2147483647, 2147483647, 'CO', 'Colombia'), +('212.63.186.38', '212.63.186.38', 2147483647, 2147483647, 'CA', 'Canada'), +('212.63.186.39', '212.63.186.39', 2147483647, 2147483647, 'PE', 'Peru'), +('212.63.186.40', '212.63.186.53', 2147483647, 2147483647, 'US', 'United States'), +('212.63.186.54', '212.63.186.54', 2147483647, 2147483647, 'AR', 'Argentina'), +('212.63.186.55', '212.63.186.55', 2147483647, 2147483647, 'US', 'United States'), +('212.63.186.56', '212.63.186.56', 2147483647, 2147483647, 'CA', 'Canada'), +('212.63.186.57', '212.63.186.58', 2147483647, 2147483647, 'US', 'United States'), +('212.63.186.59', '212.63.186.59', 2147483647, 2147483647, 'CL', 'Chile'), +('212.63.186.60', '212.63.186.61', 2147483647, 2147483647, 'US', 'United States'), +('212.63.186.62', '212.63.186.62', 2147483647, 2147483647, 'AR', 'Argentina'), +('212.63.186.63', '212.63.186.70', 2147483647, 2147483647, 'US', 'United States'), +('212.63.186.71', '212.63.186.71', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('212.63.186.72', '212.63.186.77', 2147483647, 2147483647, 'US', 'United States'), +('212.63.186.78', '212.63.186.78', 2147483647, 2147483647, 'SG', 'Singapore'), +('212.63.186.79', '212.63.186.80', 2147483647, 2147483647, 'US', 'United States'), +('212.63.186.81', '212.63.186.81', 2147483647, 2147483647, 'MX', 'Mexico'), +('212.63.186.82', '212.63.186.82', 2147483647, 2147483647, 'US', 'United States'), +('212.63.186.83', '212.63.186.83', 2147483647, 2147483647, 'VI', 'Virgin Islands, U.S.'), +('212.63.186.84', '212.63.186.84', 2147483647, 2147483647, 'AR', 'Argentina'), +('212.63.186.85', '212.63.186.86', 2147483647, 2147483647, 'US', 'United States'), +('212.63.186.87', '212.63.186.87', 2147483647, 2147483647, 'AR', 'Argentina'), +('212.63.186.88', '212.63.186.90', 2147483647, 2147483647, 'US', 'United States'), +('212.63.186.91', '212.63.186.91', 2147483647, 2147483647, 'CA', 'Canada'), +('212.63.186.92', '212.63.186.95', 2147483647, 2147483647, 'US', 'United States'), +('212.63.186.96', '212.63.186.96', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.186.97', '212.63.186.97', 2147483647, 2147483647, 'CA', 'Canada'), +('212.63.186.98', '212.63.186.103', 2147483647, 2147483647, 'US', 'United States'), +('212.63.186.104', '212.63.186.104', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.186.105', '212.63.186.106', 2147483647, 2147483647, 'US', 'United States'), +('212.63.186.107', '212.63.186.107', 2147483647, 2147483647, 'CL', 'Chile'), +('212.63.186.108', '212.63.186.108', 2147483647, 2147483647, 'US', 'United States'), +('212.63.186.109', '212.63.186.109', 2147483647, 2147483647, 'CO', 'Colombia'), +('212.63.186.110', '212.63.186.114', 2147483647, 2147483647, 'US', 'United States'), +('212.63.186.115', '212.63.186.115', 2147483647, 2147483647, 'CA', 'Canada'), +('212.63.186.116', '212.63.186.119', 2147483647, 2147483647, 'US', 'United States'), +('212.63.186.120', '212.63.186.120', 2147483647, 2147483647, 'CL', 'Chile'), +('212.63.186.121', '212.63.186.121', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.186.122', '212.63.186.122', 2147483647, 2147483647, 'US', 'United States'), +('212.63.186.123', '212.63.186.123', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.186.124', '212.63.186.124', 2147483647, 2147483647, 'CL', 'Chile'), +('212.63.186.125', '212.63.186.135', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.186.136', '212.63.186.136', 2147483647, 2147483647, 'US', 'United States'), +('212.63.186.137', '212.63.186.141', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.186.142', '212.63.186.143', 2147483647, 2147483647, 'US', 'United States'), +('212.63.186.144', '212.63.186.144', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.186.145', '212.63.186.150', 2147483647, 2147483647, 'US', 'United States'), +('212.63.186.151', '212.63.186.151', 2147483647, 2147483647, 'CA', 'Canada'), +('212.63.186.152', '212.63.186.152', 2147483647, 2147483647, 'US', 'United States'), +('212.63.186.153', '212.63.186.153', 2147483647, 2147483647, 'DO', 'Dominican Republic'), +('212.63.186.154', '212.63.186.154', 2147483647, 2147483647, 'US', 'United States'), +('212.63.186.155', '212.63.186.155', 2147483647, 2147483647, 'DO', 'Dominican Republic'), +('212.63.186.156', '212.63.186.157', 2147483647, 2147483647, 'CA', 'Canada'), +('212.63.186.158', '212.63.186.159', 2147483647, 2147483647, 'US', 'United States'), +('212.63.186.160', '212.63.186.160', 2147483647, 2147483647, 'CA', 'Canada'), +('212.63.186.161', '212.63.186.161', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.186.162', '212.63.186.162', 2147483647, 2147483647, 'CA', 'Canada'), +('212.63.186.163', '212.63.186.163', 2147483647, 2147483647, 'US', 'United States'), +('212.63.186.164', '212.63.186.164', 2147483647, 2147483647, 'CL', 'Chile'), +('212.63.186.165', '212.63.186.166', 2147483647, 2147483647, 'CA', 'Canada'), +('212.63.186.167', '212.63.186.167', 2147483647, 2147483647, 'DO', 'Dominican Republic'), +('212.63.186.168', '212.63.186.168', 2147483647, 2147483647, 'AR', 'Argentina'), +('212.63.186.169', '212.63.186.169', 2147483647, 2147483647, 'US', 'United States'), +('212.63.186.170', '212.63.186.170', 2147483647, 2147483647, 'PE', 'Peru'), +('212.63.186.171', '212.63.186.171', 2147483647, 2147483647, 'US', 'United States'), +('212.63.186.172', '212.63.186.185', 2147483647, 2147483647, 'DE', 'Germany'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('212.63.186.186', '212.63.186.187', 2147483647, 2147483647, 'US', 'United States'), +('212.63.186.188', '212.63.186.191', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.186.192', '212.63.186.192', 2147483647, 2147483647, 'US', 'United States'), +('212.63.186.193', '212.63.186.196', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.186.197', '212.63.186.197', 2147483647, 2147483647, 'US', 'United States'), +('212.63.186.198', '212.63.186.198', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.186.199', '212.63.186.199', 2147483647, 2147483647, 'US', 'United States'), +('212.63.186.200', '212.63.186.222', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.186.223', '212.63.186.223', 2147483647, 2147483647, 'US', 'United States'), +('212.63.186.224', '212.63.186.232', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.186.233', '212.63.186.233', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('212.63.186.234', '212.63.186.243', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.186.244', '212.63.186.244', 2147483647, 2147483647, 'US', 'United States'), +('212.63.186.245', '212.63.186.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.187.0', '212.63.187.11', 2147483647, 2147483647, 'US', 'United States'), +('212.63.187.12', '212.63.187.15', 2147483647, 2147483647, 'BR', 'Brazil'), +('212.63.187.16', '212.63.187.19', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.187.20', '212.63.187.23', 2147483647, 2147483647, 'BO', 'Bolivia'), +('212.63.187.24', '212.63.187.35', 2147483647, 2147483647, 'US', 'United States'), +('212.63.187.36', '212.63.187.39', 2147483647, 2147483647, 'BR', 'Brazil'), +('212.63.187.40', '212.63.187.43', 2147483647, 2147483647, 'GU', 'Guam'), +('212.63.187.44', '212.63.187.51', 2147483647, 2147483647, 'US', 'United States'), +('212.63.187.52', '212.63.187.55', 2147483647, 2147483647, 'MX', 'Mexico'), +('212.63.187.56', '212.63.187.59', 2147483647, 2147483647, 'US', 'United States'), +('212.63.187.60', '212.63.187.63', 2147483647, 2147483647, 'BR', 'Brazil'), +('212.63.187.64', '212.63.187.67', 2147483647, 2147483647, 'VE', 'Venezuela'), +('212.63.187.68', '212.63.187.71', 2147483647, 2147483647, 'AR', 'Argentina'), +('212.63.187.72', '212.63.187.75', 2147483647, 2147483647, 'US', 'United States'), +('212.63.187.76', '212.63.187.79', 2147483647, 2147483647, 'MX', 'Mexico'), +('212.63.187.80', '212.63.187.91', 2147483647, 2147483647, 'US', 'United States'), +('212.63.187.92', '212.63.187.95', 2147483647, 2147483647, 'MX', 'Mexico'), +('212.63.187.96', '212.63.187.99', 2147483647, 2147483647, 'US', 'United States'), +('212.63.187.100', '212.63.187.103', 2147483647, 2147483647, 'CA', 'Canada'), +('212.63.187.104', '212.63.187.107', 2147483647, 2147483647, 'PE', 'Peru'), +('212.63.187.108', '212.63.187.111', 2147483647, 2147483647, 'US', 'United States'), +('212.63.187.112', '212.63.187.115', 2147483647, 2147483647, 'CA', 'Canada'), +('212.63.187.116', '212.63.187.119', 2147483647, 2147483647, 'US', 'United States'), +('212.63.187.120', '212.63.187.123', 2147483647, 2147483647, 'PE', 'Peru'), +('212.63.187.124', '212.63.187.127', 2147483647, 2147483647, 'US', 'United States'), +('212.63.187.128', '212.63.187.131', 2147483647, 2147483647, 'BR', 'Brazil'), +('212.63.187.132', '212.63.187.135', 2147483647, 2147483647, 'US', 'United States'), +('212.63.187.136', '212.63.187.139', 2147483647, 2147483647, 'BR', 'Brazil'), +('212.63.187.140', '212.63.187.147', 2147483647, 2147483647, 'US', 'United States'), +('212.63.187.148', '212.63.187.151', 2147483647, 2147483647, 'CA', 'Canada'), +('212.63.187.152', '212.63.187.155', 2147483647, 2147483647, 'US', 'United States'), +('212.63.187.156', '212.63.187.159', 2147483647, 2147483647, 'AR', 'Argentina'), +('212.63.187.160', '212.63.187.171', 2147483647, 2147483647, 'US', 'United States'), +('212.63.187.172', '212.63.187.175', 2147483647, 2147483647, 'AR', 'Argentina'), +('212.63.187.176', '212.63.187.179', 2147483647, 2147483647, 'BR', 'Brazil'), +('212.63.187.180', '212.63.187.191', 2147483647, 2147483647, 'US', 'United States'), +('212.63.187.192', '212.63.187.203', 2147483647, 2147483647, 'MX', 'Mexico'), +('212.63.187.204', '212.63.187.211', 2147483647, 2147483647, 'US', 'United States'), +('212.63.187.212', '212.63.187.215', 2147483647, 2147483647, 'AR', 'Argentina'), +('212.63.187.216', '212.63.187.219', 2147483647, 2147483647, 'MX', 'Mexico'), +('212.63.187.220', '212.63.187.223', 2147483647, 2147483647, 'CL', 'Chile'), +('212.63.187.224', '212.63.187.227', 2147483647, 2147483647, 'BR', 'Brazil'), +('212.63.187.228', '212.63.187.231', 2147483647, 2147483647, 'MX', 'Mexico'), +('212.63.187.232', '212.63.187.235', 2147483647, 2147483647, 'US', 'United States'), +('212.63.187.236', '212.63.187.239', 2147483647, 2147483647, 'MX', 'Mexico'), +('212.63.187.240', '212.63.187.247', 2147483647, 2147483647, 'BR', 'Brazil'), +('212.63.187.248', '212.63.187.255', 2147483647, 2147483647, 'US', 'United States'), +('212.63.188.0', '212.63.188.1', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.188.2', '212.63.188.7', 2147483647, 2147483647, 'US', 'United States'), +('212.63.188.8', '212.63.188.8', 2147483647, 2147483647, 'BR', 'Brazil'), +('212.63.188.9', '212.63.188.10', 2147483647, 2147483647, 'US', 'United States'), +('212.63.188.11', '212.63.188.12', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.188.13', '212.63.188.13', 2147483647, 2147483647, 'CO', 'Colombia'), +('212.63.188.14', '212.63.188.18', 2147483647, 2147483647, 'US', 'United States'), +('212.63.188.19', '212.63.188.19', 2147483647, 2147483647, 'VE', 'Venezuela'), +('212.63.188.20', '212.63.188.20', 2147483647, 2147483647, 'BR', 'Brazil'), +('212.63.188.21', '212.63.188.22', 2147483647, 2147483647, 'VE', 'Venezuela'), +('212.63.188.23', '212.63.188.23', 2147483647, 2147483647, 'US', 'United States'), +('212.63.188.24', '212.63.188.24', 2147483647, 2147483647, 'VE', 'Venezuela'), +('212.63.188.25', '212.63.188.26', 2147483647, 2147483647, 'US', 'United States'), +('212.63.188.27', '212.63.188.27', 2147483647, 2147483647, 'CO', 'Colombia'), +('212.63.188.28', '212.63.188.28', 2147483647, 2147483647, 'US', 'United States'), +('212.63.188.29', '212.63.188.29', 2147483647, 2147483647, 'AR', 'Argentina'), +('212.63.188.30', '212.63.188.30', 2147483647, 2147483647, 'US', 'United States'), +('212.63.188.31', '212.63.188.32', 2147483647, 2147483647, 'BR', 'Brazil'), +('212.63.188.33', '212.63.188.35', 2147483647, 2147483647, 'CO', 'Colombia'), +('212.63.188.36', '212.63.188.36', 2147483647, 2147483647, 'MX', 'Mexico'), +('212.63.188.37', '212.63.188.41', 2147483647, 2147483647, 'US', 'United States'), +('212.63.188.42', '212.63.188.42', 2147483647, 2147483647, 'MX', 'Mexico'), +('212.63.188.43', '212.63.188.45', 2147483647, 2147483647, 'US', 'United States'), +('212.63.188.46', '212.63.188.46', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('212.63.188.47', '212.63.188.59', 2147483647, 2147483647, 'US', 'United States'), +('212.63.188.60', '212.63.188.60', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.188.61', '212.63.188.72', 2147483647, 2147483647, 'US', 'United States'), +('212.63.188.73', '212.63.188.73', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.188.74', '212.63.188.79', 2147483647, 2147483647, 'US', 'United States'), +('212.63.188.80', '212.63.188.80', 2147483647, 2147483647, 'CA', 'Canada'), +('212.63.188.81', '212.63.188.81', 2147483647, 2147483647, 'US', 'United States'), +('212.63.188.82', '212.63.188.137', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.188.138', '212.63.188.138', 2147483647, 2147483647, 'US', 'United States'), +('212.63.188.139', '212.63.188.147', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.188.148', '212.63.188.148', 2147483647, 2147483647, 'US', 'United States'), +('212.63.188.149', '212.63.188.151', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.188.152', '212.63.188.152', 2147483647, 2147483647, 'US', 'United States'), +('212.63.188.153', '212.63.188.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.189.0', '212.63.189.3', 2147483647, 2147483647, 'US', 'United States'), +('212.63.189.4', '212.63.189.7', 2147483647, 2147483647, 'BR', 'Brazil'), +('212.63.189.8', '212.63.189.11', 2147483647, 2147483647, 'MX', 'Mexico'), +('212.63.189.12', '212.63.189.15', 2147483647, 2147483647, 'CO', 'Colombia'), +('212.63.189.16', '212.63.189.19', 2147483647, 2147483647, 'MX', 'Mexico'), +('212.63.189.20', '212.63.189.23', 2147483647, 2147483647, 'AR', 'Argentina'), +('212.63.189.24', '212.63.189.35', 2147483647, 2147483647, 'US', 'United States'), +('212.63.189.36', '212.63.189.43', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.189.44', '212.63.189.47', 2147483647, 2147483647, 'US', 'United States'), +('212.63.189.48', '212.63.189.51', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.189.52', '212.63.189.55', 2147483647, 2147483647, 'UY', 'Uruguay'), +('212.63.189.56', '212.63.189.63', 2147483647, 2147483647, 'US', 'United States'), +('212.63.189.64', '212.63.189.67', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('212.63.189.68', '212.63.189.71', 2147483647, 2147483647, 'US', 'United States'), +('212.63.189.72', '212.63.189.75', 2147483647, 2147483647, 'AR', 'Argentina'), +('212.63.189.76', '212.63.189.83', 2147483647, 2147483647, 'US', 'United States'), +('212.63.189.84', '212.63.189.87', 2147483647, 2147483647, 'CO', 'Colombia'), +('212.63.189.88', '212.63.189.95', 2147483647, 2147483647, 'US', 'United States'), +('212.63.189.96', '212.63.189.99', 2147483647, 2147483647, 'BR', 'Brazil'), +('212.63.189.100', '212.63.189.123', 2147483647, 2147483647, 'US', 'United States'), +('212.63.189.124', '212.63.189.127', 2147483647, 2147483647, 'AR', 'Argentina'), +('212.63.189.128', '212.63.189.131', 2147483647, 2147483647, 'BR', 'Brazil'), +('212.63.189.132', '212.63.189.143', 2147483647, 2147483647, 'US', 'United States'), +('212.63.189.144', '212.63.189.147', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('212.63.189.148', '212.63.189.151', 2147483647, 2147483647, 'US', 'United States'), +('212.63.189.152', '212.63.189.155', 2147483647, 2147483647, 'MX', 'Mexico'), +('212.63.189.156', '212.63.189.163', 2147483647, 2147483647, 'US', 'United States'), +('212.63.189.164', '212.63.189.167', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.189.168', '212.63.189.179', 2147483647, 2147483647, 'US', 'United States'), +('212.63.189.180', '212.63.189.183', 2147483647, 2147483647, 'CO', 'Colombia'), +('212.63.189.184', '212.63.189.199', 2147483647, 2147483647, 'US', 'United States'), +('212.63.189.200', '212.63.189.203', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.189.204', '212.63.189.207', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('212.63.189.208', '212.63.189.215', 2147483647, 2147483647, 'US', 'United States'), +('212.63.189.216', '212.63.189.219', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('212.63.189.220', '212.63.189.247', 2147483647, 2147483647, 'US', 'United States'), +('212.63.189.248', '212.63.189.251', 2147483647, 2147483647, 'VE', 'Venezuela'), +('212.63.189.252', '212.63.189.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.190.0', '212.63.190.3', 2147483647, 2147483647, 'CA', 'Canada'), +('212.63.190.4', '212.63.190.7', 2147483647, 2147483647, 'US', 'United States'), +('212.63.190.8', '212.63.190.11', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.190.12', '212.63.190.31', 2147483647, 2147483647, 'US', 'United States'), +('212.63.190.32', '212.63.190.35', 2147483647, 2147483647, 'CA', 'Canada'), +('212.63.190.36', '212.63.190.39', 2147483647, 2147483647, 'CO', 'Colombia'), +('212.63.190.40', '212.63.190.47', 2147483647, 2147483647, 'US', 'United States'), +('212.63.190.48', '212.63.190.51', 2147483647, 2147483647, 'CA', 'Canada'), +('212.63.190.52', '212.63.190.67', 2147483647, 2147483647, 'US', 'United States'), +('212.63.190.68', '212.63.190.71', 2147483647, 2147483647, 'CO', 'Colombia'), +('212.63.190.72', '212.63.190.75', 2147483647, 2147483647, 'US', 'United States'), +('212.63.190.76', '212.63.190.79', 2147483647, 2147483647, 'AR', 'Argentina'), +('212.63.190.80', '212.63.190.83', 2147483647, 2147483647, 'MX', 'Mexico'), +('212.63.190.84', '212.63.190.87', 2147483647, 2147483647, 'US', 'United States'), +('212.63.190.88', '212.63.190.91', 2147483647, 2147483647, 'BR', 'Brazil'), +('212.63.190.92', '212.63.190.131', 2147483647, 2147483647, 'US', 'United States'), +('212.63.190.132', '212.63.190.135', 2147483647, 2147483647, 'MX', 'Mexico'), +('212.63.190.136', '212.63.190.143', 2147483647, 2147483647, 'US', 'United States'), +('212.63.190.144', '212.63.190.147', 2147483647, 2147483647, 'MX', 'Mexico'), +('212.63.190.148', '212.63.190.151', 2147483647, 2147483647, 'CO', 'Colombia'), +('212.63.190.152', '212.63.190.155', 2147483647, 2147483647, 'US', 'United States'), +('212.63.190.156', '212.63.190.159', 2147483647, 2147483647, 'AN', 'Netherlands Antilles'), +('212.63.190.160', '212.63.190.163', 2147483647, 2147483647, 'US', 'United States'), +('212.63.190.164', '212.63.190.167', 2147483647, 2147483647, 'HN', 'Honduras'), +('212.63.190.168', '212.63.190.171', 2147483647, 2147483647, 'BR', 'Brazil'), +('212.63.190.172', '212.63.190.175', 2147483647, 2147483647, 'CA', 'Canada'), +('212.63.190.176', '212.63.190.183', 2147483647, 2147483647, 'US', 'United States'), +('212.63.190.184', '212.63.190.191', 2147483647, 2147483647, 'CO', 'Colombia'), +('212.63.190.192', '212.63.190.195', 2147483647, 2147483647, 'MX', 'Mexico'), +('212.63.190.196', '212.63.190.199', 2147483647, 2147483647, 'US', 'United States'), +('212.63.190.200', '212.63.190.207', 2147483647, 2147483647, 'AR', 'Argentina'), +('212.63.190.208', '212.63.190.211', 2147483647, 2147483647, 'US', 'United States'), +('212.63.190.212', '212.63.190.215', 2147483647, 2147483647, 'AR', 'Argentina'), +('212.63.190.216', '212.63.190.231', 2147483647, 2147483647, 'US', 'United States'), +('212.63.190.232', '212.63.190.235', 2147483647, 2147483647, 'MX', 'Mexico'), +('212.63.190.236', '212.63.190.239', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.190.240', '212.63.190.243', 2147483647, 2147483647, 'BR', 'Brazil'), +('212.63.190.244', '212.63.190.255', 2147483647, 2147483647, 'US', 'United States'), +('212.63.191.0', '212.63.191.39', 2147483647, 2147483647, 'JP', 'Japan'), +('212.63.191.40', '212.63.191.43', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('212.63.191.44', '212.63.191.230', 2147483647, 2147483647, 'JP', 'Japan'), +('212.63.191.231', '212.63.191.231', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.191.232', '212.63.191.255', 2147483647, 2147483647, 'JP', 'Japan'), +('212.63.192.0', '212.63.204.79', 2147483647, 2147483647, 'SE', 'Sweden'), +('212.63.204.80', '212.63.204.83', 2147483647, 2147483647, 'DK', 'Denmark'), +('212.63.204.84', '212.63.204.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('212.63.205.0', '212.63.205.3', 2147483647, 2147483647, 'NO', 'Norway'), +('212.63.205.4', '212.63.205.155', 2147483647, 2147483647, 'SE', 'Sweden'), +('212.63.205.156', '212.63.205.159', 2147483647, 2147483647, 'DK', 'Denmark'), +('212.63.205.160', '212.63.205.167', 2147483647, 2147483647, 'SE', 'Sweden'), +('212.63.205.168', '212.63.205.171', 2147483647, 2147483647, 'DK', 'Denmark'), +('212.63.205.172', '212.63.206.87', 2147483647, 2147483647, 'SE', 'Sweden'), +('212.63.206.88', '212.63.206.91', 2147483647, 2147483647, 'NO', 'Norway'), +('212.63.206.92', '212.63.206.95', 2147483647, 2147483647, 'SE', 'Sweden'), +('212.63.206.96', '212.63.206.99', 2147483647, 2147483647, 'IT', 'Italy'), +('212.63.206.100', '212.63.206.103', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.206.104', '212.63.206.107', 2147483647, 2147483647, 'SE', 'Sweden'), +('212.63.206.108', '212.63.206.111', 2147483647, 2147483647, 'NO', 'Norway'), +('212.63.206.112', '212.63.206.127', 2147483647, 2147483647, 'SE', 'Sweden'), +('212.63.206.128', '212.63.206.131', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.63.206.132', '212.63.206.151', 2147483647, 2147483647, 'SE', 'Sweden'), +('212.63.206.152', '212.63.206.155', 2147483647, 2147483647, 'FR', 'France'), +('212.63.206.156', '212.63.206.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('212.63.207.0', '212.63.207.3', 2147483647, 2147483647, 'ES', 'Spain'), +('212.63.207.4', '212.63.207.7', 2147483647, 2147483647, 'NO', 'Norway'), +('212.63.207.8', '212.63.207.31', 2147483647, 2147483647, 'SE', 'Sweden'), +('212.63.207.32', '212.63.207.35', 2147483647, 2147483647, 'FI', 'Finland'), +('212.63.207.36', '212.63.207.127', 2147483647, 2147483647, 'SE', 'Sweden'), +('212.63.207.128', '212.63.207.131', 2147483647, 2147483647, 'DE', 'Germany'), +('212.63.207.132', '212.63.223.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('212.63.224.0', '212.63.255.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.64.0.0', '212.64.127.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.64.128.0', '212.64.159.255', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('212.64.160.0', '212.64.191.255', 2147483647, 2147483647, 'ES', 'Spain'), +('212.64.192.0', '212.64.223.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('212.64.224.0', '212.64.228.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.64.229.0', '212.64.229.255', 2147483647, 2147483647, 'AT', 'Austria'), +('212.64.230.0', '212.65.31.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.65.32.0', '212.65.63.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.65.64.0', '212.65.95.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.65.96.0', '212.65.127.255', 2147483647, 2147483647, 'MT', 'Malta'), +('212.65.128.0', '212.65.159.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('212.65.160.0', '212.65.160.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.65.161.0', '212.65.191.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.65.192.0', '212.65.255.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('212.66.0.0', '212.66.31.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.66.32.0', '212.66.63.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('212.66.64.0', '212.66.95.255', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('212.66.96.0', '212.66.127.255', 2147483647, 2147483647, 'IT', 'Italy'), +('212.66.128.0', '212.66.159.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.66.160.0', '212.66.191.255', 2147483647, 2147483647, 'ES', 'Spain'), +('212.66.192.0', '212.66.223.255', 2147483647, 2147483647, 'FI', 'Finland'), +('212.66.224.0', '212.66.255.255', 2147483647, 2147483647, 'IT', 'Italy'), +('212.67.0.0', '212.67.31.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.67.32.0', '212.67.63.255', 2147483647, 2147483647, 'FR', 'France'), +('212.67.64.0', '212.67.95.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('212.67.96.0', '212.67.127.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.67.128.0', '212.67.159.255', 2147483647, 2147483647, 'PL', 'Poland'), +('212.67.160.0', '212.67.179.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.67.179.128', '212.67.179.135', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.67.179.136', '212.67.191.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.67.192.0', '212.67.223.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.67.224.0', '212.67.255.255', 2147483647, 2147483647, 'AT', 'Austria'), +('212.68.0.0', '212.68.31.255', 2147483647, 2147483647, 'FI', 'Finland'), +('212.68.32.0', '212.68.63.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('212.68.64.0', '212.68.127.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.68.128.0', '212.68.159.255', 2147483647, 2147483647, 'IL', 'Israel'), +('212.68.160.0', '212.68.191.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('212.68.192.0', '212.68.255.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.69.0.0', '212.69.31.255', 2147483647, 2147483647, 'RS', 'Serbia'), +('212.69.32.0', '212.69.63.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.69.64.0', '212.69.95.255', 2147483647, 2147483647, 'PL', 'Poland'), +('212.69.96.0', '212.69.127.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.69.128.0', '212.69.159.255', 2147483647, 2147483647, 'IT', 'Italy'), +('212.69.160.0', '212.69.191.255', 2147483647, 2147483647, 'AT', 'Austria'), +('212.69.192.0', '212.69.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.70.0.0', '212.70.31.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('212.70.32.0', '212.70.63.255', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('212.70.64.0', '212.70.95.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.70.96.0', '212.70.98.79', 2147483647, 2147483647, 'AT', 'Austria'), +('212.70.98.80', '212.70.98.95', 2147483647, 2147483647, 'DE', 'Germany'), +('212.70.98.96', '212.70.127.255', 2147483647, 2147483647, 'AT', 'Austria'), +('212.70.128.0', '212.70.159.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('212.70.160.0', '212.70.191.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('212.70.192.0', '212.70.223.255', 2147483647, 2147483647, 'GR', 'Greece'), +('212.70.224.0', '212.70.255.255', 2147483647, 2147483647, 'IT', 'Italy'), +('212.71.0.0', '212.71.17.7', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.71.17.8', '212.71.17.11', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.71.17.12', '212.71.20.167', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.71.20.168', '212.71.20.175', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.71.20.176', '212.71.25.31', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.71.25.32', '212.71.25.39', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.71.25.40', '212.71.31.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.71.32.0', '212.71.63.255', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('212.71.64.0', '212.71.95.255', 2147483647, 2147483647, 'NO', 'Norway'), +('212.71.96.0', '212.71.127.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.71.128.0', '212.71.191.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('212.71.192.0', '212.71.223.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.71.224.0', '212.71.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.72.0.0', '212.72.31.255', 2147483647, 2147483647, 'OM', 'Oman'), +('212.72.32.0', '212.72.32.159', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.72.32.160', '212.72.34.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.72.34.128', '212.72.35.79', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.72.35.80', '212.72.35.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.72.35.128', '212.72.38.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.72.39.0', '212.72.39.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.72.39.32', '212.72.39.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.72.39.64', '212.72.39.119', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.72.39.120', '212.72.39.123', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.72.39.124', '212.72.39.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.72.39.128', '212.72.39.191', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.72.39.192', '212.72.39.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.72.39.240', '212.72.39.247', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.72.39.248', '212.72.39.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.72.40.0', '212.72.46.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.72.47.0', '212.72.47.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.72.48.0', '212.72.48.79', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.72.48.80', '212.72.48.91', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.72.48.92', '212.72.48.95', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.72.48.96', '212.72.48.103', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.72.48.104', '212.72.48.135', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.72.48.136', '212.72.48.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.72.48.144', '212.72.49.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.72.49.64', '212.72.49.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.72.49.128', '212.72.50.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.72.50.128', '212.72.50.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.72.50.160', '212.72.50.191', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.72.50.192', '212.72.50.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.72.50.224', '212.72.51.15', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.72.51.16', '212.72.51.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.72.51.48', '212.72.51.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.72.51.64', '212.72.51.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.72.51.96', '212.72.51.191', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.72.51.192', '212.72.51.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.72.52.0', '212.72.53.95', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.72.53.96', '212.72.53.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.72.53.128', '212.72.53.191', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.72.53.192', '212.72.53.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.72.54.0', '212.72.55.167', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.72.55.168', '212.72.55.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.72.55.192', '212.72.61.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.72.62.0', '212.72.62.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.72.62.128', '212.72.63.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.72.64.0', '212.72.95.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.72.96.0', '212.72.127.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('212.72.128.0', '212.72.159.255', 2147483647, 2147483647, 'GE', 'Georgia'), +('212.72.160.0', '212.72.180.95', 2147483647, 2147483647, 'DE', 'Germany'), +('212.72.180.96', '212.72.180.111', 2147483647, 2147483647, 'US', 'United States'), +('212.72.180.112', '212.72.191.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.72.192.0', '212.72.223.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('212.72.224.0', '212.72.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.73.0.0', '212.73.31.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('212.73.32.0', '212.73.63.255', 2147483647, 2147483647, 'ES', 'Spain'), +('212.73.64.0', '212.73.95.255', 2147483647, 2147483647, 'AM', 'Armenia'), +('212.73.96.0', '212.73.127.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.73.128.0', '212.73.159.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('212.73.160.0', '212.73.160.55', 2147483647, 2147483647, 'SE', 'Sweden'), +('212.73.160.56', '212.73.160.59', 2147483647, 2147483647, 'DK', 'Denmark'), +('212.73.160.60', '212.73.160.95', 2147483647, 2147483647, 'SE', 'Sweden'), +('212.73.160.96', '212.73.160.127', 2147483647, 2147483647, 'DK', 'Denmark'), +('212.73.160.128', '212.73.191.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('212.73.192.0', '212.73.192.191', 2147483647, 2147483647, 'FR', 'France'), +('212.73.192.192', '212.73.192.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.73.192.224', '212.73.193.127', 2147483647, 2147483647, 'FR', 'France'), +('212.73.193.128', '212.73.193.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.73.193.160', '212.73.196.255', 2147483647, 2147483647, 'FR', 'France'), +('212.73.197.0', '212.73.199.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.73.199.32', '212.73.199.47', 2147483647, 2147483647, 'FR', 'France'), +('212.73.199.48', '212.73.199.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.73.200.0', '212.73.208.63', 2147483647, 2147483647, 'FR', 'France'), +('212.73.208.64', '212.73.208.67', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.73.208.68', '212.73.208.71', 2147483647, 2147483647, 'FR', 'France'), +('212.73.208.72', '212.73.208.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.73.208.80', '212.73.208.175', 2147483647, 2147483647, 'FR', 'France'), +('212.73.208.176', '212.73.208.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.73.208.192', '212.73.209.255', 2147483647, 2147483647, 'FR', 'France'), +('212.73.210.0', '212.73.210.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.73.210.32', '212.73.219.255', 2147483647, 2147483647, 'FR', 'France'), +('212.73.220.0', '212.73.220.255', 2147483647, 2147483647, 'US', 'United States'), +('212.73.221.0', '212.73.221.15', 2147483647, 2147483647, 'FR', 'France'), +('212.73.221.16', '212.73.221.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.73.221.224', '212.73.224.31', 2147483647, 2147483647, 'FR', 'France'), +('212.73.224.32', '212.73.225.39', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.73.225.40', '212.73.225.47', 2147483647, 2147483647, 'FR', 'France'), +('212.73.225.48', '212.73.235.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.73.235.96', '212.73.235.119', 2147483647, 2147483647, 'FR', 'France'), +('212.73.235.120', '212.73.235.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.73.236.0', '212.73.236.255', 2147483647, 2147483647, 'FR', 'France'), +('212.73.237.0', '212.73.239.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.73.240.0', '212.73.240.255', 2147483647, 2147483647, 'FR', 'France'), +('212.73.241.0', '212.73.241.255', 2147483647, 2147483647, 'IT', 'Italy'), +('212.73.242.0', '212.73.243.255', 2147483647, 2147483647, 'FR', 'France'), +('212.73.244.0', '212.73.244.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.73.244.128', '212.73.244.159', 2147483647, 2147483647, 'FR', 'France'), +('212.73.244.160', '212.73.244.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.73.244.176', '212.73.244.191', 2147483647, 2147483647, 'FR', 'France'), +('212.73.244.192', '212.73.245.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.73.246.0', '212.73.246.63', 2147483647, 2147483647, 'FR', 'France'), +('212.73.246.64', '212.73.246.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.73.247.0', '212.73.247.255', 2147483647, 2147483647, 'FR', 'France'), +('212.73.248.0', '212.73.249.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.73.250.0', '212.73.250.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('212.73.251.0', '212.73.251.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('212.73.252.0', '212.73.252.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('212.73.253.0', '212.73.253.127', 2147483647, 2147483647, 'FR', 'France'), +('212.73.253.128', '212.73.253.255', 2147483647, 2147483647, 'PL', 'Poland'), +('212.73.254.0', '212.73.255.255', 2147483647, 2147483647, 'FR', 'France'), +('212.74.0.0', '212.74.67.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.74.68.0', '212.74.68.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.74.69.0', '212.74.69.255', 2147483647, 2147483647, 'ES', 'Spain'), +('212.74.70.0', '212.74.70.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.74.71.0', '212.74.71.255', 2147483647, 2147483647, 'IT', 'Italy'), +('212.74.72.0', '212.74.72.255', 2147483647, 2147483647, 'AT', 'Austria'), +('212.74.73.0', '212.74.73.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('212.74.74.0', '212.74.74.255', 2147483647, 2147483647, 'US', 'United States'), +('212.74.75.0', '212.74.75.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('212.74.76.0', '212.74.77.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.74.78.0', '212.74.78.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.74.79.0', '212.74.82.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.74.82.128', '212.74.83.127', 2147483647, 2147483647, 'FR', 'France'), +('212.74.83.128', '212.74.87.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.74.88.0', '212.74.88.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.74.89.0', '212.74.127.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.74.128.0', '212.74.191.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.74.192.0', '212.74.233.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.74.234.0', '212.74.234.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('212.74.235.0', '212.74.255.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.75.0.0', '212.75.31.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('212.75.32.0', '212.75.37.23', 2147483647, 2147483647, 'DE', 'Germany'), +('212.75.37.24', '212.75.37.31', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.75.37.32', '212.75.63.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.75.64.0', '212.75.82.47', 2147483647, 2147483647, 'SE', 'Sweden'), +('212.75.82.48', '212.75.82.63', 2147483647, 2147483647, 'DK', 'Denmark'), +('212.75.82.64', '212.75.95.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('212.75.96.0', '212.75.127.255', 2147483647, 2147483647, 'PL', 'Poland'), +('212.75.128.0', '212.75.159.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.75.160.0', '212.75.191.255', 2147483647, 2147483647, 'ES', 'Spain'), +('212.75.192.0', '212.75.223.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.75.224.0', '212.75.255.255', 2147483647, 2147483647, 'KW', 'Kuwait'), +('212.76.0.0', '212.76.31.255', 2147483647, 2147483647, 'KZ', 'Kazakstan'), +('212.76.32.0', '212.76.63.255', 2147483647, 2147483647, 'PL', 'Poland'), +('212.76.64.0', '212.76.95.255', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('212.76.96.0', '212.76.127.255', 2147483647, 2147483647, 'IL', 'Israel'), +('212.76.128.0', '212.76.159.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.76.160.0', '212.76.191.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.76.192.0', '212.76.223.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.76.224.0', '212.76.255.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.77.0.0', '212.77.31.255', 2147483647, 2147483647, 'VA', 'Holy See (Vatican City State)'), +('212.77.32.0', '212.77.63.255', 2147483647, 2147483647, 'LI', 'Liechtenstein'), +('212.77.64.0', '212.77.95.255', 2147483647, 2147483647, 'IT', 'Italy'), +('212.77.96.0', '212.77.127.255', 2147483647, 2147483647, 'PL', 'Poland'), +('212.77.128.0', '212.77.159.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.77.160.0', '212.77.191.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.77.192.0', '212.77.223.255', 2147483647, 2147483647, 'QA', 'Qatar'), +('212.77.224.0', '212.77.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.78.0.0', '212.78.31.255', 2147483647, 2147483647, 'IT', 'Italy'), +('212.78.32.0', '212.78.63.255', 2147483647, 2147483647, 'FR', 'France'), +('212.78.64.0', '212.78.95.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.78.96.0', '212.78.102.47', 2147483647, 2147483647, 'DE', 'Germany'), +('212.78.102.48', '212.78.102.51', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.78.102.52', '212.78.111.191', 2147483647, 2147483647, 'DE', 'Germany'), +('212.78.111.192', '212.78.111.207', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.78.111.208', '212.78.127.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.78.128.0', '212.78.159.255', 2147483647, 2147483647, 'ES', 'Spain'), +('212.78.160.0', '212.78.161.39', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.78.161.40', '212.78.161.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.78.161.96', '212.78.161.159', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.78.161.160', '212.78.161.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.78.161.176', '212.78.161.199', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.78.161.200', '212.78.161.247', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.78.161.248', '212.78.161.251', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.78.161.252', '212.78.161.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.78.162.0', '212.78.163.223', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.78.163.224', '212.78.163.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.78.164.0', '212.78.164.95', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.78.164.96', '212.78.165.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.78.165.32', '212.78.166.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.78.166.64', '212.78.166.103', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.78.166.104', '212.78.166.119', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.78.166.120', '212.78.166.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.78.166.128', '212.78.166.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.78.167.0', '212.78.168.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.78.168.32', '212.78.168.39', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.78.168.40', '212.78.168.55', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.78.168.56', '212.78.168.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.78.168.64', '212.78.168.71', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.78.168.72', '212.78.168.79', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.78.168.80', '212.78.168.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.78.168.96', '212.78.168.111', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.78.168.112', '212.78.169.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.78.169.48', '212.78.169.79', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.78.169.80', '212.78.169.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.78.169.112', '212.78.169.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.78.169.128', '212.78.169.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.78.169.144', '212.78.169.175', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.78.169.176', '212.78.169.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.78.169.224', '212.78.169.239', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.78.169.240', '212.78.177.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.78.177.32', '212.78.177.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.78.177.64', '212.78.177.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.78.178.0', '212.78.178.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.78.179.0', '212.78.179.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.78.179.128', '212.78.179.223', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.78.179.224', '212.78.179.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.78.179.240', '212.78.179.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.78.180.0', '212.78.181.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.78.182.0', '212.78.187.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.78.188.0', '212.78.188.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.78.188.16', '212.78.188.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.78.188.64', '212.78.188.151', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.78.188.152', '212.78.188.191', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.78.188.192', '212.78.188.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.78.188.240', '212.78.190.95', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.78.190.96', '212.78.191.7', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.78.191.8', '212.78.191.15', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.78.191.16', '212.78.191.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.78.192.0', '212.78.195.127', 2147483647, 2147483647, 'DE', 'Germany'), +('212.78.195.128', '212.78.195.191', 2147483647, 2147483647, 'SE', 'Sweden'), +('212.78.195.192', '212.78.196.191', 2147483647, 2147483647, 'DE', 'Germany'), +('212.78.196.192', '212.78.196.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('212.78.197.0', '212.78.207.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.78.208.0', '212.78.209.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('212.78.210.0', '212.78.211.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.78.212.0', '212.78.212.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('212.78.213.0', '212.78.220.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.78.221.0', '212.78.221.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('212.78.222.0', '212.78.222.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.78.223.0', '212.78.223.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('212.78.224.0', '212.78.231.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('212.78.232.0', '212.78.235.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.78.236.0', '212.78.255.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('212.79.0.0', '212.79.63.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.79.64.0', '212.79.95.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.79.96.0', '212.79.115.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('212.79.116.0', '212.79.117.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.79.118.0', '212.79.119.255', 2147483647, 2147483647, 'US', 'United States'), +('212.79.120.0', '212.79.121.255', 2147483647, 2147483647, 'PK', 'Pakistan'), +('212.79.122.0', '212.79.127.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('212.79.128.0', '212.79.159.255', 2147483647, 2147483647, 'ES', 'Spain'), +('212.79.160.0', '212.79.223.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.79.224.0', '212.79.230.143', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.79.230.144', '212.79.230.159', 2147483647, 2147483647, 'DE', 'Germany'), +('212.79.230.160', '212.79.233.35', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.79.233.36', '212.79.233.39', 2147483647, 2147483647, 'VG', 'Virgin Islands, British'), +('212.79.233.40', '212.79.237.31', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.79.237.32', '212.79.237.63', 2147483647, 2147483647, 'VG', 'Virgin Islands, British'), +('212.79.237.64', '212.79.237.95', 2147483647, 2147483647, 'KN', 'Saint Kitts and Nevis'), +('212.79.237.96', '212.79.247.31', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.79.247.32', '212.79.247.63', 2147483647, 2147483647, 'KN', 'Saint Kitts and Nevis'), +('212.79.247.64', '212.79.249.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.79.249.64', '212.79.249.95', 2147483647, 2147483647, 'VG', 'Virgin Islands, British'), +('212.79.249.96', '212.79.253.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.79.253.128', '212.79.253.159', 2147483647, 2147483647, 'VG', 'Virgin Islands, British'), +('212.79.253.160', '212.79.255.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.79.255.64', '212.79.255.67', 2147483647, 2147483647, 'KN', 'Saint Kitts and Nevis'), +('212.79.255.68', '212.79.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.80.0.0', '212.80.31.255', 2147483647, 2147483647, 'IR', 'Iran, Islamic Republic of'), +('212.80.32.0', '212.80.63.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('212.80.64.0', '212.80.95.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('212.80.96.0', '212.80.127.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.80.128.0', '212.80.172.7', 2147483647, 2147483647, 'ES', 'Spain'), +('212.80.172.8', '212.80.172.15', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.80.172.16', '212.80.172.207', 2147483647, 2147483647, 'ES', 'Spain'), +('212.80.172.208', '212.80.172.223', 2147483647, 2147483647, 'FR', 'France'), +('212.80.172.224', '212.80.173.255', 2147483647, 2147483647, 'ES', 'Spain'), +('212.80.174.0', '212.80.174.31', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.80.174.32', '212.80.174.47', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.80.174.48', '212.80.174.255', 2147483647, 2147483647, 'ES', 'Spain'), +('212.80.175.0', '212.80.175.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.80.176.0', '212.80.176.247', 2147483647, 2147483647, 'ES', 'Spain'), +('212.80.176.248', '212.80.176.255', 2147483647, 2147483647, 'FR', 'France'), +('212.80.177.0', '212.80.178.63', 2147483647, 2147483647, 'ES', 'Spain'), +('212.80.178.64', '212.80.178.127', 2147483647, 2147483647, 'IT', 'Italy'), +('212.80.178.128', '212.80.182.63', 2147483647, 2147483647, 'ES', 'Spain'), +('212.80.182.64', '212.80.182.71', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.80.182.72', '212.80.182.127', 2147483647, 2147483647, 'ES', 'Spain'), +('212.80.182.128', '212.80.183.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.80.184.0', '212.80.191.255', 2147483647, 2147483647, 'ES', 'Spain'), +('212.80.192.0', '212.80.223.255', 2147483647, 2147483647, 'IT', 'Italy'), +('212.80.224.0', '212.80.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.81.0.0', '212.81.31.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('212.81.32.0', '212.81.35.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('212.81.36.0', '212.81.39.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.81.40.0', '212.81.63.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('212.81.64.0', '212.81.80.191', 2147483647, 2147483647, 'FR', 'France'), +('212.81.80.192', '212.81.80.207', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.81.80.208', '212.81.94.143', 2147483647, 2147483647, 'FR', 'France'), +('212.81.94.144', '212.81.94.159', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.81.94.160', '212.81.106.159', 2147483647, 2147483647, 'FR', 'France'), +('212.81.106.160', '212.81.106.191', 2147483647, 2147483647, 'DE', 'Germany'), +('212.81.106.192', '212.81.127.255', 2147483647, 2147483647, 'FR', 'France'), +('212.81.128.0', '212.81.255.255', 2147483647, 2147483647, 'ES', 'Spain'), +('212.82.0.0', '212.82.31.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.82.32.0', '212.82.63.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.82.64.0', '212.82.67.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.82.68.0', '212.82.68.31', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.82.68.32', '212.82.99.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.82.100.0', '212.82.103.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.82.104.0', '212.82.111.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('212.82.112.0', '212.82.117.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.82.118.0', '212.82.119.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.82.120.0', '212.82.127.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.82.128.0', '212.82.159.255', 2147483647, 2147483647, 'FR', 'France'), +('212.82.160.0', '212.82.191.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.82.192.0', '212.82.223.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('212.82.224.0', '212.82.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.83.0.0', '212.83.31.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.83.32.0', '212.83.42.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.83.43.0', '212.83.44.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.83.45.0', '212.83.63.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.83.64.0', '212.83.95.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.83.96.0', '212.83.127.255', 2147483647, 2147483647, 'FI', 'Finland'), +('212.83.128.0', '212.83.191.255', 2147483647, 2147483647, 'FR', 'France'), +('212.83.192.0', '212.84.31.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.84.32.0', '212.84.63.255', 2147483647, 2147483647, 'IT', 'Italy'), +('212.84.64.0', '212.84.127.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.84.128.0', '212.84.159.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.84.160.0', '212.84.191.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.84.192.0', '212.84.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.85.0.0', '212.85.31.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.85.32.0', '212.85.63.255', 2147483647, 2147483647, 'ES', 'Spain'), +('212.85.64.0', '212.85.95.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('212.85.96.0', '212.85.127.255', 2147483647, 2147483647, 'PL', 'Poland'), +('212.85.128.0', '212.85.159.255', 2147483647, 2147483647, 'FR', 'France'), +('212.85.160.0', '212.85.191.255', 2147483647, 2147483647, 'IT', 'Italy'), +('212.85.192.0', '212.85.215.255', 2147483647, 2147483647, 'GH', 'Ghana'), +('212.85.216.0', '212.85.217.255', 2147483647, 2147483647, 'TZ', 'Tanzania, United Republic of'), +('212.85.218.0', '212.85.223.255', 2147483647, 2147483647, 'SZ', 'Swaziland'), +('212.85.224.0', '212.85.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.86.0.0', '212.86.31.255', 2147483647, 2147483647, 'FI', 'Finland'), +('212.86.32.0', '212.86.63.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.86.64.0', '212.86.95.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.86.96.0', '212.86.127.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('212.86.128.0', '212.86.223.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.86.224.0', '212.86.255.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('212.87.0.0', '212.87.31.255', 2147483647, 2147483647, 'PL', 'Poland'), +('212.87.32.0', '212.87.63.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.87.64.0', '212.87.95.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.87.96.0', '212.87.127.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.87.128.0', '212.87.159.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.87.160.0', '212.87.191.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('212.87.192.0', '212.87.223.255', 2147483647, 2147483647, 'ES', 'Spain'), +('212.87.224.0', '212.87.255.255', 2147483647, 2147483647, 'PL', 'Poland'), +('212.88.0.0', '212.88.31.255', 2147483647, 2147483647, 'AT', 'Austria'), +('212.88.32.0', '212.88.63.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.88.64.0', '212.88.95.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('212.88.96.0', '212.88.127.255', 2147483647, 2147483647, 'UG', 'Uganda'), +('212.88.128.0', '212.88.137.111', 2147483647, 2147483647, 'DE', 'Germany'), +('212.88.137.112', '212.88.137.127', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('212.88.137.128', '212.88.137.191', 2147483647, 2147483647, 'DE', 'Germany'), +('212.88.137.192', '212.88.137.207', 2147483647, 2147483647, 'US', 'United States'), +('212.88.137.208', '212.88.138.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.88.139.0', '212.88.139.255', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('212.88.140.0', '212.88.159.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.88.160.0', '212.88.191.255', 2147483647, 2147483647, 'AT', 'Austria'), +('212.88.192.0', '212.88.223.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.88.224.0', '212.88.228.95', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.88.228.96', '212.88.228.127', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('212.88.228.128', '212.88.239.63', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.88.239.64', '212.88.239.79', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('212.88.239.80', '212.88.255.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.89.0.0', '212.89.31.255', 2147483647, 2147483647, 'ES', 'Spain'), +('212.89.32.0', '212.89.63.255', 2147483647, 2147483647, 'NO', 'Norway'), +('212.89.64.0', '212.89.95.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.89.96.0', '212.89.159.255', 2147483647, 2147483647, 'DE', 'Germany'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('212.89.192.0', '212.89.223.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.89.224.0', '212.89.255.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('212.90.0.0', '212.90.31.255', 2147483647, 2147483647, 'IT', 'Italy'), +('212.90.32.0', '212.90.63.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.90.64.0', '212.90.95.255', 2147483647, 2147483647, 'FI', 'Finland'), +('212.90.96.0', '212.90.106.207', 2147483647, 2147483647, 'UA', 'Ukraine'), +('212.90.106.208', '212.90.106.211', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('212.90.106.212', '212.90.127.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('212.90.128.0', '212.90.159.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.90.160.0', '212.90.191.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('212.90.192.0', '212.90.223.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.90.224.0', '212.90.255.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('212.91.0.0', '212.91.31.255', 2147483647, 2147483647, 'PL', 'Poland'), +('212.91.32.0', '212.91.95.255', 2147483647, 2147483647, 'IT', 'Italy'), +('212.91.96.0', '212.91.127.255', 2147483647, 2147483647, 'HR', 'Croatia'), +('212.91.128.0', '212.91.159.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('212.91.160.0', '212.91.191.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('212.91.192.0', '212.91.223.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.91.224.0', '212.91.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.92.0.0', '212.92.17.15', 2147483647, 2147483647, 'HU', 'Hungary'), +('212.92.17.16', '212.92.17.23', 2147483647, 2147483647, 'UA', 'Ukraine'), +('212.92.17.24', '212.92.31.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('212.92.32.0', '212.92.63.255', 2147483647, 2147483647, 'ES', 'Spain'), +('212.92.64.0', '212.92.95.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.92.96.0', '212.92.191.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.92.192.0', '212.92.223.255', 2147483647, 2147483647, 'HR', 'Croatia'), +('212.92.224.0', '212.92.255.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('212.93.0.0', '212.93.31.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.93.32.0', '212.93.63.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('212.93.64.0', '212.93.95.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.93.96.0', '212.93.127.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('212.93.128.0', '212.93.159.255', 2147483647, 2147483647, 'RO', 'Romania'), +('212.93.160.0', '212.93.223.255', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('212.93.224.0', '212.93.255.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('212.94.0.0', '212.94.31.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.94.32.0', '212.94.63.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.94.64.0', '212.94.95.255', 2147483647, 2147483647, 'FI', 'Finland'), +('212.94.96.0', '212.94.127.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.94.128.0', '212.94.159.255', 2147483647, 2147483647, 'IT', 'Italy'), +('212.94.160.0', '212.94.223.255', 2147483647, 2147483647, 'FR', 'France'), +('212.94.224.0', '212.94.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.95.0.0', '212.95.31.255', 2147483647, 2147483647, 'AT', 'Austria'), +('212.95.32.0', '212.95.36.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.95.37.0', '212.95.37.127', 2147483647, 2147483647, 'KZ', 'Kazakstan'), +('212.95.37.128', '212.95.37.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.95.38.0', '212.95.38.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('212.95.39.0', '212.95.39.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.95.40.0', '212.95.41.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('212.95.42.0', '212.95.42.127', 2147483647, 2147483647, 'DE', 'Germany'), +('212.95.42.128', '212.95.42.255', 2147483647, 2147483647, 'CA', 'Canada'), +('212.95.43.0', '212.95.43.9', 2147483647, 2147483647, 'DE', 'Germany'), +('212.95.43.10', '212.95.43.127', 2147483647, 2147483647, 'CN', 'China'), +('212.95.43.128', '212.95.43.255', 2147483647, 2147483647, 'CA', 'Canada'), +('212.95.44.0', '212.95.45.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.95.46.0', '212.95.47.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('212.95.48.0', '212.95.48.255', 2147483647, 2147483647, 'PA', 'Panama'), +('212.95.49.0', '212.95.49.255', 2147483647, 2147483647, 'PL', 'Poland'), +('212.95.50.0', '212.95.52.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.95.53.0', '212.95.53.255', 2147483647, 2147483647, 'LT', 'Lithuania'), +('212.95.54.0', '212.95.54.255', 2147483647, 2147483647, 'BY', 'Belarus'), +('212.95.55.0', '212.95.55.255', 2147483647, 2147483647, 'CN', 'China'), +('212.95.56.0', '212.95.56.15', 2147483647, 2147483647, 'DE', 'Germany'), +('212.95.56.16', '212.95.56.31', 2147483647, 2147483647, 'KZ', 'Kazakstan'), +('212.95.56.32', '212.95.56.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.95.57.0', '212.95.57.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.95.58.0', '212.95.58.255', 2147483647, 2147483647, 'BY', 'Belarus'), +('212.95.59.0', '212.95.59.255', 2147483647, 2147483647, 'PL', 'Poland'), +('212.95.60.0', '212.95.61.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.95.62.0', '212.95.62.255', 2147483647, 2147483647, 'ES', 'Spain'), +('212.95.63.0', '212.95.63.255', 2147483647, 2147483647, 'BY', 'Belarus'), +('212.95.64.0', '212.95.95.255', 2147483647, 2147483647, 'FR', 'France'), +('212.95.96.0', '212.95.127.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.95.128.0', '212.95.159.255', 2147483647, 2147483647, 'IR', 'Iran, Islamic Republic of'), +('212.95.160.0', '212.95.191.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('212.95.192.0', '212.95.223.255', 2147483647, 2147483647, 'ES', 'Spain'), +('212.95.224.0', '212.95.225.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.95.225.192', '212.95.225.215', 2147483647, 2147483647, 'US', 'United States'), +('212.95.225.216', '212.95.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.96.0.0', '212.96.1.255', 2147483647, 2147483647, 'GH', 'Ghana'), +('212.96.2.0', '212.96.4.255', 2147483647, 2147483647, 'NG', 'Nigeria'), +('212.96.5.0', '212.96.23.255', 2147483647, 2147483647, 'GH', 'Ghana'), +('212.96.24.0', '212.96.24.127', 2147483647, 2147483647, 'MZ', 'Mozambique'), +('212.96.24.128', '212.96.24.255', 2147483647, 2147483647, 'GH', 'Ghana'), +('212.96.25.0', '212.96.25.255', 2147483647, 2147483647, 'MZ', 'Mozambique'), +('212.96.26.0', '212.96.27.255', 2147483647, 2147483647, 'GH', 'Ghana'), +('212.96.28.0', '212.96.30.255', 2147483647, 2147483647, 'NG', 'Nigeria'), +('212.96.31.0', '212.96.31.255', 2147483647, 2147483647, 'GH', 'Ghana'), +('212.96.32.0', '212.96.63.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('212.96.64.0', '212.96.95.255', 2147483647, 2147483647, 'FR', 'France'), +('212.96.96.0', '212.96.127.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.96.128.0', '212.96.136.191', 2147483647, 2147483647, 'DE', 'Germany'), +('212.96.136.192', '212.96.136.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.96.136.224', '212.96.139.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.96.140.0', '212.96.140.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.96.140.32', '212.96.140.63', 2147483647, 2147483647, 'DE', 'Germany'), +('212.96.140.64', '212.96.140.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.96.140.96', '212.96.140.127', 2147483647, 2147483647, 'DE', 'Germany'), +('212.96.140.128', '212.96.140.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.96.140.160', '212.96.140.223', 2147483647, 2147483647, 'DE', 'Germany'), +('212.96.140.224', '212.96.140.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.96.141.0', '212.96.159.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.96.160.0', '212.96.191.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('212.96.192.0', '212.96.223.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.96.224.0', '212.96.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.97.0.0', '212.97.31.255', 2147483647, 2147483647, 'KG', 'Kyrgyzstan'), +('212.97.32.0', '212.97.63.255', 2147483647, 2147483647, 'IT', 'Italy'), +('212.97.64.0', '212.97.95.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.97.96.0', '212.97.127.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.97.128.0', '212.97.143.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('212.97.144.0', '212.97.145.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('212.97.146.0', '212.97.159.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('212.97.160.0', '212.97.191.255', 2147483647, 2147483647, 'ES', 'Spain'), +('212.97.192.0', '212.97.255.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('212.98.0.0', '212.98.31.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('212.98.32.0', '212.98.63.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.98.64.0', '212.98.127.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('212.98.128.0', '212.98.159.255', 2147483647, 2147483647, 'LB', 'Lebanon'), +('212.98.160.0', '212.98.191.255', 2147483647, 2147483647, 'BY', 'Belarus'), +('212.98.192.0', '212.98.255.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('212.99.0.0', '212.99.127.255', 2147483647, 2147483647, 'FR', 'France'), +('212.99.128.0', '212.99.223.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.99.224.0', '212.99.255.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('212.100.0.0', '212.100.24.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.100.25.0', '212.100.31.255', 2147483647, 2147483647, 'EU', 'Europe'), +('212.100.32.0', '212.100.63.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.100.64.0', '212.100.95.255', 2147483647, 2147483647, 'NG', 'Nigeria'), +('212.100.96.0', '212.100.127.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.100.128.0', '212.100.159.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.100.160.0', '212.100.191.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.100.192.0', '212.100.223.255', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('212.100.224.0', '212.100.228.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.100.228.192', '212.100.228.199', 2147483647, 2147483647, 'IT', 'Italy'), +('212.100.228.200', '212.100.230.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.100.230.112', '212.100.230.119', 2147483647, 2147483647, 'AU', 'Australia'), +('212.100.230.120', '212.100.230.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.100.230.224', '212.100.230.231', 2147483647, 2147483647, 'AT', 'Austria'), +('212.100.230.232', '212.100.231.55', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.100.231.56', '212.100.231.59', 2147483647, 2147483647, 'AT', 'Austria'), +('212.100.231.60', '212.100.231.61', 2147483647, 2147483647, 'DE', 'Germany'), +('212.100.231.62', '212.100.231.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.100.231.240', '212.100.231.247', 2147483647, 2147483647, 'IE', 'Ireland'), +('212.100.231.248', '212.100.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.101.0.0', '212.101.31.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.101.32.0', '212.101.63.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.101.64.0', '212.101.73.255', 2147483647, 2147483647, 'ES', 'Spain'), +('212.101.74.0', '212.101.74.31', 2147483647, 2147483647, 'US', 'United States'), +('212.101.74.32', '212.101.95.255', 2147483647, 2147483647, 'ES', 'Spain'), +('212.101.96.0', '212.101.127.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('212.101.128.0', '212.101.191.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.101.192.0', '212.101.223.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.101.224.0', '212.101.255.255', 2147483647, 2147483647, 'LB', 'Lebanon'), +('212.102.0.0', '212.102.31.255', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('212.102.32.0', '212.102.95.255', 2147483647, 2147483647, 'IT', 'Italy'), +('212.102.96.0', '212.102.127.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.102.128.0', '212.102.159.255', 2147483647, 2147483647, 'RS', 'Serbia'), +('212.102.160.0', '212.102.191.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.102.192.0', '212.102.223.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.102.224.0', '212.102.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.103.0.0', '212.103.31.255', 2147483647, 2147483647, 'FR', 'France'), +('212.103.32.0', '212.103.63.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.103.64.0', '212.103.74.143', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.103.74.144', '212.103.74.151', 2147483647, 2147483647, 'US', 'United States'), +('212.103.74.152', '212.103.74.175', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.103.74.176', '212.103.74.191', 2147483647, 2147483647, 'DE', 'Germany'), +('212.103.74.192', '212.103.78.223', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.103.78.224', '212.103.78.231', 2147483647, 2147483647, 'DE', 'Germany'), +('212.103.78.232', '212.103.95.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.103.96.0', '212.103.127.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.103.128.0', '212.103.159.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('212.103.160.0', '212.103.191.255', 2147483647, 2147483647, 'EG', 'Egypt'), +('212.103.192.0', '212.103.223.255', 2147483647, 2147483647, 'IT', 'Italy'), +('212.103.224.0', '212.103.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.104.0.0', '212.104.63.255', 2147483647, 2147483647, 'IT', 'Italy'), +('212.104.64.0', '212.104.95.255', 2147483647, 2147483647, 'GR', 'Greece'), +('212.104.96.0', '212.104.127.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('212.104.128.0', '212.104.159.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.104.160.0', '212.104.191.255', 2147483647, 2147483647, 'ES', 'Spain'), +('212.104.192.0', '212.104.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.105.0.0', '212.105.127.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('212.105.128.0', '212.105.159.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.105.160.0', '212.105.191.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.105.192.0', '212.105.223.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.105.224.0', '212.105.255.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('212.106.0.0', '212.106.31.255', 2147483647, 2147483647, 'PL', 'Poland'), +('212.106.32.0', '212.106.63.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.106.64.0', '212.106.95.255', 2147483647, 2147483647, 'PS', 'Palestinian Territory, Occupied'), +('212.106.96.0', '212.106.127.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.106.128.0', '212.106.191.255', 2147483647, 2147483647, 'PL', 'Poland'), +('212.106.192.0', '212.106.255.255', 2147483647, 2147483647, 'ES', 'Spain'), +('212.107.0.0', '212.107.31.255', 2147483647, 2147483647, 'GR', 'Greece'), +('212.107.32.0', '212.107.63.255', 2147483647, 2147483647, 'EE', 'Estonia'), +('212.107.64.0', '212.107.71.127', 2147483647, 2147483647, 'FR', 'France'), +('212.107.71.128', '212.107.71.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.107.71.144', '212.107.71.175', 2147483647, 2147483647, 'FR', 'France'), +('212.107.71.176', '212.107.71.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.107.71.192', '212.107.72.31', 2147483647, 2147483647, 'FR', 'France'), +('212.107.72.32', '212.107.72.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.107.72.48', '212.107.72.191', 2147483647, 2147483647, 'FR', 'France'), +('212.107.72.192', '212.107.72.207', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.107.72.208', '212.107.73.79', 2147483647, 2147483647, 'FR', 'France'), +('212.107.73.80', '212.107.73.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.107.73.96', '212.107.73.111', 2147483647, 2147483647, 'FR', 'France'), +('212.107.73.112', '212.107.73.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.107.73.160', '212.107.74.47', 2147483647, 2147483647, 'FR', 'France'), +('212.107.74.48', '212.107.74.63', 2147483647, 2147483647, 'DE', 'Germany'), +('212.107.74.64', '212.107.74.95', 2147483647, 2147483647, 'FR', 'France'), +('212.107.74.96', '212.107.74.111', 2147483647, 2147483647, 'DE', 'Germany'), +('212.107.74.112', '212.107.74.191', 2147483647, 2147483647, 'FR', 'France'), +('212.107.74.192', '212.107.74.207', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.107.74.208', '212.107.75.31', 2147483647, 2147483647, 'FR', 'France'), +('212.107.75.32', '212.107.75.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.107.75.48', '212.107.75.63', 2147483647, 2147483647, 'IT', 'Italy'), +('212.107.75.64', '212.107.75.79', 2147483647, 2147483647, 'DE', 'Germany'), +('212.107.75.80', '212.107.75.111', 2147483647, 2147483647, 'FR', 'France'), +('212.107.75.112', '212.107.75.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.107.75.176', '212.107.75.207', 2147483647, 2147483647, 'FR', 'France'), +('212.107.75.208', '212.107.75.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.107.75.224', '212.107.75.255', 2147483647, 2147483647, 'FR', 'France'), +('212.107.76.0', '212.107.76.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.107.76.32', '212.107.76.47', 2147483647, 2147483647, 'FR', 'France'), +('212.107.76.48', '212.107.76.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.107.76.144', '212.107.76.175', 2147483647, 2147483647, 'FR', 'France'), +('212.107.76.176', '212.107.76.191', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.107.76.192', '212.107.76.239', 2147483647, 2147483647, 'FR', 'France'), +('212.107.76.240', '212.107.76.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.107.77.0', '212.107.77.15', 2147483647, 2147483647, 'FR', 'France'), +('212.107.77.16', '212.107.77.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.107.77.32', '212.107.77.66', 2147483647, 2147483647, 'FR', 'France'), +('212.107.77.67', '212.107.77.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.107.77.80', '212.107.77.159', 2147483647, 2147483647, 'FR', 'France'), +('212.107.77.160', '212.107.77.175', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.107.77.176', '212.107.77.191', 2147483647, 2147483647, 'FR', 'France'), +('212.107.77.192', '212.107.77.207', 2147483647, 2147483647, 'IT', 'Italy'), +('212.107.77.208', '212.107.78.95', 2147483647, 2147483647, 'FR', 'France'), +('212.107.78.96', '212.107.78.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.107.78.112', '212.107.78.143', 2147483647, 2147483647, 'FR', 'France'), +('212.107.78.144', '212.107.78.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.107.78.160', '212.107.78.191', 2147483647, 2147483647, 'FR', 'France'), +('212.107.78.192', '212.107.78.207', 2147483647, 2147483647, 'IT', 'Italy'), +('212.107.78.208', '212.107.79.79', 2147483647, 2147483647, 'FR', 'France'), +('212.107.79.80', '212.107.79.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.107.79.96', '212.107.79.255', 2147483647, 2147483647, 'FR', 'France'), +('212.107.80.0', '212.107.80.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.107.80.32', '212.107.80.111', 2147483647, 2147483647, 'FR', 'France'), +('212.107.80.112', '212.107.80.127', 2147483647, 2147483647, 'US', 'United States'), +('212.107.80.128', '212.107.80.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.107.80.160', '212.107.81.127', 2147483647, 2147483647, 'FR', 'France'), +('212.107.81.128', '212.107.81.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.107.81.144', '212.107.81.159', 2147483647, 2147483647, 'FR', 'France'), +('212.107.81.160', '212.107.81.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.107.81.176', '212.107.81.239', 2147483647, 2147483647, 'FR', 'France'), +('212.107.81.240', '212.107.81.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.107.82.0', '212.107.82.15', 2147483647, 2147483647, 'FR', 'France'), +('212.107.82.16', '212.107.82.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.107.82.32', '212.107.82.47', 2147483647, 2147483647, 'FR', 'France'), +('212.107.82.48', '212.107.82.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.107.82.80', '212.107.82.111', 2147483647, 2147483647, 'FR', 'France'), +('212.107.82.112', '212.107.82.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.107.82.128', '212.107.82.143', 2147483647, 2147483647, 'FR', 'France'), +('212.107.82.144', '212.107.82.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.107.82.160', '212.107.82.175', 2147483647, 2147483647, 'FR', 'France'), +('212.107.82.176', '212.107.82.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.107.82.192', '212.107.82.223', 2147483647, 2147483647, 'FR', 'France'), +('212.107.82.224', '212.107.83.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.107.83.32', '212.107.83.47', 2147483647, 2147483647, 'FR', 'France'), +('212.107.83.48', '212.107.83.63', 2147483647, 2147483647, 'DE', 'Germany'), +('212.107.83.64', '212.107.83.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.107.83.96', '212.107.83.111', 2147483647, 2147483647, 'US', 'United States'), +('212.107.83.112', '212.107.83.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.107.83.128', '212.107.83.239', 2147483647, 2147483647, 'FR', 'France'), +('212.107.83.240', '212.107.83.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.107.84.0', '212.107.85.63', 2147483647, 2147483647, 'FR', 'France'), +('212.107.85.64', '212.107.85.79', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.107.85.80', '212.107.88.23', 2147483647, 2147483647, 'FR', 'France'), +('212.107.88.24', '212.107.88.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.107.88.32', '212.107.88.47', 2147483647, 2147483647, 'FR', 'France'), +('212.107.88.48', '212.107.88.55', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.107.88.56', '212.107.95.79', 2147483647, 2147483647, 'FR', 'France'), +('212.107.95.80', '212.107.95.95', 2147483647, 2147483647, 'DE', 'Germany'), +('212.107.95.96', '212.107.95.223', 2147483647, 2147483647, 'FR', 'France'), +('212.107.95.224', '212.107.95.239', 2147483647, 2147483647, 'DE', 'Germany'), +('212.107.95.240', '212.107.95.255', 2147483647, 2147483647, 'FR', 'France'), +('212.107.96.0', '212.107.127.255', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('212.107.128.0', '212.107.159.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('212.107.160.0', '212.107.191.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.107.192.0', '212.107.255.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.108.0.0', '212.108.2.191', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.108.2.192', '212.108.2.255', 2147483647, 2147483647, 'ES', 'Spain'), +('212.108.3.0', '212.108.3.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.108.3.128', '212.108.3.135', 2147483647, 2147483647, 'ES', 'Spain'), +('212.108.3.136', '212.108.3.223', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.108.3.224', '212.108.3.255', 2147483647, 2147483647, 'ES', 'Spain'), +('212.108.4.0', '212.108.4.255', 2147483647, 2147483647, 'US', 'United States'), +('212.108.5.0', '212.108.5.7', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.108.5.8', '212.108.5.23', 2147483647, 2147483647, 'ES', 'Spain'), +('212.108.5.24', '212.108.5.55', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.108.5.56', '212.108.5.63', 2147483647, 2147483647, 'ES', 'Spain'), +('212.108.5.64', '212.108.5.191', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.108.5.192', '212.108.5.223', 2147483647, 2147483647, 'ES', 'Spain'), +('212.108.5.224', '212.108.5.237', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.108.5.238', '212.108.5.239', 2147483647, 2147483647, 'ES', 'Spain'), +('212.108.5.240', '212.108.5.251', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.108.5.252', '212.108.5.255', 2147483647, 2147483647, 'ES', 'Spain'), +('212.108.6.0', '212.108.7.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.108.8.0', '212.108.9.7', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.108.9.8', '212.108.9.15', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('212.108.9.16', '212.108.9.23', 2147483647, 2147483647, 'FI', 'Finland'), +('212.108.9.24', '212.108.9.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.108.10.0', '212.108.11.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.108.12.0', '212.108.12.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.108.12.64', '212.108.12.79', 2147483647, 2147483647, 'ES', 'Spain'), +('212.108.12.80', '212.108.12.95', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.108.12.96', '212.108.12.127', 2147483647, 2147483647, 'ES', 'Spain'), +('212.108.12.128', '212.108.16.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.108.16.64', '212.108.17.63', 2147483647, 2147483647, 'ES', 'Spain'), +('212.108.17.64', '212.108.17.159', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.108.17.160', '212.108.17.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.108.17.176', '212.108.17.184', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.108.17.185', '212.108.17.191', 2147483647, 2147483647, 'ES', 'Spain'), +('212.108.17.192', '212.108.18.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.108.19.0', '212.108.19.255', 2147483647, 2147483647, 'ES', 'Spain'), +('212.108.20.0', '212.108.22.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.108.22.64', '212.108.22.127', 2147483647, 2147483647, 'ES', 'Spain'), +('212.108.22.128', '212.108.22.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.108.23.0', '212.108.24.255', 2147483647, 2147483647, 'ES', 'Spain'), +('212.108.25.0', '212.108.25.15', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.108.25.16', '212.108.25.23', 2147483647, 2147483647, 'ES', 'Spain'), +('212.108.25.24', '212.108.25.95', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.108.25.96', '212.108.25.159', 2147483647, 2147483647, 'ES', 'Spain'), +('212.108.25.160', '212.108.25.179', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.108.25.180', '212.108.26.255', 2147483647, 2147483647, 'ES', 'Spain'), +('212.108.27.0', '212.108.27.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.108.28.0', '212.108.29.255', 2147483647, 2147483647, 'ES', 'Spain'), +('212.108.30.0', '212.108.30.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.108.30.128', '212.108.30.191', 2147483647, 2147483647, 'ES', 'Spain'), +('212.108.30.192', '212.108.30.223', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.108.30.224', '212.108.30.255', 2147483647, 2147483647, 'ES', 'Spain'), +('212.108.31.0', '212.108.31.255', 2147483647, 2147483647, 'US', 'United States'), +('212.108.32.0', '212.108.63.255', 2147483647, 2147483647, 'AT', 'Austria'), +('212.108.64.0', '212.108.95.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.108.96.0', '212.108.127.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.108.128.0', '212.108.159.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('212.108.160.0', '212.108.191.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.108.192.0', '212.108.201.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('212.108.202.0', '212.108.202.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('212.108.203.0', '212.108.203.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('212.108.204.0', '212.108.204.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('212.108.205.0', '212.108.205.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('212.108.206.0', '212.108.206.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('212.108.207.0', '212.108.215.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('212.108.216.0', '212.108.216.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('212.108.217.0', '212.108.255.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('212.109.0.0', '212.109.31.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('212.109.32.0', '212.109.63.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('212.109.64.0', '212.109.95.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.109.96.0', '212.109.127.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('212.109.128.0', '212.109.159.255', 2147483647, 2147483647, 'PL', 'Poland'), +('212.109.160.0', '212.109.191.255', 2147483647, 2147483647, 'IT', 'Italy'), +('212.109.192.0', '212.109.223.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.109.224.0', '212.109.255.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('212.110.0.0', '212.110.63.255', 2147483647, 2147483647, 'IT', 'Italy'), +('212.110.64.0', '212.110.95.255', 2147483647, 2147483647, 'MK', 'Macedonia'), +('212.110.96.0', '212.110.114.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.110.115.0', '212.110.115.31', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.110.115.32', '212.110.127.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.110.128.0', '212.110.159.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('212.110.160.0', '212.110.191.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.110.192.0', '212.110.224.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.110.225.0', '212.110.229.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.110.230.0', '212.110.231.255', 2147483647, 2147483647, 'KZ', 'Kazakstan'), +('212.110.232.0', '212.110.235.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.110.236.0', '212.110.237.255', 2147483647, 2147483647, 'AZ', 'Azerbaijan'), +('212.110.238.0', '212.110.238.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.110.239.0', '212.110.239.255', 2147483647, 2147483647, 'KZ', 'Kazakstan'), +('212.110.240.0', '212.110.240.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.110.241.0', '212.110.241.255', 2147483647, 2147483647, 'UZ', 'Uzbekistan'), +('212.110.242.0', '212.110.247.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.110.248.0', '212.110.248.255', 2147483647, 2147483647, 'TJ', 'Tajikistan'), +('212.110.249.0', '212.110.250.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.110.251.0', '212.110.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.111.0.0', '212.111.31.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('212.111.32.0', '212.111.63.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.111.64.0', '212.111.95.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.111.96.0', '212.111.127.255', 2147483647, 2147483647, 'ES', 'Spain'), +('212.111.128.0', '212.111.191.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.111.192.0', '212.111.223.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('212.111.224.0', '212.111.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.112.0.0', '212.112.63.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('212.112.64.0', '212.112.95.255', 2147483647, 2147483647, 'IT', 'Italy'), +('212.112.96.0', '212.112.127.255', 2147483647, 2147483647, 'KG', 'Kyrgyzstan'), +('212.112.128.0', '212.112.141.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.112.142.0', '212.112.159.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('212.112.160.0', '212.112.167.31', 2147483647, 2147483647, 'SE', 'Sweden'), +('212.112.167.32', '212.112.167.63', 2147483647, 2147483647, 'NO', 'Norway'), +('212.112.167.64', '212.112.185.23', 2147483647, 2147483647, 'SE', 'Sweden'), +('212.112.185.24', '212.112.185.31', 2147483647, 2147483647, 'NO', 'Norway'), +('212.112.185.32', '212.112.191.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('212.112.192.0', '212.112.203.63', 2147483647, 2147483647, 'DE', 'Germany'), +('212.112.203.64', '212.112.203.99', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.112.203.100', '212.112.215.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.112.216.0', '212.112.217.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.112.217.64', '212.112.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.113.0.0', '212.113.31.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.113.32.0', '212.113.63.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('212.113.64.0', '212.113.95.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.113.96.0', '212.113.127.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.113.128.0', '212.113.159.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.113.160.0', '212.113.191.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('212.113.192.0', '212.113.223.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.113.224.0', '212.113.255.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.114.0.0', '212.114.1.255', 2147483647, 2147483647, 'TJ', 'Tajikistan'), +('212.114.2.0', '212.114.31.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.114.32.0', '212.114.77.127', 2147483647, 2147483647, 'DE', 'Germany'), +('212.114.77.128', '212.114.77.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.114.78.0', '212.114.95.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.114.96.0', '212.114.127.255', 2147483647, 2147483647, 'GR', 'Greece'), +('212.114.128.0', '212.114.200.55', 2147483647, 2147483647, 'DE', 'Germany'), +('212.114.200.56', '212.114.200.63', 2147483647, 2147483647, 'AT', 'Austria'), +('212.114.200.64', '212.114.241.63', 2147483647, 2147483647, 'DE', 'Germany'), +('212.114.241.64', '212.114.241.95', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.114.241.96', '212.114.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.115.0.0', '212.115.31.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('212.115.32.0', '212.115.63.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.115.64.0', '212.115.95.255', 2147483647, 2147483647, 'IT', 'Italy'), +('212.115.96.0', '212.115.127.255', 2147483647, 2147483647, 'ES', 'Spain'), +('212.115.128.0', '212.115.130.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.115.131.0', '212.115.131.31', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.115.131.32', '212.115.132.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.115.132.128', '212.115.132.191', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.115.132.192', '212.115.132.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.115.133.0', '212.115.133.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.115.134.0', '212.115.134.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.115.135.0', '212.115.135.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.115.135.128', '212.115.135.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.115.135.192', '212.115.135.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.115.136.0', '212.115.137.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.115.138.0', '212.115.139.47', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.115.139.48', '212.115.139.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.115.139.192', '212.115.139.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.115.140.0', '212.115.140.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.115.140.64', '212.115.140.159', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.115.140.160', '212.115.140.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.115.141.0', '212.115.141.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.115.142.0', '212.115.145.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.115.145.32', '212.115.145.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.115.145.64', '212.115.145.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.115.145.128', '212.115.145.191', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.115.145.192', '212.115.145.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.115.145.224', '212.115.145.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.115.146.0', '212.115.146.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.115.146.32', '212.115.146.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.115.146.64', '212.115.146.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.115.146.160', '212.115.146.191', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.115.146.192', '212.115.146.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.115.146.224', '212.115.147.167', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.115.147.168', '212.115.147.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.115.147.176', '212.115.147.183', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.115.147.184', '212.115.148.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.115.149.0', '212.115.149.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.115.150.0', '212.115.150.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.115.150.64', '212.115.150.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.115.150.128', '212.115.150.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.115.150.192', '212.115.150.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.115.151.0', '212.115.151.39', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.115.151.40', '212.115.151.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.115.151.64', '212.115.151.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.115.151.128', '212.115.151.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.115.152.0', '212.115.155.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.115.155.32', '212.115.155.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.115.155.64', '212.115.155.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.115.155.96', '212.115.155.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.115.155.128', '212.115.155.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.115.155.160', '212.115.155.191', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.115.155.192', '212.115.159.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.115.160.0', '212.115.160.191', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.115.160.192', '212.115.160.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.115.161.0', '212.115.162.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.115.163.0', '212.115.163.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.115.163.32', '212.115.163.79', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.115.163.80', '212.115.163.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.115.163.96', '212.115.163.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.115.163.128', '212.115.163.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.115.163.240', '212.115.163.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.115.164.0', '212.115.164.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.115.164.64', '212.115.164.79', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.115.164.80', '212.115.164.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.115.164.112', '212.115.164.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.115.164.128', '212.115.164.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.115.164.144', '212.115.164.223', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.115.164.224', '212.115.164.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.115.165.0', '212.115.166.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.115.166.64', '212.115.166.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.115.167.0', '212.115.167.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.115.167.128', '212.115.167.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.115.167.192', '212.115.167.223', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.115.167.224', '212.115.168.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.115.168.64', '212.115.168.143', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.115.168.144', '212.115.168.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.115.168.176', '212.115.168.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.115.169.0', '212.115.171.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.115.171.128', '212.115.171.143', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.115.171.144', '212.115.171.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.115.171.160', '212.115.172.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.115.173.0', '212.115.174.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.115.175.0', '212.115.175.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.115.175.64', '212.115.175.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.115.175.144', '212.115.175.159', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.115.175.160', '212.115.175.207', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.115.175.208', '212.115.175.223', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.115.175.224', '212.115.175.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.115.175.240', '212.115.175.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.115.176.0', '212.115.176.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.115.176.16', '212.115.176.191', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.115.176.192', '212.115.177.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.115.178.0', '212.115.178.79', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.115.178.80', '212.115.178.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.115.178.96', '212.115.178.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.115.178.128', '212.115.178.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.115.178.192', '212.115.179.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.115.180.0', '212.115.180.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.115.180.32', '212.115.180.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.115.180.64', '212.115.180.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.115.180.224', '212.115.180.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.115.181.0', '212.115.181.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.115.182.0', '212.115.182.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.115.182.64', '212.115.182.87', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.115.182.88', '212.115.182.143', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.115.182.144', '212.115.182.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.115.182.176', '212.115.182.191', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.115.182.192', '212.115.182.199', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.115.182.200', '212.115.182.239', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.115.182.240', '212.115.183.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.115.183.16', '212.115.183.31', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.115.183.32', '212.115.183.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.115.183.64', '212.115.183.79', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.115.183.80', '212.115.183.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.115.183.128', '212.115.183.207', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.115.183.208', '212.115.183.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.115.183.224', '212.115.183.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.115.184.0', '212.115.184.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.115.185.0', '212.115.185.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.115.185.128', '212.115.186.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.115.186.16', '212.115.186.31', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.115.186.32', '212.115.186.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.115.187.0', '212.115.187.31', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.115.187.32', '212.115.187.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.115.187.64', '212.115.187.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.115.188.0', '212.115.189.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.115.189.128', '212.115.189.223', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.115.189.224', '212.115.190.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.115.190.64', '212.115.190.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.115.190.128', '212.115.190.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.115.190.224', '212.115.190.239', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.115.190.240', '212.115.191.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.115.192.0', '212.115.223.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.115.224.0', '212.115.255.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('212.116.0.0', '212.116.31.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.116.32.0', '212.116.63.255', 2147483647, 2147483647, 'FI', 'Finland'), +('212.116.64.0', '212.116.81.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('212.116.82.0', '212.116.82.127', 2147483647, 2147483647, 'NO', 'Norway'), +('212.116.82.128', '212.116.95.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('212.116.96.0', '212.116.127.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.116.128.0', '212.116.159.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('212.116.160.0', '212.116.191.255', 2147483647, 2147483647, 'IL', 'Israel'), +('212.116.192.0', '212.116.223.255', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('212.116.224.0', '212.116.232.207', 2147483647, 2147483647, 'KZ', 'Kazakstan'), +('212.116.232.208', '212.116.232.223', 2147483647, 2147483647, 'AF', 'Afghanistan'), +('212.116.232.224', '212.116.255.255', 2147483647, 2147483647, 'KZ', 'Kazakstan'), +('212.117.0.0', '212.117.31.255', 2147483647, 2147483647, 'LT', 'Lithuania'), +('212.117.32.0', '212.117.63.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('212.117.64.0', '212.117.95.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.117.96.0', '212.117.127.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.117.128.0', '212.117.159.255', 2147483647, 2147483647, 'IL', 'Israel'), +('212.117.160.0', '212.117.191.255', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('212.117.192.0', '212.117.223.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.117.224.0', '212.117.224.59', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.117.224.60', '212.117.224.63', 2147483647, 2147483647, 'FR', 'France'), +('212.117.224.64', '212.117.224.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.117.225.0', '212.117.225.63', 2147483647, 2147483647, 'DE', 'Germany'), +('212.117.225.64', '212.117.225.99', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.117.225.100', '212.117.226.255', 2147483647, 2147483647, 'EU', 'Europe'), +('212.117.227.0', '212.117.227.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.117.227.128', '212.117.227.255', 2147483647, 2147483647, 'EU', 'Europe'), +('212.117.228.0', '212.117.228.55', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.117.228.56', '212.117.228.63', 2147483647, 2147483647, 'EU', 'Europe'), +('212.117.228.64', '212.117.228.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.117.228.240', '212.117.228.255', 2147483647, 2147483647, 'EU', 'Europe'), +('212.117.229.0', '212.117.229.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.117.229.48', '212.117.229.55', 2147483647, 2147483647, 'EU', 'Europe'), +('212.117.229.56', '212.117.229.71', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.117.229.72', '212.117.229.79', 2147483647, 2147483647, 'EU', 'Europe'), +('212.117.229.80', '212.117.229.87', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.117.229.88', '212.117.229.95', 2147483647, 2147483647, 'EU', 'Europe'), +('212.117.229.96', '212.117.229.135', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.117.229.136', '212.117.229.143', 2147483647, 2147483647, 'EU', 'Europe'), +('212.117.229.144', '212.117.229.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.117.229.192', '212.117.229.199', 2147483647, 2147483647, 'FR', 'France'), +('212.117.229.200', '212.117.229.207', 2147483647, 2147483647, 'EU', 'Europe'), +('212.117.229.208', '212.117.230.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.117.230.224', '212.117.230.255', 2147483647, 2147483647, 'EU', 'Europe'), +('212.117.231.0', '212.117.231.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.117.231.16', '212.117.231.31', 2147483647, 2147483647, 'EU', 'Europe'), +('212.117.231.32', '212.117.231.207', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.117.231.208', '212.117.231.223', 2147483647, 2147483647, 'FR', 'France'), +('212.117.231.224', '212.117.231.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.117.232.0', '212.117.239.255', 2147483647, 2147483647, 'EU', 'Europe'), +('212.117.240.0', '212.117.240.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.117.240.64', '212.117.240.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.117.240.112', '212.117.240.255', 2147483647, 2147483647, 'EU', 'Europe'), +('212.117.241.0', '212.117.241.15', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.117.241.16', '212.117.241.31', 2147483647, 2147483647, 'DK', 'Denmark'), +('212.117.241.32', '212.117.241.39', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.117.241.40', '212.117.241.47', 2147483647, 2147483647, 'EU', 'Europe'), +('212.117.241.48', '212.117.241.135', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.117.241.136', '212.117.241.255', 2147483647, 2147483647, 'EU', 'Europe'), +('212.117.242.0', '212.117.242.95', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.117.242.96', '212.117.242.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.117.243.0', '212.117.247.255', 2147483647, 2147483647, 'EU', 'Europe'), +('212.117.248.0', '212.117.248.7', 2147483647, 2147483647, 'SE', 'Sweden'), +('212.117.248.8', '212.117.248.255', 2147483647, 2147483647, 'EU', 'Europe'), +('212.117.249.0', '212.117.249.15', 2147483647, 2147483647, 'DE', 'Germany'), +('212.117.249.16', '212.117.249.31', 2147483647, 2147483647, 'SE', 'Sweden'), +('212.117.249.32', '212.117.249.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.117.249.64', '212.117.249.255', 2147483647, 2147483647, 'EU', 'Europe'), +('212.117.250.0', '212.117.250.3', 2147483647, 2147483647, 'SE', 'Sweden'), +('212.117.250.4', '212.117.250.7', 2147483647, 2147483647, 'DE', 'Germany'), +('212.117.250.8', '212.117.250.255', 2147483647, 2147483647, 'EU', 'Europe'), +('212.117.251.0', '212.117.251.127', 2147483647, 2147483647, 'DE', 'Germany'), +('212.117.251.128', '212.117.253.255', 2147483647, 2147483647, 'EU', 'Europe'), +('212.117.254.0', '212.117.254.31', 2147483647, 2147483647, 'DE', 'Germany'), +('212.117.254.32', '212.117.254.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.117.254.64', '212.117.255.255', 2147483647, 2147483647, 'EU', 'Europe'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('212.118.0.0', '212.118.31.255', 2147483647, 2147483647, 'JO', 'Jordan'), +('212.118.32.0', '212.118.63.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.118.64.0', '212.118.95.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('212.118.96.0', '212.118.159.255', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('212.118.160.0', '212.118.223.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.118.224.0', '212.118.224.7', 2147483647, 2147483647, 'US', 'United States'), +('212.118.224.8', '212.118.224.15', 2147483647, 2147483647, 'CA', 'Canada'), +('212.118.224.16', '212.118.224.31', 2147483647, 2147483647, 'US', 'United States'), +('212.118.224.32', '212.118.224.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.118.224.128', '212.118.224.255', 2147483647, 2147483647, 'US', 'United States'), +('212.118.225.0', '212.118.226.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.118.226.32', '212.118.226.63', 2147483647, 2147483647, 'US', 'United States'), +('212.118.226.64', '212.118.226.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.118.226.144', '212.118.226.159', 2147483647, 2147483647, 'US', 'United States'), +('212.118.226.160', '212.118.226.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.118.227.0', '212.118.227.255', 2147483647, 2147483647, 'US', 'United States'), +('212.118.228.0', '212.118.228.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.118.229.0', '212.118.229.127', 2147483647, 2147483647, 'US', 'United States'), +('212.118.229.128', '212.118.229.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.118.230.0', '212.118.231.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.118.232.0', '212.118.232.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.118.233.0', '212.118.233.127', 2147483647, 2147483647, 'US', 'United States'), +('212.118.233.128', '212.118.233.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.118.233.192', '212.118.233.255', 2147483647, 2147483647, 'US', 'United States'), +('212.118.234.0', '212.118.236.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.118.237.0', '212.118.237.255', 2147483647, 2147483647, 'US', 'United States'), +('212.118.238.0', '212.118.238.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.118.239.0', '212.118.239.15', 2147483647, 2147483647, 'US', 'United States'), +('212.118.239.16', '212.118.242.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.118.243.0', '212.118.243.31', 2147483647, 2147483647, 'US', 'United States'), +('212.118.243.32', '212.118.243.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.118.243.80', '212.118.243.159', 2147483647, 2147483647, 'US', 'United States'), +('212.118.243.160', '212.118.246.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.118.247.0', '212.118.247.255', 2147483647, 2147483647, 'US', 'United States'), +('212.118.248.0', '212.118.250.103', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.118.250.104', '212.118.250.111', 2147483647, 2147483647, 'US', 'United States'), +('212.118.250.112', '212.118.250.207', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.118.250.208', '212.118.250.215', 2147483647, 2147483647, 'US', 'United States'), +('212.118.250.216', '212.118.250.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.118.251.0', '212.118.251.127', 2147483647, 2147483647, 'US', 'United States'), +('212.118.251.128', '212.118.252.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.118.253.0', '212.118.253.127', 2147483647, 2147483647, 'US', 'United States'), +('212.118.253.128', '212.118.253.231', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.118.253.232', '212.118.254.119', 2147483647, 2147483647, 'US', 'United States'), +('212.118.254.120', '212.118.254.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.118.254.160', '212.118.254.167', 2147483647, 2147483647, 'US', 'United States'), +('212.118.254.168', '212.118.254.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.118.254.192', '212.118.254.255', 2147483647, 2147483647, 'US', 'United States'), +('212.118.255.0', '212.119.9.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.119.9.176', '212.119.9.191', 2147483647, 2147483647, 'DE', 'Germany'), +('212.119.9.192', '212.119.9.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.119.10.0', '212.119.11.63', 2147483647, 2147483647, 'FR', 'France'), +('212.119.11.64', '212.119.11.87', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.119.11.88', '212.119.11.95', 2147483647, 2147483647, 'FR', 'France'), +('212.119.11.96', '212.119.11.119', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.119.11.120', '212.119.11.127', 2147483647, 2147483647, 'FR', 'France'), +('212.119.11.128', '212.119.11.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.119.11.176', '212.119.11.191', 2147483647, 2147483647, 'FR', 'France'), +('212.119.11.192', '212.119.11.199', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.119.11.200', '212.119.11.207', 2147483647, 2147483647, 'FR', 'France'), +('212.119.11.208', '212.119.14.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.119.14.112', '212.119.14.127', 2147483647, 2147483647, 'DE', 'Germany'), +('212.119.14.128', '212.119.31.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.119.32.0', '212.119.63.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.119.64.0', '212.119.95.255', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('212.119.96.0', '212.119.127.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.119.128.0', '212.119.159.255', 2147483647, 2147483647, 'AT', 'Austria'), +('212.119.160.0', '212.119.255.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.120.0.0', '212.120.31.255', 2147483647, 2147483647, 'MK', 'Macedonia'), +('212.120.32.0', '212.120.63.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.120.64.0', '212.120.127.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.120.128.0', '212.120.136.15', 2147483647, 2147483647, 'IE', 'Ireland'), +('212.120.136.16', '212.120.136.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.120.136.64', '212.120.136.175', 2147483647, 2147483647, 'IE', 'Ireland'), +('212.120.136.176', '212.120.136.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.120.136.192', '212.120.137.159', 2147483647, 2147483647, 'IE', 'Ireland'), +('212.120.137.160', '212.120.137.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.120.137.176', '212.120.137.223', 2147483647, 2147483647, 'IE', 'Ireland'), +('212.120.137.224', '212.120.137.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.120.138.0', '212.120.140.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('212.120.141.0', '212.120.141.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.120.141.32', '212.120.151.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('212.120.152.0', '212.120.152.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.120.152.32', '212.120.152.111', 2147483647, 2147483647, 'IE', 'Ireland'), +('212.120.152.112', '212.120.152.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.120.152.192', '212.120.153.127', 2147483647, 2147483647, 'IE', 'Ireland'), +('212.120.153.128', '212.120.154.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.120.154.128', '212.120.154.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('212.120.155.0', '212.120.155.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.120.155.16', '212.120.155.31', 2147483647, 2147483647, 'IE', 'Ireland'), +('212.120.155.32', '212.120.155.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.120.155.48', '212.120.155.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('212.120.156.0', '212.120.157.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.120.157.128', '212.120.159.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('212.120.160.0', '212.120.191.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.120.192.0', '212.120.223.255', 2147483647, 2147483647, 'IR', 'Iran, Islamic Republic of'), +('212.120.224.0', '212.120.255.255', 2147483647, 2147483647, 'GI', 'Gibraltar'), +('212.121.0.0', '212.121.63.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.121.64.0', '212.121.95.255', 2147483647, 2147483647, 'IT', 'Italy'), +('212.121.128.0', '212.121.131.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.121.132.0', '212.121.132.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.121.133.0', '212.121.135.31', 2147483647, 2147483647, 'DE', 'Germany'), +('212.121.135.32', '212.121.135.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.121.135.64', '212.121.135.79', 2147483647, 2147483647, 'DE', 'Germany'), +('212.121.135.80', '212.121.135.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.121.135.96', '212.121.135.127', 2147483647, 2147483647, 'DE', 'Germany'), +('212.121.135.128', '212.121.135.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.121.135.224', '212.121.136.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.121.137.0', '212.121.137.87', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.121.137.88', '212.121.137.95', 2147483647, 2147483647, 'DE', 'Germany'), +('212.121.137.96', '212.121.137.99', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.121.137.100', '212.121.143.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.121.144.0', '212.121.144.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.121.144.16', '212.121.144.71', 2147483647, 2147483647, 'DE', 'Germany'), +('212.121.144.72', '212.121.144.91', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.121.144.92', '212.121.144.95', 2147483647, 2147483647, 'DE', 'Germany'), +('212.121.144.96', '212.121.144.99', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.121.144.100', '212.121.144.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.121.145.0', '212.121.145.119', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.121.145.120', '212.121.145.127', 2147483647, 2147483647, 'DE', 'Germany'), +('212.121.145.128', '212.121.145.135', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.121.145.136', '212.121.145.159', 2147483647, 2147483647, 'DE', 'Germany'), +('212.121.145.160', '212.121.145.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.121.145.192', '212.121.145.199', 2147483647, 2147483647, 'DE', 'Germany'), +('212.121.145.200', '212.121.145.207', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.121.145.208', '212.121.145.223', 2147483647, 2147483647, 'DE', 'Germany'), +('212.121.145.224', '212.121.145.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.121.146.0', '212.121.147.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.121.148.0', '212.121.148.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.121.149.0', '212.121.149.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.121.150.0', '212.121.150.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.121.151.0', '212.121.154.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.121.155.0', '212.121.155.7', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.121.155.8', '212.121.155.23', 2147483647, 2147483647, 'DE', 'Germany'), +('212.121.155.24', '212.121.155.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.121.155.64', '212.121.155.127', 2147483647, 2147483647, 'DE', 'Germany'), +('212.121.155.128', '212.121.155.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.121.155.176', '212.121.155.191', 2147483647, 2147483647, 'DE', 'Germany'), +('212.121.155.192', '212.121.156.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.121.156.224', '212.121.156.231', 2147483647, 2147483647, 'DE', 'Germany'), +('212.121.156.232', '212.121.156.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.121.156.240', '212.121.158.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.121.159.0', '212.121.159.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.121.159.32', '212.121.159.63', 2147483647, 2147483647, 'DE', 'Germany'), +('212.121.159.64', '212.121.159.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.121.159.96', '212.121.159.103', 2147483647, 2147483647, 'DE', 'Germany'), +('212.121.159.104', '212.121.159.107', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.121.159.108', '212.121.159.111', 2147483647, 2147483647, 'DE', 'Germany'), +('212.121.159.112', '212.121.159.119', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.121.159.120', '212.121.159.127', 2147483647, 2147483647, 'DE', 'Germany'), +('212.121.159.128', '212.121.159.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.121.159.144', '212.121.159.151', 2147483647, 2147483647, 'DE', 'Germany'), +('212.121.159.152', '212.121.159.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.121.159.176', '212.121.159.191', 2147483647, 2147483647, 'DE', 'Germany'), +('212.121.159.192', '212.121.159.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.121.159.224', '212.121.159.239', 2147483647, 2147483647, 'DE', 'Germany'), +('212.121.159.240', '212.121.159.243', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.121.159.244', '212.121.159.247', 2147483647, 2147483647, 'DE', 'Germany'), +('212.121.159.248', '212.121.159.251', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.121.159.252', '212.121.159.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.121.160.0', '212.121.191.255', 2147483647, 2147483647, 'FR', 'France'), +('212.121.192.0', '212.121.223.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.121.224.0', '212.121.255.255', 2147483647, 2147483647, 'ES', 'Spain'), +('212.122.0.0', '212.122.31.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.122.32.0', '212.122.63.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.122.64.0', '212.122.95.255', 2147483647, 2147483647, 'LT', 'Lithuania'), +('212.122.96.0', '212.122.127.255', 2147483647, 2147483647, 'ES', 'Spain'), +('212.122.128.0', '212.122.159.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.122.160.0', '212.122.191.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('212.122.192.0', '212.122.223.255', 2147483647, 2147483647, 'PL', 'Poland'), +('212.122.224.0', '212.122.255.255', 2147483647, 2147483647, 'EG', 'Egypt'), +('212.123.0.0', '212.123.31.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.123.32.0', '212.123.63.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.123.64.0', '212.123.95.255', 2147483647, 2147483647, 'IT', 'Italy'), +('212.123.96.0', '212.123.125.143', 2147483647, 2147483647, 'DE', 'Germany'), +('212.123.125.144', '212.123.125.151', 2147483647, 2147483647, 'AE', 'United Arab Emirates'), +('212.123.125.152', '212.123.127.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.123.128.0', '212.123.195.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.123.196.0', '212.123.196.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.123.196.16', '212.123.196.23', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.123.196.24', '212.123.196.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.123.196.32', '212.123.196.39', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.123.196.40', '212.123.196.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.123.196.48', '212.123.196.55', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.123.196.56', '212.123.196.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.123.196.80', '212.123.196.95', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.123.196.96', '212.123.197.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.123.197.16', '212.123.197.31', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.123.197.32', '212.123.197.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.123.197.80', '212.123.197.111', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.123.197.112', '212.123.197.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.123.197.224', '212.123.197.239', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.123.197.240', '212.123.198.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.123.198.48', '212.123.198.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.123.198.64', '212.123.198.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.123.198.112', '212.123.198.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.123.198.128', '212.123.198.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.123.198.144', '212.123.198.159', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.123.198.160', '212.123.198.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.123.199.0', '212.123.199.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.123.199.64', '212.123.199.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.123.200.0', '212.123.200.19', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.123.200.20', '212.123.200.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.123.200.64', '212.123.200.71', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.123.200.72', '212.123.200.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.123.200.80', '212.123.200.159', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.123.200.160', '212.123.200.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.123.200.176', '212.123.200.199', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.123.200.200', '212.123.200.207', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.123.200.208', '212.123.201.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.123.201.64', '212.123.201.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.123.201.80', '212.123.201.103', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.123.201.104', '212.123.201.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.123.201.160', '212.123.201.191', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.123.201.192', '212.123.201.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.123.201.224', '212.123.203.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.123.204.0', '212.123.204.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.123.204.64', '212.123.204.95', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.123.204.96', '212.123.204.103', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.123.204.104', '212.123.204.111', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.123.204.112', '212.123.204.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.123.204.144', '212.123.204.151', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.123.204.152', '212.123.204.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.123.204.224', '212.123.207.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.123.208.0', '212.123.208.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.123.209.0', '212.123.209.11', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.123.209.12', '212.123.209.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.123.209.16', '212.123.209.31', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.123.209.32', '212.123.209.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.123.209.80', '212.123.209.95', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.123.209.96', '212.123.209.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.123.209.112', '212.123.209.119', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.123.209.120', '212.123.209.135', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.123.209.136', '212.123.209.143', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.123.209.144', '212.123.209.151', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.123.209.152', '212.123.209.175', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.123.209.176', '212.123.209.183', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.123.209.184', '212.123.209.191', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.123.209.192', '212.123.209.207', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.123.209.208', '212.123.209.215', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.123.209.216', '212.123.209.231', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.123.209.232', '212.123.209.239', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.123.209.240', '212.123.210.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.123.211.0', '212.123.211.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.123.212.0', '212.123.212.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.123.212.16', '212.123.212.31', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.123.212.32', '212.123.212.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.123.212.96', '212.123.212.143', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.123.212.144', '212.123.212.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.123.212.224', '212.123.212.239', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.123.212.240', '212.123.213.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.123.213.96', '212.123.213.111', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.123.213.112', '212.123.213.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.123.213.192', '212.123.213.207', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.123.213.208', '212.123.214.23', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.123.214.24', '212.123.214.42', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.123.214.43', '212.123.214.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.123.214.48', '212.123.214.79', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.123.214.80', '212.123.214.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.123.214.128', '212.123.214.191', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.123.214.192', '212.123.214.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.123.214.224', '212.123.214.239', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.123.214.240', '212.123.215.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.123.215.16', '212.123.215.39', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.123.215.40', '212.123.215.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.123.215.80', '212.123.215.143', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.123.215.144', '212.123.215.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.123.215.160', '212.123.215.207', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.123.215.208', '212.123.215.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.123.215.224', '212.123.215.239', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.123.215.240', '212.123.215.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.123.216.0', '212.123.216.15', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.123.216.16', '212.123.216.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.123.217.0', '212.123.217.7', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.123.217.8', '212.123.217.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.123.217.16', '212.123.217.23', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.123.217.24', '212.123.217.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.123.217.32', '212.123.217.95', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.123.217.96', '212.123.217.103', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.123.217.104', '212.123.217.143', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.123.217.144', '212.123.217.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.123.217.160', '212.123.217.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.123.218.0', '212.123.218.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.123.218.128', '212.123.218.223', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.123.218.224', '212.123.219.135', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.123.219.136', '212.123.219.143', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.123.219.144', '212.123.219.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.123.219.160', '212.123.219.167', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.123.219.168', '212.123.219.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.123.220.0', '212.123.224.143', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.123.224.144', '212.123.224.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.123.224.160', '212.123.225.7', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.123.225.8', '212.123.225.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.123.225.16', '212.123.225.47', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.123.225.48', '212.123.225.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.123.225.64', '212.123.225.143', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.123.225.144', '212.123.225.159', 2147483647, 2147483647, 'DE', 'Germany'), +('212.123.225.160', '212.123.225.183', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.123.225.184', '212.123.225.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.123.225.192', '212.123.225.207', 2147483647, 2147483647, 'DE', 'Germany'), +('212.123.225.208', '212.123.226.15', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.123.226.16', '212.123.226.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.123.226.32', '212.123.226.47', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.123.226.48', '212.123.226.87', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.123.226.88', '212.123.226.95', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.123.226.96', '212.123.226.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.123.226.224', '212.123.226.239', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.123.226.240', '212.123.226.247', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.123.226.248', '212.123.227.47', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.123.227.48', '212.123.227.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.123.227.64', '212.123.227.159', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.123.227.160', '212.123.227.191', 2147483647, 2147483647, 'FR', 'France'), +('212.123.227.192', '212.123.227.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.123.228.0', '212.123.228.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.123.228.64', '212.123.228.79', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.123.228.80', '212.123.228.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.123.228.112', '212.123.228.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.123.228.128', '212.123.228.207', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.123.228.208', '212.123.228.223', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.123.228.224', '212.123.228.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.123.229.0', '212.123.229.31', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.123.229.32', '212.123.229.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.123.229.64', '212.123.229.167', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.123.229.168', '212.123.229.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.123.229.176', '212.123.230.31', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.123.230.32', '212.123.230.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.123.230.48', '212.123.230.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.123.230.64', '212.123.230.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.123.230.96', '212.123.230.127', 2147483647, 2147483647, 'DE', 'Germany'), +('212.123.230.128', '212.123.231.31', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.123.231.32', '212.123.232.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.123.232.128', '212.123.232.159', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.123.232.160', '212.123.232.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.123.232.192', '212.123.232.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.123.233.0', '212.123.233.31', 2147483647, 2147483647, 'FR', 'France'), +('212.123.233.32', '212.123.233.159', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.123.233.160', '212.123.233.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.123.233.176', '212.123.233.211', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.123.233.212', '212.123.233.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.123.233.224', '212.123.233.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.123.234.0', '212.123.234.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.123.234.80', '212.123.234.95', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.123.234.96', '212.123.234.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.123.234.128', '212.123.234.159', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.123.234.160', '212.123.235.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.123.235.48', '212.123.235.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.123.235.64', '212.123.241.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.123.241.16', '212.123.241.31', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.123.241.32', '212.123.241.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.123.241.48', '212.123.241.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.123.241.64', '212.123.241.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.123.241.192', '212.123.241.223', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.123.241.224', '212.123.242.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.123.242.64', '212.123.242.79', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.123.242.80', '212.123.245.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.123.246.0', '212.123.246.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.123.246.64', '212.123.247.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.123.248.0', '212.123.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.124.0.0', '212.124.31.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.124.32.0', '212.124.63.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.124.64.0', '212.124.95.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('212.124.96.0', '212.124.99.255', 2147483647, 2147483647, 'ES', 'Spain'), +('212.124.100.0', '212.124.104.127', 2147483647, 2147483647, 'US', 'United States'), +('212.124.104.128', '212.124.104.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.124.105.0', '212.124.110.255', 2147483647, 2147483647, 'US', 'United States'), +('212.124.111.0', '212.124.127.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.124.128.0', '212.124.159.255', 2147483647, 2147483647, 'AT', 'Austria'), +('212.124.160.0', '212.124.191.255', 2147483647, 2147483647, 'RS', 'Serbia'), +('212.124.192.0', '212.124.198.231', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.124.198.232', '212.124.198.239', 2147483647, 2147483647, 'FR', 'France'), +('212.124.198.240', '212.124.202.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.124.202.96', '212.124.202.103', 2147483647, 2147483647, 'IE', 'Ireland'), +('212.124.202.104', '212.124.203.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.124.203.96', '212.124.203.127', 2147483647, 2147483647, 'IE', 'Ireland'), +('212.124.203.128', '212.124.224.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.124.224.48', '212.124.224.51', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.124.224.52', '212.124.225.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.124.226.0', '212.124.226.19', 2147483647, 2147483647, 'AT', 'Austria'), +('212.124.226.20', '212.124.226.27', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.124.226.28', '212.124.226.31', 2147483647, 2147483647, 'AT', 'Austria'), +('212.124.226.32', '212.124.226.43', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.124.226.44', '212.124.226.47', 2147483647, 2147483647, 'AT', 'Austria'), +('212.124.226.48', '212.124.226.63', 2147483647, 2147483647, 'DE', 'Germany'), +('212.124.226.64', '212.124.226.71', 2147483647, 2147483647, 'AT', 'Austria'), +('212.124.226.72', '212.124.226.79', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.124.226.80', '212.124.226.99', 2147483647, 2147483647, 'AT', 'Austria'), +('212.124.226.100', '212.124.226.119', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.124.226.120', '212.124.226.127', 2147483647, 2147483647, 'AT', 'Austria'), +('212.124.226.128', '212.124.226.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.124.226.192', '212.124.226.199', 2147483647, 2147483647, 'AT', 'Austria'), +('212.124.226.200', '212.124.226.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.124.227.0', '212.124.227.15', 2147483647, 2147483647, 'AT', 'Austria'), +('212.124.227.16', '212.124.227.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.124.227.48', '212.124.227.63', 2147483647, 2147483647, 'DE', 'Germany'), +('212.124.227.64', '212.124.234.0', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.124.234.1', '212.124.235.127', 2147483647, 2147483647, 'AT', 'Austria'), +('212.124.235.128', '212.124.236.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.124.236.16', '212.124.236.31', 2147483647, 2147483647, 'GR', 'Greece'), +('212.124.236.32', '212.124.236.47', 2147483647, 2147483647, 'AT', 'Austria'), +('212.124.236.48', '212.124.236.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.124.236.64', '212.124.236.79', 2147483647, 2147483647, 'AT', 'Austria'), +('212.124.236.80', '212.124.236.95', 2147483647, 2147483647, 'US', 'United States'), +('212.124.236.96', '212.124.236.159', 2147483647, 2147483647, 'AT', 'Austria'), +('212.124.236.160', '212.124.236.167', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.124.236.168', '212.124.236.183', 2147483647, 2147483647, 'AT', 'Austria'), +('212.124.236.184', '212.124.236.231', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.124.236.232', '212.124.236.235', 2147483647, 2147483647, 'AT', 'Austria'), +('212.124.236.236', '212.124.236.239', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.124.236.240', '212.124.236.255', 2147483647, 2147483647, 'AT', 'Austria'), +('212.124.237.0', '212.124.237.39', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.124.237.40', '212.124.237.43', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.124.237.44', '212.124.237.47', 2147483647, 2147483647, 'US', 'United States'), +('212.124.237.48', '212.124.237.51', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.124.237.52', '212.124.237.63', 2147483647, 2147483647, 'AT', 'Austria'), +('212.124.237.64', '212.124.237.71', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.124.237.72', '212.124.237.79', 2147483647, 2147483647, 'AT', 'Austria'), +('212.124.237.80', '212.124.237.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.124.237.96', '212.124.237.111', 2147483647, 2147483647, 'AT', 'Austria'), +('212.124.237.112', '212.124.237.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.124.237.160', '212.124.237.191', 2147483647, 2147483647, 'AT', 'Austria'), +('212.124.237.192', '212.124.237.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.124.238.0', '212.124.238.71', 2147483647, 2147483647, 'AT', 'Austria'), +('212.124.238.72', '212.124.238.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.124.238.80', '212.124.238.255', 2147483647, 2147483647, 'AT', 'Austria'), +('212.124.239.0', '212.124.239.7', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.124.239.8', '212.124.239.15', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.124.239.16', '212.124.239.19', 2147483647, 2147483647, 'AT', 'Austria'), +('212.124.239.20', '212.124.239.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.124.239.32', '212.124.239.59', 2147483647, 2147483647, 'AT', 'Austria'), +('212.124.239.60', '212.124.239.71', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.124.239.72', '212.124.239.79', 2147483647, 2147483647, 'AT', 'Austria'), +('212.124.239.80', '212.124.239.87', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.124.239.88', '212.124.239.91', 2147483647, 2147483647, 'AT', 'Austria'), +('212.124.239.92', '212.124.239.107', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.124.239.108', '212.124.239.111', 2147483647, 2147483647, 'AT', 'Austria'), +('212.124.239.112', '212.124.239.119', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.124.239.120', '212.124.239.151', 2147483647, 2147483647, 'AT', 'Austria'), +('212.124.239.152', '212.124.239.155', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.124.239.156', '212.124.239.159', 2147483647, 2147483647, 'AT', 'Austria'), +('212.124.239.160', '212.124.239.167', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.124.239.168', '212.124.239.191', 2147483647, 2147483647, 'AT', 'Austria'), +('212.124.239.192', '212.124.239.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.124.239.224', '212.124.239.231', 2147483647, 2147483647, 'AT', 'Austria'), +('212.124.239.232', '212.124.239.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.124.239.240', '212.124.239.255', 2147483647, 2147483647, 'AT', 'Austria'), +('212.124.240.0', '212.124.240.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.124.240.160', '212.124.240.163', 2147483647, 2147483647, 'ES', 'Spain'), +('212.124.240.164', '212.124.240.167', 2147483647, 2147483647, 'AT', 'Austria'), +('212.124.240.168', '212.124.240.171', 2147483647, 2147483647, 'IT', 'Italy'), +('212.124.240.172', '212.124.240.175', 2147483647, 2147483647, 'AT', 'Austria'), +('212.124.240.176', '212.124.240.195', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.124.240.196', '212.124.240.207', 2147483647, 2147483647, 'AT', 'Austria'), +('212.124.240.208', '212.124.240.215', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.124.240.216', '212.124.240.223', 2147483647, 2147483647, 'AT', 'Austria'), +('212.124.240.224', '212.124.240.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.124.241.0', '212.124.241.15', 2147483647, 2147483647, 'AT', 'Austria'), +('212.124.241.16', '212.124.241.35', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.124.241.36', '212.124.241.63', 2147483647, 2147483647, 'AT', 'Austria'), +('212.124.241.64', '212.124.241.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.124.241.160', '212.124.241.191', 2147483647, 2147483647, 'AT', 'Austria'), +('212.124.241.192', '212.124.241.195', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.124.241.196', '212.124.241.227', 2147483647, 2147483647, 'AT', 'Austria'), +('212.124.241.228', '212.124.241.231', 2147483647, 2147483647, 'US', 'United States'), +('212.124.241.232', '212.124.241.239', 2147483647, 2147483647, 'AT', 'Austria'), +('212.124.241.240', '212.124.241.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.124.242.0', '212.124.242.255', 2147483647, 2147483647, 'AT', 'Austria'), +('212.124.243.0', '212.124.243.23', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.124.243.24', '212.124.243.31', 2147483647, 2147483647, 'AT', 'Austria'), +('212.124.243.32', '212.124.243.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.124.244.0', '212.124.244.79', 2147483647, 2147483647, 'AT', 'Austria'), +('212.124.244.80', '212.124.244.87', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.124.244.88', '212.124.244.95', 2147483647, 2147483647, 'AT', 'Austria'), +('212.124.244.96', '212.124.244.96', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.124.244.97', '212.124.244.127', 2147483647, 2147483647, 'AT', 'Austria'), +('212.124.244.128', '212.124.244.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.124.244.192', '212.124.244.223', 2147483647, 2147483647, 'AT', 'Austria'), +('212.124.244.224', '212.124.244.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.124.245.0', '212.124.245.31', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.124.245.32', '212.124.245.32', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.124.245.33', '212.124.245.63', 2147483647, 2147483647, 'AT', 'Austria'), +('212.124.245.64', '212.124.245.99', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.124.245.100', '212.124.245.115', 2147483647, 2147483647, 'AT', 'Austria'), +('212.124.245.116', '212.124.245.119', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.124.245.120', '212.124.245.127', 2147483647, 2147483647, 'AT', 'Austria'), +('212.124.245.128', '212.124.245.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.124.245.144', '212.124.245.151', 2147483647, 2147483647, 'AT', 'Austria'), +('212.124.245.152', '212.124.245.215', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.124.245.216', '212.124.245.219', 2147483647, 2147483647, 'AT', 'Austria'), +('212.124.245.220', '212.124.245.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.124.245.224', '212.124.245.251', 2147483647, 2147483647, 'AT', 'Austria'), +('212.124.245.252', '212.124.246.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.124.246.32', '212.124.246.63', 2147483647, 2147483647, 'AT', 'Austria'), +('212.124.246.64', '212.124.246.151', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.124.246.152', '212.124.246.159', 2147483647, 2147483647, 'AT', 'Austria'), +('212.124.246.160', '212.124.246.167', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('212.124.246.168', '212.124.246.175', 2147483647, 2147483647, 'AT', 'Austria'), +('212.124.246.176', '212.124.246.191', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.124.246.192', '212.124.246.211', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.124.246.212', '212.124.246.219', 2147483647, 2147483647, 'AT', 'Austria'), +('212.124.246.220', '212.124.246.223', 2147483647, 2147483647, 'FR', 'France'), +('212.124.246.224', '212.124.246.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.124.246.240', '212.124.246.247', 2147483647, 2147483647, 'AT', 'Austria'), +('212.124.246.248', '212.124.246.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.124.247.0', '212.124.247.7', 2147483647, 2147483647, 'AT', 'Austria'), +('212.124.247.8', '212.124.247.11', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.124.247.12', '212.124.247.31', 2147483647, 2147483647, 'AT', 'Austria'), +('212.124.247.32', '212.124.247.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.124.247.48', '212.124.247.63', 2147483647, 2147483647, 'AT', 'Austria'), +('212.124.247.64', '212.124.247.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.124.247.80', '212.124.247.91', 2147483647, 2147483647, 'AT', 'Austria'), +('212.124.247.92', '212.124.247.135', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.124.247.136', '212.124.247.151', 2147483647, 2147483647, 'AT', 'Austria'), +('212.124.247.152', '212.124.247.167', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.124.247.168', '212.124.247.175', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.124.247.176', '212.124.247.191', 2147483647, 2147483647, 'AT', 'Austria'), +('212.124.247.192', '212.124.247.207', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.124.247.208', '212.124.247.223', 2147483647, 2147483647, 'AT', 'Austria'), +('212.124.247.224', '212.124.248.11', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.124.248.12', '212.124.248.15', 2147483647, 2147483647, 'AT', 'Austria'), +('212.124.248.16', '212.124.248.160', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.124.248.161', '212.124.248.191', 2147483647, 2147483647, 'AT', 'Austria'), +('212.124.248.192', '212.124.249.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.124.249.128', '212.124.249.135', 2147483647, 2147483647, 'DE', 'Germany'), +('212.124.249.136', '212.124.249.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.124.249.192', '212.124.249.195', 2147483647, 2147483647, 'AT', 'Austria'), +('212.124.249.196', '212.124.249.211', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.124.249.212', '212.124.249.223', 2147483647, 2147483647, 'AT', 'Austria'), +('212.124.249.224', '212.124.249.231', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.124.249.232', '212.124.250.127', 2147483647, 2147483647, 'AT', 'Austria'), +('212.124.250.128', '212.124.251.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.124.251.32', '212.124.251.47', 2147483647, 2147483647, 'AT', 'Austria'), +('212.124.251.48', '212.124.251.103', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.124.251.104', '212.124.251.111', 2147483647, 2147483647, 'FR', 'France'), +('212.124.251.112', '212.124.251.123', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.124.251.124', '212.124.251.127', 2147483647, 2147483647, 'AT', 'Austria'), +('212.124.251.128', '212.124.251.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.124.252.0', '212.124.252.31', 2147483647, 2147483647, 'AT', 'Austria'), +('212.124.252.32', '212.124.252.103', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.124.252.104', '212.124.252.111', 2147483647, 2147483647, 'IT', 'Italy'), +('212.124.252.112', '212.124.252.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.124.252.160', '212.124.252.191', 2147483647, 2147483647, 'AT', 'Austria'), +('212.124.252.192', '212.124.252.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.124.252.224', '212.124.252.239', 2147483647, 2147483647, 'AT', 'Austria'), +('212.124.252.240', '212.124.252.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.124.253.0', '212.124.253.55', 2147483647, 2147483647, 'AT', 'Austria'), +('212.124.253.56', '212.124.253.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.124.254.0', '212.124.254.31', 2147483647, 2147483647, 'AT', 'Austria'), +('212.124.254.32', '212.124.254.39', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.124.254.40', '212.124.255.255', 2147483647, 2147483647, 'AT', 'Austria'), +('212.125.0.0', '212.125.31.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('212.125.32.0', '212.125.42.63', 2147483647, 2147483647, 'DE', 'Germany'), +('212.125.42.64', '212.125.42.87', 2147483647, 2147483647, 'AT', 'Austria'), +('212.125.42.88', '212.125.42.95', 2147483647, 2147483647, 'LI', 'Liechtenstein'), +('212.125.42.96', '212.125.63.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.125.64.0', '212.125.95.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.125.96.0', '212.125.127.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.125.128.0', '212.125.159.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.125.160.0', '212.125.177.143', 2147483647, 2147483647, 'NO', 'Norway'), +('212.125.177.144', '212.125.177.147', 2147483647, 2147483647, 'SE', 'Sweden'), +('212.125.177.148', '212.125.255.255', 2147483647, 2147483647, 'NO', 'Norway'), +('212.126.0.0', '212.126.31.255', 2147483647, 2147483647, 'PL', 'Poland'), +('212.126.32.0', '212.126.63.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.126.64.0', '212.126.69.255', 2147483647, 2147483647, 'AT', 'Austria'), +('212.126.70.0', '212.126.70.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('212.126.71.0', '212.126.95.255', 2147483647, 2147483647, 'AT', 'Austria'), +('212.126.96.0', '212.126.159.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.126.160.0', '212.126.191.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.126.192.0', '212.126.223.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.126.224.0', '212.126.255.255', 2147483647, 2147483647, 'IS', 'Iceland'), +('212.127.0.0', '212.127.0.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.127.0.192', '212.127.0.223', 2147483647, 2147483647, 'PS', 'Palestinian Territory, Occupied'), +('212.127.0.224', '212.127.2.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.127.2.16', '212.127.2.23', 2147483647, 2147483647, 'NO', 'Norway'), +('212.127.2.24', '212.127.15.55', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.127.15.56', '212.127.15.63', 2147483647, 2147483647, 'IE', 'Ireland'), +('212.127.15.64', '212.127.26.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.127.26.128', '212.127.26.131', 2147483647, 2147483647, 'US', 'United States'), +('212.127.26.132', '212.127.31.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.127.32.0', '212.127.63.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.127.64.0', '212.127.95.255', 2147483647, 2147483647, 'PL', 'Poland'), +('212.127.96.0', '212.127.127.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('212.127.128.0', '212.127.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.128.0.0', '212.128.255.255', 2147483647, 2147483647, 'ES', 'Spain'), +('212.129.0.0', '212.129.63.255', 2147483647, 2147483647, 'FR', 'France'), +('212.129.64.0', '212.129.95.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('212.129.96.0', '212.129.127.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.129.128.0', '212.129.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.130.0.0', '212.130.255.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('212.131.0.0', '212.131.255.255', 2147483647, 2147483647, 'IT', 'Italy'), +('212.132.0.0', '212.132.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.133.0.0', '212.133.0.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('212.133.1.0', '212.133.3.127', 2147483647, 2147483647, 'FR', 'France'), +('212.133.3.128', '212.133.5.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.133.6.0', '212.133.6.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('212.133.7.0', '212.133.8.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.133.9.0', '212.133.9.255', 2147483647, 2147483647, 'ES', 'Spain'), +('212.133.10.0', '212.133.10.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.133.11.0', '212.133.13.127', 2147483647, 2147483647, 'DE', 'Germany'), +('212.133.13.128', '212.133.14.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.133.14.128', '212.133.14.159', 2147483647, 2147483647, 'DE', 'Germany'), +('212.133.14.160', '212.133.15.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.133.16.0', '212.133.16.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.133.17.0', '212.133.19.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.133.20.0', '212.133.20.15', 2147483647, 2147483647, 'FR', 'France'), +('212.133.20.16', '212.133.20.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.133.21.0', '212.133.21.255', 2147483647, 2147483647, 'IT', 'Italy'), +('212.133.22.0', '212.133.22.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.133.22.128', '212.133.22.191', 2147483647, 2147483647, 'IT', 'Italy'), +('212.133.22.192', '212.133.22.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.133.23.0', '212.133.23.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.133.24.0', '212.133.24.71', 2147483647, 2147483647, 'GB', 'United Kingdom'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('212.133.24.72', '212.133.24.79', 2147483647, 2147483647, 'IE', 'Ireland'), +('212.133.24.80', '212.133.24.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.133.24.96', '212.133.24.103', 2147483647, 2147483647, 'DE', 'Germany'), +('212.133.24.104', '212.133.24.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.133.24.112', '212.133.24.127', 2147483647, 2147483647, 'FR', 'France'), +('212.133.24.128', '212.133.24.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.133.25.0', '212.133.25.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.133.25.128', '212.133.25.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.133.25.160', '212.133.25.175', 2147483647, 2147483647, 'FR', 'France'), +('212.133.25.176', '212.133.25.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.133.25.192', '212.133.25.255', 2147483647, 2147483647, 'IT', 'Italy'), +('212.133.26.0', '212.133.26.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.133.27.0', '212.133.27.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.133.28.0', '212.133.29.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.133.29.80', '212.133.29.87', 2147483647, 2147483647, 'DE', 'Germany'), +('212.133.29.88', '212.133.29.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.133.29.176', '212.133.29.183', 2147483647, 2147483647, 'FR', 'France'), +('212.133.29.184', '212.133.29.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.133.30.0', '212.133.30.15', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.133.30.16', '212.133.30.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.133.30.224', '212.133.31.39', 2147483647, 2147483647, 'DE', 'Germany'), +('212.133.31.40', '212.133.31.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.133.31.48', '212.133.31.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.133.31.64', '212.133.31.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.133.31.128', '212.133.31.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.133.32.0', '212.133.32.255', 2147483647, 2147483647, 'IS', 'Iceland'), +('212.133.33.0', '212.133.33.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.133.33.16', '212.133.33.23', 2147483647, 2147483647, 'IT', 'Italy'), +('212.133.33.24', '212.133.33.31', 2147483647, 2147483647, 'DE', 'Germany'), +('212.133.33.32', '212.133.33.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.133.33.64', '212.133.33.127', 2147483647, 2147483647, 'FR', 'France'), +('212.133.33.128', '212.133.33.143', 2147483647, 2147483647, 'SE', 'Sweden'), +('212.133.33.144', '212.133.33.159', 2147483647, 2147483647, 'DE', 'Germany'), +('212.133.33.160', '212.133.33.175', 2147483647, 2147483647, 'SE', 'Sweden'), +('212.133.33.176', '212.133.33.191', 2147483647, 2147483647, 'DK', 'Denmark'), +('212.133.33.192', '212.133.33.207', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.133.33.208', '212.133.33.215', 2147483647, 2147483647, 'CA', 'Canada'), +('212.133.33.216', '212.133.35.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.133.36.0', '212.133.40.127', 2147483647, 2147483647, 'FR', 'France'), +('212.133.40.128', '212.133.40.191', 2147483647, 2147483647, 'DE', 'Germany'), +('212.133.40.192', '212.133.40.255', 2147483647, 2147483647, 'US', 'United States'), +('212.133.41.0', '212.133.41.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.133.42.0', '212.133.42.255', 2147483647, 2147483647, 'IT', 'Italy'), +('212.133.43.0', '212.133.43.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.133.43.16', '212.133.43.31', 2147483647, 2147483647, 'IE', 'Ireland'), +('212.133.43.32', '212.133.43.63', 2147483647, 2147483647, 'DE', 'Germany'), +('212.133.43.64', '212.133.43.71', 2147483647, 2147483647, 'IE', 'Ireland'), +('212.133.43.72', '212.133.43.79', 2147483647, 2147483647, 'US', 'United States'), +('212.133.43.80', '212.133.43.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.133.43.112', '212.133.43.119', 2147483647, 2147483647, 'IT', 'Italy'), +('212.133.43.120', '212.133.43.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.133.43.128', '212.133.43.191', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('212.133.43.192', '212.133.43.199', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.133.43.200', '212.133.43.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.133.44.0', '212.133.44.255', 2147483647, 2147483647, 'US', 'United States'), +('212.133.45.0', '212.133.46.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.133.46.16', '212.133.46.31', 2147483647, 2147483647, 'DE', 'Germany'), +('212.133.46.32', '212.133.46.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.133.46.48', '212.133.46.55', 2147483647, 2147483647, 'IE', 'Ireland'), +('212.133.46.56', '212.133.46.63', 2147483647, 2147483647, 'DE', 'Germany'), +('212.133.46.64', '212.133.46.71', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('212.133.46.72', '212.133.46.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.133.46.96', '212.133.46.111', 2147483647, 2147483647, 'US', 'United States'), +('212.133.46.112', '212.133.46.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.133.47.0', '212.133.47.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.133.48.0', '212.133.48.63', 2147483647, 2147483647, 'FR', 'France'), +('212.133.48.64', '212.133.48.111', 2147483647, 2147483647, 'US', 'United States'), +('212.133.48.112', '212.133.48.151', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.133.48.152', '212.133.48.159', 2147483647, 2147483647, 'ZA', 'South Africa'), +('212.133.48.160', '212.133.53.167', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.133.53.168', '212.133.53.175', 2147483647, 2147483647, 'FR', 'France'), +('212.133.53.176', '212.133.56.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.133.56.64', '212.133.56.127', 2147483647, 2147483647, 'DE', 'Germany'), +('212.133.56.128', '212.133.56.151', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.133.56.152', '212.133.56.159', 2147483647, 2147483647, 'IE', 'Ireland'), +('212.133.56.160', '212.133.56.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.133.56.176', '212.133.56.183', 2147483647, 2147483647, 'DE', 'Germany'), +('212.133.56.184', '212.133.56.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.133.56.192', '212.133.56.207', 2147483647, 2147483647, 'FR', 'France'), +('212.133.56.208', '212.133.58.167', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.133.58.168', '212.133.58.175', 2147483647, 2147483647, 'FR', 'France'), +('212.133.58.176', '212.133.58.191', 2147483647, 2147483647, 'FI', 'Finland'), +('212.133.58.192', '212.133.59.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.133.59.48', '212.133.59.63', 2147483647, 2147483647, 'DE', 'Germany'), +('212.133.59.64', '212.133.59.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.133.59.128', '212.133.59.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.133.60.0', '212.133.60.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.133.60.240', '212.133.60.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('212.133.61.0', '212.133.62.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.133.63.0', '212.133.63.31', 2147483647, 2147483647, 'IT', 'Italy'), +('212.133.63.32', '212.133.63.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.133.64.0', '212.133.67.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.133.68.0', '212.133.69.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.133.70.0', '212.133.71.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.133.72.0', '212.133.95.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.133.96.0', '212.133.99.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.133.100.0', '212.133.101.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.133.102.0', '212.133.103.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.133.104.0', '212.133.104.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.133.104.64', '212.133.104.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.133.105.0', '212.133.109.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.133.109.128', '212.133.109.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.133.110.0', '212.133.110.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('212.133.111.0', '212.133.127.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.133.128.0', '212.133.255.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('212.134.0.0', '212.134.104.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.134.105.0', '212.134.105.255', 2147483647, 2147483647, 'CA', 'Canada'), +('212.134.106.0', '212.135.95.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.135.95.16', '212.135.95.31', 2147483647, 2147483647, 'DE', 'Germany'), +('212.135.95.32', '212.135.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.136.0.0', '212.136.20.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.136.21.0', '212.136.21.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.136.22.0', '212.136.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.137.0.0', '212.137.16.87', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.137.16.88', '212.137.16.95', 2147483647, 2147483647, 'EU', 'Europe'), +('212.137.16.96', '212.137.16.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.137.16.144', '212.137.16.151', 2147483647, 2147483647, 'EU', 'Europe'), +('212.137.16.152', '212.137.16.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.137.16.160', '212.137.16.167', 2147483647, 2147483647, 'EU', 'Europe'), +('212.137.16.168', '212.137.16.215', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.137.16.216', '212.137.16.223', 2147483647, 2147483647, 'EU', 'Europe'), +('212.137.16.224', '212.137.18.7', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.137.18.8', '212.137.18.23', 2147483647, 2147483647, 'EU', 'Europe'), +('212.137.18.24', '212.137.18.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.137.18.48', '212.137.18.55', 2147483647, 2147483647, 'EU', 'Europe'), +('212.137.18.56', '212.137.18.151', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.137.18.152', '212.137.18.159', 2147483647, 2147483647, 'EU', 'Europe'), +('212.137.18.160', '212.137.18.167', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.137.18.168', '212.137.18.183', 2147483647, 2147483647, 'EU', 'Europe'), +('212.137.18.184', '212.137.18.199', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.137.18.200', '212.137.18.207', 2147483647, 2147483647, 'EU', 'Europe'), +('212.137.18.208', '212.137.18.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.137.18.240', '212.137.18.247', 2147483647, 2147483647, 'EU', 'Europe'), +('212.137.18.248', '212.137.19.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.137.19.96', '212.137.19.159', 2147483647, 2147483647, 'EU', 'Europe'), +('212.137.19.160', '212.137.19.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.137.19.192', '212.137.19.255', 2147483647, 2147483647, 'EU', 'Europe'), +('212.137.20.0', '212.137.21.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.137.21.192', '212.137.21.199', 2147483647, 2147483647, 'EU', 'Europe'), +('212.137.21.200', '212.137.21.215', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.137.21.216', '212.137.21.223', 2147483647, 2147483647, 'EU', 'Europe'), +('212.137.21.224', '212.137.21.231', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.137.21.232', '212.137.21.239', 2147483647, 2147483647, 'EU', 'Europe'), +('212.137.21.240', '212.137.21.247', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.137.21.248', '212.137.22.127', 2147483647, 2147483647, 'EU', 'Europe'), +('212.137.22.128', '212.137.23.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.137.24.0', '212.137.24.127', 2147483647, 2147483647, 'EU', 'Europe'), +('212.137.24.128', '212.137.24.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.137.24.144', '212.137.24.255', 2147483647, 2147483647, 'EU', 'Europe'), +('212.137.25.0', '212.137.27.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.137.27.128', '212.137.27.143', 2147483647, 2147483647, 'EU', 'Europe'), +('212.137.27.144', '212.137.27.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.137.27.224', '212.137.27.239', 2147483647, 2147483647, 'EU', 'Europe'), +('212.137.27.240', '212.137.28.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.137.28.192', '212.137.28.255', 2147483647, 2147483647, 'EU', 'Europe'), +('212.137.29.0', '212.137.29.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.137.29.48', '212.137.29.55', 2147483647, 2147483647, 'EU', 'Europe'), +('212.137.29.56', '212.137.29.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.137.29.80', '212.137.29.87', 2147483647, 2147483647, 'EU', 'Europe'), +('212.137.29.88', '212.137.29.183', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.137.29.184', '212.137.29.191', 2147483647, 2147483647, 'EU', 'Europe'), +('212.137.29.192', '212.137.29.199', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.137.29.200', '212.137.29.207', 2147483647, 2147483647, 'EU', 'Europe'), +('212.137.29.208', '212.137.29.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.137.29.224', '212.137.29.231', 2147483647, 2147483647, 'EU', 'Europe'), +('212.137.29.232', '212.137.30.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.137.30.16', '212.137.30.23', 2147483647, 2147483647, 'EU', 'Europe'), +('212.137.30.24', '212.137.30.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.137.30.32', '212.137.30.39', 2147483647, 2147483647, 'EU', 'Europe'), +('212.137.30.40', '212.137.30.55', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.137.30.56', '212.137.30.63', 2147483647, 2147483647, 'EU', 'Europe'), +('212.137.30.64', '212.137.30.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.137.30.96', '212.137.30.103', 2147483647, 2147483647, 'EU', 'Europe'), +('212.137.30.104', '212.137.30.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.137.30.160', '212.137.30.167', 2147483647, 2147483647, 'EU', 'Europe'), +('212.137.30.168', '212.137.30.183', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.137.30.184', '212.137.30.191', 2147483647, 2147483647, 'EU', 'Europe'), +('212.137.30.192', '212.137.30.215', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.137.30.216', '212.137.30.231', 2147483647, 2147483647, 'EU', 'Europe'), +('212.137.30.232', '212.137.30.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.137.31.0', '212.137.31.127', 2147483647, 2147483647, 'EU', 'Europe'), +('212.137.31.128', '212.137.49.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.137.49.16', '212.137.49.23', 2147483647, 2147483647, 'EU', 'Europe'), +('212.137.49.24', '212.137.49.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.137.49.32', '212.137.49.39', 2147483647, 2147483647, 'EU', 'Europe'), +('212.137.49.40', '212.137.49.55', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.137.49.56', '212.137.49.63', 2147483647, 2147483647, 'EU', 'Europe'), +('212.137.49.64', '212.137.49.87', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.137.49.88', '212.137.49.95', 2147483647, 2147483647, 'EU', 'Europe'), +('212.137.49.96', '212.137.49.167', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.137.49.168', '212.137.49.175', 2147483647, 2147483647, 'EU', 'Europe'), +('212.137.49.176', '212.137.49.199', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.137.49.200', '212.137.49.207', 2147483647, 2147483647, 'EU', 'Europe'), +('212.137.49.208', '212.137.49.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.137.49.240', '212.137.49.247', 2147483647, 2147483647, 'EU', 'Europe'), +('212.137.49.248', '212.137.50.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.137.51.0', '212.137.51.63', 2147483647, 2147483647, 'EU', 'Europe'), +('212.137.51.64', '212.137.51.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.137.52.0', '212.137.52.7', 2147483647, 2147483647, 'EU', 'Europe'), +('212.137.52.8', '212.137.52.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.137.52.64', '212.137.52.79', 2147483647, 2147483647, 'EU', 'Europe'), +('212.137.52.80', '212.137.52.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.137.52.96', '212.137.52.103', 2147483647, 2147483647, 'EU', 'Europe'), +('212.137.52.104', '212.137.52.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.137.52.112', '212.137.52.119', 2147483647, 2147483647, 'EU', 'Europe'), +('212.137.52.120', '212.137.52.151', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.137.52.152', '212.137.52.167', 2147483647, 2147483647, 'EU', 'Europe'), +('212.137.52.168', '212.137.52.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.137.52.192', '212.137.52.215', 2147483647, 2147483647, 'EU', 'Europe'), +('212.137.52.216', '212.137.52.247', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.137.52.248', '212.137.52.255', 2147483647, 2147483647, 'EU', 'Europe'), +('212.137.53.0', '212.137.53.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.137.54.0', '212.137.54.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('212.137.55.0', '212.137.55.255', 2147483647, 2147483647, 'EU', 'Europe'), +('212.137.56.0', '212.137.56.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.137.57.0', '212.137.57.255', 2147483647, 2147483647, 'EU', 'Europe'), +('212.137.58.0', '212.137.59.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.137.59.128', '212.137.59.159', 2147483647, 2147483647, 'EU', 'Europe'), +('212.137.59.160', '212.137.60.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.137.60.16', '212.137.60.31', 2147483647, 2147483647, 'EU', 'Europe'), +('212.137.60.32', '212.137.60.87', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.137.60.88', '212.137.60.95', 2147483647, 2147483647, 'EU', 'Europe'), +('212.137.60.96', '212.137.60.119', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.137.60.120', '212.137.60.135', 2147483647, 2147483647, 'EU', 'Europe'), +('212.137.60.136', '212.137.60.151', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.137.60.152', '212.137.60.159', 2147483647, 2147483647, 'EU', 'Europe'), +('212.137.60.160', '212.137.60.167', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.137.60.168', '212.137.60.175', 2147483647, 2147483647, 'EU', 'Europe'), +('212.137.60.176', '212.137.60.215', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.137.60.216', '212.137.60.223', 2147483647, 2147483647, 'EU', 'Europe'), +('212.137.60.224', '212.137.60.231', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.137.60.232', '212.137.60.247', 2147483647, 2147483647, 'EU', 'Europe'), +('212.137.60.248', '212.137.60.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.137.61.0', '212.137.61.43', 2147483647, 2147483647, 'EU', 'Europe'), +('212.137.61.44', '212.137.61.51', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.137.61.52', '212.137.61.255', 2147483647, 2147483647, 'EU', 'Europe'), +('212.137.62.0', '212.137.62.87', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.137.62.88', '212.137.62.95', 2147483647, 2147483647, 'EU', 'Europe'), +('212.137.62.96', '212.137.62.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.137.62.112', '212.137.62.159', 2147483647, 2147483647, 'EU', 'Europe'), +('212.137.62.160', '212.137.63.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.137.63.16', '212.137.63.23', 2147483647, 2147483647, 'EU', 'Europe'), +('212.137.63.24', '212.137.63.87', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.137.63.88', '212.137.63.95', 2147483647, 2147483647, 'EU', 'Europe'), +('212.137.63.96', '212.137.63.103', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.137.63.104', '212.137.63.111', 2147483647, 2147483647, 'EU', 'Europe'), +('212.137.63.112', '212.137.63.199', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.137.63.200', '212.137.63.223', 2147483647, 2147483647, 'EU', 'Europe'), +('212.137.63.224', '212.137.71.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.137.72.0', '212.137.72.255', 2147483647, 2147483647, 'EU', 'Europe'), +('212.137.73.0', '212.137.73.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.137.74.0', '212.137.74.7', 2147483647, 2147483647, 'EU', 'Europe'), +('212.137.74.8', '212.137.74.87', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.137.74.88', '212.137.74.103', 2147483647, 2147483647, 'EU', 'Europe'), +('212.137.74.104', '212.137.74.119', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.137.74.120', '212.137.74.127', 2147483647, 2147483647, 'EU', 'Europe'), +('212.137.74.128', '212.137.74.183', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.137.74.184', '212.137.74.191', 2147483647, 2147483647, 'EU', 'Europe'), +('212.137.74.192', '212.137.74.231', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.137.74.232', '212.137.74.239', 2147483647, 2147483647, 'EU', 'Europe'), +('212.137.74.240', '212.137.75.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.137.75.16', '212.137.75.31', 2147483647, 2147483647, 'EU', 'Europe'), +('212.137.75.32', '212.137.75.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.137.75.64', '212.137.75.79', 2147483647, 2147483647, 'EU', 'Europe'), +('212.137.75.80', '212.137.75.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.137.75.176', '212.137.75.191', 2147483647, 2147483647, 'EU', 'Europe'), +('212.137.75.192', '212.137.75.207', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.137.75.208', '212.137.75.255', 2147483647, 2147483647, 'EU', 'Europe'), +('212.137.76.0', '212.137.77.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.137.77.64', '212.137.78.15', 2147483647, 2147483647, 'EU', 'Europe'), +('212.137.78.16', '212.137.78.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.137.78.80', '212.137.78.87', 2147483647, 2147483647, 'EU', 'Europe'), +('212.137.78.88', '212.137.78.103', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.137.78.104', '212.137.78.119', 2147483647, 2147483647, 'EU', 'Europe'), +('212.137.78.120', '212.137.78.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.137.78.144', '212.137.78.255', 2147483647, 2147483647, 'EU', 'Europe'), +('212.137.79.0', '212.137.79.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.137.79.128', '212.137.79.255', 2147483647, 2147483647, 'EU', 'Europe'), +('212.137.80.0', '212.137.81.23', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.137.81.24', '212.137.81.255', 2147483647, 2147483647, 'EU', 'Europe'), +('212.137.82.0', '212.137.82.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.137.83.0', '212.137.115.255', 2147483647, 2147483647, 'EU', 'Europe'), +('212.137.116.0', '212.137.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.138.0.0', '212.138.255.255', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('212.139.0.0', '212.140.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.141.0.0', '212.141.255.255', 2147483647, 2147483647, 'IT', 'Italy'), +('212.142.0.0', '212.142.63.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.142.64.0', '212.142.127.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('212.142.128.0', '212.142.255.255', 2147483647, 2147483647, 'ES', 'Spain'), +('212.143.0.0', '212.143.255.255', 2147483647, 2147483647, 'IL', 'Israel'), +('212.144.0.0', '212.144.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.145.0.0', '212.145.255.255', 2147483647, 2147483647, 'ES', 'Spain'), +('212.146.0.0', '212.146.63.255', 2147483647, 2147483647, 'FI', 'Finland'), +('212.146.64.0', '212.146.127.255', 2147483647, 2147483647, 'RO', 'Romania'), +('212.146.128.0', '212.146.255.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('212.147.0.0', '212.147.127.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.147.128.0', '212.147.140.191', 2147483647, 2147483647, 'IE', 'Ireland'), +('212.147.140.192', '212.147.140.207', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.147.140.208', '212.147.255.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('212.148.0.0', '212.148.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.149.0.0', '212.149.63.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.149.64.0', '212.149.255.255', 2147483647, 2147483647, 'FI', 'Finland'), +('212.150.0.0', '212.150.27.255', 2147483647, 2147483647, 'IL', 'Israel'), +('212.150.28.0', '212.150.28.255', 2147483647, 2147483647, 'GN', 'Guinea'), +('212.150.29.0', '212.150.106.255', 2147483647, 2147483647, 'IL', 'Israel'), +('212.150.107.0', '212.150.107.255', 2147483647, 2147483647, 'CA', 'Canada'), +('212.150.108.0', '212.150.255.255', 2147483647, 2147483647, 'IL', 'Israel'), +('212.151.0.0', '212.151.223.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('212.151.224.0', '212.151.224.255', 2147483647, 2147483647, 'FR', 'France'), +('212.151.225.0', '212.151.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('212.152.0.0', '212.152.31.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.152.32.0', '212.152.63.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.152.64.0', '212.152.127.255', 2147483647, 2147483647, 'GR', 'Greece'), +('212.152.128.0', '212.152.255.255', 2147483647, 2147483647, 'AT', 'Austria'), +('212.153.0.0', '212.153.25.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.153.26.0', '212.153.26.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('212.153.27.0', '212.153.76.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.153.77.0', '212.153.77.255', 2147483647, 2147483647, 'US', 'United States'), +('212.153.78.0', '212.153.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.154.0.0', '212.154.127.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('212.154.128.0', '212.154.136.127', 2147483647, 2147483647, 'KZ', 'Kazakstan'), +('212.154.136.128', '212.154.136.159', 2147483647, 2147483647, 'KG', 'Kyrgyzstan'), +('212.154.136.160', '212.154.255.255', 2147483647, 2147483647, 'KZ', 'Kazakstan'), +('212.155.0.0', '212.155.125.255', 2147483647, 2147483647, 'FR', 'France'), +('212.155.126.0', '212.155.126.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.155.126.16', '212.155.255.255', 2147483647, 2147483647, 'FR', 'France'), +('212.156.0.0', '212.156.255.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('212.157.0.0', '212.157.172.71', 2147483647, 2147483647, 'FR', 'France'), +('212.157.172.72', '212.157.172.79', 2147483647, 2147483647, 'IT', 'Italy'), +('212.157.172.80', '212.157.192.159', 2147483647, 2147483647, 'FR', 'France'), +('212.157.192.160', '212.157.192.167', 2147483647, 2147483647, 'SE', 'Sweden'), +('212.157.192.168', '212.157.255.255', 2147483647, 2147483647, 'FR', 'France'), +('212.158.0.0', '212.158.1.255', 2147483647, 2147483647, 'EU', 'Europe'), +('212.158.2.0', '212.158.2.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.158.2.32', '212.158.2.255', 2147483647, 2147483647, 'EU', 'Europe'), +('212.158.3.0', '212.158.3.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.158.4.0', '212.158.8.159', 2147483647, 2147483647, 'EU', 'Europe'), +('212.158.8.160', '212.158.8.231', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.158.8.232', '212.158.11.255', 2147483647, 2147483647, 'EU', 'Europe'), +('212.158.12.0', '212.158.12.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.158.13.0', '212.158.20.255', 2147483647, 2147483647, 'EU', 'Europe'), +('212.158.21.0', '212.158.21.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.158.21.32', '212.158.21.159', 2147483647, 2147483647, 'EU', 'Europe'), +('212.158.21.160', '212.158.21.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.158.21.224', '212.158.26.247', 2147483647, 2147483647, 'EU', 'Europe'), +('212.158.26.248', '212.158.27.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.158.28.0', '212.158.34.31', 2147483647, 2147483647, 'EU', 'Europe'), +('212.158.34.32', '212.158.34.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.158.34.64', '212.158.34.183', 2147483647, 2147483647, 'EU', 'Europe'), +('212.158.34.184', '212.158.34.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.158.34.192', '212.158.37.255', 2147483647, 2147483647, 'EU', 'Europe'), +('212.158.38.0', '212.158.38.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.158.38.128', '212.158.40.127', 2147483647, 2147483647, 'EU', 'Europe'), +('212.158.40.128', '212.158.40.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.158.41.0', '212.158.44.255', 2147483647, 2147483647, 'EU', 'Europe'), +('212.158.45.0', '212.158.45.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.158.46.0', '212.158.46.255', 2147483647, 2147483647, 'EU', 'Europe'), +('212.158.47.0', '212.158.47.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.158.47.64', '212.158.47.127', 2147483647, 2147483647, 'EU', 'Europe'), +('212.158.47.128', '212.158.47.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.158.47.160', '212.158.47.255', 2147483647, 2147483647, 'EU', 'Europe'), +('212.158.48.0', '212.158.48.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.158.48.128', '212.158.48.255', 2147483647, 2147483647, 'EU', 'Europe'), +('212.158.49.0', '212.158.49.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.158.50.0', '212.158.51.63', 2147483647, 2147483647, 'EU', 'Europe'), +('212.158.51.64', '212.158.51.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.158.51.128', '212.158.52.195', 2147483647, 2147483647, 'EU', 'Europe'), +('212.158.52.196', '212.158.52.199', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.158.52.200', '212.158.52.207', 2147483647, 2147483647, 'EU', 'Europe'), +('212.158.52.208', '212.158.52.211', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.158.52.212', '212.158.52.247', 2147483647, 2147483647, 'EU', 'Europe'), +('212.158.52.248', '212.158.52.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.158.53.0', '212.158.60.255', 2147483647, 2147483647, 'EU', 'Europe'), +('212.158.61.0', '212.158.61.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.158.62.0', '212.158.63.255', 2147483647, 2147483647, 'EU', 'Europe'), +('212.158.64.0', '212.158.64.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.158.64.64', '212.158.66.255', 2147483647, 2147483647, 'EU', 'Europe'), +('212.158.67.0', '212.158.67.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.158.68.0', '212.158.69.127', 2147483647, 2147483647, 'EU', 'Europe'), +('212.158.69.128', '212.158.69.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.158.70.0', '212.158.74.7', 2147483647, 2147483647, 'EU', 'Europe'), +('212.158.74.8', '212.158.74.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.158.74.16', '212.158.74.95', 2147483647, 2147483647, 'EU', 'Europe'), +('212.158.74.96', '212.158.74.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.158.74.128', '212.158.74.255', 2147483647, 2147483647, 'EU', 'Europe'), +('212.158.75.0', '212.158.75.7', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.158.75.8', '212.158.75.191', 2147483647, 2147483647, 'EU', 'Europe'), +('212.158.75.192', '212.158.75.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.158.76.0', '212.158.76.15', 2147483647, 2147483647, 'EU', 'Europe'), +('212.158.76.16', '212.158.76.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.158.76.32', '212.158.76.111', 2147483647, 2147483647, 'EU', 'Europe'), +('212.158.76.112', '212.158.76.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.158.76.128', '212.158.76.235', 2147483647, 2147483647, 'EU', 'Europe'), +('212.158.76.236', '212.158.76.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.158.76.240', '212.158.77.127', 2147483647, 2147483647, 'EU', 'Europe'), +('212.158.77.128', '212.158.77.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.158.78.0', '212.158.79.63', 2147483647, 2147483647, 'EU', 'Europe'), +('212.158.79.64', '212.158.79.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.158.79.128', '212.158.90.7', 2147483647, 2147483647, 'EU', 'Europe'), +('212.158.90.8', '212.158.90.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.158.90.16', '212.158.90.31', 2147483647, 2147483647, 'EU', 'Europe'), +('212.158.90.32', '212.158.90.39', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.158.90.40', '212.158.91.159', 2147483647, 2147483647, 'EU', 'Europe'), +('212.158.91.160', '212.158.91.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.158.91.192', '212.158.93.231', 2147483647, 2147483647, 'EU', 'Europe'), +('212.158.93.232', '212.158.93.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.158.93.240', '212.158.94.255', 2147483647, 2147483647, 'EU', 'Europe'), +('212.158.95.0', '212.158.95.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.158.96.0', '212.158.96.31', 2147483647, 2147483647, 'EU', 'Europe'), +('212.158.96.32', '212.158.96.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.158.96.64', '212.158.99.79', 2147483647, 2147483647, 'EU', 'Europe'), +('212.158.99.80', '212.158.99.87', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.158.99.88', '212.158.99.95', 2147483647, 2147483647, 'EU', 'Europe'), +('212.158.99.96', '212.158.99.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.158.99.112', '212.158.103.255', 2147483647, 2147483647, 'EU', 'Europe'), +('212.158.104.0', '212.158.104.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.158.104.96', '212.158.104.127', 2147483647, 2147483647, 'EU', 'Europe'), +('212.158.104.128', '212.158.104.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.158.104.160', '212.158.107.127', 2147483647, 2147483647, 'EU', 'Europe'), +('212.158.107.128', '212.158.107.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.158.108.0', '212.158.108.31', 2147483647, 2147483647, 'EU', 'Europe'), +('212.158.108.32', '212.158.108.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.158.108.64', '212.158.108.127', 2147483647, 2147483647, 'EU', 'Europe'), +('212.158.108.128', '212.158.108.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.158.109.0', '212.158.109.7', 2147483647, 2147483647, 'EU', 'Europe'), +('212.158.109.8', '212.158.109.23', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.158.109.24', '212.158.109.255', 2147483647, 2147483647, 'EU', 'Europe'), +('212.158.110.0', '212.158.110.7', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.158.110.8', '212.158.110.23', 2147483647, 2147483647, 'EU', 'Europe'), +('212.158.110.24', '212.158.110.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.158.110.32', '212.158.110.103', 2147483647, 2147483647, 'EU', 'Europe'), +('212.158.110.104', '212.158.110.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.158.110.112', '212.158.110.191', 2147483647, 2147483647, 'EU', 'Europe'), +('212.158.110.192', '212.158.110.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.158.110.224', '212.158.111.63', 2147483647, 2147483647, 'EU', 'Europe'), +('212.158.111.64', '212.158.111.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.158.111.96', '212.158.111.127', 2147483647, 2147483647, 'EU', 'Europe'), +('212.158.111.128', '212.158.111.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.158.111.160', '212.158.113.191', 2147483647, 2147483647, 'EU', 'Europe'), +('212.158.113.192', '212.158.113.215', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.158.113.216', '212.158.113.239', 2147483647, 2147483647, 'EU', 'Europe'), +('212.158.113.240', '212.158.113.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.158.114.0', '212.158.114.23', 2147483647, 2147483647, 'EU', 'Europe'), +('212.158.114.24', '212.158.114.39', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.158.114.40', '212.158.114.55', 2147483647, 2147483647, 'EU', 'Europe'), +('212.158.114.56', '212.158.114.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.158.114.64', '212.158.114.159', 2147483647, 2147483647, 'EU', 'Europe'), +('212.158.114.160', '212.158.114.183', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.158.114.184', '212.158.116.127', 2147483647, 2147483647, 'EU', 'Europe'), +('212.158.116.128', '212.158.116.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.158.116.192', '212.158.119.255', 2147483647, 2147483647, 'EU', 'Europe'), +('212.158.120.0', '212.158.122.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.158.123.0', '212.158.124.191', 2147483647, 2147483647, 'EU', 'Europe'), +('212.158.124.192', '212.158.125.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.158.125.128', '212.158.126.255', 2147483647, 2147483647, 'EU', 'Europe'), +('212.158.127.0', '212.158.127.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.158.128.0', '212.158.159.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('212.158.160.0', '212.158.175.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.158.176.0', '212.158.191.255', 2147483647, 2147483647, 'MK', 'Macedonia'), +('212.158.192.0', '212.159.191.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.159.192.0', '212.159.234.223', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.159.234.224', '212.159.234.255', 2147483647, 2147483647, 'EU', 'Europe'), +('212.159.235.0', '212.159.237.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.159.238.0', '212.159.255.255', 2147483647, 2147483647, 'EU', 'Europe'), +('212.160.0.0', '212.160.255.255', 2147483647, 2147483647, 'PL', 'Poland'), +('212.161.0.0', '212.161.127.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.161.128.0', '212.161.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.162.0.0', '212.162.0.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.162.1.0', '212.162.1.3', 2147483647, 2147483647, 'DE', 'Germany'), +('212.162.1.4', '212.162.1.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.162.1.96', '212.162.1.127', 2147483647, 2147483647, 'DE', 'Germany'), +('212.162.1.128', '212.162.1.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.162.1.192', '212.162.2.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.162.3.0', '212.162.3.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.162.3.48', '212.162.3.63', 2147483647, 2147483647, 'DE', 'Germany'), +('212.162.3.64', '212.162.3.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.162.3.80', '212.162.3.147', 2147483647, 2147483647, 'DE', 'Germany'), +('212.162.3.148', '212.162.3.151', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.162.3.152', '212.162.3.155', 2147483647, 2147483647, 'DE', 'Germany'), +('212.162.3.156', '212.162.3.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.162.3.192', '212.162.5.127', 2147483647, 2147483647, 'DE', 'Germany'), +('212.162.5.128', '212.162.5.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.162.6.0', '212.162.6.239', 2147483647, 2147483647, 'DE', 'Germany'), +('212.162.6.240', '212.162.6.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.162.7.0', '212.162.7.63', 2147483647, 2147483647, 'DE', 'Germany'), +('212.162.7.64', '212.162.7.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.162.7.128', '212.162.7.191', 2147483647, 2147483647, 'DE', 'Germany'), +('212.162.7.192', '212.162.7.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.162.8.0', '212.162.8.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('212.162.9.0', '212.162.9.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.162.10.0', '212.162.11.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.162.12.0', '212.162.16.127', 2147483647, 2147483647, 'DE', 'Germany'), +('212.162.16.128', '212.162.16.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.162.16.160', '212.162.16.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.162.17.0', '212.162.17.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.162.18.0', '212.162.19.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.162.20.0', '212.162.20.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.162.20.16', '212.162.20.47', 2147483647, 2147483647, 'DE', 'Germany'), +('212.162.20.48', '212.162.20.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.162.20.64', '212.162.20.95', 2147483647, 2147483647, 'DE', 'Germany'), +('212.162.20.96', '212.162.23.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.162.24.0', '212.162.24.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.162.25.0', '212.162.25.255', 2147483647, 2147483647, 'FR', 'France'), +('212.162.26.0', '212.162.32.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.162.32.160', '212.162.32.191', 2147483647, 2147483647, 'DE', 'Germany'), +('212.162.32.192', '212.162.32.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.162.33.0', '212.162.33.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.162.34.0', '212.162.39.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.162.40.0', '212.162.40.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.162.41.0', '212.162.41.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.162.42.0', '212.162.42.127', 2147483647, 2147483647, 'ES', 'Spain'), +('212.162.42.128', '212.162.43.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.162.44.0', '212.162.44.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.162.45.0', '212.162.46.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.162.47.0', '212.162.47.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.162.48.0', '212.162.48.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.162.48.80', '212.162.48.119', 2147483647, 2147483647, 'DE', 'Germany'), +('212.162.48.120', '212.162.48.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.162.48.128', '212.162.48.143', 2147483647, 2147483647, 'DE', 'Germany'), +('212.162.48.144', '212.162.48.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.162.48.160', '212.162.48.191', 2147483647, 2147483647, 'DE', 'Germany'), +('212.162.48.192', '212.162.48.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.162.49.0', '212.162.50.15', 2147483647, 2147483647, 'DE', 'Germany'), +('212.162.50.16', '212.162.50.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.162.50.64', '212.162.50.223', 2147483647, 2147483647, 'DE', 'Germany'), +('212.162.50.224', '212.162.51.7', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.162.51.8', '212.162.51.15', 2147483647, 2147483647, 'DE', 'Germany'), +('212.162.51.16', '212.162.51.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.162.51.64', '212.162.54.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.162.55.0', '212.162.55.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.162.55.32', '212.162.55.47', 2147483647, 2147483647, 'DE', 'Germany'), +('212.162.55.48', '212.162.55.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.162.56.0', '212.162.57.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.162.58.0', '212.162.58.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.162.58.32', '212.162.58.47', 2147483647, 2147483647, 'DE', 'Germany'), +('212.162.58.48', '212.162.58.71', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.162.58.72', '212.162.58.79', 2147483647, 2147483647, 'DE', 'Germany'), +('212.162.58.80', '212.162.58.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.162.59.0', '212.162.61.127', 2147483647, 2147483647, 'DE', 'Germany'), +('212.162.61.128', '212.162.61.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.162.62.0', '212.162.63.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.162.64.0', '212.162.127.255', 2147483647, 2147483647, 'IT', 'Italy'), +('212.162.128.0', '212.162.159.255', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('212.162.160.0', '212.162.191.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('212.162.192.0', '212.162.194.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.162.195.0', '212.162.195.51', 2147483647, 2147483647, 'IN', 'India'), +('212.162.195.52', '212.162.195.55', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.162.195.56', '212.162.195.59', 2147483647, 2147483647, 'IN', 'India'), +('212.162.195.60', '212.162.195.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.162.196.0', '212.162.196.95', 2147483647, 2147483647, 'IN', 'India'), +('212.162.196.96', '212.162.213.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.162.213.224', '212.162.213.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.162.214.0', '212.162.224.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.162.225.0', '212.162.225.251', 2147483647, 2147483647, 'TZ', 'Tanzania, United Republic of'), +('212.162.225.252', '212.162.225.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.162.226.0', '212.162.231.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.162.231.192', '212.162.231.223', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.162.231.224', '212.162.233.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.162.233.96', '212.162.233.127', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.162.233.128', '212.162.234.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.162.234.80', '212.162.234.95', 2147483647, 2147483647, 'IT', 'Italy'), +('212.162.234.96', '212.162.255.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.162.255.128', '212.162.255.143', 2147483647, 2147483647, 'GR', 'Greece'), +('212.162.255.144', '212.162.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.163.0.0', '212.163.215.255', 2147483647, 2147483647, 'ES', 'Spain'), +('212.163.216.0', '212.163.223.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.163.224.0', '212.163.235.255', 2147483647, 2147483647, 'ES', 'Spain'), +('212.163.236.0', '212.163.239.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.163.240.0', '212.163.255.255', 2147483647, 2147483647, 'ES', 'Spain'), +('212.164.0.0', '212.164.255.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.165.0.0', '212.165.0.255', 2147483647, 2147483647, 'AT', 'Austria'), +('212.165.1.0', '212.165.1.255', 2147483647, 2147483647, 'EU', 'Europe'), +('212.165.2.0', '212.165.2.127', 2147483647, 2147483647, 'AT', 'Austria'), +('212.165.2.128', '212.165.2.191', 2147483647, 2147483647, 'EU', 'Europe'), +('212.165.2.192', '212.165.2.255', 2147483647, 2147483647, 'AT', 'Austria'), +('212.165.3.0', '212.165.3.255', 2147483647, 2147483647, 'EU', 'Europe'), +('212.165.4.0', '212.165.4.127', 2147483647, 2147483647, 'AT', 'Austria'), +('212.165.4.128', '212.165.4.143', 2147483647, 2147483647, 'EU', 'Europe'), +('212.165.4.144', '212.165.4.151', 2147483647, 2147483647, 'AT', 'Austria'), +('212.165.4.152', '212.165.4.255', 2147483647, 2147483647, 'EU', 'Europe'), +('212.165.5.0', '212.165.5.127', 2147483647, 2147483647, 'AT', 'Austria'), +('212.165.5.128', '212.165.9.255', 2147483647, 2147483647, 'EU', 'Europe'), +('212.165.10.0', '212.165.11.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.165.12.0', '212.165.15.255', 2147483647, 2147483647, 'EU', 'Europe'), +('212.165.16.0', '212.165.31.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.165.32.0', '212.165.63.255', 2147483647, 2147483647, 'IT', 'Italy'), +('212.165.64.0', '212.165.89.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.165.90.0', '212.165.91.255', 2147483647, 2147483647, 'DZ', 'Algeria'), +('212.165.92.0', '212.165.127.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.165.128.0', '212.165.129.255', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('212.165.130.0', '212.165.130.15', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('212.165.130.16', '212.165.130.23', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.165.130.24', '212.165.130.63', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('212.165.130.64', '212.165.130.71', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.165.130.72', '212.165.132.63', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('212.165.132.64', '212.165.132.95', 2147483647, 2147483647, 'NG', 'Nigeria'), +('212.165.132.96', '212.165.132.127', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('212.165.132.128', '212.165.132.255', 2147483647, 2147483647, 'NG', 'Nigeria'), +('212.165.133.0', '212.165.133.255', 2147483647, 2147483647, 'IN', 'India'), +('212.165.134.0', '212.165.134.255', 2147483647, 2147483647, 'KE', 'Kenya'), +('212.165.135.0', '212.165.135.255', 2147483647, 2147483647, 'NG', 'Nigeria'), +('212.165.136.0', '212.165.139.255', 2147483647, 2147483647, 'IN', 'India'), +('212.165.140.0', '212.165.140.3', 2147483647, 2147483647, 'NG', 'Nigeria'), +('212.165.140.4', '212.165.140.15', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('212.165.140.16', '212.165.140.23', 2147483647, 2147483647, 'NG', 'Nigeria'), +('212.165.140.24', '212.165.140.31', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('212.165.140.32', '212.165.140.39', 2147483647, 2147483647, 'KE', 'Kenya'), +('212.165.140.40', '212.165.140.63', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('212.165.140.64', '212.165.141.255', 2147483647, 2147483647, 'NG', 'Nigeria'), +('212.165.142.0', '212.165.143.255', 2147483647, 2147483647, 'TZ', 'Tanzania, United Republic of'), +('212.165.144.0', '212.165.144.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('212.165.145.0', '212.165.145.127', 2147483647, 2147483647, 'TZ', 'Tanzania, United Republic of'), +('212.165.145.128', '212.165.146.15', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('212.165.146.16', '212.165.146.23', 2147483647, 2147483647, 'PK', 'Pakistan'), +('212.165.146.24', '212.165.146.31', 2147483647, 2147483647, 'IN', 'India'), +('212.165.146.32', '212.165.146.71', 2147483647, 2147483647, 'PK', 'Pakistan'), +('212.165.146.72', '212.165.146.87', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('212.165.146.88', '212.165.146.111', 2147483647, 2147483647, 'PK', 'Pakistan'), +('212.165.146.112', '212.165.146.119', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('212.165.146.120', '212.165.146.127', 2147483647, 2147483647, 'IN', 'India'), +('212.165.146.128', '212.165.146.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('212.165.147.0', '212.165.147.63', 2147483647, 2147483647, 'NG', 'Nigeria'), +('212.165.147.64', '212.165.147.67', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('212.165.147.68', '212.165.147.71', 2147483647, 2147483647, 'TZ', 'Tanzania, United Republic of'), +('212.165.147.72', '212.165.147.95', 2147483647, 2147483647, 'KE', 'Kenya'), +('212.165.147.96', '212.165.147.127', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('212.165.147.128', '212.165.147.191', 2147483647, 2147483647, 'NG', 'Nigeria'), +('212.165.147.192', '212.165.147.255', 2147483647, 2147483647, 'KE', 'Kenya'), +('212.165.148.0', '212.165.148.255', 2147483647, 2147483647, 'GB', 'United Kingdom'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('212.165.149.0', '212.165.149.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('212.165.150.0', '212.165.150.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('212.165.151.0', '212.165.151.7', 2147483647, 2147483647, 'TZ', 'Tanzania, United Republic of'), +('212.165.151.8', '212.165.151.15', 2147483647, 2147483647, 'KE', 'Kenya'), +('212.165.151.16', '212.165.151.23', 2147483647, 2147483647, 'NG', 'Nigeria'), +('212.165.151.24', '212.165.151.31', 2147483647, 2147483647, 'TZ', 'Tanzania, United Republic of'), +('212.165.151.32', '212.165.151.63', 2147483647, 2147483647, 'NG', 'Nigeria'), +('212.165.151.64', '212.165.153.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('212.165.154.0', '212.165.155.39', 2147483647, 2147483647, 'KE', 'Kenya'), +('212.165.155.40', '212.165.155.47', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('212.165.155.48', '212.165.155.51', 2147483647, 2147483647, 'TZ', 'Tanzania, United Republic of'), +('212.165.155.52', '212.165.155.55', 2147483647, 2147483647, 'NG', 'Nigeria'), +('212.165.155.56', '212.165.155.63', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('212.165.155.64', '212.165.155.127', 2147483647, 2147483647, 'TZ', 'Tanzania, United Republic of'), +('212.165.155.128', '212.165.155.143', 2147483647, 2147483647, 'GA', 'Gabon'), +('212.165.155.144', '212.165.155.159', 2147483647, 2147483647, 'NG', 'Nigeria'), +('212.165.155.160', '212.165.155.175', 2147483647, 2147483647, 'TZ', 'Tanzania, United Republic of'), +('212.165.155.176', '212.165.155.183', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('212.165.155.184', '212.165.155.191', 2147483647, 2147483647, 'GA', 'Gabon'), +('212.165.155.192', '212.165.155.223', 2147483647, 2147483647, 'TZ', 'Tanzania, United Republic of'), +('212.165.155.224', '212.165.155.231', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('212.165.155.232', '212.165.155.239', 2147483647, 2147483647, 'TZ', 'Tanzania, United Republic of'), +('212.165.155.240', '212.165.155.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('212.165.156.0', '212.165.156.255', 2147483647, 2147483647, 'KE', 'Kenya'), +('212.165.157.0', '212.165.157.47', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('212.165.157.48', '212.165.157.55', 2147483647, 2147483647, 'KE', 'Kenya'), +('212.165.157.56', '212.165.158.47', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('212.165.158.48', '212.165.158.79', 2147483647, 2147483647, 'PK', 'Pakistan'), +('212.165.158.80', '212.165.158.87', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('212.165.158.88', '212.165.158.95', 2147483647, 2147483647, 'PK', 'Pakistan'), +('212.165.158.96', '212.165.158.111', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('212.165.158.112', '212.165.158.159', 2147483647, 2147483647, 'PK', 'Pakistan'), +('212.165.158.160', '212.165.158.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('212.165.159.0', '212.165.159.255', 2147483647, 2147483647, 'PK', 'Pakistan'), +('212.165.160.0', '212.165.160.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.165.161.0', '212.165.165.255', 2147483647, 2147483647, 'TZ', 'Tanzania, United Republic of'), +('212.165.166.0', '212.165.166.255', 2147483647, 2147483647, 'PK', 'Pakistan'), +('212.165.167.0', '212.165.167.255', 2147483647, 2147483647, 'KE', 'Kenya'), +('212.165.168.0', '212.165.171.0', 2147483647, 2147483647, 'NG', 'Nigeria'), +('212.165.171.1', '212.165.179.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('212.165.180.0', '212.165.183.127', 2147483647, 2147483647, 'TJ', 'Tajikistan'), +('212.165.183.128', '212.165.250.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('212.165.251.0', '212.165.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.166.0.0', '212.166.63.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.166.64.0', '212.166.95.255', 2147483647, 2147483647, 'ES', 'Spain'), +('212.166.96.0', '212.166.97.47', 2147483647, 2147483647, 'AT', 'Austria'), +('212.166.97.48', '212.166.97.55', 2147483647, 2147483647, 'GI', 'Gibraltar'), +('212.166.97.56', '212.166.127.255', 2147483647, 2147483647, 'AT', 'Austria'), +('212.166.128.0', '212.166.255.255', 2147483647, 2147483647, 'ES', 'Spain'), +('212.167.0.0', '212.167.3.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.167.4.0', '212.167.4.255', 2147483647, 2147483647, 'EU', 'Europe'), +('212.167.5.0', '212.167.5.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.167.6.0', '212.167.7.255', 2147483647, 2147483647, 'EU', 'Europe'), +('212.167.8.0', '212.167.8.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.167.8.32', '212.167.8.255', 2147483647, 2147483647, 'EU', 'Europe'), +('212.167.9.0', '212.167.9.31', 2147483647, 2147483647, 'IL', 'Israel'), +('212.167.9.32', '212.167.10.79', 2147483647, 2147483647, 'EU', 'Europe'), +('212.167.10.80', '212.167.10.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.167.11.0', '212.167.11.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.167.12.0', '212.167.12.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.167.13.0', '212.167.13.47', 2147483647, 2147483647, 'DE', 'Germany'), +('212.167.13.48', '212.167.13.127', 2147483647, 2147483647, 'EU', 'Europe'), +('212.167.13.128', '212.167.13.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.167.14.0', '212.167.14.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.167.14.128', '212.167.14.255', 2147483647, 2147483647, 'EU', 'Europe'), +('212.167.15.0', '212.167.15.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.167.16.0', '212.167.19.255', 2147483647, 2147483647, 'US', 'United States'), +('212.167.20.0', '212.167.20.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.167.21.0', '212.167.255.255', 2147483647, 2147483647, 'EU', 'Europe'), +('212.168.0.0', '212.168.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.169.0.0', '212.169.63.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.169.64.0', '212.169.127.255', 2147483647, 2147483647, 'NO', 'Norway'), +('212.169.128.0', '212.170.255.255', 2147483647, 2147483647, 'ES', 'Spain'), +('212.171.0.0', '212.171.255.255', 2147483647, 2147483647, 'IT', 'Italy'), +('212.172.0.0', '212.172.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.173.0.0', '212.173.180.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.173.180.160', '212.173.180.167', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.173.180.168', '212.173.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.174.0.0', '212.175.255.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('212.176.0.0', '212.176.22.15', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.176.22.16', '212.176.22.31', 2147483647, 2147483647, 'UZ', 'Uzbekistan'), +('212.176.22.32', '212.176.22.159', 2147483647, 2147483647, 'BY', 'Belarus'), +('212.176.22.160', '212.176.22.191', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.176.22.192', '212.176.22.255', 2147483647, 2147483647, 'BY', 'Belarus'), +('212.176.23.0', '212.176.255.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.177.0.0', '212.177.0.79', 2147483647, 2147483647, 'IT', 'Italy'), +('212.177.0.80', '212.177.0.87', 2147483647, 2147483647, 'FR', 'France'), +('212.177.0.88', '212.177.255.255', 2147483647, 2147483647, 'IT', 'Italy'), +('212.178.0.0', '212.178.31.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('212.178.32.0', '212.178.159.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.178.160.0', '212.178.191.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('212.178.192.0', '212.178.223.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.178.224.0', '212.178.255.255', 2147483647, 2147483647, 'RS', 'Serbia'), +('212.179.0.0', '212.179.255.255', 2147483647, 2147483647, 'IL', 'Israel'), +('212.180.0.0', '212.180.33.247', 2147483647, 2147483647, 'FR', 'France'), +('212.180.33.248', '212.180.33.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('212.180.34.0', '212.180.42.127', 2147483647, 2147483647, 'FR', 'France'), +('212.180.42.128', '212.180.42.143', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('212.180.42.144', '212.180.42.207', 2147483647, 2147483647, 'FR', 'France'), +('212.180.42.208', '212.180.42.215', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('212.180.42.216', '212.180.68.103', 2147483647, 2147483647, 'FR', 'France'), +('212.180.68.104', '212.180.68.111', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('212.180.68.112', '212.180.112.135', 2147483647, 2147483647, 'FR', 'France'), +('212.180.112.136', '212.180.112.143', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('212.180.112.144', '212.180.127.255', 2147483647, 2147483647, 'FR', 'France'), +('212.180.128.0', '212.180.255.255', 2147483647, 2147483647, 'PL', 'Poland'), +('212.181.0.0', '212.181.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('212.182.0.0', '212.182.127.255', 2147483647, 2147483647, 'PL', 'Poland'), +('212.182.128.0', '212.182.191.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.182.192.0', '212.182.216.255', 2147483647, 2147483647, 'FI', 'Finland'), +('212.182.217.0', '212.182.217.63', 2147483647, 2147483647, 'EE', 'Estonia'), +('212.182.217.64', '212.182.255.255', 2147483647, 2147483647, 'FI', 'Finland'), +('212.183.0.0', '212.183.127.255', 2147483647, 2147483647, 'AT', 'Austria'), +('212.183.128.0', '212.183.159.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.183.160.0', '212.183.191.255', 2147483647, 2147483647, 'IT', 'Italy'), +('212.183.192.0', '212.183.255.255', 2147483647, 2147483647, 'ES', 'Spain'), +('212.184.0.0', '212.184.4.191', 2147483647, 2147483647, 'DE', 'Germany'), +('212.184.4.192', '212.184.4.199', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.184.4.200', '212.184.30.151', 2147483647, 2147483647, 'DE', 'Germany'), +('212.184.30.152', '212.184.30.159', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.184.30.160', '212.184.79.151', 2147483647, 2147483647, 'DE', 'Germany'), +('212.184.79.152', '212.184.79.159', 2147483647, 2147483647, 'PL', 'Poland'), +('212.184.79.160', '212.184.79.231', 2147483647, 2147483647, 'DE', 'Germany'), +('212.184.79.232', '212.184.79.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.184.79.240', '212.184.186.127', 2147483647, 2147483647, 'DE', 'Germany'), +('212.184.186.128', '212.184.186.255', 2147483647, 2147483647, 'ES', 'Spain'), +('212.184.187.0', '212.184.192.15', 2147483647, 2147483647, 'DE', 'Germany'), +('212.184.192.16', '212.184.192.23', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.184.192.24', '212.185.87.175', 2147483647, 2147483647, 'DE', 'Germany'), +('212.185.87.176', '212.185.87.183', 2147483647, 2147483647, 'IT', 'Italy'), +('212.185.87.184', '212.185.173.71', 2147483647, 2147483647, 'DE', 'Germany'), +('212.185.173.72', '212.185.173.79', 2147483647, 2147483647, 'FI', 'Finland'), +('212.185.173.80', '212.185.177.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.185.178.0', '212.185.178.7', 2147483647, 2147483647, 'IT', 'Italy'), +('212.185.178.8', '212.185.205.231', 2147483647, 2147483647, 'DE', 'Germany'), +('212.185.205.232', '212.185.205.239', 2147483647, 2147483647, 'IT', 'Italy'), +('212.185.205.240', '212.185.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.186.0.0', '212.186.255.255', 2147483647, 2147483647, 'AT', 'Austria'), +('212.187.0.0', '212.187.127.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.187.128.0', '212.187.169.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.187.169.128', '212.187.169.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.187.170.0', '212.187.170.127', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('212.187.170.128', '212.187.171.151', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.187.171.152', '212.187.171.191', 2147483647, 2147483647, 'DE', 'Germany'), +('212.187.171.192', '212.187.197.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.187.198.0', '212.187.198.127', 2147483647, 2147483647, 'FR', 'France'), +('212.187.198.128', '212.187.229.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.187.230.0', '212.187.230.255', 2147483647, 2147483647, 'US', 'United States'), +('212.187.231.0', '212.187.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.188.0.0', '212.188.127.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.188.128.0', '212.188.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.189.0.0', '212.189.127.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.189.128.0', '212.189.255.255', 2147483647, 2147483647, 'IT', 'Italy'), +('212.190.0.0', '212.190.65.127', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.190.65.128', '212.190.65.255', 2147483647, 2147483647, 'AT', 'Austria'), +('212.190.66.0', '212.190.68.31', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.190.68.32', '212.190.68.63', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('212.190.68.64', '212.190.68.191', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.190.68.192', '212.190.68.223', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('212.190.68.224', '212.190.69.223', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.190.69.224', '212.190.69.255', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('212.190.70.0', '212.190.71.95', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.190.71.96', '212.190.71.127', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('212.190.71.128', '212.190.71.175', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.190.71.176', '212.190.71.191', 2147483647, 2147483647, 'BN', 'Brunei Darussalam'), +('212.190.71.192', '212.190.71.223', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.190.71.224', '212.190.71.255', 2147483647, 2147483647, 'FR', 'France'), +('212.190.72.0', '212.190.77.239', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.190.77.240', '212.190.77.255', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('212.190.78.0', '212.190.79.31', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.190.79.32', '212.190.79.47', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('212.190.79.48', '212.190.79.191', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.190.79.192', '212.190.79.255', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('212.190.80.0', '212.190.81.183', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.190.81.184', '212.190.81.191', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('212.190.81.192', '212.190.82.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.190.83.0', '212.190.83.255', 2147483647, 2147483647, 'US', 'United States'), +('212.190.84.0', '212.190.86.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.190.87.0', '212.190.87.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.190.87.128', '212.190.88.143', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.190.88.144', '212.190.88.159', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('212.190.88.160', '212.190.93.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.190.94.0', '212.190.94.31', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('212.190.94.32', '212.190.114.63', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.190.114.64', '212.190.114.79', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('212.190.114.80', '212.190.114.111', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.190.114.112', '212.190.114.119', 2147483647, 2147483647, 'CA', 'Canada'), +('212.190.114.120', '212.190.114.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.190.115.0', '212.190.115.255', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('212.190.116.0', '212.190.117.255', 2147483647, 2147483647, 'US', 'United States'), +('212.190.118.0', '212.190.122.127', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.190.122.128', '212.190.122.143', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('212.190.122.144', '212.190.122.231', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.190.122.232', '212.190.122.239', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('212.190.122.240', '212.190.129.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.190.130.0', '212.190.130.47', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('212.190.130.48', '212.190.130.95', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.190.130.96', '212.190.130.143', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('212.190.130.144', '212.190.130.159', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.190.130.160', '212.190.130.191', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('212.190.130.192', '212.190.145.31', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.190.145.32', '212.190.145.63', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('212.190.145.64', '212.190.145.223', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.190.145.224', '212.190.145.255', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('212.190.146.0', '212.190.196.7', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.190.196.8', '212.190.196.15', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('212.190.196.16', '212.190.196.63', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.190.196.64', '212.190.196.95', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.190.196.96', '212.190.196.103', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.190.196.104', '212.190.196.111', 2147483647, 2147483647, 'DE', 'Germany'), +('212.190.196.112', '212.190.196.127', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.190.196.128', '212.190.196.135', 2147483647, 2147483647, 'IT', 'Italy'), +('212.190.196.136', '212.190.196.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.190.197.0', '212.190.197.15', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('212.190.197.16', '212.190.197.175', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.190.197.176', '212.190.197.191', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('212.190.197.192', '212.190.201.79', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.190.201.80', '212.190.201.95', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('212.190.201.96', '212.190.203.191', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.190.203.192', '212.190.203.223', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('212.190.203.224', '212.190.204.79', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.190.204.80', '212.190.204.95', 2147483647, 2147483647, 'LI', 'Liechtenstein'), +('212.190.204.96', '212.190.205.31', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.190.205.32', '212.190.205.63', 2147483647, 2147483647, 'CA', 'Canada'), +('212.190.205.64', '212.190.205.191', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.190.205.192', '212.190.205.199', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('212.190.205.200', '212.190.205.223', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.190.205.224', '212.190.206.15', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('212.190.206.16', '212.190.206.127', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.190.206.128', '212.190.206.191', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('212.190.206.192', '212.190.207.63', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.190.207.64', '212.190.207.95', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('212.190.207.96', '212.190.216.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.190.217.0', '212.190.217.255', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('212.190.218.0', '212.190.221.103', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.190.221.104', '212.190.221.111', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('212.190.221.112', '212.190.222.239', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.190.222.240', '212.190.222.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.190.223.0', '212.190.224.247', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.190.224.248', '212.190.224.255', 2147483647, 2147483647, 'US', 'United States'), +('212.190.225.0', '212.190.225.31', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.190.225.32', '212.190.225.47', 2147483647, 2147483647, 'US', 'United States'), +('212.190.225.48', '212.190.255.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.191.0.0', '212.191.255.255', 2147483647, 2147483647, 'PL', 'Poland'), +('212.192.0.0', '212.193.255.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.194.0.0', '212.195.255.255', 2147483647, 2147483647, 'FR', 'France'), +('212.196.0.0', '212.196.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.197.0.0', '212.197.12.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('212.197.13.0', '212.197.13.7', 2147483647, 2147483647, 'IQ', 'Iraq'), +('212.197.13.8', '212.197.119.111', 2147483647, 2147483647, 'SK', 'Slovakia'), +('212.197.119.112', '212.197.119.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.197.119.128', '212.197.127.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('212.197.128.0', '212.197.191.255', 2147483647, 2147483647, 'AT', 'Austria'), +('212.197.192.0', '212.197.198.95', 2147483647, 2147483647, 'FR', 'France'), +('212.197.198.96', '212.197.198.111', 2147483647, 2147483647, 'IT', 'Italy'), +('212.197.198.112', '212.197.198.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.197.198.144', '212.197.198.159', 2147483647, 2147483647, 'FR', 'France'), +('212.197.198.160', '212.197.198.175', 2147483647, 2147483647, 'DE', 'Germany'), +('212.197.198.176', '212.197.198.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.197.198.192', '212.197.198.239', 2147483647, 2147483647, 'FR', 'France'), +('212.197.198.240', '212.197.198.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.197.199.0', '212.197.199.47', 2147483647, 2147483647, 'FR', 'France'), +('212.197.199.48', '212.197.199.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.197.199.64', '212.197.199.95', 2147483647, 2147483647, 'FR', 'France'), +('212.197.199.96', '212.197.199.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.197.199.112', '212.197.199.127', 2147483647, 2147483647, 'FR', 'France'), +('212.197.199.128', '212.197.199.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.197.199.144', '212.197.199.159', 2147483647, 2147483647, 'FR', 'France'), +('212.197.199.160', '212.197.199.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.197.199.176', '212.197.199.191', 2147483647, 2147483647, 'IT', 'Italy'), +('212.197.199.192', '212.197.199.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.197.199.224', '212.197.199.255', 2147483647, 2147483647, 'FR', 'France'), +('212.197.200.0', '212.197.200.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.197.200.16', '212.197.200.31', 2147483647, 2147483647, 'FR', 'France'), +('212.197.200.32', '212.197.200.47', 2147483647, 2147483647, 'DE', 'Germany'), +('212.197.200.48', '212.197.200.63', 2147483647, 2147483647, 'IT', 'Italy'), +('212.197.200.64', '212.197.200.143', 2147483647, 2147483647, 'FR', 'France'), +('212.197.200.144', '212.197.200.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.197.200.160', '212.197.200.207', 2147483647, 2147483647, 'FR', 'France'), +('212.197.200.208', '212.197.200.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.197.200.224', '212.197.200.255', 2147483647, 2147483647, 'FR', 'France'), +('212.197.201.0', '212.197.201.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.197.201.32', '212.197.201.63', 2147483647, 2147483647, 'FR', 'France'), +('212.197.201.64', '212.197.201.79', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.197.201.80', '212.197.201.111', 2147483647, 2147483647, 'FR', 'France'), +('212.197.201.112', '212.197.201.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.197.201.128', '212.197.201.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.197.201.144', '212.197.201.191', 2147483647, 2147483647, 'FR', 'France'), +('212.197.201.192', '212.197.201.207', 2147483647, 2147483647, 'DE', 'Germany'), +('212.197.201.208', '212.197.201.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.197.201.224', '212.197.201.239', 2147483647, 2147483647, 'FR', 'France'), +('212.197.201.240', '212.197.201.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.197.202.0', '212.197.202.47', 2147483647, 2147483647, 'FR', 'France'), +('212.197.202.48', '212.197.202.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.197.202.96', '212.197.202.111', 2147483647, 2147483647, 'DE', 'Germany'), +('212.197.202.112', '212.197.202.191', 2147483647, 2147483647, 'FR', 'France'), +('212.197.202.192', '212.197.202.207', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.197.202.208', '212.197.202.223', 2147483647, 2147483647, 'DE', 'Germany'), +('212.197.202.224', '212.197.202.239', 2147483647, 2147483647, 'FR', 'France'), +('212.197.202.240', '212.197.202.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.197.203.0', '212.197.203.31', 2147483647, 2147483647, 'FR', 'France'), +('212.197.203.32', '212.197.203.47', 2147483647, 2147483647, 'US', 'United States'), +('212.197.203.48', '212.197.203.95', 2147483647, 2147483647, 'FR', 'France'), +('212.197.203.96', '212.197.203.127', 2147483647, 2147483647, 'US', 'United States'), +('212.197.203.128', '212.197.203.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.197.203.144', '212.197.203.191', 2147483647, 2147483647, 'FR', 'France'), +('212.197.203.192', '212.197.203.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.197.203.224', '212.197.203.255', 2147483647, 2147483647, 'FR', 'France'), +('212.197.204.0', '212.197.204.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.197.204.32', '212.197.204.63', 2147483647, 2147483647, 'FR', 'France'), +('212.197.204.64', '212.197.204.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.197.204.96', '212.197.204.111', 2147483647, 2147483647, 'FR', 'France'), +('212.197.204.112', '212.197.204.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.197.204.128', '212.197.204.143', 2147483647, 2147483647, 'FR', 'France'), +('212.197.204.144', '212.197.204.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.197.204.160', '212.197.204.175', 2147483647, 2147483647, 'FR', 'France'), +('212.197.204.176', '212.197.204.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.197.204.240', '212.197.204.255', 2147483647, 2147483647, 'FR', 'France'), +('212.197.205.0', '212.197.205.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.197.205.16', '212.197.205.31', 2147483647, 2147483647, 'FR', 'France'), +('212.197.205.32', '212.197.205.47', 2147483647, 2147483647, 'IT', 'Italy'), +('212.197.205.48', '212.197.205.143', 2147483647, 2147483647, 'FR', 'France'), +('212.197.205.144', '212.197.205.159', 2147483647, 2147483647, 'IE', 'Ireland'), +('212.197.205.160', '212.197.205.191', 2147483647, 2147483647, 'FR', 'France'), +('212.197.205.192', '212.197.205.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.197.205.224', '212.197.205.239', 2147483647, 2147483647, 'IT', 'Italy'), +('212.197.205.240', '212.197.206.63', 2147483647, 2147483647, 'FR', 'France'), +('212.197.206.64', '212.197.206.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.197.206.80', '212.197.206.143', 2147483647, 2147483647, 'FR', 'France'), +('212.197.206.144', '212.197.206.159', 2147483647, 2147483647, 'US', 'United States'), +('212.197.206.160', '212.197.206.175', 2147483647, 2147483647, 'DE', 'Germany'), +('212.197.206.176', '212.197.206.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.197.206.192', '212.197.206.207', 2147483647, 2147483647, 'FR', 'France'), +('212.197.206.208', '212.197.206.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.197.206.224', '212.197.207.47', 2147483647, 2147483647, 'FR', 'France'), +('212.197.207.48', '212.197.207.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.197.207.64', '212.197.207.95', 2147483647, 2147483647, 'FR', 'France'), +('212.197.207.96', '212.197.207.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.197.207.112', '212.197.207.143', 2147483647, 2147483647, 'FR', 'France'), +('212.197.207.144', '212.197.207.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.197.207.160', '212.197.207.175', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.197.207.176', '212.197.207.191', 2147483647, 2147483647, 'FR', 'France'), +('212.197.207.192', '212.197.207.207', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.197.207.208', '212.197.207.223', 2147483647, 2147483647, 'FR', 'France'), +('212.197.207.224', '212.197.207.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.197.207.240', '212.197.208.15', 2147483647, 2147483647, 'FR', 'France'), +('212.197.208.16', '212.197.208.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.197.208.32', '212.197.208.47', 2147483647, 2147483647, 'FR', 'France'), +('212.197.208.48', '212.197.208.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.197.208.64', '212.197.208.143', 2147483647, 2147483647, 'FR', 'France'), +('212.197.208.144', '212.197.208.159', 2147483647, 2147483647, 'IE', 'Ireland'), +('212.197.208.160', '212.197.208.175', 2147483647, 2147483647, 'FR', 'France'), +('212.197.208.176', '212.197.208.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.197.208.192', '212.197.208.255', 2147483647, 2147483647, 'FR', 'France'), +('212.197.209.0', '212.197.209.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.197.209.32', '212.197.209.47', 2147483647, 2147483647, 'FR', 'France'), +('212.197.209.48', '212.197.209.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.197.209.64', '212.197.209.79', 2147483647, 2147483647, 'FR', 'France'), +('212.197.209.80', '212.197.209.95', 2147483647, 2147483647, 'ES', 'Spain'), +('212.197.209.96', '212.197.209.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.197.209.112', '212.197.209.159', 2147483647, 2147483647, 'FR', 'France'), +('212.197.209.160', '212.197.209.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.197.209.192', '212.197.209.255', 2147483647, 2147483647, 'FR', 'France'), +('212.197.210.0', '212.197.210.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.197.210.16', '212.197.210.47', 2147483647, 2147483647, 'FR', 'France'), +('212.197.210.48', '212.197.210.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.197.210.64', '212.197.210.223', 2147483647, 2147483647, 'FR', 'France'), +('212.197.210.224', '212.197.210.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.197.211.0', '212.197.211.47', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.197.211.48', '212.197.211.63', 2147483647, 2147483647, 'FR', 'France'), +('212.197.211.64', '212.197.211.111', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.197.211.112', '212.197.217.111', 2147483647, 2147483647, 'FR', 'France'), +('212.197.217.112', '212.197.217.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.197.217.128', '212.197.217.135', 2147483647, 2147483647, 'FR', 'France'), +('212.197.217.136', '212.197.217.143', 2147483647, 2147483647, 'ES', 'Spain'), +('212.197.217.144', '212.197.217.255', 2147483647, 2147483647, 'FR', 'France'), +('212.197.218.0', '212.197.218.31', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.197.218.32', '212.197.218.47', 2147483647, 2147483647, 'FR', 'France'), +('212.197.218.48', '212.197.218.191', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.197.218.192', '212.197.218.207', 2147483647, 2147483647, 'SE', 'Sweden'), +('212.197.218.208', '212.197.219.207', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.197.219.208', '212.197.219.223', 2147483647, 2147483647, 'FR', 'France'), +('212.197.219.224', '212.197.219.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.197.220.0', '212.197.229.255', 2147483647, 2147483647, 'FR', 'France'), +('212.197.230.0', '212.197.230.31', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.197.230.32', '212.197.230.63', 2147483647, 2147483647, 'FR', 'France'), +('212.197.230.64', '212.197.230.207', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.197.230.208', '212.197.230.223', 2147483647, 2147483647, 'FR', 'France'), +('212.197.230.224', '212.197.231.79', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.197.231.80', '212.197.231.111', 2147483647, 2147483647, 'FR', 'France'), +('212.197.231.112', '212.197.231.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.197.231.128', '212.197.231.143', 2147483647, 2147483647, 'FR', 'France'), +('212.197.231.144', '212.197.231.159', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.197.231.160', '212.197.231.175', 2147483647, 2147483647, 'FR', 'France'), +('212.197.231.176', '212.197.232.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.197.232.64', '212.197.232.79', 2147483647, 2147483647, 'FR', 'France'), +('212.197.232.80', '212.197.232.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.197.232.128', '212.197.232.143', 2147483647, 2147483647, 'FR', 'France'), +('212.197.232.144', '212.197.232.159', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.197.232.160', '212.197.232.175', 2147483647, 2147483647, 'FR', 'France'), +('212.197.232.176', '212.197.233.15', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.197.233.16', '212.197.233.31', 2147483647, 2147483647, 'FR', 'France'), +('212.197.233.32', '212.197.233.79', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.197.233.80', '212.197.233.95', 2147483647, 2147483647, 'FR', 'France'), +('212.197.233.96', '212.197.233.223', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.197.233.224', '212.197.233.239', 2147483647, 2147483647, 'FR', 'France'), +('212.197.233.240', '212.197.234.15', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.197.234.16', '212.197.234.31', 2147483647, 2147483647, 'FR', 'France'), +('212.197.234.32', '212.197.234.79', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.197.234.80', '212.197.234.95', 2147483647, 2147483647, 'FR', 'France'), +('212.197.234.96', '212.197.234.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.197.234.128', '212.197.234.143', 2147483647, 2147483647, 'FR', 'France'), +('212.197.234.144', '212.197.234.175', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.197.234.176', '212.197.234.191', 2147483647, 2147483647, 'FR', 'France'), +('212.197.234.192', '212.197.234.207', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.197.234.208', '212.197.234.223', 2147483647, 2147483647, 'FR', 'France'), +('212.197.234.224', '212.197.234.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.197.235.0', '212.197.235.15', 2147483647, 2147483647, 'FR', 'France'), +('212.197.235.16', '212.197.235.111', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.197.235.112', '212.197.235.127', 2147483647, 2147483647, 'FR', 'France'), +('212.197.235.128', '212.197.235.143', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.197.235.144', '212.197.235.159', 2147483647, 2147483647, 'FR', 'France'), +('212.197.235.160', '212.197.235.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.197.236.0', '212.197.237.255', 2147483647, 2147483647, 'FR', 'France'), +('212.197.238.0', '212.197.239.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.197.240.0', '212.197.240.19', 2147483647, 2147483647, 'FR', 'France'), +('212.197.240.20', '212.197.240.35', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.197.240.36', '212.197.241.255', 2147483647, 2147483647, 'FR', 'France'), +('212.197.242.0', '212.197.242.15', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.197.242.16', '212.197.242.47', 2147483647, 2147483647, 'FR', 'France'), +('212.197.242.48', '212.197.242.63', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.197.242.64', '212.197.242.79', 2147483647, 2147483647, 'FR', 'France'), +('212.197.242.80', '212.197.242.175', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.197.242.176', '212.197.242.191', 2147483647, 2147483647, 'FR', 'France'), +('212.197.242.192', '212.197.243.31', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.197.243.32', '212.197.243.47', 2147483647, 2147483647, 'FR', 'France'), +('212.197.243.48', '212.197.243.79', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.197.243.80', '212.197.243.95', 2147483647, 2147483647, 'FR', 'France'), +('212.197.243.96', '212.197.243.143', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.197.243.144', '212.197.243.159', 2147483647, 2147483647, 'FR', 'France'), +('212.197.243.160', '212.197.243.175', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.197.243.176', '212.197.243.191', 2147483647, 2147483647, 'FR', 'France'), +('212.197.243.192', '212.197.244.79', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.197.244.80', '212.197.244.95', 2147483647, 2147483647, 'FR', 'France'), +('212.197.244.96', '212.197.244.239', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.197.244.240', '212.197.244.255', 2147483647, 2147483647, 'FR', 'France'), +('212.197.245.0', '212.197.245.31', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.197.245.32', '212.197.245.95', 2147483647, 2147483647, 'FR', 'France'), +('212.197.245.96', '212.197.245.111', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.197.245.112', '212.197.245.255', 2147483647, 2147483647, 'FR', 'France'), +('212.197.246.0', '212.197.246.31', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.197.246.32', '212.197.246.47', 2147483647, 2147483647, 'FR', 'France'), +('212.197.246.48', '212.197.246.63', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.197.246.64', '212.197.246.95', 2147483647, 2147483647, 'FR', 'France'), +('212.197.246.96', '212.197.246.223', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.197.246.224', '212.197.246.239', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.197.246.240', '212.197.246.255', 2147483647, 2147483647, 'FR', 'France'), +('212.197.247.0', '212.197.247.15', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.197.247.16', '212.197.247.31', 2147483647, 2147483647, 'FR', 'France'), +('212.197.247.32', '212.197.247.63', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.197.247.64', '212.197.247.95', 2147483647, 2147483647, 'FR', 'France'), +('212.197.247.96', '212.197.247.159', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.197.247.160', '212.197.247.175', 2147483647, 2147483647, 'FR', 'France'), +('212.197.247.176', '212.197.247.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.197.248.0', '212.197.248.111', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.197.248.112', '212.197.248.127', 2147483647, 2147483647, 'FR', 'France'), +('212.197.248.128', '212.197.248.175', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.197.248.176', '212.197.248.191', 2147483647, 2147483647, 'FR', 'France'), +('212.197.248.192', '212.197.248.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.197.249.0', '212.197.249.15', 2147483647, 2147483647, 'FR', 'France'), +('212.197.249.16', '212.197.250.159', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.197.250.160', '212.197.250.175', 2147483647, 2147483647, 'FR', 'France'), +('212.197.250.176', '212.197.250.191', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.197.250.192', '212.197.250.239', 2147483647, 2147483647, 'FR', 'France'), +('212.197.250.240', '212.197.251.175', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.197.251.176', '212.197.251.191', 2147483647, 2147483647, 'FR', 'France'), +('212.197.251.192', '212.197.252.15', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.197.252.16', '212.197.252.31', 2147483647, 2147483647, 'FR', 'France'), +('212.197.252.32', '212.197.252.79', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.197.252.80', '212.197.252.95', 2147483647, 2147483647, 'FR', 'France'), +('212.197.252.96', '212.197.252.111', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.197.252.112', '212.197.252.127', 2147483647, 2147483647, 'FR', 'France'), +('212.197.252.128', '212.197.252.143', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.197.252.144', '212.197.252.159', 2147483647, 2147483647, 'FR', 'France'), +('212.197.252.160', '212.197.252.207', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.197.252.208', '212.197.252.223', 2147483647, 2147483647, 'FR', 'France'), +('212.197.252.224', '212.197.253.15', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.197.253.16', '212.197.253.31', 2147483647, 2147483647, 'FR', 'France'), +('212.197.253.32', '212.197.253.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.197.253.64', '212.197.253.79', 2147483647, 2147483647, 'FR', 'France'), +('212.197.253.80', '212.197.253.95', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.197.253.96', '212.197.253.127', 2147483647, 2147483647, 'FR', 'France'), +('212.197.253.128', '212.197.253.159', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.197.253.160', '212.197.253.175', 2147483647, 2147483647, 'FR', 'France'), +('212.197.253.176', '212.197.253.207', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.197.253.208', '212.197.253.223', 2147483647, 2147483647, 'FR', 'France'), +('212.197.253.224', '212.197.253.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.197.254.0', '212.197.254.255', 2147483647, 2147483647, 'FR', 'France'), +('212.197.255.0', '212.197.255.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.197.255.64', '212.197.255.79', 2147483647, 2147483647, 'FR', 'France'), +('212.197.255.80', '212.197.255.149', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.197.255.150', '212.197.255.159', 2147483647, 2147483647, 'FR', 'France'), +('212.197.255.160', '212.197.255.175', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.197.255.176', '212.197.255.207', 2147483647, 2147483647, 'FR', 'France'), +('212.197.255.208', '212.197.255.223', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.197.255.224', '212.197.255.239', 2147483647, 2147483647, 'FR', 'France'), +('212.197.255.240', '212.197.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.198.0.0', '212.198.255.255', 2147483647, 2147483647, 'FR', 'France'), +('212.199.0.0', '212.199.74.63', 2147483647, 2147483647, 'IL', 'Israel'), +('212.199.74.64', '212.199.74.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.199.74.128', '212.199.158.31', 2147483647, 2147483647, 'IL', 'Israel'), +('212.199.158.32', '212.199.158.47', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('212.199.158.48', '212.199.158.63', 2147483647, 2147483647, 'IL', 'Israel'), +('212.199.158.64', '212.199.158.95', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('212.199.158.96', '212.199.158.127', 2147483647, 2147483647, 'IL', 'Israel'), +('212.199.158.128', '212.199.158.143', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('212.199.158.144', '212.199.197.255', 2147483647, 2147483647, 'IL', 'Israel'), +('212.199.198.0', '212.199.198.15', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('212.199.198.16', '212.199.255.255', 2147483647, 2147483647, 'IL', 'Israel'), +('212.200.0.0', '212.200.255.255', 2147483647, 2147483647, 'RS', 'Serbia'), +('212.201.0.0', '212.202.221.119', 2147483647, 2147483647, 'DE', 'Germany'), +('212.202.221.120', '212.202.221.127', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('212.202.221.128', '212.202.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.203.0.0', '212.203.13.15', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.203.13.16', '212.203.13.23', 2147483647, 2147483647, 'PH', 'Philippines'), +('212.203.13.24', '212.203.31.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.203.32.0', '212.203.90.191', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.203.90.192', '212.203.90.255', 2147483647, 2147483647, 'US', 'United States'), +('212.203.91.0', '212.203.127.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.203.128.0', '212.203.255.255', 2147483647, 2147483647, 'PL', 'Poland'), +('212.204.0.0', '212.204.120.223', 2147483647, 2147483647, 'DE', 'Germany'), +('212.204.120.224', '212.204.120.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.204.121.0', '212.204.127.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.204.128.0', '212.204.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.205.0.0', '212.205.255.255', 2147483647, 2147483647, 'GR', 'Greece'), +('212.206.0.0', '212.206.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.207.0.0', '212.207.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.208.0.0', '212.208.161.191', 2147483647, 2147483647, 'FR', 'France'), +('212.208.161.192', '212.208.161.199', 2147483647, 2147483647, 'IT', 'Italy'), +('212.208.161.200', '212.208.255.255', 2147483647, 2147483647, 'FR', 'France'), +('212.209.0.0', '212.209.158.175', 2147483647, 2147483647, 'SE', 'Sweden'), +('212.209.158.176', '212.209.158.191', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.209.158.192', '212.209.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('212.210.0.0', '212.210.255.255', 2147483647, 2147483647, 'IT', 'Italy'), +('212.211.0.0', '212.211.35.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.211.36.0', '212.211.39.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.211.40.0', '212.211.51.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.211.52.0', '212.211.52.255', 2147483647, 2147483647, 'FR', 'France'), +('212.211.53.0', '212.211.63.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.211.64.0', '212.211.75.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.211.76.0', '212.211.77.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.211.78.0', '212.211.95.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.211.96.0', '212.211.127.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.211.128.0', '212.211.138.127', 2147483647, 2147483647, 'DE', 'Germany'), +('212.211.138.128', '212.211.138.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.211.139.0', '212.211.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.212.0.0', '212.212.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.213.0.0', '212.213.3.255', 2147483647, 2147483647, 'FI', 'Finland'), +('212.213.4.0', '212.213.7.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('212.213.8.0', '212.213.95.31', 2147483647, 2147483647, 'FI', 'Finland'), +('212.213.95.32', '212.213.95.47', 2147483647, 2147483647, 'AX', 'Aland Islands'), +('212.213.95.48', '212.213.106.95', 2147483647, 2147483647, 'FI', 'Finland'), +('212.213.106.96', '212.213.106.127', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.213.106.128', '212.213.123.95', 2147483647, 2147483647, 'FI', 'Finland'), +('212.213.123.96', '212.213.123.127', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.213.123.128', '212.213.255.255', 2147483647, 2147483647, 'FI', 'Finland'), +('212.214.0.0', '212.214.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('212.215.0.0', '212.215.127.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.215.128.0', '212.215.255.255', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('212.216.0.0', '212.216.255.255', 2147483647, 2147483647, 'IT', 'Italy'), +('212.217.0.0', '212.217.127.255', 2147483647, 2147483647, 'MA', 'Morocco'), +('212.217.128.0', '212.217.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('212.218.0.0', '212.218.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.219.0.0', '212.219.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.220.0.0', '212.220.255.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.221.0.0', '212.221.24.159', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.221.24.160', '212.221.24.191', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('212.221.24.192', '212.221.31.175', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.221.31.176', '212.221.31.183', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('212.221.31.184', '212.221.35.127', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.221.35.128', '212.221.35.159', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('212.221.35.160', '212.221.44.95', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.221.44.96', '212.221.44.127', 2147483647, 2147483647, 'FR', 'France'), +('212.221.44.128', '212.221.49.143', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.221.49.144', '212.221.49.159', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('212.221.49.160', '212.221.54.127', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.221.54.128', '212.221.54.191', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('212.221.54.192', '212.221.59.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.221.60.0', '212.221.60.31', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('212.221.60.32', '212.221.64.191', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.221.64.192', '212.221.64.223', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('212.221.64.224', '212.221.70.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.221.71.0', '212.221.71.15', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('212.221.71.16', '212.221.71.127', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.221.71.128', '212.221.71.255', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('212.221.72.0', '212.221.74.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.221.75.0', '212.221.75.127', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('212.221.75.128', '212.221.93.63', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.221.93.64', '212.221.93.95', 2147483647, 2147483647, 'DE', 'Germany'), +('212.221.93.96', '212.221.127.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.221.128.0', '212.222.8.223', 2147483647, 2147483647, 'DE', 'Germany'), +('212.222.8.224', '212.222.8.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.222.9.0', '212.222.29.47', 2147483647, 2147483647, 'DE', 'Germany'), +('212.222.29.48', '212.222.29.51', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.222.29.52', '212.222.96.135', 2147483647, 2147483647, 'DE', 'Germany'), +('212.222.96.136', '212.222.96.143', 2147483647, 2147483647, 'ES', 'Spain'), +('212.222.96.144', '212.222.111.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.222.112.0', '212.222.112.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.222.113.0', '212.222.120.239', 2147483647, 2147483647, 'DE', 'Germany'), +('212.222.120.240', '212.222.120.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.222.121.0', '212.222.121.31', 2147483647, 2147483647, 'DE', 'Germany'), +('212.222.121.32', '212.222.121.39', 2147483647, 2147483647, 'SE', 'Sweden'), +('212.222.121.40', '212.222.121.47', 2147483647, 2147483647, 'DE', 'Germany'), +('212.222.121.48', '212.222.121.55', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.222.121.56', '212.222.121.59', 2147483647, 2147483647, 'SE', 'Sweden'), +('212.222.121.60', '212.222.180.87', 2147483647, 2147483647, 'DE', 'Germany'), +('212.222.180.88', '212.222.180.91', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.222.180.92', '212.222.185.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.222.186.0', '212.222.186.111', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.222.186.112', '212.222.236.111', 2147483647, 2147483647, 'DE', 'Germany'), +('212.222.236.112', '212.222.236.115', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.222.236.116', '212.222.245.127', 2147483647, 2147483647, 'DE', 'Germany'), +('212.222.245.128', '212.222.245.191', 2147483647, 2147483647, 'AT', 'Austria'), +('212.222.245.192', '212.222.249.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.222.250.0', '212.222.250.255', 2147483647, 2147483647, 'AT', 'Austria'), +('212.222.251.0', '212.222.251.95', 2147483647, 2147483647, 'DE', 'Germany'), +('212.222.251.96', '212.222.251.111', 2147483647, 2147483647, 'AT', 'Austria'), +('212.222.251.112', '212.223.3.63', 2147483647, 2147483647, 'DE', 'Germany'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('212.223.3.64', '212.223.3.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.223.3.96', '212.223.5.31', 2147483647, 2147483647, 'DE', 'Germany'), +('212.223.5.32', '212.223.5.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.223.5.64', '212.223.20.31', 2147483647, 2147483647, 'DE', 'Germany'), +('212.223.20.32', '212.223.20.35', 2147483647, 2147483647, 'ES', 'Spain'), +('212.223.20.36', '212.223.20.63', 2147483647, 2147483647, 'DE', 'Germany'), +('212.223.20.64', '212.223.20.79', 2147483647, 2147483647, 'HU', 'Hungary'), +('212.223.20.80', '212.223.161.159', 2147483647, 2147483647, 'DE', 'Germany'), +('212.223.161.160', '212.223.161.191', 2147483647, 2147483647, 'ES', 'Spain'), +('212.223.161.192', '212.223.166.79', 2147483647, 2147483647, 'DE', 'Germany'), +('212.223.166.80', '212.223.166.87', 2147483647, 2147483647, 'ES', 'Spain'), +('212.223.166.88', '212.223.166.115', 2147483647, 2147483647, 'DE', 'Germany'), +('212.223.166.116', '212.223.166.119', 2147483647, 2147483647, 'ES', 'Spain'), +('212.223.166.120', '212.224.26.63', 2147483647, 2147483647, 'DE', 'Germany'), +('212.224.26.64', '212.224.26.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.224.26.80', '212.224.87.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.224.88.0', '212.224.88.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.224.89.0', '212.224.122.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.224.123.0', '212.224.123.15', 2147483647, 2147483647, 'AT', 'Austria'), +('212.224.123.16', '212.224.123.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.224.124.0', '212.224.124.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.224.125.0', '212.224.126.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.224.127.0', '212.224.127.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.224.128.0', '212.224.255.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.225.0.0', '212.225.127.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.225.128.0', '212.225.255.255', 2147483647, 2147483647, 'ES', 'Spain'), +('212.226.0.0', '212.226.57.207', 2147483647, 2147483647, 'FI', 'Finland'), +('212.226.57.208', '212.226.57.223', 2147483647, 2147483647, 'AX', 'Aland Islands'), +('212.226.57.224', '212.226.255.255', 2147483647, 2147483647, 'FI', 'Finland'), +('212.227.0.0', '212.227.114.31', 2147483647, 2147483647, 'DE', 'Germany'), +('212.227.114.32', '212.227.114.39', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.227.114.40', '212.227.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('212.228.0.0', '212.229.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.230.0.0', '212.231.255.255', 2147483647, 2147483647, 'ES', 'Spain'), +('212.232.0.0', '212.232.127.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('212.232.128.0', '212.232.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.233.0.0', '212.233.31.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.233.32.0', '212.233.37.255', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('212.233.38.0', '212.233.42.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.233.43.0', '212.233.46.255', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('212.233.47.0', '212.233.47.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.233.48.0', '212.233.63.255', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('212.233.64.0', '212.233.127.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.233.128.0', '212.233.255.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('212.234.0.0', '212.234.3.111', 2147483647, 2147483647, 'FR', 'France'), +('212.234.3.112', '212.234.3.127', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('212.234.3.128', '212.234.44.47', 2147483647, 2147483647, 'FR', 'France'), +('212.234.44.48', '212.234.44.55', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('212.234.44.56', '212.234.255.255', 2147483647, 2147483647, 'FR', 'France'), +('212.235.0.0', '212.235.97.207', 2147483647, 2147483647, 'IL', 'Israel'), +('212.235.97.208', '212.235.97.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.235.97.224', '212.235.127.255', 2147483647, 2147483647, 'IL', 'Israel'), +('212.235.128.0', '212.235.255.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('212.236.0.0', '212.236.255.255', 2147483647, 2147483647, 'AT', 'Austria'), +('212.237.0.0', '212.237.255.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('212.238.0.0', '212.238.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.239.0.0', '212.239.12.79', 2147483647, 2147483647, 'IT', 'Italy'), +('212.239.12.80', '212.239.12.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.239.12.96', '212.239.37.127', 2147483647, 2147483647, 'IT', 'Italy'), +('212.239.37.128', '212.239.37.143', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.239.37.144', '212.239.55.255', 2147483647, 2147483647, 'IT', 'Italy'), +('212.239.56.0', '212.239.56.7', 2147483647, 2147483647, 'AT', 'Austria'), +('212.239.56.8', '212.239.56.15', 2147483647, 2147483647, 'FR', 'France'), +('212.239.56.16', '212.239.56.23', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.239.56.24', '212.239.56.31', 2147483647, 2147483647, 'ES', 'Spain'), +('212.239.56.32', '212.239.127.255', 2147483647, 2147483647, 'IT', 'Italy'), +('212.239.128.0', '212.239.255.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('212.240.0.0', '212.240.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.241.0.0', '212.241.31.255', 2147483647, 2147483647, 'KG', 'Kyrgyzstan'), +('212.241.32.0', '212.241.63.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.241.64.0', '212.241.127.255', 2147483647, 2147483647, 'AT', 'Austria'), +('212.241.128.0', '212.241.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.242.0.0', '212.242.255.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('212.243.0.0', '212.243.38.183', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.243.38.184', '212.243.38.191', 2147483647, 2147483647, 'DE', 'Germany'), +('212.243.38.192', '212.243.40.199', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.243.40.200', '212.243.40.207', 2147483647, 2147483647, 'NL', 'Netherlands'), +('212.243.40.208', '212.243.79.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.243.80.0', '212.243.80.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.243.81.0', '212.243.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.244.0.0', '212.244.255.255', 2147483647, 2147483647, 'PL', 'Poland'), +('212.245.0.0', '212.245.255.255', 2147483647, 2147483647, 'IT', 'Italy'), +('212.246.0.0', '212.246.255.247', 2147483647, 2147483647, 'FI', 'Finland'), +('212.246.255.248', '212.246.255.255', 2147483647, 2147483647, 'AX', 'Aland Islands'), +('212.247.0.0', '212.247.70.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('212.247.71.0', '212.247.71.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('212.247.72.0', '212.247.92.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('212.247.93.0', '212.247.93.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('212.247.94.0', '212.247.105.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('212.247.106.0', '212.247.106.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('212.247.107.0', '212.247.113.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('212.247.114.0', '212.247.114.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('212.247.115.0', '212.247.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('212.248.0.0', '212.248.127.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('212.248.128.0', '212.248.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.249.0.0', '212.249.209.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.249.210.0', '212.249.210.255', 2147483647, 2147483647, 'AT', 'Austria'), +('212.249.211.0', '212.249.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.250.0.0', '212.250.85.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.250.85.160', '212.250.85.175', 2147483647, 2147483647, 'IE', 'Ireland'), +('212.250.85.176', '212.250.213.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.250.213.192', '212.250.213.223', 2147483647, 2147483647, 'IE', 'Ireland'), +('212.250.213.224', '212.250.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('212.251.0.0', '212.251.127.255', 2147483647, 2147483647, 'GR', 'Greece'), +('212.251.128.0', '212.251.255.255', 2147483647, 2147483647, 'NO', 'Norway'), +('212.252.0.0', '212.253.255.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('212.254.0.0', '212.254.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('212.255.0.0', '212.255.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.0.0.0', '213.0.255.255', 2147483647, 2147483647, 'ES', 'Spain'), +('213.1.0.0', '213.2.215.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.2.216.0', '213.2.219.255', 2147483647, 2147483647, 'IT', 'Italy'), +('213.2.220.0', '213.2.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.3.0.0', '213.3.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('213.4.0.0', '213.4.255.255', 2147483647, 2147483647, 'ES', 'Spain'), +('213.5.0.0', '213.5.255.255', 2147483647, 2147483647, 'GR', 'Greece'), +('213.6.0.0', '213.6.255.255', 2147483647, 2147483647, 'PS', 'Palestinian Territory, Occupied'), +('213.7.0.0', '213.7.255.255', 2147483647, 2147483647, 'CY', 'Cyprus'), +('213.8.0.0', '213.8.255.255', 2147483647, 2147483647, 'IL', 'Israel'), +('213.9.0.0', '213.9.3.183', 2147483647, 2147483647, 'DE', 'Germany'), +('213.9.3.184', '213.9.3.191', 2147483647, 2147483647, 'AT', 'Austria'), +('213.9.3.192', '213.9.6.191', 2147483647, 2147483647, 'DE', 'Germany'), +('213.9.6.192', '213.9.6.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.9.7.0', '213.9.7.111', 2147483647, 2147483647, 'DE', 'Germany'), +('213.9.7.112', '213.9.7.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.9.7.128', '213.9.7.143', 2147483647, 2147483647, 'DE', 'Germany'), +('213.9.7.144', '213.9.7.151', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.9.7.152', '213.9.58.143', 2147483647, 2147483647, 'DE', 'Germany'), +('213.9.58.144', '213.9.58.151', 2147483647, 2147483647, 'AT', 'Austria'), +('213.9.58.152', '213.9.64.135', 2147483647, 2147483647, 'DE', 'Germany'), +('213.9.64.136', '213.9.64.143', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('213.9.64.144', '213.9.64.151', 2147483647, 2147483647, 'AT', 'Austria'), +('213.9.64.152', '213.9.65.143', 2147483647, 2147483647, 'DE', 'Germany'), +('213.9.65.144', '213.9.65.151', 2147483647, 2147483647, 'AT', 'Austria'), +('213.9.65.152', '213.9.66.3', 2147483647, 2147483647, 'DE', 'Germany'), +('213.9.66.4', '213.9.66.7', 2147483647, 2147483647, 'HU', 'Hungary'), +('213.9.66.8', '213.9.70.79', 2147483647, 2147483647, 'DE', 'Germany'), +('213.9.70.80', '213.9.70.95', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('213.9.70.96', '213.9.73.31', 2147483647, 2147483647, 'DE', 'Germany'), +('213.9.73.32', '213.9.73.63', 2147483647, 2147483647, 'CH', 'Switzerland'), +('213.9.73.64', '213.9.73.71', 2147483647, 2147483647, 'DE', 'Germany'), +('213.9.73.72', '213.9.73.75', 2147483647, 2147483647, 'FR', 'France'), +('213.9.73.76', '213.9.73.207', 2147483647, 2147483647, 'DE', 'Germany'), +('213.9.73.208', '213.9.73.211', 2147483647, 2147483647, 'AT', 'Austria'), +('213.9.73.212', '213.9.73.219', 2147483647, 2147483647, 'DE', 'Germany'), +('213.9.73.220', '213.9.73.223', 2147483647, 2147483647, 'AT', 'Austria'), +('213.9.73.224', '213.9.74.43', 2147483647, 2147483647, 'DE', 'Germany'), +('213.9.74.44', '213.9.74.47', 2147483647, 2147483647, 'NO', 'Norway'), +('213.9.74.48', '213.9.74.75', 2147483647, 2147483647, 'DE', 'Germany'), +('213.9.74.76', '213.9.74.79', 2147483647, 2147483647, 'NO', 'Norway'), +('213.9.74.80', '213.9.74.83', 2147483647, 2147483647, 'DE', 'Germany'), +('213.9.74.84', '213.9.74.87', 2147483647, 2147483647, 'NO', 'Norway'), +('213.9.74.88', '213.9.89.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.9.90.0', '213.9.90.3', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.9.90.4', '213.9.90.47', 2147483647, 2147483647, 'DE', 'Germany'), +('213.9.90.48', '213.9.90.55', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.9.90.56', '213.9.94.35', 2147483647, 2147483647, 'DE', 'Germany'), +('213.9.94.36', '213.9.94.39', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.9.94.40', '213.9.94.63', 2147483647, 2147483647, 'DE', 'Germany'), +('213.9.94.64', '213.9.94.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.9.94.128', '213.9.94.143', 2147483647, 2147483647, 'DE', 'Germany'), +('213.9.94.144', '213.9.94.147', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.9.94.148', '213.9.94.159', 2147483647, 2147483647, 'DE', 'Germany'), +('213.9.94.160', '213.9.94.191', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.9.94.192', '213.9.94.211', 2147483647, 2147483647, 'DE', 'Germany'), +('213.9.94.212', '213.9.94.215', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.9.94.216', '213.9.95.19', 2147483647, 2147483647, 'DE', 'Germany'), +('213.9.95.20', '213.9.95.23', 2147483647, 2147483647, 'NO', 'Norway'), +('213.9.95.24', '213.9.95.167', 2147483647, 2147483647, 'DE', 'Germany'), +('213.9.95.168', '213.9.95.171', 2147483647, 2147483647, 'NO', 'Norway'), +('213.9.95.172', '213.9.95.183', 2147483647, 2147483647, 'DE', 'Germany'), +('213.9.95.184', '213.9.95.187', 2147483647, 2147483647, 'AI', 'Anguilla'), +('213.9.95.188', '213.9.95.191', 2147483647, 2147483647, 'AT', 'Austria'), +('213.9.95.192', '213.9.95.231', 2147483647, 2147483647, 'DE', 'Germany'), +('213.9.95.232', '213.9.95.235', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.9.95.236', '213.9.95.239', 2147483647, 2147483647, 'DE', 'Germany'), +('213.9.95.240', '213.9.95.243', 2147483647, 2147483647, 'NO', 'Norway'), +('213.9.95.244', '213.9.127.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.9.128.0', '213.9.255.255', 2147483647, 2147483647, 'ES', 'Spain'), +('213.10.0.0', '213.10.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.11.0.0', '213.11.255.255', 2147483647, 2147483647, 'FR', 'France'), +('213.12.0.0', '213.12.31.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.12.32.0', '213.12.57.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.12.58.0', '213.12.58.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.12.59.0', '213.12.255.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.13.0.0', '213.13.255.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('213.14.0.0', '213.14.255.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('213.15.0.0', '213.15.131.95', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.15.131.96', '213.15.131.111', 2147483647, 2147483647, 'FI', 'Finland'), +('213.15.131.112', '213.15.131.143', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.15.131.144', '213.15.131.191', 2147483647, 2147483647, 'FI', 'Finland'), +('213.15.131.192', '213.15.131.223', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.15.131.224', '213.15.131.239', 2147483647, 2147483647, 'FI', 'Finland'), +('213.15.131.240', '213.15.131.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.15.132.0', '213.15.135.255', 2147483647, 2147483647, 'FI', 'Finland'), +('213.15.136.0', '213.15.139.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.15.140.0', '213.15.140.63', 2147483647, 2147483647, 'FI', 'Finland'), +('213.15.140.64', '213.15.141.63', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.15.141.64', '213.15.141.127', 2147483647, 2147483647, 'FI', 'Finland'), +('213.15.141.128', '213.15.142.47', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.15.142.48', '213.15.142.63', 2147483647, 2147483647, 'FI', 'Finland'), +('213.15.142.64', '213.15.251.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.15.252.0', '213.15.252.7', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.15.252.8', '213.15.252.15', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.15.252.16', '213.15.252.153', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.15.252.154', '213.15.252.159', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.15.252.160', '213.15.252.161', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.15.252.162', '213.15.252.166', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.15.252.167', '213.15.252.185', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.15.252.186', '213.15.252.190', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.15.252.191', '213.15.252.193', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.15.252.194', '213.15.252.198', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.15.252.199', '213.15.252.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.15.252.224', '213.15.252.231', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.15.252.232', '213.15.255.199', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.15.255.200', '213.15.255.215', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.15.255.216', '213.15.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.16.0.0', '213.16.0.255', 2147483647, 2147483647, 'FR', 'France'), +('213.16.1.0', '213.16.1.255', 2147483647, 2147483647, 'MQ', 'Martinique'), +('213.16.2.0', '213.16.2.255', 2147483647, 2147483647, 'FR', 'France'), +('213.16.3.0', '213.16.4.255', 2147483647, 2147483647, 'MQ', 'Martinique'), +('213.16.5.0', '213.16.5.255', 2147483647, 2147483647, 'FR', 'France'), +('213.16.6.0', '213.16.8.255', 2147483647, 2147483647, 'MQ', 'Martinique'), +('213.16.9.0', '213.16.9.255', 2147483647, 2147483647, 'GP', 'Guadeloupe'), +('213.16.10.0', '213.16.10.255', 2147483647, 2147483647, 'FR', 'France'), +('213.16.11.0', '213.16.11.255', 2147483647, 2147483647, 'RE', 'Reunion'), +('213.16.12.0', '213.16.15.255', 2147483647, 2147483647, 'MQ', 'Martinique'), +('213.16.16.0', '213.16.17.255', 2147483647, 2147483647, 'FR', 'France'), +('213.16.18.0', '213.16.21.255', 2147483647, 2147483647, 'MQ', 'Martinique'), +('213.16.22.0', '213.16.22.255', 2147483647, 2147483647, 'RE', 'Reunion'), +('213.16.23.0', '213.16.24.255', 2147483647, 2147483647, 'MQ', 'Martinique'), +('213.16.25.0', '213.16.25.255', 2147483647, 2147483647, 'GF', 'French Guiana'), +('213.16.26.0', '213.16.26.255', 2147483647, 2147483647, 'FR', 'France'), +('213.16.27.0', '213.16.29.255', 2147483647, 2147483647, 'MQ', 'Martinique'), +('213.16.30.0', '213.16.31.255', 2147483647, 2147483647, 'FR', 'France'), +('213.16.32.0', '213.16.63.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('213.16.64.0', '213.16.127.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('213.16.128.0', '213.16.255.255', 2147483647, 2147483647, 'GR', 'Greece'), +('213.17.0.0', '213.17.127.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.17.128.0', '213.17.255.255', 2147483647, 2147483647, 'PL', 'Poland'), +('213.18.0.0', '213.18.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.19.0.0', '213.19.127.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('213.19.128.0', '213.19.129.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.19.129.64', '213.19.129.191', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.19.129.192', '213.19.129.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.19.130.0', '213.19.132.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.19.132.128', '213.19.132.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.19.133.0', '213.19.144.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.19.145.0', '213.19.145.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.19.146.0', '213.19.146.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.19.147.0', '213.19.147.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.19.148.0', '213.19.152.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.19.153.0', '213.19.160.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.19.160.128', '213.19.160.159', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.19.160.160', '213.19.160.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.19.160.192', '213.19.160.207', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.19.160.208', '213.19.160.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.19.161.0', '213.19.161.31', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.19.161.32', '213.19.162.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.19.163.0', '213.19.163.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.19.164.0', '213.19.164.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.19.165.0', '213.19.165.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.19.165.128', '213.19.165.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.19.166.0', '213.19.167.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.19.168.0', '213.19.172.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.19.172.128', '213.19.178.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.19.179.0', '213.19.179.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.19.180.0', '213.19.180.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.19.181.0', '213.19.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.20.0.0', '213.20.232.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.20.233.0', '213.20.233.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('213.20.234.0', '213.20.240.191', 2147483647, 2147483647, 'DE', 'Germany'), +('213.20.240.192', '213.20.240.223', 2147483647, 2147483647, 'FR', 'France'), +('213.20.240.224', '213.20.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.21.0.0', '213.21.63.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('213.21.64.0', '213.21.127.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.21.128.0', '213.21.191.255', 2147483647, 2147483647, 'IT', 'Italy'), +('213.21.192.0', '213.21.255.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('213.22.0.0', '213.22.255.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('213.23.0.0', '213.23.124.95', 2147483647, 2147483647, 'DE', 'Germany'), +('213.23.124.96', '213.23.124.127', 2147483647, 2147483647, 'MT', 'Malta'), +('213.23.124.128', '213.23.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.24.0.0', '213.24.255.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('213.25.0.0', '213.25.255.255', 2147483647, 2147483647, 'PL', 'Poland'), +('213.26.0.0', '213.26.255.255', 2147483647, 2147483647, 'IT', 'Italy'), +('213.27.0.0', '213.27.127.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('213.27.128.0', '213.27.151.95', 2147483647, 2147483647, 'ES', 'Spain'), +('213.27.151.96', '213.27.151.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.27.151.112', '213.27.197.199', 2147483647, 2147483647, 'ES', 'Spain'), +('213.27.197.200', '213.27.197.207', 2147483647, 2147483647, 'DE', 'Germany'), +('213.27.197.208', '213.27.217.207', 2147483647, 2147483647, 'ES', 'Spain'), +('213.27.217.208', '213.27.217.215', 2147483647, 2147483647, 'PT', 'Portugal'), +('213.27.217.216', '213.27.255.255', 2147483647, 2147483647, 'ES', 'Spain'), +('213.28.0.0', '213.28.120.255', 2147483647, 2147483647, 'FI', 'Finland'), +('213.28.121.0', '213.28.121.127', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('213.28.121.128', '213.28.126.103', 2147483647, 2147483647, 'FI', 'Finland'), +('213.28.126.104', '213.28.126.111', 2147483647, 2147483647, 'AX', 'Aland Islands'), +('213.28.126.112', '213.28.147.255', 2147483647, 2147483647, 'FI', 'Finland'), +('213.28.148.0', '213.28.148.15', 2147483647, 2147483647, 'AX', 'Aland Islands'), +('213.28.148.16', '213.28.148.223', 2147483647, 2147483647, 'FI', 'Finland'), +('213.28.148.224', '213.28.148.255', 2147483647, 2147483647, 'AX', 'Aland Islands'), +('213.28.149.0', '213.28.255.255', 2147483647, 2147483647, 'FI', 'Finland'), +('213.29.0.0', '213.29.255.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('213.30.0.0', '213.30.127.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('213.30.128.0', '213.30.191.255', 2147483647, 2147483647, 'FR', 'France'), +('213.30.192.0', '213.30.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.31.0.0', '213.31.7.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.8.0', '213.31.8.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.31.9.0', '213.31.10.255', 2147483647, 2147483647, 'ES', 'Spain'), +('213.31.11.0', '213.31.11.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.31.11.128', '213.31.11.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.12.0', '213.31.12.127', 2147483647, 2147483647, 'FR', 'France'), +('213.31.12.128', '213.31.12.255', 2147483647, 2147483647, 'ES', 'Spain'), +('213.31.13.0', '213.31.13.255', 2147483647, 2147483647, 'GR', 'Greece'), +('213.31.14.0', '213.31.17.127', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.17.128', '213.31.17.135', 2147483647, 2147483647, 'HU', 'Hungary'), +('213.31.17.136', '213.31.20.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.21.0', '213.31.21.255', 2147483647, 2147483647, 'FR', 'France'), +('213.31.22.0', '213.31.32.127', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.32.128', '213.31.32.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.31.33.0', '213.31.33.31', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.33.32', '213.31.33.47', 2147483647, 2147483647, 'ES', 'Spain'), +('213.31.33.48', '213.31.33.63', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.33.64', '213.31.33.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.31.33.80', '213.31.33.175', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.33.176', '213.31.33.183', 2147483647, 2147483647, 'FR', 'France'), +('213.31.33.184', '213.31.33.191', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.33.192', '213.31.33.199', 2147483647, 2147483647, 'CH', 'Switzerland'), +('213.31.33.200', '213.31.33.223', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.33.224', '213.31.33.239', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('213.31.33.240', '213.31.35.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.36.0', '213.31.37.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.31.38.0', '213.31.39.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.40.0', '213.31.41.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.31.42.0', '213.31.45.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.46.0', '213.31.47.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.31.48.0', '213.31.171.207', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.171.208', '213.31.171.211', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.31.171.212', '213.31.171.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.172.0', '213.31.172.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.31.172.160', '213.31.172.191', 2147483647, 2147483647, 'DK', 'Denmark'), +('213.31.172.192', '213.31.172.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.173.0', '213.31.173.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.31.174.0', '213.31.179.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.180.0', '213.31.180.127', 2147483647, 2147483647, 'FR', 'France'), +('213.31.180.128', '213.31.180.135', 2147483647, 2147483647, 'PT', 'Portugal'), +('213.31.180.136', '213.31.180.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.31.180.160', '213.31.180.191', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.180.192', '213.31.180.207', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.31.180.208', '213.31.180.223', 2147483647, 2147483647, 'ES', 'Spain'), +('213.31.180.224', '213.31.180.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.31.180.240', '213.31.180.247', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.180.248', '213.31.180.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('213.31.181.0', '213.31.181.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.31.181.32', '213.31.181.39', 2147483647, 2147483647, 'IT', 'Italy'), +('213.31.181.40', '213.31.181.127', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.181.128', '213.31.181.135', 2147483647, 2147483647, 'US', 'United States'), +('213.31.181.136', '213.31.182.135', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.182.136', '213.31.182.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.31.182.144', '213.31.182.159', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.182.160', '213.31.182.191', 2147483647, 2147483647, 'IT', 'Italy'), +('213.31.182.192', '213.31.182.223', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.182.224', '213.31.182.239', 2147483647, 2147483647, 'ES', 'Spain'), +('213.31.182.240', '213.31.182.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.183.0', '213.31.183.31', 2147483647, 2147483647, 'NO', 'Norway'), +('213.31.183.32', '213.31.184.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.185.0', '213.31.185.7', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.31.185.8', '213.31.185.63', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.185.64', '213.31.185.127', 2147483647, 2147483647, 'FR', 'France'), +('213.31.185.128', '213.31.186.79', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.186.80', '213.31.186.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.31.186.96', '213.31.186.111', 2147483647, 2147483647, 'ES', 'Spain'), +('213.31.186.112', '213.31.186.127', 2147483647, 2147483647, 'DE', 'Germany'), +('213.31.186.128', '213.31.187.7', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.187.8', '213.31.187.15', 2147483647, 2147483647, 'CH', 'Switzerland'), +('213.31.187.16', '213.31.187.23', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.187.24', '213.31.187.31', 2147483647, 2147483647, 'FR', 'France'), +('213.31.187.32', '213.31.187.71', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.187.72', '213.31.187.79', 2147483647, 2147483647, 'RO', 'Romania'), +('213.31.187.80', '213.31.187.103', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.187.104', '213.31.187.111', 2147483647, 2147483647, 'IE', 'Ireland'), +('213.31.187.112', '213.31.187.135', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.187.136', '213.31.187.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.31.187.144', '213.31.187.151', 2147483647, 2147483647, 'DE', 'Germany'), +('213.31.187.152', '213.31.187.159', 2147483647, 2147483647, 'IT', 'Italy'), +('213.31.187.160', '213.31.190.47', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.190.48', '213.31.190.63', 2147483647, 2147483647, 'ES', 'Spain'), +('213.31.190.64', '213.31.190.71', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.31.190.72', '213.31.190.95', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.190.96', '213.31.190.103', 2147483647, 2147483647, 'ES', 'Spain'), +('213.31.190.104', '213.31.190.159', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.190.160', '213.31.190.167', 2147483647, 2147483647, 'DE', 'Germany'), +('213.31.190.168', '213.31.190.223', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.190.224', '213.31.190.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.31.190.240', '213.31.191.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.192.0', '213.31.194.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.31.195.0', '213.31.195.87', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.195.88', '213.31.195.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.31.195.96', '213.31.196.15', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.196.16', '213.31.196.23', 2147483647, 2147483647, 'ES', 'Spain'), +('213.31.196.24', '213.31.196.31', 2147483647, 2147483647, 'FR', 'France'), +('213.31.196.32', '213.31.197.127', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.197.128', '213.31.197.191', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.31.197.192', '213.31.197.223', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.197.224', '213.31.197.231', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.31.197.232', '213.31.197.239', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.197.240', '213.31.197.247', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.31.197.248', '213.31.199.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.200.0', '213.31.200.31', 2147483647, 2147483647, 'GR', 'Greece'), +('213.31.200.32', '213.31.200.47', 2147483647, 2147483647, 'DE', 'Germany'), +('213.31.200.48', '213.31.200.111', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.200.112', '213.31.200.127', 2147483647, 2147483647, 'FR', 'France'), +('213.31.200.128', '213.31.200.191', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.200.192', '213.31.200.199', 2147483647, 2147483647, 'GR', 'Greece'), +('213.31.200.200', '213.31.200.239', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.200.240', '213.31.200.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('213.31.201.0', '213.31.201.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.31.202.0', '213.31.202.127', 2147483647, 2147483647, 'IT', 'Italy'), +('213.31.202.128', '213.31.202.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('213.31.203.0', '213.31.203.255', 2147483647, 2147483647, 'IL', 'Israel'), +('213.31.204.0', '213.31.204.127', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.204.128', '213.31.204.143', 2147483647, 2147483647, 'FR', 'France'), +('213.31.204.144', '213.31.204.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.205.0', '213.31.205.7', 2147483647, 2147483647, 'AT', 'Austria'), +('213.31.205.8', '213.31.205.15', 2147483647, 2147483647, 'CH', 'Switzerland'), +('213.31.205.16', '213.31.205.23', 2147483647, 2147483647, 'DE', 'Germany'), +('213.31.205.24', '213.31.205.31', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.205.32', '213.31.205.39', 2147483647, 2147483647, 'HU', 'Hungary'), +('213.31.205.40', '213.31.205.79', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.205.80', '213.31.205.95', 2147483647, 2147483647, 'HU', 'Hungary'), +('213.31.205.96', '213.31.205.103', 2147483647, 2147483647, 'IE', 'Ireland'), +('213.31.205.104', '213.31.205.127', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.205.128', '213.31.205.191', 2147483647, 2147483647, 'CH', 'Switzerland'), +('213.31.205.192', '213.31.205.199', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.205.200', '213.31.205.207', 2147483647, 2147483647, 'FI', 'Finland'), +('213.31.205.208', '213.31.206.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.207.0', '213.31.207.15', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.31.207.16', '213.31.207.23', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.31.207.24', '213.31.207.31', 2147483647, 2147483647, 'CH', 'Switzerland'), +('213.31.207.32', '213.31.207.47', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.31.207.48', '213.31.207.63', 2147483647, 2147483647, 'DE', 'Germany'), +('213.31.207.64', '213.31.207.79', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.31.207.80', '213.31.207.95', 2147483647, 2147483647, 'IT', 'Italy'), +('213.31.207.96', '213.31.207.143', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.207.144', '213.31.207.159', 2147483647, 2147483647, 'ZA', 'South Africa'), +('213.31.207.160', '213.31.207.175', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.207.176', '213.31.207.183', 2147483647, 2147483647, 'ES', 'Spain'), +('213.31.207.184', '213.31.207.191', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('213.31.207.192', '213.31.207.239', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.207.240', '213.31.207.247', 2147483647, 2147483647, 'ZA', 'South Africa'), +('213.31.207.248', '213.31.207.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.208.0', '213.31.210.255', 2147483647, 2147483647, 'IL', 'Israel'), +('213.31.211.0', '213.31.211.15', 2147483647, 2147483647, 'NO', 'Norway'), +('213.31.211.16', '213.31.211.63', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.211.64', '213.31.211.71', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.31.211.72', '213.31.211.143', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.211.144', '213.31.211.151', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.31.211.152', '213.31.211.191', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.211.192', '213.31.211.207', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.31.211.208', '213.31.211.223', 2147483647, 2147483647, 'CH', 'Switzerland'), +('213.31.211.224', '213.31.211.231', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.31.211.232', '213.31.211.239', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.211.240', '213.31.211.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.31.212.0', '213.31.212.71', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.212.72', '213.31.212.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.31.212.80', '213.31.212.95', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.212.96', '213.31.212.103', 2147483647, 2147483647, 'IT', 'Italy'), +('213.31.212.104', '213.31.212.143', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.212.144', '213.31.212.159', 2147483647, 2147483647, 'DE', 'Germany'), +('213.31.212.160', '213.31.212.167', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.31.212.168', '213.31.212.175', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.31.212.176', '213.31.212.191', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.212.192', '213.31.212.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.31.212.224', '213.31.212.239', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.212.240', '213.31.212.247', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.31.212.248', '213.31.214.191', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.214.192', '213.31.214.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.31.215.0', '213.31.215.63', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.215.64', '213.31.215.71', 2147483647, 2147483647, 'AT', 'Austria'), +('213.31.215.72', '213.31.215.79', 2147483647, 2147483647, 'IT', 'Italy'), +('213.31.215.80', '213.31.215.119', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.215.120', '213.31.215.127', 2147483647, 2147483647, 'DE', 'Germany'), +('213.31.215.128', '213.31.215.223', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.215.224', '213.31.215.231', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.31.215.232', '213.31.215.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.216.0', '213.31.216.63', 2147483647, 2147483647, 'CH', 'Switzerland'), +('213.31.216.64', '213.31.216.71', 2147483647, 2147483647, 'DE', 'Germany'), +('213.31.216.72', '213.31.216.79', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.216.80', '213.31.216.87', 2147483647, 2147483647, 'PT', 'Portugal'), +('213.31.216.88', '213.31.216.95', 2147483647, 2147483647, 'DK', 'Denmark'), +('213.31.216.96', '213.31.216.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.31.216.128', '213.31.216.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.31.217.0', '213.31.217.7', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.217.8', '213.31.217.15', 2147483647, 2147483647, 'AT', 'Austria'), +('213.31.217.16', '213.31.217.79', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.217.80', '213.31.217.95', 2147483647, 2147483647, 'IT', 'Italy'), +('213.31.217.96', '213.31.217.191', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.217.192', '213.31.217.223', 2147483647, 2147483647, 'NO', 'Norway'), +('213.31.217.224', '213.31.217.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.31.218.0', '213.31.218.23', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.218.24', '213.31.218.31', 2147483647, 2147483647, 'DE', 'Germany'), +('213.31.218.32', '213.31.218.63', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.218.64', '213.31.218.79', 2147483647, 2147483647, 'FI', 'Finland'), +('213.31.218.80', '213.31.218.87', 2147483647, 2147483647, 'CH', 'Switzerland'), +('213.31.218.88', '213.31.218.159', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.218.160', '213.31.218.167', 2147483647, 2147483647, 'ES', 'Spain'), +('213.31.218.168', '213.31.218.175', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.218.176', '213.31.218.183', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.31.218.184', '213.31.218.191', 2147483647, 2147483647, 'DE', 'Germany'), +('213.31.218.192', '213.31.219.7', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.219.8', '213.31.219.15', 2147483647, 2147483647, 'FI', 'Finland'), +('213.31.219.16', '213.31.219.23', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.219.24', '213.31.219.31', 2147483647, 2147483647, 'DE', 'Germany'), +('213.31.219.32', '213.31.219.79', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.219.80', '213.31.219.87', 2147483647, 2147483647, 'NO', 'Norway'), +('213.31.219.88', '213.31.219.95', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.219.96', '213.31.219.103', 2147483647, 2147483647, 'FR', 'France'), +('213.31.219.104', '213.31.219.111', 2147483647, 2147483647, 'ES', 'Spain'), +('213.31.219.112', '213.31.219.119', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.31.219.120', '213.31.219.127', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.31.219.128', '213.31.219.191', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.219.192', '213.31.219.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.31.219.224', '213.31.219.231', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.31.219.232', '213.31.219.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.31.219.240', '213.31.219.247', 2147483647, 2147483647, 'IT', 'Italy'), +('213.31.219.248', '213.31.220.71', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.220.72', '213.31.220.79', 2147483647, 2147483647, 'CH', 'Switzerland'), +('213.31.220.80', '213.31.220.95', 2147483647, 2147483647, 'ES', 'Spain'), +('213.31.220.96', '213.31.220.111', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.220.112', '213.31.220.119', 2147483647, 2147483647, 'CH', 'Switzerland'), +('213.31.220.120', '213.31.220.127', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.220.128', '213.31.220.143', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.31.220.144', '213.31.220.159', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.220.160', '213.31.220.175', 2147483647, 2147483647, 'PT', 'Portugal'), +('213.31.220.176', '213.31.220.191', 2147483647, 2147483647, 'PL', 'Poland'), +('213.31.220.192', '213.31.220.207', 2147483647, 2147483647, 'DE', 'Germany'), +('213.31.220.208', '213.31.220.215', 2147483647, 2147483647, 'PT', 'Portugal'), +('213.31.220.216', '213.31.220.223', 2147483647, 2147483647, 'DE', 'Germany'), +('213.31.220.224', '213.31.220.231', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.31.220.232', '213.31.220.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.221.0', '213.31.221.255', 2147483647, 2147483647, 'NO', 'Norway'), +('213.31.222.0', '213.31.222.7', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('213.31.222.8', '213.31.222.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.31.222.16', '213.31.222.127', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.222.128', '213.31.222.159', 2147483647, 2147483647, 'EG', 'Egypt'), +('213.31.222.160', '213.31.222.175', 2147483647, 2147483647, 'FI', 'Finland'), +('213.31.222.176', '213.31.222.191', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.222.192', '213.31.222.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.31.222.224', '213.31.222.239', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.222.240', '213.31.222.247', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.31.222.248', '213.31.223.63', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.223.64', '213.31.223.127', 2147483647, 2147483647, 'CH', 'Switzerland'), +('213.31.223.128', '213.31.223.135', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.31.223.136', '213.31.223.143', 2147483647, 2147483647, 'FR', 'France'), +('213.31.223.144', '213.31.223.159', 2147483647, 2147483647, 'TR', 'Turkey'), +('213.31.223.160', '213.31.224.15', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.224.16', '213.31.224.31', 2147483647, 2147483647, 'DE', 'Germany'), +('213.31.224.32', '213.31.224.175', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.224.176', '213.31.224.183', 2147483647, 2147483647, 'HU', 'Hungary'), +('213.31.224.184', '213.31.226.127', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.226.128', '213.31.226.255', 2147483647, 2147483647, 'FR', 'France'), +('213.31.227.0', '213.31.227.71', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.227.72', '213.31.227.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.31.227.80', '213.31.227.87', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.227.88', '213.31.227.95', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('213.31.227.96', '213.31.227.119', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.227.120', '213.31.227.127', 2147483647, 2147483647, 'DE', 'Germany'), +('213.31.227.128', '213.31.227.135', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.227.136', '213.31.227.143', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('213.31.227.144', '213.31.227.159', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.227.160', '213.31.227.167', 2147483647, 2147483647, 'PL', 'Poland'), +('213.31.227.168', '213.31.227.175', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('213.31.227.176', '213.31.227.191', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.227.192', '213.31.227.223', 2147483647, 2147483647, 'DE', 'Germany'), +('213.31.227.224', '213.31.227.247', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.227.248', '213.31.227.255', 2147483647, 2147483647, 'FR', 'France'), +('213.31.228.0', '213.31.228.47', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.228.48', '213.31.228.63', 2147483647, 2147483647, 'DE', 'Germany'), +('213.31.228.64', '213.31.228.159', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.228.160', '213.31.228.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.31.228.192', '213.31.229.119', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.229.120', '213.31.229.127', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.31.229.128', '213.31.229.159', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.229.160', '213.31.229.191', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('213.31.229.192', '213.31.229.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.31.229.224', '213.31.232.87', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.232.88', '213.31.232.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.31.232.96', '213.31.232.159', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.232.160', '213.31.232.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.31.232.224', '213.31.233.7', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.233.8', '213.31.233.15', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('213.31.233.16', '213.31.233.31', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.233.32', '213.31.233.63', 2147483647, 2147483647, 'NO', 'Norway'), +('213.31.233.64', '213.31.233.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.234.0', '213.31.234.15', 2147483647, 2147483647, 'DE', 'Germany'), +('213.31.234.16', '213.31.234.31', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.234.32', '213.31.234.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.31.234.64', '213.31.234.95', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.234.96', '213.31.234.111', 2147483647, 2147483647, 'PL', 'Poland'), +('213.31.234.112', '213.31.234.191', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.234.192', '213.31.234.207', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.31.234.208', '213.31.234.223', 2147483647, 2147483647, 'GR', 'Greece'), +('213.31.234.224', '213.31.234.239', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.234.240', '213.31.234.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.31.235.0', '213.31.235.127', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.235.128', '213.31.235.159', 2147483647, 2147483647, 'FR', 'France'), +('213.31.235.160', '213.31.235.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.31.235.192', '213.31.235.223', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.235.224', '213.31.235.227', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.31.235.228', '213.31.235.239', 2147483647, 2147483647, 'IE', 'Ireland'), +('213.31.235.240', '213.31.235.255', 2147483647, 2147483647, 'PL', 'Poland'), +('213.31.236.0', '213.31.239.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.31.240.0', '213.31.255.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('213.32.0.0', '213.32.255.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('213.33.0.0', '213.33.79.255', 2147483647, 2147483647, 'AT', 'Austria'), +('213.33.80.0', '213.33.80.7', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('213.33.80.8', '213.33.89.255', 2147483647, 2147483647, 'AT', 'Austria'), +('213.33.90.0', '213.33.90.255', 2147483647, 2147483647, 'LI', 'Liechtenstein'), +('213.33.91.0', '213.33.103.255', 2147483647, 2147483647, 'AT', 'Austria'), +('213.33.104.0', '213.33.106.63', 2147483647, 2147483647, 'LI', 'Liechtenstein'), +('213.33.106.64', '213.33.112.39', 2147483647, 2147483647, 'AT', 'Austria'), +('213.33.112.40', '213.33.112.47', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('213.33.112.48', '213.33.112.63', 2147483647, 2147483647, 'AT', 'Austria'), +('213.33.112.64', '213.33.112.95', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('213.33.112.96', '213.33.113.127', 2147483647, 2147483647, 'AT', 'Austria'), +('213.33.113.128', '213.33.113.135', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('213.33.113.136', '213.33.127.255', 2147483647, 2147483647, 'AT', 'Austria'), +('213.33.128.0', '213.33.255.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('213.34.0.0', '213.34.0.63', 2147483647, 2147483647, 'AT', 'Austria'), +('213.34.0.64', '213.34.0.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.34.1.0', '213.34.1.255', 2147483647, 2147483647, 'AT', 'Austria'), +('213.34.2.0', '213.34.191.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.34.192.0', '213.34.223.255', 2147483647, 2147483647, 'KW', 'Kuwait'), +('213.34.224.0', '213.35.63.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.35.64.0', '213.35.64.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.35.65.0', '213.35.69.97', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.35.69.98', '213.35.69.111', 2147483647, 2147483647, 'US', 'United States'), +('213.35.69.112', '213.35.76.75', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.35.76.76', '213.35.76.79', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.35.76.80', '213.35.99.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.35.100.0', '213.35.102.255', 2147483647, 2147483647, 'US', 'United States'), +('213.35.103.0', '213.35.127.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.35.128.0', '213.35.255.255', 2147483647, 2147483647, 'EE', 'Estonia'), +('213.36.0.0', '213.36.255.255', 2147483647, 2147483647, 'FR', 'France'), +('213.37.0.0', '213.37.255.255', 2147483647, 2147483647, 'ES', 'Spain'), +('213.38.0.0', '213.38.3.63', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.3.64', '213.38.3.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.3.128', '213.38.3.191', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.3.192', '213.38.4.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.4.64', '213.38.4.127', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.4.128', '213.38.4.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.4.192', '213.38.5.255', 2147483647, 2147483647, 'EU', 'Europe'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('213.38.6.0', '213.38.6.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.6.64', '213.38.6.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.7.0', '213.38.7.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.7.64', '213.38.7.191', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.7.192', '213.38.7.215', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.7.216', '213.38.7.223', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.7.224', '213.38.8.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.8.32', '213.38.8.95', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.8.96', '213.38.8.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.8.128', '213.38.8.159', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.8.160', '213.38.8.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.8.224', '213.38.9.127', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.9.128', '213.38.9.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.9.160', '213.38.9.223', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.9.224', '213.38.9.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.10.0', '213.38.10.127', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.10.128', '213.38.10.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.10.192', '213.38.11.23', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.11.24', '213.38.11.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.11.32', '213.38.11.79', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.11.80', '213.38.11.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.11.96', '213.38.11.159', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.11.160', '213.38.11.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.11.192', '213.38.13.127', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.13.128', '213.38.13.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.14.0', '213.38.15.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.16.0', '213.38.16.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.16.64', '213.38.16.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.17.0', '213.38.17.71', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.17.72', '213.38.17.103', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.17.104', '213.38.17.119', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.17.120', '213.38.17.135', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.17.136', '213.38.17.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.17.144', '213.38.17.151', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.17.152', '213.38.17.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.17.160', '213.38.17.175', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.17.176', '213.38.17.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.17.192', '213.38.17.207', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.17.208', '213.38.17.215', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.17.216', '213.38.17.223', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.17.224', '213.38.17.247', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.17.248', '213.38.18.127', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.18.128', '213.38.18.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.19.0', '213.38.19.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.20.0', '213.38.20.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.20.128', '213.38.20.191', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.20.192', '213.38.21.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.21.64', '213.38.31.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.32.0', '213.38.32.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.32.32', '213.38.32.47', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.32.48', '213.38.32.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.32.64', '213.38.32.95', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.32.96', '213.38.32.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.32.112', '213.38.32.143', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.32.144', '213.38.32.167', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.32.168', '213.38.32.231', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.32.232', '213.38.32.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.32.240', '213.38.32.247', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.32.248', '213.38.32.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.33.0', '213.38.43.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.44.0', '213.38.44.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.44.128', '213.38.45.63', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.45.64', '213.38.45.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.45.128', '213.38.45.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.46.0', '213.38.49.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.49.128', '213.38.63.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.64.0', '213.38.68.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.68.128', '213.38.69.63', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.69.64', '213.38.69.71', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.69.72', '213.38.69.79', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.69.80', '213.38.69.87', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.69.88', '213.38.69.111', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.69.112', '213.38.69.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.69.128', '213.38.69.143', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.69.144', '213.38.69.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.69.160', '213.38.69.167', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.69.168', '213.38.69.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.69.176', '213.38.69.239', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.69.240', '213.38.70.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.71.0', '213.38.71.127', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.71.128', '213.38.72.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.72.64', '213.38.72.127', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.72.128', '213.38.72.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.72.192', '213.38.73.127', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.73.128', '213.38.73.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.73.192', '213.38.73.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.74.0', '213.38.74.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.74.128', '213.38.75.127', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.75.128', '213.38.75.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.75.192', '213.38.76.23', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.76.24', '213.38.76.39', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.76.40', '213.38.76.47', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.76.48', '213.38.76.55', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.76.56', '213.38.76.63', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.76.64', '213.38.76.71', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.76.72', '213.38.76.87', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.76.88', '213.38.76.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.76.96', '213.38.76.103', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.76.104', '213.38.76.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.76.112', '213.38.76.119', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.76.120', '213.38.76.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.76.144', '213.38.76.159', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.76.160', '213.38.76.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.76.176', '213.38.76.207', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.76.208', '213.38.76.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.76.224', '213.38.79.31', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.79.32', '213.38.79.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.79.48', '213.38.79.111', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.79.112', '213.38.79.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.79.144', '213.38.79.159', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.79.160', '213.38.79.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.79.176', '213.38.79.223', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.79.224', '213.38.79.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.79.240', '213.38.83.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.84.0', '213.38.84.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.84.128', '213.38.86.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.87.0', '213.38.87.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.87.32', '213.38.87.63', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.87.64', '213.38.87.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.87.96', '213.38.87.127', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.87.128', '213.38.87.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.87.160', '213.38.88.191', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.88.192', '213.38.88.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.89.0', '213.38.89.127', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.89.128', '213.38.89.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.89.192', '213.38.92.111', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.92.112', '213.38.92.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.92.128', '213.38.92.191', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.92.192', '213.38.92.207', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.92.208', '213.38.92.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.93.0', '213.38.93.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.93.64', '213.38.93.127', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.93.128', '213.38.93.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.94.0', '213.38.94.143', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.94.144', '213.38.94.151', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.94.152', '213.38.94.179', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.94.180', '213.38.94.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.94.192', '213.38.94.199', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.94.200', '213.38.94.207', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.94.208', '213.38.94.247', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.94.248', '213.38.94.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.95.0', '213.38.97.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.98.0', '213.38.98.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.98.16', '213.38.105.63', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.105.64', '213.38.105.192', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.105.193', '213.38.106.31', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.106.32', '213.38.106.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.106.48', '213.38.109.127', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.109.128', '213.38.109.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.110.0', '213.38.111.63', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.111.64', '213.38.111.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.111.96', '213.38.112.239', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.112.240', '213.38.112.247', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.112.248', '213.38.112.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.113.0', '213.38.113.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.113.128', '213.38.115.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.116.0', '213.38.116.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.116.128', '213.38.116.175', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.116.176', '213.38.116.183', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.116.184', '213.38.120.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.121.0', '213.38.121.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.121.128', '213.38.122.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.123.0', '213.38.123.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.123.64', '213.38.123.191', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.123.192', '213.38.123.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.124.0', '213.38.124.127', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.124.128', '213.38.124.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.124.160', '213.38.124.191', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.124.192', '213.38.124.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.124.224', '213.38.130.39', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.130.40', '213.38.130.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.130.48', '213.38.130.55', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.130.56', '213.38.130.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.130.64', '213.38.130.71', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.130.72', '213.38.130.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.130.80', '213.38.130.119', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.130.120', '213.38.130.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.130.128', '213.38.132.127', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.132.128', '213.38.132.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.133.0', '213.38.133.127', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.133.128', '213.38.133.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.134.0', '213.38.134.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.135.0', '213.38.135.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.135.16', '213.38.135.127', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.135.128', '213.38.135.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.135.144', '213.38.136.95', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.136.96', '213.38.136.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.136.128', '213.38.136.223', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.136.224', '213.38.137.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.137.64', '213.38.139.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.140.0', '213.38.140.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.140.64', '213.38.145.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.146.0', '213.38.146.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.146.128', '213.38.147.95', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.147.96', '213.38.147.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.147.128', '213.38.147.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.148.0', '213.38.148.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.148.64', '213.38.149.127', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.149.128', '213.38.149.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.149.192', '213.38.149.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.150.0', '213.38.150.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.150.128', '213.38.151.239', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.151.240', '213.38.152.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.152.64', '213.38.153.23', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.153.24', '213.38.153.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.153.32', '213.38.153.79', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.153.80', '213.38.153.87', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.153.88', '213.38.153.159', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.153.160', '213.38.153.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.153.176', '213.38.153.239', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.153.240', '213.38.153.247', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.153.248', '213.38.156.127', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.156.128', '213.38.156.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.156.160', '213.38.156.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.157.0', '213.38.157.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.157.128', '213.38.158.47', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.158.48', '213.38.158.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.158.64', '213.38.158.111', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.158.112', '213.38.158.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.158.144', '213.38.158.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.159.0', '213.38.159.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.159.96', '213.38.160.127', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.160.128', '213.38.160.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.161.0', '213.38.164.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.165.0', '213.38.165.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.166.0', '213.38.166.127', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.166.128', '213.38.166.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.167.0', '213.38.167.95', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.167.96', '213.38.167.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.167.128', '213.38.169.135', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.169.136', '213.38.169.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.169.160', '213.38.169.167', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.169.168', '213.38.169.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.169.176', '213.38.169.183', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.169.184', '213.38.169.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.169.192', '213.38.174.159', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.174.160', '213.38.174.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.174.192', '213.38.175.15', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.175.16', '213.38.175.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.175.48', '213.38.176.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.177.0', '213.38.177.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.178.0', '213.38.181.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.182.0', '213.38.182.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.182.64', '213.38.183.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.184.0', '213.38.184.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.184.64', '213.38.184.127', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.184.128', '213.38.184.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.184.192', '213.38.184.223', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.184.224', '213.38.184.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.185.0', '213.38.185.127', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.185.128', '213.38.185.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.185.192', '213.38.186.191', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.186.192', '213.38.186.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.186.224', '213.38.188.191', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.188.192', '213.38.188.207', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.188.208', '213.38.189.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.190.0', '213.38.190.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.190.128', '213.38.191.95', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.191.96', '213.38.191.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.191.160', '213.38.191.223', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.191.224', '213.38.191.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.192.0', '213.38.192.39', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.192.40', '213.38.192.43', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.192.44', '213.38.192.47', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.192.48', '213.38.192.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.192.64', '213.38.192.71', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.192.72', '213.38.192.75', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.192.76', '213.38.196.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.197.0', '213.38.197.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.197.16', '213.38.197.143', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.197.144', '213.38.197.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.197.160', '213.38.197.223', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.197.224', '213.38.197.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.197.240', '213.38.198.159', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.198.160', '213.38.198.167', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.198.168', '213.38.199.55', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.199.56', '213.38.199.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.199.64', '213.38.199.159', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.199.160', '213.38.199.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.199.192', '213.38.201.127', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.201.128', '213.38.201.135', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.201.136', '213.38.201.191', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.201.192', '213.38.201.207', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.201.208', '213.38.203.95', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.203.96', '213.38.203.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.203.128', '213.38.204.175', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.204.176', '213.38.204.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.204.192', '213.38.204.223', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.204.224', '213.38.204.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.204.240', '213.38.211.15', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.211.16', '213.38.211.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.211.32', '213.38.211.63', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.211.64', '213.38.211.87', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.211.88', '213.38.211.127', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.211.128', '213.38.211.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.211.144', '213.38.213.63', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.213.64', '213.38.213.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.213.80', '213.38.213.95', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.213.96', '213.38.213.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.213.128', '213.38.213.223', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.213.224', '213.38.213.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.214.0', '213.38.216.191', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.216.192', '213.38.216.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.216.224', '213.38.217.135', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.217.136', '213.38.217.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.217.144', '213.38.217.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.218.0', '213.38.218.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.218.64', '213.38.225.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.226.0', '213.38.231.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.232.0', '213.38.240.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.241.0', '213.38.247.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.38.248.0', '213.38.249.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.38.250.0', '213.38.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.39.0.0', '213.39.23.223', 2147483647, 2147483647, 'FR', 'France'), +('213.39.23.224', '213.39.23.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.39.24.0', '213.39.63.255', 2147483647, 2147483647, 'FR', 'France'), +('213.39.64.0', '213.39.64.159', 2147483647, 2147483647, 'CH', 'Switzerland'), +('213.39.64.160', '213.39.64.175', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.39.64.176', '213.39.95.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('213.39.96.0', '213.39.111.255', 2147483647, 2147483647, 'FR', 'France'), +('213.39.112.0', '213.39.127.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('213.39.128.0', '213.39.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.40.0.0', '213.40.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.0.0', '213.41.10.127', 2147483647, 2147483647, 'FR', 'France'), +('213.41.10.128', '213.41.10.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.10.160', '213.41.11.79', 2147483647, 2147483647, 'FR', 'France'), +('213.41.11.80', '213.41.11.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.12.0', '213.41.12.7', 2147483647, 2147483647, 'FR', 'France'), +('213.41.12.8', '213.41.12.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.12.16', '213.41.12.31', 2147483647, 2147483647, 'FR', 'France'), +('213.41.12.32', '213.41.12.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.12.64', '213.41.12.159', 2147483647, 2147483647, 'FR', 'France'), +('213.41.12.160', '213.41.12.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.12.224', '213.41.13.143', 2147483647, 2147483647, 'FR', 'France'), +('213.41.13.144', '213.41.13.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.13.192', '213.41.13.255', 2147483647, 2147483647, 'FR', 'France'), +('213.41.14.0', '213.41.14.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.14.16', '213.41.14.31', 2147483647, 2147483647, 'FR', 'France'), +('213.41.14.32', '213.41.14.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.14.112', '213.41.14.127', 2147483647, 2147483647, 'FR', 'France'), +('213.41.14.128', '213.41.14.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.14.192', '213.41.14.223', 2147483647, 2147483647, 'FR', 'France'), +('213.41.14.224', '213.41.14.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.15.0', '213.41.15.31', 2147483647, 2147483647, 'FR', 'France'), +('213.41.15.32', '213.41.15.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.15.48', '213.41.15.63', 2147483647, 2147483647, 'FR', 'France'), +('213.41.15.64', '213.41.15.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.15.96', '213.41.15.111', 2147483647, 2147483647, 'FR', 'France'), +('213.41.15.112', '213.41.15.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.15.144', '213.41.15.159', 2147483647, 2147483647, 'FR', 'France'), +('213.41.15.160', '213.41.15.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.15.192', '213.41.16.63', 2147483647, 2147483647, 'FR', 'France'), +('213.41.16.64', '213.41.16.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.16.80', '213.41.16.191', 2147483647, 2147483647, 'FR', 'France'), +('213.41.16.192', '213.41.16.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.17.0', '213.41.17.111', 2147483647, 2147483647, 'FR', 'France'), +('213.41.17.112', '213.41.17.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.17.128', '213.41.17.175', 2147483647, 2147483647, 'FR', 'France'), +('213.41.17.176', '213.41.17.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.17.192', '213.41.17.223', 2147483647, 2147483647, 'FR', 'France'), +('213.41.17.224', '213.41.17.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.17.240', '213.41.18.15', 2147483647, 2147483647, 'FR', 'France'), +('213.41.18.16', '213.41.18.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.18.32', '213.41.18.47', 2147483647, 2147483647, 'FR', 'France'), +('213.41.18.48', '213.41.19.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.19.64', '213.41.19.79', 2147483647, 2147483647, 'FR', 'France'), +('213.41.19.80', '213.41.19.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.19.128', '213.41.19.159', 2147483647, 2147483647, 'FR', 'France'), +('213.41.19.160', '213.41.19.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.19.176', '213.41.19.191', 2147483647, 2147483647, 'FR', 'France'), +('213.41.19.192', '213.41.19.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.19.224', '213.41.19.239', 2147483647, 2147483647, 'FR', 'France'), +('213.41.19.240', '213.41.19.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.20.0', '213.41.23.167', 2147483647, 2147483647, 'FR', 'France'), +('213.41.23.168', '213.41.23.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.23.176', '213.41.23.239', 2147483647, 2147483647, 'FR', 'France'), +('213.41.23.240', '213.41.23.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.24.0', '213.41.25.255', 2147483647, 2147483647, 'FR', 'France'), +('213.41.26.0', '213.41.26.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.27.0', '213.41.28.135', 2147483647, 2147483647, 'FR', 'France'), +('213.41.28.136', '213.41.28.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.28.144', '213.41.28.191', 2147483647, 2147483647, 'FR', 'France'), +('213.41.28.192', '213.41.28.199', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.28.200', '213.41.28.239', 2147483647, 2147483647, 'FR', 'France'), +('213.41.28.240', '213.41.28.247', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.28.248', '213.41.30.127', 2147483647, 2147483647, 'FR', 'France'), +('213.41.30.128', '213.41.30.135', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.30.136', '213.41.30.151', 2147483647, 2147483647, 'FR', 'France'), +('213.41.30.152', '213.41.30.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.30.160', '213.41.30.255', 2147483647, 2147483647, 'FR', 'France'), +('213.41.31.0', '213.41.31.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.31.192', '213.41.48.127', 2147483647, 2147483647, 'FR', 'France'), +('213.41.48.128', '213.41.48.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.49.0', '213.41.49.128', 2147483647, 2147483647, 'FR', 'France'), +('213.41.49.129', '213.41.49.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.50.0', '213.41.56.255', 2147483647, 2147483647, 'FR', 'France'), +('213.41.57.0', '213.41.57.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.58.0', '213.41.60.119', 2147483647, 2147483647, 'FR', 'France'), +('213.41.60.120', '213.41.60.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.60.128', '213.41.60.183', 2147483647, 2147483647, 'FR', 'France'), +('213.41.60.184', '213.41.60.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.60.192', '213.41.61.143', 2147483647, 2147483647, 'FR', 'France'), +('213.41.61.144', '213.41.61.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.61.192', '213.41.61.199', 2147483647, 2147483647, 'FR', 'France'), +('213.41.61.200', '213.41.61.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.61.224', '213.41.61.231', 2147483647, 2147483647, 'FR', 'France'), +('213.41.61.232', '213.41.61.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.61.240', '213.41.68.15', 2147483647, 2147483647, 'FR', 'France'), +('213.41.68.16', '213.41.68.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.68.128', '213.41.68.191', 2147483647, 2147483647, 'FR', 'France'), +('213.41.68.192', '213.41.68.207', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.68.208', '213.41.68.223', 2147483647, 2147483647, 'FR', 'France'), +('213.41.68.224', '213.41.68.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.69.0', '213.41.71.255', 2147483647, 2147483647, 'FR', 'France'), +('213.41.72.0', '213.41.72.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.73.0', '213.41.74.231', 2147483647, 2147483647, 'FR', 'France'), +('213.41.74.232', '213.41.74.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.75.0', '213.41.80.15', 2147483647, 2147483647, 'FR', 'France'), +('213.41.80.16', '213.41.80.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.80.32', '213.41.80.87', 2147483647, 2147483647, 'FR', 'France'), +('213.41.80.88', '213.41.80.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.80.96', '213.41.80.111', 2147483647, 2147483647, 'FR', 'France'), +('213.41.80.112', '213.41.80.151', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.80.152', '213.41.80.159', 2147483647, 2147483647, 'FR', 'France'), +('213.41.80.160', '213.41.80.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.80.176', '213.41.80.183', 2147483647, 2147483647, 'FR', 'France'), +('213.41.80.184', '213.41.80.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.80.224', '213.41.80.231', 2147483647, 2147483647, 'FR', 'France'), +('213.41.80.232', '213.41.80.247', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.80.248', '213.41.81.47', 2147483647, 2147483647, 'FR', 'France'), +('213.41.81.48', '213.41.81.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.81.64', '213.41.81.127', 2147483647, 2147483647, 'FR', 'France'), +('213.41.81.128', '213.41.81.135', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.81.136', '213.41.81.143', 2147483647, 2147483647, 'FR', 'France'), +('213.41.81.144', '213.41.81.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.81.160', '213.41.81.175', 2147483647, 2147483647, 'FR', 'France'), +('213.41.81.176', '213.41.81.183', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.81.184', '213.41.82.111', 2147483647, 2147483647, 'FR', 'France'), +('213.41.82.112', '213.41.82.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.82.224', '213.41.82.239', 2147483647, 2147483647, 'FR', 'France'), +('213.41.82.240', '213.41.83.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.83.32', '213.41.83.87', 2147483647, 2147483647, 'FR', 'France'), +('213.41.83.88', '213.41.83.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.83.96', '213.41.83.143', 2147483647, 2147483647, 'FR', 'France'), +('213.41.83.144', '213.41.83.151', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.83.152', '213.41.83.175', 2147483647, 2147483647, 'FR', 'France'), +('213.41.83.176', '213.41.83.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.83.192', '213.41.83.199', 2147483647, 2147483647, 'FR', 'France'), +('213.41.83.200', '213.41.83.207', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.83.208', '213.41.84.15', 2147483647, 2147483647, 'FR', 'France'), +('213.41.84.16', '213.41.84.23', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.84.24', '213.41.84.31', 2147483647, 2147483647, 'FR', 'France'), +('213.41.84.32', '213.41.84.39', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.84.40', '213.41.84.55', 2147483647, 2147483647, 'FR', 'France'), +('213.41.84.56', '213.41.84.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.84.64', '213.41.84.87', 2147483647, 2147483647, 'FR', 'France'), +('213.41.84.88', '213.41.84.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.84.96', '213.41.84.143', 2147483647, 2147483647, 'FR', 'France'), +('213.41.84.144', '213.41.84.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.84.160', '213.41.84.183', 2147483647, 2147483647, 'FR', 'France'), +('213.41.84.184', '213.41.84.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.84.192', '213.41.84.215', 2147483647, 2147483647, 'FR', 'France'), +('213.41.84.216', '213.41.84.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.84.240', '213.41.84.255', 2147483647, 2147483647, 'FR', 'France'), +('213.41.85.0', '213.41.85.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.85.16', '213.41.85.95', 2147483647, 2147483647, 'FR', 'France'), +('213.41.85.96', '213.41.85.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.85.128', '213.41.85.143', 2147483647, 2147483647, 'FR', 'France'), +('213.41.85.144', '213.41.85.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.85.192', '213.41.85.199', 2147483647, 2147483647, 'FR', 'France'), +('213.41.85.200', '213.41.86.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.86.48', '213.41.86.111', 2147483647, 2147483647, 'FR', 'France'), +('213.41.86.112', '213.41.86.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.86.144', '213.41.86.239', 2147483647, 2147483647, 'FR', 'France'), +('213.41.86.240', '213.41.86.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.87.0', '213.41.87.95', 2147483647, 2147483647, 'FR', 'France'), +('213.41.87.96', '213.41.87.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.87.112', '213.41.87.127', 2147483647, 2147483647, 'FR', 'France'), +('213.41.87.128', '213.41.87.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.87.160', '213.41.87.175', 2147483647, 2147483647, 'FR', 'France'), +('213.41.87.176', '213.41.87.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.87.192', '213.41.87.207', 2147483647, 2147483647, 'FR', 'France'), +('213.41.87.208', '213.41.88.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.88.16', '213.41.88.31', 2147483647, 2147483647, 'FR', 'France'), +('213.41.88.32', '213.41.88.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.88.48', '213.41.88.95', 2147483647, 2147483647, 'FR', 'France'), +('213.41.88.96', '213.41.88.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.88.112', '213.41.88.127', 2147483647, 2147483647, 'FR', 'France'), +('213.41.88.128', '213.41.88.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.88.160', '213.41.88.175', 2147483647, 2147483647, 'FR', 'France'), +('213.41.88.176', '213.41.88.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.89.0', '213.41.89.127', 2147483647, 2147483647, 'FR', 'France'), +('213.41.89.128', '213.41.89.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.89.192', '213.41.89.223', 2147483647, 2147483647, 'FR', 'France'), +('213.41.89.224', '213.41.89.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.89.240', '213.41.90.79', 2147483647, 2147483647, 'FR', 'France'), +('213.41.90.80', '213.41.90.87', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.90.88', '213.41.90.111', 2147483647, 2147483647, 'FR', 'France'), +('213.41.90.112', '213.41.90.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.90.128', '213.41.90.135', 2147483647, 2147483647, 'FR', 'France'), +('213.41.90.136', '213.41.90.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.90.144', '213.41.91.7', 2147483647, 2147483647, 'FR', 'France'), +('213.41.91.8', '213.41.91.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.91.16', '213.41.91.47', 2147483647, 2147483647, 'FR', 'France'), +('213.41.91.48', '213.41.91.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.91.80', '213.41.91.87', 2147483647, 2147483647, 'FR', 'France'), +('213.41.91.88', '213.41.91.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.91.96', '213.41.91.207', 2147483647, 2147483647, 'FR', 'France'), +('213.41.91.208', '213.41.91.215', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.91.216', '213.41.91.223', 2147483647, 2147483647, 'FR', 'France'), +('213.41.91.224', '213.41.91.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.92.0', '213.41.92.15', 2147483647, 2147483647, 'FR', 'France'), +('213.41.92.16', '213.41.92.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.92.48', '213.41.92.95', 2147483647, 2147483647, 'FR', 'France'), +('213.41.92.96', '213.41.92.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.92.112', '213.41.92.191', 2147483647, 2147483647, 'FR', 'France'), +('213.41.92.192', '213.41.93.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.93.16', '213.41.93.31', 2147483647, 2147483647, 'FR', 'France'), +('213.41.93.32', '213.41.93.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.93.48', '213.41.93.63', 2147483647, 2147483647, 'FR', 'France'), +('213.41.93.64', '213.41.93.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.93.80', '213.41.93.95', 2147483647, 2147483647, 'FR', 'France'), +('213.41.93.96', '213.41.93.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.93.112', '213.41.93.191', 2147483647, 2147483647, 'FR', 'France'), +('213.41.93.192', '213.41.93.207', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.93.208', '213.41.94.7', 2147483647, 2147483647, 'FR', 'France'), +('213.41.94.8', '213.41.94.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.94.16', '213.41.94.31', 2147483647, 2147483647, 'FR', 'France'), +('213.41.94.32', '213.41.94.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.94.80', '213.41.94.112', 2147483647, 2147483647, 'FR', 'France'), +('213.41.94.113', '213.41.94.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.94.128', '213.41.94.143', 2147483647, 2147483647, 'FR', 'France'), +('213.41.94.144', '213.41.94.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.94.160', '213.41.95.47', 2147483647, 2147483647, 'FR', 'France'), +('213.41.95.48', '213.41.95.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.95.96', '213.41.95.111', 2147483647, 2147483647, 'FR', 'France'), +('213.41.95.112', '213.41.95.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.95.128', '213.41.95.143', 2147483647, 2147483647, 'FR', 'France'), +('213.41.95.144', '213.41.95.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.95.160', '213.41.95.191', 2147483647, 2147483647, 'FR', 'France'), +('213.41.95.192', '213.41.95.207', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.95.208', '213.41.95.223', 2147483647, 2147483647, 'FR', 'France'), +('213.41.95.224', '213.41.96.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.96.16', '213.41.96.31', 2147483647, 2147483647, 'FR', 'France'), +('213.41.96.32', '213.41.96.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.96.64', '213.41.96.111', 2147483647, 2147483647, 'FR', 'France'), +('213.41.96.112', '213.41.96.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.96.128', '213.41.96.159', 2147483647, 2147483647, 'FR', 'France'), +('213.41.96.160', '213.41.96.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.96.224', '213.41.97.47', 2147483647, 2147483647, 'FR', 'France'), +('213.41.97.48', '213.41.97.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.97.80', '213.41.97.95', 2147483647, 2147483647, 'FR', 'France'), +('213.41.97.96', '213.41.97.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.97.112', '213.41.97.207', 2147483647, 2147483647, 'FR', 'France'), +('213.41.97.208', '213.41.97.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.97.224', '213.41.97.255', 2147483647, 2147483647, 'FR', 'France'), +('213.41.98.0', '213.41.98.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.98.16', '213.41.98.31', 2147483647, 2147483647, 'FR', 'France'), +('213.41.98.32', '213.41.98.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.98.128', '213.41.98.159', 2147483647, 2147483647, 'FR', 'France'), +('213.41.98.160', '213.41.98.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.98.176', '213.41.98.207', 2147483647, 2147483647, 'FR', 'France'), +('213.41.98.208', '213.41.98.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.98.224', '213.41.98.239', 2147483647, 2147483647, 'FR', 'France'), +('213.41.98.240', '213.41.98.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.99.0', '213.41.99.15', 2147483647, 2147483647, 'FR', 'France'), +('213.41.99.16', '213.41.99.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.99.64', '213.41.99.95', 2147483647, 2147483647, 'FR', 'France'), +('213.41.99.96', '213.41.99.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.99.112', '213.41.99.191', 2147483647, 2147483647, 'FR', 'France'), +('213.41.99.192', '213.41.99.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.100.0', '213.41.101.79', 2147483647, 2147483647, 'FR', 'France'), +('213.41.101.80', '213.41.101.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.101.96', '213.41.101.151', 2147483647, 2147483647, 'FR', 'France'), +('213.41.101.152', '213.41.101.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.101.160', '213.41.101.175', 2147483647, 2147483647, 'FR', 'France'), +('213.41.101.176', '213.41.101.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.101.192', '213.41.101.223', 2147483647, 2147483647, 'FR', 'France'), +('213.41.101.224', '213.41.101.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.102.0', '213.41.102.79', 2147483647, 2147483647, 'FR', 'France'), +('213.41.102.80', '213.41.102.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.102.96', '213.41.102.111', 2147483647, 2147483647, 'FR', 'France'), +('213.41.102.112', '213.41.102.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.102.128', '213.41.102.143', 2147483647, 2147483647, 'FR', 'France'), +('213.41.102.144', '213.41.102.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.102.160', '213.41.102.175', 2147483647, 2147483647, 'FR', 'France'), +('213.41.102.176', '213.41.102.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.102.240', '213.41.103.111', 2147483647, 2147483647, 'FR', 'France'), +('213.41.103.112', '213.41.103.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.103.192', '213.41.103.207', 2147483647, 2147483647, 'FR', 'France'), +('213.41.103.208', '213.41.103.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.104.0', '213.41.104.15', 2147483647, 2147483647, 'FR', 'France'), +('213.41.104.16', '213.41.104.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.104.32', '213.41.104.47', 2147483647, 2147483647, 'FR', 'France'), +('213.41.104.48', '213.41.104.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.104.80', '213.41.104.95', 2147483647, 2147483647, 'FR', 'France'), +('213.41.104.96', '213.41.104.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.104.128', '213.41.105.31', 2147483647, 2147483647, 'FR', 'France'), +('213.41.105.32', '213.41.105.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.105.64', '213.41.105.95', 2147483647, 2147483647, 'FR', 'France'), +('213.41.105.96', '213.41.105.135', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.105.136', '213.41.105.151', 2147483647, 2147483647, 'FR', 'France'), +('213.41.105.152', '213.41.105.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.105.160', '213.41.105.183', 2147483647, 2147483647, 'FR', 'France'), +('213.41.105.184', '213.41.105.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.105.192', '213.41.105.199', 2147483647, 2147483647, 'FR', 'France'), +('213.41.105.200', '213.41.105.207', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.105.208', '213.41.105.223', 2147483647, 2147483647, 'FR', 'France'), +('213.41.105.224', '213.41.105.231', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.105.232', '213.41.105.239', 2147483647, 2147483647, 'FR', 'France'), +('213.41.105.240', '213.41.105.247', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.105.248', '213.41.106.255', 2147483647, 2147483647, 'FR', 'France'), +('213.41.107.0', '213.41.107.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.108.0', '213.41.109.39', 2147483647, 2147483647, 'FR', 'France'), +('213.41.109.40', '213.41.109.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.109.48', '213.41.109.135', 2147483647, 2147483647, 'FR', 'France'), +('213.41.109.136', '213.41.109.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.109.144', '213.41.109.175', 2147483647, 2147483647, 'FR', 'France'), +('213.41.109.176', '213.41.109.183', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.109.184', '213.41.115.15', 2147483647, 2147483647, 'FR', 'France'), +('213.41.115.16', '213.41.115.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.115.32', '213.41.115.95', 2147483647, 2147483647, 'FR', 'France'), +('213.41.115.96', '213.41.115.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.115.128', '213.41.115.143', 2147483647, 2147483647, 'FR', 'France'), +('213.41.115.144', '213.41.115.151', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.115.152', '213.41.115.159', 2147483647, 2147483647, 'FR', 'France'), +('213.41.115.160', '213.41.115.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.115.176', '213.41.115.191', 2147483647, 2147483647, 'FR', 'France'), +('213.41.115.192', '213.41.115.199', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.115.200', '213.41.116.71', 2147483647, 2147483647, 'FR', 'France'), +('213.41.116.72', '213.41.116.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.116.80', '213.41.116.111', 2147483647, 2147483647, 'FR', 'France'), +('213.41.116.112', '213.41.116.207', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.116.208', '213.41.116.231', 2147483647, 2147483647, 'FR', 'France'), +('213.41.116.232', '213.41.116.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.116.240', '213.41.118.111', 2147483647, 2147483647, 'FR', 'France'), +('213.41.118.112', '213.41.118.119', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.118.120', '213.41.118.191', 2147483647, 2147483647, 'FR', 'France'), +('213.41.118.192', '213.41.118.207', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.118.208', '213.41.118.255', 2147483647, 2147483647, 'FR', 'France'), +('213.41.119.0', '213.41.119.63', 2147483647, 2147483647, 'GB', 'United Kingdom'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('213.41.119.64', '213.41.119.95', 2147483647, 2147483647, 'FR', 'France'), +('213.41.119.96', '213.41.119.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.119.112', '213.41.119.127', 2147483647, 2147483647, 'FR', 'France'), +('213.41.119.128', '213.41.119.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.119.160', '213.41.119.191', 2147483647, 2147483647, 'FR', 'France'), +('213.41.119.192', '213.41.119.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.119.240', '213.41.122.95', 2147483647, 2147483647, 'FR', 'France'), +('213.41.122.96', '213.41.122.103', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.122.104', '213.41.122.183', 2147483647, 2147483647, 'FR', 'France'), +('213.41.122.184', '213.41.122.199', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.122.200', '213.41.122.247', 2147483647, 2147483647, 'FR', 'France'), +('213.41.122.248', '213.41.122.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.123.0', '213.41.124.79', 2147483647, 2147483647, 'FR', 'France'), +('213.41.124.80', '213.41.124.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.124.96', '213.41.124.103', 2147483647, 2147483647, 'FR', 'France'), +('213.41.124.104', '213.41.124.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.124.112', '213.41.124.119', 2147483647, 2147483647, 'FR', 'France'), +('213.41.124.120', '213.41.124.135', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.124.136', '213.41.124.151', 2147483647, 2147483647, 'FR', 'France'), +('213.41.124.152', '213.41.124.167', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.124.168', '213.41.124.183', 2147483647, 2147483647, 'FR', 'France'), +('213.41.124.184', '213.41.124.207', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.124.208', '213.41.127.159', 2147483647, 2147483647, 'FR', 'France'), +('213.41.127.160', '213.41.127.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.127.176', '213.41.127.191', 2147483647, 2147483647, 'FR', 'France'), +('213.41.127.192', '213.41.127.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.41.128.0', '213.41.255.255', 2147483647, 2147483647, 'FR', 'France'), +('213.42.0.0', '213.42.255.255', 2147483647, 2147483647, 'AE', 'United Arab Emirates'), +('213.43.0.0', '213.43.255.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('213.44.0.0', '213.44.255.255', 2147483647, 2147483647, 'FR', 'France'), +('213.45.0.0', '213.45.255.255', 2147483647, 2147483647, 'IT', 'Italy'), +('213.46.0.0', '213.46.161.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.46.162.0', '213.46.162.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.46.163.0', '213.46.163.255', 2147483647, 2147483647, 'FR', 'France'), +('213.46.164.0', '213.46.165.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.46.166.0', '213.46.166.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('213.46.167.0', '213.46.169.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.46.170.0', '213.46.170.255', 2147483647, 2147483647, 'RO', 'Romania'), +('213.46.171.0', '213.46.171.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.46.172.0', '213.46.172.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('213.46.173.0', '213.46.173.255', 2147483647, 2147483647, 'AT', 'Austria'), +('213.46.174.0', '213.46.174.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.46.175.0', '213.46.175.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.46.176.0', '213.46.176.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.46.177.0', '213.46.177.255', 2147483647, 2147483647, 'NO', 'Norway'), +('213.46.178.0', '213.46.178.255', 2147483647, 2147483647, 'PL', 'Poland'), +('213.46.179.0', '213.46.179.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.46.180.0', '213.46.227.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.46.228.0', '213.46.229.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.46.230.0', '213.46.230.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.46.231.0', '213.46.236.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.46.237.0', '213.46.237.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.46.238.0', '213.46.242.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.46.243.0', '213.46.243.255', 2147483647, 2147483647, 'AT', 'Austria'), +('213.46.244.0', '213.46.254.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.46.255.0', '213.47.255.255', 2147483647, 2147483647, 'AT', 'Austria'), +('213.48.0.0', '213.48.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.49.0.0', '213.49.255.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.50.0.0', '213.50.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.51.0.0', '213.51.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.52.0.0', '213.52.127.255', 2147483647, 2147483647, 'NO', 'Norway'), +('213.52.128.0', '213.52.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.53.0.0', '213.53.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.54.0.0', '213.54.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.55.0.0', '213.55.63.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.55.64.0', '213.55.127.255', 2147483647, 2147483647, 'ET', 'Ethiopia'), +('213.55.128.0', '213.55.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('213.56.0.0', '213.56.255.255', 2147483647, 2147483647, 'FR', 'France'), +('213.57.0.0', '213.57.255.255', 2147483647, 2147483647, 'IL', 'Israel'), +('213.58.0.0', '213.58.174.127', 2147483647, 2147483647, 'PT', 'Portugal'), +('213.58.174.128', '213.58.174.143', 2147483647, 2147483647, 'DE', 'Germany'), +('213.58.174.144', '213.58.255.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('213.59.0.0', '213.59.15.47', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('213.59.15.48', '213.59.15.63', 2147483647, 2147483647, 'KZ', 'Kazakstan'), +('213.59.15.64', '213.59.255.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('213.60.0.0', '213.60.255.255', 2147483647, 2147483647, 'ES', 'Spain'), +('213.61.0.0', '213.61.4.67', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.4.68', '213.61.4.71', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.4.72', '213.61.4.135', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.4.136', '213.61.4.143', 2147483647, 2147483647, 'US', 'United States'), +('213.61.4.144', '213.61.4.175', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.4.176', '213.61.4.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.4.192', '213.61.4.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.5.0', '213.61.5.127', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.61.5.128', '213.61.5.159', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.5.160', '213.61.5.167', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.5.168', '213.61.5.175', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.5.176', '213.61.5.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.5.192', '213.61.5.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.6.0', '213.61.6.127', 2147483647, 2147483647, 'US', 'United States'), +('213.61.6.128', '213.61.6.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.6.144', '213.61.6.175', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.6.176', '213.61.6.183', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.6.184', '213.61.7.207', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.7.208', '213.61.7.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.7.224', '213.61.9.215', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.9.216', '213.61.9.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.9.224', '213.61.10.111', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.10.112', '213.61.10.119', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.10.120', '213.61.10.191', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.10.192', '213.61.10.255', 2147483647, 2147483647, 'FR', 'France'), +('213.61.11.0', '213.61.11.111', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.11.112', '213.61.11.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.11.144', '213.61.11.223', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.11.224', '213.61.11.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.12.0', '213.61.13.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.14.0', '213.61.14.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.14.16', '213.61.14.31', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.14.32', '213.61.14.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.14.64', '213.61.16.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.17.0', '213.61.17.23', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.17.24', '213.61.17.63', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.17.64', '213.61.17.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.17.96', '213.61.19.31', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.19.32', '213.61.19.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.19.64', '213.61.19.127', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.19.128', '213.61.19.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.20.0', '213.61.23.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.24.0', '213.61.24.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.24.144', '213.61.24.199', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.24.200', '213.61.24.207', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.24.208', '213.61.24.239', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.24.240', '213.61.24.247', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.24.248', '213.61.24.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.25.0', '213.61.25.7', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.25.8', '213.61.25.15', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.25.16', '213.61.25.23', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.25.24', '213.61.25.47', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.25.48', '213.61.25.55', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.25.56', '213.61.25.63', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.25.64', '213.61.25.71', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.25.72', '213.61.25.95', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.25.96', '213.61.25.103', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.25.104', '213.61.25.111', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.25.112', '213.61.25.119', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.25.120', '213.61.25.167', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.25.168', '213.61.25.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.25.176', '213.61.25.183', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.25.184', '213.61.25.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.25.224', '213.61.25.239', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.25.240', '213.61.25.247', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.25.248', '213.61.26.47', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.26.48', '213.61.26.51', 2147483647, 2147483647, 'US', 'United States'), +('213.61.26.52', '213.61.26.63', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.26.64', '213.61.26.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.26.96', '213.61.29.23', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.29.24', '213.61.29.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.29.48', '213.61.29.63', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.29.64', '213.61.29.71', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.29.72', '213.61.29.87', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.29.88', '213.61.29.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.29.96', '213.61.29.111', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.29.112', '213.61.29.119', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.29.120', '213.61.29.127', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.29.128', '213.61.29.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.29.144', '213.61.29.191', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.29.192', '213.61.29.231', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.29.232', '213.61.29.239', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.29.240', '213.61.29.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.30.0', '213.61.30.15', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.30.16', '213.61.30.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.30.64', '213.61.32.63', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.32.64', '213.61.32.71', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.32.72', '213.61.32.87', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.32.88', '213.61.32.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.32.96', '213.61.32.119', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.32.120', '213.61.32.135', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.32.136', '213.61.32.143', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.32.144', '213.61.32.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.32.160', '213.61.32.217', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.32.218', '213.61.32.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.32.224', '213.61.33.39', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.33.40', '213.61.33.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.33.48', '213.61.33.71', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.33.72', '213.61.33.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.34.0', '213.61.34.95', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.34.96', '213.61.34.167', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.34.168', '213.61.34.175', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.34.176', '213.61.34.207', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.34.208', '213.61.34.215', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.34.216', '213.61.34.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.35.0', '213.61.36.63', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.36.64', '213.61.36.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.36.128', '213.61.36.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.37.0', '213.61.38.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.38.32', '213.61.38.35', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.38.36', '213.61.38.51', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.38.52', '213.61.38.55', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.38.56', '213.61.38.215', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.38.216', '213.61.38.227', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.38.228', '213.61.38.231', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.38.232', '213.61.38.239', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.38.240', '213.61.38.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.39.0', '213.61.39.127', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.39.128', '213.61.39.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.40.0', '213.61.48.7', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.48.8', '213.61.48.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.48.16', '213.61.48.79', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.48.80', '213.61.48.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.48.112', '213.61.48.223', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.48.224', '213.61.48.239', 2147483647, 2147483647, 'US', 'United States'), +('213.61.48.240', '213.61.48.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.49.0', '213.61.52.135', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.52.136', '213.61.52.151', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.52.152', '213.61.52.159', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.52.160', '213.61.52.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.52.192', '213.61.53.87', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.53.88', '213.61.53.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.53.96', '213.61.53.111', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.53.112', '213.61.53.119', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.53.120', '213.61.53.159', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.53.160', '213.61.53.167', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.53.168', '213.61.54.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.55.0', '213.61.56.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.56.128', '213.61.56.143', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.56.144', '213.61.56.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.56.160', '213.61.56.199', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.56.200', '213.61.56.207', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.56.208', '213.61.56.239', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.56.240', '213.61.57.7', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.57.8', '213.61.57.15', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.57.16', '213.61.57.23', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.57.24', '213.61.57.31', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.57.32', '213.61.57.55', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.57.56', '213.61.57.87', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.57.88', '213.61.57.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.57.96', '213.61.57.103', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.57.104', '213.61.57.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.57.112', '213.61.57.135', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.57.136', '213.61.57.151', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.57.152', '213.61.57.159', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.57.160', '213.61.57.167', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.57.168', '213.61.57.175', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.57.176', '213.61.57.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.57.192', '213.61.57.223', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.57.224', '213.61.57.231', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.57.232', '213.61.57.239', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.57.240', '213.61.57.247', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.57.248', '213.61.58.7', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.58.8', '213.61.58.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.58.16', '213.61.58.55', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.58.56', '213.61.58.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.58.64', '213.61.58.111', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.58.112', '213.61.58.119', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.58.120', '213.61.58.127', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.58.128', '213.61.58.135', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.58.136', '213.61.59.175', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.59.176', '213.61.59.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.59.192', '213.61.59.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.60.0', '213.61.60.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.60.16', '213.61.60.31', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.60.32', '213.61.60.39', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.60.40', '213.61.60.47', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.60.48', '213.61.60.103', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.60.104', '213.61.60.111', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.60.112', '213.61.60.207', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.60.208', '213.61.60.223', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.60.224', '213.61.60.231', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.60.232', '213.61.61.23', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.61.24', '213.61.61.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.61.32', '213.61.63.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.64.0', '213.61.64.39', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.64.40', '213.61.64.43', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.64.44', '213.61.64.147', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.64.148', '213.61.64.175', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.64.176', '213.61.64.179', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.64.180', '213.61.64.183', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.64.184', '213.61.64.199', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.64.200', '213.61.64.235', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.64.236', '213.61.64.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.64.240', '213.61.64.243', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.64.244', '213.61.65.251', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.65.252', '213.61.66.23', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.66.24', '213.61.66.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.66.32', '213.61.66.191', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.66.192', '213.61.66.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.66.224', '213.61.66.239', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.66.240', '213.61.66.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.67.0', '213.61.67.231', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.67.232', '213.61.67.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.67.240', '213.61.67.247', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.67.248', '213.61.67.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.68.0', '213.61.69.23', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.69.24', '213.61.69.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.69.32', '213.61.69.47', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.69.48', '213.61.69.55', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.69.56', '213.61.69.63', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.69.64', '213.61.69.71', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.69.72', '213.61.69.95', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.69.96', '213.61.69.103', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.69.104', '213.61.69.111', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.69.112', '213.61.69.119', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.69.120', '213.61.69.143', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.69.144', '213.61.69.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.69.160', '213.61.69.167', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.69.168', '213.61.69.183', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.69.184', '213.61.69.191', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.69.192', '213.61.69.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.70.0', '213.61.71.55', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.71.56', '213.61.71.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.71.112', '213.61.71.119', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.71.120', '213.61.71.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.71.128', '213.61.71.135', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.71.136', '213.61.71.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.72.0', '213.61.72.143', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.72.144', '213.61.72.151', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.72.152', '213.61.72.159', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.72.160', '213.61.72.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.72.176', '213.61.72.191', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.72.192', '213.61.72.199', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.72.200', '213.61.72.207', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.72.208', '213.61.72.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.72.224', '213.61.72.239', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.72.240', '213.61.72.247', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.72.248', '213.61.75.15', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.75.16', '213.61.75.23', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.75.24', '213.61.75.95', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.75.96', '213.61.75.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.75.128', '213.61.75.135', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.75.136', '213.61.75.139', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.75.140', '213.61.75.183', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.75.184', '213.61.75.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.75.192', '213.61.75.207', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.75.208', '213.61.75.215', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.75.216', '213.61.76.31', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.76.32', '213.61.76.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.76.144', '213.61.76.199', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.76.200', '213.61.76.207', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.76.208', '213.61.76.215', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.76.216', '213.61.76.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.76.224', '213.61.77.159', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.77.160', '213.61.77.167', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.77.168', '213.61.77.183', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.77.184', '213.61.77.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.77.192', '213.61.77.239', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.77.240', '213.61.77.247', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.77.248', '213.61.78.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.79.0', '213.61.80.43', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.80.44', '213.61.80.71', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.80.72', '213.61.80.75', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.80.76', '213.61.80.87', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.80.88', '213.61.80.99', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.80.100', '213.61.80.103', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.80.104', '213.61.81.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.82.0', '213.61.82.15', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.82.16', '213.61.82.23', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.82.24', '213.61.82.79', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.82.80', '213.61.82.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.82.96', '213.61.82.127', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.82.128', '213.61.82.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.82.144', '213.61.82.151', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.82.152', '213.61.82.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.82.160', '213.61.82.167', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.82.168', '213.61.82.183', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.82.184', '213.61.82.199', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.82.200', '213.61.82.207', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.82.208', '213.61.82.215', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.82.216', '213.61.82.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.82.224', '213.61.82.247', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.82.248', '213.61.83.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.83.16', '213.61.83.23', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.83.24', '213.61.83.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.83.48', '213.61.83.55', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.83.56', '213.61.83.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.83.96', '213.61.83.103', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.83.104', '213.61.83.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.83.112', '213.61.83.135', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.83.136', '213.61.83.151', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.83.152', '213.61.83.167', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.83.168', '213.61.83.183', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.83.184', '213.61.83.191', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.83.192', '213.61.83.199', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.83.200', '213.61.83.223', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.83.224', '213.61.83.231', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.83.232', '213.61.83.239', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.83.240', '213.61.83.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.84.0', '213.61.84.11', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.84.12', '213.61.84.215', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.84.216', '213.61.84.223', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.84.224', '213.61.84.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.85.0', '213.61.85.247', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.85.248', '213.61.85.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.86.0', '213.61.86.151', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.86.152', '213.61.86.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.86.160', '213.61.87.135', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.87.136', '213.61.87.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.87.144', '213.61.87.151', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.87.152', '213.61.87.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.87.160', '213.61.87.191', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.87.192', '213.61.87.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.87.224', '213.61.89.7', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.89.8', '213.61.89.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.89.16', '213.61.89.23', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.89.24', '213.61.89.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.89.32', '213.61.89.127', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.89.128', '213.61.89.135', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.89.136', '213.61.89.151', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.89.152', '213.61.89.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.89.160', '213.61.89.175', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.89.176', '213.61.89.183', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.89.184', '213.61.89.191', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.89.192', '213.61.90.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.90.128', '213.61.92.223', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.92.224', '213.61.92.231', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.92.232', '213.61.92.239', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.92.240', '213.61.92.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.93.0', '213.61.93.15', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.93.16', '213.61.93.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.93.32', '213.61.93.63', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.93.64', '213.61.95.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.96.0', '213.61.96.103', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.96.104', '213.61.96.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.96.112', '213.61.96.127', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.96.128', '213.61.96.151', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.96.152', '213.61.96.175', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.96.176', '213.61.96.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.96.192', '213.61.96.219', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.96.220', '213.61.96.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.96.224', '213.61.98.95', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.98.96', '213.61.98.103', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.98.104', '213.61.98.119', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.98.120', '213.61.98.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.98.128', '213.61.98.207', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.98.208', '213.61.98.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.98.224', '213.61.99.63', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.99.64', '213.61.99.71', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.99.72', '213.61.99.87', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.99.88', '213.61.99.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.99.96', '213.61.99.111', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.99.112', '213.61.99.119', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.99.120', '213.61.100.63', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.100.64', '213.61.100.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.101.0', '213.61.101.143', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.101.144', '213.61.101.147', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.101.148', '213.61.101.223', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.101.224', '213.61.101.231', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.101.232', '213.61.102.31', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.102.32', '213.61.102.39', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.102.40', '213.61.102.95', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.102.96', '213.61.102.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.102.192', '213.61.103.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.104.0', '213.61.104.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.104.16', '213.61.104.31', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.104.32', '213.61.104.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.104.64', '213.61.104.71', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.104.72', '213.61.104.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.104.80', '213.61.105.111', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.105.112', '213.61.105.119', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.105.120', '213.61.105.207', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.105.208', '213.61.105.215', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.105.216', '213.61.105.223', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.105.224', '213.61.105.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.106.0', '213.61.106.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.107.0', '213.61.108.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.108.64', '213.61.108.111', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.108.112', '213.61.108.119', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.108.120', '213.61.108.135', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.108.136', '213.61.108.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.108.144', '213.61.108.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.109.0', '213.61.109.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.110.0', '213.61.110.63', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.110.64', '213.61.110.71', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.110.72', '213.61.110.79', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.110.80', '213.61.110.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.110.96', '213.61.110.175', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.110.176', '213.61.110.183', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.110.184', '213.61.110.187', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.110.188', '213.61.110.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.110.192', '213.61.110.207', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.110.208', '213.61.110.215', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.110.216', '213.61.110.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.111.0', '213.61.111.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.111.32', '213.61.111.55', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.111.56', '213.61.111.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.111.64', '213.61.111.71', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.111.72', '213.61.111.87', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.111.88', '213.61.111.167', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.111.168', '213.61.111.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.111.176', '213.61.112.63', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.112.64', '213.61.115.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.116.0', '213.61.116.7', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.116.8', '213.61.116.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.116.16', '213.61.116.79', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.116.80', '213.61.117.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.118.0', '213.61.118.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.119.0', '213.61.119.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.119.16', '213.61.119.23', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.119.24', '213.61.119.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.119.32', '213.61.119.63', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.119.64', '213.61.120.7', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.120.8', '213.61.120.159', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.120.160', '213.61.120.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.120.176', '213.61.120.231', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.120.232', '213.61.120.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.120.240', '213.61.125.95', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.125.96', '213.61.125.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.125.112', '213.61.125.143', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.125.144', '213.61.125.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.125.160', '213.61.125.207', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.125.208', '213.61.125.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.125.224', '213.61.127.15', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.127.16', '213.61.127.31', 2147483647, 2147483647, 'US', 'United States'), +('213.61.127.32', '213.61.127.175', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.127.176', '213.61.127.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.127.192', '213.61.128.71', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.128.72', '213.61.128.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.128.80', '213.61.128.175', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.128.176', '213.61.128.183', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.128.184', '213.61.128.207', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.128.208', '213.61.128.215', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.128.216', '213.61.128.223', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.128.224', '213.61.128.231', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.128.232', '213.61.129.15', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.129.16', '213.61.129.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.129.32', '213.61.129.55', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.129.56', '213.61.129.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.129.64', '213.61.129.95', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.129.96', '213.61.129.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.129.128', '213.61.129.159', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.129.160', '213.61.129.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.129.176', '213.61.129.195', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.129.196', '213.61.129.207', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.129.208', '213.61.130.111', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.130.112', '213.61.130.119', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.130.120', '213.61.134.183', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.134.184', '213.61.134.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.134.192', '213.61.134.223', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.134.224', '213.61.134.231', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.134.232', '213.61.137.63', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.137.64', '213.61.137.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.137.96', '213.61.137.103', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.137.104', '213.61.137.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.137.128', '213.61.138.55', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.138.56', '213.61.138.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.138.64', '213.61.138.79', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.138.80', '213.61.138.87', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.138.88', '213.61.138.95', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.138.96', '213.61.138.103', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.138.104', '213.61.138.143', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.138.144', '213.61.138.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.138.160', '213.61.139.47', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.139.48', '213.61.139.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.139.64', '213.61.139.87', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.139.88', '213.61.139.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.139.96', '213.61.139.175', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.139.176', '213.61.139.183', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.139.184', '213.61.139.195', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.139.196', '213.61.139.199', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.139.200', '213.61.139.223', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.139.224', '213.61.139.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.140.0', '213.61.140.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.141.0', '213.61.141.7', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.141.8', '213.61.141.91', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.141.92', '213.61.141.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.141.112', '213.61.141.127', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.141.128', '213.61.141.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.141.160', '213.61.141.207', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.141.208', '213.61.141.215', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.141.216', '213.61.141.223', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.141.224', '213.61.141.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.142.0', '213.61.145.95', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.145.96', '213.61.145.103', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.145.104', '213.61.145.223', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.145.224', '213.61.145.231', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.145.232', '213.61.146.31', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.146.32', '213.61.146.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.147.0', '213.61.147.7', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.147.8', '213.61.147.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.147.16', '213.61.147.127', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.147.128', '213.61.147.135', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.147.136', '213.61.147.175', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.147.176', '213.61.147.183', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.147.184', '213.61.147.227', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.147.228', '213.61.147.231', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.147.232', '213.61.147.239', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.147.240', '213.61.147.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.148.0', '213.61.148.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.149.0', '213.61.149.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.150.0', '213.61.150.143', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.150.144', '213.61.150.151', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.150.152', '213.61.150.159', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.150.160', '213.61.150.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.150.192', '213.61.150.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.151.0', '213.61.151.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.152.0', '213.61.154.15', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.154.16', '213.61.154.19', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.154.20', '213.61.154.31', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.154.32', '213.61.154.39', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.154.40', '213.61.154.43', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.154.44', '213.61.154.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.154.64', '213.61.154.151', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.154.152', '213.61.154.163', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.154.164', '213.61.154.167', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.154.168', '213.61.154.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.154.176', '213.61.154.207', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.154.208', '213.61.154.215', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.154.216', '213.61.154.223', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.154.224', '213.61.154.231', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.154.232', '213.61.154.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.155.0', '213.61.155.23', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.155.24', '213.61.155.79', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.155.80', '213.61.155.87', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.155.88', '213.61.155.207', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.155.208', '213.61.155.215', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.155.216', '213.61.155.223', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.155.224', '213.61.155.231', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.155.232', '213.61.155.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.156.0', '213.61.156.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.157.0', '213.61.157.7', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.157.8', '213.61.157.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.157.16', '213.61.157.31', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.157.32', '213.61.157.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.157.64', '213.61.157.95', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.157.96', '213.61.157.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.157.128', '213.61.159.7', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.159.8', '213.61.159.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.159.16', '213.61.159.31', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.159.32', '213.61.159.39', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.159.40', '213.61.159.47', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.159.48', '213.61.159.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.159.80', '213.61.159.159', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.159.160', '213.61.159.207', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.159.208', '213.61.159.223', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.159.224', '213.61.159.231', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.159.232', '213.61.159.239', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.159.240', '213.61.161.147', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.161.148', '213.61.161.151', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.161.152', '213.61.161.155', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.161.156', '213.61.161.159', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.161.160', '213.61.161.163', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.161.164', '213.61.161.167', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.161.168', '213.61.161.251', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.161.252', '213.61.161.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.162.0', '213.61.162.39', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.162.40', '213.61.162.143', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.162.144', '213.61.162.151', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.162.152', '213.61.162.199', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.162.200', '213.61.162.207', 2147483647, 2147483647, 'GB', 'United Kingdom'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('213.61.162.208', '213.61.162.239', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.162.240', '213.61.163.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.163.16', '213.61.163.31', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.163.32', '213.61.163.135', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.163.136', '213.61.163.143', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.163.144', '213.61.163.151', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.163.152', '213.61.163.215', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.163.216', '213.61.163.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.164.0', '213.61.164.23', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.164.24', '213.61.164.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.164.32', '213.61.164.63', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.164.64', '213.61.164.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.164.96', '213.61.165.135', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.165.136', '213.61.165.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.165.144', '213.61.165.159', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.165.160', '213.61.165.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.165.192', '213.61.165.239', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.165.240', '213.61.165.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.166.0', '213.61.166.39', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.166.40', '213.61.166.119', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.166.120', '213.61.166.127', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.166.128', '213.61.167.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.167.16', '213.61.167.23', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.167.24', '213.61.167.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.167.64', '213.61.167.159', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.167.160', '213.61.167.167', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.167.168', '213.61.167.175', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.167.176', '213.61.167.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.168.0', '213.61.168.71', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.168.72', '213.61.168.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.168.80', '213.61.168.135', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.168.136', '213.61.168.151', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.168.152', '213.61.168.159', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.168.160', '213.61.168.167', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.168.168', '213.61.168.207', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.168.208', '213.61.168.215', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.168.216', '213.61.169.127', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.169.128', '213.61.169.131', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.169.132', '213.61.169.135', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.169.136', '213.61.169.183', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.169.184', '213.61.169.187', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.169.188', '213.61.169.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.170.0', '213.61.171.31', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.171.32', '213.61.171.71', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.171.72', '213.61.171.79', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.171.80', '213.61.171.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.172.0', '213.61.172.7', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.172.8', '213.61.172.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.172.16', '213.61.172.47', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.172.48', '213.61.172.55', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.172.56', '213.61.172.67', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.172.68', '213.61.172.71', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.172.72', '213.61.172.127', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.172.128', '213.61.172.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.172.144', '213.61.173.15', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.173.16', '213.61.173.23', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.173.24', '213.61.173.127', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.173.128', '213.61.173.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.173.144', '213.61.173.159', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.173.160', '213.61.173.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.173.176', '213.61.174.71', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.174.72', '213.61.174.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.174.80', '213.61.174.95', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.174.96', '213.61.174.103', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.174.104', '213.61.174.111', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.174.112', '213.61.174.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.174.128', '213.61.174.143', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.174.144', '213.61.174.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.174.160', '213.61.174.207', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.174.208', '213.61.174.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.174.224', '213.61.174.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.175.0', '213.61.175.11', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.175.12', '213.61.175.15', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.175.16', '213.61.175.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.175.48', '213.61.175.51', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.175.52', '213.61.175.199', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.175.200', '213.61.175.231', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.175.232', '213.61.175.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.176.0', '213.61.176.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.177.0', '213.61.177.7', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.177.8', '213.61.177.31', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.177.32', '213.61.177.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.177.64', '213.61.177.159', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.177.160', '213.61.177.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.177.176', '213.61.177.183', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.177.184', '213.61.177.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.177.192', '213.61.177.203', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.177.204', '213.61.177.207', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.177.208', '213.61.177.223', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.177.224', '213.61.177.231', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.177.232', '213.61.177.247', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.177.248', '213.61.177.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.178.0', '213.61.178.23', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.178.24', '213.61.178.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.178.32', '213.61.178.39', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.178.40', '213.61.178.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.178.48', '213.61.178.127', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.178.128', '213.61.178.135', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.178.136', '213.61.178.183', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.178.184', '213.61.178.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.179.0', '213.61.180.127', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.180.128', '213.61.180.135', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.180.136', '213.61.180.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.181.0', '213.61.181.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.181.16', '213.61.181.31', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.181.32', '213.61.181.39', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.181.40', '213.61.181.71', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.181.72', '213.61.181.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.181.80', '213.61.181.87', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.181.88', '213.61.181.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.181.96', '213.61.181.103', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.181.104', '213.61.181.107', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.181.108', '213.61.181.135', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.181.136', '213.61.181.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.181.144', '213.61.181.175', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.181.176', '213.61.181.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.181.192', '213.61.181.223', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.181.224', '213.61.181.247', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.181.248', '213.61.183.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.184.0', '213.61.184.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.184.64', '213.61.184.79', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.184.80', '213.61.184.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.184.144', '213.61.184.151', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.184.152', '213.61.184.155', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.184.156', '213.61.184.199', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.184.200', '213.61.184.207', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.184.208', '213.61.186.15', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.186.16', '213.61.186.23', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.186.24', '213.61.186.63', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.186.64', '213.61.186.71', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.186.72', '213.61.186.87', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.186.88', '213.61.186.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.186.96', '213.61.187.7', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.187.8', '213.61.187.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.187.32', '213.61.187.47', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.187.48', '213.61.187.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.187.64', '213.61.187.127', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.187.128', '213.61.187.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.187.160', '213.61.187.167', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.187.168', '213.61.187.175', 2147483647, 2147483647, 'IE', 'Ireland'), +('213.61.187.176', '213.61.187.207', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.187.208', '213.61.189.39', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.189.40', '213.61.189.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.189.48', '213.61.189.55', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.189.56', '213.61.189.59', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.189.60', '213.61.189.83', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.189.84', '213.61.189.87', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.189.88', '213.61.189.99', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.189.100', '213.61.189.119', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.189.120', '213.61.189.127', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.189.128', '213.61.189.135', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.189.136', '213.61.189.143', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.189.144', '213.61.189.151', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.189.152', '213.61.190.47', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.190.48', '213.61.190.71', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.190.72', '213.61.190.79', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.190.80', '213.61.190.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.190.96', '213.61.190.127', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.190.128', '213.61.190.135', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.190.136', '213.61.190.143', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.190.144', '213.61.190.151', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.190.152', '213.61.218.175', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.218.176', '213.61.218.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.218.192', '213.61.219.27', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.219.28', '213.61.219.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.219.32', '213.61.219.95', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.219.96', '213.61.219.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.219.128', '213.61.219.150', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.219.151', '213.61.219.151', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.219.152', '213.61.219.239', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.219.240', '213.61.219.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.220.0', '213.61.221.39', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.221.40', '213.61.221.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.221.48', '213.61.221.95', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.221.96', '213.61.221.103', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.221.104', '213.61.221.119', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.221.120', '213.61.221.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.221.128', '213.61.221.167', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.221.168', '213.61.221.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.221.176', '213.61.222.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.223.0', '213.61.224.23', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.224.24', '213.61.224.47', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.224.48', '213.61.224.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.224.64', '213.61.224.127', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.224.128', '213.61.225.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.225.64', '213.61.225.199', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.225.200', '213.61.225.207', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.225.208', '213.61.225.215', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.225.216', '213.61.225.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.225.224', '213.61.227.31', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.227.32', '213.61.227.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.227.64', '213.61.227.103', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.227.104', '213.61.227.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.227.112', '213.61.227.143', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.227.144', '213.61.227.151', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.227.152', '213.61.227.223', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.227.224', '213.61.227.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.227.240', '213.61.227.247', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.227.248', '213.61.228.7', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.228.8', '213.61.228.31', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.228.32', '213.61.228.39', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.228.40', '213.61.228.59', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.228.60', '213.61.228.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.228.64', '213.61.228.79', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.228.80', '213.61.228.87', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.228.88', '213.61.228.127', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.228.128', '213.61.228.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.228.176', '213.61.228.191', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.228.192', '213.61.228.199', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.228.200', '213.61.228.247', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.228.248', '213.61.228.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.229.0', '213.61.229.127', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.229.128', '213.61.229.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.229.144', '213.61.229.215', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.229.216', '213.61.229.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.230.0', '213.61.230.71', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.230.72', '213.61.230.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.230.80', '213.61.231.47', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.231.48', '213.61.231.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.231.64', '213.61.231.191', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.231.192', '213.61.231.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.232.0', '213.61.240.31', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.240.32', '213.61.240.39', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.240.40', '213.61.240.47', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.240.48', '213.61.240.55', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.240.56', '213.61.240.71', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.240.72', '213.61.240.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.240.80', '213.61.240.135', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.240.136', '213.61.240.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.240.144', '213.61.240.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.241.0', '213.61.241.55', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.241.56', '213.61.241.79', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.241.80', '213.61.241.87', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.241.88', '213.61.241.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.242.0', '213.61.242.7', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.242.8', '213.61.242.79', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.242.80', '213.61.242.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.242.128', '213.61.242.159', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.242.160', '213.61.242.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.242.176', '213.61.242.215', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.242.216', '213.61.242.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.242.224', '213.61.242.231', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.242.232', '213.61.242.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.242.240', '213.61.242.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.243.0', '213.61.243.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.243.96', '213.61.243.143', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.243.144', '213.61.243.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.243.160', '213.61.244.31', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.244.32', '213.61.244.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.245.0', '213.61.245.135', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.245.136', '213.61.245.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.245.144', '213.61.245.159', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.245.160', '213.61.245.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.245.192', '213.61.245.239', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.245.240', '213.61.245.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.246.0', '213.61.246.47', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.246.48', '213.61.246.55', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.246.56', '213.61.246.63', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.246.64', '213.61.246.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.246.96', '213.61.246.127', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.246.128', '213.61.246.135', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.246.136', '213.61.246.143', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.246.144', '213.61.246.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.246.160', '213.61.246.167', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.246.168', '213.61.246.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.246.176', '213.61.247.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.248.0', '213.61.248.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.249.0', '213.61.249.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.250.0', '213.61.250.39', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.250.40', '213.61.250.47', 2147483647, 2147483647, 'ES', 'Spain'), +('213.61.250.48', '213.61.250.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.250.112', '213.61.250.135', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.250.136', '213.61.250.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.250.144', '213.61.250.159', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.250.160', '213.61.250.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.251.0', '213.61.251.39', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.251.40', '213.61.251.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.251.48', '213.61.251.63', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.251.64', '213.61.251.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.251.112', '213.61.251.127', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.251.128', '213.61.251.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.252.0', '213.61.252.143', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.252.144', '213.61.252.151', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.252.152', '213.61.252.159', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.252.160', '213.61.252.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.252.192', '213.61.252.199', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.252.200', '213.61.252.207', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.61.252.208', '213.61.252.215', 2147483647, 2147483647, 'DE', 'Germany'), +('213.61.252.216', '213.61.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.62.0.0', '213.62.0.127', 2147483647, 2147483647, 'DE', 'Germany'), +('213.62.0.128', '213.62.0.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.62.1.0', '213.62.1.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.62.2.0', '213.62.3.191', 2147483647, 2147483647, 'CH', 'Switzerland'), +('213.62.3.192', '213.62.3.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.62.4.0', '213.62.7.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.62.8.0', '213.62.8.31', 2147483647, 2147483647, 'EU', 'Europe'), +('213.62.8.32', '213.62.8.95', 2147483647, 2147483647, 'DE', 'Germany'), +('213.62.8.96', '213.62.8.127', 2147483647, 2147483647, 'EU', 'Europe'), +('213.62.8.128', '213.62.8.255', 2147483647, 2147483647, 'NO', 'Norway'), +('213.62.9.0', '213.62.9.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('213.62.10.0', '213.62.10.255', 2147483647, 2147483647, 'FI', 'Finland'), +('213.62.11.0', '213.62.11.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.62.12.0', '213.62.12.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.62.13.0', '213.62.14.63', 2147483647, 2147483647, 'EU', 'Europe'), +('213.62.14.64', '213.62.14.127', 2147483647, 2147483647, 'TR', 'Turkey'), +('213.62.14.128', '213.62.14.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.62.15.0', '213.62.15.31', 2147483647, 2147483647, 'DE', 'Germany'), +('213.62.15.32', '213.62.15.63', 2147483647, 2147483647, 'EU', 'Europe'), +('213.62.15.64', '213.62.15.127', 2147483647, 2147483647, 'DE', 'Germany'), +('213.62.15.128', '213.62.31.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.62.32.0', '213.62.32.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.62.32.16', '213.62.32.31', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.62.32.32', '213.62.32.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.62.32.128', '213.62.32.191', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.62.32.192', '213.62.32.223', 2147483647, 2147483647, 'EU', 'Europe'), +('213.62.32.224', '213.62.32.231', 2147483647, 2147483647, 'AT', 'Austria'), +('213.62.32.232', '213.62.32.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.62.33.0', '213.62.37.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.62.37.224', '213.62.37.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.62.38.0', '213.62.40.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.62.40.96', '213.62.40.143', 2147483647, 2147483647, 'EU', 'Europe'), +('213.62.40.144', '213.62.40.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.62.40.192', '213.62.40.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('213.62.41.0', '213.62.41.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.62.42.0', '213.62.42.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.62.42.64', '213.62.42.127', 2147483647, 2147483647, 'EU', 'Europe'), +('213.62.42.128', '213.62.42.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.62.42.160', '213.62.42.223', 2147483647, 2147483647, 'EU', 'Europe'), +('213.62.42.224', '213.62.42.231', 2147483647, 2147483647, 'SK', 'Slovakia'), +('213.62.42.232', '213.62.42.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.62.43.0', '213.62.46.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.62.46.128', '213.62.46.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.62.47.0', '213.62.47.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.62.48.0', '213.62.48.63', 2147483647, 2147483647, 'EU', 'Europe'), +('213.62.48.64', '213.62.49.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.62.49.144', '213.62.49.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.62.50.0', '213.62.53.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.62.53.128', '213.62.53.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.62.54.0', '213.62.54.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.62.55.0', '213.62.55.127', 2147483647, 2147483647, 'EU', 'Europe'), +('213.62.55.128', '213.62.57.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.62.57.48', '213.62.57.63', 2147483647, 2147483647, 'EU', 'Europe'), +('213.62.57.64', '213.62.58.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.62.58.112', '213.62.58.119', 2147483647, 2147483647, 'EU', 'Europe'), +('213.62.58.120', '213.62.58.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.62.58.128', '213.62.58.143', 2147483647, 2147483647, 'EU', 'Europe'), +('213.62.58.144', '213.62.59.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.62.60.0', '213.62.60.223', 2147483647, 2147483647, 'EU', 'Europe'), +('213.62.60.224', '213.62.60.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.62.60.240', '213.62.60.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.62.61.0', '213.62.62.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.62.62.32', '213.62.62.127', 2147483647, 2147483647, 'EU', 'Europe'), +('213.62.62.128', '213.62.62.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.62.63.0', '213.62.63.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.62.64.0', '213.62.65.255', 2147483647, 2147483647, 'FR', 'France'), +('213.62.66.0', '213.62.66.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.62.67.0', '213.62.67.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.62.68.0', '213.62.69.63', 2147483647, 2147483647, 'FR', 'France'), +('213.62.69.64', '213.62.69.95', 2147483647, 2147483647, 'EU', 'Europe'), +('213.62.69.96', '213.62.71.255', 2147483647, 2147483647, 'FR', 'France'), +('213.62.72.0', '213.62.79.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('213.62.80.0', '213.62.80.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.62.81.0', '213.62.81.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.62.82.0', '213.62.83.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.62.84.0', '213.62.91.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.62.92.0', '213.62.92.159', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('213.62.92.160', '213.62.92.167', 2147483647, 2147483647, 'EU', 'Europe'), +('213.62.92.168', '213.62.92.175', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('213.62.92.176', '213.62.92.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.62.93.0', '213.62.93.191', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('213.62.93.192', '213.62.95.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.62.96.0', '213.62.98.127', 2147483647, 2147483647, 'FR', 'France'), +('213.62.98.128', '213.62.98.191', 2147483647, 2147483647, 'EU', 'Europe'), +('213.62.98.192', '213.62.99.255', 2147483647, 2147483647, 'FR', 'France'), +('213.62.100.0', '213.62.103.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.62.104.0', '213.62.108.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.62.109.0', '213.62.109.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.62.110.0', '213.62.111.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.62.112.0', '213.62.112.47', 2147483647, 2147483647, 'FR', 'France'), +('213.62.112.48', '213.62.112.55', 2147483647, 2147483647, 'EU', 'Europe'), +('213.62.112.56', '213.62.113.71', 2147483647, 2147483647, 'FR', 'France'), +('213.62.113.72', '213.62.113.79', 2147483647, 2147483647, 'EU', 'Europe'), +('213.62.113.80', '213.62.114.255', 2147483647, 2147483647, 'FR', 'France'), +('213.62.115.0', '213.62.115.79', 2147483647, 2147483647, 'EU', 'Europe'), +('213.62.115.80', '213.62.115.103', 2147483647, 2147483647, 'FR', 'France'), +('213.62.115.104', '213.62.115.111', 2147483647, 2147483647, 'EU', 'Europe'), +('213.62.115.112', '213.62.115.127', 2147483647, 2147483647, 'FR', 'France'), +('213.62.115.128', '213.62.115.159', 2147483647, 2147483647, 'EU', 'Europe'), +('213.62.115.160', '213.62.115.167', 2147483647, 2147483647, 'FR', 'France'), +('213.62.115.168', '213.62.115.175', 2147483647, 2147483647, 'EU', 'Europe'), +('213.62.115.176', '213.62.115.191', 2147483647, 2147483647, 'FR', 'France'), +('213.62.115.192', '213.62.115.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.62.116.0', '213.62.119.15', 2147483647, 2147483647, 'FR', 'France'), +('213.62.119.16', '213.62.119.23', 2147483647, 2147483647, 'EU', 'Europe'), +('213.62.119.24', '213.62.120.191', 2147483647, 2147483647, 'FR', 'France'), +('213.62.120.192', '213.62.120.199', 2147483647, 2147483647, 'EU', 'Europe'), +('213.62.120.200', '213.62.120.215', 2147483647, 2147483647, 'FR', 'France'), +('213.62.120.216', '213.62.120.223', 2147483647, 2147483647, 'EU', 'Europe'), +('213.62.120.224', '213.62.120.239', 2147483647, 2147483647, 'FR', 'France'), +('213.62.120.240', '213.62.120.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.62.121.0', '213.62.121.63', 2147483647, 2147483647, 'FR', 'France'), +('213.62.121.64', '213.62.121.127', 2147483647, 2147483647, 'EU', 'Europe'), +('213.62.121.128', '213.62.121.191', 2147483647, 2147483647, 'FR', 'France'), +('213.62.121.192', '213.62.121.199', 2147483647, 2147483647, 'EU', 'Europe'), +('213.62.121.200', '213.62.121.207', 2147483647, 2147483647, 'FR', 'France'), +('213.62.121.208', '213.62.121.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.62.122.0', '213.62.123.255', 2147483647, 2147483647, 'FR', 'France'), +('213.62.124.0', '213.62.124.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.62.124.64', '213.62.124.71', 2147483647, 2147483647, 'EU', 'Europe'), +('213.62.124.72', '213.62.124.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.62.124.96', '213.62.124.103', 2147483647, 2147483647, 'EU', 'Europe'), +('213.62.124.104', '213.62.124.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.62.124.128', '213.62.124.191', 2147483647, 2147483647, 'EU', 'Europe'), +('213.62.124.192', '213.62.124.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.62.125.0', '213.62.126.127', 2147483647, 2147483647, 'FR', 'France'), +('213.62.126.128', '213.62.126.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.62.127.0', '213.62.127.255', 2147483647, 2147483647, 'FR', 'France'), +('213.62.128.0', '213.62.128.223', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.62.128.224', '213.62.128.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.62.128.240', '213.62.128.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.62.129.0', '213.62.137.119', 2147483647, 2147483647, 'EU', 'Europe'), +('213.62.137.120', '213.62.137.135', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.62.137.136', '213.62.137.143', 2147483647, 2147483647, 'EU', 'Europe'), +('213.62.137.144', '213.62.137.191', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.62.137.192', '213.62.137.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('213.62.138.0', '213.62.138.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.62.139.0', '213.62.139.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.62.139.64', '213.62.139.79', 2147483647, 2147483647, 'EU', 'Europe'), +('213.62.139.80', '213.62.139.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.62.139.128', '213.62.139.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.62.140.0', '213.62.140.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.62.140.128', '213.62.140.255', 2147483647, 2147483647, 'NO', 'Norway'), +('213.62.141.0', '213.62.141.71', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.62.141.72', '213.62.141.79', 2147483647, 2147483647, 'EU', 'Europe'), +('213.62.141.80', '213.62.141.191', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.62.141.192', '213.62.141.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.62.142.0', '213.62.142.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.62.143.0', '213.62.143.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.62.144.0', '213.62.147.39', 2147483647, 2147483647, 'DK', 'Denmark'), +('213.62.147.40', '213.62.147.63', 2147483647, 2147483647, 'EU', 'Europe'), +('213.62.147.64', '213.62.147.95', 2147483647, 2147483647, 'DK', 'Denmark'), +('213.62.147.96', '213.62.147.127', 2147483647, 2147483647, 'EU', 'Europe'), +('213.62.147.128', '213.62.147.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('213.62.148.0', '213.62.148.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.62.149.0', '213.62.151.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.62.152.0', '213.62.159.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.62.160.0', '213.62.160.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.62.161.0', '213.62.163.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.62.164.0', '213.62.165.191', 2147483647, 2147483647, 'IT', 'Italy'), +('213.62.165.192', '213.62.165.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.62.166.0', '213.62.166.7', 2147483647, 2147483647, 'NO', 'Norway'), +('213.62.166.8', '213.62.166.15', 2147483647, 2147483647, 'EU', 'Europe'), +('213.62.166.16', '213.62.166.31', 2147483647, 2147483647, 'NO', 'Norway'), +('213.62.166.32', '213.62.166.127', 2147483647, 2147483647, 'EU', 'Europe'), +('213.62.166.128', '213.62.166.207', 2147483647, 2147483647, 'NO', 'Norway'), +('213.62.166.208', '213.62.166.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.62.167.0', '213.62.167.127', 2147483647, 2147483647, 'NO', 'Norway'), +('213.62.167.128', '213.62.167.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.62.168.0', '213.62.175.255', 2147483647, 2147483647, 'IT', 'Italy'), +('213.62.176.0', '213.62.176.223', 2147483647, 2147483647, 'AT', 'Austria'), +('213.62.176.224', '213.62.176.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.62.177.0', '213.62.177.95', 2147483647, 2147483647, 'AT', 'Austria'), +('213.62.177.96', '213.62.177.111', 2147483647, 2147483647, 'EU', 'Europe'), +('213.62.177.112', '213.62.177.127', 2147483647, 2147483647, 'AT', 'Austria'), +('213.62.177.128', '213.62.177.159', 2147483647, 2147483647, 'EU', 'Europe'), +('213.62.177.160', '213.62.177.191', 2147483647, 2147483647, 'AT', 'Austria'), +('213.62.177.192', '213.62.177.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.62.178.0', '213.62.180.127', 2147483647, 2147483647, 'AT', 'Austria'), +('213.62.180.128', '213.62.183.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.62.184.0', '213.62.191.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.62.192.0', '213.62.193.31', 2147483647, 2147483647, 'GR', 'Greece'), +('213.62.193.32', '213.62.193.63', 2147483647, 2147483647, 'EU', 'Europe'), +('213.62.193.64', '213.62.193.95', 2147483647, 2147483647, 'GR', 'Greece'), +('213.62.193.96', '213.62.194.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.62.195.0', '213.62.196.191', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.62.196.192', '213.62.196.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.62.197.0', '213.62.199.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.62.200.0', '213.62.207.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.62.208.0', '213.62.214.191', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.62.214.192', '213.62.214.223', 2147483647, 2147483647, 'EU', 'Europe'), +('213.62.214.224', '213.62.215.31', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.62.215.32', '213.62.215.63', 2147483647, 2147483647, 'EU', 'Europe'), +('213.62.215.64', '213.62.215.95', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.62.215.96', '213.62.215.127', 2147483647, 2147483647, 'EU', 'Europe'), +('213.62.215.128', '213.62.215.175', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.62.215.176', '213.62.215.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.62.216.0', '213.62.216.55', 2147483647, 2147483647, 'ES', 'Spain'), +('213.62.216.56', '213.62.216.63', 2147483647, 2147483647, 'EU', 'Europe'), +('213.62.216.64', '213.62.216.71', 2147483647, 2147483647, 'ES', 'Spain'), +('213.62.216.72', '213.62.216.79', 2147483647, 2147483647, 'EU', 'Europe'), +('213.62.216.80', '213.62.216.143', 2147483647, 2147483647, 'ES', 'Spain'), +('213.62.216.144', '213.62.216.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.62.217.0', '213.62.217.31', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.62.217.32', '213.62.217.63', 2147483647, 2147483647, 'RO', 'Romania'), +('213.62.217.64', '213.62.217.127', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('213.62.217.128', '213.62.217.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.62.218.0', '213.62.218.127', 2147483647, 2147483647, 'ES', 'Spain'), +('213.62.218.128', '213.62.223.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.62.224.0', '213.62.224.159', 2147483647, 2147483647, 'PL', 'Poland'), +('213.62.224.160', '213.62.228.31', 2147483647, 2147483647, 'EU', 'Europe'), +('213.62.228.32', '213.62.228.63', 2147483647, 2147483647, 'IE', 'Ireland'), +('213.62.228.64', '213.62.228.127', 2147483647, 2147483647, 'EU', 'Europe'), +('213.62.228.128', '213.62.228.191', 2147483647, 2147483647, 'IE', 'Ireland'), +('213.62.228.192', '213.62.229.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.62.230.0', '213.62.231.7', 2147483647, 2147483647, 'HU', 'Hungary'), +('213.62.231.8', '213.62.231.127', 2147483647, 2147483647, 'EU', 'Europe'), +('213.62.231.128', '213.62.231.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('213.62.232.0', '213.62.239.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.62.240.0', '213.62.241.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('213.62.242.0', '213.62.247.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.62.248.0', '213.62.255.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.63.0.0', '213.63.255.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('213.64.0.0', '213.67.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.68.0.0', '213.68.177.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.68.178.0', '213.68.178.31', 2147483647, 2147483647, 'CH', 'Switzerland'), +('213.68.178.32', '213.71.137.143', 2147483647, 2147483647, 'DE', 'Germany'), +('213.71.137.144', '213.71.137.159', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.71.137.160', '213.71.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.72.0.0', '213.72.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.73.0.0', '213.73.31.255', 2147483647, 2147483647, 'PL', 'Poland'), +('213.73.32.0', '213.73.63.255', 2147483647, 2147483647, 'ES', 'Spain'), +('213.73.64.0', '213.73.127.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.73.128.0', '213.73.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.74.0.0', '213.74.255.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('213.75.0.0', '213.75.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.76.0.0', '213.77.255.255', 2147483647, 2147483647, 'PL', 'Poland'), +('213.78.0.0', '213.78.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.79.0.0', '213.79.31.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('213.79.32.0', '213.79.63.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('213.79.64.0', '213.79.127.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('213.79.128.0', '213.80.127.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.80.128.0', '213.80.255.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('213.81.0.0', '213.81.127.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.81.128.0', '213.81.255.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('213.82.0.0', '213.82.255.255', 2147483647, 2147483647, 'IT', 'Italy'), +('213.83.0.0', '213.83.6.63', 2147483647, 2147483647, 'DE', 'Germany'), +('213.83.6.64', '213.83.6.67', 2147483647, 2147483647, 'LI', 'Liechtenstein'), +('213.83.6.68', '213.83.41.7', 2147483647, 2147483647, 'DE', 'Germany'), +('213.83.41.8', '213.83.41.15', 2147483647, 2147483647, 'CH', 'Switzerland'), +('213.83.41.16', '213.83.47.47', 2147483647, 2147483647, 'DE', 'Germany'), +('213.83.47.48', '213.83.47.55', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.83.47.56', '213.83.63.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.83.64.0', '213.83.127.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.83.128.0', '213.83.255.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('213.84.0.0', '213.84.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.85.0.0', '213.85.56.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('213.85.57.0', '213.85.57.255', 2147483647, 2147483647, 'BY', 'Belarus'), +('213.85.58.0', '213.85.255.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('213.86.0.0', '213.86.33.207', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.86.33.208', '213.86.33.223', 2147483647, 2147483647, 'DE', 'Germany'), +('213.86.33.224', '213.86.40.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.86.41.0', '213.86.41.47', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.86.41.48', '213.86.41.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.86.41.64', '213.86.41.95', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.86.41.96', '213.86.41.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.86.41.112', '213.86.41.127', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.86.41.128', '213.86.41.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.86.41.144', '213.86.41.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.86.42.0', '213.86.54.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.86.54.128', '213.86.54.255', 2147483647, 2147483647, 'US', 'United States'), +('213.86.55.0', '213.86.57.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.86.57.176', '213.86.57.191', 2147483647, 2147483647, 'US', 'United States'), +('213.86.57.192', '213.86.57.207', 2147483647, 2147483647, 'IT', 'Italy'), +('213.86.57.208', '213.86.177.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.86.178.0', '213.86.178.127', 2147483647, 2147483647, 'US', 'United States'), +('213.86.178.128', '213.86.226.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.86.226.192', '213.86.226.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('213.86.227.0', '213.86.232.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.86.233.0', '213.86.233.255', 2147483647, 2147483647, 'US', 'United States'), +('213.86.234.0', '213.86.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.87.0.0', '213.87.255.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('213.88.0.0', '213.88.127.255', 2147483647, 2147483647, 'IT', 'Italy'), +('213.88.128.0', '213.88.184.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.88.185.0', '213.88.185.255', 2147483647, 2147483647, 'NO', 'Norway'), +('213.88.186.0', '213.88.186.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.88.187.0', '213.88.187.15', 2147483647, 2147483647, 'NO', 'Norway'), +('213.88.187.16', '213.88.187.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.88.188.0', '213.88.188.255', 2147483647, 2147483647, 'NO', 'Norway'), +('213.88.189.0', '213.88.189.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.88.190.0', '213.88.191.255', 2147483647, 2147483647, 'NO', 'Norway'), +('213.88.192.0', '213.89.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.90.0.0', '213.90.71.255', 2147483647, 2147483647, 'AT', 'Austria'), +('213.90.72.0', '213.90.72.3', 2147483647, 2147483647, 'US', 'United States'), +('213.90.72.4', '213.90.127.255', 2147483647, 2147483647, 'AT', 'Austria'), +('213.90.128.0', '213.90.139.15', 2147483647, 2147483647, 'FR', 'France'), +('213.90.139.16', '213.90.139.23', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.90.139.24', '213.90.139.31', 2147483647, 2147483647, 'FR', 'France'), +('213.90.139.32', '213.90.139.39', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.90.139.40', '213.90.140.7', 2147483647, 2147483647, 'FR', 'France'), +('213.90.140.8', '213.90.140.15', 2147483647, 2147483647, 'CH', 'Switzerland'), +('213.90.140.16', '213.90.140.31', 2147483647, 2147483647, 'FR', 'France'), +('213.90.140.32', '213.90.140.39', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.90.140.40', '213.90.140.55', 2147483647, 2147483647, 'FR', 'France'), +('213.90.140.56', '213.90.140.63', 2147483647, 2147483647, 'CH', 'Switzerland'), +('213.90.140.64', '213.90.140.71', 2147483647, 2147483647, 'FR', 'France'), +('213.90.140.72', '213.90.140.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.90.140.80', '213.90.140.103', 2147483647, 2147483647, 'FR', 'France'), +('213.90.140.104', '213.90.140.111', 2147483647, 2147483647, 'CH', 'Switzerland'), +('213.90.140.112', '213.90.140.159', 2147483647, 2147483647, 'FR', 'France'), +('213.90.140.160', '213.90.140.167', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.90.140.168', '213.90.140.175', 2147483647, 2147483647, 'CH', 'Switzerland'), +('213.90.140.176', '213.90.140.191', 2147483647, 2147483647, 'FR', 'France'), +('213.90.140.192', '213.90.140.199', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.90.140.200', '213.90.145.255', 2147483647, 2147483647, 'FR', 'France'), +('213.90.146.0', '213.90.146.159', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.90.146.160', '213.90.146.175', 2147483647, 2147483647, 'FR', 'France'), +('213.90.146.176', '213.90.147.47', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.90.147.48', '213.90.147.63', 2147483647, 2147483647, 'FR', 'France'), +('213.90.147.64', '213.90.147.111', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.90.147.112', '213.90.148.15', 2147483647, 2147483647, 'FR', 'France'), +('213.90.148.16', '213.90.148.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.90.148.128', '213.90.148.159', 2147483647, 2147483647, 'FR', 'France'), +('213.90.148.160', '213.90.148.175', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.90.148.176', '213.90.148.223', 2147483647, 2147483647, 'FR', 'France'), +('213.90.148.224', '213.90.148.239', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.90.148.240', '213.90.154.79', 2147483647, 2147483647, 'FR', 'France'), +('213.90.154.80', '213.90.154.95', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.90.154.96', '213.90.156.79', 2147483647, 2147483647, 'FR', 'France'), +('213.90.156.80', '213.90.156.95', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.90.156.96', '213.90.157.255', 2147483647, 2147483647, 'FR', 'France'), +('213.90.158.0', '213.90.158.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.90.158.16', '213.90.158.18', 2147483647, 2147483647, 'FR', 'France'), +('213.90.158.19', '213.90.158.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.90.158.32', '213.90.158.111', 2147483647, 2147483647, 'FR', 'France'), +('213.90.158.112', '213.90.158.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.90.158.128', '213.90.158.191', 2147483647, 2147483647, 'FR', 'France'), +('213.90.158.192', '213.90.158.192', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.90.158.193', '213.90.158.207', 2147483647, 2147483647, 'FR', 'France'), +('213.90.158.208', '213.90.158.223', 2147483647, 2147483647, 'DE', 'Germany'), +('213.90.158.224', '213.90.159.31', 2147483647, 2147483647, 'FR', 'France'), +('213.90.159.32', '213.90.159.47', 2147483647, 2147483647, 'CH', 'Switzerland'), +('213.90.159.48', '213.90.159.63', 2147483647, 2147483647, 'FR', 'France'), +('213.90.159.64', '213.90.159.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.90.159.80', '213.90.159.95', 2147483647, 2147483647, 'DE', 'Germany'), +('213.90.159.96', '213.90.159.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.90.159.144', '213.90.159.191', 2147483647, 2147483647, 'FR', 'France'), +('213.90.159.192', '213.90.159.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.90.159.224', '213.90.159.239', 2147483647, 2147483647, 'FR', 'France'), +('213.90.159.240', '213.90.159.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.90.160.0', '213.90.160.63', 2147483647, 2147483647, 'FR', 'France'), +('213.90.160.64', '213.90.160.79', 2147483647, 2147483647, 'GB', 'United Kingdom'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('213.90.160.80', '213.90.160.95', 2147483647, 2147483647, 'FR', 'France'), +('213.90.160.96', '213.90.160.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.90.160.112', '213.90.160.127', 2147483647, 2147483647, 'FR', 'France'), +('213.90.160.128', '213.90.160.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.90.160.144', '213.90.160.159', 2147483647, 2147483647, 'FR', 'France'), +('213.90.160.160', '213.90.160.175', 2147483647, 2147483647, 'IT', 'Italy'), +('213.90.160.176', '213.90.160.191', 2147483647, 2147483647, 'DE', 'Germany'), +('213.90.160.192', '213.90.160.207', 2147483647, 2147483647, 'FR', 'France'), +('213.90.160.208', '213.90.160.223', 2147483647, 2147483647, 'DE', 'Germany'), +('213.90.160.224', '213.90.160.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.90.160.240', '213.90.162.15', 2147483647, 2147483647, 'FR', 'France'), +('213.90.162.16', '213.90.162.31', 2147483647, 2147483647, 'DE', 'Germany'), +('213.90.162.32', '213.90.162.111', 2147483647, 2147483647, 'FR', 'France'), +('213.90.162.112', '213.90.162.127', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.90.162.128', '213.90.162.143', 2147483647, 2147483647, 'FR', 'France'), +('213.90.162.144', '213.90.162.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.90.162.160', '213.90.163.31', 2147483647, 2147483647, 'FR', 'France'), +('213.90.163.32', '213.90.163.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.90.163.64', '213.90.163.79', 2147483647, 2147483647, 'DE', 'Germany'), +('213.90.163.80', '213.90.163.127', 2147483647, 2147483647, 'FR', 'France'), +('213.90.163.128', '213.90.163.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.90.163.144', '213.90.163.239', 2147483647, 2147483647, 'FR', 'France'), +('213.90.163.240', '213.90.163.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.90.164.0', '213.90.164.15', 2147483647, 2147483647, 'FR', 'France'), +('213.90.164.16', '213.90.164.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.90.164.32', '213.90.164.239', 2147483647, 2147483647, 'FR', 'France'), +('213.90.164.240', '213.90.164.255', 2147483647, 2147483647, 'ES', 'Spain'), +('213.90.165.0', '213.90.165.31', 2147483647, 2147483647, 'FR', 'France'), +('213.90.165.32', '213.90.165.43', 2147483647, 2147483647, 'IT', 'Italy'), +('213.90.165.44', '213.90.165.47', 2147483647, 2147483647, 'FR', 'France'), +('213.90.165.48', '213.90.165.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.90.165.64', '213.90.165.79', 2147483647, 2147483647, 'FR', 'France'), +('213.90.165.80', '213.90.165.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.90.165.96', '213.90.165.111', 2147483647, 2147483647, 'FR', 'France'), +('213.90.165.112', '213.90.165.127', 2147483647, 2147483647, 'IT', 'Italy'), +('213.90.165.128', '213.90.165.175', 2147483647, 2147483647, 'FR', 'France'), +('213.90.165.176', '213.90.165.223', 2147483647, 2147483647, 'DE', 'Germany'), +('213.90.165.224', '213.90.165.239', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.90.165.240', '213.90.165.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.90.166.0', '213.90.166.63', 2147483647, 2147483647, 'FR', 'France'), +('213.90.166.64', '213.90.166.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.90.166.80', '213.90.166.111', 2147483647, 2147483647, 'FR', 'France'), +('213.90.166.112', '213.90.166.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.90.166.128', '213.90.166.143', 2147483647, 2147483647, 'IE', 'Ireland'), +('213.90.166.144', '213.90.166.159', 2147483647, 2147483647, 'DE', 'Germany'), +('213.90.166.160', '213.90.166.207', 2147483647, 2147483647, 'FR', 'France'), +('213.90.166.208', '213.90.166.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.90.166.224', '213.90.166.239', 2147483647, 2147483647, 'IT', 'Italy'), +('213.90.166.240', '213.90.166.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.90.167.0', '213.90.167.47', 2147483647, 2147483647, 'FR', 'France'), +('213.90.167.48', '213.90.167.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.90.167.80', '213.90.176.255', 2147483647, 2147483647, 'FR', 'France'), +('213.90.177.0', '213.90.177.95', 2147483647, 2147483647, 'PT', 'Portugal'), +('213.90.177.96', '213.90.177.111', 2147483647, 2147483647, 'FR', 'France'), +('213.90.177.112', '213.90.177.159', 2147483647, 2147483647, 'PT', 'Portugal'), +('213.90.177.160', '213.90.177.175', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.90.177.176', '213.90.177.191', 2147483647, 2147483647, 'FR', 'France'), +('213.90.177.192', '213.90.177.239', 2147483647, 2147483647, 'PT', 'Portugal'), +('213.90.177.240', '213.90.178.15', 2147483647, 2147483647, 'FR', 'France'), +('213.90.178.16', '213.90.178.127', 2147483647, 2147483647, 'PT', 'Portugal'), +('213.90.178.128', '213.90.178.143', 2147483647, 2147483647, 'FR', 'France'), +('213.90.178.144', '213.90.178.159', 2147483647, 2147483647, 'PT', 'Portugal'), +('213.90.178.160', '213.90.178.191', 2147483647, 2147483647, 'FR', 'France'), +('213.90.178.192', '213.90.178.207', 2147483647, 2147483647, 'PT', 'Portugal'), +('213.90.178.208', '213.90.179.159', 2147483647, 2147483647, 'FR', 'France'), +('213.90.179.160', '213.90.179.175', 2147483647, 2147483647, 'PT', 'Portugal'), +('213.90.179.176', '213.90.179.191', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.90.179.192', '213.90.180.143', 2147483647, 2147483647, 'FR', 'France'), +('213.90.180.144', '213.90.180.159', 2147483647, 2147483647, 'PT', 'Portugal'), +('213.90.180.160', '213.90.205.255', 2147483647, 2147483647, 'FR', 'France'), +('213.90.206.0', '213.90.206.7', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.90.206.8', '213.91.63.255', 2147483647, 2147483647, 'FR', 'France'), +('213.91.64.0', '213.91.127.255', 2147483647, 2147483647, 'BA', 'Bosnia and Herzegovina'), +('213.91.128.0', '213.91.163.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('213.91.164.0', '213.91.164.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.91.165.0', '213.91.166.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('213.91.167.0', '213.91.167.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.91.168.0', '213.91.255.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('213.92.0.0', '213.92.11.127', 2147483647, 2147483647, 'IT', 'Italy'), +('213.92.11.128', '213.92.11.159', 2147483647, 2147483647, 'US', 'United States'), +('213.92.11.160', '213.92.76.191', 2147483647, 2147483647, 'IT', 'Italy'), +('213.92.76.192', '213.92.76.207', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.92.76.208', '213.92.80.127', 2147483647, 2147483647, 'IT', 'Italy'), +('213.92.80.128', '213.92.80.255', 2147483647, 2147483647, 'GR', 'Greece'), +('213.92.81.0', '213.92.93.63', 2147483647, 2147483647, 'IT', 'Italy'), +('213.92.93.64', '213.92.93.79', 2147483647, 2147483647, 'US', 'United States'), +('213.92.93.80', '213.92.98.63', 2147483647, 2147483647, 'IT', 'Italy'), +('213.92.98.64', '213.92.98.79', 2147483647, 2147483647, 'US', 'United States'), +('213.92.98.80', '213.92.113.239', 2147483647, 2147483647, 'IT', 'Italy'), +('213.92.113.240', '213.92.113.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.92.114.0', '213.92.121.255', 2147483647, 2147483647, 'IT', 'Italy'), +('213.92.122.0', '213.92.122.255', 2147483647, 2147483647, 'US', 'United States'), +('213.92.123.0', '213.92.127.255', 2147483647, 2147483647, 'IT', 'Italy'), +('213.92.128.0', '213.92.255.255', 2147483647, 2147483647, 'PL', 'Poland'), +('213.93.0.0', '213.93.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.94.0.0', '213.94.63.255', 2147483647, 2147483647, 'ES', 'Spain'), +('213.94.64.0', '213.94.127.255', 2147483647, 2147483647, 'AT', 'Austria'), +('213.94.128.0', '213.94.255.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('213.95.0.0', '213.95.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.96.0.0', '213.99.255.255', 2147483647, 2147483647, 'ES', 'Spain'), +('213.100.0.0', '213.101.127.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.101.128.0', '213.101.129.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('213.101.130.0', '213.101.131.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.101.132.0', '213.101.133.255', 2147483647, 2147483647, 'EE', 'Estonia'), +('213.101.134.0', '213.101.135.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.101.136.0', '213.101.137.255', 2147483647, 2147483647, 'LT', 'Lithuania'), +('213.101.138.0', '213.101.145.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.101.146.0', '213.101.149.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('213.101.150.0', '213.101.151.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.101.152.0', '213.101.153.255', 2147483647, 2147483647, 'HR', 'Croatia'), +('213.101.154.0', '213.101.163.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.101.164.0', '213.101.165.255', 2147483647, 2147483647, 'EE', 'Estonia'), +('213.101.166.0', '213.101.183.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.101.184.0', '213.101.187.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('213.101.188.0', '213.101.189.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('213.101.190.0', '213.101.219.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.101.220.0', '213.101.220.255', 2147483647, 2147483647, 'FR', 'France'), +('213.101.221.0', '213.101.223.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.101.224.0', '213.101.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.102.0.0', '213.102.0.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('213.102.1.0', '213.102.1.255', 2147483647, 2147483647, 'LT', 'Lithuania'), +('213.102.2.0', '213.102.5.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('213.102.6.0', '213.102.7.255', 2147483647, 2147483647, 'LT', 'Lithuania'), +('213.102.8.0', '213.102.13.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.102.14.0', '213.102.15.255', 2147483647, 2147483647, 'LT', 'Lithuania'), +('213.102.16.0', '213.102.19.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.102.20.0', '213.102.22.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('213.102.23.0', '213.102.23.255', 2147483647, 2147483647, 'LT', 'Lithuania'), +('213.102.24.0', '213.102.29.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.102.30.0', '213.102.31.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('213.102.32.0', '213.102.39.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.102.40.0', '213.102.47.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('213.102.48.0', '213.102.63.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.102.64.0', '213.102.71.255', 2147483647, 2147483647, 'ES', 'Spain'), +('213.102.72.0', '213.102.81.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.102.82.0', '213.102.87.255', 2147483647, 2147483647, 'EE', 'Estonia'), +('213.102.88.0', '213.102.111.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.102.112.0', '213.102.132.255', 2147483647, 2147483647, 'AT', 'Austria'), +('213.102.133.0', '213.102.135.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.102.136.0', '213.102.159.255', 2147483647, 2147483647, 'PL', 'Poland'), +('213.102.160.0', '213.103.127.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.103.128.0', '213.103.159.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('213.103.160.0', '213.103.161.0', 2147483647, 2147483647, 'HR', 'Croatia'), +('213.103.161.1', '213.103.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.104.0.0', '213.105.176.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.105.176.32', '213.105.176.47', 2147483647, 2147483647, 'IE', 'Ireland'), +('213.105.176.48', '213.105.176.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.105.176.160', '213.105.176.167', 2147483647, 2147483647, 'IE', 'Ireland'), +('213.105.176.168', '213.105.176.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.105.176.176', '213.105.176.183', 2147483647, 2147483647, 'IE', 'Ireland'), +('213.105.176.184', '213.105.177.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.105.177.96', '213.105.177.127', 2147483647, 2147483647, 'IE', 'Ireland'), +('213.105.177.128', '213.105.177.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.105.177.160', '213.105.178.31', 2147483647, 2147483647, 'IE', 'Ireland'), +('213.105.178.32', '213.105.178.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.105.178.96', '213.105.178.103', 2147483647, 2147483647, 'IE', 'Ireland'), +('213.105.178.104', '213.105.178.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.105.178.112', '213.105.178.127', 2147483647, 2147483647, 'IE', 'Ireland'), +('213.105.178.128', '213.105.178.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.105.178.144', '213.105.178.151', 2147483647, 2147483647, 'IE', 'Ireland'), +('213.105.178.152', '213.105.178.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.105.178.240', '213.105.178.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('213.105.179.0', '213.105.180.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.105.180.128', '213.105.180.191', 2147483647, 2147483647, 'IE', 'Ireland'), +('213.105.180.192', '213.105.181.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.105.181.16', '213.105.181.23', 2147483647, 2147483647, 'IE', 'Ireland'), +('213.105.181.24', '213.105.181.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.105.181.32', '213.105.181.47', 2147483647, 2147483647, 'IE', 'Ireland'), +('213.105.181.48', '213.105.181.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.105.181.64', '213.105.181.79', 2147483647, 2147483647, 'IE', 'Ireland'), +('213.105.181.80', '213.105.181.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.105.181.96', '213.105.181.111', 2147483647, 2147483647, 'IE', 'Ireland'), +('213.105.181.112', '213.105.181.183', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.105.181.184', '213.105.181.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('213.105.182.0', '213.105.182.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.105.182.176', '213.105.182.183', 2147483647, 2147483647, 'IE', 'Ireland'), +('213.105.182.184', '213.105.182.243', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.105.182.244', '213.105.182.247', 2147483647, 2147483647, 'IE', 'Ireland'), +('213.105.182.248', '213.105.183.207', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.105.183.208', '213.105.183.215', 2147483647, 2147483647, 'IE', 'Ireland'), +('213.105.183.216', '213.107.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.108.0.0', '213.108.7.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('213.108.8.0', '213.108.15.255', 2147483647, 2147483647, 'PL', 'Poland'), +('213.108.16.0', '213.108.23.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('213.108.24.0', '213.108.31.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.108.32.0', '213.108.39.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('213.108.40.0', '213.108.47.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.108.48.0', '213.108.55.255', 2147483647, 2147483647, 'KZ', 'Kazakstan'), +('213.108.56.0', '213.108.63.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('213.108.64.0', '213.108.71.255', 2147483647, 2147483647, 'FR', 'France'), +('213.109.0.0', '213.109.15.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('213.110.0.0', '213.110.63.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('213.112.0.0', '213.115.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.116.0.0', '213.116.4.159', 2147483647, 2147483647, 'EU', 'Europe'), +('213.116.4.160', '213.116.4.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('213.116.5.0', '213.116.5.127', 2147483647, 2147483647, 'EU', 'Europe'), +('213.116.5.128', '213.116.5.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.116.6.0', '213.116.6.63', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.116.6.64', '213.116.6.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.116.7.0', '213.116.7.63', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.116.7.64', '213.116.7.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.116.8.0', '213.116.8.63', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.116.8.64', '213.116.18.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.116.19.0', '213.116.19.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.116.20.0', '213.116.30.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.116.31.0', '213.116.36.255', 2147483647, 2147483647, 'AT', 'Austria'), +('213.116.37.0', '213.116.38.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.116.39.0', '213.116.39.127', 2147483647, 2147483647, 'AT', 'Austria'), +('213.116.39.128', '213.116.39.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.116.40.0', '213.116.47.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('213.116.48.0', '213.116.95.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.116.96.0', '213.116.185.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.116.186.0', '213.116.187.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.116.188.0', '213.116.188.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('213.116.189.0', '213.116.189.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.116.190.0', '213.116.198.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.116.199.0', '213.116.213.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.116.214.0', '213.116.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.117.0.0', '213.117.63.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.117.64.0', '213.117.95.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.117.96.0', '213.117.103.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.117.104.0', '213.117.159.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.117.160.0', '213.117.173.255', 2147483647, 2147483647, 'FR', 'France'), +('213.117.174.0', '213.117.181.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.117.182.0', '213.117.182.127', 2147483647, 2147483647, 'FR', 'France'), +('213.117.182.128', '213.117.251.127', 2147483647, 2147483647, 'EU', 'Europe'), +('213.117.251.128', '213.117.251.223', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.117.251.224', '213.117.255.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.118.0.0', '213.119.255.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.120.0.0', '213.123.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.124.0.0', '213.127.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.128.0.0', '213.128.31.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('213.128.32.0', '213.128.63.255', 2147483647, 2147483647, 'FR', 'France'), +('213.128.64.0', '213.128.95.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('213.128.96.0', '213.128.159.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.128.160.0', '213.128.191.255', 2147483647, 2147483647, 'NO', 'Norway'), +('213.128.192.0', '213.128.223.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('213.128.224.0', '213.128.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.129.0.0', '213.129.31.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('213.129.32.0', '213.129.63.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('213.129.64.0', '213.129.95.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.129.96.0', '213.129.127.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('213.129.128.0', '213.129.159.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('213.129.160.0', '213.129.191.255', 2147483647, 2147483647, 'ES', 'Spain'), +('213.129.192.0', '213.129.223.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.129.224.0', '213.129.255.255', 2147483647, 2147483647, 'AT', 'Austria'), +('213.130.0.0', '213.130.31.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.130.32.0', '213.130.46.167', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.130.46.168', '213.130.46.175', 2147483647, 2147483647, 'DE', 'Germany'), +('213.130.46.176', '213.130.63.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.130.64.0', '213.130.95.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('213.130.96.0', '213.130.127.255', 2147483647, 2147483647, 'QA', 'Qatar'), +('213.130.128.0', '213.130.159.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.130.160.0', '213.130.191.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.130.192.0', '213.130.229.71', 2147483647, 2147483647, 'FI', 'Finland'), +('213.130.229.72', '213.130.229.79', 2147483647, 2147483647, 'AX', 'Aland Islands'), +('213.130.229.80', '213.130.255.255', 2147483647, 2147483647, 'FI', 'Finland'), +('213.131.0.0', '213.131.31.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('213.131.32.0', '213.131.63.255', 2147483647, 2147483647, 'GE', 'Georgia'), +('213.131.64.0', '213.131.95.255', 2147483647, 2147483647, 'EG', 'Egypt'), +('213.131.96.0', '213.131.127.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.131.128.0', '213.131.159.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.131.160.0', '213.131.191.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.131.192.0', '213.131.228.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.131.229.0', '213.131.229.31', 2147483647, 2147483647, 'CH', 'Switzerland'), +('213.131.229.32', '213.131.229.79', 2147483647, 2147483647, 'DE', 'Germany'), +('213.131.229.80', '213.131.229.83', 2147483647, 2147483647, 'FR', 'France'), +('213.131.229.84', '213.131.229.175', 2147483647, 2147483647, 'DE', 'Germany'), +('213.131.229.176', '213.131.229.183', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.131.229.184', '213.131.233.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.131.234.0', '213.131.234.15', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.131.234.16', '213.131.234.159', 2147483647, 2147483647, 'DE', 'Germany'), +('213.131.234.160', '213.131.234.175', 2147483647, 2147483647, 'CH', 'Switzerland'), +('213.131.234.176', '213.131.235.191', 2147483647, 2147483647, 'DE', 'Germany'), +('213.131.235.192', '213.131.235.207', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.131.235.208', '213.131.244.87', 2147483647, 2147483647, 'DE', 'Germany'), +('213.131.244.88', '213.131.244.95', 2147483647, 2147483647, 'CY', 'Cyprus'), +('213.131.244.96', '213.131.244.175', 2147483647, 2147483647, 'DE', 'Germany'), +('213.131.244.176', '213.131.244.191', 2147483647, 2147483647, 'CH', 'Switzerland'), +('213.131.244.192', '213.131.245.191', 2147483647, 2147483647, 'DE', 'Germany'), +('213.131.245.192', '213.131.245.199', 2147483647, 2147483647, 'CH', 'Switzerland'), +('213.131.245.200', '213.131.249.215', 2147483647, 2147483647, 'DE', 'Germany'), +('213.131.249.216', '213.131.249.223', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.131.249.224', '213.131.253.135', 2147483647, 2147483647, 'DE', 'Germany'), +('213.131.253.136', '213.131.253.143', 2147483647, 2147483647, 'BZ', 'Belize'), +('213.131.253.144', '213.131.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.132.0.0', '213.132.31.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('213.132.32.0', '213.132.63.255', 2147483647, 2147483647, 'AE', 'United Arab Emirates'), +('213.132.64.0', '213.132.95.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('213.132.96.0', '213.132.96.175', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.132.96.176', '213.132.96.191', 2147483647, 2147483647, 'DK', 'Denmark'), +('213.132.96.192', '213.132.98.15', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.132.98.16', '213.132.98.31', 2147483647, 2147483647, 'NO', 'Norway'), +('213.132.98.32', '213.132.102.95', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.132.102.96', '213.132.102.103', 2147483647, 2147483647, 'NO', 'Norway'), +('213.132.102.104', '213.132.127.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.132.128.0', '213.132.159.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.132.160.0', '213.132.223.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.132.224.0', '213.132.255.255', 2147483647, 2147483647, 'KW', 'Kuwait'), +('213.133.0.0', '213.133.31.255', 2147483647, 2147483647, 'ME', 'Montenegro'), +('213.133.32.0', '213.133.63.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.133.64.0', '213.133.95.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.133.96.0', '213.133.127.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.133.128.0', '213.133.159.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.133.160.0', '213.133.191.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.133.192.0', '213.133.223.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.133.224.0', '213.133.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('213.134.0.0', '213.134.31.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('213.134.32.0', '213.134.47.255', 2147483647, 2147483647, 'ES', 'Spain'), +('213.134.48.0', '213.134.55.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('213.134.56.0', '213.134.63.255', 2147483647, 2147483647, 'ES', 'Spain'), +('213.134.64.0', '213.134.95.255', 2147483647, 2147483647, 'IT', 'Italy'), +('213.134.96.0', '213.134.127.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.134.128.0', '213.134.191.255', 2147483647, 2147483647, 'PL', 'Poland'), +('213.134.192.0', '213.134.223.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('213.134.224.0', '213.134.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.135.0.0', '213.135.31.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.135.32.0', '213.135.63.255', 2147483647, 2147483647, 'PL', 'Poland'), +('213.135.64.0', '213.135.159.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('213.135.160.0', '213.135.191.255', 2147483647, 2147483647, 'MK', 'Macedonia'), +('213.135.192.0', '213.135.223.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.135.224.0', '213.135.255.255', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('213.136.0.0', '213.136.31.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.136.32.0', '213.136.63.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.136.64.0', '213.136.95.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.136.96.0', '213.136.127.255', 2147483647, 2147483647, 'CI', 'Cote D''Ivoire'), +('213.136.128.0', '213.136.191.255', 2147483647, 2147483647, 'IT', 'Italy'), +('213.136.192.0', '213.136.223.255', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('213.136.224.0', '213.136.255.255', 2147483647, 2147483647, 'PL', 'Poland'), +('213.137.0.0', '213.137.1.7', 2147483647, 2147483647, 'IM', 'Isle of Man'), +('213.137.1.8', '213.137.1.207', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.137.1.208', '213.137.1.223', 2147483647, 2147483647, 'IM', 'Isle of Man'), +('213.137.1.224', '213.137.2.39', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.137.2.40', '213.137.2.47', 2147483647, 2147483647, 'IM', 'Isle of Man'), +('213.137.2.48', '213.137.2.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.137.2.64', '213.137.2.71', 2147483647, 2147483647, 'IM', 'Isle of Man'), +('213.137.2.72', '213.137.2.135', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.137.2.136', '213.137.2.143', 2147483647, 2147483647, 'IM', 'Isle of Man'), +('213.137.2.144', '213.137.3.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.137.4.0', '213.137.4.39', 2147483647, 2147483647, 'IM', 'Isle of Man'), +('213.137.4.40', '213.137.4.215', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.137.4.216', '213.137.4.223', 2147483647, 2147483647, 'IM', 'Isle of Man'), +('213.137.4.224', '213.137.5.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.137.5.32', '213.137.5.47', 2147483647, 2147483647, 'IM', 'Isle of Man'), +('213.137.5.48', '213.137.5.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.137.5.96', '213.137.5.99', 2147483647, 2147483647, 'IM', 'Isle of Man'), +('213.137.5.100', '213.137.5.123', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.137.5.124', '213.137.5.127', 2147483647, 2147483647, 'IM', 'Isle of Man'), +('213.137.5.128', '213.137.5.183', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.137.5.184', '213.137.5.207', 2147483647, 2147483647, 'IM', 'Isle of Man'), +('213.137.5.208', '213.137.6.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.137.7.0', '213.137.7.39', 2147483647, 2147483647, 'IM', 'Isle of Man'), +('213.137.7.40', '213.137.7.59', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.137.7.60', '213.137.7.71', 2147483647, 2147483647, 'IM', 'Isle of Man'), +('213.137.7.72', '213.137.7.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.137.7.80', '213.137.7.103', 2147483647, 2147483647, 'IM', 'Isle of Man'), +('213.137.7.104', '213.137.7.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.137.7.144', '213.137.7.151', 2147483647, 2147483647, 'IM', 'Isle of Man'), +('213.137.7.152', '213.137.7.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.137.7.224', '213.137.7.231', 2147483647, 2147483647, 'IM', 'Isle of Man'), +('213.137.7.232', '213.137.7.247', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.137.7.248', '213.137.7.255', 2147483647, 2147483647, 'IM', 'Isle of Man'), +('213.137.8.0', '213.137.13.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.137.14.0', '213.137.15.127', 2147483647, 2147483647, 'IM', 'Isle of Man'), +('213.137.15.128', '213.137.15.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.137.16.0', '213.137.18.255', 2147483647, 2147483647, 'IM', 'Isle of Man'), +('213.137.19.0', '213.137.19.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.137.19.64', '213.137.20.255', 2147483647, 2147483647, 'IM', 'Isle of Man'), +('213.137.21.0', '213.137.21.135', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.137.21.136', '213.137.21.143', 2147483647, 2147483647, 'IM', 'Isle of Man'), +('213.137.21.144', '213.137.21.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.137.21.160', '213.137.21.191', 2147483647, 2147483647, 'IM', 'Isle of Man'), +('213.137.21.192', '213.137.21.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.137.22.0', '213.137.23.79', 2147483647, 2147483647, 'IM', 'Isle of Man'), +('213.137.23.80', '213.137.23.103', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.137.23.104', '213.137.23.111', 2147483647, 2147483647, 'IM', 'Isle of Man'), +('213.137.23.112', '213.137.23.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.137.23.144', '213.137.23.159', 2147483647, 2147483647, 'IM', 'Isle of Man'), +('213.137.23.160', '213.137.23.183', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.137.23.184', '213.137.23.207', 2147483647, 2147483647, 'IM', 'Isle of Man'), +('213.137.23.208', '213.137.23.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.137.23.224', '213.137.23.231', 2147483647, 2147483647, 'IM', 'Isle of Man'), +('213.137.23.232', '213.137.23.247', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.137.23.248', '213.137.24.47', 2147483647, 2147483647, 'IM', 'Isle of Man'), +('213.137.24.48', '213.137.24.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.137.24.64', '213.137.24.79', 2147483647, 2147483647, 'IM', 'Isle of Man'), +('213.137.24.80', '213.137.24.103', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.137.24.104', '213.137.24.111', 2147483647, 2147483647, 'IM', 'Isle of Man'), +('213.137.24.112', '213.137.24.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.137.24.192', '213.137.24.207', 2147483647, 2147483647, 'IM', 'Isle of Man'), +('213.137.24.208', '213.137.24.215', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.137.24.216', '213.137.24.223', 2147483647, 2147483647, 'IM', 'Isle of Man'), +('213.137.24.224', '213.137.24.247', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.137.24.248', '213.137.25.255', 2147483647, 2147483647, 'IM', 'Isle of Man'), +('213.137.26.0', '213.137.26.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.137.27.0', '213.137.27.255', 2147483647, 2147483647, 'IM', 'Isle of Man'), +('213.137.28.0', '213.137.29.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.137.29.64', '213.137.29.119', 2147483647, 2147483647, 'IM', 'Isle of Man'), +('213.137.29.120', '213.137.29.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.137.29.128', '213.137.29.255', 2147483647, 2147483647, 'IM', 'Isle of Man'), +('213.137.30.0', '213.137.31.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.137.32.0', '213.137.49.199', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('213.137.49.200', '213.137.49.207', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.137.49.208', '213.137.63.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('213.137.64.0', '213.137.95.255', 2147483647, 2147483647, 'US', 'United States'), +('213.137.96.0', '213.137.127.255', 2147483647, 2147483647, 'RS', 'Serbia'), +('213.137.128.0', '213.137.159.255', 2147483647, 2147483647, 'MC', 'Monaco'), +('213.137.160.0', '213.137.160.31', 2147483647, 2147483647, 'EU', 'Europe'), +('213.137.160.32', '213.137.160.79', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.137.160.80', '213.137.160.95', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('213.137.160.96', '213.137.160.127', 2147483647, 2147483647, 'EU', 'Europe'), +('213.137.160.128', '213.137.160.191', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.137.160.192', '213.137.161.79', 2147483647, 2147483647, 'EU', 'Europe'), +('213.137.161.80', '213.137.161.87', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.137.161.88', '213.137.161.95', 2147483647, 2147483647, 'EU', 'Europe'), +('213.137.161.96', '213.137.161.111', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.137.161.112', '213.137.161.127', 2147483647, 2147483647, 'EU', 'Europe'), +('213.137.161.128', '213.137.161.191', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.137.161.192', '213.137.161.207', 2147483647, 2147483647, 'EU', 'Europe'), +('213.137.161.208', '213.137.161.223', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.137.161.224', '213.137.161.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.137.162.0', '213.137.162.107', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.137.162.108', '213.137.162.111', 2147483647, 2147483647, 'EU', 'Europe'), +('213.137.162.112', '213.137.162.127', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.137.162.128', '213.137.162.223', 2147483647, 2147483647, 'EU', 'Europe'), +('213.137.162.224', '213.137.162.239', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.137.162.240', '213.137.163.63', 2147483647, 2147483647, 'EU', 'Europe'), +('213.137.163.64', '213.137.163.127', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.137.163.128', '213.137.163.223', 2147483647, 2147483647, 'EU', 'Europe'), +('213.137.163.224', '213.137.163.231', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.137.163.232', '213.137.163.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.137.164.0', '213.137.165.127', 2147483647, 2147483647, 'US', 'United States'), +('213.137.165.128', '213.137.165.223', 2147483647, 2147483647, 'EU', 'Europe'), +('213.137.165.224', '213.137.165.255', 2147483647, 2147483647, 'US', 'United States'), +('213.137.166.0', '213.137.166.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.137.167.0', '213.137.167.15', 2147483647, 2147483647, 'EU', 'Europe'), +('213.137.167.16', '213.137.167.31', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.137.167.32', '213.137.167.55', 2147483647, 2147483647, 'EU', 'Europe'), +('213.137.167.56', '213.137.167.71', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.137.167.72', '213.137.167.143', 2147483647, 2147483647, 'EU', 'Europe'), +('213.137.167.144', '213.137.167.147', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.137.167.148', '213.137.167.247', 2147483647, 2147483647, 'EU', 'Europe'), +('213.137.167.248', '213.137.167.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.137.168.0', '213.137.168.255', 2147483647, 2147483647, 'US', 'United States'), +('213.137.169.0', '213.137.169.127', 2147483647, 2147483647, 'EU', 'Europe'), +('213.137.169.128', '213.137.169.255', 2147483647, 2147483647, 'US', 'United States'), +('213.137.170.0', '213.137.170.7', 2147483647, 2147483647, 'HU', 'Hungary'), +('213.137.170.8', '213.137.170.31', 2147483647, 2147483647, 'EU', 'Europe'), +('213.137.170.32', '213.137.170.63', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('213.137.170.64', '213.137.170.71', 2147483647, 2147483647, 'EU', 'Europe'), +('213.137.170.72', '213.137.170.75', 2147483647, 2147483647, 'AT', 'Austria'), +('213.137.170.76', '213.137.170.79', 2147483647, 2147483647, 'DE', 'Germany'), +('213.137.170.80', '213.137.170.83', 2147483647, 2147483647, 'AT', 'Austria'), +('213.137.170.84', '213.137.170.119', 2147483647, 2147483647, 'EU', 'Europe'), +('213.137.170.120', '213.137.170.127', 2147483647, 2147483647, 'HU', 'Hungary'), +('213.137.170.128', '213.137.170.135', 2147483647, 2147483647, 'EU', 'Europe'), +('213.137.170.136', '213.137.170.143', 2147483647, 2147483647, 'HU', 'Hungary'), +('213.137.170.144', '213.137.170.191', 2147483647, 2147483647, 'EU', 'Europe'), +('213.137.170.192', '213.137.170.207', 2147483647, 2147483647, 'HU', 'Hungary'), +('213.137.170.208', '213.137.170.247', 2147483647, 2147483647, 'EU', 'Europe'), +('213.137.170.248', '213.137.170.255', 2147483647, 2147483647, 'AT', 'Austria'), +('213.137.171.0', '213.137.171.63', 2147483647, 2147483647, 'EU', 'Europe'), +('213.137.171.64', '213.137.171.87', 2147483647, 2147483647, 'AT', 'Austria'), +('213.137.171.88', '213.137.173.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.137.174.0', '213.137.174.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.137.175.0', '213.137.175.127', 2147483647, 2147483647, 'DE', 'Germany'), +('213.137.175.128', '213.137.175.159', 2147483647, 2147483647, 'EU', 'Europe'), +('213.137.175.160', '213.137.175.191', 2147483647, 2147483647, 'FR', 'France'), +('213.137.175.192', '213.137.175.223', 2147483647, 2147483647, 'EU', 'Europe'), +('213.137.175.224', '213.137.175.239', 2147483647, 2147483647, 'FR', 'France'), +('213.137.175.240', '213.137.176.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.137.177.0', '213.137.177.79', 2147483647, 2147483647, 'FR', 'France'), +('213.137.177.80', '213.137.177.95', 2147483647, 2147483647, 'EU', 'Europe'), +('213.137.177.96', '213.137.177.111', 2147483647, 2147483647, 'FR', 'France'), +('213.137.177.112', '213.137.177.127', 2147483647, 2147483647, 'EU', 'Europe'), +('213.137.177.128', '213.137.177.143', 2147483647, 2147483647, 'FR', 'France'), +('213.137.177.144', '213.137.177.151', 2147483647, 2147483647, 'EU', 'Europe'), +('213.137.177.152', '213.137.177.223', 2147483647, 2147483647, 'FR', 'France'), +('213.137.177.224', '213.137.177.231', 2147483647, 2147483647, 'EU', 'Europe'), +('213.137.177.232', '213.137.177.239', 2147483647, 2147483647, 'FR', 'France'), +('213.137.177.240', '213.137.177.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.137.178.0', '213.137.178.31', 2147483647, 2147483647, 'FR', 'France'), +('213.137.178.32', '213.137.178.127', 2147483647, 2147483647, 'EU', 'Europe'), +('213.137.178.128', '213.137.178.191', 2147483647, 2147483647, 'FR', 'France'), +('213.137.178.192', '213.137.179.39', 2147483647, 2147483647, 'EU', 'Europe'), +('213.137.179.40', '213.137.179.43', 2147483647, 2147483647, 'CH', 'Switzerland'), +('213.137.179.44', '213.137.179.47', 2147483647, 2147483647, 'FR', 'France'), +('213.137.179.48', '213.137.179.63', 2147483647, 2147483647, 'EU', 'Europe'), +('213.137.179.64', '213.137.179.79', 2147483647, 2147483647, 'FR', 'France'), +('213.137.179.80', '213.137.179.111', 2147483647, 2147483647, 'EU', 'Europe'), +('213.137.179.112', '213.137.179.127', 2147483647, 2147483647, 'FR', 'France'), +('213.137.179.128', '213.137.179.143', 2147483647, 2147483647, 'EU', 'Europe'), +('213.137.179.144', '213.137.179.159', 2147483647, 2147483647, 'FR', 'France'), +('213.137.179.160', '213.137.179.191', 2147483647, 2147483647, 'EU', 'Europe'), +('213.137.179.192', '213.137.179.223', 2147483647, 2147483647, 'FR', 'France'), +('213.137.179.224', '213.137.180.127', 2147483647, 2147483647, 'EU', 'Europe'), +('213.137.180.128', '213.137.180.151', 2147483647, 2147483647, 'IE', 'Ireland'), +('213.137.180.152', '213.137.180.159', 2147483647, 2147483647, 'EU', 'Europe'), +('213.137.180.160', '213.137.180.187', 2147483647, 2147483647, 'IE', 'Ireland'), +('213.137.180.188', '213.137.180.199', 2147483647, 2147483647, 'EU', 'Europe'), +('213.137.180.200', '213.137.181.63', 2147483647, 2147483647, 'IE', 'Ireland'), +('213.137.181.64', '213.137.181.79', 2147483647, 2147483647, 'EU', 'Europe'), +('213.137.181.80', '213.137.181.95', 2147483647, 2147483647, 'IE', 'Ireland'), +('213.137.181.96', '213.137.181.199', 2147483647, 2147483647, 'EU', 'Europe'), +('213.137.181.200', '213.137.181.203', 2147483647, 2147483647, 'IE', 'Ireland'), +('213.137.181.204', '213.137.181.223', 2147483647, 2147483647, 'EU', 'Europe'), +('213.137.181.224', '213.137.181.239', 2147483647, 2147483647, 'IE', 'Ireland'), +('213.137.181.240', '213.137.181.247', 2147483647, 2147483647, 'EU', 'Europe'), +('213.137.181.248', '213.137.181.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('213.137.182.0', '213.137.183.143', 2147483647, 2147483647, 'CH', 'Switzerland'), +('213.137.183.144', '213.137.183.167', 2147483647, 2147483647, 'EU', 'Europe'), +('213.137.183.168', '213.137.183.175', 2147483647, 2147483647, 'CH', 'Switzerland'), +('213.137.183.176', '213.137.183.191', 2147483647, 2147483647, 'EU', 'Europe'), +('213.137.183.192', '213.137.183.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('213.137.184.0', '213.137.184.15', 2147483647, 2147483647, 'EU', 'Europe'), +('213.137.184.16', '213.137.184.23', 2147483647, 2147483647, 'DE', 'Germany'), +('213.137.184.24', '213.137.184.79', 2147483647, 2147483647, 'EU', 'Europe'), +('213.137.184.80', '213.137.184.87', 2147483647, 2147483647, 'DE', 'Germany'), +('213.137.184.88', '213.137.184.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.137.185.0', '213.137.185.63', 2147483647, 2147483647, 'DE', 'Germany'), +('213.137.185.64', '213.137.185.143', 2147483647, 2147483647, 'EU', 'Europe'), +('213.137.185.144', '213.137.185.151', 2147483647, 2147483647, 'DE', 'Germany'), +('213.137.185.152', '213.137.185.175', 2147483647, 2147483647, 'EU', 'Europe'), +('213.137.185.176', '213.137.185.183', 2147483647, 2147483647, 'DE', 'Germany'), +('213.137.185.184', '213.137.185.223', 2147483647, 2147483647, 'EU', 'Europe'), +('213.137.185.224', '213.137.185.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.137.186.0', '213.137.186.31', 2147483647, 2147483647, 'EU', 'Europe'), +('213.137.186.32', '213.137.186.39', 2147483647, 2147483647, 'DE', 'Germany'), +('213.137.186.40', '213.137.186.47', 2147483647, 2147483647, 'EU', 'Europe'), +('213.137.186.48', '213.137.186.55', 2147483647, 2147483647, 'DE', 'Germany'), +('213.137.186.56', '213.137.186.63', 2147483647, 2147483647, 'EU', 'Europe'), +('213.137.186.64', '213.137.186.79', 2147483647, 2147483647, 'DE', 'Germany'), +('213.137.186.80', '213.137.186.127', 2147483647, 2147483647, 'EU', 'Europe'), +('213.137.186.128', '213.137.186.159', 2147483647, 2147483647, 'DE', 'Germany'), +('213.137.186.160', '213.137.187.95', 2147483647, 2147483647, 'EU', 'Europe'), +('213.137.187.96', '213.137.187.111', 2147483647, 2147483647, 'DE', 'Germany'), +('213.137.187.112', '213.137.187.119', 2147483647, 2147483647, 'EU', 'Europe'), +('213.137.187.120', '213.137.187.207', 2147483647, 2147483647, 'DE', 'Germany'), +('213.137.187.208', '213.137.187.239', 2147483647, 2147483647, 'EU', 'Europe'), +('213.137.187.240', '213.137.187.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.137.188.0', '213.137.188.39', 2147483647, 2147483647, 'EU', 'Europe'), +('213.137.188.40', '213.137.188.135', 2147483647, 2147483647, 'CH', 'Switzerland'), +('213.137.188.136', '213.137.188.159', 2147483647, 2147483647, 'EU', 'Europe'), +('213.137.188.160', '213.137.188.191', 2147483647, 2147483647, 'CH', 'Switzerland'), +('213.137.188.192', '213.137.188.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.137.189.0', '213.137.189.31', 2147483647, 2147483647, 'CH', 'Switzerland'), +('213.137.189.32', '213.137.189.71', 2147483647, 2147483647, 'EU', 'Europe'), +('213.137.189.72', '213.137.189.79', 2147483647, 2147483647, 'CH', 'Switzerland'), +('213.137.189.80', '213.137.189.87', 2147483647, 2147483647, 'EU', 'Europe'), +('213.137.189.88', '213.137.189.191', 2147483647, 2147483647, 'CH', 'Switzerland'), +('213.137.189.192', '213.137.191.95', 2147483647, 2147483647, 'EU', 'Europe'), +('213.137.191.96', '213.137.191.99', 2147483647, 2147483647, 'CH', 'Switzerland'), +('213.137.191.100', '213.137.191.119', 2147483647, 2147483647, 'EU', 'Europe'), +('213.137.191.120', '213.137.191.143', 2147483647, 2147483647, 'CH', 'Switzerland'), +('213.137.191.144', '213.137.191.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.137.192.0', '213.137.223.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.137.224.0', '213.137.255.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('213.138.0.0', '213.138.31.255', 2147483647, 2147483647, 'FR', 'France'), +('213.138.32.0', '213.138.63.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.138.64.0', '213.138.95.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('213.138.96.0', '213.138.105.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.138.106.0', '213.138.106.255', 2147483647, 2147483647, 'CY', 'Cyprus'), +('213.138.107.0', '213.138.111.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.138.112.0', '213.138.112.255', 2147483647, 2147483647, 'CY', 'Cyprus'), +('213.138.113.0', '213.138.115.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.138.116.0', '213.138.121.255', 2147483647, 2147483647, 'CY', 'Cyprus'), +('213.138.122.0', '213.138.123.127', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.138.123.128', '213.138.123.255', 2147483647, 2147483647, 'LB', 'Lebanon'), +('213.138.124.0', '213.138.127.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.138.128.0', '213.138.159.255', 2147483647, 2147483647, 'FI', 'Finland'), +('213.138.160.0', '213.138.191.255', 2147483647, 2147483647, 'NO', 'Norway'), +('213.138.192.0', '213.138.223.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('213.138.224.0', '213.138.255.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('213.139.0.0', '213.139.29.111', 2147483647, 2147483647, 'ES', 'Spain'), +('213.139.29.112', '213.139.29.119', 2147483647, 2147483647, 'FR', 'France'), +('213.139.29.120', '213.139.31.255', 2147483647, 2147483647, 'ES', 'Spain'), +('213.139.32.0', '213.139.63.255', 2147483647, 2147483647, 'JO', 'Jordan'), +('213.139.64.0', '213.139.95.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.139.96.0', '213.139.127.255', 2147483647, 2147483647, 'FR', 'France'), +('213.139.128.0', '213.139.159.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.139.160.0', '213.139.191.255', 2147483647, 2147483647, 'FI', 'Finland'), +('213.139.192.0', '213.139.255.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('213.140.0.0', '213.140.31.255', 2147483647, 2147483647, 'IT', 'Italy'), +('213.140.32.0', '213.140.55.255', 2147483647, 2147483647, 'ES', 'Spain'), +('213.140.56.0', '213.140.59.255', 2147483647, 2147483647, 'DZ', 'Algeria'), +('213.140.60.0', '213.140.61.255', 2147483647, 2147483647, 'MA', 'Morocco'), +('213.140.62.0', '213.140.63.255', 2147483647, 2147483647, 'ES', 'Spain'), +('213.140.64.0', '213.140.95.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('213.140.96.0', '213.140.127.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('213.140.128.0', '213.140.159.255', 2147483647, 2147483647, 'GR', 'Greece'), +('213.140.160.0', '213.140.191.255', 2147483647, 2147483647, 'FI', 'Finland'), +('213.140.192.0', '213.140.223.255', 2147483647, 2147483647, 'IT', 'Italy'), +('213.140.224.0', '213.140.255.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('213.141.0.0', '213.141.31.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('213.141.32.0', '213.141.63.255', 2147483647, 2147483647, 'ES', 'Spain'), +('213.141.64.0', '213.141.95.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.141.96.0', '213.141.127.255', 2147483647, 2147483647, 'FI', 'Finland'), +('213.141.128.0', '213.141.159.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('213.141.160.0', '213.141.191.255', 2147483647, 2147483647, 'KZ', 'Kazakstan'), +('213.141.192.0', '213.141.255.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('213.142.0.0', '213.142.31.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.142.32.0', '213.142.63.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('213.142.64.0', '213.142.95.255', 2147483647, 2147483647, 'NO', 'Norway'), +('213.142.96.0', '213.142.127.255', 2147483647, 2147483647, 'AT', 'Austria'), +('213.142.128.0', '213.142.159.255', 2147483647, 2147483647, 'GR', 'Greece'), +('213.142.160.0', '213.142.191.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('213.142.192.0', '213.142.223.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('213.142.224.0', '213.142.255.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('213.143.0.0', '213.143.31.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.143.32.0', '213.143.63.255', 2147483647, 2147483647, 'ES', 'Spain'), +('213.143.64.0', '213.143.95.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('213.143.96.0', '213.143.127.255', 2147483647, 2147483647, 'AT', 'Austria'), +('213.143.128.0', '213.143.159.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.143.160.0', '213.143.191.255', 2147483647, 2147483647, 'FI', 'Finland'), +('213.143.192.0', '213.143.223.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.143.224.0', '213.143.255.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('213.144.0.0', '213.144.31.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.144.32.0', '213.144.63.255', 2147483647, 2147483647, 'ES', 'Spain'), +('213.144.64.0', '213.144.95.255', 2147483647, 2147483647, 'IT', 'Italy'), +('213.144.96.0', '213.144.127.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('213.144.128.0', '213.144.131.119', 2147483647, 2147483647, 'CH', 'Switzerland'), +('213.144.131.120', '213.144.131.127', 2147483647, 2147483647, 'US', 'United States'), +('213.144.131.128', '213.144.137.103', 2147483647, 2147483647, 'CH', 'Switzerland'), +('213.144.137.104', '213.144.137.111', 2147483647, 2147483647, 'DE', 'Germany'), +('213.144.137.112', '213.144.152.111', 2147483647, 2147483647, 'CH', 'Switzerland'), +('213.144.152.112', '213.144.152.119', 2147483647, 2147483647, 'DE', 'Germany'), +('213.144.152.120', '213.144.159.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('213.144.160.0', '213.144.174.255', 2147483647, 2147483647, 'IT', 'Italy'), +('213.144.175.0', '213.144.175.255', 2147483647, 2147483647, 'US', 'United States'), +('213.144.176.0', '213.144.176.127', 2147483647, 2147483647, 'SG', 'Singapore'), +('213.144.176.128', '213.144.176.255', 2147483647, 2147483647, 'FR', 'France'), +('213.144.177.0', '213.144.177.255', 2147483647, 2147483647, 'IT', 'Italy'), +('213.144.178.0', '213.144.178.255', 2147483647, 2147483647, 'GR', 'Greece'), +('213.144.179.0', '213.144.182.63', 2147483647, 2147483647, 'IT', 'Italy'), +('213.144.182.64', '213.144.182.255', 2147483647, 2147483647, 'GR', 'Greece'), +('213.144.183.0', '213.144.183.255', 2147483647, 2147483647, 'FR', 'France'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('213.144.184.0', '213.144.186.31', 2147483647, 2147483647, 'GR', 'Greece'), +('213.144.186.32', '213.144.186.39', 2147483647, 2147483647, 'IT', 'Italy'), +('213.144.186.40', '213.144.186.79', 2147483647, 2147483647, 'GR', 'Greece'), +('213.144.186.80', '213.144.187.31', 2147483647, 2147483647, 'IT', 'Italy'), +('213.144.187.32', '213.144.187.63', 2147483647, 2147483647, 'GR', 'Greece'), +('213.144.187.64', '213.144.187.95', 2147483647, 2147483647, 'IT', 'Italy'), +('213.144.187.96', '213.144.187.127', 2147483647, 2147483647, 'FR', 'France'), +('213.144.187.128', '213.144.187.255', 2147483647, 2147483647, 'IT', 'Italy'), +('213.144.188.0', '213.144.189.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.144.190.0', '213.144.190.255', 2147483647, 2147483647, 'GR', 'Greece'), +('213.144.191.0', '213.144.191.255', 2147483647, 2147483647, 'IT', 'Italy'), +('213.144.192.0', '213.144.223.255', 2147483647, 2147483647, 'FR', 'France'), +('213.144.224.0', '213.144.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.145.0.0', '213.145.31.255', 2147483647, 2147483647, 'IT', 'Italy'), +('213.145.32.0', '213.145.63.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('213.145.64.0', '213.145.95.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.145.96.0', '213.145.127.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('213.145.128.0', '213.145.159.255', 2147483647, 2147483647, 'KG', 'Kyrgyzstan'), +('213.145.160.0', '213.145.191.255', 2147483647, 2147483647, 'NO', 'Norway'), +('213.145.192.0', '213.145.223.255', 2147483647, 2147483647, 'FI', 'Finland'), +('213.145.224.0', '213.145.255.255', 2147483647, 2147483647, 'AT', 'Austria'), +('213.146.0.0', '213.146.31.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('213.146.32.0', '213.146.63.255', 2147483647, 2147483647, 'PL', 'Poland'), +('213.146.64.0', '213.146.95.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.146.96.0', '213.146.103.95', 2147483647, 2147483647, 'DE', 'Germany'), +('213.146.103.96', '213.146.103.103', 2147483647, 2147483647, 'AT', 'Austria'), +('213.146.103.104', '213.146.127.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.146.128.0', '213.146.163.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.146.164.0', '213.146.164.31', 2147483647, 2147483647, 'IE', 'Ireland'), +('213.146.164.32', '213.146.164.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.146.164.192', '213.146.164.223', 2147483647, 2147483647, 'IE', 'Ireland'), +('213.146.164.224', '213.146.168.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.146.169.0', '213.146.170.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.146.171.0', '213.146.172.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.146.172.64', '213.146.172.79', 2147483647, 2147483647, 'DE', 'Germany'), +('213.146.172.80', '213.146.175.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.146.176.0', '213.146.179.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.146.180.0', '213.146.183.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.146.184.0', '213.146.184.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.146.185.0', '213.146.191.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.146.192.0', '213.146.223.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('213.146.224.0', '213.147.31.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.147.32.0', '213.147.63.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('213.147.64.0', '213.147.95.255', 2147483647, 2147483647, 'KE', 'Kenya'), +('213.147.96.0', '213.147.127.255', 2147483647, 2147483647, 'HR', 'Croatia'), +('213.147.128.0', '213.147.159.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('213.147.160.0', '213.147.191.255', 2147483647, 2147483647, 'AT', 'Austria'), +('213.147.192.0', '213.147.223.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('213.147.224.0', '213.147.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.148.0.0', '213.148.31.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('213.148.32.0', '213.148.63.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.148.64.0', '213.148.95.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('213.148.96.0', '213.148.127.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.148.128.0', '213.148.159.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.148.160.0', '213.148.191.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('213.148.192.0', '213.148.223.255', 2147483647, 2147483647, 'ES', 'Spain'), +('213.148.224.0', '213.148.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.149.0.0', '213.149.31.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('213.149.32.0', '213.149.63.255', 2147483647, 2147483647, 'HR', 'Croatia'), +('213.149.64.0', '213.149.95.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.149.96.0', '213.149.100.255', 2147483647, 2147483647, 'ME', 'Montenegro'), +('213.149.101.0', '213.149.101.255', 2147483647, 2147483647, 'AL', 'Albania'), +('213.149.102.0', '213.149.102.31', 2147483647, 2147483647, 'ME', 'Montenegro'), +('213.149.102.32', '213.149.102.39', 2147483647, 2147483647, 'RS', 'Serbia'), +('213.149.102.40', '213.149.102.47', 2147483647, 2147483647, 'ME', 'Montenegro'), +('213.149.102.48', '213.149.102.63', 2147483647, 2147483647, 'RS', 'Serbia'), +('213.149.102.64', '213.149.102.159', 2147483647, 2147483647, 'ME', 'Montenegro'), +('213.149.102.160', '213.149.102.191', 2147483647, 2147483647, 'RS', 'Serbia'), +('213.149.102.192', '213.149.107.255', 2147483647, 2147483647, 'ME', 'Montenegro'), +('213.149.108.0', '213.149.108.255', 2147483647, 2147483647, 'AL', 'Albania'), +('213.149.109.0', '213.149.113.239', 2147483647, 2147483647, 'ME', 'Montenegro'), +('213.149.113.240', '213.149.113.255', 2147483647, 2147483647, 'AL', 'Albania'), +('213.149.114.0', '213.149.118.255', 2147483647, 2147483647, 'ME', 'Montenegro'), +('213.149.119.0', '213.149.119.255', 2147483647, 2147483647, 'RS', 'Serbia'), +('213.149.120.0', '213.149.127.255', 2147483647, 2147483647, 'ME', 'Montenegro'), +('213.149.128.0', '213.149.149.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('213.149.150.0', '213.149.151.255', 2147483647, 2147483647, 'MK', 'Macedonia'), +('213.149.152.0', '213.149.159.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('213.149.160.0', '213.149.191.255', 2147483647, 2147483647, 'CY', 'Cyprus'), +('213.149.192.0', '213.149.223.255', 2147483647, 2147483647, 'IT', 'Italy'), +('213.149.224.0', '213.149.255.255', 2147483647, 2147483647, 'ES', 'Spain'), +('213.150.0.0', '213.150.31.255', 2147483647, 2147483647, 'AT', 'Austria'), +('213.150.32.0', '213.150.63.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('213.150.64.0', '213.150.95.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('213.150.96.0', '213.150.127.255', 2147483647, 2147483647, 'KE', 'Kenya'), +('213.150.128.0', '213.150.159.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.150.160.0', '213.150.191.255', 2147483647, 2147483647, 'TN', 'Tunisia'), +('213.150.192.0', '213.150.223.255', 2147483647, 2147483647, 'CI', 'Cote D''Ivoire'), +('213.150.224.0', '213.150.255.255', 2147483647, 2147483647, 'AT', 'Austria'), +('213.151.0.0', '213.151.31.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.151.32.0', '213.151.63.255', 2147483647, 2147483647, 'IL', 'Israel'), +('213.151.64.0', '213.151.81.211', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('213.151.81.212', '213.151.81.215', 2147483647, 2147483647, 'PL', 'Poland'), +('213.151.81.216', '213.151.95.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('213.151.96.0', '213.151.127.255', 2147483647, 2147483647, 'ES', 'Spain'), +('213.151.128.0', '213.151.159.255', 2147483647, 2147483647, 'NO', 'Norway'), +('213.151.160.0', '213.151.191.255', 2147483647, 2147483647, 'FR', 'France'), +('213.151.192.0', '213.151.255.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('213.152.0.0', '213.152.31.255', 2147483647, 2147483647, 'FR', 'France'), +('213.152.32.0', '213.152.63.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.152.64.0', '213.152.95.255', 2147483647, 2147483647, 'EG', 'Egypt'), +('213.152.96.0', '213.152.127.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.152.128.0', '213.152.159.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('213.152.160.0', '213.152.194.255', 2147483647, 2147483647, 'IT', 'Italy'), +('213.152.195.0', '213.152.195.127', 2147483647, 2147483647, 'SM', 'San Marino'), +('213.152.195.128', '213.152.223.255', 2147483647, 2147483647, 'IT', 'Italy'), +('213.152.224.0', '213.152.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.153.0.0', '213.153.31.255', 2147483647, 2147483647, 'NO', 'Norway'), +('213.153.32.0', '213.153.63.255', 2147483647, 2147483647, 'AT', 'Austria'), +('213.153.64.0', '213.153.95.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.153.96.0', '213.153.127.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.153.128.0', '213.153.255.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('213.154.0.0', '213.154.31.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.154.32.0', '213.154.63.255', 2147483647, 2147483647, 'EG', 'Egypt'), +('213.154.64.0', '213.154.95.255', 2147483647, 2147483647, 'SN', 'Senegal'), +('213.154.96.0', '213.154.159.255', 2147483647, 2147483647, 'RO', 'Romania'), +('213.154.160.0', '213.154.191.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('213.154.192.0', '213.154.223.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.154.224.0', '213.154.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.155.0.0', '213.155.0.7', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.155.0.8', '213.155.0.15', 2147483647, 2147483647, 'NA', 'Namibia'), +('213.155.0.16', '213.155.0.31', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.155.0.32', '213.155.0.39', 2147483647, 2147483647, 'NA', 'Namibia'), +('213.155.0.40', '213.155.0.87', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.155.0.88', '213.155.0.135', 2147483647, 2147483647, 'NA', 'Namibia'), +('213.155.0.136', '213.155.0.151', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.155.0.152', '213.155.0.159', 2147483647, 2147483647, 'NA', 'Namibia'), +('213.155.0.160', '213.155.0.167', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.155.0.168', '213.155.0.175', 2147483647, 2147483647, 'NA', 'Namibia'), +('213.155.0.176', '213.155.0.199', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.155.0.200', '213.155.0.207', 2147483647, 2147483647, 'NA', 'Namibia'), +('213.155.0.208', '213.155.0.215', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.155.0.216', '213.155.0.231', 2147483647, 2147483647, 'NA', 'Namibia'), +('213.155.0.232', '213.155.0.247', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.155.0.248', '213.155.0.255', 2147483647, 2147483647, 'NA', 'Namibia'), +('213.155.1.0', '213.155.1.87', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.155.1.88', '213.155.1.127', 2147483647, 2147483647, 'NA', 'Namibia'), +('213.155.1.128', '213.155.1.135', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.155.1.136', '213.155.1.143', 2147483647, 2147483647, 'NA', 'Namibia'), +('213.155.1.144', '213.155.1.151', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.155.1.152', '213.155.1.191', 2147483647, 2147483647, 'NA', 'Namibia'), +('213.155.1.192', '213.155.2.3', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.155.2.4', '213.155.2.8', 2147483647, 2147483647, 'NA', 'Namibia'), +('213.155.2.9', '213.155.2.47', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.155.2.48', '213.155.2.191', 2147483647, 2147483647, 'NA', 'Namibia'), +('213.155.2.192', '213.155.2.231', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.155.2.232', '213.155.2.239', 2147483647, 2147483647, 'NA', 'Namibia'), +('213.155.2.240', '213.155.2.247', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.155.2.248', '213.155.2.255', 2147483647, 2147483647, 'NA', 'Namibia'), +('213.155.3.0', '213.155.3.3', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.155.3.4', '213.155.3.7', 2147483647, 2147483647, 'NA', 'Namibia'), +('213.155.3.8', '213.155.3.31', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.155.3.32', '213.155.3.39', 2147483647, 2147483647, 'NA', 'Namibia'), +('213.155.3.40', '213.155.3.47', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.155.3.48', '213.155.3.55', 2147483647, 2147483647, 'NA', 'Namibia'), +('213.155.3.56', '213.155.3.167', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.155.3.168', '213.155.3.175', 2147483647, 2147483647, 'NA', 'Namibia'), +('213.155.3.176', '213.155.3.199', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.155.3.200', '213.155.3.207', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('213.155.3.208', '213.155.3.215', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.155.3.216', '213.155.3.223', 2147483647, 2147483647, 'NA', 'Namibia'), +('213.155.3.224', '213.155.4.63', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.155.4.64', '213.155.4.71', 2147483647, 2147483647, 'NA', 'Namibia'), +('213.155.4.72', '213.155.4.79', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.155.4.80', '213.155.4.87', 2147483647, 2147483647, 'NA', 'Namibia'), +('213.155.4.88', '213.155.4.151', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.155.4.152', '213.155.4.159', 2147483647, 2147483647, 'NA', 'Namibia'), +('213.155.4.160', '213.155.4.183', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.155.4.184', '213.155.4.199', 2147483647, 2147483647, 'NA', 'Namibia'), +('213.155.4.200', '213.155.4.231', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.155.4.232', '213.155.4.239', 2147483647, 2147483647, 'NA', 'Namibia'), +('213.155.4.240', '213.155.5.7', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.155.5.8', '213.155.5.15', 2147483647, 2147483647, 'NA', 'Namibia'), +('213.155.5.16', '213.155.5.95', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.155.5.96', '213.155.5.103', 2147483647, 2147483647, 'NA', 'Namibia'), +('213.155.5.104', '213.155.5.127', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.155.5.128', '213.155.5.143', 2147483647, 2147483647, 'NA', 'Namibia'), +('213.155.5.144', '213.155.5.151', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.155.5.152', '213.155.5.159', 2147483647, 2147483647, 'NA', 'Namibia'), +('213.155.5.160', '213.155.5.167', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.155.5.168', '213.155.5.175', 2147483647, 2147483647, 'NA', 'Namibia'), +('213.155.5.176', '213.155.5.183', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.155.5.184', '213.155.5.191', 2147483647, 2147483647, 'NA', 'Namibia'), +('213.155.5.192', '213.155.5.207', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.155.5.208', '213.155.5.215', 2147483647, 2147483647, 'NA', 'Namibia'), +('213.155.5.216', '213.155.5.223', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.155.5.224', '213.155.5.239', 2147483647, 2147483647, 'NA', 'Namibia'), +('213.155.5.240', '213.155.5.247', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.155.5.248', '213.155.5.255', 2147483647, 2147483647, 'NA', 'Namibia'), +('213.155.6.0', '213.155.6.0', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.155.6.1', '213.155.6.7', 2147483647, 2147483647, 'NA', 'Namibia'), +('213.155.6.8', '213.155.6.15', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.155.6.16', '213.155.6.31', 2147483647, 2147483647, 'NA', 'Namibia'), +('213.155.6.32', '213.155.6.55', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.155.6.56', '213.155.6.63', 2147483647, 2147483647, 'NA', 'Namibia'), +('213.155.6.64', '213.155.6.71', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.155.6.72', '213.155.6.79', 2147483647, 2147483647, 'NA', 'Namibia'), +('213.155.6.80', '213.155.6.112', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.155.6.113', '213.155.6.119', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('213.155.6.120', '213.155.6.143', 2147483647, 2147483647, 'NA', 'Namibia'), +('213.155.6.144', '213.155.6.151', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.155.6.152', '213.155.6.159', 2147483647, 2147483647, 'NA', 'Namibia'), +('213.155.6.160', '213.155.6.239', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.155.6.240', '213.155.6.255', 2147483647, 2147483647, 'NA', 'Namibia'), +('213.155.7.0', '213.155.7.7', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.155.7.8', '213.155.7.23', 2147483647, 2147483647, 'NA', 'Namibia'), +('213.155.7.24', '213.155.7.31', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.155.7.32', '213.155.7.39', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('213.155.7.40', '213.155.7.47', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.155.7.48', '213.155.7.55', 2147483647, 2147483647, 'NA', 'Namibia'), +('213.155.7.56', '213.155.7.79', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.155.7.80', '213.155.7.87', 2147483647, 2147483647, 'NA', 'Namibia'), +('213.155.7.88', '213.155.7.103', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.155.7.104', '213.155.7.119', 2147483647, 2147483647, 'NA', 'Namibia'), +('213.155.7.120', '213.155.7.135', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.155.7.136', '213.155.7.143', 2147483647, 2147483647, 'NA', 'Namibia'), +('213.155.7.144', '213.155.7.191', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.155.7.192', '213.155.7.231', 2147483647, 2147483647, 'NA', 'Namibia'), +('213.155.7.232', '213.155.7.239', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.155.7.240', '213.155.7.255', 2147483647, 2147483647, 'NA', 'Namibia'), +('213.155.8.0', '213.155.9.127', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.155.9.128', '213.155.9.135', 2147483647, 2147483647, 'NA', 'Namibia'), +('213.155.9.136', '213.155.9.167', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.155.9.168', '213.155.9.175', 2147483647, 2147483647, 'NA', 'Namibia'), +('213.155.9.176', '213.155.10.15', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.155.10.16', '213.155.10.31', 2147483647, 2147483647, 'NA', 'Namibia'), +('213.155.10.32', '213.155.10.55', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.155.10.56', '213.155.10.63', 2147483647, 2147483647, 'NA', 'Namibia'), +('213.155.10.64', '213.155.10.87', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.155.10.88', '213.155.10.95', 2147483647, 2147483647, 'NA', 'Namibia'), +('213.155.10.96', '213.155.10.111', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.155.10.112', '213.155.10.119', 2147483647, 2147483647, 'NA', 'Namibia'), +('213.155.10.120', '213.155.10.127', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.155.10.128', '213.155.10.143', 2147483647, 2147483647, 'NA', 'Namibia'), +('213.155.10.144', '213.155.10.159', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.155.10.160', '213.155.10.167', 2147483647, 2147483647, 'NA', 'Namibia'), +('213.155.10.168', '213.155.10.191', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.155.10.192', '213.155.10.207', 2147483647, 2147483647, 'NA', 'Namibia'), +('213.155.10.208', '213.155.11.15', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.155.11.16', '213.155.11.23', 2147483647, 2147483647, 'NA', 'Namibia'), +('213.155.11.24', '213.155.11.127', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.155.11.128', '213.155.11.191', 2147483647, 2147483647, 'NA', 'Namibia'), +('213.155.11.192', '213.155.12.7', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.155.12.8', '213.155.12.15', 2147483647, 2147483647, 'NA', 'Namibia'), +('213.155.12.16', '213.155.12.71', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.155.12.72', '213.155.12.79', 2147483647, 2147483647, 'NA', 'Namibia'), +('213.155.12.80', '213.155.12.95', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.155.12.96', '213.155.12.103', 2147483647, 2147483647, 'NA', 'Namibia'), +('213.155.12.104', '213.155.12.167', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.155.12.168', '213.155.12.175', 2147483647, 2147483647, 'NA', 'Namibia'), +('213.155.12.176', '213.155.12.199', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.155.12.200', '213.155.12.207', 2147483647, 2147483647, 'NA', 'Namibia'), +('213.155.12.208', '213.155.13.7', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.155.13.8', '213.155.13.15', 2147483647, 2147483647, 'NA', 'Namibia'), +('213.155.13.16', '213.155.13.63', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.155.13.64', '213.155.13.127', 2147483647, 2147483647, 'NA', 'Namibia'), +('213.155.13.128', '213.155.13.159', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.155.13.160', '213.155.13.167', 2147483647, 2147483647, 'NA', 'Namibia'), +('213.155.13.168', '213.155.13.191', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.155.13.192', '213.155.13.207', 2147483647, 2147483647, 'NA', 'Namibia'), +('213.155.13.208', '213.155.28.31', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.155.28.32', '213.155.28.39', 2147483647, 2147483647, 'NA', 'Namibia'), +('213.155.28.40', '213.155.28.47', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.155.28.48', '213.155.28.55', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('213.155.28.56', '213.155.28.63', 2147483647, 2147483647, 'NA', 'Namibia'), +('213.155.28.64', '213.155.28.95', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.155.28.96', '213.155.28.103', 2147483647, 2147483647, 'NA', 'Namibia'), +('213.155.28.104', '213.155.29.39', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.155.29.40', '213.155.29.47', 2147483647, 2147483647, 'NA', 'Namibia'), +('213.155.29.48', '213.155.29.79', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.155.29.80', '213.155.29.87', 2147483647, 2147483647, 'NA', 'Namibia'), +('213.155.29.88', '213.155.29.143', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.155.29.144', '213.155.29.151', 2147483647, 2147483647, 'NA', 'Namibia'), +('213.155.29.152', '213.155.29.191', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.155.29.192', '213.155.29.207', 2147483647, 2147483647, 'NA', 'Namibia'), +('213.155.29.208', '213.155.29.223', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.155.29.224', '213.155.29.231', 2147483647, 2147483647, 'NA', 'Namibia'), +('213.155.29.232', '213.155.29.247', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.155.29.248', '213.155.29.251', 2147483647, 2147483647, 'NA', 'Namibia'), +('213.155.29.252', '213.155.30.71', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.155.30.72', '213.155.30.79', 2147483647, 2147483647, 'NA', 'Namibia'), +('213.155.30.80', '213.155.30.127', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.155.30.128', '213.155.30.135', 2147483647, 2147483647, 'NA', 'Namibia'), +('213.155.30.136', '213.155.30.143', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.155.30.144', '213.155.30.151', 2147483647, 2147483647, 'NA', 'Namibia'), +('213.155.30.152', '213.155.31.47', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.155.31.48', '213.155.31.55', 2147483647, 2147483647, 'NA', 'Namibia'), +('213.155.31.56', '213.155.31.79', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.155.31.80', '213.155.31.87', 2147483647, 2147483647, 'NA', 'Namibia'), +('213.155.31.88', '213.155.31.103', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.155.31.104', '213.155.31.111', 2147483647, 2147483647, 'NA', 'Namibia'), +('213.155.31.112', '213.155.31.135', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.155.31.136', '213.155.31.143', 2147483647, 2147483647, 'NA', 'Namibia'), +('213.155.31.144', '213.155.31.159', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.155.31.160', '213.155.31.167', 2147483647, 2147483647, 'NA', 'Namibia'), +('213.155.31.168', '213.155.31.175', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('213.155.31.176', '213.155.31.183', 2147483647, 2147483647, 'NA', 'Namibia'), +('213.155.31.184', '213.155.31.247', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.155.31.248', '213.155.31.251', 2147483647, 2147483647, 'NA', 'Namibia'), +('213.155.31.252', '213.155.31.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.155.32.0', '213.155.63.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('213.155.64.0', '213.155.95.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.155.96.0', '213.155.127.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('213.155.128.0', '213.155.138.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.155.139.0', '213.155.139.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.155.140.0', '213.155.141.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.155.142.0', '213.155.142.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.155.143.0', '213.155.143.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.155.144.0', '213.155.146.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.155.147.0', '213.155.149.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.155.150.0', '213.155.151.231', 2147483647, 2147483647, 'EU', 'Europe'), +('213.155.151.232', '213.155.151.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.155.151.240', '213.155.152.67', 2147483647, 2147483647, 'EU', 'Europe'), +('213.155.152.68', '213.155.152.71', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.155.152.72', '213.155.152.127', 2147483647, 2147483647, 'EU', 'Europe'), +('213.155.152.128', '213.155.152.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.155.153.0', '213.155.153.31', 2147483647, 2147483647, 'EU', 'Europe'), +('213.155.153.32', '213.155.153.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.155.153.48', '213.155.153.63', 2147483647, 2147483647, 'EU', 'Europe'), +('213.155.153.64', '213.155.153.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.155.153.128', '213.155.153.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.155.154.0', '213.155.154.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.155.155.0', '213.155.155.63', 2147483647, 2147483647, 'EU', 'Europe'), +('213.155.155.64', '213.155.155.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.155.155.80', '213.155.155.191', 2147483647, 2147483647, 'EU', 'Europe'), +('213.155.155.192', '213.155.155.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.155.155.224', '213.155.156.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.155.157.0', '213.155.157.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.155.158.0', '213.155.158.127', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.155.158.128', '213.155.159.15', 2147483647, 2147483647, 'EU', 'Europe'), +('213.155.159.16', '213.155.159.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.155.159.32', '213.155.159.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.155.160.0', '213.155.191.255', 2147483647, 2147483647, 'PL', 'Poland'), +('213.155.192.0', '213.155.223.255', 2147483647, 2147483647, 'IT', 'Italy'), +('213.155.224.0', '213.155.255.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('213.156.0.0', '213.156.6.191', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.156.6.192', '213.156.6.207', 2147483647, 2147483647, 'IT', 'Italy'), +('213.156.6.208', '213.156.31.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.156.32.0', '213.156.63.255', 2147483647, 2147483647, 'IT', 'Italy'), +('213.156.64.0', '213.156.95.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.156.96.0', '213.156.127.255', 2147483647, 2147483647, 'PL', 'Poland'), +('213.156.128.0', '213.156.140.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('213.156.141.0', '213.156.141.255', 2147483647, 2147483647, 'BY', 'Belarus'), +('213.156.142.0', '213.156.159.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('213.156.160.0', '213.156.160.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.156.161.0', '213.156.191.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.156.192.0', '213.156.223.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('213.156.224.0', '213.156.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('213.157.0.0', '213.157.31.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.157.32.0', '213.157.63.255', 2147483647, 2147483647, 'KZ', 'Kazakstan'), +('213.157.64.0', '213.157.65.255', 2147483647, 2147483647, 'US', 'United States'), +('213.157.66.0', '213.157.71.255', 2147483647, 2147483647, 'FI', 'Finland'), +('213.157.72.0', '213.157.73.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.157.73.16', '213.157.73.31', 2147483647, 2147483647, 'FI', 'Finland'), +('213.157.73.32', '213.157.73.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.157.73.96', '213.157.73.103', 2147483647, 2147483647, 'FI', 'Finland'), +('213.157.73.104', '213.157.73.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.157.73.144', '213.157.73.159', 2147483647, 2147483647, 'FI', 'Finland'), +('213.157.73.160', '213.157.73.193', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.157.73.194', '213.157.73.199', 2147483647, 2147483647, 'FI', 'Finland'), +('213.157.73.200', '213.157.73.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.157.74.0', '213.157.74.63', 2147483647, 2147483647, 'US', 'United States'), +('213.157.74.64', '213.157.74.71', 2147483647, 2147483647, 'FI', 'Finland'), +('213.157.74.72', '213.157.74.79', 2147483647, 2147483647, 'US', 'United States'), +('213.157.74.80', '213.157.74.87', 2147483647, 2147483647, 'FI', 'Finland'), +('213.157.74.88', '213.157.74.95', 2147483647, 2147483647, 'US', 'United States'), +('213.157.74.96', '213.157.74.103', 2147483647, 2147483647, 'FI', 'Finland'), +('213.157.74.104', '213.157.74.143', 2147483647, 2147483647, 'US', 'United States'), +('213.157.74.144', '213.157.74.207', 2147483647, 2147483647, 'FI', 'Finland'), +('213.157.74.208', '213.157.74.223', 2147483647, 2147483647, 'US', 'United States'), +('213.157.74.224', '213.157.78.255', 2147483647, 2147483647, 'FI', 'Finland'), +('213.157.79.0', '213.157.79.63', 2147483647, 2147483647, 'SG', 'Singapore'), +('213.157.79.64', '213.157.79.231', 2147483647, 2147483647, 'FI', 'Finland'), +('213.157.79.232', '213.157.79.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('213.157.80.0', '213.157.95.255', 2147483647, 2147483647, 'FI', 'Finland'), +('213.157.96.0', '213.157.127.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('213.157.128.0', '213.157.159.255', 2147483647, 2147483647, 'AT', 'Austria'), +('213.157.160.0', '213.157.179.255', 2147483647, 2147483647, 'RO', 'Romania'), +('213.157.180.0', '213.157.181.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('213.157.182.0', '213.157.191.255', 2147483647, 2147483647, 'RO', 'Romania'), +('213.157.192.0', '213.157.223.255', 2147483647, 2147483647, 'GE', 'Georgia'), +('213.157.224.0', '213.157.255.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('213.158.0.0', '213.158.31.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('213.158.32.0', '213.158.63.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.158.64.0', '213.158.95.255', 2147483647, 2147483647, 'IT', 'Italy'), +('213.158.96.0', '213.158.127.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.158.128.0', '213.158.159.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('213.158.160.0', '213.158.191.255', 2147483647, 2147483647, 'EG', 'Egypt'), +('213.158.192.0', '213.158.223.255', 2147483647, 2147483647, 'PL', 'Poland'), +('213.158.224.0', '213.158.255.255', 2147483647, 2147483647, 'NO', 'Norway'), +('213.159.0.0', '213.159.31.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.159.32.0', '213.159.63.255', 2147483647, 2147483647, 'LT', 'Lithuania'), +('213.159.64.0', '213.159.127.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('213.159.128.0', '213.159.159.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('213.159.160.0', '213.159.191.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.159.192.0', '213.159.223.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('213.159.224.0', '213.159.255.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.160.0.0', '213.160.31.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.160.32.0', '213.160.63.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('213.160.64.0', '213.160.90.103', 2147483647, 2147483647, 'DE', 'Germany'), +('213.160.90.104', '213.160.90.111', 2147483647, 2147483647, 'TR', 'Turkey'), +('213.160.90.112', '213.160.95.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.160.96.0', '213.160.127.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.160.128.0', '213.160.159.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.160.160.0', '213.160.191.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('213.160.192.0', '213.160.192.31', 2147483647, 2147483647, 'AT', 'Austria'), +('213.160.192.32', '213.160.192.39', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.160.192.40', '213.160.192.223', 2147483647, 2147483647, 'AT', 'Austria'), +('213.160.192.224', '213.160.192.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.160.193.0', '213.160.193.103', 2147483647, 2147483647, 'AT', 'Austria'), +('213.160.193.104', '213.160.193.111', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.160.193.112', '213.160.195.255', 2147483647, 2147483647, 'AT', 'Austria'), +('213.160.196.0', '213.160.219.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.160.220.0', '213.160.222.255', 2147483647, 2147483647, 'AT', 'Austria'), +('213.160.223.0', '213.160.223.15', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.160.223.16', '213.160.223.47', 2147483647, 2147483647, 'AT', 'Austria'), +('213.160.223.48', '213.160.223.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.160.223.64', '213.160.223.255', 2147483647, 2147483647, 'AT', 'Austria'), +('213.160.224.0', '213.160.225.255', 2147483647, 2147483647, 'NO', 'Norway'), +('213.160.226.0', '213.160.226.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.160.227.0', '213.160.227.7', 2147483647, 2147483647, 'NO', 'Norway'), +('213.160.227.8', '213.160.227.15', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.160.227.16', '213.160.227.63', 2147483647, 2147483647, 'NO', 'Norway'), +('213.160.227.64', '213.160.227.79', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.160.227.80', '213.160.238.87', 2147483647, 2147483647, 'NO', 'Norway'), +('213.160.238.88', '213.160.238.95', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.160.238.96', '213.160.242.173', 2147483647, 2147483647, 'NO', 'Norway'), +('213.160.242.174', '213.160.242.175', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.160.242.176', '213.160.246.191', 2147483647, 2147483647, 'NO', 'Norway'), +('213.160.246.192', '213.160.246.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.160.247.0', '213.160.247.255', 2147483647, 2147483647, 'NO', 'Norway'), +('213.160.248.0', '213.160.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.161.0.0', '213.161.31.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('213.161.32.0', '213.161.63.255', 2147483647, 2147483647, 'FI', 'Finland'), +('213.161.64.0', '213.161.95.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.161.96.0', '213.161.127.255', 2147483647, 2147483647, 'PL', 'Poland'), +('213.161.128.0', '213.161.159.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('213.161.160.0', '213.161.191.255', 2147483647, 2147483647, 'NO', 'Norway'), +('213.161.192.0', '213.161.223.255', 2147483647, 2147483647, 'FR', 'France'), +('213.161.224.0', '213.161.255.255', 2147483647, 2147483647, 'NO', 'Norway'), +('213.162.0.0', '213.162.31.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('213.162.32.0', '213.162.63.255', 2147483647, 2147483647, 'FR', 'France'), +('213.162.64.0', '213.162.95.255', 2147483647, 2147483647, 'AT', 'Austria'), +('213.162.96.0', '213.162.127.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.162.128.0', '213.162.159.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.162.160.0', '213.162.191.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.162.192.0', '213.162.223.255', 2147483647, 2147483647, 'ES', 'Spain'), +('213.162.224.0', '213.162.255.255', 2147483647, 2147483647, 'NO', 'Norway'), +('213.163.0.0', '213.163.63.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('213.163.64.0', '213.163.95.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.163.96.0', '213.163.127.255', 2147483647, 2147483647, 'RS', 'Serbia'), +('213.163.128.0', '213.163.159.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.163.160.0', '213.163.191.255', 2147483647, 2147483647, 'FR', 'France'), +('213.163.192.0', '213.163.223.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.163.224.0', '213.164.31.255', 2147483647, 2147483647, 'AT', 'Austria'), +('213.164.32.0', '213.164.63.255', 2147483647, 2147483647, 'ES', 'Spain'), +('213.164.64.0', '213.164.95.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.164.96.0', '213.164.127.255', 2147483647, 2147483647, 'LT', 'Lithuania'), +('213.164.128.0', '213.164.159.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.164.160.0', '213.164.191.255', 2147483647, 2147483647, 'ES', 'Spain'), +('213.164.192.0', '213.164.223.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.164.224.0', '213.164.255.255', 2147483647, 2147483647, 'RO', 'Romania'), +('213.165.0.0', '213.165.31.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.165.32.0', '213.165.63.255', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('213.165.64.0', '213.165.127.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.165.128.0', '213.165.159.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.165.160.0', '213.165.191.255', 2147483647, 2147483647, 'MT', 'Malta'), +('213.165.192.0', '213.165.206.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('213.165.207.0', '213.165.207.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.165.208.0', '213.165.209.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.165.210.0', '213.165.211.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('213.165.212.0', '213.165.212.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.165.213.0', '213.165.217.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('213.165.218.0', '213.165.219.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.165.220.0', '213.165.223.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('213.165.224.0', '213.166.31.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.166.32.0', '213.166.63.255', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('213.166.64.0', '213.166.95.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.166.96.0', '213.166.127.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.166.128.0', '213.166.159.255', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('213.166.192.0', '213.166.223.255', 2147483647, 2147483647, 'FR', 'France'), +('213.166.224.0', '213.166.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.167.0.0', '213.167.31.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('213.167.32.0', '213.167.63.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('213.167.64.0', '213.167.67.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.167.68.0', '213.167.68.15', 2147483647, 2147483647, 'CY', 'Cyprus'), +('213.167.68.16', '213.167.68.23', 2147483647, 2147483647, 'KY', 'Cayman Islands'), +('213.167.68.24', '213.167.68.103', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.167.68.104', '213.167.68.111', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.167.68.112', '213.167.69.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.167.69.48', '213.167.69.55', 2147483647, 2147483647, 'AW', 'Aruba'), +('213.167.69.56', '213.167.69.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.167.69.176', '213.167.69.183', 2147483647, 2147483647, 'KY', 'Cayman Islands'), +('213.167.69.184', '213.167.74.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.167.74.160', '213.167.74.191', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.167.74.192', '213.167.76.23', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.167.76.24', '213.167.76.31', 2147483647, 2147483647, 'KY', 'Cayman Islands'), +('213.167.76.32', '213.167.76.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.167.76.48', '213.167.76.63', 2147483647, 2147483647, 'KY', 'Cayman Islands'), +('213.167.76.64', '213.167.76.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.167.76.80', '213.167.76.95', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.167.76.96', '213.167.79.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.167.79.64', '213.167.79.191', 2147483647, 2147483647, 'MT', 'Malta'), +('213.167.79.192', '213.167.85.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.167.86.0', '213.167.86.63', 2147483647, 2147483647, 'US', 'United States'), +('213.167.86.64', '213.167.95.231', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.167.95.232', '213.167.95.239', 2147483647, 2147483647, 'BB', 'Barbados'), +('213.167.95.240', '213.167.95.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.167.96.0', '213.167.127.255', 2147483647, 2147483647, 'NO', 'Norway'), +('213.167.128.0', '213.167.159.255', 2147483647, 2147483647, 'IS', 'Iceland'), +('213.167.160.0', '213.167.191.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.167.192.0', '213.167.223.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('213.167.224.0', '213.167.255.255', 2147483647, 2147483647, 'ES', 'Spain'), +('213.168.0.0', '213.168.31.255', 2147483647, 2147483647, 'EE', 'Estonia'), +('213.168.32.0', '213.168.63.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('213.168.64.0', '213.168.127.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.168.128.0', '213.168.159.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('213.168.160.0', '213.168.191.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('213.168.192.0', '213.168.223.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.168.224.0', '213.168.224.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.168.224.96', '213.168.254.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('213.168.255.0', '213.168.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.169.0.0', '213.169.31.255', 2147483647, 2147483647, 'FI', 'Finland'), +('213.169.32.0', '213.169.63.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('213.169.64.0', '213.169.95.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.169.96.0', '213.169.106.255', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('213.169.107.0', '213.169.107.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.169.108.0', '213.169.127.255', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('213.169.128.0', '213.169.159.255', 2147483647, 2147483647, 'CY', 'Cyprus'), +('213.169.160.0', '213.169.191.255', 2147483647, 2147483647, 'FR', 'France'), +('213.169.192.0', '213.169.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.170.0.0', '213.170.31.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.170.32.0', '213.170.53.55', 2147483647, 2147483647, 'ES', 'Spain'), +('213.170.53.56', '213.170.53.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.170.53.128', '213.170.54.39', 2147483647, 2147483647, 'ES', 'Spain'), +('213.170.54.40', '213.170.54.55', 2147483647, 2147483647, 'CH', 'Switzerland'), +('213.170.54.56', '213.170.58.119', 2147483647, 2147483647, 'ES', 'Spain'), +('213.170.58.120', '213.170.58.127', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.170.58.128', '213.170.63.255', 2147483647, 2147483647, 'ES', 'Spain'), +('213.170.64.0', '213.170.127.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('213.170.128.0', '213.170.159.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.170.160.0', '213.170.191.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.170.192.0', '213.170.223.255', 2147483647, 2147483647, 'GR', 'Greece'), +('213.170.224.0', '213.170.255.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('213.171.0.0', '213.171.63.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('213.171.64.0', '213.171.95.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.171.96.0', '213.171.127.255', 2147483647, 2147483647, 'IT', 'Italy'), +('213.171.128.0', '213.171.159.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.171.160.0', '213.171.191.255', 2147483647, 2147483647, 'IT', 'Italy'), +('213.171.192.0', '213.171.223.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.171.224.0', '213.171.255.255', 2147483647, 2147483647, 'ES', 'Spain'), +('213.172.0.0', '213.172.31.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('213.172.32.0', '213.172.63.255', 2147483647, 2147483647, 'ES', 'Spain'), +('213.172.64.0', '213.172.95.255', 2147483647, 2147483647, 'AZ', 'Azerbaijan'), +('213.172.96.0', '213.172.127.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.172.128.0', '213.172.159.255', 2147483647, 2147483647, 'GH', 'Ghana'), +('213.172.160.0', '213.172.191.255', 2147483647, 2147483647, 'PL', 'Poland'), +('213.172.192.0', '213.172.223.255', 2147483647, 2147483647, 'NO', 'Norway'), +('213.172.224.0', '213.172.255.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('213.173.0.0', '213.173.31.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.173.32.0', '213.173.63.255', 2147483647, 2147483647, 'IL', 'Israel'), +('213.173.64.0', '213.173.95.255', 2147483647, 2147483647, 'AT', 'Austria'), +('213.173.96.0', '213.173.127.255', 2147483647, 2147483647, 'IT', 'Italy'), +('213.173.128.0', '213.173.159.255', 2147483647, 2147483647, 'FI', 'Finland'), +('213.173.160.0', '213.173.170.19', 2147483647, 2147483647, 'CH', 'Switzerland'), +('213.173.170.20', '213.173.170.23', 2147483647, 2147483647, 'IT', 'Italy'), +('213.173.170.24', '213.173.175.63', 2147483647, 2147483647, 'CH', 'Switzerland'), +('213.173.175.64', '213.173.175.191', 2147483647, 2147483647, 'DE', 'Germany'), +('213.173.175.192', '213.173.182.47', 2147483647, 2147483647, 'CH', 'Switzerland'), +('213.173.182.48', '213.173.182.63', 2147483647, 2147483647, 'ES', 'Spain'), +('213.173.182.64', '213.173.183.103', 2147483647, 2147483647, 'CH', 'Switzerland'), +('213.173.183.104', '213.173.183.111', 2147483647, 2147483647, 'ES', 'Spain'), +('213.173.183.112', '213.173.185.95', 2147483647, 2147483647, 'CH', 'Switzerland'), +('213.173.185.96', '213.173.185.103', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.173.185.104', '213.173.191.7', 2147483647, 2147483647, 'CH', 'Switzerland'), +('213.173.191.8', '213.173.191.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.173.191.16', '213.173.191.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('213.173.192.0', '213.173.223.255', 2147483647, 2147483647, 'PL', 'Poland'), +('213.173.224.0', '213.173.255.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('213.174.0.0', '213.174.31.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('213.174.32.0', '213.174.63.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.174.64.0', '213.174.95.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('213.174.96.0', '213.174.127.255', 2147483647, 2147483647, 'FR', 'France'), +('213.174.128.0', '213.174.128.255', 2147483647, 2147483647, 'US', 'United States'), +('213.174.129.0', '213.174.131.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.174.132.0', '213.174.132.255', 2147483647, 2147483647, 'US', 'United States'), +('213.174.133.0', '213.174.133.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.174.134.0', '213.174.144.255', 2147483647, 2147483647, 'US', 'United States'), +('213.174.145.0', '213.174.145.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.174.146.0', '213.174.148.151', 2147483647, 2147483647, 'US', 'United States'), +('213.174.148.152', '213.174.148.159', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.174.148.160', '213.174.149.191', 2147483647, 2147483647, 'US', 'United States'), +('213.174.149.192', '213.174.149.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.174.150.0', '213.174.153.255', 2147483647, 2147483647, 'US', 'United States'), +('213.174.154.0', '213.174.156.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.174.157.0', '213.174.157.31', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.174.157.32', '213.174.159.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.174.160.0', '213.174.191.255', 2147483647, 2147483647, 'IT', 'Italy'), +('213.174.192.0', '213.174.223.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.174.224.0', '213.174.255.255', 2147483647, 2147483647, 'AT', 'Austria'), +('213.175.0.0', '213.175.31.255', 2147483647, 2147483647, 'IT', 'Italy'), +('213.175.32.0', '213.175.63.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('213.175.64.0', '213.175.127.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('213.175.128.0', '213.175.159.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.175.160.0', '213.175.191.255', 2147483647, 2147483647, 'LB', 'Lebanon'), +('213.175.192.0', '213.175.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.176.0.0', '213.176.127.255', 2147483647, 2147483647, 'IR', 'Iran, Islamic Republic of'), +('213.176.128.0', '213.176.159.255', 2147483647, 2147483647, 'IS', 'Iceland'), +('213.176.160.0', '213.176.191.255', 2147483647, 2147483647, 'ES', 'Spain'), +('213.176.192.0', '213.176.223.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.176.224.0', '213.176.255.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('213.177.0.0', '213.177.1.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.177.1.192', '213.177.31.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('213.177.32.0', '213.177.63.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.177.64.0', '213.177.95.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.177.96.0', '213.177.127.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('213.177.128.0', '213.177.159.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.177.160.0', '213.177.167.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.177.168.0', '213.177.169.255', 2147483647, 2147483647, 'DZ', 'Algeria'), +('213.177.170.0', '213.177.170.63', 2147483647, 2147483647, 'IQ', 'Iraq'), +('213.177.170.64', '213.177.170.127', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.177.170.128', '213.177.170.191', 2147483647, 2147483647, 'DZ', 'Algeria'), +('213.177.170.192', '213.177.191.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.177.192.0', '213.177.223.255', 2147483647, 2147483647, 'ES', 'Spain'), +('213.177.224.0', '213.177.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.178.0.0', '213.178.31.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.178.32.0', '213.178.63.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('213.178.64.0', '213.178.95.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.178.96.0', '213.178.127.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('213.178.128.0', '213.178.159.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.178.160.0', '213.178.191.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.178.192.0', '213.178.223.255', 2147483647, 2147483647, 'IT', 'Italy'), +('213.178.224.0', '213.178.255.255', 2147483647, 2147483647, 'SY', 'Syrian Arab Republic'), +('213.179.0.0', '213.179.31.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.179.32.0', '213.179.43.135', 2147483647, 2147483647, 'NO', 'Norway'), +('213.179.43.136', '213.179.43.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.179.44.0', '213.179.45.80', 2147483647, 2147483647, 'NO', 'Norway'), +('213.179.45.81', '213.179.45.127', 2147483647, 2147483647, 'EU', 'Europe'), +('213.179.45.128', '213.179.45.159', 2147483647, 2147483647, 'NO', 'Norway'), +('213.179.45.160', '213.179.49.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.179.50.0', '213.179.50.7', 2147483647, 2147483647, 'NO', 'Norway'), +('213.179.50.8', '213.179.50.31', 2147483647, 2147483647, 'EU', 'Europe'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('213.179.50.32', '213.179.50.223', 2147483647, 2147483647, 'NO', 'Norway'), +('213.179.50.224', '213.179.50.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.179.51.0', '213.179.58.223', 2147483647, 2147483647, 'NO', 'Norway'), +('213.179.58.224', '213.179.58.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.179.59.0', '213.179.59.159', 2147483647, 2147483647, 'NO', 'Norway'), +('213.179.59.160', '213.179.59.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.179.60.0', '213.179.61.255', 2147483647, 2147483647, 'NO', 'Norway'), +('213.179.62.0', '213.179.63.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.179.64.0', '213.179.95.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.179.96.0', '213.179.127.255', 2147483647, 2147483647, 'ES', 'Spain'), +('213.179.128.0', '213.179.159.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.179.160.0', '213.179.191.255', 2147483647, 2147483647, 'DZ', 'Algeria'), +('213.179.192.0', '213.179.223.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.179.224.0', '213.179.255.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.180.0.0', '213.180.31.255', 2147483647, 2147483647, 'EE', 'Estonia'), +('213.180.32.0', '213.180.63.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('213.180.64.0', '213.180.95.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.180.96.0', '213.180.127.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('213.180.128.0', '213.180.159.255', 2147483647, 2147483647, 'PL', 'Poland'), +('213.180.160.0', '213.180.191.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('213.180.192.0', '213.180.223.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('213.180.224.0', '213.180.255.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.181.0.0', '213.181.31.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('213.181.32.0', '213.181.63.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.181.96.0', '213.181.127.255', 2147483647, 2147483647, 'IS', 'Iceland'), +('213.181.128.0', '213.181.159.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('213.181.160.0', '213.181.191.255', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('213.181.192.0', '213.181.223.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('213.181.224.0', '213.181.255.255', 2147483647, 2147483647, 'EG', 'Egypt'), +('213.182.0.0', '213.182.31.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.182.32.0', '213.182.63.255', 2147483647, 2147483647, 'FR', 'France'), +('213.182.64.0', '213.182.95.255', 2147483647, 2147483647, 'IT', 'Italy'), +('213.182.96.0', '213.182.159.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.182.160.0', '213.182.191.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('213.182.192.0', '213.182.223.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('213.182.224.0', '213.182.255.255', 2147483647, 2147483647, 'AT', 'Austria'), +('213.183.0.0', '213.183.31.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.183.32.0', '213.183.63.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('213.183.64.0', '213.183.95.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.183.96.0', '213.183.127.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('213.183.128.0', '213.183.159.255', 2147483647, 2147483647, 'IT', 'Italy'), +('213.183.160.0', '213.183.223.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.183.224.0', '213.183.255.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('213.184.0.0', '213.184.31.255', 2147483647, 2147483647, 'PL', 'Poland'), +('213.184.32.0', '213.184.63.255', 2147483647, 2147483647, 'EE', 'Estonia'), +('213.184.64.0', '213.184.95.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('213.184.96.0', '213.184.127.255', 2147483647, 2147483647, 'RS', 'Serbia'), +('213.184.128.0', '213.184.159.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('213.184.160.0', '213.184.191.255', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('213.184.192.0', '213.184.195.79', 2147483647, 2147483647, 'NO', 'Norway'), +('213.184.195.80', '213.184.195.87', 2147483647, 2147483647, 'US', 'United States'), +('213.184.195.88', '213.184.223.255', 2147483647, 2147483647, 'NO', 'Norway'), +('213.184.224.0', '213.184.255.255', 2147483647, 2147483647, 'BY', 'Belarus'), +('213.185.0.0', '213.185.3.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.185.4.0', '213.185.4.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('213.185.5.0', '213.185.6.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.185.7.0', '213.185.10.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('213.185.11.0', '213.185.11.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.185.12.0', '213.185.17.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('213.185.18.0', '213.185.19.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.185.20.0', '213.185.22.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('213.185.23.0', '213.185.23.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.185.24.0', '213.185.24.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('213.185.25.0', '213.185.31.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.185.32.0', '213.185.63.255', 2147483647, 2147483647, 'FI', 'Finland'), +('213.185.64.0', '213.185.95.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.185.96.0', '213.185.96.255', 2147483647, 2147483647, 'CM', 'Cameroon'), +('213.185.97.0', '213.185.97.63', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('213.185.97.64', '213.185.98.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.185.99.0', '213.185.99.255', 2147483647, 2147483647, 'LB', 'Lebanon'), +('213.185.100.0', '213.185.100.31', 2147483647, 2147483647, 'NO', 'Norway'), +('213.185.100.32', '213.185.100.63', 2147483647, 2147483647, 'LR', 'Liberia'), +('213.185.100.64', '213.185.100.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.185.100.80', '213.185.100.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.185.101.0', '213.185.101.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.185.102.0', '213.185.102.255', 2147483647, 2147483647, 'NO', 'Norway'), +('213.185.103.0', '213.185.103.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.185.104.0', '213.185.104.255', 2147483647, 2147483647, 'NG', 'Nigeria'), +('213.185.105.0', '213.185.105.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.185.106.0', '213.185.107.255', 2147483647, 2147483647, 'NG', 'Nigeria'), +('213.185.108.0', '213.185.108.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.185.109.0', '213.185.110.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.185.111.0', '213.185.111.127', 2147483647, 2147483647, 'US', 'United States'), +('213.185.111.128', '213.185.111.255', 2147483647, 2147483647, 'AU', 'Australia'), +('213.185.112.0', '213.185.112.255', 2147483647, 2147483647, 'IQ', 'Iraq'), +('213.185.113.0', '213.185.113.63', 2147483647, 2147483647, 'NG', 'Nigeria'), +('213.185.113.64', '213.185.113.95', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.185.113.96', '213.185.113.126', 2147483647, 2147483647, 'US', 'United States'), +('213.185.113.127', '213.185.113.127', 2147483647, 2147483647, 'NG', 'Nigeria'), +('213.185.113.128', '213.185.113.135', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.185.113.136', '213.185.113.143', 2147483647, 2147483647, 'US', 'United States'), +('213.185.113.144', '213.185.113.159', 2147483647, 2147483647, 'ZA', 'South Africa'), +('213.185.113.160', '213.185.113.175', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.185.113.176', '213.185.113.191', 2147483647, 2147483647, 'NG', 'Nigeria'), +('213.185.113.192', '213.185.113.207', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.185.113.208', '213.185.113.223', 2147483647, 2147483647, 'NG', 'Nigeria'), +('213.185.113.224', '213.185.113.247', 2147483647, 2147483647, 'AU', 'Australia'), +('213.185.113.248', '213.185.113.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('213.185.114.0', '213.185.114.255', 2147483647, 2147483647, 'NG', 'Nigeria'), +('213.185.115.0', '213.185.115.255', 2147483647, 2147483647, 'TZ', 'Tanzania, United Republic of'), +('213.185.116.0', '213.185.116.255', 2147483647, 2147483647, 'IQ', 'Iraq'), +('213.185.117.0', '213.185.117.255', 2147483647, 2147483647, 'US', 'United States'), +('213.185.118.0', '213.185.118.63', 2147483647, 2147483647, 'MW', 'Malawi'), +('213.185.118.64', '213.185.118.127', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.185.118.128', '213.185.118.143', 2147483647, 2147483647, 'NG', 'Nigeria'), +('213.185.118.144', '213.185.118.159', 2147483647, 2147483647, 'CA', 'Canada'), +('213.185.118.160', '213.185.118.255', 2147483647, 2147483647, 'NG', 'Nigeria'), +('213.185.119.0', '213.185.119.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.185.120.0', '213.185.120.255', 2147483647, 2147483647, 'FR', 'France'), +('213.185.121.0', '213.185.121.255', 2147483647, 2147483647, 'LR', 'Liberia'), +('213.185.122.0', '213.185.122.63', 2147483647, 2147483647, 'US', 'United States'), +('213.185.122.64', '213.185.122.127', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.185.122.128', '213.185.122.255', 2147483647, 2147483647, 'TZ', 'Tanzania, United Republic of'), +('213.185.123.0', '213.185.123.255', 2147483647, 2147483647, 'TG', 'Togo'), +('213.185.124.0', '213.185.124.255', 2147483647, 2147483647, 'NG', 'Nigeria'), +('213.185.125.0', '213.185.125.255', 2147483647, 2147483647, 'FR', 'France'), +('213.185.126.0', '213.185.126.255', 2147483647, 2147483647, 'TZ', 'Tanzania, United Republic of'), +('213.185.127.0', '213.185.127.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.185.128.0', '213.185.159.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.185.160.0', '213.185.191.255', 2147483647, 2147483647, 'AT', 'Austria'), +('213.185.192.0', '213.185.223.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.185.224.0', '213.185.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.186.0.0', '213.186.31.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.186.32.0', '213.186.63.255', 2147483647, 2147483647, 'FR', 'France'), +('213.186.64.0', '213.186.95.255', 2147483647, 2147483647, 'PL', 'Poland'), +('213.186.96.0', '213.186.127.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.186.128.0', '213.186.159.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('213.186.160.0', '213.186.191.255', 2147483647, 2147483647, 'JO', 'Jordan'), +('213.186.192.0', '213.186.223.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.186.224.0', '213.186.255.255', 2147483647, 2147483647, 'FI', 'Finland'), +('213.187.0.0', '213.187.31.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.187.32.0', '213.187.63.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.187.64.0', '213.187.95.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.187.96.0', '213.187.127.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('213.187.128.0', '213.187.128.255', 2147483647, 2147483647, 'NA', 'Namibia'), +('213.187.129.0', '213.187.129.131', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.187.129.132', '213.187.129.135', 2147483647, 2147483647, 'NA', 'Namibia'), +('213.187.129.136', '213.187.129.151', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.187.129.152', '213.187.129.255', 2147483647, 2147483647, 'NA', 'Namibia'), +('213.187.130.0', '213.187.130.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.187.130.64', '213.187.130.127', 2147483647, 2147483647, 'IQ', 'Iraq'), +('213.187.130.128', '213.187.130.191', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.187.130.192', '213.187.130.255', 2147483647, 2147483647, 'NA', 'Namibia'), +('213.187.131.0', '213.187.131.15', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.187.131.16', '213.187.131.63', 2147483647, 2147483647, 'GQ', 'Equatorial Guinea'), +('213.187.131.64', '213.187.131.71', 2147483647, 2147483647, 'AO', 'Angola'), +('213.187.131.72', '213.187.131.79', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.187.131.80', '213.187.131.87', 2147483647, 2147483647, 'NA', 'Namibia'), +('213.187.131.88', '213.187.131.95', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.187.131.96', '213.187.131.103', 2147483647, 2147483647, 'IQ', 'Iraq'), +('213.187.131.104', '213.187.131.111', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.187.131.112', '213.187.131.119', 2147483647, 2147483647, 'NA', 'Namibia'), +('213.187.131.120', '213.187.131.127', 2147483647, 2147483647, 'IQ', 'Iraq'), +('213.187.131.128', '213.187.131.135', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.187.131.136', '213.187.131.143', 2147483647, 2147483647, 'KE', 'Kenya'), +('213.187.131.144', '213.187.131.151', 2147483647, 2147483647, 'SO', 'Somalia'), +('213.187.131.152', '213.187.131.159', 2147483647, 2147483647, 'SC', 'Seychelles'), +('213.187.131.160', '213.187.131.167', 2147483647, 2147483647, 'SD', 'Sudan'), +('213.187.131.168', '213.187.131.175', 2147483647, 2147483647, 'DJ', 'Djibouti'), +('213.187.131.176', '213.187.131.183', 2147483647, 2147483647, 'SO', 'Somalia'), +('213.187.131.184', '213.187.131.191', 2147483647, 2147483647, 'TD', 'Chad'), +('213.187.131.192', '213.187.131.207', 2147483647, 2147483647, 'ER', 'Eritrea'), +('213.187.131.208', '213.187.131.231', 2147483647, 2147483647, 'NA', 'Namibia'), +('213.187.131.232', '213.187.131.247', 2147483647, 2147483647, 'IQ', 'Iraq'), +('213.187.131.248', '213.187.131.255', 2147483647, 2147483647, 'NA', 'Namibia'), +('213.187.132.0', '213.187.132.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.187.133.0', '213.187.133.255', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('213.187.134.0', '213.187.135.255', 2147483647, 2147483647, 'DZ', 'Algeria'), +('213.187.136.0', '213.187.136.255', 2147483647, 2147483647, 'NG', 'Nigeria'), +('213.187.137.0', '213.187.137.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.187.137.128', '213.187.137.255', 2147483647, 2147483647, 'NG', 'Nigeria'), +('213.187.138.0', '213.187.140.63', 2147483647, 2147483647, 'AO', 'Angola'), +('213.187.140.64', '213.187.140.167', 2147483647, 2147483647, 'NA', 'Namibia'), +('213.187.140.168', '213.187.140.175', 2147483647, 2147483647, 'AO', 'Angola'), +('213.187.140.176', '213.187.140.191', 2147483647, 2147483647, 'NA', 'Namibia'), +('213.187.140.192', '213.187.140.199', 2147483647, 2147483647, 'AO', 'Angola'), +('213.187.140.200', '213.187.140.215', 2147483647, 2147483647, 'NA', 'Namibia'), +('213.187.140.216', '213.187.140.223', 2147483647, 2147483647, 'AO', 'Angola'), +('213.187.140.224', '213.187.140.255', 2147483647, 2147483647, 'NA', 'Namibia'), +('213.187.141.0', '213.187.142.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.187.142.128', '213.187.142.255', 2147483647, 2147483647, 'NG', 'Nigeria'), +('213.187.143.0', '213.187.143.31', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.187.143.32', '213.187.143.63', 2147483647, 2147483647, 'IQ', 'Iraq'), +('213.187.143.64', '213.187.143.127', 2147483647, 2147483647, 'NG', 'Nigeria'), +('213.187.143.128', '213.187.143.255', 2147483647, 2147483647, 'DZ', 'Algeria'), +('213.187.144.0', '213.187.147.255', 2147483647, 2147483647, 'NA', 'Namibia'), +('213.187.148.0', '213.187.153.255', 2147483647, 2147483647, 'IQ', 'Iraq'), +('213.187.154.0', '213.187.154.255', 2147483647, 2147483647, 'DZ', 'Algeria'), +('213.187.155.0', '213.187.155.255', 2147483647, 2147483647, 'NG', 'Nigeria'), +('213.187.156.0', '213.187.156.23', 2147483647, 2147483647, 'IQ', 'Iraq'), +('213.187.156.24', '213.187.156.31', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.187.156.32', '213.187.157.255', 2147483647, 2147483647, 'IQ', 'Iraq'), +('213.187.158.0', '213.187.158.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.187.159.0', '213.187.159.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.187.160.0', '213.187.191.255', 2147483647, 2147483647, 'NO', 'Norway'), +('213.187.192.0', '213.187.223.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.187.224.0', '213.187.227.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('213.187.228.0', '213.187.247.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.187.248.0', '213.187.255.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('213.188.0.0', '213.188.31.255', 2147483647, 2147483647, 'NO', 'Norway'), +('213.188.32.0', '213.188.63.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('213.188.64.0', '213.188.95.255', 2147483647, 2147483647, 'IQ', 'Iraq'), +('213.188.96.0', '213.188.127.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.188.128.0', '213.188.134.159', 2147483647, 2147483647, 'NO', 'Norway'), +('213.188.134.160', '213.188.134.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.188.134.192', '213.188.135.111', 2147483647, 2147483647, 'NO', 'Norway'), +('213.188.135.112', '213.188.135.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.188.135.128', '213.188.159.255', 2147483647, 2147483647, 'NO', 'Norway'), +('213.188.160.0', '213.188.163.255', 2147483647, 2147483647, 'FR', 'France'), +('213.188.164.0', '213.188.165.255', 2147483647, 2147483647, 'MQ', 'Martinique'), +('213.188.166.0', '213.188.167.255', 2147483647, 2147483647, 'FR', 'France'), +('213.188.168.0', '213.188.168.255', 2147483647, 2147483647, 'MQ', 'Martinique'), +('213.188.169.0', '213.188.170.255', 2147483647, 2147483647, 'FR', 'France'), +('213.188.171.0', '213.188.171.255', 2147483647, 2147483647, 'GP', 'Guadeloupe'), +('213.188.172.0', '213.188.172.255', 2147483647, 2147483647, 'FR', 'France'), +('213.188.173.0', '213.188.173.255', 2147483647, 2147483647, 'GP', 'Guadeloupe'), +('213.188.174.0', '213.188.174.255', 2147483647, 2147483647, 'FR', 'France'), +('213.188.175.0', '213.188.175.255', 2147483647, 2147483647, 'GP', 'Guadeloupe'), +('213.188.176.0', '213.188.179.255', 2147483647, 2147483647, 'FR', 'France'), +('213.188.180.0', '213.188.180.255', 2147483647, 2147483647, 'GP', 'Guadeloupe'), +('213.188.181.0', '213.188.190.255', 2147483647, 2147483647, 'FR', 'France'), +('213.188.191.0', '213.188.191.255', 2147483647, 2147483647, 'MQ', 'Martinique'), +('213.188.192.0', '213.188.223.255', 2147483647, 2147483647, 'IT', 'Italy'), +('213.188.224.0', '213.188.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('213.189.0.0', '213.189.10.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.189.11.0', '213.189.15.255', 2147483647, 2147483647, 'US', 'United States'), +('213.189.16.0', '213.189.27.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.189.28.0', '213.189.28.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.189.29.0', '213.189.31.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.189.32.0', '213.189.63.255', 2147483647, 2147483647, 'IL', 'Israel'), +('213.189.64.0', '213.189.95.255', 2147483647, 2147483647, 'KW', 'Kuwait'), +('213.189.96.0', '213.189.127.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.189.128.0', '213.189.159.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('213.189.160.0', '213.189.191.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.189.192.0', '213.189.255.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('213.190.0.0', '213.190.31.255', 2147483647, 2147483647, 'ES', 'Spain'), +('213.190.32.0', '213.190.63.255', 2147483647, 2147483647, 'LT', 'Lithuania'), +('213.190.64.0', '213.190.95.255', 2147483647, 2147483647, 'FR', 'France'), +('213.190.96.0', '213.190.127.255', 2147483647, 2147483647, 'IS', 'Iceland'), +('213.190.128.0', '213.190.159.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('213.190.160.0', '213.190.191.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.190.192.0', '213.190.223.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('213.190.224.0', '213.191.31.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('213.191.32.0', '213.191.95.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.191.96.0', '213.191.127.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('213.191.128.0', '213.191.159.255', 2147483647, 2147483647, 'HR', 'Croatia'), +('213.191.160.0', '213.191.160.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.191.161.0', '213.191.161.127', 2147483647, 2147483647, 'ER', 'Eritrea'), +('213.191.161.128', '213.191.191.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.191.192.0', '213.191.223.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('213.191.224.0', '213.191.255.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('213.192.0.0', '213.192.63.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('213.192.64.0', '213.192.127.255', 2147483647, 2147483647, 'PL', 'Poland'), +('213.192.128.0', '213.192.191.255', 2147483647, 2147483647, 'FI', 'Finland'), +('213.192.192.0', '213.192.241.255', 2147483647, 2147483647, 'ES', 'Spain'), +('213.192.242.0', '213.192.242.15', 2147483647, 2147483647, 'FR', 'France'), +('213.192.242.16', '213.192.255.255', 2147483647, 2147483647, 'ES', 'Spain'), +('213.193.0.0', '213.193.7.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.193.8.0', '213.193.9.255', 2147483647, 2147483647, 'FR', 'France'), +('213.193.10.0', '213.193.13.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.193.14.0', '213.193.14.255', 2147483647, 2147483647, 'FR', 'France'), +('213.193.15.0', '213.193.30.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.193.31.0', '213.193.31.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.193.32.0', '213.193.33.255', 2147483647, 2147483647, 'ZM', 'Zambia'), +('213.193.34.0', '213.193.39.255', 2147483647, 2147483647, 'KE', 'Kenya'), +('213.193.40.0', '213.193.47.255', 2147483647, 2147483647, 'BW', 'Botswana'), +('213.193.48.0', '213.193.51.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('213.193.52.0', '213.193.63.255', 2147483647, 2147483647, 'KE', 'Kenya'), +('213.193.64.0', '213.193.96.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('213.193.97.0', '213.193.97.15', 2147483647, 2147483647, 'FR', 'France'), +('213.193.97.16', '213.193.116.143', 2147483647, 2147483647, 'CH', 'Switzerland'), +('213.193.116.144', '213.193.116.159', 2147483647, 2147483647, 'FR', 'France'), +('213.193.116.160', '213.193.127.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('213.193.128.0', '213.193.164.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.193.165.0', '213.193.165.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.193.166.0', '213.193.191.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.193.192.0', '213.193.193.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.193.193.64', '213.193.199.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.193.200.0', '213.193.207.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.193.208.0', '213.193.214.209', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.193.214.210', '213.193.214.217', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.193.214.218', '213.193.223.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.193.224.0', '213.193.231.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.193.232.0', '213.193.247.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.193.248.0', '213.193.249.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.193.250.0', '213.194.32.159', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.194.32.160', '213.194.32.231', 2147483647, 2147483647, 'ES', 'Spain'), +('213.194.32.232', '213.194.32.239', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.194.32.240', '213.194.32.255', 2147483647, 2147483647, 'ES', 'Spain'), +('213.194.33.0', '213.194.33.31', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.194.33.32', '213.194.33.47', 2147483647, 2147483647, 'ES', 'Spain'), +('213.194.33.48', '213.194.33.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.194.33.64', '213.194.33.79', 2147483647, 2147483647, 'ES', 'Spain'), +('213.194.33.80', '213.194.33.95', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.194.33.96', '213.194.33.167', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.194.33.168', '213.194.33.255', 2147483647, 2147483647, 'ES', 'Spain'), +('213.194.34.0', '213.194.34.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.194.34.64', '213.194.34.127', 2147483647, 2147483647, 'ES', 'Spain'), +('213.194.34.128', '213.194.34.159', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.194.34.160', '213.194.34.191', 2147483647, 2147483647, 'ES', 'Spain'), +('213.194.34.192', '213.194.34.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.194.35.0', '213.194.35.127', 2147483647, 2147483647, 'ES', 'Spain'), +('213.194.35.128', '213.194.35.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.194.36.0', '213.194.39.255', 2147483647, 2147483647, 'ES', 'Spain'), +('213.194.40.0', '213.194.40.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.194.41.0', '213.194.42.255', 2147483647, 2147483647, 'ES', 'Spain'), +('213.194.43.0', '213.194.43.255', 2147483647, 2147483647, 'IT', 'Italy'), +('213.194.44.0', '213.194.44.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.194.44.128', '213.194.45.255', 2147483647, 2147483647, 'ES', 'Spain'), +('213.194.46.0', '213.194.46.31', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.194.46.32', '213.194.46.39', 2147483647, 2147483647, 'IT', 'Italy'), +('213.194.46.40', '213.194.46.47', 2147483647, 2147483647, 'ES', 'Spain'), +('213.194.46.48', '213.194.46.63', 2147483647, 2147483647, 'IT', 'Italy'), +('213.194.46.64', '213.194.46.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.194.46.128', '213.194.46.191', 2147483647, 2147483647, 'IT', 'Italy'), +('213.194.46.192', '213.194.46.223', 2147483647, 2147483647, 'ES', 'Spain'), +('213.194.46.224', '213.194.46.255', 2147483647, 2147483647, 'IT', 'Italy'), +('213.194.47.0', '213.194.59.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.194.60.0', '213.194.61.255', 2147483647, 2147483647, 'ES', 'Spain'), +('213.194.62.0', '213.194.63.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.194.64.0', '213.194.99.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('213.194.100.0', '213.194.100.15', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.194.100.16', '213.194.127.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('213.194.128.0', '213.194.191.255', 2147483647, 2147483647, 'ES', 'Spain'), +('213.194.192.0', '213.194.255.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('213.195.0.0', '213.195.63.255', 2147483647, 2147483647, 'IR', 'Iran, Islamic Republic of'), +('213.195.64.0', '213.195.127.255', 2147483647, 2147483647, 'ES', 'Spain'), +('213.195.128.0', '213.195.191.255', 2147483647, 2147483647, 'PL', 'Poland'), +('213.195.192.0', '213.195.255.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('213.196.0.0', '213.196.63.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.196.64.0', '213.196.127.255', 2147483647, 2147483647, 'BA', 'Bosnia and Herzegovina'), +('213.196.128.0', '213.196.191.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('213.196.192.0', '213.196.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.197.0.0', '213.197.63.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.197.64.0', '213.197.127.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('213.197.128.0', '213.197.191.255', 2147483647, 2147483647, 'LT', 'Lithuania'), +('213.197.192.0', '213.197.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.198.0.0', '213.198.79.159', 2147483647, 2147483647, 'DE', 'Germany'), +('213.198.79.160', '213.198.79.167', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.198.79.168', '213.198.80.143', 2147483647, 2147483647, 'DE', 'Germany'), +('213.198.80.144', '213.198.80.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.198.80.176', '213.198.88.15', 2147483647, 2147483647, 'DE', 'Germany'), +('213.198.88.16', '213.198.88.39', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.198.88.40', '213.198.90.199', 2147483647, 2147483647, 'DE', 'Germany'), +('213.198.90.200', '213.198.90.207', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.198.90.208', '213.198.127.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.198.128.0', '213.198.191.255', 2147483647, 2147483647, 'IT', 'Italy'), +('213.198.192.0', '213.198.255.255', 2147483647, 2147483647, 'RS', 'Serbia'), +('213.199.0.0', '213.199.31.255', 2147483647, 2147483647, 'IT', 'Italy'), +('213.199.32.0', '213.199.63.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.199.64.0', '213.199.127.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.199.128.0', '213.199.143.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('213.199.144.0', '213.199.159.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.199.160.0', '213.199.191.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('213.199.192.0', '213.199.255.255', 2147483647, 2147483647, 'PL', 'Poland'), +('213.200.0.0', '213.200.31.255', 2147483647, 2147483647, 'GE', 'Georgia'), +('213.200.32.0', '213.200.63.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.200.64.0', '213.200.89.191', 2147483647, 2147483647, 'DE', 'Germany'), +('213.200.89.192', '213.200.89.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.200.90.0', '213.200.90.63', 2147483647, 2147483647, 'DE', 'Germany'), +('213.200.90.64', '213.200.90.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.200.90.80', '213.200.90.127', 2147483647, 2147483647, 'DE', 'Germany'), +('213.200.90.128', '213.200.90.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.200.90.240', '213.200.91.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.200.92.0', '213.200.92.255', 2147483647, 2147483647, 'GR', 'Greece'), +('213.200.93.0', '213.200.94.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.200.94.64', '213.200.94.127', 2147483647, 2147483647, 'US', 'United States'), +('213.200.94.128', '213.200.94.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.200.94.144', '213.200.94.167', 2147483647, 2147483647, 'IE', 'Ireland'), +('213.200.94.168', '213.200.94.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.200.94.176', '213.200.94.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('213.200.95.0', '213.200.95.151', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.200.95.152', '213.200.95.159', 2147483647, 2147483647, 'MU', 'Mauritius'), +('213.200.95.160', '213.200.96.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.200.97.0', '213.200.97.63', 2147483647, 2147483647, 'US', 'United States'), +('213.200.97.64', '213.200.97.127', 2147483647, 2147483647, 'DE', 'Germany'), +('213.200.97.128', '213.200.97.191', 2147483647, 2147483647, 'US', 'United States'), +('213.200.97.192', '213.200.98.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.200.98.32', '213.200.98.47', 2147483647, 2147483647, 'DK', 'Denmark'), +('213.200.98.48', '213.200.98.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.200.98.64', '213.200.98.127', 2147483647, 2147483647, 'DE', 'Germany'), +('213.200.98.128', '213.200.99.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.200.99.32', '213.200.99.47', 2147483647, 2147483647, 'IT', 'Italy'), +('213.200.99.48', '213.200.99.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.200.99.96', '213.200.99.159', 2147483647, 2147483647, 'IT', 'Italy'), +('213.200.99.160', '213.200.99.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.200.99.176', '213.200.99.191', 2147483647, 2147483647, 'IT', 'Italy'), +('213.200.99.192', '213.200.100.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.200.100.32', '213.200.100.63', 2147483647, 2147483647, 'FR', 'France'), +('213.200.100.64', '213.200.100.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.200.101.0', '213.200.101.255', 2147483647, 2147483647, 'IT', 'Italy'), +('213.200.102.0', '213.200.102.127', 2147483647, 2147483647, 'ES', 'Spain'), +('213.200.102.128', '213.200.102.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.200.102.144', '213.200.102.255', 2147483647, 2147483647, 'ES', 'Spain'), +('213.200.103.0', '213.200.103.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.200.103.32', '213.200.103.47', 2147483647, 2147483647, 'ES', 'Spain'), +('213.200.103.48', '213.200.103.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.200.103.128', '213.200.103.255', 2147483647, 2147483647, 'ES', 'Spain'), +('213.200.104.0', '213.200.104.127', 2147483647, 2147483647, 'FR', 'France'), +('213.200.104.128', '213.200.104.183', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.200.104.184', '213.200.104.255', 2147483647, 2147483647, 'FR', 'France'), +('213.200.105.0', '213.200.105.255', 2147483647, 2147483647, 'IT', 'Italy'), +('213.200.106.0', '213.200.106.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.200.107.0', '213.200.107.15', 2147483647, 2147483647, 'FR', 'France'), +('213.200.107.16', '213.200.107.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.200.107.96', '213.200.108.255', 2147483647, 2147483647, 'FR', 'France'), +('213.200.109.0', '213.200.109.63', 2147483647, 2147483647, 'US', 'United States'), +('213.200.109.64', '213.200.109.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.200.110.0', '213.200.110.31', 2147483647, 2147483647, 'AT', 'Austria'), +('213.200.110.32', '213.200.110.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.200.110.64', '213.200.111.255', 2147483647, 2147483647, 'FR', 'France'), +('213.200.112.0', '213.200.127.255', 2147483647, 2147483647, 'US', 'United States'), +('213.200.128.0', '213.200.191.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.200.192.0', '213.200.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('213.201.0.0', '213.201.127.255', 2147483647, 2147483647, 'ES', 'Spain'), +('213.201.128.0', '213.201.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.202.0.0', '213.202.31.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('213.202.32.0', '213.202.63.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('213.202.64.0', '213.202.127.255', 2147483647, 2147483647, 'HR', 'Croatia'), +('213.202.128.0', '213.202.191.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('213.202.192.0', '213.202.254.191', 2147483647, 2147483647, 'DE', 'Germany'), +('213.202.254.192', '213.202.254.207', 2147483647, 2147483647, 'US', 'United States'), +('213.202.254.208', '213.202.254.239', 2147483647, 2147483647, 'DE', 'Germany'), +('213.202.254.240', '213.202.254.255', 2147483647, 2147483647, 'GR', 'Greece'), +('213.202.255.0', '213.202.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.203.0.0', '213.203.63.255', 2147483647, 2147483647, 'NO', 'Norway'), +('213.203.64.0', '213.203.127.255', 2147483647, 2147483647, 'FR', 'France'), +('213.203.128.0', '213.203.191.255', 2147483647, 2147483647, 'IT', 'Italy'), +('213.203.192.0', '213.203.200.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.203.201.0', '213.203.201.63', 2147483647, 2147483647, 'CH', 'Switzerland'), +('213.203.201.64', '213.203.201.139', 2147483647, 2147483647, 'DE', 'Germany'), +('213.203.201.140', '213.203.201.143', 2147483647, 2147483647, 'CH', 'Switzerland'), +('213.203.201.144', '213.203.204.223', 2147483647, 2147483647, 'DE', 'Germany'), +('213.203.204.224', '213.203.204.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('213.203.205.0', '213.203.208.159', 2147483647, 2147483647, 'DE', 'Germany'), +('213.203.208.160', '213.203.208.191', 2147483647, 2147483647, 'CH', 'Switzerland'), +('213.203.208.192', '213.203.208.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.203.209.0', '213.203.209.95', 2147483647, 2147483647, 'CH', 'Switzerland'), +('213.203.209.96', '213.203.211.207', 2147483647, 2147483647, 'DE', 'Germany'), +('213.203.211.208', '213.203.211.223', 2147483647, 2147483647, 'CH', 'Switzerland'), +('213.203.211.224', '213.203.211.239', 2147483647, 2147483647, 'DE', 'Germany'), +('213.203.211.240', '213.203.211.247', 2147483647, 2147483647, 'CH', 'Switzerland'), +('213.203.211.248', '213.203.211.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.203.212.0', '213.203.212.31', 2147483647, 2147483647, 'CH', 'Switzerland'), +('213.203.212.32', '213.203.212.79', 2147483647, 2147483647, 'DE', 'Germany'), +('213.203.212.80', '213.203.212.111', 2147483647, 2147483647, 'CH', 'Switzerland'), +('213.203.212.112', '213.203.212.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.203.212.128', '213.203.212.159', 2147483647, 2147483647, 'DE', 'Germany'), +('213.203.212.160', '213.203.212.191', 2147483647, 2147483647, 'CH', 'Switzerland'), +('213.203.212.192', '213.203.217.23', 2147483647, 2147483647, 'DE', 'Germany'), +('213.203.217.24', '213.203.217.31', 2147483647, 2147483647, 'CH', 'Switzerland'), +('213.203.217.32', '213.203.217.55', 2147483647, 2147483647, 'DE', 'Germany'), +('213.203.217.56', '213.203.217.59', 2147483647, 2147483647, 'CH', 'Switzerland'), +('213.203.217.60', '213.203.218.95', 2147483647, 2147483647, 'DE', 'Germany'), +('213.203.218.96', '213.203.218.111', 2147483647, 2147483647, 'CH', 'Switzerland'), +('213.203.218.112', '213.203.222.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.203.223.0', '213.203.223.127', 2147483647, 2147483647, 'CH', 'Switzerland'), +('213.203.223.128', '213.203.233.95', 2147483647, 2147483647, 'DE', 'Germany'), +('213.203.233.96', '213.203.233.103', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.203.233.104', '213.203.233.111', 2147483647, 2147483647, 'CY', 'Cyprus'), +('213.203.233.112', '213.203.233.123', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.203.233.124', '213.203.233.127', 2147483647, 2147483647, 'DE', 'Germany'), +('213.203.233.128', '213.203.233.207', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.203.233.208', '213.203.233.223', 2147483647, 2147483647, 'DE', 'Germany'), +('213.203.233.224', '213.203.233.239', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.203.233.240', '213.203.233.247', 2147483647, 2147483647, 'DE', 'Germany'), +('213.203.233.248', '213.203.233.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.203.234.0', '213.203.235.15', 2147483647, 2147483647, 'DE', 'Germany'), +('213.203.235.16', '213.203.235.31', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.203.235.32', '213.203.235.63', 2147483647, 2147483647, 'DE', 'Germany'), +('213.203.235.64', '213.203.235.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.203.235.128', '213.203.235.191', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.203.235.192', '213.203.235.215', 2147483647, 2147483647, 'DE', 'Germany'), +('213.203.235.216', '213.203.235.219', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.203.235.220', '213.203.239.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.203.240.0', '213.203.241.63', 2147483647, 2147483647, 'FR', 'France'), +('213.203.241.64', '213.203.241.135', 2147483647, 2147483647, 'DE', 'Germany'), +('213.203.241.136', '213.203.241.159', 2147483647, 2147483647, 'FR', 'France'), +('213.203.241.160', '213.203.241.163', 2147483647, 2147483647, 'US', 'United States'), +('213.203.241.164', '213.203.241.191', 2147483647, 2147483647, 'DE', 'Germany'), +('213.203.241.192', '213.203.241.207', 2147483647, 2147483647, 'FR', 'France'), +('213.203.241.208', '213.203.241.223', 2147483647, 2147483647, 'US', 'United States'), +('213.203.241.224', '213.203.241.255', 2147483647, 2147483647, 'FR', 'France'), +('213.203.242.0', '213.203.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.204.0.0', '213.204.29.255', 2147483647, 2147483647, 'IT', 'Italy'), +('213.204.30.0', '213.204.30.15', 2147483647, 2147483647, 'US', 'United States'), +('213.204.30.16', '213.204.31.255', 2147483647, 2147483647, 'IT', 'Italy'), +('213.204.32.0', '213.204.33.31', 2147483647, 2147483647, 'AX', 'Aland Islands'), +('213.204.33.32', '213.204.33.39', 2147483647, 2147483647, 'FI', 'Finland'), +('213.204.33.40', '213.204.33.79', 2147483647, 2147483647, 'AX', 'Aland Islands'), +('213.204.33.80', '213.204.33.87', 2147483647, 2147483647, 'FI', 'Finland'), +('213.204.33.88', '213.204.33.167', 2147483647, 2147483647, 'AX', 'Aland Islands'), +('213.204.33.168', '213.204.33.175', 2147483647, 2147483647, 'FI', 'Finland'), +('213.204.33.176', '213.204.35.255', 2147483647, 2147483647, 'AX', 'Aland Islands'), +('213.204.36.0', '213.204.36.127', 2147483647, 2147483647, 'FI', 'Finland'), +('213.204.36.128', '213.204.39.255', 2147483647, 2147483647, 'AX', 'Aland Islands'), +('213.204.40.0', '213.204.40.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.204.41.0', '213.204.46.127', 2147483647, 2147483647, 'AX', 'Aland Islands'), +('213.204.46.128', '213.204.46.159', 2147483647, 2147483647, 'FI', 'Finland'), +('213.204.46.160', '213.204.63.255', 2147483647, 2147483647, 'AX', 'Aland Islands'), +('213.204.64.0', '213.204.127.255', 2147483647, 2147483647, 'LB', 'Lebanon'), +('213.204.128.0', '213.204.191.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.204.192.0', '213.204.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.205.0.0', '213.205.63.255', 2147483647, 2147483647, 'IT', 'Italy'), +('213.205.64.0', '213.205.95.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('213.205.96.0', '213.205.127.255', 2147483647, 2147483647, 'FR', 'France'), +('213.205.128.0', '213.206.13.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.206.14.0', '213.206.16.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.206.17.0', '213.206.17.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.206.18.0', '213.206.20.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.206.21.0', '213.206.21.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.206.22.0', '213.206.24.255', 2147483647, 2147483647, 'FR', 'France'), +('213.206.25.0', '213.206.31.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.206.32.0', '213.206.63.255', 2147483647, 2147483647, 'UZ', 'Uzbekistan'), +('213.206.64.0', '213.206.94.95', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.206.94.96', '213.206.94.111', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.206.94.112', '213.206.94.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.206.94.128', '213.206.94.143', 2147483647, 2147483647, 'DE', 'Germany'), +('213.206.94.144', '213.206.96.95', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.206.96.96', '213.206.96.127', 2147483647, 2147483647, 'DE', 'Germany'), +('213.206.96.128', '213.206.105.111', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.206.105.112', '213.206.105.127', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.206.105.128', '213.206.127.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.206.128.0', '213.206.136.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.206.136.128', '213.206.136.191', 2147483647, 2147483647, 'US', 'United States'), +('213.206.136.192', '213.206.159.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.206.160.0', '213.206.191.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.206.192.0', '213.207.31.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.207.32.0', '213.207.63.255', 2147483647, 2147483647, 'AL', 'Albania'), +('213.207.64.0', '213.207.83.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.207.84.0', '213.207.84.127', 2147483647, 2147483647, 'ES', 'Spain'), +('213.207.84.128', '213.207.127.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.207.128.0', '213.207.191.255', 2147483647, 2147483647, 'CY', 'Cyprus'), +('213.207.192.0', '213.207.255.255', 2147483647, 2147483647, 'IR', 'Iran, Islamic Republic of'), +('213.208.0.0', '213.208.1.43', 2147483647, 2147483647, 'AT', 'Austria'), +('213.208.1.44', '213.208.1.47', 2147483647, 2147483647, 'US', 'United States'), +('213.208.1.48', '213.208.3.15', 2147483647, 2147483647, 'AT', 'Austria'), +('213.208.3.16', '213.208.3.23', 2147483647, 2147483647, 'AU', 'Australia'), +('213.208.3.24', '213.208.3.175', 2147483647, 2147483647, 'AT', 'Austria'), +('213.208.3.176', '213.208.3.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.3.192', '213.208.3.199', 2147483647, 2147483647, 'TR', 'Turkey'), +('213.208.3.200', '213.208.3.207', 2147483647, 2147483647, 'CH', 'Switzerland'), +('213.208.3.208', '213.208.31.255', 2147483647, 2147483647, 'AT', 'Austria'), +('213.208.32.0', '213.208.32.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.208.33.0', '213.208.33.255', 2147483647, 2147483647, 'AM', 'Armenia'), +('213.208.34.0', '213.208.34.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.208.35.0', '213.208.37.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('213.208.38.0', '213.208.42.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.208.43.0', '213.208.43.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('213.208.44.0', '213.208.57.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.208.58.0', '213.208.58.255', 2147483647, 2147483647, 'KG', 'Kyrgyzstan'), +('213.208.59.0', '213.208.61.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.208.62.0', '213.208.62.143', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('213.208.62.144', '213.208.62.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.208.63.0', '213.208.63.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('213.208.64.0', '213.208.127.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.128.0', '213.208.129.11', 2147483647, 2147483647, 'AT', 'Austria'), +('213.208.129.12', '213.208.129.15', 2147483647, 2147483647, 'DE', 'Germany'), +('213.208.129.16', '213.208.138.87', 2147483647, 2147483647, 'AT', 'Austria'), +('213.208.138.88', '213.208.138.95', 2147483647, 2147483647, 'UY', 'Uruguay'), +('213.208.138.96', '213.208.138.135', 2147483647, 2147483647, 'AT', 'Austria'), +('213.208.138.136', '213.208.138.143', 2147483647, 2147483647, 'RO', 'Romania'), +('213.208.138.144', '213.208.159.255', 2147483647, 2147483647, 'AT', 'Austria'), +('213.208.160.0', '213.208.191.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('213.208.192.0', '213.208.192.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.192.16', '213.208.192.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.208.192.64', '213.208.192.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.192.112', '213.208.192.143', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.208.192.144', '213.208.192.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.192.160', '213.208.192.175', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.208.192.176', '213.208.192.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.192.224', '213.208.192.239', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.208.192.240', '213.208.193.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.193.16', '213.208.193.31', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.208.193.32', '213.208.193.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.193.80', '213.208.193.111', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.208.193.112', '213.208.193.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.193.144', '213.208.193.191', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.208.193.192', '213.208.193.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.193.224', '213.208.194.47', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.208.194.48', '213.208.194.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.194.64', '213.208.194.111', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.208.194.112', '213.208.194.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.194.128', '213.208.194.159', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.208.194.160', '213.208.194.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.194.176', '213.208.194.191', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.208.194.192', '213.208.195.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.195.32', '213.208.195.47', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.208.195.48', '213.208.195.251', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.195.252', '213.208.197.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.208.198.0', '213.208.199.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.199.16', '213.208.199.47', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.208.199.48', '213.208.199.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.199.96', '213.208.199.143', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.208.199.144', '213.208.199.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.199.160', '213.208.199.175', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.208.199.176', '213.208.199.207', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.199.208', '213.208.199.223', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.208.199.224', '213.208.200.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.200.96', '213.208.200.111', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.208.200.112', '213.208.200.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.200.160', '213.208.200.207', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.208.200.208', '213.208.200.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.201.0', '213.208.201.15', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.208.201.16', '213.208.201.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.201.96', '213.208.201.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.208.201.128', '213.208.201.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.201.144', '213.208.201.159', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.208.201.160', '213.208.201.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.201.176', '213.208.201.191', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.208.201.192', '213.208.202.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.202.32', '213.208.202.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.208.202.64', '213.208.202.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.202.112', '213.208.202.143', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.208.202.144', '213.208.202.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.202.176', '213.208.202.191', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.208.202.192', '213.208.202.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.202.240', '213.208.202.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.208.203.0', '213.208.203.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.203.48', '213.208.203.55', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.208.203.56', '213.208.203.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.203.64', '213.208.203.79', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.208.203.80', '213.208.203.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.203.144', '213.208.203.159', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.208.203.160', '213.208.204.71', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.204.72', '213.208.204.95', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.208.204.96', '213.208.204.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.204.128', '213.208.204.191', 2147483647, 2147483647, 'NL', 'Netherlands'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('213.208.204.192', '213.208.204.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.204.224', '213.208.204.239', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.208.204.240', '213.208.204.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.205.0', '213.208.205.15', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.208.205.16', '213.208.205.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.206.0', '213.208.206.31', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.208.206.32', '213.208.206.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.206.128', '213.208.207.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.208.208.0', '213.208.208.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.208.144', '213.208.208.159', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.208.208.160', '213.208.211.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.212.0', '213.208.212.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.208.212.64', '213.208.212.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.212.80', '213.208.212.95', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.208.212.96', '213.208.212.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.212.112', '213.208.212.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.208.212.128', '213.208.212.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.212.144', '213.208.212.159', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.208.212.160', '213.208.212.199', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.212.200', '213.208.212.207', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.208.212.208', '213.208.212.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.212.224', '213.208.212.239', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.208.212.240', '213.208.212.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.213.0', '213.208.213.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.208.213.64', '213.208.213.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.213.80', '213.208.213.95', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.208.213.96', '213.208.213.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.213.112', '213.208.213.119', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.208.213.120', '213.208.213.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.213.128', '213.208.213.151', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.208.213.152', '213.208.213.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.213.176', '213.208.213.191', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.208.213.192', '213.208.213.207', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.213.208', '213.208.214.15', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.208.214.16', '213.208.214.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.214.32', '213.208.214.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.208.214.64', '213.208.214.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.214.80', '213.208.214.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.208.214.128', '213.208.214.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.214.192', '213.208.214.239', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.208.214.240', '213.208.214.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.215.0', '213.208.215.7', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.208.215.8', '213.208.215.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.215.64', '213.208.215.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.208.215.128', '213.208.215.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.216.0', '213.208.216.15', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.208.216.16', '213.208.216.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.216.48', '213.208.216.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.208.216.64', '213.208.216.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.216.112', '213.208.216.143', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.208.216.144', '213.208.216.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.216.160', '213.208.216.175', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.208.216.176', '213.208.216.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.216.192', '213.208.216.207', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.208.216.208', '213.208.216.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.216.224', '213.208.216.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.208.217.0', '213.208.217.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.217.16', '213.208.217.31', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.208.217.32', '213.208.217.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.217.48', '213.208.217.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.208.217.128', '213.208.217.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.218.0', '213.208.224.254', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.208.224.255', '213.208.224.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.225.0', '213.208.226.119', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.208.226.120', '213.208.226.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.226.128', '213.208.226.151', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.208.226.152', '213.208.226.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.226.176', '213.208.226.183', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.208.226.184', '213.208.226.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.226.192', '213.208.226.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.208.227.0', '213.208.227.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.228.0', '213.208.229.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.208.230.0', '213.208.230.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.230.32', '213.208.230.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.208.230.64', '213.208.230.71', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.230.72', '213.208.230.95', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.208.230.96', '213.208.230.103', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.230.104', '213.208.230.111', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.208.230.112', '213.208.230.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.230.128', '213.208.230.175', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.208.230.176', '213.208.230.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.230.192', '213.208.231.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.208.232.0', '213.208.232.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.233.0', '213.208.233.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.208.234.0', '213.208.234.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.234.64', '213.208.234.79', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.208.234.80', '213.208.234.87', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.234.88', '213.208.234.159', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.208.234.160', '213.208.236.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.237.0', '213.208.237.31', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.208.237.32', '213.208.237.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.237.48', '213.208.237.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.208.237.64', '213.208.237.71', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.237.72', '213.208.237.79', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.208.237.80', '213.208.237.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.237.96', '213.208.237.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.208.237.128', '213.208.237.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.237.144', '213.208.238.15', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.208.238.16', '213.208.238.23', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.238.24', '213.208.238.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.208.238.64', '213.208.238.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.238.80', '213.208.238.87', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.208.238.88', '213.208.238.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.238.96', '213.208.238.111', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.208.238.112', '213.208.238.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.238.160', '213.208.238.175', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.208.238.176', '213.208.239.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.240.0', '213.208.240.23', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.208.240.24', '213.208.240.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.240.32', '213.208.240.55', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.208.240.56', '213.208.240.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.240.64', '213.208.240.119', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.208.240.120', '213.208.240.135', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.240.136', '213.208.240.175', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.208.240.176', '213.208.240.183', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.240.184', '213.208.241.79', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.208.241.80', '213.208.241.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.241.96', '213.208.241.103', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.208.241.104', '213.208.241.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.241.128', '213.208.241.183', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.208.241.184', '213.208.241.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.241.192', '213.208.242.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.208.242.128', '213.208.242.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.242.144', '213.208.242.191', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.208.242.192', '213.208.244.71', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.244.72', '213.208.244.159', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.208.244.160', '213.208.244.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.244.192', '213.208.244.207', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.208.244.208', '213.208.244.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.244.224', '213.208.244.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.208.245.0', '213.208.245.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.245.64', '213.208.245.71', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.208.245.72', '213.208.247.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.248.0', '213.208.248.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.208.248.64', '213.208.248.71', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.248.72', '213.208.248.87', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.208.248.88', '213.208.248.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.248.96', '213.208.248.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.208.248.128', '213.208.249.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.249.32', '213.208.249.47', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.208.249.48', '213.208.249.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.249.224', '213.208.249.231', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.208.249.232', '213.208.249.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.250.0', '213.208.250.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.208.250.128', '213.208.250.135', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.250.136', '213.208.250.143', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.208.250.144', '213.208.250.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.250.160', '213.208.253.15', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.208.253.16', '213.208.253.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.253.32', '213.208.253.167', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.208.253.168', '213.208.253.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.253.176', '213.208.253.207', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.208.253.208', '213.208.253.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.254.0', '213.208.254.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.208.254.128', '213.208.255.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.208.255.240', '213.208.255.247', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.208.255.248', '213.208.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.209.0.0', '213.209.63.255', 2147483647, 2147483647, 'IT', 'Italy'), +('213.209.64.0', '213.209.159.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.209.160.0', '213.209.168.3', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.209.168.4', '213.209.168.7', 2147483647, 2147483647, 'LY', 'Libyan Arab Jamahiriya'), +('213.209.168.8', '213.209.168.15', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.209.168.16', '213.209.168.19', 2147483647, 2147483647, 'LY', 'Libyan Arab Jamahiriya'), +('213.209.168.20', '213.209.168.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.209.169.0', '213.209.169.11', 2147483647, 2147483647, 'GE', 'Georgia'), +('213.209.169.12', '213.209.169.15', 2147483647, 2147483647, 'DE', 'Germany'), +('213.209.169.16', '213.209.169.23', 2147483647, 2147483647, 'GE', 'Georgia'), +('213.209.169.24', '213.209.169.31', 2147483647, 2147483647, 'FR', 'France'), +('213.209.169.32', '213.209.169.39', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.209.169.40', '213.209.169.43', 2147483647, 2147483647, 'DE', 'Germany'), +('213.209.169.44', '213.209.169.47', 2147483647, 2147483647, 'PL', 'Poland'), +('213.209.169.48', '213.209.169.55', 2147483647, 2147483647, 'GE', 'Georgia'), +('213.209.169.56', '213.209.169.63', 2147483647, 2147483647, 'IS', 'Iceland'), +('213.209.169.64', '213.209.169.67', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.209.169.68', '213.209.169.71', 2147483647, 2147483647, 'IT', 'Italy'), +('213.209.169.72', '213.209.169.91', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.209.169.92', '213.209.169.95', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('213.209.169.96', '213.209.169.99', 2147483647, 2147483647, 'DE', 'Germany'), +('213.209.169.100', '213.209.169.107', 2147483647, 2147483647, 'IS', 'Iceland'), +('213.209.169.108', '213.209.169.115', 2147483647, 2147483647, 'PL', 'Poland'), +('213.209.169.116', '213.209.169.119', 2147483647, 2147483647, 'DE', 'Germany'), +('213.209.169.120', '213.209.169.123', 2147483647, 2147483647, 'IQ', 'Iraq'), +('213.209.169.124', '213.209.169.127', 2147483647, 2147483647, 'DE', 'Germany'), +('213.209.169.128', '213.209.169.131', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.209.169.132', '213.209.169.135', 2147483647, 2147483647, 'DE', 'Germany'), +('213.209.169.136', '213.209.169.139', 2147483647, 2147483647, 'IT', 'Italy'), +('213.209.169.140', '213.209.169.143', 2147483647, 2147483647, 'DE', 'Germany'), +('213.209.169.144', '213.209.169.151', 2147483647, 2147483647, 'TR', 'Turkey'), +('213.209.169.152', '213.209.169.155', 2147483647, 2147483647, 'DE', 'Germany'), +('213.209.169.156', '213.209.169.159', 2147483647, 2147483647, 'IT', 'Italy'), +('213.209.169.160', '213.209.169.163', 2147483647, 2147483647, 'DE', 'Germany'), +('213.209.169.164', '213.209.169.167', 2147483647, 2147483647, 'IT', 'Italy'), +('213.209.169.168', '213.209.169.179', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.209.169.180', '213.209.169.183', 2147483647, 2147483647, 'PL', 'Poland'), +('213.209.169.184', '213.209.169.191', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.209.169.192', '213.209.169.239', 2147483647, 2147483647, 'IT', 'Italy'), +('213.209.169.240', '213.209.169.247', 2147483647, 2147483647, 'DE', 'Germany'), +('213.209.169.248', '213.209.169.255', 2147483647, 2147483647, 'PL', 'Poland'), +('213.209.170.0', '213.209.170.7', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.209.170.8', '213.209.170.11', 2147483647, 2147483647, 'FR', 'France'), +('213.209.170.12', '213.209.170.19', 2147483647, 2147483647, 'PL', 'Poland'), +('213.209.170.20', '213.209.170.23', 2147483647, 2147483647, 'DE', 'Germany'), +('213.209.170.24', '213.209.170.27', 2147483647, 2147483647, 'FR', 'France'), +('213.209.170.28', '213.209.170.31', 2147483647, 2147483647, 'DE', 'Germany'), +('213.209.170.32', '213.209.170.39', 2147483647, 2147483647, 'FR', 'France'), +('213.209.170.40', '213.209.170.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.209.170.48', '213.209.170.127', 2147483647, 2147483647, 'IT', 'Italy'), +('213.209.170.128', '213.209.170.135', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.209.170.136', '213.209.170.159', 2147483647, 2147483647, 'IS', 'Iceland'), +('213.209.170.160', '213.209.170.167', 2147483647, 2147483647, 'GE', 'Georgia'), +('213.209.170.168', '213.209.170.171', 2147483647, 2147483647, 'IT', 'Italy'), +('213.209.170.172', '213.209.170.175', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.209.170.176', '213.209.170.255', 2147483647, 2147483647, 'IT', 'Italy'), +('213.209.171.0', '213.209.171.7', 2147483647, 2147483647, 'IS', 'Iceland'), +('213.209.171.8', '213.209.171.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.209.171.16', '213.209.171.27', 2147483647, 2147483647, 'FR', 'France'), +('213.209.171.28', '213.209.171.39', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.209.171.40', '213.209.171.43', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.209.171.44', '213.209.171.71', 2147483647, 2147483647, 'IQ', 'Iraq'), +('213.209.171.72', '213.209.171.79', 2147483647, 2147483647, 'FR', 'France'), +('213.209.171.80', '213.209.171.127', 2147483647, 2147483647, 'IT', 'Italy'), +('213.209.171.128', '213.209.171.135', 2147483647, 2147483647, 'FR', 'France'), +('213.209.171.136', '213.209.171.139', 2147483647, 2147483647, 'DE', 'Germany'), +('213.209.171.140', '213.209.171.151', 2147483647, 2147483647, 'IT', 'Italy'), +('213.209.171.152', '213.209.171.155', 2147483647, 2147483647, 'FR', 'France'), +('213.209.171.156', '213.209.171.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.209.171.160', '213.209.171.175', 2147483647, 2147483647, 'DE', 'Germany'), +('213.209.171.176', '213.209.171.255', 2147483647, 2147483647, 'IT', 'Italy'), +('213.209.172.0', '213.209.172.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.209.173.0', '213.209.173.255', 2147483647, 2147483647, 'IT', 'Italy'), +('213.209.174.0', '213.209.174.127', 2147483647, 2147483647, 'AE', 'United Arab Emirates'), +('213.209.174.128', '213.209.174.131', 2147483647, 2147483647, 'DE', 'Germany'), +('213.209.174.132', '213.209.174.183', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.209.174.184', '213.209.175.127', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.209.175.128', '213.209.175.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.209.176.0', '213.209.176.255', 2147483647, 2147483647, 'FR', 'France'), +('213.209.177.0', '213.209.177.3', 2147483647, 2147483647, 'ES', 'Spain'), +('213.209.177.4', '213.209.177.7', 2147483647, 2147483647, 'FR', 'France'), +('213.209.177.8', '213.209.177.15', 2147483647, 2147483647, 'PT', 'Portugal'), +('213.209.177.16', '213.209.177.23', 2147483647, 2147483647, 'ES', 'Spain'), +('213.209.177.24', '213.209.177.31', 2147483647, 2147483647, 'FR', 'France'), +('213.209.177.32', '213.209.177.39', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.209.177.40', '213.209.177.43', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.209.177.44', '213.209.177.47', 2147483647, 2147483647, 'ES', 'Spain'), +('213.209.177.48', '213.209.177.55', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.209.177.56', '213.209.177.63', 2147483647, 2147483647, 'ES', 'Spain'), +('213.209.177.64', '213.209.177.67', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.209.177.68', '213.209.177.71', 2147483647, 2147483647, 'FR', 'France'), +('213.209.177.72', '213.209.177.79', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.209.177.80', '213.209.177.123', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.209.177.124', '213.209.178.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.209.179.0', '213.209.179.3', 2147483647, 2147483647, 'FR', 'France'), +('213.209.179.4', '213.209.179.7', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.209.179.8', '213.209.179.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.209.179.16', '213.209.179.39', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.209.179.40', '213.209.179.51', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.209.179.52', '213.209.179.55', 2147483647, 2147483647, 'ES', 'Spain'), +('213.209.179.56', '213.209.179.59', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.209.179.60', '213.209.179.63', 2147483647, 2147483647, 'FR', 'France'), +('213.209.179.64', '213.209.179.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.209.180.0', '213.209.180.255', 2147483647, 2147483647, 'IT', 'Italy'), +('213.209.181.0', '213.209.181.254', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.209.181.255', '213.209.181.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.209.182.0', '213.209.182.255', 2147483647, 2147483647, 'FR', 'France'), +('213.209.183.0', '213.209.183.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.209.184.0', '213.209.184.3', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.209.184.4', '213.209.185.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.209.186.0', '213.209.187.63', 2147483647, 2147483647, 'IT', 'Italy'), +('213.209.187.64', '213.209.187.127', 2147483647, 2147483647, 'AL', 'Albania'), +('213.209.187.128', '213.209.187.255', 2147483647, 2147483647, 'IT', 'Italy'), +('213.209.188.0', '213.209.188.63', 2147483647, 2147483647, 'DZ', 'Algeria'), +('213.209.188.64', '213.209.188.255', 2147483647, 2147483647, 'IT', 'Italy'), +('213.209.189.0', '213.209.189.3', 2147483647, 2147483647, 'ES', 'Spain'), +('213.209.189.4', '213.209.189.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.209.190.0', '213.209.190.127', 2147483647, 2147483647, 'IT', 'Italy'), +('213.209.190.128', '213.209.190.191', 2147483647, 2147483647, 'AT', 'Austria'), +('213.209.190.192', '213.209.255.255', 2147483647, 2147483647, 'IT', 'Italy'), +('213.210.0.0', '213.210.63.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.210.64.0', '213.210.127.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('213.210.128.0', '213.210.191.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('213.210.192.0', '213.210.255.255', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('213.211.0.0', '213.211.31.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('213.211.32.0', '213.211.63.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('213.211.64.0', '213.211.127.255', 2147483647, 2147483647, 'KZ', 'Kazakstan'), +('213.211.128.0', '213.211.191.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.211.192.0', '213.211.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.212.0.0', '213.212.63.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.212.64.0', '213.212.72.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.212.72.192', '213.212.72.223', 2147483647, 2147483647, 'DE', 'Germany'), +('213.212.72.224', '213.212.127.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.212.128.0', '213.212.191.255', 2147483647, 2147483647, 'IT', 'Italy'), +('213.212.192.0', '213.212.255.255', 2147483647, 2147483647, 'EG', 'Egypt'), +('213.213.0.0', '213.213.127.255', 2147483647, 2147483647, 'IT', 'Italy'), +('213.213.128.0', '213.213.159.255', 2147483647, 2147483647, 'IS', 'Iceland'), +('213.213.160.0', '213.213.191.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('213.213.192.0', '213.213.255.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.214.0.0', '213.214.31.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.214.32.0', '213.214.63.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.214.64.0', '213.214.95.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('213.214.96.0', '213.214.127.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.214.128.0', '213.214.191.255', 2147483647, 2147483647, 'FI', 'Finland'), +('213.214.192.0', '213.214.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.215.0.0', '213.215.63.255', 2147483647, 2147483647, 'FR', 'France'), +('213.215.64.0', '213.215.127.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('213.215.128.0', '213.215.190.143', 2147483647, 2147483647, 'IT', 'Italy'), +('213.215.190.144', '213.215.190.151', 2147483647, 2147483647, 'FR', 'France'), +('213.215.190.152', '213.215.196.167', 2147483647, 2147483647, 'IT', 'Italy'), +('213.215.196.168', '213.215.196.175', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.215.196.176', '213.215.242.55', 2147483647, 2147483647, 'IT', 'Italy'), +('213.215.242.56', '213.215.242.63', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.215.242.64', '213.215.255.255', 2147483647, 2147483647, 'IT', 'Italy'), +('213.216.0.0', '213.216.31.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.216.32.0', '213.216.63.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('213.216.64.0', '213.216.127.255', 2147483647, 2147483647, 'PL', 'Poland'), +('213.216.128.0', '213.216.191.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.216.192.0', '213.216.255.255', 2147483647, 2147483647, 'FI', 'Finland'), +('213.217.0.0', '213.217.31.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.217.32.0', '213.217.63.255', 2147483647, 2147483647, 'IR', 'Iran, Islamic Republic of'), +('213.217.64.0', '213.217.127.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.217.128.0', '213.217.191.255', 2147483647, 2147483647, 'IT', 'Italy'), +('213.217.192.0', '213.217.255.255', 2147483647, 2147483647, 'MT', 'Malta'), +('213.218.0.0', '213.218.31.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.218.32.0', '213.218.63.255', 2147483647, 2147483647, 'IT', 'Italy'), +('213.218.64.0', '213.218.79.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.218.80.0', '213.218.127.255', 2147483647, 2147483647, 'PL', 'Poland'), +('213.218.128.0', '213.218.159.255', 2147483647, 2147483647, 'FR', 'France'), +('213.218.160.0', '213.218.170.7', 2147483647, 2147483647, 'DE', 'Germany'), +('213.218.170.8', '213.218.170.15', 2147483647, 2147483647, 'US', 'United States'), +('213.218.170.16', '213.218.170.31', 2147483647, 2147483647, 'DE', 'Germany'), +('213.218.170.32', '213.218.170.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.218.170.64', '213.218.174.127', 2147483647, 2147483647, 'DE', 'Germany'), +('213.218.174.128', '213.218.174.159', 2147483647, 2147483647, 'AT', 'Austria'), +('213.218.174.160', '213.218.191.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.218.192.0', '213.219.63.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.219.64.0', '213.219.127.255', 2147483647, 2147483647, 'EE', 'Estonia'), +('213.219.128.0', '213.219.128.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.219.129.0', '213.219.129.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.219.130.0', '213.219.130.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.219.131.0', '213.219.131.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.219.132.0', '213.219.175.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.219.176.0', '213.219.179.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.219.180.0', '213.219.189.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.219.190.0', '213.219.191.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.219.192.0', '213.219.255.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('213.220.0.0', '213.220.63.255', 2147483647, 2147483647, 'ES', 'Spain'), +('213.220.64.0', '213.220.127.255', 2147483647, 2147483647, 'IS', 'Iceland'), +('213.220.128.0', '213.220.191.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.220.192.0', '213.220.255.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('213.221.0.0', '213.221.63.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('213.221.64.0', '213.221.116.191', 2147483647, 2147483647, 'DE', 'Germany'), +('213.221.116.192', '213.221.116.199', 2147483647, 2147483647, 'CH', 'Switzerland'), +('213.221.116.200', '213.221.127.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.221.128.0', '213.221.159.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('213.221.160.0', '213.221.191.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.221.192.0', '213.221.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('213.222.0.0', '213.222.31.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.222.32.0', '213.222.63.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('213.222.64.0', '213.222.127.255', 2147483647, 2147483647, 'FR', 'France'), +('213.222.128.0', '213.222.191.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('213.222.192.0', '213.222.255.255', 2147483647, 2147483647, 'PL', 'Poland'), +('213.223.0.0', '213.223.255.255', 2147483647, 2147483647, 'FR', 'France'), +('213.224.0.0', '213.224.255.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.225.0.0', '213.225.63.255', 2147483647, 2147483647, 'AT', 'Austria'), +('213.225.64.0', '213.225.127.255', 2147483647, 2147483647, 'NO', 'Norway'), +('213.225.128.0', '213.225.159.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.225.160.0', '213.225.191.255', 2147483647, 2147483647, 'FR', 'France'), +('213.225.192.0', '213.225.255.255', 2147483647, 2147483647, 'IT', 'Italy'), +('213.226.0.0', '213.226.63.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('213.226.64.0', '213.226.127.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.226.128.0', '213.226.139.255', 2147483647, 2147483647, 'LT', 'Lithuania'), +('213.226.140.0', '213.226.141.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('213.226.142.0', '213.226.191.255', 2147483647, 2147483647, 'LT', 'Lithuania'), +('213.226.192.0', '213.226.255.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('213.227.0.0', '213.227.63.255', 2147483647, 2147483647, 'ES', 'Spain'), +('213.227.64.0', '213.227.127.255', 2147483647, 2147483647, 'PL', 'Poland'), +('213.227.128.0', '213.227.159.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.227.160.0', '213.227.191.255', 2147483647, 2147483647, 'AT', 'Austria'), +('213.227.192.0', '213.227.255.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.228.0.0', '213.228.63.255', 2147483647, 2147483647, 'FR', 'France'), +('213.228.64.0', '213.228.127.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('213.228.128.0', '213.228.191.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('213.228.192.0', '213.228.192.255', 2147483647, 2147483647, 'ES', 'Spain'), +('213.228.193.0', '213.228.215.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.228.215.128', '213.228.215.135', 2147483647, 2147483647, 'IE', 'Ireland'), +('213.228.215.136', '213.228.226.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.228.227.0', '213.228.227.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('213.228.228.0', '213.228.239.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.228.239.48', '213.228.239.63', 2147483647, 2147483647, 'IE', 'Ireland'), +('213.228.239.64', '213.228.252.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.228.253.0', '213.228.253.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('213.228.254.0', '213.228.255.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.228.255.192', '213.228.255.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('213.229.0.0', '213.229.63.255', 2147483647, 2147483647, 'AT', 'Austria'), +('213.229.64.0', '213.229.127.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.229.128.0', '213.229.191.255', 2147483647, 2147483647, 'ES', 'Spain'), +('213.229.192.0', '213.229.255.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('213.230.0.0', '213.230.31.255', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('213.230.32.0', '213.230.63.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('213.230.64.0', '213.230.127.255', 2147483647, 2147483647, 'UZ', 'Uzbekistan'), +('213.230.128.0', '213.230.159.255', 2147483647, 2147483647, 'IT', 'Italy'), +('213.230.160.0', '213.230.191.255', 2147483647, 2147483647, 'NO', 'Norway'), +('213.230.192.0', '213.230.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.231.0.0', '213.231.63.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.231.64.0', '213.231.127.255', 2147483647, 2147483647, 'ES', 'Spain'), +('213.231.128.0', '213.231.191.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('213.231.192.0', '213.231.255.255', 2147483647, 2147483647, 'PL', 'Poland'), +('213.232.0.0', '213.232.63.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('213.232.64.0', '213.232.87.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.232.87.128', '213.232.87.255', 2147483647, 2147483647, 'SL', 'Sierra Leone'), +('213.232.88.0', '213.232.95.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.232.96.0', '213.232.96.255', 2147483647, 2147483647, 'NG', 'Nigeria'), +('213.232.97.0', '213.232.120.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.232.120.192', '213.232.120.199', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.232.120.200', '213.232.127.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.232.128.0', '213.232.191.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('213.232.192.0', '213.232.255.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('213.233.0.0', '213.233.63.255', 2147483647, 2147483647, 'IT', 'Italy'), +('213.233.64.0', '213.233.124.127', 2147483647, 2147483647, 'RO', 'Romania'), +('213.233.124.128', '213.233.124.135', 2147483647, 2147483647, 'FR', 'France'), +('213.233.124.136', '213.233.127.255', 2147483647, 2147483647, 'RO', 'Romania'), +('213.233.128.0', '213.233.159.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('213.233.160.0', '213.233.191.255', 2147483647, 2147483647, 'IR', 'Iran, Islamic Republic of'), +('213.233.192.0', '213.233.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.234.0.0', '213.234.31.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('213.234.32.0', '213.234.63.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.234.64.0', '213.234.127.255', 2147483647, 2147483647, 'NO', 'Norway'), +('213.234.128.0', '213.234.191.255', 2147483647, 2147483647, 'IT', 'Italy'), +('213.234.192.0', '213.234.255.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('213.235.0.0', '213.235.63.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.235.64.0', '213.235.191.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('213.235.192.0', '213.235.255.255', 2147483647, 2147483647, 'AT', 'Austria'), +('213.236.0.0', '213.236.31.255', 2147483647, 2147483647, 'ES', 'Spain'), +('213.236.32.0', '213.236.63.255', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('213.236.64.0', '213.236.64.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.236.64.128', '213.236.64.255', 2147483647, 2147483647, 'ES', 'Spain'), +('213.236.65.0', '213.236.65.31', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.236.65.32', '213.236.65.47', 2147483647, 2147483647, 'ES', 'Spain'), +('213.236.65.48', '213.236.65.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.236.65.64', '213.236.65.95', 2147483647, 2147483647, 'ES', 'Spain'), +('213.236.65.96', '213.236.69.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.236.70.0', '213.236.71.255', 2147483647, 2147483647, 'ES', 'Spain'), +('213.236.72.0', '213.236.80.31', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.236.80.32', '213.236.80.127', 2147483647, 2147483647, 'ES', 'Spain'), +('213.236.80.128', '213.236.80.159', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.236.80.160', '213.236.80.175', 2147483647, 2147483647, 'ES', 'Spain'), +('213.236.80.176', '213.236.80.183', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.236.80.184', '213.236.80.191', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.236.80.192', '213.236.80.199', 2147483647, 2147483647, 'ES', 'Spain'), +('213.236.80.200', '213.236.80.207', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.236.80.208', '213.236.80.223', 2147483647, 2147483647, 'DE', 'Germany'), +('213.236.80.224', '213.236.80.239', 2147483647, 2147483647, 'ES', 'Spain'), +('213.236.80.240', '213.236.81.31', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.236.81.32', '213.236.81.63', 2147483647, 2147483647, 'ES', 'Spain'), +('213.236.81.64', '213.236.81.95', 2147483647, 2147483647, 'DE', 'Germany'), +('213.236.81.96', '213.236.81.127', 2147483647, 2147483647, 'FR', 'France'), +('213.236.81.128', '213.236.81.191', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.236.81.192', '213.236.81.255', 2147483647, 2147483647, 'FR', 'France'), +('213.236.82.0', '213.236.92.255', 2147483647, 2147483647, 'ES', 'Spain'), +('213.236.93.0', '213.236.93.31', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.236.93.32', '213.236.93.63', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.236.93.64', '213.236.93.79', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.236.93.80', '213.236.93.95', 2147483647, 2147483647, 'ES', 'Spain'), +('213.236.93.96', '213.236.93.111', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.236.93.112', '213.236.93.127', 2147483647, 2147483647, 'ES', 'Spain'), +('213.236.93.128', '213.236.93.175', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.236.93.176', '213.236.93.183', 2147483647, 2147483647, 'ES', 'Spain'), +('213.236.93.184', '213.236.93.191', 2147483647, 2147483647, 'CH', 'Switzerland'), +('213.236.93.192', '213.236.93.223', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.236.93.224', '213.236.93.239', 2147483647, 2147483647, 'ES', 'Spain'), +('213.236.93.240', '213.236.93.247', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.236.93.248', '213.236.93.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.236.94.0', '213.236.95.255', 2147483647, 2147483647, 'ES', 'Spain'), +('213.236.96.0', '213.236.103.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.236.104.0', '213.236.112.31', 2147483647, 2147483647, 'ES', 'Spain'), +('213.236.112.32', '213.236.112.191', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.236.112.192', '213.236.116.31', 2147483647, 2147483647, 'ES', 'Spain'), +('213.236.116.32', '213.236.116.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.236.116.128', '213.236.116.255', 2147483647, 2147483647, 'ES', 'Spain'), +('213.236.117.0', '213.236.117.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.236.118.0', '213.236.119.255', 2147483647, 2147483647, 'ES', 'Spain'), +('213.236.120.0', '213.236.120.95', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.236.120.96', '213.236.127.255', 2147483647, 2147483647, 'ES', 'Spain'), +('213.236.128.0', '213.236.255.255', 2147483647, 2147483647, 'NO', 'Norway'), +('213.237.0.0', '213.237.51.127', 2147483647, 2147483647, 'DK', 'Denmark'), +('213.237.51.128', '213.237.51.131', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.237.51.132', '213.237.191.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('213.237.192.0', '213.237.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.238.0.0', '213.238.31.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.238.32.0', '213.238.32.159', 2147483647, 2147483647, 'DE', 'Germany'), +('213.238.32.160', '213.238.32.167', 2147483647, 2147483647, 'CH', 'Switzerland'), +('213.238.32.168', '213.238.33.3', 2147483647, 2147483647, 'DE', 'Germany'), +('213.238.33.4', '213.238.33.7', 2147483647, 2147483647, 'ES', 'Spain'), +('213.238.33.8', '213.238.46.239', 2147483647, 2147483647, 'DE', 'Germany'), +('213.238.46.240', '213.238.46.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('213.238.47.0', '213.238.63.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.238.64.0', '213.238.127.255', 2147483647, 2147483647, 'PL', 'Poland'), +('213.238.128.0', '213.238.191.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('213.238.192.0', '213.238.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.239.0.0', '213.239.63.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.239.64.0', '213.239.79.79', 2147483647, 2147483647, 'NO', 'Norway'), +('213.239.79.80', '213.239.79.95', 2147483647, 2147483647, 'DK', 'Denmark'), +('213.239.79.96', '213.239.80.167', 2147483647, 2147483647, 'NO', 'Norway'), +('213.239.80.168', '213.239.80.183', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.239.80.184', '213.239.127.255', 2147483647, 2147483647, 'NO', 'Norway'), +('213.239.128.0', '213.239.149.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.239.150.0', '213.239.150.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.239.151.0', '213.239.179.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.239.180.0', '213.239.180.255', 2147483647, 2147483647, 'GR', 'Greece'), +('213.239.181.0', '213.239.188.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.239.189.0', '213.239.189.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.239.190.0', '213.239.191.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.239.192.0', '213.239.231.207', 2147483647, 2147483647, 'DE', 'Germany'), +('213.239.231.208', '213.239.231.223', 2147483647, 2147483647, 'AT', 'Austria'), +('213.239.231.224', '213.239.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.240.0.0', '213.240.63.255', 2147483647, 2147483647, 'RS', 'Serbia'), +('213.240.64.0', '213.240.127.255', 2147483647, 2147483647, 'AT', 'Austria'), +('213.240.128.0', '213.240.164.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.240.165.0', '213.240.165.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.240.165.64', '213.240.191.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.240.192.0', '213.240.255.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('213.241.0.0', '213.241.127.255', 2147483647, 2147483647, 'PL', 'Poland'), +('213.241.128.0', '213.241.134.7', 2147483647, 2147483647, 'DE', 'Germany'), +('213.241.134.8', '213.241.134.15', 2147483647, 2147483647, 'CI', 'Cote D''Ivoire'), +('213.241.134.16', '213.241.191.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.241.192.0', '213.242.63.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('213.242.64.0', '213.242.65.255', 2147483647, 2147483647, 'IT', 'Italy'), +('213.242.66.0', '213.242.67.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('213.242.68.0', '213.242.69.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.242.70.0', '213.242.71.255', 2147483647, 2147483647, 'ES', 'Spain'), +('213.242.72.0', '213.242.73.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('213.242.74.0', '213.242.75.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.242.76.0', '213.242.76.127', 2147483647, 2147483647, 'FR', 'France'), +('213.242.76.128', '213.242.79.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.242.80.0', '213.242.80.47', 2147483647, 2147483647, 'FR', 'France'), +('213.242.80.48', '213.242.87.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.242.88.0', '213.242.88.255', 2147483647, 2147483647, 'FR', 'France'), +('213.242.89.0', '213.242.91.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.242.92.0', '213.242.93.15', 2147483647, 2147483647, 'FR', 'France'), +('213.242.93.16', '213.242.93.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.242.93.128', '213.242.93.191', 2147483647, 2147483647, 'FR', 'France'), +('213.242.93.192', '213.242.94.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.242.95.0', '213.242.96.47', 2147483647, 2147483647, 'FR', 'France'), +('213.242.96.48', '213.242.99.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.242.100.0', '213.242.100.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('213.242.101.0', '213.242.102.63', 2147483647, 2147483647, 'FR', 'France'), +('213.242.102.64', '213.242.103.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.242.104.0', '213.242.104.31', 2147483647, 2147483647, 'IT', 'Italy'), +('213.242.104.32', '213.242.104.63', 2147483647, 2147483647, 'CH', 'Switzerland'), +('213.242.104.64', '213.242.104.95', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.242.104.96', '213.242.104.127', 2147483647, 2147483647, 'ES', 'Spain'), +('213.242.104.128', '213.242.104.159', 2147483647, 2147483647, 'CH', 'Switzerland'), +('213.242.104.160', '213.242.104.191', 2147483647, 2147483647, 'IE', 'Ireland'), +('213.242.104.192', '213.242.104.223', 2147483647, 2147483647, 'DK', 'Denmark'), +('213.242.104.224', '213.242.104.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.242.105.0', '213.242.106.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('213.242.107.0', '213.242.108.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('213.242.109.0', '213.242.109.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.242.109.128', '213.242.109.255', 2147483647, 2147483647, 'ES', 'Spain'), +('213.242.110.0', '213.242.111.255', 2147483647, 2147483647, 'FR', 'France'), +('213.242.112.0', '213.242.112.127', 2147483647, 2147483647, 'PL', 'Poland'), +('213.242.112.128', '213.242.113.127', 2147483647, 2147483647, 'ES', 'Spain'), +('213.242.113.128', '213.242.113.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.242.114.0', '213.242.114.255', 2147483647, 2147483647, 'ES', 'Spain'), +('213.242.115.0', '213.242.127.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.242.128.0', '213.242.148.23', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.242.148.24', '213.242.148.31', 2147483647, 2147483647, 'NO', 'Norway'), +('213.242.148.32', '213.242.191.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.242.192.0', '213.242.255.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('213.243.0.0', '213.243.63.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('213.243.64.0', '213.243.75.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('213.243.76.0', '213.243.76.31', 2147483647, 2147483647, 'TJ', 'Tajikistan'), +('213.243.76.32', '213.243.127.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('213.243.128.0', '213.243.191.255', 2147483647, 2147483647, 'FI', 'Finland'), +('213.243.192.0', '213.243.255.255', 2147483647, 2147483647, 'IT', 'Italy'), +('213.244.0.0', '213.244.31.255', 2147483647, 2147483647, 'FR', 'France'), +('213.244.32.0', '213.244.63.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.244.64.0', '213.244.127.255', 2147483647, 2147483647, 'PS', 'Palestinian Territory, Occupied'), +('213.244.128.0', '213.244.128.95', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.244.128.96', '213.244.130.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.244.131.0', '213.244.131.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.244.131.128', '213.244.159.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.244.160.0', '213.244.161.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.244.162.0', '213.244.163.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.244.164.0', '213.244.164.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.244.165.0', '213.244.165.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.244.165.96', '213.244.165.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.244.165.128', '213.244.165.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.244.166.0', '213.244.167.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.244.168.0', '213.244.168.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.244.168.96', '213.244.168.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.244.169.0', '213.244.169.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.244.169.144', '213.244.169.159', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.244.169.160', '213.244.170.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.244.170.16', '213.244.170.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.244.170.128', '213.244.170.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.244.171.0', '213.244.171.223', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.244.171.224', '213.244.171.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.244.172.0', '213.244.174.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.244.175.0', '213.244.175.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.244.175.16', '213.244.175.47', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.244.175.48', '213.244.175.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.244.175.64', '213.244.178.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.244.179.0', '213.244.179.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.244.179.32', '213.244.179.47', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.244.179.48', '213.244.179.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.244.179.128', '213.244.179.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.244.180.0', '213.244.180.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.244.181.0', '213.244.181.143', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.244.181.144', '213.244.182.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.244.183.0', '213.244.185.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.244.185.128', '213.244.185.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.244.186.0', '213.244.188.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.244.188.64', '213.244.189.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.244.190.0', '213.244.190.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.244.191.0', '213.244.191.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.244.192.0', '213.244.255.255', 2147483647, 2147483647, 'RS', 'Serbia'), +('213.245.0.0', '213.245.255.255', 2147483647, 2147483647, 'FR', 'France'), +('213.246.0.0', '213.246.31.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('213.246.32.0', '213.246.44.159', 2147483647, 2147483647, 'FR', 'France'), +('213.246.44.160', '213.246.44.175', 2147483647, 2147483647, 'MQ', 'Martinique'), +('213.246.44.176', '213.246.46.111', 2147483647, 2147483647, 'FR', 'France'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('213.246.46.112', '213.246.46.127', 2147483647, 2147483647, 'MQ', 'Martinique'), +('213.246.46.128', '213.246.63.255', 2147483647, 2147483647, 'FR', 'France'), +('213.246.64.0', '213.246.192.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.192.64', '213.246.192.71', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.192.72', '213.246.192.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.192.80', '213.246.192.87', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.192.88', '213.246.192.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.192.96', '213.246.192.143', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.192.144', '213.246.192.151', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.192.152', '213.246.192.159', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.192.160', '213.246.192.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.192.176', '213.246.192.223', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.192.224', '213.246.192.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.192.240', '213.246.193.31', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.193.32', '213.246.193.55', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.193.56', '213.246.193.79', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.193.80', '213.246.193.87', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.193.88', '213.246.193.159', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.193.160', '213.246.193.167', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.193.168', '213.246.193.175', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.193.176', '213.246.193.183', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.193.184', '213.246.194.63', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.194.64', '213.246.194.103', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.194.104', '213.246.194.111', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.194.112', '213.246.194.119', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.194.120', '213.246.194.127', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.194.128', '213.246.194.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.195.0', '213.246.196.55', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.196.56', '213.246.196.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.196.64', '213.246.196.207', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.196.208', '213.246.196.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.196.224', '213.246.196.231', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.196.232', '213.246.196.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.196.240', '213.246.197.47', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.197.48', '213.246.197.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.197.64', '213.246.197.95', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.197.96', '213.246.197.99', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.197.100', '213.246.197.167', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.197.168', '213.246.197.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.197.176', '213.246.197.207', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.197.208', '213.246.197.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.197.224', '213.246.197.231', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.197.232', '213.246.197.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.198.0', '213.246.198.103', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.198.104', '213.246.198.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.198.128', '213.246.198.159', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.198.160', '213.246.198.183', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.198.184', '213.246.198.223', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.198.224', '213.246.198.231', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.198.232', '213.246.199.47', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.199.48', '213.246.199.55', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.199.56', '213.246.199.63', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.199.64', '213.246.199.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.199.96', '213.246.199.163', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.199.164', '213.246.199.167', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.199.168', '213.246.200.7', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.200.8', '213.246.200.11', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.200.12', '213.246.200.87', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.200.88', '213.246.200.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.200.96', '213.246.200.143', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.200.144', '213.246.200.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.200.160', '213.246.200.199', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.200.200', '213.246.200.207', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.200.208', '213.246.201.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.202.0', '213.246.202.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.202.32', '213.246.202.79', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.202.80', '213.246.202.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.202.96', '213.246.202.119', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.202.120', '213.246.202.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.202.128', '213.246.202.151', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.202.152', '213.246.202.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.202.192', '213.246.202.215', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.202.216', '213.246.202.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.202.224', '213.246.202.247', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.202.248', '213.246.202.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.203.0', '213.246.203.23', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.203.24', '213.246.203.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.203.32', '213.246.203.55', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.203.56', '213.246.203.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.203.64', '213.246.203.79', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.203.80', '213.246.203.103', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.203.104', '213.246.203.127', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.203.128', '213.246.203.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.203.144', '213.246.203.183', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.203.184', '213.246.203.199', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.203.200', '213.246.203.223', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.203.224', '213.246.203.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.203.240', '213.246.204.15', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.204.16', '213.246.204.23', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.204.24', '213.246.204.55', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.204.56', '213.246.204.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.204.64', '213.246.204.67', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.204.68', '213.246.204.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.204.80', '213.246.204.127', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.204.128', '213.246.204.135', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.204.136', '213.246.204.159', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.204.160', '213.246.204.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.204.192', '213.246.204.207', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.204.208', '213.246.204.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.204.224', '213.246.205.31', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.205.32', '213.246.205.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.205.48', '213.246.205.231', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.205.232', '213.246.205.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.205.240', '213.246.206.7', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.206.8', '213.246.206.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.206.16', '213.246.206.47', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.206.48', '213.246.206.55', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.206.56', '213.246.206.71', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.206.72', '213.246.206.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.206.96', '213.246.206.111', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.206.112', '213.246.206.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.206.192', '213.246.206.231', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.206.232', '213.246.206.247', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.206.248', '213.246.206.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.207.0', '213.246.207.7', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.207.8', '213.246.207.23', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.207.24', '213.246.207.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.207.32', '213.246.207.39', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.207.40', '213.246.207.43', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.207.44', '213.246.207.95', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.207.96', '213.246.207.99', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.207.100', '213.246.207.111', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.207.112', '213.246.207.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.207.128', '213.246.207.167', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.207.168', '213.246.207.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.207.176', '213.246.207.203', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.207.204', '213.246.207.207', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.207.208', '213.246.207.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.208.0', '213.246.208.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.208.32', '213.246.208.39', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.208.40', '213.246.208.55', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.208.56', '213.246.208.63', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.208.64', '213.246.208.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.208.96', '213.246.208.135', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.208.136', '213.246.208.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.208.144', '213.246.208.167', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.208.168', '213.246.208.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.208.176', '213.246.208.183', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.208.184', '213.246.208.187', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.208.188', '213.246.208.239', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.208.240', '213.246.208.247', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.208.248', '213.246.209.27', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.209.28', '213.246.209.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.209.32', '213.246.209.63', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.209.64', '213.246.209.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.209.80', '213.246.209.143', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.209.144', '213.246.209.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.209.160', '213.246.209.239', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.209.240', '213.246.209.247', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.209.248', '213.246.210.15', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.210.16', '213.246.210.23', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.210.24', '213.246.210.31', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.210.32', '213.246.210.39', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.210.40', '213.246.210.67', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.210.68', '213.246.210.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.210.80', '213.246.210.175', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.210.176', '213.246.210.179', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.210.180', '213.246.210.183', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.210.184', '213.246.210.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.210.192', '213.246.210.211', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.210.212', '213.246.210.219', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.210.220', '213.246.210.231', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.210.232', '213.246.210.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.210.240', '213.246.210.247', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.210.248', '213.246.210.251', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.210.252', '213.246.211.3', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.211.4', '213.246.211.7', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.211.8', '213.246.211.63', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.211.64', '213.246.211.119', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.211.120', '213.246.211.143', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.211.144', '213.246.211.215', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.211.216', '213.246.212.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.213.0', '213.246.213.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.214.0', '213.246.214.127', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.214.128', '213.246.214.135', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.214.136', '213.246.214.143', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.214.144', '213.246.214.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.214.160', '213.246.215.127', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.215.128', '213.246.215.135', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.215.136', '213.246.215.143', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.215.144', '213.246.215.155', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.215.156', '213.246.215.159', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.215.160', '213.246.215.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.216.0', '213.246.216.111', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.216.112', '213.246.216.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.246.216.128', '213.246.216.207', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.216.208', '213.246.216.215', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.216.216', '213.246.217.7', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.217.8', '213.246.217.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.217.16', '213.246.217.191', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.217.192', '213.246.217.215', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.217.216', '213.246.217.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.218.0', '213.246.218.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.218.64', '213.246.218.103', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.218.104', '213.246.218.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.218.112', '213.246.218.119', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.218.120', '213.246.218.135', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.218.136', '213.246.218.151', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.218.152', '213.246.218.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.218.160', '213.246.218.167', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.218.168', '213.246.218.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.218.176', '213.246.218.191', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.218.192', '213.246.218.211', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.218.212', '213.246.218.215', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.218.216', '213.246.218.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.219.0', '213.246.219.95', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.219.96', '213.246.219.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.219.112', '213.246.219.207', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.219.208', '213.246.220.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.220.96', '213.246.220.111', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.220.112', '213.246.220.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.220.192', '213.246.220.199', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.220.200', '213.246.220.207', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.220.208', '213.246.220.223', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.220.224', '213.246.221.23', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.221.24', '213.246.221.55', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.221.56', '213.246.221.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.221.64', '213.246.221.127', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.221.128', '213.246.221.167', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.221.168', '213.246.221.175', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.221.176', '213.246.221.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.222.0', '213.246.222.63', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.222.64', '213.246.222.71', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.222.72', '213.246.222.79', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.222.80', '213.246.222.87', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.222.88', '213.246.222.95', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.222.96', '213.246.222.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.222.112', '213.246.222.135', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.222.136', '213.246.222.167', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.222.168', '213.246.222.183', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.222.184', '213.246.222.199', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.222.200', '213.246.222.207', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.222.208', '213.246.222.247', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.222.248', '213.246.223.7', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.223.8', '213.246.223.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.223.32', '213.246.223.47', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.223.48', '213.246.223.55', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.223.56', '213.246.223.71', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.223.72', '213.246.223.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.223.80', '213.246.223.95', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.223.96', '213.246.223.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.223.112', '213.246.223.119', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.223.120', '213.246.223.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.223.144', '213.246.223.159', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.223.160', '213.246.223.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.223.192', '213.246.223.215', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.223.216', '213.246.223.231', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.223.232', '213.246.223.239', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.223.240', '213.246.224.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.224.144', '213.246.224.151', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.224.152', '213.246.224.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.224.160', '213.246.224.183', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.224.184', '213.246.224.199', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.224.200', '213.246.224.207', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.224.208', '213.246.224.231', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.224.232', '213.246.224.239', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.224.240', '213.246.225.55', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.225.56', '213.246.225.63', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.225.64', '213.246.225.87', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.225.88', '213.246.225.135', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.225.136', '213.246.225.167', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.225.168', '213.246.225.191', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.225.192', '213.246.225.199', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.225.200', '213.246.225.207', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.225.208', '213.246.226.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.226.64', '213.246.226.71', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.226.72', '213.246.226.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.226.128', '213.246.226.191', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.226.192', '213.246.226.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.227.0', '213.246.227.7', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.227.8', '213.246.227.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.227.32', '213.246.227.39', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.227.40', '213.246.227.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.227.80', '213.246.227.87', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.227.88', '213.246.227.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.227.96', '213.246.227.119', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.227.120', '213.246.227.151', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.227.152', '213.246.227.167', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.227.168', '213.246.227.183', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.227.184', '213.246.227.207', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.227.208', '213.246.227.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.227.240', '213.246.227.247', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.227.248', '213.246.228.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.228.64', '213.246.228.215', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.228.216', '213.246.228.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.228.224', '213.246.228.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.229.0', '213.246.229.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.230.0', '213.246.230.15', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.230.16', '213.246.230.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.231.0', '213.246.231.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.232.0', '213.246.233.7', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.233.8', '213.246.233.15', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.233.16', '213.246.233.23', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.233.24', '213.246.233.87', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.233.88', '213.246.235.87', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.235.88', '213.246.235.103', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.235.104', '213.246.235.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.235.160', '213.246.235.167', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.235.168', '213.246.235.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.235.192', '213.246.236.7', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.236.8', '213.246.236.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.236.16', '213.246.236.31', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.236.32', '213.246.236.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.236.64', '213.246.236.127', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.236.128', '213.246.237.23', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.237.24', '213.246.237.31', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.237.32', '213.246.237.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.237.48', '213.246.237.71', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.237.72', '213.246.237.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.237.96', '213.246.237.111', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.237.112', '213.246.237.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.237.144', '213.246.237.167', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.237.168', '213.246.237.215', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.237.216', '213.246.237.239', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.237.240', '213.246.238.7', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.238.8', '213.246.238.23', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.238.24', '213.246.238.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.238.32', '213.246.238.63', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.238.64', '213.246.238.103', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.238.104', '213.246.238.111', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.238.112', '213.246.238.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.238.128', '213.246.238.143', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.238.144', '213.246.238.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.238.160', '213.246.238.167', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.238.168', '213.246.238.183', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.238.184', '213.246.238.191', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.238.192', '213.246.238.199', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.238.200', '213.246.238.223', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.238.224', '213.246.238.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.238.240', '213.246.238.247', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.238.248', '213.246.238.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.239.0', '213.246.239.7', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.239.8', '213.246.239.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.239.16', '213.246.239.23', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.239.24', '213.246.239.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.239.32', '213.246.239.47', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.239.48', '213.246.239.55', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.239.56', '213.246.239.63', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.239.64', '213.246.239.71', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.239.72', '213.246.239.87', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.239.88', '213.246.239.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.239.96', '213.246.239.103', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.239.104', '213.246.239.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.239.112', '213.246.239.127', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.239.128', '213.246.239.231', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.239.232', '213.246.239.239', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.239.240', '213.246.239.247', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.239.248', '213.246.241.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.242.0', '213.246.244.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.244.128', '213.246.245.15', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.245.16', '213.246.245.23', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.245.24', '213.246.245.31', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.245.32', '213.246.245.39', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.245.40', '213.246.245.47', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.245.48', '213.246.245.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.245.96', '213.246.245.103', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.245.104', '213.246.245.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.245.112', '213.246.245.135', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.245.136', '213.246.245.151', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.245.152', '213.246.245.199', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.245.200', '213.246.245.207', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.245.208', '213.246.245.215', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.245.216', '213.246.245.247', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.245.248', '213.246.245.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.246.0', '213.246.247.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.247.16', '213.246.247.147', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.247.148', '213.246.247.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.247.160', '213.246.247.191', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.247.192', '213.246.247.199', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.247.200', '213.246.247.207', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.247.208', '213.246.247.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.247.224', '213.246.247.231', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.247.232', '213.246.248.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.249.0', '213.246.249.111', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.249.112', '213.246.249.135', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.249.136', '213.246.249.159', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.249.160', '213.246.249.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.249.176', '213.246.249.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.250.0', '213.246.251.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.251.64', '213.246.251.71', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.251.72', '213.246.252.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.252.64', '213.246.252.79', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.252.80', '213.246.253.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.253.64', '213.246.253.79', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.253.80', '213.246.253.87', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.253.88', '213.246.253.95', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.253.96', '213.246.254.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.254.128', '213.246.254.167', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.254.168', '213.246.254.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.254.176', '213.246.254.231', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.254.232', '213.246.255.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.255.16', '213.246.255.127', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.255.128', '213.246.255.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.255.144', '213.246.255.151', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.255.152', '213.246.255.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.255.176', '213.246.255.183', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.255.184', '213.246.255.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.246.255.192', '213.246.255.247', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.246.255.248', '213.246.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.247.0.0', '213.247.31.255', 2147483647, 2147483647, 'EG', 'Egypt'), +('213.247.32.0', '213.247.40.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.247.41.0', '213.247.41.63', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.247.41.64', '213.247.41.223', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.247.41.224', '213.247.41.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.247.42.0', '213.247.49.103', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.247.49.104', '213.247.49.111', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.247.49.112', '213.247.49.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.247.49.128', '213.247.49.159', 2147483647, 2147483647, 'ES', 'Spain'), +('213.247.49.160', '213.247.49.223', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.247.49.224', '213.247.49.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('213.247.50.0', '213.247.50.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.247.50.128', '213.247.50.255', 2147483647, 2147483647, 'US', 'United States'), +('213.247.51.0', '213.247.127.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.247.128.0', '213.248.63.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('213.248.64.0', '213.248.105.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.248.106.0', '213.248.106.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.248.107.0', '213.248.107.255', 2147483647, 2147483647, 'FR', 'France'), +('213.248.108.0', '213.248.108.103', 2147483647, 2147483647, 'HU', 'Hungary'), +('213.248.108.104', '213.248.108.127', 2147483647, 2147483647, 'EU', 'Europe'), +('213.248.108.128', '213.248.109.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.248.110.0', '213.248.110.15', 2147483647, 2147483647, 'FR', 'France'), +('213.248.110.16', '213.248.110.63', 2147483647, 2147483647, 'EU', 'Europe'), +('213.248.110.64', '213.248.111.255', 2147483647, 2147483647, 'FR', 'France'), +('213.248.112.0', '213.248.112.31', 2147483647, 2147483647, 'SE', 'Sweden'), +('213.248.112.32', '213.248.112.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.248.112.64', '213.248.112.127', 2147483647, 2147483647, 'EU', 'Europe'), +('213.248.112.128', '213.248.112.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.248.113.0', '213.248.113.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.248.114.0', '213.248.114.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.248.114.64', '213.248.114.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.248.115.0', '213.248.116.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.248.117.0', '213.248.117.255', 2147483647, 2147483647, 'EU', 'Europe'), +('213.248.118.0', '213.248.119.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.248.120.0', '213.248.121.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.248.122.0', '213.248.123.255', 2147483647, 2147483647, 'US', 'United States'), +('213.248.124.0', '213.248.127.255', 2147483647, 2147483647, 'FR', 'France'), +('213.248.128.0', '213.248.191.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('213.248.192.0', '213.248.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.249.0.0', '213.249.63.255', 2147483647, 2147483647, 'GR', 'Greece'), +('213.249.64.0', '213.249.95.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.249.96.0', '213.249.96.127', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.249.96.128', '213.249.96.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.249.97.0', '213.249.97.63', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.249.97.64', '213.249.97.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.249.97.128', '213.249.97.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.249.98.0', '213.249.98.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.249.98.128', '213.249.100.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.249.101.0', '213.249.102.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.249.102.32', '213.249.102.47', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.249.102.48', '213.249.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.250.0.0', '213.250.63.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('213.250.64.0', '213.250.81.119', 2147483647, 2147483647, 'FI', 'Finland'), +('213.250.81.120', '213.250.81.127', 2147483647, 2147483647, 'AX', 'Aland Islands'), +('213.250.81.128', '213.250.127.255', 2147483647, 2147483647, 'FI', 'Finland'), +('213.250.128.0', '213.250.157.31', 2147483647, 2147483647, 'ES', 'Spain'), +('213.250.157.32', '213.250.157.47', 2147483647, 2147483647, 'CA', 'Canada'), +('213.250.157.48', '213.250.191.255', 2147483647, 2147483647, 'ES', 'Spain'), +('213.250.192.0', '213.250.255.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('213.251.0.0', '213.251.0.79', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.251.0.80', '213.251.0.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.251.0.96', '213.251.0.111', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.251.0.112', '213.251.0.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.251.0.160', '213.251.0.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.251.1.0', '213.251.1.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.251.1.64', '213.251.1.79', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.251.1.80', '213.251.1.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.251.1.112', '213.251.1.131', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.251.1.132', '213.251.1.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.251.1.160', '213.251.1.191', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.251.1.192', '213.251.1.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.251.2.0', '213.251.2.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.251.3.0', '213.251.3.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.251.3.128', '213.251.3.191', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.251.3.192', '213.251.3.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.251.3.224', '213.251.3.231', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.251.3.232', '213.251.3.247', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.251.3.248', '213.251.3.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.251.4.0', '213.251.63.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.251.64.0', '213.251.127.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.251.128.0', '213.251.191.255', 2147483647, 2147483647, 'FR', 'France'), +('213.251.192.0', '213.251.255.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('213.252.0.0', '213.252.63.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.252.64.0', '213.252.127.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('213.252.128.0', '213.252.191.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.252.192.0', '213.252.198.255', 2147483647, 2147483647, 'LT', 'Lithuania'), +('213.252.199.0', '213.252.199.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('213.252.200.0', '213.252.255.255', 2147483647, 2147483647, 'LT', 'Lithuania'), +('213.253.0.0', '213.253.1.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.253.2.0', '213.253.2.255', 2147483647, 2147483647, 'FR', 'France'), +('213.253.3.0', '213.253.3.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.253.4.0', '213.253.4.255', 2147483647, 2147483647, 'IT', 'Italy'), +('213.253.5.0', '213.253.5.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.253.6.0', '213.253.30.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.253.31.0', '213.253.31.255', 2147483647, 2147483647, 'ES', 'Spain'), +('213.253.32.0', '213.253.39.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.253.40.0', '213.253.40.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('213.253.41.0', '213.253.63.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.253.64.0', '213.253.91.231', 2147483647, 2147483647, 'SI', 'Slovenia'), +('213.253.91.232', '213.253.91.239', 2147483647, 2147483647, 'HR', 'Croatia'), +('213.253.91.240', '213.253.103.63', 2147483647, 2147483647, 'SI', 'Slovenia'), +('213.253.103.64', '213.253.103.79', 2147483647, 2147483647, 'HR', 'Croatia'), +('213.253.103.80', '213.253.110.23', 2147483647, 2147483647, 'SI', 'Slovenia'), +('213.253.110.24', '213.253.110.31', 2147483647, 2147483647, 'HR', 'Croatia'), +('213.253.110.32', '213.253.110.39', 2147483647, 2147483647, 'SI', 'Slovenia'), +('213.253.110.40', '213.253.110.47', 2147483647, 2147483647, 'HR', 'Croatia'), +('213.253.110.48', '213.253.111.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('213.253.112.0', '213.253.112.127', 2147483647, 2147483647, 'HR', 'Croatia'), +('213.253.112.128', '213.253.112.135', 2147483647, 2147483647, 'SI', 'Slovenia'), +('213.253.112.136', '213.253.112.143', 2147483647, 2147483647, 'HR', 'Croatia'), +('213.253.112.144', '213.253.112.159', 2147483647, 2147483647, 'SI', 'Slovenia'), +('213.253.112.160', '213.253.113.135', 2147483647, 2147483647, 'HR', 'Croatia'), +('213.253.113.136', '213.253.113.143', 2147483647, 2147483647, 'SI', 'Slovenia'), +('213.253.113.144', '213.253.114.159', 2147483647, 2147483647, 'HR', 'Croatia'), +('213.253.114.160', '213.253.114.191', 2147483647, 2147483647, 'AE', 'United Arab Emirates'), +('213.253.114.192', '213.253.114.223', 2147483647, 2147483647, 'SI', 'Slovenia'), +('213.253.114.224', '213.253.114.231', 2147483647, 2147483647, 'HR', 'Croatia'), +('213.253.114.232', '213.253.114.239', 2147483647, 2147483647, 'SI', 'Slovenia'), +('213.253.114.240', '213.253.115.255', 2147483647, 2147483647, 'HR', 'Croatia'), +('213.253.116.0', '213.253.116.31', 2147483647, 2147483647, 'RS', 'Serbia'), +('213.253.116.32', '213.253.116.127', 2147483647, 2147483647, 'SI', 'Slovenia'), +('213.253.116.128', '213.253.116.255', 2147483647, 2147483647, 'RS', 'Serbia'), +('213.253.117.0', '213.253.117.63', 2147483647, 2147483647, 'SI', 'Slovenia'), +('213.253.117.64', '213.253.117.111', 2147483647, 2147483647, 'RS', 'Serbia'), +('213.253.117.112', '213.253.117.127', 2147483647, 2147483647, 'SI', 'Slovenia'), +('213.253.117.128', '213.253.117.159', 2147483647, 2147483647, 'RS', 'Serbia'), +('213.253.117.160', '213.253.117.175', 2147483647, 2147483647, 'SI', 'Slovenia'), +('213.253.117.176', '213.253.117.191', 2147483647, 2147483647, 'RS', 'Serbia'), +('213.253.117.192', '213.253.117.207', 2147483647, 2147483647, 'SI', 'Slovenia'), +('213.253.117.208', '213.253.117.215', 2147483647, 2147483647, 'RS', 'Serbia'), +('213.253.117.216', '213.253.117.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('213.253.118.0', '213.253.118.15', 2147483647, 2147483647, 'RS', 'Serbia'), +('213.253.118.16', '213.253.118.23', 2147483647, 2147483647, 'SI', 'Slovenia'), +('213.253.118.24', '213.253.118.127', 2147483647, 2147483647, 'RS', 'Serbia'), +('213.253.118.128', '213.253.118.191', 2147483647, 2147483647, 'SI', 'Slovenia'), +('213.253.118.192', '213.253.120.7', 2147483647, 2147483647, 'RS', 'Serbia'), +('213.253.120.8', '213.253.120.63', 2147483647, 2147483647, 'SI', 'Slovenia'), +('213.253.120.64', '213.253.120.103', 2147483647, 2147483647, 'RS', 'Serbia'), +('213.253.120.104', '213.253.120.111', 2147483647, 2147483647, 'SI', 'Slovenia'), +('213.253.120.112', '213.253.120.143', 2147483647, 2147483647, 'RS', 'Serbia'), +('213.253.120.144', '213.253.120.159', 2147483647, 2147483647, 'SI', 'Slovenia'), +('213.253.120.160', '213.253.120.167', 2147483647, 2147483647, 'RS', 'Serbia'), +('213.253.120.168', '213.253.120.191', 2147483647, 2147483647, 'SI', 'Slovenia'), +('213.253.120.192', '213.253.120.199', 2147483647, 2147483647, 'RS', 'Serbia'), +('213.253.120.200', '213.253.120.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('213.253.121.0', '213.253.123.255', 2147483647, 2147483647, 'RS', 'Serbia'), +('213.253.124.0', '213.253.127.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('213.253.128.0', '213.253.191.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.253.192.0', '213.253.199.55', 2147483647, 2147483647, 'HU', 'Hungary'), +('213.253.199.56', '213.253.199.63', 2147483647, 2147483647, 'MK', 'Macedonia'), +('213.253.199.64', '213.253.255.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('213.254.0.0', '213.254.31.255', 2147483647, 2147483647, 'IT', 'Italy'), +('213.254.32.0', '213.254.63.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.254.64.0', '213.254.127.255', 2147483647, 2147483647, 'ES', 'Spain'), +('213.254.128.0', '213.254.159.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('213.254.160.0', '213.254.191.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.254.192.0', '213.254.199.255', 2147483647, 2147483647, 'US', 'United States'), +('213.254.200.0', '213.254.200.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.254.201.0', '213.254.201.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.254.202.0', '213.254.202.255', 2147483647, 2147483647, 'GR', 'Greece'), +('213.254.203.0', '213.254.203.63', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.254.203.64', '213.254.203.95', 2147483647, 2147483647, 'FR', 'France'), +('213.254.203.96', '213.254.203.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.254.203.160', '213.254.203.191', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.254.203.192', '213.254.204.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.254.204.64', '213.254.204.127', 2147483647, 2147483647, 'FR', 'France'), +('213.254.204.128', '213.254.204.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.254.204.192', '213.254.204.255', 2147483647, 2147483647, 'US', 'United States'), +('213.254.205.0', '213.254.205.255', 2147483647, 2147483647, 'FR', 'France'), +('213.254.206.0', '213.254.206.95', 2147483647, 2147483647, 'US', 'United States'), +('213.254.206.96', '213.254.207.31', 2147483647, 2147483647, 'FR', 'France'), +('213.254.207.32', '213.254.207.63', 2147483647, 2147483647, 'AU', 'Australia'), +('213.254.207.64', '213.254.207.127', 2147483647, 2147483647, 'FR', 'France'), +('213.254.207.128', '213.254.207.143', 2147483647, 2147483647, 'DE', 'Germany'), +('213.254.207.144', '213.254.207.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.254.207.160', '213.254.207.255', 2147483647, 2147483647, 'FR', 'France'), +('213.254.208.0', '213.254.209.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.254.210.0', '213.254.210.127', 2147483647, 2147483647, 'DE', 'Germany'), +('213.254.210.128', '213.254.210.143', 2147483647, 2147483647, 'IT', 'Italy'), +('213.254.210.144', '213.254.210.151', 2147483647, 2147483647, 'DE', 'Germany'), +('213.254.210.152', '213.254.210.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.254.210.160', '213.254.210.175', 2147483647, 2147483647, 'IT', 'Italy'), +('213.254.210.176', '213.254.210.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.254.211.0', '213.254.211.63', 2147483647, 2147483647, 'US', 'United States'), +('213.254.211.64', '213.254.211.127', 2147483647, 2147483647, 'IT', 'Italy'), +('213.254.211.128', '213.254.211.255', 2147483647, 2147483647, 'US', 'United States'), +('213.254.212.0', '213.254.212.63', 2147483647, 2147483647, 'IT', 'Italy'), +('213.254.212.64', '213.254.212.127', 2147483647, 2147483647, 'US', 'United States'), +('213.254.212.128', '213.254.212.255', 2147483647, 2147483647, 'IT', 'Italy'), +('213.254.213.0', '213.254.215.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.254.216.0', '213.254.217.255', 2147483647, 2147483647, 'US', 'United States'), +('213.254.218.0', '213.254.219.255', 2147483647, 2147483647, 'ES', 'Spain'), +('213.254.220.0', '213.254.221.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('213.254.222.0', '213.254.223.255', 2147483647, 2147483647, 'GR', 'Greece'), +('213.254.224.0', '213.254.224.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('213.254.225.0', '213.254.225.255', 2147483647, 2147483647, 'GR', 'Greece'), +('213.254.226.0', '213.254.226.255', 2147483647, 2147483647, 'IT', 'Italy'), +('213.254.227.0', '213.254.227.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.254.228.0', '213.254.228.31', 2147483647, 2147483647, 'ES', 'Spain'), +('213.254.228.32', '213.254.228.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.254.228.64', '213.254.228.127', 2147483647, 2147483647, 'US', 'United States'), +('213.254.228.128', '213.254.228.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('213.254.229.0', '213.254.229.63', 2147483647, 2147483647, 'US', 'United States'), +('213.254.229.64', '213.254.229.127', 2147483647, 2147483647, 'ES', 'Spain'), +('213.254.229.128', '213.254.229.191', 2147483647, 2147483647, 'US', 'United States'), +('213.254.229.192', '213.254.231.255', 2147483647, 2147483647, 'ES', 'Spain'), +('213.254.232.0', '213.254.235.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.254.235.64', '213.254.235.95', 2147483647, 2147483647, 'US', 'United States'), +('213.254.235.96', '213.254.237.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.254.238.0', '213.254.238.7', 2147483647, 2147483647, 'DE', 'Germany'), +('213.254.238.8', '213.254.238.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.254.238.16', '213.254.238.31', 2147483647, 2147483647, 'DE', 'Germany'), +('213.254.238.32', '213.254.238.47', 2147483647, 2147483647, 'IL', 'Israel'), +('213.254.238.48', '213.254.238.55', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('213.254.238.56', '213.254.238.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.254.238.64', '213.254.238.127', 2147483647, 2147483647, 'US', 'United States'), +('213.254.238.128', '213.254.238.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.254.238.192', '213.254.238.199', 2147483647, 2147483647, 'DE', 'Germany'), +('213.254.238.200', '213.254.238.223', 2147483647, 2147483647, 'GB', 'United Kingdom'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('213.254.238.224', '213.254.238.255', 2147483647, 2147483647, 'US', 'United States'), +('213.254.239.0', '213.254.239.95', 2147483647, 2147483647, 'DE', 'Germany'), +('213.254.239.96', '213.254.239.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.254.240.0', '213.254.241.31', 2147483647, 2147483647, 'ES', 'Spain'), +('213.254.241.32', '213.254.241.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.254.241.64', '213.254.241.127', 2147483647, 2147483647, 'ES', 'Spain'), +('213.254.241.128', '213.254.241.199', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.254.241.200', '213.254.241.223', 2147483647, 2147483647, 'ES', 'Spain'), +('213.254.241.224', '213.254.241.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.254.242.0', '213.254.242.255', 2147483647, 2147483647, 'ES', 'Spain'), +('213.254.243.0', '213.254.245.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.254.245.64', '213.254.245.127', 2147483647, 2147483647, 'US', 'United States'), +('213.254.245.128', '213.254.246.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.254.247.0', '213.254.247.255', 2147483647, 2147483647, 'IT', 'Italy'), +('213.254.248.0', '213.254.248.63', 2147483647, 2147483647, 'US', 'United States'), +('213.254.248.64', '213.254.248.79', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.254.248.80', '213.254.248.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.254.248.96', '213.254.248.127', 2147483647, 2147483647, 'BE', 'Belgium'), +('213.254.248.128', '213.254.248.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.254.249.0', '213.254.249.255', 2147483647, 2147483647, 'FR', 'France'), +('213.254.250.0', '213.254.253.255', 2147483647, 2147483647, 'DE', 'Germany'), +('213.254.254.0', '213.254.254.211', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.254.254.212', '213.254.254.215', 2147483647, 2147483647, 'DE', 'Germany'), +('213.254.254.216', '213.254.255.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.254.255.32', '213.254.255.63', 2147483647, 2147483647, 'US', 'United States'), +('213.254.255.64', '213.254.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.255.0.0', '213.255.127.255', 2147483647, 2147483647, 'IT', 'Italy'), +('213.255.128.0', '213.255.159.255', 2147483647, 2147483647, 'EG', 'Egypt'), +('213.255.160.0', '213.255.191.255', 2147483647, 2147483647, 'FI', 'Finland'), +('213.255.192.0', '213.255.192.63', 2147483647, 2147483647, 'CG', 'Congo'), +('213.255.192.64', '213.255.192.95', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.255.192.96', '213.255.192.111', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.255.192.112', '213.255.192.127', 2147483647, 2147483647, 'NG', 'Nigeria'), +('213.255.192.128', '213.255.192.191', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.255.192.192', '213.255.192.207', 2147483647, 2147483647, 'UG', 'Uganda'), +('213.255.192.208', '213.255.192.215', 2147483647, 2147483647, 'KE', 'Kenya'), +('213.255.192.216', '213.255.192.223', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.255.192.224', '213.255.192.231', 2147483647, 2147483647, 'ZW', 'Zimbabwe'), +('213.255.192.232', '213.255.192.239', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.255.192.240', '213.255.192.247', 2147483647, 2147483647, 'MW', 'Malawi'), +('213.255.192.248', '213.255.192.255', 2147483647, 2147483647, 'AO', 'Angola'), +('213.255.193.0', '213.255.193.55', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.255.193.56', '213.255.193.63', 2147483647, 2147483647, 'NG', 'Nigeria'), +('213.255.193.64', '213.255.193.71', 2147483647, 2147483647, 'ZM', 'Zambia'), +('213.255.193.72', '213.255.193.79', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.255.193.80', '213.255.193.87', 2147483647, 2147483647, 'NG', 'Nigeria'), +('213.255.193.88', '213.255.193.135', 2147483647, 2147483647, 'IQ', 'Iraq'), +('213.255.193.136', '213.255.193.151', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.255.193.152', '213.255.193.191', 2147483647, 2147483647, 'IQ', 'Iraq'), +('213.255.193.192', '213.255.193.199', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.255.193.200', '213.255.193.207', 2147483647, 2147483647, 'IQ', 'Iraq'), +('213.255.193.208', '213.255.193.215', 2147483647, 2147483647, 'SO', 'Somalia'), +('213.255.193.216', '213.255.193.223', 2147483647, 2147483647, 'IQ', 'Iraq'), +('213.255.193.224', '213.255.193.231', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.255.193.232', '213.255.193.247', 2147483647, 2147483647, 'IQ', 'Iraq'), +('213.255.193.248', '213.255.193.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.255.194.0', '213.255.194.255', 2147483647, 2147483647, 'CG', 'Congo'), +('213.255.195.0', '213.255.195.127', 2147483647, 2147483647, 'NG', 'Nigeria'), +('213.255.195.128', '213.255.195.159', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.255.195.160', '213.255.195.167', 2147483647, 2147483647, 'RW', 'Rwanda'), +('213.255.195.168', '213.255.195.175', 2147483647, 2147483647, 'ZA', 'South Africa'), +('213.255.195.176', '213.255.195.191', 2147483647, 2147483647, 'ZW', 'Zimbabwe'), +('213.255.195.192', '213.255.195.199', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.255.195.200', '213.255.195.207', 2147483647, 2147483647, 'ZM', 'Zambia'), +('213.255.195.208', '213.255.195.223', 2147483647, 2147483647, 'KE', 'Kenya'), +('213.255.195.224', '213.255.195.231', 2147483647, 2147483647, 'ZW', 'Zimbabwe'), +('213.255.195.232', '213.255.195.239', 2147483647, 2147483647, 'ET', 'Ethiopia'), +('213.255.195.240', '213.255.195.247', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.255.195.248', '213.255.196.47', 2147483647, 2147483647, 'NG', 'Nigeria'), +('213.255.196.48', '213.255.196.63', 2147483647, 2147483647, 'BI', 'Burundi'), +('213.255.196.64', '213.255.196.87', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.255.196.88', '213.255.196.95', 2147483647, 2147483647, 'GH', 'Ghana'), +('213.255.196.96', '213.255.196.127', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.255.196.128', '213.255.196.135', 2147483647, 2147483647, 'NG', 'Nigeria'), +('213.255.196.136', '213.255.196.143', 2147483647, 2147483647, 'UG', 'Uganda'), +('213.255.196.144', '213.255.196.159', 2147483647, 2147483647, 'TZ', 'Tanzania, United Republic of'), +('213.255.196.160', '213.255.196.191', 2147483647, 2147483647, 'ZW', 'Zimbabwe'), +('213.255.196.192', '213.255.196.199', 2147483647, 2147483647, 'CD', 'Congo, The Democratic Republic of the'), +('213.255.196.200', '213.255.196.207', 2147483647, 2147483647, 'TZ', 'Tanzania, United Republic of'), +('213.255.196.208', '213.255.196.215', 2147483647, 2147483647, 'MW', 'Malawi'), +('213.255.196.216', '213.255.196.223', 2147483647, 2147483647, 'GH', 'Ghana'), +('213.255.196.224', '213.255.196.239', 2147483647, 2147483647, 'NG', 'Nigeria'), +('213.255.196.240', '213.255.196.247', 2147483647, 2147483647, 'ZW', 'Zimbabwe'), +('213.255.196.248', '213.255.196.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.255.197.0', '213.255.197.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.255.198.0', '213.255.198.127', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.255.198.128', '213.255.198.135', 2147483647, 2147483647, 'NG', 'Nigeria'), +('213.255.198.136', '213.255.198.143', 2147483647, 2147483647, 'AO', 'Angola'), +('213.255.198.144', '213.255.198.151', 2147483647, 2147483647, 'NG', 'Nigeria'), +('213.255.198.152', '213.255.198.159', 2147483647, 2147483647, 'CM', 'Cameroon'), +('213.255.198.160', '213.255.198.167', 2147483647, 2147483647, 'SO', 'Somalia'), +('213.255.198.168', '213.255.198.175', 2147483647, 2147483647, 'AM', 'Armenia'), +('213.255.198.176', '213.255.198.183', 2147483647, 2147483647, 'UG', 'Uganda'), +('213.255.198.184', '213.255.198.191', 2147483647, 2147483647, 'KE', 'Kenya'), +('213.255.198.192', '213.255.198.199', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.255.198.200', '213.255.198.207', 2147483647, 2147483647, 'NG', 'Nigeria'), +('213.255.198.208', '213.255.198.215', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.255.198.216', '213.255.198.223', 2147483647, 2147483647, 'SO', 'Somalia'), +('213.255.198.224', '213.255.198.231', 2147483647, 2147483647, 'KE', 'Kenya'), +('213.255.198.232', '213.255.198.239', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.255.198.240', '213.255.198.247', 2147483647, 2147483647, 'UG', 'Uganda'), +('213.255.198.248', '213.255.198.255', 2147483647, 2147483647, 'ZW', 'Zimbabwe'), +('213.255.199.0', '213.255.199.23', 2147483647, 2147483647, 'IQ', 'Iraq'), +('213.255.199.24', '213.255.199.55', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.255.199.56', '213.255.199.63', 2147483647, 2147483647, 'IQ', 'Iraq'), +('213.255.199.64', '213.255.199.71', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.255.199.72', '213.255.199.87', 2147483647, 2147483647, 'IQ', 'Iraq'), +('213.255.199.88', '213.255.199.95', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.255.199.96', '213.255.199.119', 2147483647, 2147483647, 'IQ', 'Iraq'), +('213.255.199.120', '213.255.199.135', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.255.199.136', '213.255.199.151', 2147483647, 2147483647, 'IQ', 'Iraq'), +('213.255.199.152', '213.255.199.159', 2147483647, 2147483647, 'SO', 'Somalia'), +('213.255.199.160', '213.255.199.167', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.255.199.168', '213.255.199.175', 2147483647, 2147483647, 'IQ', 'Iraq'), +('213.255.199.176', '213.255.199.199', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.255.199.200', '213.255.199.207', 2147483647, 2147483647, 'IQ', 'Iraq'), +('213.255.199.208', '213.255.199.223', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.255.199.224', '213.255.199.231', 2147483647, 2147483647, 'IQ', 'Iraq'), +('213.255.199.232', '213.255.200.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.255.201.0', '213.255.201.15', 2147483647, 2147483647, 'MZ', 'Mozambique'), +('213.255.201.16', '213.255.201.31', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.255.201.32', '213.255.201.39', 2147483647, 2147483647, 'LR', 'Liberia'), +('213.255.201.40', '213.255.201.47', 2147483647, 2147483647, 'IQ', 'Iraq'), +('213.255.201.48', '213.255.201.55', 2147483647, 2147483647, 'CD', 'Congo, The Democratic Republic of the'), +('213.255.201.56', '213.255.201.79', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.255.201.80', '213.255.201.95', 2147483647, 2147483647, 'IQ', 'Iraq'), +('213.255.201.96', '213.255.201.103', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.255.201.104', '213.255.201.119', 2147483647, 2147483647, 'IQ', 'Iraq'), +('213.255.201.120', '213.255.201.127', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.255.201.128', '213.255.201.143', 2147483647, 2147483647, 'IQ', 'Iraq'), +('213.255.201.144', '213.255.201.144', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.255.201.145', '213.255.201.159', 2147483647, 2147483647, 'IQ', 'Iraq'), +('213.255.201.160', '213.255.201.167', 2147483647, 2147483647, 'GH', 'Ghana'), +('213.255.201.168', '213.255.201.175', 2147483647, 2147483647, 'IQ', 'Iraq'), +('213.255.201.176', '213.255.201.183', 2147483647, 2147483647, 'ZW', 'Zimbabwe'), +('213.255.201.184', '213.255.201.191', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.255.201.192', '213.255.201.207', 2147483647, 2147483647, 'IQ', 'Iraq'), +('213.255.201.208', '213.255.201.215', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.255.201.216', '213.255.201.255', 2147483647, 2147483647, 'IQ', 'Iraq'), +('213.255.202.0', '213.255.202.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.255.203.0', '213.255.203.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.255.204.0', '213.255.205.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.255.206.0', '213.255.206.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('213.255.207.0', '213.255.207.255', 2147483647, 2147483647, 'YT', 'Mayotte'), +('213.255.208.0', '213.255.210.255', 2147483647, 2147483647, 'MW', 'Malawi'), +('213.255.211.0', '213.255.211.95', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.255.211.96', '213.255.211.103', 2147483647, 2147483647, 'KE', 'Kenya'), +('213.255.211.104', '213.255.211.127', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.255.211.128', '213.255.211.191', 2147483647, 2147483647, 'NG', 'Nigeria'), +('213.255.211.192', '213.255.211.199', 2147483647, 2147483647, 'ZA', 'South Africa'), +('213.255.211.200', '213.255.211.207', 2147483647, 2147483647, 'AO', 'Angola'), +('213.255.211.208', '213.255.211.215', 2147483647, 2147483647, 'NG', 'Nigeria'), +('213.255.211.216', '213.255.211.223', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.255.211.224', '213.255.211.239', 2147483647, 2147483647, 'UG', 'Uganda'), +('213.255.211.240', '213.255.211.247', 2147483647, 2147483647, 'NG', 'Nigeria'), +('213.255.211.248', '213.255.211.255', 2147483647, 2147483647, 'KE', 'Kenya'), +('213.255.212.0', '213.255.218.127', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.255.218.128', '213.255.218.143', 2147483647, 2147483647, 'ET', 'Ethiopia'), +('213.255.218.144', '213.255.218.159', 2147483647, 2147483647, 'GH', 'Ghana'), +('213.255.218.160', '213.255.218.175', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.255.218.176', '213.255.218.183', 2147483647, 2147483647, 'UG', 'Uganda'), +('213.255.218.184', '213.255.218.191', 2147483647, 2147483647, 'CG', 'Congo'), +('213.255.218.192', '213.255.218.207', 2147483647, 2147483647, 'NG', 'Nigeria'), +('213.255.218.208', '213.255.218.223', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.255.218.224', '213.255.218.231', 2147483647, 2147483647, 'TG', 'Togo'), +('213.255.218.232', '213.255.218.239', 2147483647, 2147483647, 'UG', 'Uganda'), +('213.255.218.240', '213.255.218.247', 2147483647, 2147483647, 'NG', 'Nigeria'), +('213.255.218.248', '213.255.218.255', 2147483647, 2147483647, 'KE', 'Kenya'), +('213.255.219.0', '213.255.219.15', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.255.219.16', '213.255.219.31', 2147483647, 2147483647, 'KE', 'Kenya'), +('213.255.219.32', '213.255.219.47', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.255.219.48', '213.255.219.55', 2147483647, 2147483647, 'NG', 'Nigeria'), +('213.255.219.56', '213.255.219.63', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.255.219.64', '213.255.219.71', 2147483647, 2147483647, 'NG', 'Nigeria'), +('213.255.219.72', '213.255.219.79', 2147483647, 2147483647, 'ZW', 'Zimbabwe'), +('213.255.219.80', '213.255.219.127', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.255.219.128', '213.255.219.135', 2147483647, 2147483647, 'KE', 'Kenya'), +('213.255.219.136', '213.255.219.143', 2147483647, 2147483647, 'NG', 'Nigeria'), +('213.255.219.144', '213.255.219.151', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.255.219.152', '213.255.219.159', 2147483647, 2147483647, 'KE', 'Kenya'), +('213.255.219.160', '213.255.219.175', 2147483647, 2147483647, 'GH', 'Ghana'), +('213.255.219.176', '213.255.219.191', 2147483647, 2147483647, 'NG', 'Nigeria'), +('213.255.219.192', '213.255.219.207', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.255.219.208', '213.255.219.215', 2147483647, 2147483647, 'NG', 'Nigeria'), +('213.255.219.216', '213.255.219.221', 2147483647, 2147483647, 'YT', 'Mayotte'), +('213.255.219.222', '213.255.219.223', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.255.219.224', '213.255.219.231', 2147483647, 2147483647, 'UG', 'Uganda'), +('213.255.219.232', '213.255.219.239', 2147483647, 2147483647, 'MW', 'Malawi'), +('213.255.219.240', '213.255.223.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.255.224.0', '213.255.224.7', 2147483647, 2147483647, 'TZ', 'Tanzania, United Republic of'), +('213.255.224.8', '213.255.224.15', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.255.224.16', '213.255.224.23', 2147483647, 2147483647, 'GH', 'Ghana'), +('213.255.224.24', '213.255.224.47', 2147483647, 2147483647, 'IQ', 'Iraq'), +('213.255.224.48', '213.255.224.55', 2147483647, 2147483647, 'LB', 'Lebanon'), +('213.255.224.56', '213.255.224.95', 2147483647, 2147483647, 'IQ', 'Iraq'), +('213.255.224.96', '213.255.224.119', 2147483647, 2147483647, 'NG', 'Nigeria'), +('213.255.224.120', '213.255.224.127', 2147483647, 2147483647, 'GR', 'Greece'), +('213.255.224.128', '213.255.224.151', 2147483647, 2147483647, 'IQ', 'Iraq'), +('213.255.224.152', '213.255.224.159', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.255.224.160', '213.255.224.167', 2147483647, 2147483647, 'LY', 'Libyan Arab Jamahiriya'), +('213.255.224.168', '213.255.224.183', 2147483647, 2147483647, 'IQ', 'Iraq'), +('213.255.224.184', '213.255.224.191', 2147483647, 2147483647, 'ZM', 'Zambia'), +('213.255.224.192', '213.255.224.199', 2147483647, 2147483647, 'IQ', 'Iraq'), +('213.255.224.200', '213.255.224.207', 2147483647, 2147483647, 'LB', 'Lebanon'), +('213.255.224.208', '213.255.224.223', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.255.224.224', '213.255.224.255', 2147483647, 2147483647, 'IQ', 'Iraq'), +('213.255.225.0', '213.255.225.255', 2147483647, 2147483647, 'LB', 'Lebanon'), +('213.255.226.0', '213.255.226.15', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.255.226.16', '213.255.226.31', 2147483647, 2147483647, 'IQ', 'Iraq'), +('213.255.226.32', '213.255.226.47', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.255.226.48', '213.255.226.55', 2147483647, 2147483647, 'IQ', 'Iraq'), +('213.255.226.56', '213.255.226.63', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.255.226.64', '213.255.226.71', 2147483647, 2147483647, 'IQ', 'Iraq'), +('213.255.226.72', '213.255.226.79', 2147483647, 2147483647, 'GR', 'Greece'), +('213.255.226.80', '213.255.226.88', 2147483647, 2147483647, 'IQ', 'Iraq'), +('213.255.226.89', '213.255.226.103', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.255.226.104', '213.255.226.111', 2147483647, 2147483647, 'LY', 'Libyan Arab Jamahiriya'), +('213.255.226.112', '213.255.226.119', 2147483647, 2147483647, 'IQ', 'Iraq'), +('213.255.226.120', '213.255.226.127', 2147483647, 2147483647, 'LY', 'Libyan Arab Jamahiriya'), +('213.255.226.128', '213.255.226.143', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.255.226.144', '213.255.226.151', 2147483647, 2147483647, 'IQ', 'Iraq'), +('213.255.226.152', '213.255.226.175', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.255.226.176', '213.255.226.183', 2147483647, 2147483647, 'IQ', 'Iraq'), +('213.255.226.184', '213.255.226.191', 2147483647, 2147483647, 'LB', 'Lebanon'), +('213.255.226.192', '213.255.226.207', 2147483647, 2147483647, 'GR', 'Greece'), +('213.255.226.208', '213.255.226.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.255.227.0', '213.255.227.255', 2147483647, 2147483647, 'RS', 'Serbia'), +('213.255.228.0', '213.255.228.255', 2147483647, 2147483647, 'NG', 'Nigeria'), +('213.255.229.0', '213.255.229.31', 2147483647, 2147483647, 'AO', 'Angola'), +('213.255.229.32', '213.255.229.95', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.255.229.96', '213.255.229.127', 2147483647, 2147483647, 'US', 'United States'), +('213.255.229.128', '213.255.229.135', 2147483647, 2147483647, 'AM', 'Armenia'), +('213.255.229.136', '213.255.229.143', 2147483647, 2147483647, 'LB', 'Lebanon'), +('213.255.229.144', '213.255.229.159', 2147483647, 2147483647, 'IQ', 'Iraq'), +('213.255.229.160', '213.255.229.167', 2147483647, 2147483647, 'MW', 'Malawi'), +('213.255.229.168', '213.255.229.175', 2147483647, 2147483647, 'US', 'United States'), +('213.255.229.176', '213.255.229.183', 2147483647, 2147483647, 'IQ', 'Iraq'), +('213.255.229.184', '213.255.229.191', 2147483647, 2147483647, 'LB', 'Lebanon'), +('213.255.229.192', '213.255.229.207', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.255.229.208', '213.255.229.215', 2147483647, 2147483647, 'LY', 'Libyan Arab Jamahiriya'), +('213.255.229.216', '213.255.231.127', 2147483647, 2147483647, 'IQ', 'Iraq'), +('213.255.231.128', '213.255.231.223', 2147483647, 2147483647, 'UA', 'Ukraine'), +('213.255.231.224', '213.255.236.63', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.255.236.64', '213.255.236.127', 2147483647, 2147483647, 'AE', 'United Arab Emirates'), +('213.255.236.128', '213.255.236.231', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.255.236.232', '213.255.236.255', 2147483647, 2147483647, 'AE', 'United Arab Emirates'), +('213.255.237.0', '213.255.237.63', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.255.237.64', '213.255.237.95', 2147483647, 2147483647, 'AE', 'United Arab Emirates'), +('213.255.237.96', '213.255.239.95', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.255.239.96', '213.255.239.127', 2147483647, 2147483647, 'AE', 'United Arab Emirates'), +('213.255.239.128', '213.255.239.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.255.240.0', '213.255.240.63', 2147483647, 2147483647, 'NG', 'Nigeria'), +('213.255.240.64', '213.255.240.71', 2147483647, 2147483647, 'LB', 'Lebanon'), +('213.255.240.72', '213.255.240.79', 2147483647, 2147483647, 'IQ', 'Iraq'), +('213.255.240.80', '213.255.240.103', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.255.240.104', '213.255.240.111', 2147483647, 2147483647, 'IQ', 'Iraq'), +('213.255.240.112', '213.255.240.119', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.255.240.120', '213.255.240.127', 2147483647, 2147483647, 'LB', 'Lebanon'), +('213.255.240.128', '213.255.240.135', 2147483647, 2147483647, 'LY', 'Libyan Arab Jamahiriya'), +('213.255.240.136', '213.255.240.143', 2147483647, 2147483647, 'TZ', 'Tanzania, United Republic of'), +('213.255.240.144', '213.255.240.167', 2147483647, 2147483647, 'IQ', 'Iraq'), +('213.255.240.168', '213.255.240.175', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.255.240.176', '213.255.240.207', 2147483647, 2147483647, 'IQ', 'Iraq'), +('213.255.240.208', '213.255.240.215', 2147483647, 2147483647, 'UG', 'Uganda'), +('213.255.240.216', '213.255.240.239', 2147483647, 2147483647, 'IQ', 'Iraq'), +('213.255.240.240', '213.255.240.247', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.255.240.248', '213.255.240.255', 2147483647, 2147483647, 'IQ', 'Iraq'), +('213.255.241.0', '213.255.243.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.255.244.0', '213.255.245.255', 2147483647, 2147483647, 'IQ', 'Iraq'), +('213.255.246.0', '213.255.246.15', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.255.246.16', '213.255.246.23', 2147483647, 2147483647, 'CM', 'Cameroon'), +('213.255.246.24', '213.255.246.31', 2147483647, 2147483647, 'IQ', 'Iraq'), +('213.255.246.32', '213.255.246.47', 2147483647, 2147483647, 'ZW', 'Zimbabwe'), +('213.255.246.48', '213.255.246.63', 2147483647, 2147483647, 'IQ', 'Iraq'), +('213.255.246.64', '213.255.246.127', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.255.246.128', '213.255.246.159', 2147483647, 2147483647, 'IQ', 'Iraq'), +('213.255.246.160', '213.255.246.191', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.255.246.192', '213.255.246.223', 2147483647, 2147483647, 'IQ', 'Iraq'), +('213.255.246.224', '213.255.246.255', 2147483647, 2147483647, 'CY', 'Cyprus'), +('213.255.247.0', '213.255.247.7', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.255.247.8', '213.255.247.15', 2147483647, 2147483647, 'IQ', 'Iraq'), +('213.255.247.16', '213.255.247.23', 2147483647, 2147483647, 'LY', 'Libyan Arab Jamahiriya'), +('213.255.247.24', '213.255.247.39', 2147483647, 2147483647, 'IQ', 'Iraq'), +('213.255.247.40', '213.255.247.47', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.255.247.48', '213.255.247.63', 2147483647, 2147483647, 'TR', 'Turkey'), +('213.255.247.64', '213.255.247.71', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.255.247.72', '213.255.247.79', 2147483647, 2147483647, 'LB', 'Lebanon'), +('213.255.247.80', '213.255.247.87', 2147483647, 2147483647, 'CY', 'Cyprus'), +('213.255.247.88', '213.255.247.95', 2147483647, 2147483647, 'IQ', 'Iraq'), +('213.255.247.96', '213.255.247.127', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.255.247.128', '213.255.247.135', 2147483647, 2147483647, 'NG', 'Nigeria'), +('213.255.247.136', '213.255.247.143', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.255.247.144', '213.255.247.159', 2147483647, 2147483647, 'IQ', 'Iraq'), +('213.255.247.160', '213.255.247.191', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.255.247.192', '213.255.247.199', 2147483647, 2147483647, 'BJ', 'Benin'), +('213.255.247.200', '213.255.247.207', 2147483647, 2147483647, 'IQ', 'Iraq'), +('213.255.247.208', '213.255.247.215', 2147483647, 2147483647, 'GH', 'Ghana'), +('213.255.247.216', '213.255.247.231', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.255.247.232', '213.255.247.239', 2147483647, 2147483647, 'LY', 'Libyan Arab Jamahiriya'), +('213.255.247.240', '213.255.247.247', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.255.247.248', '213.255.248.63', 2147483647, 2147483647, 'IQ', 'Iraq'), +('213.255.248.64', '213.255.248.79', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.255.248.80', '213.255.248.95', 2147483647, 2147483647, 'RW', 'Rwanda'), +('213.255.248.96', '213.255.248.159', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.255.248.160', '213.255.248.175', 2147483647, 2147483647, 'MG', 'Madagascar'), +('213.255.248.176', '213.255.248.191', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.255.248.192', '213.255.248.199', 2147483647, 2147483647, 'LB', 'Lebanon'), +('213.255.248.200', '213.255.248.207', 2147483647, 2147483647, 'LY', 'Libyan Arab Jamahiriya'), +('213.255.248.208', '213.255.248.215', 2147483647, 2147483647, 'LB', 'Lebanon'), +('213.255.248.216', '213.255.248.223', 2147483647, 2147483647, 'IQ', 'Iraq'), +('213.255.248.224', '213.255.248.239', 2147483647, 2147483647, 'AO', 'Angola'), +('213.255.248.240', '213.255.248.247', 2147483647, 2147483647, 'LR', 'Liberia'), +('213.255.248.248', '213.255.248.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.255.249.0', '213.255.249.127', 2147483647, 2147483647, 'LB', 'Lebanon'), +('213.255.249.128', '213.255.249.143', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.255.249.144', '213.255.249.255', 2147483647, 2147483647, 'LB', 'Lebanon'), +('213.255.250.0', '213.255.251.255', 2147483647, 2147483647, 'IQ', 'Iraq'), +('213.255.252.0', '213.255.253.255', 2147483647, 2147483647, 'MW', 'Malawi'), +('213.255.254.0', '213.255.254.191', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('213.255.254.192', '213.255.254.199', 2147483647, 2147483647, 'CD', 'Congo, The Democratic Republic of the'), +('213.255.254.200', '213.255.255.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('214.0.0.0', '216.0.47.255', 2147483647, 2147483647, 'US', 'United States'), +('216.0.48.0', '216.0.48.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('216.0.49.0', '216.0.49.255', 2147483647, 2147483647, 'US', 'United States'), +('216.0.50.0', '216.0.50.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('216.0.51.0', '216.0.51.255', 2147483647, 2147483647, 'US', 'United States'), +('216.0.52.0', '216.0.53.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('216.0.54.0', '216.2.175.255', 2147483647, 2147483647, 'US', 'United States'), +('216.2.176.0', '216.2.183.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('216.2.184.0', '216.4.159.255', 2147483647, 2147483647, 'US', 'United States'), +('216.4.160.0', '216.4.163.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('216.4.164.0', '216.4.255.255', 2147483647, 2147483647, 'US', 'United States'), +('216.5.0.0', '216.5.7.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('216.5.8.0', '216.5.191.255', 2147483647, 2147483647, 'US', 'United States'), +('216.5.192.0', '216.5.199.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('216.5.200.0', '216.5.255.255', 2147483647, 2147483647, 'US', 'United States'), +('216.6.0.0', '216.6.1.255', 2147483647, 2147483647, 'SY', 'Syrian Arab Republic'), +('216.6.2.0', '216.6.2.31', 2147483647, 2147483647, 'US', 'United States'), +('216.6.2.32', '216.6.2.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.6.3.0', '216.6.3.255', 2147483647, 2147483647, 'DZ', 'Algeria'), +('216.6.4.0', '216.6.27.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.6.28.0', '216.6.28.47', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('216.6.28.48', '216.6.35.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.6.36.0', '216.6.36.255', 2147483647, 2147483647, 'HT', 'Haiti'), +('216.6.37.0', '216.6.43.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.6.44.0', '216.6.47.255', 2147483647, 2147483647, 'US', 'United States'), +('216.6.48.0', '216.6.63.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.6.64.0', '216.6.71.255', 2147483647, 2147483647, 'IN', 'India'), +('216.6.72.0', '216.6.79.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.6.80.0', '216.6.80.255', 2147483647, 2147483647, 'GP', 'Guadeloupe'), +('216.6.81.0', '216.6.93.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.6.94.0', '216.6.94.255', 2147483647, 2147483647, 'LY', 'Libyan Arab Jamahiriya'), +('216.6.95.0', '216.6.99.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.6.100.0', '216.6.103.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('216.6.104.0', '216.6.107.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('216.6.108.0', '216.6.109.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.6.110.0', '216.6.110.255', 2147483647, 2147483647, 'LY', 'Libyan Arab Jamahiriya'), +('216.6.111.0', '216.6.122.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.6.123.0', '216.6.123.255', 2147483647, 2147483647, 'US', 'United States'), +('216.6.124.0', '216.6.124.127', 2147483647, 2147483647, 'CA', 'Canada'), +('216.6.124.128', '216.6.124.143', 2147483647, 2147483647, 'ZA', 'South Africa'), +('216.6.124.144', '216.6.127.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.6.128.0', '216.6.191.255', 2147483647, 2147483647, 'US', 'United States'), +('216.6.192.0', '216.6.207.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.6.208.0', '216.7.79.255', 2147483647, 2147483647, 'US', 'United States'), +('216.7.80.0', '216.7.80.255', 2147483647, 2147483647, 'KN', 'Saint Kitts and Nevis'), +('216.7.81.0', '216.7.86.255', 2147483647, 2147483647, 'US', 'United States'), +('216.7.87.0', '216.7.90.255', 2147483647, 2147483647, 'AN', 'Netherlands Antilles'), +('216.7.91.0', '216.7.151.231', 2147483647, 2147483647, 'US', 'United States'), +('216.7.151.232', '216.7.151.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.7.151.240', '216.7.163.255', 2147483647, 2147483647, 'US', 'United States'), +('216.7.164.0', '216.7.164.7', 2147483647, 2147483647, 'SG', 'Singapore'), +('216.7.164.8', '216.7.167.255', 2147483647, 2147483647, 'US', 'United States'), +('216.7.168.0', '216.7.168.31', 2147483647, 2147483647, 'CA', 'Canada'), +('216.7.168.32', '216.7.168.39', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.7.168.40', '216.7.168.95', 2147483647, 2147483647, 'US', 'United States'), +('216.7.168.96', '216.7.168.103', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('216.7.168.104', '216.7.168.111', 2147483647, 2147483647, 'US', 'United States'), +('216.7.168.112', '216.7.168.119', 2147483647, 2147483647, 'BE', 'Belgium'), +('216.7.168.120', '216.7.168.127', 2147483647, 2147483647, 'US', 'United States'), +('216.7.168.128', '216.7.168.135', 2147483647, 2147483647, 'CA', 'Canada'), +('216.7.168.136', '216.7.169.15', 2147483647, 2147483647, 'US', 'United States'), +('216.7.169.16', '216.7.169.23', 2147483647, 2147483647, 'AU', 'Australia'), +('216.7.169.24', '216.7.169.47', 2147483647, 2147483647, 'US', 'United States'), +('216.7.169.48', '216.7.169.55', 2147483647, 2147483647, 'SG', 'Singapore'), +('216.7.169.56', '216.7.169.63', 2147483647, 2147483647, 'US', 'United States'), +('216.7.169.64', '216.7.169.71', 2147483647, 2147483647, 'VI', 'Virgin Islands, U.S.'), +('216.7.169.72', '216.7.169.79', 2147483647, 2147483647, 'US', 'United States'), +('216.7.169.80', '216.7.169.87', 2147483647, 2147483647, 'CA', 'Canada'), +('216.7.169.88', '216.7.169.95', 2147483647, 2147483647, 'CY', 'Cyprus'), +('216.7.169.96', '216.7.169.127', 2147483647, 2147483647, 'US', 'United States'), +('216.7.169.128', '216.7.169.135', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.7.169.136', '216.7.169.159', 2147483647, 2147483647, 'US', 'United States'), +('216.7.169.160', '216.7.169.167', 2147483647, 2147483647, 'OM', 'Oman'), +('216.7.169.168', '216.7.169.183', 2147483647, 2147483647, 'US', 'United States'), +('216.7.169.184', '216.7.169.191', 2147483647, 2147483647, 'AR', 'Argentina'), +('216.7.169.192', '216.7.170.7', 2147483647, 2147483647, 'US', 'United States'), +('216.7.170.8', '216.7.170.15', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('216.7.170.16', '216.7.170.39', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.7.170.40', '216.7.170.55', 2147483647, 2147483647, 'TW', 'Taiwan'), +('216.7.170.56', '216.7.172.31', 2147483647, 2147483647, 'US', 'United States'), +('216.7.172.32', '216.7.172.47', 2147483647, 2147483647, 'AU', 'Australia'), +('216.7.172.48', '216.7.172.95', 2147483647, 2147483647, 'US', 'United States'), +('216.7.172.96', '216.7.172.127', 2147483647, 2147483647, 'CA', 'Canada'), +('216.7.172.128', '216.7.172.143', 2147483647, 2147483647, 'MY', 'Malaysia'), +('216.7.172.144', '216.7.173.111', 2147483647, 2147483647, 'US', 'United States'), +('216.7.173.112', '216.7.173.127', 2147483647, 2147483647, 'IN', 'India'), +('216.7.173.128', '216.7.173.159', 2147483647, 2147483647, 'US', 'United States'), +('216.7.173.160', '216.7.173.191', 2147483647, 2147483647, 'AU', 'Australia'), +('216.7.173.192', '216.7.173.207', 2147483647, 2147483647, 'CH', 'Switzerland'), +('216.7.173.208', '216.7.178.95', 2147483647, 2147483647, 'US', 'United States'), +('216.7.178.96', '216.7.178.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.7.178.112', '216.7.178.127', 2147483647, 2147483647, 'PT', 'Portugal'), +('216.7.178.128', '216.7.178.207', 2147483647, 2147483647, 'US', 'United States'), +('216.7.178.208', '216.7.178.223', 2147483647, 2147483647, 'DE', 'Germany'), +('216.7.178.224', '216.7.184.255', 2147483647, 2147483647, 'US', 'United States'), +('216.7.185.0', '216.7.185.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.7.186.0', '216.7.191.255', 2147483647, 2147483647, 'US', 'United States'), +('216.7.192.0', '216.7.223.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.7.224.0', '216.8.127.255', 2147483647, 2147483647, 'US', 'United States'), +('216.8.128.0', '216.8.139.136', 2147483647, 2147483647, 'CA', 'Canada'), +('216.8.139.137', '216.8.139.137', 2147483647, 2147483647, 'US', 'United States'), +('216.8.139.138', '216.8.159.223', 2147483647, 2147483647, 'CA', 'Canada'), +('216.8.159.224', '216.8.159.231', 2147483647, 2147483647, 'US', 'United States'), +('216.8.159.232', '216.8.159.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.8.160.0', '216.8.160.15', 2147483647, 2147483647, 'US', 'United States'), +('216.8.160.16', '216.8.161.183', 2147483647, 2147483647, 'CA', 'Canada'), +('216.8.161.184', '216.8.161.191', 2147483647, 2147483647, 'US', 'United States'), +('216.8.161.192', '216.8.161.199', 2147483647, 2147483647, 'CA', 'Canada'), +('216.8.161.200', '216.8.161.207', 2147483647, 2147483647, 'US', 'United States'), +('216.8.161.208', '216.8.191.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.8.192.0', '216.9.24.255', 2147483647, 2147483647, 'US', 'United States'), +('216.9.25.0', '216.9.26.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.9.27.0', '216.9.47.255', 2147483647, 2147483647, 'US', 'United States'), +('216.9.48.0', '216.9.63.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.9.64.0', '216.9.255.255', 2147483647, 2147483647, 'US', 'United States'), +('216.10.0.0', '216.10.7.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.10.8.0', '216.10.47.255', 2147483647, 2147483647, 'US', 'United States'), +('216.10.48.0', '216.10.50.175', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.10.50.176', '216.10.50.191', 2147483647, 2147483647, 'US', 'United States'), +('216.10.50.192', '216.10.50.199', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.10.50.200', '216.10.50.223', 2147483647, 2147483647, 'US', 'United States'), +('216.10.50.224', '216.10.51.47', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.10.51.48', '216.10.51.63', 2147483647, 2147483647, 'US', 'United States'), +('216.10.51.64', '216.10.51.87', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.10.51.88', '216.10.51.95', 2147483647, 2147483647, 'US', 'United States'), +('216.10.51.96', '216.10.51.119', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.10.51.120', '216.10.51.127', 2147483647, 2147483647, 'US', 'United States'), +('216.10.51.128', '216.10.51.159', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.10.51.160', '216.10.51.167', 2147483647, 2147483647, 'US', 'United States'), +('216.10.51.168', '216.10.51.183', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.10.51.184', '216.10.51.191', 2147483647, 2147483647, 'AS', 'American Samoa'), +('216.10.51.192', '216.10.53.167', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.10.53.168', '216.10.53.255', 2147483647, 2147483647, 'US', 'United States'), +('216.10.54.0', '216.10.54.7', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.10.54.8', '216.10.54.23', 2147483647, 2147483647, 'US', 'United States'), +('216.10.54.24', '216.10.54.31', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.10.54.32', '216.10.54.55', 2147483647, 2147483647, 'US', 'United States'), +('216.10.54.56', '216.10.54.79', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.10.54.80', '216.10.54.87', 2147483647, 2147483647, 'US', 'United States'), +('216.10.54.88', '216.10.54.103', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.10.54.104', '216.10.54.127', 2147483647, 2147483647, 'US', 'United States'), +('216.10.54.128', '216.10.54.167', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.10.54.168', '216.10.54.191', 2147483647, 2147483647, 'US', 'United States'), +('216.10.54.192', '216.10.54.247', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.10.54.248', '216.10.54.255', 2147483647, 2147483647, 'US', 'United States'), +('216.10.55.0', '216.10.57.63', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.10.57.64', '216.10.57.79', 2147483647, 2147483647, 'US', 'United States'), +('216.10.57.80', '216.10.57.95', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.10.57.96', '216.10.57.103', 2147483647, 2147483647, 'US', 'United States'), +('216.10.57.104', '216.10.57.191', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.10.57.192', '216.10.57.207', 2147483647, 2147483647, 'US', 'United States'), +('216.10.57.208', '216.10.57.215', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.10.57.216', '216.10.57.223', 2147483647, 2147483647, 'US', 'United States'), +('216.10.57.224', '216.10.58.63', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.10.58.64', '216.10.58.71', 2147483647, 2147483647, 'US', 'United States'), +('216.10.58.72', '216.10.58.95', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.10.58.96', '216.10.58.103', 2147483647, 2147483647, 'US', 'United States'), +('216.10.58.104', '216.10.58.159', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.10.58.160', '216.10.58.183', 2147483647, 2147483647, 'US', 'United States'), +('216.10.58.184', '216.10.58.207', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.10.58.208', '216.10.58.215', 2147483647, 2147483647, 'US', 'United States'), +('216.10.58.216', '216.10.58.247', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.10.58.248', '216.10.59.255', 2147483647, 2147483647, 'US', 'United States'), +('216.10.60.0', '216.10.63.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.10.64.0', '216.10.207.255', 2147483647, 2147483647, 'US', 'United States'), +('216.10.208.0', '216.10.223.255', 2147483647, 2147483647, 'JM', 'Jamaica'), +('216.10.224.0', '216.12.255.255', 2147483647, 2147483647, 'US', 'United States'), +('216.13.0.0', '216.13.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.14.0.0', '216.14.7.255', 2147483647, 2147483647, 'US', 'United States'), +('216.14.8.0', '216.14.10.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.14.11.0', '216.14.13.255', 2147483647, 2147483647, 'US', 'United States'), +('216.14.14.0', '216.14.14.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.14.15.0', '216.14.17.255', 2147483647, 2147483647, 'US', 'United States'), +('216.14.18.0', '216.14.18.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.14.19.0', '216.14.26.255', 2147483647, 2147483647, 'US', 'United States'), +('216.14.27.0', '216.14.28.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.14.29.0', '216.14.32.255', 2147483647, 2147483647, 'US', 'United States'), +('216.14.33.0', '216.14.33.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.14.34.0', '216.14.45.255', 2147483647, 2147483647, 'US', 'United States'), +('216.14.46.0', '216.14.47.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.14.48.0', '216.14.59.255', 2147483647, 2147483647, 'US', 'United States'), +('216.14.60.0', '216.14.62.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.14.63.0', '216.14.127.255', 2147483647, 2147483647, 'US', 'United States'), +('216.14.128.0', '216.14.143.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.14.144.0', '216.14.191.255', 2147483647, 2147483647, 'US', 'United States'), +('216.14.192.0', '216.14.207.255', 2147483647, 2147483647, 'AU', 'Australia'), +('216.14.208.0', '216.15.130.79', 2147483647, 2147483647, 'US', 'United States'), +('216.15.130.80', '216.15.130.95', 2147483647, 2147483647, 'TZ', 'Tanzania, United Republic of'), +('216.15.130.96', '216.15.130.127', 2147483647, 2147483647, 'US', 'United States'), +('216.15.130.128', '216.15.130.143', 2147483647, 2147483647, 'DE', 'Germany'), +('216.15.130.144', '216.15.130.159', 2147483647, 2147483647, 'US', 'United States'), +('216.15.130.160', '216.15.130.175', 2147483647, 2147483647, 'IN', 'India'), +('216.15.130.176', '216.15.130.207', 2147483647, 2147483647, 'US', 'United States'), +('216.15.130.208', '216.15.130.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.15.130.224', '216.15.133.31', 2147483647, 2147483647, 'US', 'United States'), +('216.15.133.32', '216.15.133.63', 2147483647, 2147483647, 'MY', 'Malaysia'), +('216.15.133.64', '216.15.133.191', 2147483647, 2147483647, 'US', 'United States'), +('216.15.133.192', '216.15.133.223', 2147483647, 2147483647, 'IN', 'India'), +('216.15.133.224', '216.15.135.31', 2147483647, 2147483647, 'US', 'United States'), +('216.15.135.32', '216.15.135.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.15.135.64', '216.15.135.159', 2147483647, 2147483647, 'US', 'United States'), +('216.15.135.160', '216.15.135.191', 2147483647, 2147483647, 'AT', 'Austria'), +('216.15.135.192', '216.15.144.255', 2147483647, 2147483647, 'US', 'United States'), +('216.15.145.0', '216.15.145.255', 2147483647, 2147483647, 'AU', 'Australia'), +('216.15.146.0', '216.15.146.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.15.147.0', '216.15.147.255', 2147483647, 2147483647, 'US', 'United States'), +('216.15.148.0', '216.15.148.255', 2147483647, 2147483647, 'AU', 'Australia'), +('216.15.149.0', '216.15.151.255', 2147483647, 2147483647, 'US', 'United States'), +('216.15.152.0', '216.15.152.31', 2147483647, 2147483647, 'AU', 'Australia'), +('216.15.152.32', '216.15.152.63', 2147483647, 2147483647, 'BE', 'Belgium'), +('216.15.152.64', '216.15.152.127', 2147483647, 2147483647, 'US', 'United States'), +('216.15.152.128', '216.15.152.191', 2147483647, 2147483647, 'CA', 'Canada'), +('216.15.152.192', '216.15.152.223', 2147483647, 2147483647, 'US', 'United States'), +('216.15.152.224', '216.15.152.255', 2147483647, 2147483647, 'DE', 'Germany'), +('216.15.153.0', '216.15.153.87', 2147483647, 2147483647, 'US', 'United States'), +('216.15.153.88', '216.15.153.95', 2147483647, 2147483647, 'FR', 'France'), +('216.15.153.96', '216.15.153.103', 2147483647, 2147483647, 'US', 'United States'), +('216.15.153.104', '216.15.153.111', 2147483647, 2147483647, 'CA', 'Canada'), +('216.15.153.112', '216.15.154.159', 2147483647, 2147483647, 'US', 'United States'), +('216.15.154.160', '216.15.154.191', 2147483647, 2147483647, 'IN', 'India'), +('216.15.154.192', '216.15.156.255', 2147483647, 2147483647, 'US', 'United States'), +('216.15.157.0', '216.15.157.31', 2147483647, 2147483647, 'IN', 'India'), +('216.15.157.32', '216.15.157.63', 2147483647, 2147483647, 'MY', 'Malaysia'), +('216.15.157.64', '216.15.157.223', 2147483647, 2147483647, 'US', 'United States'), +('216.15.157.224', '216.15.157.255', 2147483647, 2147483647, 'IN', 'India'), +('216.15.158.0', '216.15.158.127', 2147483647, 2147483647, 'US', 'United States'), +('216.15.158.128', '216.15.158.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('216.15.159.0', '216.15.159.255', 2147483647, 2147483647, 'US', 'United States'), +('216.15.160.0', '216.15.160.127', 2147483647, 2147483647, 'IN', 'India'), +('216.15.160.128', '216.15.160.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.15.161.0', '216.15.161.31', 2147483647, 2147483647, 'US', 'United States'), +('216.15.161.32', '216.15.161.63', 2147483647, 2147483647, 'FR', 'France'), +('216.15.161.64', '216.15.161.95', 2147483647, 2147483647, 'US', 'United States'), +('216.15.161.96', '216.15.161.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.15.161.160', '216.15.161.255', 2147483647, 2147483647, 'US', 'United States'), +('216.15.162.0', '216.15.162.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.15.163.0', '216.15.163.127', 2147483647, 2147483647, 'US', 'United States'), +('216.15.163.128', '216.15.163.159', 2147483647, 2147483647, 'CA', 'Canada'), +('216.15.163.160', '216.15.163.255', 2147483647, 2147483647, 'US', 'United States'), +('216.15.164.0', '216.15.167.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.15.168.0', '216.15.168.63', 2147483647, 2147483647, 'IN', 'India'), +('216.15.168.64', '216.15.169.127', 2147483647, 2147483647, 'US', 'United States'), +('216.15.169.128', '216.15.169.191', 2147483647, 2147483647, 'CA', 'Canada'), +('216.15.169.192', '216.15.170.255', 2147483647, 2147483647, 'US', 'United States'), +('216.15.171.0', '216.15.171.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.15.172.0', '216.15.176.127', 2147483647, 2147483647, 'US', 'United States'), +('216.15.176.128', '216.15.176.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('216.15.177.0', '216.15.177.31', 2147483647, 2147483647, 'FR', 'France'), +('216.15.177.32', '216.15.177.63', 2147483647, 2147483647, 'US', 'United States'), +('216.15.177.64', '216.15.177.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.15.177.96', '216.15.178.191', 2147483647, 2147483647, 'US', 'United States'), +('216.15.178.192', '216.15.178.254', 2147483647, 2147483647, 'MY', 'Malaysia'), +('216.15.178.255', '216.15.178.255', 2147483647, 2147483647, 'US', 'United States'), +('216.15.179.0', '216.15.179.31', 2147483647, 2147483647, 'IN', 'India'), +('216.15.179.32', '216.15.179.63', 2147483647, 2147483647, 'US', 'United States'), +('216.15.179.64', '216.15.179.95', 2147483647, 2147483647, 'CA', 'Canada'), +('216.15.179.96', '216.15.179.159', 2147483647, 2147483647, 'US', 'United States'), +('216.15.179.160', '216.15.179.191', 2147483647, 2147483647, 'IN', 'India'), +('216.15.179.192', '216.15.179.225', 2147483647, 2147483647, 'US', 'United States'), +('216.15.179.226', '216.15.179.255', 2147483647, 2147483647, 'IN', 'India'), +('216.15.180.0', '216.15.180.127', 2147483647, 2147483647, 'MY', 'Malaysia'), +('216.15.180.128', '216.15.180.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('216.15.181.0', '216.15.181.127', 2147483647, 2147483647, 'TW', 'Taiwan'), +('216.15.181.128', '216.15.181.255', 2147483647, 2147483647, 'US', 'United States'), +('216.15.182.0', '216.15.182.31', 2147483647, 2147483647, 'CA', 'Canada'), +('216.15.182.32', '216.15.182.63', 2147483647, 2147483647, 'US', 'United States'), +('216.15.182.64', '216.15.182.95', 2147483647, 2147483647, 'BR', 'Brazil'), +('216.15.182.96', '216.15.182.127', 2147483647, 2147483647, 'IN', 'India'), +('216.15.182.128', '216.15.182.191', 2147483647, 2147483647, 'US', 'United States'), +('216.15.182.192', '216.15.182.223', 2147483647, 2147483647, 'CA', 'Canada'), +('216.15.182.224', '216.15.183.63', 2147483647, 2147483647, 'US', 'United States'), +('216.15.183.64', '216.15.183.78', 2147483647, 2147483647, 'CA', 'Canada'), +('216.15.183.79', '216.15.183.95', 2147483647, 2147483647, 'US', 'United States'), +('216.15.183.96', '216.15.183.143', 2147483647, 2147483647, 'CA', 'Canada'), +('216.15.183.144', '216.15.183.239', 2147483647, 2147483647, 'US', 'United States'), +('216.15.183.240', '216.15.183.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.15.184.0', '216.15.186.63', 2147483647, 2147483647, 'US', 'United States'), +('216.15.186.64', '216.15.186.95', 2147483647, 2147483647, 'VE', 'Venezuela'), +('216.15.186.96', '216.15.186.159', 2147483647, 2147483647, 'US', 'United States'), +('216.15.186.160', '216.15.186.191', 2147483647, 2147483647, 'AU', 'Australia'), +('216.15.186.192', '216.15.186.255', 2147483647, 2147483647, 'US', 'United States'), +('216.15.187.0', '216.15.187.254', 2147483647, 2147483647, 'MY', 'Malaysia'), +('216.15.187.255', '216.15.187.255', 2147483647, 2147483647, 'US', 'United States'), +('216.15.188.0', '216.15.188.127', 2147483647, 2147483647, 'CA', 'Canada'), +('216.15.188.128', '216.15.188.255', 2147483647, 2147483647, 'US', 'United States'), +('216.15.189.0', '216.15.189.31', 2147483647, 2147483647, 'CA', 'Canada'), +('216.15.189.32', '216.15.189.95', 2147483647, 2147483647, 'US', 'United States'), +('216.15.189.96', '216.15.189.127', 2147483647, 2147483647, 'BE', 'Belgium'), +('216.15.189.128', '216.15.189.191', 2147483647, 2147483647, 'US', 'United States'), +('216.15.189.192', '216.15.189.223', 2147483647, 2147483647, 'FR', 'France'), +('216.15.189.224', '216.15.191.63', 2147483647, 2147483647, 'US', 'United States'), +('216.15.191.64', '216.15.191.95', 2147483647, 2147483647, 'TZ', 'Tanzania, United Republic of'), +('216.15.191.96', '216.15.191.127', 2147483647, 2147483647, 'CA', 'Canada'), +('216.15.191.128', '216.15.191.159', 2147483647, 2147483647, 'US', 'United States'), +('216.15.191.160', '216.15.191.191', 2147483647, 2147483647, 'TZ', 'Tanzania, United Republic of'), +('216.15.191.192', '216.15.191.223', 2147483647, 2147483647, 'US', 'United States'), +('216.15.191.224', '216.15.191.255', 2147483647, 2147483647, 'AU', 'Australia'), +('216.15.192.0', '216.15.192.63', 2147483647, 2147483647, 'US', 'United States'), +('216.15.192.64', '216.15.192.127', 2147483647, 2147483647, 'IN', 'India'), +('216.15.192.128', '216.15.192.159', 2147483647, 2147483647, 'FR', 'France'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('216.15.192.160', '216.15.192.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.15.192.192', '216.15.192.255', 2147483647, 2147483647, 'US', 'United States'), +('216.15.193.0', '216.15.193.31', 2147483647, 2147483647, 'CA', 'Canada'), +('216.15.193.32', '216.15.193.255', 2147483647, 2147483647, 'US', 'United States'), +('216.15.194.0', '216.15.194.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.15.195.0', '216.15.196.127', 2147483647, 2147483647, 'US', 'United States'), +('216.15.196.128', '216.15.196.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.15.197.0', '216.15.198.255', 2147483647, 2147483647, 'US', 'United States'), +('216.15.199.0', '216.15.199.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('216.15.200.0', '216.15.200.127', 2147483647, 2147483647, 'US', 'United States'), +('216.15.200.128', '216.15.200.191', 2147483647, 2147483647, 'IN', 'India'), +('216.15.200.192', '216.15.201.159', 2147483647, 2147483647, 'US', 'United States'), +('216.15.201.160', '216.15.201.191', 2147483647, 2147483647, 'CA', 'Canada'), +('216.15.201.192', '216.15.201.223', 2147483647, 2147483647, 'PK', 'Pakistan'), +('216.15.201.224', '216.15.204.127', 2147483647, 2147483647, 'US', 'United States'), +('216.15.204.128', '216.15.204.159', 2147483647, 2147483647, 'IN', 'India'), +('216.15.204.160', '216.15.204.223', 2147483647, 2147483647, 'US', 'United States'), +('216.15.204.224', '216.15.204.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.15.205.0', '216.15.205.95', 2147483647, 2147483647, 'US', 'United States'), +('216.15.205.96', '216.15.205.127', 2147483647, 2147483647, 'CA', 'Canada'), +('216.15.205.128', '216.15.205.159', 2147483647, 2147483647, 'US', 'United States'), +('216.15.205.160', '216.15.205.191', 2147483647, 2147483647, 'CA', 'Canada'), +('216.15.205.192', '216.15.206.255', 2147483647, 2147483647, 'US', 'United States'), +('216.15.207.0', '216.15.207.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('216.15.208.0', '216.15.208.255', 2147483647, 2147483647, 'US', 'United States'), +('216.15.209.0', '216.15.209.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.15.210.0', '216.15.211.191', 2147483647, 2147483647, 'US', 'United States'), +('216.15.211.192', '216.15.211.223', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('216.15.211.224', '216.15.212.191', 2147483647, 2147483647, 'US', 'United States'), +('216.15.212.192', '216.15.212.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('216.15.213.0', '216.15.213.255', 2147483647, 2147483647, 'US', 'United States'), +('216.15.214.0', '216.15.214.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.15.215.0', '216.15.216.255', 2147483647, 2147483647, 'US', 'United States'), +('216.15.217.0', '216.15.217.255', 2147483647, 2147483647, 'AU', 'Australia'), +('216.15.218.0', '216.15.219.159', 2147483647, 2147483647, 'US', 'United States'), +('216.15.219.160', '216.15.219.191', 2147483647, 2147483647, 'CH', 'Switzerland'), +('216.15.219.192', '216.15.219.223', 2147483647, 2147483647, 'US', 'United States'), +('216.15.219.224', '216.15.219.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.15.220.0', '216.15.221.255', 2147483647, 2147483647, 'US', 'United States'), +('216.15.222.0', '216.15.222.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.15.223.0', '216.15.223.31', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('216.15.223.32', '216.15.223.63', 2147483647, 2147483647, 'US', 'United States'), +('216.15.223.64', '216.15.223.91', 2147483647, 2147483647, 'IN', 'India'), +('216.15.223.92', '216.15.223.223', 2147483647, 2147483647, 'US', 'United States'), +('216.15.223.224', '216.15.223.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('216.15.224.0', '216.15.224.31', 2147483647, 2147483647, 'US', 'United States'), +('216.15.224.32', '216.15.224.63', 2147483647, 2147483647, 'BE', 'Belgium'), +('216.15.224.64', '216.15.224.255', 2147483647, 2147483647, 'US', 'United States'), +('216.15.225.0', '216.15.225.127', 2147483647, 2147483647, 'CA', 'Canada'), +('216.15.225.128', '216.15.225.255', 2147483647, 2147483647, 'IN', 'India'), +('216.15.226.0', '216.15.226.127', 2147483647, 2147483647, 'CA', 'Canada'), +('216.15.226.128', '216.15.227.159', 2147483647, 2147483647, 'US', 'United States'), +('216.15.227.160', '216.15.227.191', 2147483647, 2147483647, 'BE', 'Belgium'), +('216.15.227.192', '216.15.227.223', 2147483647, 2147483647, 'CA', 'Canada'), +('216.15.227.224', '216.15.227.255', 2147483647, 2147483647, 'US', 'United States'), +('216.15.228.0', '216.15.228.127', 2147483647, 2147483647, 'CA', 'Canada'), +('216.15.228.128', '216.15.228.255', 2147483647, 2147483647, 'IN', 'India'), +('216.15.229.0', '216.15.230.127', 2147483647, 2147483647, 'CA', 'Canada'), +('216.15.230.128', '216.15.230.255', 2147483647, 2147483647, 'IN', 'India'), +('216.15.231.0', '216.15.231.127', 2147483647, 2147483647, 'CA', 'Canada'), +('216.15.231.128', '216.15.231.255', 2147483647, 2147483647, 'IN', 'India'), +('216.15.232.0', '216.15.232.127', 2147483647, 2147483647, 'PK', 'Pakistan'), +('216.15.232.128', '216.15.232.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.15.233.0', '216.15.233.255', 2147483647, 2147483647, 'US', 'United States'), +('216.15.234.0', '216.15.235.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.15.236.0', '216.15.236.31', 2147483647, 2147483647, 'US', 'United States'), +('216.15.236.32', '216.15.236.95', 2147483647, 2147483647, 'MY', 'Malaysia'), +('216.15.236.96', '216.15.236.127', 2147483647, 2147483647, 'FR', 'France'), +('216.15.236.128', '216.15.236.159', 2147483647, 2147483647, 'US', 'United States'), +('216.15.236.160', '216.15.236.175', 2147483647, 2147483647, 'CR', 'Costa Rica'), +('216.15.236.176', '216.15.236.223', 2147483647, 2147483647, 'US', 'United States'), +('216.15.236.224', '216.15.236.255', 2147483647, 2147483647, 'FR', 'France'), +('216.15.237.0', '216.15.237.127', 2147483647, 2147483647, 'IN', 'India'), +('216.15.237.128', '216.15.237.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('216.15.238.0', '216.15.238.191', 2147483647, 2147483647, 'US', 'United States'), +('216.15.238.192', '216.15.238.223', 2147483647, 2147483647, 'FR', 'France'), +('216.15.238.224', '216.15.238.255', 2147483647, 2147483647, 'US', 'United States'), +('216.15.239.0', '216.15.239.127', 2147483647, 2147483647, 'IN', 'India'), +('216.15.239.128', '216.15.240.127', 2147483647, 2147483647, 'CA', 'Canada'), +('216.15.240.128', '216.15.240.255', 2147483647, 2147483647, 'US', 'United States'), +('216.15.241.0', '216.15.241.127', 2147483647, 2147483647, 'CA', 'Canada'), +('216.15.241.128', '216.15.241.255', 2147483647, 2147483647, 'US', 'United States'), +('216.15.242.0', '216.15.242.127', 2147483647, 2147483647, 'CA', 'Canada'), +('216.15.242.128', '216.15.243.191', 2147483647, 2147483647, 'US', 'United States'), +('216.15.243.192', '216.15.243.223', 2147483647, 2147483647, 'CA', 'Canada'), +('216.15.243.224', '216.15.244.127', 2147483647, 2147483647, 'US', 'United States'), +('216.15.244.128', '216.15.245.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.15.246.0', '216.15.246.223', 2147483647, 2147483647, 'US', 'United States'), +('216.15.246.224', '216.15.246.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.15.247.0', '216.15.247.126', 2147483647, 2147483647, 'US', 'United States'), +('216.15.247.127', '216.15.249.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.15.250.0', '216.15.253.255', 2147483647, 2147483647, 'US', 'United States'), +('216.15.254.0', '216.15.254.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.15.255.0', '216.15.255.63', 2147483647, 2147483647, 'US', 'United States'), +('216.15.255.64', '216.15.255.95', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('216.15.255.96', '216.15.255.191', 2147483647, 2147483647, 'US', 'United States'), +('216.15.255.192', '216.15.255.223', 2147483647, 2147483647, 'TH', 'Thailand'), +('216.15.255.224', '216.16.143.255', 2147483647, 2147483647, 'US', 'United States'), +('216.16.192.0', '216.16.223.255', 2147483647, 2147483647, 'US', 'United States'), +('216.16.224.0', '216.16.230.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.16.231.0', '216.16.231.31', 2147483647, 2147483647, 'US', 'United States'), +('216.16.231.32', '216.16.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.17.0.0', '216.17.37.111', 2147483647, 2147483647, 'US', 'United States'), +('216.17.37.112', '216.17.37.127', 2147483647, 2147483647, 'CA', 'Canada'), +('216.17.37.128', '216.17.102.255', 2147483647, 2147483647, 'US', 'United States'), +('216.17.103.0', '216.17.103.255', 2147483647, 2147483647, 'ES', 'Spain'), +('216.17.104.0', '216.17.255.255', 2147483647, 2147483647, 'US', 'United States'), +('216.18.0.0', '216.18.127.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.18.128.0', '216.19.63.255', 2147483647, 2147483647, 'US', 'United States'), +('216.19.64.0', '216.19.95.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.19.96.0', '216.19.175.255', 2147483647, 2147483647, 'US', 'United States'), +('216.19.176.0', '216.19.191.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.19.192.0', '216.19.206.191', 2147483647, 2147483647, 'US', 'United States'), +('216.19.206.192', '216.19.206.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('216.19.207.0', '216.20.210.79', 2147483647, 2147483647, 'US', 'United States'), +('216.20.210.80', '216.20.210.87', 2147483647, 2147483647, 'CA', 'Canada'), +('216.20.210.88', '216.20.218.255', 2147483647, 2147483647, 'US', 'United States'), +('216.20.219.0', '216.20.220.71', 2147483647, 2147483647, 'MX', 'Mexico'), +('216.20.220.72', '216.20.220.207', 2147483647, 2147483647, 'US', 'United States'), +('216.20.220.208', '216.20.220.215', 2147483647, 2147483647, 'BZ', 'Belize'), +('216.20.220.216', '216.20.220.255', 2147483647, 2147483647, 'US', 'United States'), +('216.20.221.0', '216.20.222.47', 2147483647, 2147483647, 'MX', 'Mexico'), +('216.20.222.48', '216.20.222.55', 2147483647, 2147483647, 'US', 'United States'), +('216.20.222.56', '216.20.222.63', 2147483647, 2147483647, 'MX', 'Mexico'), +('216.20.222.64', '216.20.222.71', 2147483647, 2147483647, 'US', 'United States'), +('216.20.222.72', '216.20.222.79', 2147483647, 2147483647, 'MX', 'Mexico'), +('216.20.222.80', '216.20.222.87', 2147483647, 2147483647, 'US', 'United States'), +('216.20.222.88', '216.20.222.167', 2147483647, 2147483647, 'MX', 'Mexico'), +('216.20.222.168', '216.20.222.183', 2147483647, 2147483647, 'US', 'United States'), +('216.20.222.184', '216.20.223.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('216.20.224.0', '216.21.127.255', 2147483647, 2147483647, 'US', 'United States'), +('216.21.128.0', '216.21.132.183', 2147483647, 2147483647, 'CA', 'Canada'), +('216.21.132.184', '216.21.132.191', 2147483647, 2147483647, 'US', 'United States'), +('216.21.132.192', '216.21.136.231', 2147483647, 2147483647, 'CA', 'Canada'), +('216.21.136.232', '216.21.136.239', 2147483647, 2147483647, 'US', 'United States'), +('216.21.136.240', '216.21.159.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.21.160.0', '216.21.255.255', 2147483647, 2147483647, 'US', 'United States'), +('216.22.0.0', '216.22.0.19', 2147483647, 2147483647, 'CA', 'Canada'), +('216.22.0.20', '216.22.4.255', 2147483647, 2147483647, 'US', 'United States'), +('216.22.5.0', '216.22.5.255', 2147483647, 2147483647, 'PA', 'Panama'), +('216.22.6.0', '216.22.17.255', 2147483647, 2147483647, 'US', 'United States'), +('216.22.18.0', '216.22.18.31', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('216.22.18.32', '216.22.24.40', 2147483647, 2147483647, 'US', 'United States'), +('216.22.24.41', '216.22.24.50', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.22.24.51', '216.22.28.132', 2147483647, 2147483647, 'US', 'United States'), +('216.22.28.133', '216.22.28.196', 2147483647, 2147483647, 'ID', 'Indonesia'), +('216.22.28.197', '216.22.28.198', 2147483647, 2147483647, 'US', 'United States'), +('216.22.28.199', '216.22.28.208', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.22.28.209', '216.22.29.35', 2147483647, 2147483647, 'US', 'United States'), +('216.22.29.36', '216.22.29.45', 2147483647, 2147483647, 'ID', 'Indonesia'), +('216.22.29.46', '216.22.50.127', 2147483647, 2147483647, 'US', 'United States'), +('216.22.50.128', '216.22.50.135', 2147483647, 2147483647, 'PA', 'Panama'), +('216.22.50.136', '216.22.50.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.22.50.144', '216.22.50.207', 2147483647, 2147483647, 'US', 'United States'), +('216.22.50.208', '216.22.50.215', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.22.50.216', '216.22.99.255', 2147483647, 2147483647, 'US', 'United States'), +('216.22.100.0', '216.22.100.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('216.22.101.0', '216.22.145.63', 2147483647, 2147483647, 'US', 'United States'), +('216.22.145.64', '216.22.145.71', 2147483647, 2147483647, 'CA', 'Canada'), +('216.22.145.72', '216.22.146.231', 2147483647, 2147483647, 'US', 'United States'), +('216.22.146.232', '216.22.146.239', 2147483647, 2147483647, 'CH', 'Switzerland'), +('216.22.146.240', '216.22.171.127', 2147483647, 2147483647, 'US', 'United States'), +('216.22.171.128', '216.22.171.255', 2147483647, 2147483647, 'DE', 'Germany'), +('216.22.172.0', '216.22.172.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('216.22.172.128', '216.22.172.253', 2147483647, 2147483647, 'DE', 'Germany'), +('216.22.172.254', '216.22.173.159', 2147483647, 2147483647, 'US', 'United States'), +('216.22.173.160', '216.22.173.175', 2147483647, 2147483647, 'NO', 'Norway'), +('216.22.173.176', '216.22.173.215', 2147483647, 2147483647, 'US', 'United States'), +('216.22.173.216', '216.22.173.223', 2147483647, 2147483647, 'NL', 'Netherlands'), +('216.22.173.224', '216.22.173.231', 2147483647, 2147483647, 'ZA', 'South Africa'), +('216.22.173.232', '216.22.208.15', 2147483647, 2147483647, 'US', 'United States'), +('216.22.208.16', '216.22.208.23', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.22.208.24', '216.22.208.39', 2147483647, 2147483647, 'US', 'United States'), +('216.22.208.40', '216.22.208.47', 2147483647, 2147483647, 'CA', 'Canada'), +('216.22.208.48', '216.22.208.55', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.22.208.56', '216.22.208.127', 2147483647, 2147483647, 'US', 'United States'), +('216.22.208.128', '216.22.208.135', 2147483647, 2147483647, 'CA', 'Canada'), +('216.22.208.136', '216.22.208.191', 2147483647, 2147483647, 'US', 'United States'), +('216.22.208.192', '216.22.208.199', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.22.208.200', '216.22.209.1', 2147483647, 2147483647, 'US', 'United States'), +('216.22.209.2', '216.22.209.31', 2147483647, 2147483647, 'CA', 'Canada'), +('216.22.209.32', '216.22.209.79', 2147483647, 2147483647, 'US', 'United States'), +('216.22.209.80', '216.22.209.92', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.22.209.93', '216.22.209.95', 2147483647, 2147483647, 'US', 'United States'), +('216.22.209.96', '216.22.209.111', 2147483647, 2147483647, 'CA', 'Canada'), +('216.22.209.112', '216.22.209.191', 2147483647, 2147483647, 'US', 'United States'), +('216.22.209.192', '216.22.209.207', 2147483647, 2147483647, 'CA', 'Canada'), +('216.22.209.208', '216.22.212.159', 2147483647, 2147483647, 'US', 'United States'), +('216.22.212.160', '216.22.212.191', 2147483647, 2147483647, 'MX', 'Mexico'), +('216.22.212.192', '216.22.213.63', 2147483647, 2147483647, 'US', 'United States'), +('216.22.213.64', '216.22.213.95', 2147483647, 2147483647, 'CA', 'Canada'), +('216.22.213.96', '216.22.213.159', 2147483647, 2147483647, 'US', 'United States'), +('216.22.213.160', '216.22.213.191', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('216.22.213.192', '216.22.214.15', 2147483647, 2147483647, 'US', 'United States'), +('216.22.214.16', '216.22.214.23', 2147483647, 2147483647, 'CA', 'Canada'), +('216.22.214.24', '216.22.214.39', 2147483647, 2147483647, 'US', 'United States'), +('216.22.214.40', '216.22.214.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.22.214.48', '216.22.214.127', 2147483647, 2147483647, 'US', 'United States'), +('216.22.214.128', '216.22.214.135', 2147483647, 2147483647, 'SE', 'Sweden'), +('216.22.214.136', '216.22.214.167', 2147483647, 2147483647, 'US', 'United States'), +('216.22.214.168', '216.22.214.175', 2147483647, 2147483647, 'MT', 'Malta'), +('216.22.214.176', '216.22.215.31', 2147483647, 2147483647, 'US', 'United States'), +('216.22.215.32', '216.22.215.39', 2147483647, 2147483647, 'JM', 'Jamaica'), +('216.22.215.40', '216.22.215.111', 2147483647, 2147483647, 'US', 'United States'), +('216.22.215.112', '216.22.215.119', 2147483647, 2147483647, 'JM', 'Jamaica'), +('216.22.215.120', '216.22.216.191', 2147483647, 2147483647, 'US', 'United States'), +('216.22.216.192', '216.22.216.238', 2147483647, 2147483647, 'SG', 'Singapore'), +('216.22.216.239', '216.22.217.31', 2147483647, 2147483647, 'US', 'United States'), +('216.22.217.32', '216.22.217.63', 2147483647, 2147483647, 'AR', 'Argentina'), +('216.22.217.64', '216.22.217.159', 2147483647, 2147483647, 'US', 'United States'), +('216.22.217.160', '216.22.217.191', 2147483647, 2147483647, 'LB', 'Lebanon'), +('216.22.217.192', '216.22.217.223', 2147483647, 2147483647, 'TR', 'Turkey'), +('216.22.217.224', '216.22.220.255', 2147483647, 2147483647, 'US', 'United States'), +('216.22.221.0', '216.22.222.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('216.22.223.0', '216.22.223.47', 2147483647, 2147483647, 'US', 'United States'), +('216.22.223.48', '216.22.223.63', 2147483647, 2147483647, 'CA', 'Canada'), +('216.22.223.64', '216.22.240.23', 2147483647, 2147483647, 'US', 'United States'), +('216.22.240.24', '216.22.240.31', 2147483647, 2147483647, 'CA', 'Canada'), +('216.22.240.32', '216.22.240.191', 2147483647, 2147483647, 'US', 'United States'), +('216.22.240.192', '216.22.240.223', 2147483647, 2147483647, 'CA', 'Canada'), +('216.22.240.224', '216.23.127.255', 2147483647, 2147483647, 'US', 'United States'), +('216.23.128.0', '216.23.132.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.23.133.0', '216.23.134.255', 2147483647, 2147483647, 'US', 'United States'), +('216.23.135.0', '216.23.142.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.23.143.0', '216.23.144.255', 2147483647, 2147483647, 'US', 'United States'), +('216.23.145.0', '216.23.159.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.23.160.0', '216.23.175.159', 2147483647, 2147483647, 'US', 'United States'), +('216.23.175.160', '216.23.175.175', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('216.23.175.176', '216.24.223.255', 2147483647, 2147483647, 'US', 'United States'), +('216.24.224.0', '216.24.239.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.24.240.0', '216.24.255.255', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('216.25.0.0', '216.25.44.221', 2147483647, 2147483647, 'US', 'United States'), +('216.25.44.222', '216.25.44.231', 2147483647, 2147483647, 'AU', 'Australia'), +('216.25.44.232', '216.25.223.255', 2147483647, 2147483647, 'US', 'United States'), +('216.25.224.0', '216.25.239.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.25.240.0', '216.26.191.255', 2147483647, 2147483647, 'US', 'United States'), +('216.26.192.0', '216.26.223.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.26.224.0', '216.32.195.191', 2147483647, 2147483647, 'US', 'United States'), +('216.32.195.192', '216.32.195.223', 2147483647, 2147483647, 'LT', 'Lithuania'), +('216.32.195.224', '216.33.75.191', 2147483647, 2147483647, 'US', 'United States'), +('216.33.75.192', '216.33.75.199', 2147483647, 2147483647, 'BM', 'Bermuda'), +('216.33.75.200', '216.33.80.79', 2147483647, 2147483647, 'US', 'United States'), +('216.33.80.80', '216.33.80.87', 2147483647, 2147483647, 'BM', 'Bermuda'), +('216.33.80.88', '216.33.109.31', 2147483647, 2147483647, 'US', 'United States'), +('216.33.109.32', '216.33.109.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('216.33.109.64', '216.33.123.127', 2147483647, 2147483647, 'US', 'United States'), +('216.33.123.128', '216.33.123.159', 2147483647, 2147483647, 'AE', 'United Arab Emirates'), +('216.33.123.160', '216.33.125.95', 2147483647, 2147483647, 'US', 'United States'), +('216.33.125.96', '216.33.125.111', 2147483647, 2147483647, 'AE', 'United Arab Emirates'), +('216.33.125.112', '216.34.7.223', 2147483647, 2147483647, 'US', 'United States'), +('216.34.7.224', '216.34.7.255', 2147483647, 2147483647, 'AU', 'Australia'), +('216.34.8.0', '216.34.91.239', 2147483647, 2147483647, 'US', 'United States'), +('216.34.91.240', '216.34.91.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.34.92.0', '216.34.131.63', 2147483647, 2147483647, 'US', 'United States'), +('216.34.131.64', '216.34.131.255', 2147483647, 2147483647, 'AU', 'Australia'), +('216.34.132.0', '216.34.139.159', 2147483647, 2147483647, 'US', 'United States'), +('216.34.139.160', '216.34.139.175', 2147483647, 2147483647, 'AU', 'Australia'), +('216.34.139.176', '216.35.45.255', 2147483647, 2147483647, 'US', 'United States'), +('216.35.46.0', '216.35.46.31', 2147483647, 2147483647, 'LT', 'Lithuania'), +('216.35.46.32', '216.35.73.15', 2147483647, 2147483647, 'US', 'United States'), +('216.35.73.16', '216.35.73.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.35.73.32', '216.35.79.127', 2147483647, 2147483647, 'US', 'United States'), +('216.35.79.128', '216.35.79.159', 2147483647, 2147483647, 'CH', 'Switzerland'), +('216.35.79.160', '216.35.160.63', 2147483647, 2147483647, 'US', 'United States'), +('216.35.160.64', '216.35.160.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.35.160.96', '216.35.213.223', 2147483647, 2147483647, 'US', 'United States'), +('216.35.213.224', '216.35.213.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('216.35.214.0', '216.35.218.239', 2147483647, 2147483647, 'US', 'United States'), +('216.35.218.240', '216.35.218.255', 2147483647, 2147483647, 'AE', 'United Arab Emirates'), +('216.35.219.0', '216.36.127.255', 2147483647, 2147483647, 'US', 'United States'), +('216.36.128.0', '216.36.191.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.36.192.0', '216.37.255.255', 2147483647, 2147483647, 'US', 'United States'), +('216.38.32.0', '216.38.56.15', 2147483647, 2147483647, 'US', 'United States'), +('216.38.56.16', '216.38.56.23', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('216.38.56.24', '216.38.56.31', 2147483647, 2147483647, 'CA', 'Canada'), +('216.38.56.32', '216.38.56.63', 2147483647, 2147483647, 'US', 'United States'), +('216.38.56.64', '216.38.56.71', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.38.56.72', '216.38.56.79', 2147483647, 2147483647, 'AU', 'Australia'), +('216.38.56.80', '216.38.56.87', 2147483647, 2147483647, 'GR', 'Greece'), +('216.38.56.88', '216.38.56.95', 2147483647, 2147483647, 'IN', 'India'), +('216.38.56.96', '216.38.56.143', 2147483647, 2147483647, 'US', 'United States'), +('216.38.56.144', '216.38.56.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.38.56.160', '216.38.56.183', 2147483647, 2147483647, 'US', 'United States'), +('216.38.56.184', '216.38.56.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.38.56.192', '216.38.56.223', 2147483647, 2147483647, 'US', 'United States'), +('216.38.56.224', '216.38.56.239', 2147483647, 2147483647, 'CA', 'Canada'), +('216.38.56.240', '216.38.56.247', 2147483647, 2147483647, 'US', 'United States'), +('216.38.56.248', '216.38.56.255', 2147483647, 2147483647, 'IN', 'India'), +('216.38.57.0', '216.38.57.31', 2147483647, 2147483647, 'US', 'United States'), +('216.38.57.32', '216.38.57.63', 2147483647, 2147483647, 'CH', 'Switzerland'), +('216.38.57.64', '216.38.57.111', 2147483647, 2147483647, 'US', 'United States'), +('216.38.57.112', '216.38.57.143', 2147483647, 2147483647, 'CA', 'Canada'), +('216.38.57.144', '216.38.57.255', 2147483647, 2147483647, 'US', 'United States'), +('216.38.58.0', '216.38.58.31', 2147483647, 2147483647, 'NL', 'Netherlands'), +('216.38.58.32', '216.40.31.255', 2147483647, 2147483647, 'US', 'United States'), +('216.40.32.0', '216.40.47.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.40.48.0', '216.40.95.255', 2147483647, 2147483647, 'US', 'United States'), +('216.40.96.0', '216.40.96.151', 2147483647, 2147483647, 'CA', 'Canada'), +('216.40.96.152', '216.40.96.159', 2147483647, 2147483647, 'CR', 'Costa Rica'), +('216.40.96.160', '216.40.96.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.40.97.0', '216.40.97.15', 2147483647, 2147483647, 'US', 'United States'), +('216.40.97.16', '216.40.97.39', 2147483647, 2147483647, 'CA', 'Canada'), +('216.40.97.40', '216.40.97.47', 2147483647, 2147483647, 'US', 'United States'), +('216.40.97.48', '216.40.100.87', 2147483647, 2147483647, 'CA', 'Canada'), +('216.40.100.88', '216.40.100.103', 2147483647, 2147483647, 'US', 'United States'), +('216.40.100.104', '216.40.100.111', 2147483647, 2147483647, 'IN', 'India'), +('216.40.100.112', '216.40.101.79', 2147483647, 2147483647, 'CA', 'Canada'), +('216.40.101.80', '216.40.101.87', 2147483647, 2147483647, 'US', 'United States'), +('216.40.101.88', '216.40.102.31', 2147483647, 2147483647, 'CA', 'Canada'), +('216.40.102.32', '216.40.102.39', 2147483647, 2147483647, 'US', 'United States'), +('216.40.102.40', '216.40.102.47', 2147483647, 2147483647, 'CA', 'Canada'), +('216.40.102.48', '216.40.102.55', 2147483647, 2147483647, 'US', 'United States'), +('216.40.102.56', '216.40.102.71', 2147483647, 2147483647, 'CA', 'Canada'), +('216.40.102.72', '216.40.102.79', 2147483647, 2147483647, 'US', 'United States'), +('216.40.102.80', '216.40.102.87', 2147483647, 2147483647, 'CA', 'Canada'), +('216.40.102.88', '216.40.102.95', 2147483647, 2147483647, 'US', 'United States'), +('216.40.102.96', '216.40.102.223', 2147483647, 2147483647, 'CA', 'Canada'), +('216.40.102.224', '216.40.102.255', 2147483647, 2147483647, 'CR', 'Costa Rica'), +('216.40.103.0', '216.40.103.103', 2147483647, 2147483647, 'CA', 'Canada'), +('216.40.103.104', '216.40.103.111', 2147483647, 2147483647, 'US', 'United States'), +('216.40.103.112', '216.40.103.159', 2147483647, 2147483647, 'CA', 'Canada'), +('216.40.103.160', '216.40.103.167', 2147483647, 2147483647, 'US', 'United States'), +('216.40.103.168', '216.40.103.247', 2147483647, 2147483647, 'CA', 'Canada'), +('216.40.103.248', '216.40.103.255', 2147483647, 2147483647, 'US', 'United States'), +('216.40.104.0', '216.40.104.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.40.105.0', '216.40.105.55', 2147483647, 2147483647, 'US', 'United States'), +('216.40.105.56', '216.40.105.159', 2147483647, 2147483647, 'CA', 'Canada'), +('216.40.105.160', '216.40.105.183', 2147483647, 2147483647, 'US', 'United States'), +('216.40.105.184', '216.40.105.191', 2147483647, 2147483647, 'CA', 'Canada'), +('216.40.105.192', '216.40.105.207', 2147483647, 2147483647, 'US', 'United States'), +('216.40.105.208', '216.40.106.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.40.107.0', '216.40.107.7', 2147483647, 2147483647, 'US', 'United States'), +('216.40.107.8', '216.40.108.159', 2147483647, 2147483647, 'CA', 'Canada'), +('216.40.108.160', '216.40.108.167', 2147483647, 2147483647, 'US', 'United States'), +('216.40.108.168', '216.40.109.239', 2147483647, 2147483647, 'CA', 'Canada'), +('216.40.109.240', '216.40.109.247', 2147483647, 2147483647, 'US', 'United States'), +('216.40.109.248', '216.40.110.71', 2147483647, 2147483647, 'CA', 'Canada'), +('216.40.110.72', '216.40.110.79', 2147483647, 2147483647, 'US', 'United States'), +('216.40.110.80', '216.40.111.119', 2147483647, 2147483647, 'CA', 'Canada'), +('216.40.111.120', '216.40.111.127', 2147483647, 2147483647, 'US', 'United States'), +('216.40.111.128', '216.40.111.167', 2147483647, 2147483647, 'CA', 'Canada'), +('216.40.111.168', '216.40.111.183', 2147483647, 2147483647, 'US', 'United States'), +('216.40.111.184', '216.40.115.199', 2147483647, 2147483647, 'CA', 'Canada'), +('216.40.115.200', '216.40.115.215', 2147483647, 2147483647, 'US', 'United States'), +('216.40.115.216', '216.40.116.15', 2147483647, 2147483647, 'CA', 'Canada'), +('216.40.116.16', '216.40.116.71', 2147483647, 2147483647, 'US', 'United States'), +('216.40.116.72', '216.40.116.127', 2147483647, 2147483647, 'CA', 'Canada'), +('216.40.116.128', '216.40.116.135', 2147483647, 2147483647, 'US', 'United States'), +('216.40.116.136', '216.40.116.247', 2147483647, 2147483647, 'CA', 'Canada'), +('216.40.116.248', '216.40.117.7', 2147483647, 2147483647, 'US', 'United States'), +('216.40.117.8', '216.40.117.159', 2147483647, 2147483647, 'CA', 'Canada'), +('216.40.117.160', '216.40.117.167', 2147483647, 2147483647, 'US', 'United States'), +('216.40.117.168', '216.40.117.239', 2147483647, 2147483647, 'CA', 'Canada'), +('216.40.117.240', '216.40.117.247', 2147483647, 2147483647, 'US', 'United States'), +('216.40.117.248', '216.40.118.23', 2147483647, 2147483647, 'CA', 'Canada'), +('216.40.118.24', '216.40.118.39', 2147483647, 2147483647, 'US', 'United States'), +('216.40.118.40', '216.40.118.87', 2147483647, 2147483647, 'CA', 'Canada'), +('216.40.118.88', '216.40.118.111', 2147483647, 2147483647, 'US', 'United States'), +('216.40.118.112', '216.40.118.135', 2147483647, 2147483647, 'CA', 'Canada'), +('216.40.118.136', '216.40.118.151', 2147483647, 2147483647, 'US', 'United States'), +('216.40.118.152', '216.40.118.159', 2147483647, 2147483647, 'CA', 'Canada'), +('216.40.118.160', '216.40.118.175', 2147483647, 2147483647, 'US', 'United States'), +('216.40.118.176', '216.40.118.183', 2147483647, 2147483647, 'CA', 'Canada'), +('216.40.118.184', '216.40.118.191', 2147483647, 2147483647, 'US', 'United States'), +('216.40.118.192', '216.40.118.239', 2147483647, 2147483647, 'CA', 'Canada'), +('216.40.118.240', '216.40.118.255', 2147483647, 2147483647, 'US', 'United States'), +('216.40.119.0', '216.40.119.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.40.120.0', '216.40.120.15', 2147483647, 2147483647, 'US', 'United States'), +('216.40.120.16', '216.40.120.95', 2147483647, 2147483647, 'CA', 'Canada'), +('216.40.120.96', '216.40.120.103', 2147483647, 2147483647, 'US', 'United States'), +('216.40.120.104', '216.40.120.127', 2147483647, 2147483647, 'CA', 'Canada'), +('216.40.120.128', '216.40.120.135', 2147483647, 2147483647, 'US', 'United States'), +('216.40.120.136', '216.40.120.175', 2147483647, 2147483647, 'CA', 'Canada'), +('216.40.120.176', '216.40.120.191', 2147483647, 2147483647, 'US', 'United States'), +('216.40.120.192', '216.40.120.215', 2147483647, 2147483647, 'CA', 'Canada'), +('216.40.120.216', '216.40.120.231', 2147483647, 2147483647, 'US', 'United States'), +('216.40.120.232', '216.40.121.71', 2147483647, 2147483647, 'CA', 'Canada'), +('216.40.121.72', '216.40.121.79', 2147483647, 2147483647, 'US', 'United States'), +('216.40.121.80', '216.40.121.127', 2147483647, 2147483647, 'CA', 'Canada'), +('216.40.121.128', '216.40.121.135', 2147483647, 2147483647, 'US', 'United States'), +('216.40.121.136', '216.40.121.207', 2147483647, 2147483647, 'CA', 'Canada'), +('216.40.121.208', '216.40.121.215', 2147483647, 2147483647, 'US', 'United States'), +('216.40.121.216', '216.40.123.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.40.124.0', '216.40.124.7', 2147483647, 2147483647, 'US', 'United States'), +('216.40.124.8', '216.40.126.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.40.127.0', '216.40.127.7', 2147483647, 2147483647, 'US', 'United States'), +('216.40.127.8', '216.40.127.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.40.128.0', '216.45.95.255', 2147483647, 2147483647, 'US', 'United States'), +('216.45.96.0', '216.45.127.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.45.128.0', '216.45.255.255', 2147483647, 2147483647, 'US', 'United States'), +('216.46.0.0', '216.46.11.47', 2147483647, 2147483647, 'CA', 'Canada'), +('216.46.11.48', '216.46.11.55', 2147483647, 2147483647, 'US', 'United States'), +('216.46.11.56', '216.46.47.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.46.64.0', '216.46.127.255', 2147483647, 2147483647, 'US', 'United States'), +('216.46.128.0', '216.46.159.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.46.160.0', '216.48.79.255', 2147483647, 2147483647, 'US', 'United States'), +('216.48.80.0', '216.48.95.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.48.96.0', '216.48.159.255', 2147483647, 2147483647, 'US', 'United States'), +('216.48.160.0', '216.48.175.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.48.176.0', '216.52.7.255', 2147483647, 2147483647, 'US', 'United States'), +('216.52.8.0', '216.52.8.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.52.8.32', '216.52.93.135', 2147483647, 2147483647, 'US', 'United States'), +('216.52.93.136', '216.52.93.143', 2147483647, 2147483647, 'BM', 'Bermuda'), +('216.52.93.144', '216.52.119.95', 2147483647, 2147483647, 'US', 'United States'), +('216.52.119.96', '216.52.119.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.52.119.128', '216.52.119.199', 2147483647, 2147483647, 'US', 'United States'), +('216.52.119.200', '216.52.119.207', 2147483647, 2147483647, 'CA', 'Canada'), +('216.52.119.208', '216.52.162.55', 2147483647, 2147483647, 'US', 'United States'), +('216.52.162.56', '216.52.162.63', 2147483647, 2147483647, 'SR', 'Suriname'), +('216.52.162.64', '216.52.171.223', 2147483647, 2147483647, 'US', 'United States'), +('216.52.171.224', '216.52.171.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('216.52.172.0', '216.52.248.111', 2147483647, 2147483647, 'US', 'United States'), +('216.52.248.112', '216.52.248.119', 2147483647, 2147483647, 'IL', 'Israel'), +('216.52.248.120', '216.53.139.255', 2147483647, 2147483647, 'US', 'United States'), +('216.53.140.0', '216.53.141.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('216.53.142.0', '216.53.186.255', 2147483647, 2147483647, 'US', 'United States'), +('216.53.187.0', '216.53.187.31', 2147483647, 2147483647, 'GE', 'Georgia'), +('216.53.187.32', '216.53.187.63', 2147483647, 2147483647, 'US', 'United States'), +('216.53.187.64', '216.53.187.127', 2147483647, 2147483647, 'DE', 'Germany'), +('216.53.187.128', '216.53.187.215', 2147483647, 2147483647, 'US', 'United States'), +('216.53.187.216', '216.53.187.255', 2147483647, 2147483647, 'DE', 'Germany'), +('216.53.188.0', '216.53.188.127', 2147483647, 2147483647, 'US', 'United States'), +('216.53.188.128', '216.53.188.159', 2147483647, 2147483647, 'BR', 'Brazil'), +('216.53.188.160', '216.53.189.191', 2147483647, 2147483647, 'US', 'United States'), +('216.53.189.192', '216.53.189.223', 2147483647, 2147483647, 'CA', 'Canada'), +('216.53.189.224', '216.53.190.255', 2147483647, 2147483647, 'US', 'United States'), +('216.53.191.0', '216.53.191.143', 2147483647, 2147483647, 'DE', 'Germany'), +('216.53.191.144', '216.53.191.191', 2147483647, 2147483647, 'US', 'United States'), +('216.53.191.192', '216.53.191.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('216.53.192.0', '216.55.95.255', 2147483647, 2147483647, 'US', 'United States'), +('216.55.96.0', '216.55.111.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.55.112.0', '216.55.142.128', 2147483647, 2147483647, 'US', 'United States'), +('216.55.142.129', '216.55.142.138', 2147483647, 2147483647, 'CA', 'Canada'), +('216.55.142.139', '216.55.154.130', 2147483647, 2147483647, 'US', 'United States'), +('216.55.154.131', '216.55.154.140', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.55.154.141', '216.55.162.143', 2147483647, 2147483647, 'US', 'United States'), +('216.55.162.144', '216.55.162.151', 2147483647, 2147483647, 'AE', 'United Arab Emirates'), +('216.55.162.152', '216.55.163.115', 2147483647, 2147483647, 'US', 'United States'), +('216.55.163.116', '216.55.163.123', 2147483647, 2147483647, 'IR', 'Iran, Islamic Republic of'), +('216.55.163.124', '216.55.164.80', 2147483647, 2147483647, 'US', 'United States'), +('216.55.164.81', '216.55.164.88', 2147483647, 2147483647, 'AU', 'Australia'), +('216.55.164.89', '216.55.176.109', 2147483647, 2147483647, 'US', 'United States'), +('216.55.176.110', '216.55.176.129', 2147483647, 2147483647, 'CA', 'Canada'), +('216.55.176.130', '216.55.191.255', 2147483647, 2147483647, 'US', 'United States'), +('216.55.192.0', '216.55.239.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.55.240.0', '216.57.175.255', 2147483647, 2147483647, 'US', 'United States'), +('216.57.176.0', '216.57.191.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.57.192.0', '216.57.199.255', 2147483647, 2147483647, 'US', 'United States'), +('216.57.200.0', '216.57.200.31', 2147483647, 2147483647, 'CA', 'Canada'), +('216.57.200.32', '216.57.203.79', 2147483647, 2147483647, 'US', 'United States'), +('216.57.203.80', '216.57.203.95', 2147483647, 2147483647, 'CA', 'Canada'), +('216.57.203.96', '216.57.205.31', 2147483647, 2147483647, 'US', 'United States'), +('216.57.205.32', '216.57.205.63', 2147483647, 2147483647, 'CA', 'Canada'), +('216.57.205.64', '216.57.208.63', 2147483647, 2147483647, 'US', 'United States'), +('216.57.208.64', '216.57.208.127', 2147483647, 2147483647, 'CA', 'Canada'), +('216.57.208.128', '216.57.217.71', 2147483647, 2147483647, 'US', 'United States'), +('216.57.217.72', '216.57.217.79', 2147483647, 2147483647, 'CA', 'Canada'), +('216.57.217.80', '216.57.221.15', 2147483647, 2147483647, 'US', 'United States'), +('216.57.221.16', '216.57.221.27', 2147483647, 2147483647, 'CA', 'Canada'), +('216.57.221.28', '216.57.255.255', 2147483647, 2147483647, 'US', 'United States'), +('216.58.0.0', '216.58.127.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.58.128.0', '216.59.63.255', 2147483647, 2147483647, 'US', 'United States'), +('216.59.128.0', '216.59.223.255', 2147483647, 2147483647, 'US', 'United States'), +('216.59.224.0', '216.59.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.60.0.0', '216.60.121.255', 2147483647, 2147483647, 'US', 'United States'), +('216.60.122.0', '216.60.122.255', 2147483647, 2147483647, 'IS', 'Iceland'), +('216.60.123.0', '216.61.80.103', 2147483647, 2147483647, 'US', 'United States'), +('216.61.80.104', '216.61.80.111', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('216.61.80.112', '216.61.81.191', 2147483647, 2147483647, 'US', 'United States'), +('216.61.81.192', '216.61.81.199', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('216.61.81.200', '216.61.82.47', 2147483647, 2147483647, 'US', 'United States'), +('216.61.82.48', '216.61.82.55', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('216.61.82.56', '216.61.140.175', 2147483647, 2147483647, 'US', 'United States'), +('216.61.140.176', '216.61.140.183', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('216.61.140.184', '216.62.110.55', 2147483647, 2147483647, 'US', 'United States'), +('216.62.110.56', '216.62.110.63', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('216.62.110.64', '216.62.111.183', 2147483647, 2147483647, 'US', 'United States'), +('216.62.111.184', '216.62.111.191', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('216.62.111.192', '216.62.111.215', 2147483647, 2147483647, 'US', 'United States'), +('216.62.111.216', '216.62.111.223', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('216.62.111.224', '216.62.232.119', 2147483647, 2147483647, 'US', 'United States'), +('216.62.232.120', '216.62.232.127', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('216.62.232.128', '216.62.247.47', 2147483647, 2147483647, 'US', 'United States'), +('216.62.247.48', '216.62.247.55', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('216.62.247.56', '216.64.197.223', 2147483647, 2147483647, 'US', 'United States'), +('216.64.197.224', '216.64.197.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.64.198.0', '216.64.198.63', 2147483647, 2147483647, 'BM', 'Bermuda'), +('216.64.198.64', '216.64.198.255', 2147483647, 2147483647, 'US', 'United States'), +('216.64.199.0', '216.64.199.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.64.199.32', '216.64.217.191', 2147483647, 2147483647, 'US', 'United States'), +('216.64.217.192', '216.64.217.207', 2147483647, 2147483647, 'CA', 'Canada'), +('216.64.217.208', '216.64.219.63', 2147483647, 2147483647, 'US', 'United States'), +('216.64.219.64', '216.64.219.79', 2147483647, 2147483647, 'CA', 'Canada'), +('216.64.219.80', '216.65.0.255', 2147483647, 2147483647, 'US', 'United States'), +('216.65.1.0', '216.65.1.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.65.2.0', '216.65.3.47', 2147483647, 2147483647, 'US', 'United States'), +('216.65.3.48', '216.65.3.63', 2147483647, 2147483647, 'SG', 'Singapore'), +('216.65.3.64', '216.65.3.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.65.3.80', '216.65.3.223', 2147483647, 2147483647, 'US', 'United States'), +('216.65.3.224', '216.65.3.239', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('216.65.3.240', '216.65.3.255', 2147483647, 2147483647, 'US', 'United States'), +('216.65.4.0', '216.65.4.15', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('216.65.4.16', '216.65.4.175', 2147483647, 2147483647, 'US', 'United States'), +('216.65.4.176', '216.65.4.191', 2147483647, 2147483647, 'VI', 'Virgin Islands, U.S.'), +('216.65.4.192', '216.65.5.191', 2147483647, 2147483647, 'US', 'United States'), +('216.65.5.192', '216.65.5.223', 2147483647, 2147483647, 'AU', 'Australia'), +('216.65.5.224', '216.65.7.63', 2147483647, 2147483647, 'US', 'United States'), +('216.65.7.64', '216.65.7.127', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('216.65.7.128', '216.65.19.255', 2147483647, 2147483647, 'US', 'United States'), +('216.65.20.0', '216.65.20.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.65.21.0', '216.65.28.255', 2147483647, 2147483647, 'US', 'United States'), +('216.65.29.0', '216.65.29.255', 2147483647, 2147483647, 'AU', 'Australia'), +('216.65.30.0', '216.65.31.95', 2147483647, 2147483647, 'US', 'United States'), +('216.65.31.96', '216.65.31.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.65.31.128', '216.65.38.223', 2147483647, 2147483647, 'US', 'United States'), +('216.65.38.224', '216.65.38.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('216.65.39.0', '216.65.40.79', 2147483647, 2147483647, 'US', 'United States'), +('216.65.40.80', '216.65.40.95', 2147483647, 2147483647, 'NL', 'Netherlands'), +('216.65.40.96', '216.65.40.111', 2147483647, 2147483647, 'IT', 'Italy'), +('216.65.40.112', '216.65.40.135', 2147483647, 2147483647, 'US', 'United States'), +('216.65.40.136', '216.65.40.143', 2147483647, 2147483647, 'CA', 'Canada'), +('216.65.40.144', '216.65.50.127', 2147483647, 2147483647, 'US', 'United States'), +('216.65.50.128', '216.65.50.255', 2147483647, 2147483647, 'DE', 'Germany'), +('216.65.51.0', '216.65.52.63', 2147483647, 2147483647, 'US', 'United States'), +('216.65.52.64', '216.65.52.127', 2147483647, 2147483647, 'DO', 'Dominican Republic'), +('216.65.52.128', '216.65.52.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('216.65.53.0', '216.65.56.255', 2147483647, 2147483647, 'US', 'United States'), +('216.65.57.0', '216.65.57.255', 2147483647, 2147483647, 'KW', 'Kuwait'), +('216.65.58.0', '216.65.61.127', 2147483647, 2147483647, 'US', 'United States'), +('216.65.61.128', '216.65.61.191', 2147483647, 2147483647, 'PH', 'Philippines'), +('216.65.61.192', '216.65.62.95', 2147483647, 2147483647, 'US', 'United States'), +('216.65.62.96', '216.65.62.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.65.62.128', '216.65.64.143', 2147483647, 2147483647, 'US', 'United States'), +('216.65.64.144', '216.65.64.159', 2147483647, 2147483647, 'ID', 'Indonesia'), +('216.65.64.160', '216.65.64.223', 2147483647, 2147483647, 'US', 'United States'), +('216.65.64.224', '216.65.64.239', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('216.65.64.240', '216.65.66.255', 2147483647, 2147483647, 'US', 'United States'), +('216.65.67.0', '216.65.67.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.65.68.0', '216.65.68.255', 2147483647, 2147483647, 'US', 'United States'), +('216.65.69.0', '216.65.69.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.65.70.0', '216.65.87.255', 2147483647, 2147483647, 'US', 'United States'), +('216.65.88.0', '216.65.88.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.65.89.0', '216.65.101.127', 2147483647, 2147483647, 'US', 'United States'), +('216.65.101.128', '216.65.101.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.65.102.0', '216.65.103.63', 2147483647, 2147483647, 'US', 'United States'), +('216.65.103.64', '216.65.103.79', 2147483647, 2147483647, 'IE', 'Ireland'), +('216.65.103.80', '216.65.103.95', 2147483647, 2147483647, 'ES', 'Spain'), +('216.65.103.96', '216.65.103.255', 2147483647, 2147483647, 'US', 'United States'), +('216.65.104.0', '216.65.104.63', 2147483647, 2147483647, 'CA', 'Canada'), +('216.65.104.64', '216.65.104.191', 2147483647, 2147483647, 'US', 'United States'), +('216.65.104.192', '216.65.104.255', 2147483647, 2147483647, 'DO', 'Dominican Republic'), +('216.65.105.0', '216.65.106.15', 2147483647, 2147483647, 'US', 'United States'), +('216.65.106.16', '216.65.106.31', 2147483647, 2147483647, 'VI', 'Virgin Islands, U.S.'), +('216.65.106.32', '216.65.120.255', 2147483647, 2147483647, 'US', 'United States'), +('216.65.121.0', '216.65.121.127', 2147483647, 2147483647, 'IT', 'Italy'), +('216.65.121.128', '216.65.159.255', 2147483647, 2147483647, 'US', 'United States'), +('216.65.160.0', '216.65.191.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.65.192.0', '216.66.15.255', 2147483647, 2147483647, 'US', 'United States'), +('216.66.16.0', '216.66.16.255', 2147483647, 2147483647, 'IT', 'Italy'), +('216.66.17.0', '216.66.127.255', 2147483647, 2147483647, 'US', 'United States'), +('216.66.128.0', '216.66.207.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.66.208.0', '216.67.245.95', 2147483647, 2147483647, 'US', 'United States'), +('216.67.245.96', '216.67.245.103', 2147483647, 2147483647, 'IN', 'India'), +('216.67.245.104', '216.72.3.255', 2147483647, 2147483647, 'US', 'United States'), +('216.72.4.0', '216.72.7.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('216.72.8.0', '216.72.23.255', 2147483647, 2147483647, 'CL', 'Chile'), +('216.72.24.0', '216.72.27.255', 2147483647, 2147483647, 'US', 'United States'), +('216.72.28.0', '216.72.31.255', 2147483647, 2147483647, 'GT', 'Guatemala'), +('216.72.32.0', '216.72.43.255', 2147483647, 2147483647, 'IL', 'Israel'), +('216.72.44.0', '216.72.45.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('216.72.46.0', '216.72.46.127', 2147483647, 2147483647, 'US', 'United States'), +('216.72.46.128', '216.72.46.191', 2147483647, 2147483647, 'VE', 'Venezuela'), +('216.72.46.192', '216.72.62.255', 2147483647, 2147483647, 'US', 'United States'), +('216.72.63.0', '216.72.63.255', 2147483647, 2147483647, 'HN', 'Honduras'), +('216.72.64.0', '216.72.66.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('216.72.67.0', '216.72.68.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('216.72.69.0', '216.72.69.255', 2147483647, 2147483647, 'US', 'United States'), +('216.72.70.0', '216.72.71.255', 2147483647, 2147483647, 'IL', 'Israel'), +('216.72.72.0', '216.72.73.255', 2147483647, 2147483647, 'US', 'United States'), +('216.72.74.0', '216.72.77.255', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('216.72.78.0', '216.72.78.255', 2147483647, 2147483647, 'HN', 'Honduras'), +('216.72.79.0', '216.72.79.255', 2147483647, 2147483647, 'US', 'United States'), +('216.72.80.0', '216.72.81.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('216.72.82.0', '216.72.87.255', 2147483647, 2147483647, 'HN', 'Honduras'), +('216.72.88.0', '216.72.99.255', 2147483647, 2147483647, 'US', 'United States'), +('216.72.100.0', '216.72.103.255', 2147483647, 2147483647, 'PR', 'Puerto Rico'), +('216.72.104.0', '216.72.111.255', 2147483647, 2147483647, 'NG', 'Nigeria'), +('216.72.112.0', '216.72.112.255', 2147483647, 2147483647, 'PA', 'Panama'), +('216.72.113.0', '216.72.115.255', 2147483647, 2147483647, 'HN', 'Honduras'), +('216.72.116.0', '216.72.116.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('216.72.117.0', '216.72.117.255', 2147483647, 2147483647, 'IL', 'Israel'), +('216.72.118.0', '216.72.118.255', 2147483647, 2147483647, 'HN', 'Honduras'), +('216.72.119.0', '216.72.123.255', 2147483647, 2147483647, 'SV', 'El Salvador'), +('216.72.124.0', '216.72.124.255', 2147483647, 2147483647, 'GT', 'Guatemala'), +('216.72.125.0', '216.72.125.255', 2147483647, 2147483647, 'US', 'United States'), +('216.72.126.0', '216.72.134.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('216.72.135.0', '216.72.142.255', 2147483647, 2147483647, 'US', 'United States'), +('216.72.143.0', '216.72.143.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('216.72.144.0', '216.72.151.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('216.72.152.0', '216.72.153.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('216.72.154.0', '216.72.154.255', 2147483647, 2147483647, 'US', 'United States'), +('216.72.155.0', '216.72.155.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('216.72.156.0', '216.72.157.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('216.72.158.0', '216.72.159.255', 2147483647, 2147483647, 'US', 'United States'), +('216.72.160.0', '216.72.191.255', 2147483647, 2147483647, 'CL', 'Chile'), +('216.72.192.0', '216.72.193.255', 2147483647, 2147483647, 'US', 'United States'), +('216.72.194.0', '216.72.195.255', 2147483647, 2147483647, 'HN', 'Honduras'), +('216.72.196.0', '216.72.196.255', 2147483647, 2147483647, 'SZ', 'Swaziland'), +('216.72.197.0', '216.72.201.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('216.72.202.0', '216.72.202.255', 2147483647, 2147483647, 'US', 'United States'), +('216.72.203.0', '216.72.204.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('216.72.205.0', '216.72.221.255', 2147483647, 2147483647, 'US', 'United States'), +('216.72.222.0', '216.72.223.255', 2147483647, 2147483647, 'PA', 'Panama'), +('216.72.224.0', '216.72.224.255', 2147483647, 2147483647, 'US', 'United States'), +('216.72.225.0', '216.72.225.255', 2147483647, 2147483647, 'CR', 'Costa Rica'), +('216.72.226.0', '216.72.226.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('216.72.227.0', '216.72.230.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('216.72.231.0', '216.72.231.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('216.72.232.0', '216.72.234.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('216.72.235.0', '216.72.235.255', 2147483647, 2147483647, 'US', 'United States'), +('216.72.236.0', '216.72.236.255', 2147483647, 2147483647, 'VE', 'Venezuela'), +('216.72.237.0', '216.72.237.255', 2147483647, 2147483647, 'BS', 'Bahamas'), +('216.72.238.0', '216.73.63.255', 2147483647, 2147483647, 'US', 'United States'), +('216.73.64.0', '216.73.79.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.73.80.0', '216.74.132.223', 2147483647, 2147483647, 'US', 'United States'), +('216.74.132.224', '216.74.132.255', 2147483647, 2147483647, 'IL', 'Israel'), +('216.74.133.0', '216.74.147.191', 2147483647, 2147483647, 'US', 'United States'), +('216.74.147.192', '216.74.147.199', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.74.147.200', '216.74.151.63', 2147483647, 2147483647, 'US', 'United States'), +('216.74.151.64', '216.74.151.79', 2147483647, 2147483647, 'IE', 'Ireland'), +('216.74.151.80', '216.74.151.159', 2147483647, 2147483647, 'US', 'United States'), +('216.74.151.160', '216.74.151.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.74.151.192', '216.74.153.207', 2147483647, 2147483647, 'US', 'United States'), +('216.74.153.208', '216.74.153.215', 2147483647, 2147483647, 'NO', 'Norway'), +('216.74.153.216', '216.74.155.223', 2147483647, 2147483647, 'US', 'United States'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('216.74.155.224', '216.74.155.239', 2147483647, 2147483647, 'NO', 'Norway'), +('216.74.155.240', '216.74.163.159', 2147483647, 2147483647, 'US', 'United States'), +('216.74.163.160', '216.74.163.167', 2147483647, 2147483647, 'NO', 'Norway'), +('216.74.163.168', '216.74.164.63', 2147483647, 2147483647, 'US', 'United States'), +('216.74.164.64', '216.74.164.79', 2147483647, 2147483647, 'CY', 'Cyprus'), +('216.74.164.80', '216.74.168.127', 2147483647, 2147483647, 'US', 'United States'), +('216.74.168.128', '216.74.169.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.74.169.64', '216.74.169.255', 2147483647, 2147483647, 'US', 'United States'), +('216.74.170.0', '216.74.170.255', 2147483647, 2147483647, 'NO', 'Norway'), +('216.74.171.0', '216.74.172.63', 2147483647, 2147483647, 'US', 'United States'), +('216.74.172.64', '216.74.172.79', 2147483647, 2147483647, 'CA', 'Canada'), +('216.74.172.80', '216.74.172.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.74.172.96', '216.75.159.255', 2147483647, 2147483647, 'US', 'United States'), +('216.75.160.0', '216.75.191.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.75.192.0', '216.80.255.255', 2147483647, 2147483647, 'US', 'United States'), +('216.81.0.0', '216.81.31.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.81.32.0', '216.81.47.255', 2147483647, 2147483647, 'US', 'United States'), +('216.81.48.0', '216.81.63.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.81.64.0', '216.82.255.255', 2147483647, 2147483647, 'US', 'United States'), +('216.83.0.0', '216.83.31.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.83.32.0', '216.83.53.255', 2147483647, 2147483647, 'US', 'United States'), +('216.83.54.0', '216.83.55.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.83.56.0', '216.86.95.255', 2147483647, 2147483647, 'US', 'United States'), +('216.86.96.0', '216.86.127.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.86.128.0', '216.88.63.255', 2147483647, 2147483647, 'US', 'United States'), +('216.88.64.0', '216.88.64.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.88.65.0', '216.89.96.7', 2147483647, 2147483647, 'US', 'United States'), +('216.89.96.8', '216.89.96.15', 2147483647, 2147483647, 'CA', 'Canada'), +('216.89.96.16', '216.89.96.183', 2147483647, 2147483647, 'US', 'United States'), +('216.89.96.184', '216.89.96.191', 2147483647, 2147483647, 'CA', 'Canada'), +('216.89.96.192', '216.89.100.255', 2147483647, 2147483647, 'US', 'United States'), +('216.89.101.0', '216.89.101.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.89.102.0', '216.89.196.15', 2147483647, 2147483647, 'US', 'United States'), +('216.89.196.16', '216.89.196.31', 2147483647, 2147483647, 'CA', 'Canada'), +('216.89.196.32', '216.89.196.111', 2147483647, 2147483647, 'US', 'United States'), +('216.89.196.112', '216.89.196.127', 2147483647, 2147483647, 'CA', 'Canada'), +('216.89.196.128', '216.89.220.255', 2147483647, 2147483647, 'US', 'United States'), +('216.89.221.0', '216.89.221.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.89.222.0', '216.90.33.31', 2147483647, 2147483647, 'US', 'United States'), +('216.90.33.32', '216.90.33.63', 2147483647, 2147483647, 'CA', 'Canada'), +('216.90.33.64', '216.90.48.255', 2147483647, 2147483647, 'US', 'United States'), +('216.90.49.0', '216.90.49.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.90.50.0', '216.90.50.255', 2147483647, 2147483647, 'US', 'United States'), +('216.90.51.0', '216.90.51.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.90.52.0', '216.90.121.223', 2147483647, 2147483647, 'US', 'United States'), +('216.90.121.224', '216.90.121.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.90.122.0', '216.90.240.215', 2147483647, 2147483647, 'US', 'United States'), +('216.90.240.216', '216.90.240.223', 2147483647, 2147483647, 'CA', 'Canada'), +('216.90.240.224', '216.90.240.247', 2147483647, 2147483647, 'US', 'United States'), +('216.90.240.248', '216.90.240.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.90.241.0', '216.90.242.255', 2147483647, 2147483647, 'US', 'United States'), +('216.90.243.0', '216.90.243.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.90.244.0', '216.90.254.31', 2147483647, 2147483647, 'US', 'United States'), +('216.90.254.32', '216.90.254.63', 2147483647, 2147483647, 'CA', 'Canada'), +('216.90.254.64', '216.91.66.223', 2147483647, 2147483647, 'US', 'United States'), +('216.91.66.224', '216.91.66.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.91.67.0', '216.91.130.63', 2147483647, 2147483647, 'US', 'United States'), +('216.91.130.64', '216.91.130.95', 2147483647, 2147483647, 'CA', 'Canada'), +('216.91.130.96', '216.91.132.31', 2147483647, 2147483647, 'US', 'United States'), +('216.91.132.32', '216.91.132.39', 2147483647, 2147483647, 'CA', 'Canada'), +('216.91.132.40', '216.91.132.55', 2147483647, 2147483647, 'US', 'United States'), +('216.91.132.56', '216.91.132.63', 2147483647, 2147483647, 'CA', 'Canada'), +('216.91.132.64', '216.93.255.255', 2147483647, 2147483647, 'US', 'United States'), +('216.94.0.0', '216.94.1.63', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.1.64', '216.94.1.95', 2147483647, 2147483647, 'US', 'United States'), +('216.94.1.96', '216.94.1.159', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.1.160', '216.94.1.191', 2147483647, 2147483647, 'US', 'United States'), +('216.94.1.192', '216.94.1.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.2.0', '216.94.2.31', 2147483647, 2147483647, 'US', 'United States'), +('216.94.2.32', '216.94.2.47', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.2.48', '216.94.2.79', 2147483647, 2147483647, 'US', 'United States'), +('216.94.2.80', '216.94.2.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.3.0', '216.94.3.7', 2147483647, 2147483647, 'US', 'United States'), +('216.94.3.8', '216.94.3.15', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.3.16', '216.94.3.23', 2147483647, 2147483647, 'US', 'United States'), +('216.94.3.24', '216.94.3.31', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.3.32', '216.94.3.255', 2147483647, 2147483647, 'US', 'United States'), +('216.94.4.0', '216.94.5.15', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.5.16', '216.94.5.31', 2147483647, 2147483647, 'US', 'United States'), +('216.94.5.32', '216.94.5.63', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.5.64', '216.94.5.79', 2147483647, 2147483647, 'US', 'United States'), +('216.94.5.80', '216.94.5.95', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.5.96', '216.94.5.111', 2147483647, 2147483647, 'US', 'United States'), +('216.94.5.112', '216.94.5.127', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.5.128', '216.94.5.143', 2147483647, 2147483647, 'US', 'United States'), +('216.94.5.144', '216.94.5.159', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.5.160', '216.94.5.175', 2147483647, 2147483647, 'US', 'United States'), +('216.94.5.176', '216.94.5.207', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.5.208', '216.94.5.223', 2147483647, 2147483647, 'US', 'United States'), +('216.94.5.224', '216.94.6.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.7.0', '216.94.7.63', 2147483647, 2147483647, 'US', 'United States'), +('216.94.7.64', '216.94.7.191', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.7.192', '216.94.7.255', 2147483647, 2147483647, 'US', 'United States'), +('216.94.8.0', '216.94.8.127', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.8.128', '216.94.8.191', 2147483647, 2147483647, 'US', 'United States'), +('216.94.8.192', '216.94.11.47', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.11.48', '216.94.11.55', 2147483647, 2147483647, 'US', 'United States'), +('216.94.11.56', '216.94.11.71', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.11.72', '216.94.11.79', 2147483647, 2147483647, 'US', 'United States'), +('216.94.11.80', '216.94.11.159', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.11.160', '216.94.11.167', 2147483647, 2147483647, 'US', 'United States'), +('216.94.11.168', '216.94.13.31', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.13.32', '216.94.13.39', 2147483647, 2147483647, 'US', 'United States'), +('216.94.13.40', '216.94.13.63', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.13.64', '216.94.13.71', 2147483647, 2147483647, 'US', 'United States'), +('216.94.13.72', '216.94.14.31', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.14.32', '216.94.14.63', 2147483647, 2147483647, 'US', 'United States'), +('216.94.14.64', '216.94.14.127', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.14.128', '216.94.14.159', 2147483647, 2147483647, 'US', 'United States'), +('216.94.14.160', '216.94.14.223', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.14.224', '216.94.15.95', 2147483647, 2147483647, 'US', 'United States'), +('216.94.15.96', '216.94.15.127', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.15.128', '216.94.15.159', 2147483647, 2147483647, 'US', 'United States'), +('216.94.15.160', '216.94.15.223', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.15.224', '216.94.15.255', 2147483647, 2147483647, 'US', 'United States'), +('216.94.16.0', '216.94.16.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.17.0', '216.94.18.255', 2147483647, 2147483647, 'US', 'United States'), +('216.94.19.0', '216.94.19.15', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.19.16', '216.94.19.31', 2147483647, 2147483647, 'US', 'United States'), +('216.94.19.32', '216.94.19.63', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.19.64', '216.94.19.79', 2147483647, 2147483647, 'US', 'United States'), +('216.94.19.80', '216.94.19.95', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.19.96', '216.94.19.111', 2147483647, 2147483647, 'US', 'United States'), +('216.94.19.112', '216.94.19.159', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.19.160', '216.94.19.175', 2147483647, 2147483647, 'US', 'United States'), +('216.94.19.176', '216.94.20.127', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.20.128', '216.94.20.191', 2147483647, 2147483647, 'US', 'United States'), +('216.94.20.192', '216.94.20.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.21.0', '216.94.21.255', 2147483647, 2147483647, 'US', 'United States'), +('216.94.22.0', '216.94.28.159', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.28.160', '216.94.28.191', 2147483647, 2147483647, 'US', 'United States'), +('216.94.28.192', '216.94.34.47', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.34.48', '216.94.34.63', 2147483647, 2147483647, 'US', 'United States'), +('216.94.34.64', '216.94.41.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.42.0', '216.94.42.255', 2147483647, 2147483647, 'US', 'United States'), +('216.94.43.0', '216.94.44.87', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.44.88', '216.94.44.95', 2147483647, 2147483647, 'US', 'United States'), +('216.94.44.96', '216.94.44.183', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.44.184', '216.94.44.191', 2147483647, 2147483647, 'US', 'United States'), +('216.94.44.192', '216.94.44.239', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.44.240', '216.94.44.255', 2147483647, 2147483647, 'US', 'United States'), +('216.94.45.0', '216.94.46.31', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.46.32', '216.94.46.63', 2147483647, 2147483647, 'US', 'United States'), +('216.94.46.64', '216.94.47.63', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.47.64', '216.94.47.255', 2147483647, 2147483647, 'US', 'United States'), +('216.94.48.0', '216.94.48.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.49.0', '216.94.49.15', 2147483647, 2147483647, 'US', 'United States'), +('216.94.49.16', '216.94.50.119', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.50.120', '216.94.50.179', 2147483647, 2147483647, 'US', 'United States'), +('216.94.50.180', '216.94.53.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.54.0', '216.94.54.63', 2147483647, 2147483647, 'US', 'United States'), +('216.94.54.64', '216.94.55.63', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.55.64', '216.94.55.127', 2147483647, 2147483647, 'US', 'United States'), +('216.94.55.128', '216.94.56.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.57.0', '216.94.57.63', 2147483647, 2147483647, 'IL', 'Israel'), +('216.94.57.64', '216.94.57.127', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.57.128', '216.94.57.255', 2147483647, 2147483647, 'US', 'United States'), +('216.94.58.0', '216.94.59.95', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.59.96', '216.94.59.191', 2147483647, 2147483647, 'US', 'United States'), +('216.94.59.192', '216.94.60.95', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.60.96', '216.94.60.111', 2147483647, 2147483647, 'US', 'United States'), +('216.94.60.112', '216.94.64.95', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.64.96', '216.94.64.127', 2147483647, 2147483647, 'US', 'United States'), +('216.94.64.128', '216.94.64.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.65.0', '216.94.65.255', 2147483647, 2147483647, 'US', 'United States'), +('216.94.66.0', '216.94.69.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.70.0', '216.94.70.15', 2147483647, 2147483647, 'US', 'United States'), +('216.94.70.16', '216.94.70.79', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.70.80', '216.94.70.95', 2147483647, 2147483647, 'US', 'United States'), +('216.94.70.96', '216.94.70.127', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.70.128', '216.94.70.143', 2147483647, 2147483647, 'US', 'United States'), +('216.94.70.144', '216.94.70.191', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.70.192', '216.94.70.207', 2147483647, 2147483647, 'US', 'United States'), +('216.94.70.208', '216.94.70.223', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.70.224', '216.94.70.239', 2147483647, 2147483647, 'US', 'United States'), +('216.94.70.240', '216.94.71.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.72.0', '216.94.72.255', 2147483647, 2147483647, 'US', 'United States'), +('216.94.73.0', '216.94.73.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.74.0', '216.94.74.63', 2147483647, 2147483647, 'US', 'United States'), +('216.94.74.64', '216.94.75.95', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.75.96', '216.94.75.127', 2147483647, 2147483647, 'US', 'United States'), +('216.94.75.128', '216.94.75.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.76.0', '216.94.76.255', 2147483647, 2147483647, 'US', 'United States'), +('216.94.77.0', '216.94.77.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.78.0', '216.94.78.255', 2147483647, 2147483647, 'US', 'United States'), +('216.94.79.0', '216.94.80.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.81.0', '216.94.81.255', 2147483647, 2147483647, 'US', 'United States'), +('216.94.82.0', '216.94.83.63', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.83.64', '216.94.83.95', 2147483647, 2147483647, 'US', 'United States'), +('216.94.83.96', '216.94.83.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.84.0', '216.94.84.127', 2147483647, 2147483647, 'US', 'United States'), +('216.94.84.128', '216.94.84.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.85.0', '216.94.85.15', 2147483647, 2147483647, 'US', 'United States'), +('216.94.85.16', '216.94.85.23', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.85.24', '216.94.85.31', 2147483647, 2147483647, 'US', 'United States'), +('216.94.85.32', '216.94.85.47', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.85.48', '216.94.85.55', 2147483647, 2147483647, 'US', 'United States'), +('216.94.85.56', '216.94.85.95', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.85.96', '216.94.85.103', 2147483647, 2147483647, 'US', 'United States'), +('216.94.85.104', '216.94.85.135', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.85.136', '216.94.85.143', 2147483647, 2147483647, 'US', 'United States'), +('216.94.85.144', '216.94.85.159', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.85.160', '216.94.85.175', 2147483647, 2147483647, 'US', 'United States'), +('216.94.85.176', '216.94.85.183', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.85.184', '216.94.85.191', 2147483647, 2147483647, 'US', 'United States'), +('216.94.85.192', '216.94.85.199', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.85.200', '216.94.85.215', 2147483647, 2147483647, 'US', 'United States'), +('216.94.85.216', '216.94.85.231', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.85.232', '216.94.85.239', 2147483647, 2147483647, 'US', 'United States'), +('216.94.85.240', '216.94.85.247', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.85.248', '216.94.86.255', 2147483647, 2147483647, 'US', 'United States'), +('216.94.87.0', '216.94.87.47', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.87.48', '216.94.87.63', 2147483647, 2147483647, 'US', 'United States'), +('216.94.87.64', '216.94.90.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.91.0', '216.94.92.255', 2147483647, 2147483647, 'US', 'United States'), +('216.94.93.0', '216.94.97.31', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.97.32', '216.94.97.47', 2147483647, 2147483647, 'US', 'United States'), +('216.94.97.48', '216.94.97.79', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.97.80', '216.94.97.111', 2147483647, 2147483647, 'US', 'United States'), +('216.94.97.112', '216.94.97.127', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.97.128', '216.94.97.143', 2147483647, 2147483647, 'US', 'United States'), +('216.94.97.144', '216.94.98.63', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.98.64', '216.94.98.127', 2147483647, 2147483647, 'US', 'United States'), +('216.94.98.128', '216.94.98.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.99.0', '216.94.99.127', 2147483647, 2147483647, 'US', 'United States'), +('216.94.99.128', '216.94.102.47', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.102.48', '216.94.102.63', 2147483647, 2147483647, 'US', 'United States'), +('216.94.102.64', '216.94.102.175', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.102.176', '216.94.102.191', 2147483647, 2147483647, 'US', 'United States'), +('216.94.102.192', '216.94.102.207', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.102.208', '216.94.102.239', 2147483647, 2147483647, 'US', 'United States'), +('216.94.102.240', '216.94.104.63', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.104.64', '216.94.104.127', 2147483647, 2147483647, 'US', 'United States'), +('216.94.104.128', '216.94.104.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.105.0', '216.94.105.255', 2147483647, 2147483647, 'CN', 'China'), +('216.94.106.0', '216.94.113.15', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.113.16', '216.94.113.31', 2147483647, 2147483647, 'US', 'United States'), +('216.94.113.32', '216.94.113.47', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.113.48', '216.94.113.63', 2147483647, 2147483647, 'US', 'United States'), +('216.94.113.64', '216.94.113.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.114.0', '216.94.114.255', 2147483647, 2147483647, 'US', 'United States'), +('216.94.115.0', '216.94.116.127', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.116.128', '216.94.116.255', 2147483647, 2147483647, 'CN', 'China'), +('216.94.117.0', '216.94.117.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.118.0', '216.94.118.255', 2147483647, 2147483647, 'US', 'United States'), +('216.94.119.0', '216.94.125.207', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.125.208', '216.94.125.223', 2147483647, 2147483647, 'US', 'United States'), +('216.94.125.224', '216.94.126.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.127.0', '216.94.127.255', 2147483647, 2147483647, 'US', 'United States'), +('216.94.128.0', '216.94.128.63', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.128.64', '216.94.128.255', 2147483647, 2147483647, 'US', 'United States'), +('216.94.129.0', '216.94.137.47', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.137.48', '216.94.137.79', 2147483647, 2147483647, 'US', 'United States'), +('216.94.137.80', '216.94.137.143', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.137.144', '216.94.137.175', 2147483647, 2147483647, 'US', 'United States'), +('216.94.137.176', '216.94.137.223', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.137.224', '216.94.137.255', 2147483647, 2147483647, 'US', 'United States'), +('216.94.138.0', '216.94.138.7', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.138.8', '216.94.138.15', 2147483647, 2147483647, 'US', 'United States'), +('216.94.138.16', '216.94.138.47', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.138.48', '216.94.138.63', 2147483647, 2147483647, 'US', 'United States'), +('216.94.138.64', '216.94.138.103', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.138.104', '216.94.138.127', 2147483647, 2147483647, 'US', 'United States'), +('216.94.138.128', '216.94.138.159', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.138.160', '216.94.138.175', 2147483647, 2147483647, 'US', 'United States'), +('216.94.138.176', '216.94.141.47', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.141.48', '216.94.141.63', 2147483647, 2147483647, 'US', 'United States'), +('216.94.141.64', '216.94.141.239', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.141.240', '216.94.141.255', 2147483647, 2147483647, 'US', 'United States'), +('216.94.142.0', '216.94.142.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.143.0', '216.94.145.63', 2147483647, 2147483647, 'US', 'United States'), +('216.94.145.64', '216.94.145.127', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.145.128', '216.94.145.191', 2147483647, 2147483647, 'US', 'United States'), +('216.94.145.192', '216.94.145.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.146.0', '216.94.146.255', 2147483647, 2147483647, 'US', 'United States'), +('216.94.147.0', '216.94.147.159', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.147.160', '216.94.147.191', 2147483647, 2147483647, 'US', 'United States'), +('216.94.147.192', '216.94.151.127', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.151.128', '216.94.151.191', 2147483647, 2147483647, 'US', 'United States'), +('216.94.151.192', '216.94.155.127', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.155.128', '216.94.155.159', 2147483647, 2147483647, 'US', 'United States'), +('216.94.155.160', '216.94.157.31', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.157.32', '216.94.157.47', 2147483647, 2147483647, 'US', 'United States'), +('216.94.157.48', '216.94.157.207', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.157.208', '216.94.157.223', 2147483647, 2147483647, 'AG', 'Antigua and Barbuda'), +('216.94.157.224', '216.94.157.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.158.0', '216.94.161.255', 2147483647, 2147483647, 'US', 'United States'), +('216.94.162.0', '216.94.163.127', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.163.128', '216.94.163.255', 2147483647, 2147483647, 'US', 'United States'), +('216.94.164.0', '216.94.166.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.167.0', '216.94.167.255', 2147483647, 2147483647, 'US', 'United States'), +('216.94.168.0', '216.94.171.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.172.0', '216.94.172.31', 2147483647, 2147483647, 'CH', 'Switzerland'), +('216.94.172.32', '216.94.172.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.173.0', '216.94.173.63', 2147483647, 2147483647, 'US', 'United States'), +('216.94.173.64', '216.94.173.191', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.173.192', '216.94.173.255', 2147483647, 2147483647, 'US', 'United States'), +('216.94.174.0', '216.94.174.143', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.174.144', '216.94.174.159', 2147483647, 2147483647, 'US', 'United States'), +('216.94.174.160', '216.94.174.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.175.0', '216.94.176.63', 2147483647, 2147483647, 'US', 'United States'), +('216.94.176.64', '216.94.176.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.177.0', '216.94.177.255', 2147483647, 2147483647, 'US', 'United States'), +('216.94.178.0', '216.94.178.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.179.0', '216.94.179.255', 2147483647, 2147483647, 'US', 'United States'), +('216.94.180.0', '216.94.180.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.181.0', '216.94.181.255', 2147483647, 2147483647, 'US', 'United States'), +('216.94.182.0', '216.94.183.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.184.0', '216.94.184.175', 2147483647, 2147483647, 'US', 'United States'), +('216.94.184.176', '216.94.184.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.185.0', '216.94.185.255', 2147483647, 2147483647, 'US', 'United States'), +('216.94.186.0', '216.94.186.191', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.186.192', '216.94.186.255', 2147483647, 2147483647, 'US', 'United States'), +('216.94.187.0', '216.94.190.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.191.0', '216.94.192.255', 2147483647, 2147483647, 'US', 'United States'), +('216.94.193.0', '216.94.194.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.195.0', '216.94.196.255', 2147483647, 2147483647, 'US', 'United States'), +('216.94.197.0', '216.94.200.31', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.200.32', '216.94.200.47', 2147483647, 2147483647, 'US', 'United States'), +('216.94.200.48', '216.94.200.79', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.200.80', '216.94.200.95', 2147483647, 2147483647, 'US', 'United States'), +('216.94.200.96', '216.94.201.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.202.0', '216.94.202.255', 2147483647, 2147483647, 'US', 'United States'), +('216.94.203.0', '216.94.208.47', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.208.48', '216.94.208.63', 2147483647, 2147483647, 'US', 'United States'), +('216.94.208.64', '216.94.208.239', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.208.240', '216.94.208.255', 2147483647, 2147483647, 'US', 'United States'), +('216.94.209.0', '216.94.209.31', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.209.32', '216.94.209.255', 2147483647, 2147483647, 'US', 'United States'), +('216.94.210.0', '216.94.210.175', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.210.176', '216.94.210.191', 2147483647, 2147483647, 'US', 'United States'), +('216.94.210.192', '216.94.211.254', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.211.255', '216.94.212.7', 2147483647, 2147483647, 'US', 'United States'), +('216.94.212.8', '216.94.212.55', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.212.56', '216.94.212.63', 2147483647, 2147483647, 'US', 'United States'), +('216.94.212.64', '216.94.212.183', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.212.184', '216.94.212.191', 2147483647, 2147483647, 'US', 'United States'), +('216.94.212.192', '216.94.213.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.214.0', '216.94.214.255', 2147483647, 2147483647, 'US', 'United States'), +('216.94.215.0', '216.94.215.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.216.0', '216.94.216.31', 2147483647, 2147483647, 'US', 'United States'), +('216.94.216.32', '216.94.216.159', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.216.160', '216.94.216.223', 2147483647, 2147483647, 'US', 'United States'), +('216.94.216.224', '216.94.217.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.218.0', '216.94.218.7', 2147483647, 2147483647, 'US', 'United States'), +('216.94.218.8', '216.94.218.15', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.218.16', '216.94.218.23', 2147483647, 2147483647, 'US', 'United States'), +('216.94.218.24', '216.94.218.31', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.218.32', '216.94.218.39', 2147483647, 2147483647, 'US', 'United States'), +('216.94.218.40', '216.94.218.55', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.218.56', '216.94.218.71', 2147483647, 2147483647, 'US', 'United States'), +('216.94.218.72', '216.94.218.87', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.218.88', '216.94.218.95', 2147483647, 2147483647, 'US', 'United States'), +('216.94.218.96', '216.94.218.151', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.218.152', '216.94.218.167', 2147483647, 2147483647, 'US', 'United States'), +('216.94.218.168', '216.94.218.183', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.218.184', '216.94.218.191', 2147483647, 2147483647, 'US', 'United States'), +('216.94.218.192', '216.94.218.199', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.218.200', '216.94.218.207', 2147483647, 2147483647, 'US', 'United States'), +('216.94.218.208', '216.94.218.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.219.0', '216.94.219.255', 2147483647, 2147483647, 'US', 'United States'), +('216.94.220.0', '216.94.220.127', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.220.128', '216.94.221.127', 2147483647, 2147483647, 'US', 'United States'), +('216.94.221.128', '216.94.226.47', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.226.48', '216.94.226.255', 2147483647, 2147483647, 'US', 'United States'), +('216.94.227.0', '216.94.228.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.229.0', '216.94.230.255', 2147483647, 2147483647, 'KW', 'Kuwait'), +('216.94.231.0', '216.94.232.63', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.232.64', '216.94.232.95', 2147483647, 2147483647, 'US', 'United States'), +('216.94.232.96', '216.94.238.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.239.0', '216.94.239.255', 2147483647, 2147483647, 'KW', 'Kuwait'), +('216.94.240.0', '216.94.241.127', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.241.128', '216.94.242.255', 2147483647, 2147483647, 'US', 'United States'), +('216.94.243.0', '216.94.245.63', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.245.64', '216.94.245.95', 2147483647, 2147483647, 'US', 'United States'), +('216.94.245.96', '216.94.245.127', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.245.128', '216.94.245.159', 2147483647, 2147483647, 'US', 'United States'), +('216.94.245.160', '216.94.245.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.246.0', '216.94.247.63', 2147483647, 2147483647, 'US', 'United States'), +('216.94.247.64', '216.94.253.191', 2147483647, 2147483647, 'CA', 'Canada'), +('216.94.253.192', '216.94.253.255', 2147483647, 2147483647, 'US', 'United States'), +('216.94.254.0', '216.94.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.95.0.0', '216.95.5.159', 2147483647, 2147483647, 'US', 'United States'), +('216.95.5.160', '216.95.5.175', 2147483647, 2147483647, 'CA', 'Canada'), +('216.95.5.176', '216.95.5.207', 2147483647, 2147483647, 'US', 'United States'), +('216.95.5.208', '216.95.5.223', 2147483647, 2147483647, 'CA', 'Canada'), +('216.95.5.224', '216.95.143.255', 2147483647, 2147483647, 'US', 'United States'), +('216.95.144.0', '216.95.145.63', 2147483647, 2147483647, 'CA', 'Canada'), +('216.95.145.64', '216.95.145.95', 2147483647, 2147483647, 'US', 'United States'), +('216.95.145.96', '216.95.145.191', 2147483647, 2147483647, 'CA', 'Canada'), +('216.95.145.192', '216.95.145.255', 2147483647, 2147483647, 'US', 'United States'), +('216.95.146.0', '216.95.154.31', 2147483647, 2147483647, 'CA', 'Canada'), +('216.95.154.32', '216.95.154.63', 2147483647, 2147483647, 'US', 'United States'), +('216.95.154.64', '216.95.154.223', 2147483647, 2147483647, 'CA', 'Canada'), +('216.95.154.224', '216.95.154.255', 2147483647, 2147483647, 'US', 'United States'), +('216.95.155.0', '216.95.157.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.95.158.0', '216.95.158.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.95.158.16', '216.95.158.223', 2147483647, 2147483647, 'CA', 'Canada'), +('216.95.158.224', '216.95.159.255', 2147483647, 2147483647, 'US', 'United States'), +('216.95.160.0', '216.95.168.63', 2147483647, 2147483647, 'CA', 'Canada'), +('216.95.168.64', '216.95.168.127', 2147483647, 2147483647, 'US', 'United States'), +('216.95.168.128', '216.95.168.191', 2147483647, 2147483647, 'CA', 'Canada'), +('216.95.168.192', '216.95.168.255', 2147483647, 2147483647, 'US', 'United States'), +('216.95.169.0', '216.95.169.63', 2147483647, 2147483647, 'CA', 'Canada'), +('216.95.169.64', '216.95.169.95', 2147483647, 2147483647, 'US', 'United States'), +('216.95.169.96', '216.95.169.159', 2147483647, 2147483647, 'CA', 'Canada'), +('216.95.169.160', '216.95.169.191', 2147483647, 2147483647, 'US', 'United States'), +('216.95.169.192', '216.95.172.15', 2147483647, 2147483647, 'CA', 'Canada'), +('216.95.172.16', '216.95.172.31', 2147483647, 2147483647, 'US', 'United States'), +('216.95.172.32', '216.95.172.47', 2147483647, 2147483647, 'CA', 'Canada'), +('216.95.172.48', '216.95.172.63', 2147483647, 2147483647, 'US', 'United States'), +('216.95.172.64', '216.95.172.207', 2147483647, 2147483647, 'CA', 'Canada'), +('216.95.172.208', '216.95.172.255', 2147483647, 2147483647, 'US', 'United States'), +('216.95.173.0', '216.95.174.31', 2147483647, 2147483647, 'CA', 'Canada'), +('216.95.174.32', '216.95.174.63', 2147483647, 2147483647, 'US', 'United States'), +('216.95.174.64', '216.95.174.95', 2147483647, 2147483647, 'CA', 'Canada'), +('216.95.174.96', '216.95.174.255', 2147483647, 2147483647, 'US', 'United States'), +('216.95.175.0', '216.95.175.63', 2147483647, 2147483647, 'CA', 'Canada'), +('216.95.175.64', '216.95.175.95', 2147483647, 2147483647, 'US', 'United States'), +('216.95.175.96', '216.95.175.127', 2147483647, 2147483647, 'CA', 'Canada'), +('216.95.175.128', '216.95.175.191', 2147483647, 2147483647, 'US', 'United States'), +('216.95.175.192', '216.95.183.63', 2147483647, 2147483647, 'CA', 'Canada'), +('216.95.183.64', '216.95.183.95', 2147483647, 2147483647, 'US', 'United States'), +('216.95.183.96', '216.95.189.159', 2147483647, 2147483647, 'CA', 'Canada'), +('216.95.189.160', '216.95.189.191', 2147483647, 2147483647, 'US', 'United States'), +('216.95.189.192', '216.95.190.191', 2147483647, 2147483647, 'CA', 'Canada'), +('216.95.190.192', '216.95.191.255', 2147483647, 2147483647, 'US', 'United States'), +('216.95.192.0', '216.95.195.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.95.196.0', '216.95.196.255', 2147483647, 2147483647, 'US', 'United States'), +('216.95.197.0', '216.95.197.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.95.198.0', '216.95.198.255', 2147483647, 2147483647, 'US', 'United States'), +('216.95.199.0', '216.95.199.63', 2147483647, 2147483647, 'CA', 'Canada'), +('216.95.199.64', '216.95.199.79', 2147483647, 2147483647, 'US', 'United States'), +('216.95.199.80', '216.95.199.95', 2147483647, 2147483647, 'CA', 'Canada'), +('216.95.199.96', '216.95.199.111', 2147483647, 2147483647, 'US', 'United States'), +('216.95.199.112', '216.95.209.55', 2147483647, 2147483647, 'CA', 'Canada'), +('216.95.209.56', '216.95.209.63', 2147483647, 2147483647, 'US', 'United States'), +('216.95.209.64', '216.95.209.79', 2147483647, 2147483647, 'CA', 'Canada'), +('216.95.209.80', '216.95.209.87', 2147483647, 2147483647, 'US', 'United States'), +('216.95.209.88', '216.95.209.95', 2147483647, 2147483647, 'CA', 'Canada'), +('216.95.209.96', '216.95.209.103', 2147483647, 2147483647, 'US', 'United States'), +('216.95.209.104', '216.95.209.191', 2147483647, 2147483647, 'CA', 'Canada'), +('216.95.209.192', '216.95.209.199', 2147483647, 2147483647, 'US', 'United States'), +('216.95.209.200', '216.95.210.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.95.211.0', '216.95.211.255', 2147483647, 2147483647, 'US', 'United States'), +('216.95.212.0', '216.95.212.127', 2147483647, 2147483647, 'CA', 'Canada'), +('216.95.212.128', '216.95.212.159', 2147483647, 2147483647, 'US', 'United States'), +('216.95.212.160', '216.95.214.127', 2147483647, 2147483647, 'CA', 'Canada'), +('216.95.214.128', '216.95.214.191', 2147483647, 2147483647, 'US', 'United States'), +('216.95.214.192', '216.95.215.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.95.216.0', '216.95.216.255', 2147483647, 2147483647, 'US', 'United States'), +('216.95.217.0', '216.95.217.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.95.218.0', '216.95.218.15', 2147483647, 2147483647, 'US', 'United States'), +('216.95.218.16', '216.95.218.87', 2147483647, 2147483647, 'CA', 'Canada'), +('216.95.218.88', '216.95.218.103', 2147483647, 2147483647, 'US', 'United States'), +('216.95.218.104', '216.95.218.111', 2147483647, 2147483647, 'CA', 'Canada'), +('216.95.218.112', '216.95.218.119', 2147483647, 2147483647, 'US', 'United States'), +('216.95.218.120', '216.95.218.143', 2147483647, 2147483647, 'CA', 'Canada'), +('216.95.218.144', '216.95.218.175', 2147483647, 2147483647, 'US', 'United States'), +('216.95.218.176', '216.95.218.215', 2147483647, 2147483647, 'CA', 'Canada'), +('216.95.218.216', '216.95.218.223', 2147483647, 2147483647, 'US', 'United States'), +('216.95.218.224', '216.95.219.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.95.220.0', '216.95.220.23', 2147483647, 2147483647, 'US', 'United States'), +('216.95.220.24', '216.95.220.31', 2147483647, 2147483647, 'CA', 'Canada'), +('216.95.220.32', '216.95.220.215', 2147483647, 2147483647, 'US', 'United States'), +('216.95.220.216', '216.95.220.239', 2147483647, 2147483647, 'CA', 'Canada'), +('216.95.220.240', '216.95.220.255', 2147483647, 2147483647, 'US', 'United States'), +('216.95.221.0', '216.95.224.63', 2147483647, 2147483647, 'CA', 'Canada'), +('216.95.224.64', '216.95.224.127', 2147483647, 2147483647, 'US', 'United States'), +('216.95.224.128', '216.95.225.127', 2147483647, 2147483647, 'CA', 'Canada'), +('216.95.225.128', '216.95.225.191', 2147483647, 2147483647, 'US', 'United States'), +('216.95.225.192', '216.95.227.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.95.228.0', '216.95.228.255', 2147483647, 2147483647, 'US', 'United States'), +('216.95.229.0', '216.95.229.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.95.230.0', '216.95.230.255', 2147483647, 2147483647, 'US', 'United States'), +('216.95.231.0', '216.95.231.7', 2147483647, 2147483647, 'CA', 'Canada'), +('216.95.231.8', '216.95.231.15', 2147483647, 2147483647, 'US', 'United States'), +('216.95.231.16', '216.95.231.47', 2147483647, 2147483647, 'CA', 'Canada'), +('216.95.231.48', '216.95.231.55', 2147483647, 2147483647, 'US', 'United States'), +('216.95.231.56', '216.95.231.215', 2147483647, 2147483647, 'CA', 'Canada'), +('216.95.231.216', '216.95.231.247', 2147483647, 2147483647, 'US', 'United States'), +('216.95.231.248', '216.95.234.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.95.235.0', '216.95.235.15', 2147483647, 2147483647, 'US', 'United States'), +('216.95.235.16', '216.95.235.111', 2147483647, 2147483647, 'CA', 'Canada'), +('216.95.235.112', '216.95.235.127', 2147483647, 2147483647, 'US', 'United States'), +('216.95.235.128', '216.95.235.175', 2147483647, 2147483647, 'CA', 'Canada'), +('216.95.235.176', '216.95.235.191', 2147483647, 2147483647, 'US', 'United States'), +('216.95.235.192', '216.95.235.239', 2147483647, 2147483647, 'CA', 'Canada'), +('216.95.235.240', '216.95.235.255', 2147483647, 2147483647, 'US', 'United States'), +('216.95.236.0', '216.95.242.191', 2147483647, 2147483647, 'CA', 'Canada'), +('216.95.242.192', '216.95.242.223', 2147483647, 2147483647, 'US', 'United States'), +('216.95.242.224', '216.95.243.31', 2147483647, 2147483647, 'CA', 'Canada'), +('216.95.243.32', '216.95.243.47', 2147483647, 2147483647, 'US', 'United States'), +('216.95.243.48', '216.95.243.79', 2147483647, 2147483647, 'CA', 'Canada'), +('216.95.243.80', '216.95.243.95', 2147483647, 2147483647, 'US', 'United States'), +('216.95.243.96', '216.95.243.191', 2147483647, 2147483647, 'CA', 'Canada'), +('216.95.243.192', '216.95.243.207', 2147483647, 2147483647, 'US', 'United States'), +('216.95.243.208', '216.95.244.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.95.245.0', '216.95.245.63', 2147483647, 2147483647, 'US', 'United States'), +('216.95.245.64', '216.95.245.191', 2147483647, 2147483647, 'CA', 'Canada'), +('216.95.245.192', '216.95.245.255', 2147483647, 2147483647, 'US', 'United States'), +('216.95.246.0', '216.95.247.103', 2147483647, 2147483647, 'CA', 'Canada'), +('216.95.247.104', '216.95.247.111', 2147483647, 2147483647, 'FR', 'France'), +('216.95.247.112', '216.95.247.119', 2147483647, 2147483647, 'CA', 'Canada'), +('216.95.247.120', '216.95.247.135', 2147483647, 2147483647, 'US', 'United States'), +('216.95.247.136', '216.95.248.63', 2147483647, 2147483647, 'CA', 'Canada'), +('216.95.248.64', '216.95.248.127', 2147483647, 2147483647, 'US', 'United States'), +('216.95.248.128', '216.95.251.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.95.252.0', '216.95.252.255', 2147483647, 2147483647, 'US', 'United States'), +('216.95.253.0', '216.95.253.63', 2147483647, 2147483647, 'CA', 'Canada'), +('216.95.253.64', '216.95.253.127', 2147483647, 2147483647, 'US', 'United States'), +('216.95.253.128', '216.95.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.96.0.0', '216.98.1.255', 2147483647, 2147483647, 'US', 'United States'), +('216.98.2.0', '216.98.2.15', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('216.98.2.16', '216.98.31.255', 2147483647, 2147483647, 'US', 'United States'), +('216.98.32.0', '216.98.63.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.98.64.0', '216.98.113.175', 2147483647, 2147483647, 'US', 'United States'), +('216.98.113.176', '216.98.113.191', 2147483647, 2147483647, 'JP', 'Japan'), +('216.98.113.192', '216.99.31.255', 2147483647, 2147483647, 'US', 'United States'), +('216.99.32.0', '216.99.63.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.99.64.0', '216.99.95.255', 2147483647, 2147483647, 'US', 'United States'), +('216.99.96.0', '216.99.111.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.99.112.0', '216.104.95.255', 2147483647, 2147483647, 'US', 'United States'), +('216.104.96.0', '216.104.127.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.104.128.0', '216.104.204.255', 2147483647, 2147483647, 'US', 'United States'), +('216.104.205.0', '216.104.206.255', 2147483647, 2147483647, 'TZ', 'Tanzania, United Republic of'), +('216.104.207.0', '216.105.79.255', 2147483647, 2147483647, 'US', 'United States'), +('216.105.80.0', '216.105.95.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.105.96.0', '216.105.97.127', 2147483647, 2147483647, 'US', 'United States'), +('216.105.97.128', '216.105.97.143', 2147483647, 2147483647, 'IL', 'Israel'), +('216.105.97.144', '216.105.107.240', 2147483647, 2147483647, 'US', 'United States'), +('216.105.107.241', '216.105.107.248', 2147483647, 2147483647, 'IE', 'Ireland'), +('216.105.107.249', '216.106.95.255', 2147483647, 2147483647, 'US', 'United States'), +('216.106.96.0', '216.106.111.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.106.112.0', '216.107.255.255', 2147483647, 2147483647, 'US', 'United States'), +('216.108.0.0', '216.108.191.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.108.192.0', '216.109.67.207', 2147483647, 2147483647, 'US', 'United States'), +('216.109.67.208', '216.109.67.223', 2147483647, 2147483647, 'CA', 'Canada'), +('216.109.67.224', '216.109.67.255', 2147483647, 2147483647, 'US', 'United States'), +('216.109.68.0', '216.109.68.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.109.69.0', '216.109.84.79', 2147483647, 2147483647, 'US', 'United States'), +('216.109.84.80', '216.109.84.95', 2147483647, 2147483647, 'CA', 'Canada'), +('216.109.84.96', '216.109.84.175', 2147483647, 2147483647, 'US', 'United States'), +('216.109.84.176', '216.109.84.183', 2147483647, 2147483647, 'CA', 'Canada'), +('216.109.84.184', '216.109.91.255', 2147483647, 2147483647, 'US', 'United States'), +('216.109.92.0', '216.109.92.127', 2147483647, 2147483647, 'CA', 'Canada'), +('216.109.92.128', '216.109.93.95', 2147483647, 2147483647, 'US', 'United States'), +('216.109.93.96', '216.109.93.103', 2147483647, 2147483647, 'CA', 'Canada'), +('216.109.93.104', '216.109.138.169', 2147483647, 2147483647, 'US', 'United States'), +('216.109.138.170', '216.109.138.189', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.109.138.190', '216.109.141.229', 2147483647, 2147483647, 'US', 'United States'), +('216.109.141.230', '216.109.141.239', 2147483647, 2147483647, 'CA', 'Canada'), +('216.109.141.240', '216.109.142.79', 2147483647, 2147483647, 'US', 'United States'), +('216.109.142.80', '216.109.142.89', 2147483647, 2147483647, 'CA', 'Canada'), +('216.109.142.90', '216.109.142.149', 2147483647, 2147483647, 'US', 'United States'), +('216.109.142.150', '216.109.142.159', 2147483647, 2147483647, 'CA', 'Canada'), +('216.109.142.160', '216.109.145.29', 2147483647, 2147483647, 'US', 'United States'), +('216.109.145.30', '216.109.145.39', 2147483647, 2147483647, 'NO', 'Norway'), +('216.109.145.40', '216.110.95.255', 2147483647, 2147483647, 'US', 'United States'), +('216.110.96.0', '216.110.97.255', 2147483647, 2147483647, 'VC', 'Saint Vincent and the Grenadines'), +('216.110.98.0', '216.110.112.255', 2147483647, 2147483647, 'BB', 'Barbados'), +('216.110.113.0', '216.110.116.255', 2147483647, 2147483647, 'GD', 'Grenada'), +('216.110.117.0', '216.110.117.255', 2147483647, 2147483647, 'BB', 'Barbados'), +('216.110.118.0', '216.110.118.255', 2147483647, 2147483647, 'GD', 'Grenada'), +('216.110.119.0', '216.110.122.255', 2147483647, 2147483647, 'VC', 'Saint Vincent and the Grenadines'), +('216.110.123.0', '216.110.124.255', 2147483647, 2147483647, 'BB', 'Barbados'), +('216.110.125.0', '216.110.127.255', 2147483647, 2147483647, 'GD', 'Grenada'), +('216.110.128.0', '216.110.223.255', 2147483647, 2147483647, 'US', 'United States'), +('216.110.224.0', '216.110.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.111.0.0', '216.112.255.255', 2147483647, 2147483647, 'US', 'United States'), +('216.113.0.0', '216.113.127.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.113.128.0', '216.113.191.255', 2147483647, 2147483647, 'US', 'United States'), +('216.113.192.0', '216.113.193.47', 2147483647, 2147483647, 'CA', 'Canada'), +('216.113.193.48', '216.113.193.63', 2147483647, 2147483647, 'US', 'United States'), +('216.113.193.64', '216.113.223.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.113.224.0', '216.115.255.255', 2147483647, 2147483647, 'US', 'United States'), +('216.116.0.0', '216.116.15.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.116.16.0', '216.118.127.255', 2147483647, 2147483647, 'US', 'United States'), +('216.118.128.0', '216.118.159.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.118.160.0', '216.118.200.47', 2147483647, 2147483647, 'US', 'United States'), +('216.118.200.48', '216.118.200.55', 2147483647, 2147483647, 'CA', 'Canada'), +('216.118.200.56', '216.118.207.255', 2147483647, 2147483647, 'US', 'United States'), +('216.118.208.0', '216.118.223.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.118.224.0', '216.118.225.255', 2147483647, 2147483647, 'US', 'United States'), +('216.118.226.0', '216.118.226.7', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.118.226.8', '216.118.226.15', 2147483647, 2147483647, 'US', 'United States'), +('216.118.226.16', '216.118.226.23', 2147483647, 2147483647, 'BO', 'Bolivia'), +('216.118.226.24', '216.118.226.31', 2147483647, 2147483647, 'US', 'United States'), +('216.118.226.32', '216.118.226.39', 2147483647, 2147483647, 'BO', 'Bolivia'), +('216.118.226.40', '216.118.226.47', 2147483647, 2147483647, 'US', 'United States'), +('216.118.226.48', '216.118.226.63', 2147483647, 2147483647, 'EC', 'Ecuador'), +('216.118.226.64', '216.118.226.79', 2147483647, 2147483647, 'BO', 'Bolivia'), +('216.118.226.80', '216.118.226.95', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.118.226.96', '216.118.226.111', 2147483647, 2147483647, 'US', 'United States'), +('216.118.226.112', '216.118.226.127', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.118.226.128', '216.118.226.159', 2147483647, 2147483647, 'BO', 'Bolivia'), +('216.118.226.160', '216.118.226.191', 2147483647, 2147483647, 'EC', 'Ecuador'), +('216.118.226.192', '216.118.226.255', 2147483647, 2147483647, 'US', 'United States'), +('216.118.227.0', '216.118.227.127', 2147483647, 2147483647, 'CO', 'Colombia'), +('216.118.227.128', '216.118.227.191', 2147483647, 2147483647, 'NI', 'Nicaragua'), +('216.118.227.192', '216.118.227.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.118.228.0', '216.118.228.255', 2147483647, 2147483647, 'US', 'United States'), +('216.118.229.0', '216.118.229.255', 2147483647, 2147483647, 'NG', 'Nigeria'), +('216.118.230.0', '216.118.230.255', 2147483647, 2147483647, 'EC', 'Ecuador'), +('216.118.231.0', '216.118.231.255', 2147483647, 2147483647, 'US', 'United States'), +('216.118.232.0', '216.118.232.255', 2147483647, 2147483647, 'JM', 'Jamaica'), +('216.118.233.0', '216.118.236.255', 2147483647, 2147483647, 'PY', 'Paraguay'), +('216.118.237.0', '216.118.237.255', 2147483647, 2147483647, 'NG', 'Nigeria'), +('216.118.238.0', '216.118.239.31', 2147483647, 2147483647, 'US', 'United States'), +('216.118.239.32', '216.118.239.63', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.118.239.64', '216.118.239.95', 2147483647, 2147483647, 'US', 'United States'), +('216.118.239.96', '216.118.239.111', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.118.239.112', '216.118.239.143', 2147483647, 2147483647, 'US', 'United States'), +('216.118.239.144', '216.118.239.159', 2147483647, 2147483647, 'EC', 'Ecuador'), +('216.118.239.160', '216.118.239.175', 2147483647, 2147483647, 'JM', 'Jamaica'), +('216.118.239.176', '216.118.239.207', 2147483647, 2147483647, 'BB', 'Barbados'), +('216.118.239.208', '216.118.239.223', 2147483647, 2147483647, 'EC', 'Ecuador'), +('216.118.239.224', '216.118.255.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.119.0.0', '216.121.127.255', 2147483647, 2147483647, 'US', 'United States'), +('216.121.128.0', '216.121.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.122.0.0', '216.122.20.31', 2147483647, 2147483647, 'US', 'United States'), +('216.122.20.32', '216.122.20.63', 2147483647, 2147483647, 'CA', 'Canada'), +('216.122.20.64', '216.122.30.31', 2147483647, 2147483647, 'US', 'United States'), +('216.122.30.32', '216.122.30.63', 2147483647, 2147483647, 'CA', 'Canada'), +('216.122.30.64', '216.122.255.255', 2147483647, 2147483647, 'US', 'United States'), +('216.123.0.0', '216.123.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.124.0.0', '216.125.255.255', 2147483647, 2147483647, 'US', 'United States'), +('216.126.0.0', '216.126.31.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.126.32.0', '216.126.63.255', 2147483647, 2147483647, 'US', 'United States'), +('216.126.64.0', '216.126.127.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.126.128.0', '216.126.239.255', 2147483647, 2147483647, 'US', 'United States'), +('216.126.240.0', '216.126.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.127.0.0', '216.128.10.201', 2147483647, 2147483647, 'US', 'United States'), +('216.128.10.202', '216.128.10.234', 2147483647, 2147483647, 'CA', 'Canada'), +('216.128.10.235', '216.128.24.237', 2147483647, 2147483647, 'US', 'United States'), +('216.128.24.238', '216.128.24.249', 2147483647, 2147483647, 'AU', 'Australia'), +('216.128.24.250', '216.128.75.15', 2147483647, 2147483647, 'US', 'United States'), +('216.128.75.16', '216.128.75.31', 2147483647, 2147483647, 'CA', 'Canada'), +('216.128.75.32', '216.128.78.7', 2147483647, 2147483647, 'US', 'United States'), +('216.128.78.8', '216.128.78.31', 2147483647, 2147483647, 'CA', 'Canada'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('216.128.78.32', '216.128.95.191', 2147483647, 2147483647, 'US', 'United States'), +('216.128.95.192', '216.128.95.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.128.96.0', '216.128.255.255', 2147483647, 2147483647, 'US', 'United States'), +('216.129.0.0', '216.129.95.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.129.96.0', '216.129.147.127', 2147483647, 2147483647, 'US', 'United States'), +('216.129.147.128', '216.129.147.143', 2147483647, 2147483647, 'NG', 'Nigeria'), +('216.129.147.144', '216.129.158.255', 2147483647, 2147483647, 'US', 'United States'), +('216.129.159.0', '216.129.159.255', 2147483647, 2147483647, 'NG', 'Nigeria'), +('216.129.160.0', '216.129.191.255', 2147483647, 2147483647, 'US', 'United States'), +('216.129.192.0', '216.129.223.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.129.224.0', '216.130.63.255', 2147483647, 2147483647, 'US', 'United States'), +('216.130.64.0', '216.130.95.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.130.96.0', '216.131.64.111', 2147483647, 2147483647, 'US', 'United States'), +('216.131.64.112', '216.131.64.119', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.131.64.120', '216.131.64.127', 2147483647, 2147483647, 'US', 'United States'), +('216.131.64.128', '216.131.64.135', 2147483647, 2147483647, 'DK', 'Denmark'), +('216.131.64.136', '216.131.64.183', 2147483647, 2147483647, 'US', 'United States'), +('216.131.64.184', '216.131.64.191', 2147483647, 2147483647, 'AR', 'Argentina'), +('216.131.64.192', '216.131.64.207', 2147483647, 2147483647, 'US', 'United States'), +('216.131.64.208', '216.131.64.215', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.131.64.216', '216.131.64.247', 2147483647, 2147483647, 'US', 'United States'), +('216.131.64.248', '216.131.64.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('216.131.65.0', '216.131.65.79', 2147483647, 2147483647, 'US', 'United States'), +('216.131.65.80', '216.131.65.87', 2147483647, 2147483647, 'GI', 'Gibraltar'), +('216.131.65.88', '216.131.65.95', 2147483647, 2147483647, 'CA', 'Canada'), +('216.131.65.96', '216.131.65.103', 2147483647, 2147483647, 'PH', 'Philippines'), +('216.131.65.104', '216.131.65.135', 2147483647, 2147483647, 'US', 'United States'), +('216.131.65.136', '216.131.65.143', 2147483647, 2147483647, 'CA', 'Canada'), +('216.131.65.144', '216.131.65.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.131.65.160', '216.131.65.191', 2147483647, 2147483647, 'US', 'United States'), +('216.131.65.192', '216.131.65.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.131.66.0', '216.131.66.255', 2147483647, 2147483647, 'US', 'United States'), +('216.131.67.0', '216.131.67.63', 2147483647, 2147483647, 'IO', 'British Indian Ocean Territory'), +('216.131.67.64', '216.131.67.159', 2147483647, 2147483647, 'US', 'United States'), +('216.131.67.160', '216.131.67.175', 2147483647, 2147483647, 'TH', 'Thailand'), +('216.131.67.176', '216.131.67.223', 2147483647, 2147483647, 'US', 'United States'), +('216.131.67.224', '216.131.67.231', 2147483647, 2147483647, 'GI', 'Gibraltar'), +('216.131.67.232', '216.131.67.255', 2147483647, 2147483647, 'US', 'United States'), +('216.131.68.0', '216.131.68.7', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.131.68.8', '216.131.68.15', 2147483647, 2147483647, 'PH', 'Philippines'), +('216.131.68.16', '216.131.68.151', 2147483647, 2147483647, 'US', 'United States'), +('216.131.68.152', '216.131.68.159', 2147483647, 2147483647, 'CA', 'Canada'), +('216.131.68.160', '216.131.68.199', 2147483647, 2147483647, 'US', 'United States'), +('216.131.68.200', '216.131.68.207', 2147483647, 2147483647, 'CA', 'Canada'), +('216.131.68.208', '216.131.68.239', 2147483647, 2147483647, 'US', 'United States'), +('216.131.68.240', '216.131.68.247', 2147483647, 2147483647, 'GI', 'Gibraltar'), +('216.131.68.248', '216.131.68.255', 2147483647, 2147483647, 'PL', 'Poland'), +('216.131.69.0', '216.131.69.95', 2147483647, 2147483647, 'US', 'United States'), +('216.131.69.96', '216.131.69.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.131.69.112', '216.131.69.239', 2147483647, 2147483647, 'US', 'United States'), +('216.131.69.240', '216.131.69.247', 2147483647, 2147483647, 'CA', 'Canada'), +('216.131.69.248', '216.131.69.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.131.70.0', '216.131.70.23', 2147483647, 2147483647, 'US', 'United States'), +('216.131.70.24', '216.131.70.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.131.70.32', '216.131.70.247', 2147483647, 2147483647, 'US', 'United States'), +('216.131.70.248', '216.131.70.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('216.131.71.0', '216.131.71.191', 2147483647, 2147483647, 'US', 'United States'), +('216.131.71.192', '216.131.71.199', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.131.71.200', '216.131.72.95', 2147483647, 2147483647, 'US', 'United States'), +('216.131.72.96', '216.131.72.127', 2147483647, 2147483647, 'TH', 'Thailand'), +('216.131.72.128', '216.131.75.79', 2147483647, 2147483647, 'US', 'United States'), +('216.131.75.80', '216.131.75.87', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.131.75.88', '216.131.75.135', 2147483647, 2147483647, 'US', 'United States'), +('216.131.75.136', '216.131.75.143', 2147483647, 2147483647, 'CA', 'Canada'), +('216.131.75.144', '216.131.75.255', 2147483647, 2147483647, 'US', 'United States'), +('216.131.76.0', '216.131.76.7', 2147483647, 2147483647, 'CA', 'Canada'), +('216.131.76.8', '216.131.76.15', 2147483647, 2147483647, 'AU', 'Australia'), +('216.131.76.16', '216.131.76.47', 2147483647, 2147483647, 'US', 'United States'), +('216.131.76.48', '216.131.76.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.131.76.80', '216.131.76.87', 2147483647, 2147483647, 'CA', 'Canada'), +('216.131.76.88', '216.131.76.95', 2147483647, 2147483647, 'US', 'United States'), +('216.131.76.96', '216.131.76.127', 2147483647, 2147483647, 'SK', 'Slovakia'), +('216.131.76.128', '216.131.76.143', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('216.131.76.144', '216.131.76.223', 2147483647, 2147483647, 'US', 'United States'), +('216.131.76.224', '216.131.76.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.131.77.0', '216.131.77.15', 2147483647, 2147483647, 'US', 'United States'), +('216.131.77.16', '216.131.77.23', 2147483647, 2147483647, 'AU', 'Australia'), +('216.131.77.24', '216.131.77.31', 2147483647, 2147483647, 'PL', 'Poland'), +('216.131.77.32', '216.131.77.39', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.131.77.40', '216.131.77.79', 2147483647, 2147483647, 'US', 'United States'), +('216.131.77.80', '216.131.77.87', 2147483647, 2147483647, 'GI', 'Gibraltar'), +('216.131.77.88', '216.131.77.95', 2147483647, 2147483647, 'CA', 'Canada'), +('216.131.77.96', '216.131.77.103', 2147483647, 2147483647, 'US', 'United States'), +('216.131.77.104', '216.131.77.111', 2147483647, 2147483647, 'FR', 'France'), +('216.131.77.112', '216.131.77.175', 2147483647, 2147483647, 'US', 'United States'), +('216.131.77.176', '216.131.77.191', 2147483647, 2147483647, 'TH', 'Thailand'), +('216.131.77.192', '216.131.77.231', 2147483647, 2147483647, 'US', 'United States'), +('216.131.77.232', '216.131.77.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.131.77.240', '216.131.77.247', 2147483647, 2147483647, 'DE', 'Germany'), +('216.131.77.248', '216.131.78.15', 2147483647, 2147483647, 'US', 'United States'), +('216.131.78.16', '216.131.78.23', 2147483647, 2147483647, 'PH', 'Philippines'), +('216.131.78.24', '216.131.78.55', 2147483647, 2147483647, 'US', 'United States'), +('216.131.78.56', '216.131.78.63', 2147483647, 2147483647, 'CA', 'Canada'), +('216.131.78.64', '216.131.78.79', 2147483647, 2147483647, 'AU', 'Australia'), +('216.131.78.80', '216.131.78.95', 2147483647, 2147483647, 'TW', 'Taiwan'), +('216.131.78.96', '216.131.78.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.131.78.112', '216.131.78.127', 2147483647, 2147483647, 'US', 'United States'), +('216.131.78.128', '216.131.78.143', 2147483647, 2147483647, 'SR', 'Suriname'), +('216.131.78.144', '216.131.78.199', 2147483647, 2147483647, 'US', 'United States'), +('216.131.78.200', '216.131.78.207', 2147483647, 2147483647, 'TH', 'Thailand'), +('216.131.78.208', '216.131.78.223', 2147483647, 2147483647, 'US', 'United States'), +('216.131.78.224', '216.131.78.239', 2147483647, 2147483647, 'CA', 'Canada'), +('216.131.78.240', '216.131.78.247', 2147483647, 2147483647, 'PH', 'Philippines'), +('216.131.78.248', '216.131.80.31', 2147483647, 2147483647, 'US', 'United States'), +('216.131.80.32', '216.131.80.39', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.131.80.40', '216.131.80.55', 2147483647, 2147483647, 'US', 'United States'), +('216.131.80.56', '216.131.80.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.131.80.64', '216.131.81.15', 2147483647, 2147483647, 'US', 'United States'), +('216.131.81.16', '216.131.81.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.131.81.32', '216.131.81.39', 2147483647, 2147483647, 'CA', 'Canada'), +('216.131.81.40', '216.131.81.47', 2147483647, 2147483647, 'TH', 'Thailand'), +('216.131.81.48', '216.131.81.79', 2147483647, 2147483647, 'US', 'United States'), +('216.131.81.80', '216.131.81.87', 2147483647, 2147483647, 'GI', 'Gibraltar'), +('216.131.81.88', '216.131.81.135', 2147483647, 2147483647, 'US', 'United States'), +('216.131.81.136', '216.131.81.143', 2147483647, 2147483647, 'CA', 'Canada'), +('216.131.81.144', '216.131.81.159', 2147483647, 2147483647, 'US', 'United States'), +('216.131.81.160', '216.131.81.175', 2147483647, 2147483647, 'CA', 'Canada'), +('216.131.81.176', '216.131.81.183', 2147483647, 2147483647, 'US', 'United States'), +('216.131.81.184', '216.131.81.191', 2147483647, 2147483647, 'BZ', 'Belize'), +('216.131.81.192', '216.131.81.199', 2147483647, 2147483647, 'US', 'United States'), +('216.131.81.200', '216.131.81.207', 2147483647, 2147483647, 'FR', 'France'), +('216.131.81.208', '216.131.81.215', 2147483647, 2147483647, 'US', 'United States'), +('216.131.81.216', '216.131.81.223', 2147483647, 2147483647, 'CA', 'Canada'), +('216.131.81.224', '216.131.81.231', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('216.131.81.232', '216.131.81.239', 2147483647, 2147483647, 'BZ', 'Belize'), +('216.131.81.240', '216.131.81.247', 2147483647, 2147483647, 'US', 'United States'), +('216.131.81.248', '216.131.81.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('216.131.82.0', '216.131.82.191', 2147483647, 2147483647, 'US', 'United States'), +('216.131.82.192', '216.131.82.223', 2147483647, 2147483647, 'TW', 'Taiwan'), +('216.131.82.224', '216.131.82.255', 2147483647, 2147483647, 'US', 'United States'), +('216.131.83.0', '216.131.83.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.131.83.16', '216.131.83.23', 2147483647, 2147483647, 'TH', 'Thailand'), +('216.131.83.24', '216.131.83.31', 2147483647, 2147483647, 'NC', 'New Caledonia'), +('216.131.83.32', '216.131.83.47', 2147483647, 2147483647, 'CA', 'Canada'), +('216.131.83.48', '216.131.83.55', 2147483647, 2147483647, 'US', 'United States'), +('216.131.83.56', '216.131.83.63', 2147483647, 2147483647, 'CH', 'Switzerland'), +('216.131.83.64', '216.131.83.143', 2147483647, 2147483647, 'US', 'United States'), +('216.131.83.144', '216.131.83.151', 2147483647, 2147483647, 'IT', 'Italy'), +('216.131.83.152', '216.131.83.159', 2147483647, 2147483647, 'US', 'United States'), +('216.131.83.160', '216.131.83.191', 2147483647, 2147483647, 'TH', 'Thailand'), +('216.131.83.192', '216.131.83.239', 2147483647, 2147483647, 'US', 'United States'), +('216.131.83.240', '216.131.83.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('216.131.84.0', '216.131.84.15', 2147483647, 2147483647, 'US', 'United States'), +('216.131.84.16', '216.131.84.23', 2147483647, 2147483647, 'SR', 'Suriname'), +('216.131.84.24', '216.131.84.55', 2147483647, 2147483647, 'US', 'United States'), +('216.131.84.56', '216.131.84.63', 2147483647, 2147483647, 'CA', 'Canada'), +('216.131.84.64', '216.131.84.95', 2147483647, 2147483647, 'US', 'United States'), +('216.131.84.96', '216.131.84.111', 2147483647, 2147483647, 'NC', 'New Caledonia'), +('216.131.84.112', '216.131.84.159', 2147483647, 2147483647, 'US', 'United States'), +('216.131.84.160', '216.131.84.175', 2147483647, 2147483647, 'TH', 'Thailand'), +('216.131.84.176', '216.131.84.183', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.131.84.184', '216.131.84.191', 2147483647, 2147483647, 'US', 'United States'), +('216.131.84.192', '216.131.84.199', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.131.84.200', '216.131.84.239', 2147483647, 2147483647, 'US', 'United States'), +('216.131.84.240', '216.131.84.247', 2147483647, 2147483647, 'TH', 'Thailand'), +('216.131.84.248', '216.131.84.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.131.85.0', '216.131.85.7', 2147483647, 2147483647, 'US', 'United States'), +('216.131.85.8', '216.131.85.15', 2147483647, 2147483647, 'NC', 'New Caledonia'), +('216.131.85.16', '216.131.85.23', 2147483647, 2147483647, 'US', 'United States'), +('216.131.85.24', '216.131.85.31', 2147483647, 2147483647, 'GR', 'Greece'), +('216.131.85.32', '216.131.85.39', 2147483647, 2147483647, 'US', 'United States'), +('216.131.85.40', '216.131.85.47', 2147483647, 2147483647, 'TR', 'Turkey'), +('216.131.85.48', '216.131.85.55', 2147483647, 2147483647, 'BR', 'Brazil'), +('216.131.85.56', '216.131.85.95', 2147483647, 2147483647, 'US', 'United States'), +('216.131.85.96', '216.131.85.103', 2147483647, 2147483647, 'CA', 'Canada'), +('216.131.85.104', '216.131.85.119', 2147483647, 2147483647, 'US', 'United States'), +('216.131.85.120', '216.131.85.127', 2147483647, 2147483647, 'CA', 'Canada'), +('216.131.85.128', '216.131.85.135', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('216.131.85.136', '216.131.85.215', 2147483647, 2147483647, 'US', 'United States'), +('216.131.85.216', '216.131.85.223', 2147483647, 2147483647, 'CA', 'Canada'), +('216.131.85.224', '216.131.85.231', 2147483647, 2147483647, 'IL', 'Israel'), +('216.131.85.232', '216.131.85.239', 2147483647, 2147483647, 'BZ', 'Belize'), +('216.131.85.240', '216.131.85.255', 2147483647, 2147483647, 'US', 'United States'), +('216.131.86.0', '216.131.86.7', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.131.86.8', '216.131.86.199', 2147483647, 2147483647, 'US', 'United States'), +('216.131.86.200', '216.131.86.207', 2147483647, 2147483647, 'DE', 'Germany'), +('216.131.86.208', '216.131.86.215', 2147483647, 2147483647, 'US', 'United States'), +('216.131.86.216', '216.131.86.223', 2147483647, 2147483647, 'TH', 'Thailand'), +('216.131.86.224', '216.131.87.7', 2147483647, 2147483647, 'US', 'United States'), +('216.131.87.8', '216.131.87.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.131.87.16', '216.131.87.119', 2147483647, 2147483647, 'US', 'United States'), +('216.131.87.120', '216.131.87.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.131.87.128', '216.131.87.143', 2147483647, 2147483647, 'FR', 'France'), +('216.131.87.144', '216.131.87.175', 2147483647, 2147483647, 'US', 'United States'), +('216.131.87.176', '216.131.87.183', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.131.87.184', '216.131.87.191', 2147483647, 2147483647, 'US', 'United States'), +('216.131.87.192', '216.131.87.199', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.131.87.200', '216.131.87.207', 2147483647, 2147483647, 'FR', 'France'), +('216.131.87.208', '216.131.88.79', 2147483647, 2147483647, 'US', 'United States'), +('216.131.88.80', '216.131.88.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.131.88.96', '216.131.88.119', 2147483647, 2147483647, 'US', 'United States'), +('216.131.88.120', '216.131.88.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.131.88.128', '216.131.88.143', 2147483647, 2147483647, 'US', 'United States'), +('216.131.88.144', '216.131.88.151', 2147483647, 2147483647, 'DE', 'Germany'), +('216.131.88.152', '216.131.88.167', 2147483647, 2147483647, 'US', 'United States'), +('216.131.88.168', '216.131.88.175', 2147483647, 2147483647, 'IL', 'Israel'), +('216.131.88.176', '216.131.88.191', 2147483647, 2147483647, 'TH', 'Thailand'), +('216.131.88.192', '216.131.89.31', 2147483647, 2147483647, 'US', 'United States'), +('216.131.89.32', '216.131.89.47', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('216.131.89.48', '216.131.89.55', 2147483647, 2147483647, 'US', 'United States'), +('216.131.89.56', '216.131.89.63', 2147483647, 2147483647, 'CA', 'Canada'), +('216.131.89.64', '216.131.89.95', 2147483647, 2147483647, 'TH', 'Thailand'), +('216.131.89.96', '216.131.89.127', 2147483647, 2147483647, 'US', 'United States'), +('216.131.89.128', '216.131.89.159', 2147483647, 2147483647, 'DE', 'Germany'), +('216.131.89.160', '216.131.89.191', 2147483647, 2147483647, 'CA', 'Canada'), +('216.131.89.192', '216.131.89.239', 2147483647, 2147483647, 'US', 'United States'), +('216.131.89.240', '216.131.89.247', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.131.89.248', '216.131.90.111', 2147483647, 2147483647, 'US', 'United States'), +('216.131.90.112', '216.131.90.119', 2147483647, 2147483647, 'TH', 'Thailand'), +('216.131.90.120', '216.131.90.191', 2147483647, 2147483647, 'US', 'United States'), +('216.131.90.192', '216.131.90.223', 2147483647, 2147483647, 'EE', 'Estonia'), +('216.131.90.224', '216.131.91.255', 2147483647, 2147483647, 'US', 'United States'), +('216.131.92.0', '216.131.92.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.131.92.32', '216.131.93.103', 2147483647, 2147483647, 'US', 'United States'), +('216.131.93.104', '216.131.93.111', 2147483647, 2147483647, 'CA', 'Canada'), +('216.131.93.112', '216.131.93.127', 2147483647, 2147483647, 'US', 'United States'), +('216.131.93.128', '216.131.93.135', 2147483647, 2147483647, 'BZ', 'Belize'), +('216.131.93.136', '216.131.98.127', 2147483647, 2147483647, 'US', 'United States'), +('216.131.98.128', '216.131.98.159', 2147483647, 2147483647, 'SR', 'Suriname'), +('216.131.98.160', '216.131.98.183', 2147483647, 2147483647, 'US', 'United States'), +('216.131.98.184', '216.131.98.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.131.98.192', '216.131.101.159', 2147483647, 2147483647, 'US', 'United States'), +('216.131.101.160', '216.131.101.167', 2147483647, 2147483647, 'TR', 'Turkey'), +('216.131.101.168', '216.131.101.175', 2147483647, 2147483647, 'US', 'United States'), +('216.131.101.176', '216.131.101.183', 2147483647, 2147483647, 'NL', 'Netherlands'), +('216.131.101.184', '216.131.101.191', 2147483647, 2147483647, 'US', 'United States'), +('216.131.101.192', '216.131.101.215', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.131.101.216', '216.131.104.39', 2147483647, 2147483647, 'US', 'United States'), +('216.131.104.40', '216.131.104.47', 2147483647, 2147483647, 'CA', 'Canada'), +('216.131.104.48', '216.131.104.55', 2147483647, 2147483647, 'TH', 'Thailand'), +('216.131.104.56', '216.131.104.63', 2147483647, 2147483647, 'US', 'United States'), +('216.131.104.64', '216.131.104.127', 2147483647, 2147483647, 'DE', 'Germany'), +('216.131.104.128', '216.131.104.191', 2147483647, 2147483647, 'US', 'United States'), +('216.131.104.192', '216.131.104.199', 2147483647, 2147483647, 'BZ', 'Belize'), +('216.131.104.200', '216.131.104.207', 2147483647, 2147483647, 'US', 'United States'), +('216.131.104.208', '216.131.104.223', 2147483647, 2147483647, 'TH', 'Thailand'), +('216.131.104.224', '216.131.104.247', 2147483647, 2147483647, 'US', 'United States'), +('216.131.104.248', '216.131.104.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('216.131.105.0', '216.131.105.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.131.105.32', '216.131.105.63', 2147483647, 2147483647, 'US', 'United States'), +('216.131.105.64', '216.131.105.71', 2147483647, 2147483647, 'TH', 'Thailand'), +('216.131.105.72', '216.131.105.95', 2147483647, 2147483647, 'US', 'United States'), +('216.131.105.96', '216.131.105.127', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('216.131.105.128', '216.131.105.135', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.131.105.136', '216.131.105.143', 2147483647, 2147483647, 'GR', 'Greece'), +('216.131.105.144', '216.131.105.183', 2147483647, 2147483647, 'US', 'United States'), +('216.131.105.184', '216.131.105.191', 2147483647, 2147483647, 'CA', 'Canada'), +('216.131.105.192', '216.131.106.143', 2147483647, 2147483647, 'US', 'United States'), +('216.131.106.144', '216.131.106.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.131.106.160', '216.131.106.223', 2147483647, 2147483647, 'US', 'United States'), +('216.131.106.224', '216.131.106.231', 2147483647, 2147483647, 'CA', 'Canada'), +('216.131.106.232', '216.131.106.255', 2147483647, 2147483647, 'US', 'United States'), +('216.131.107.0', '216.131.107.63', 2147483647, 2147483647, 'DM', 'Dominica'), +('216.131.107.64', '216.131.107.79', 2147483647, 2147483647, 'FR', 'France'), +('216.131.107.80', '216.131.107.87', 2147483647, 2147483647, 'BR', 'Brazil'), +('216.131.107.88', '216.131.107.95', 2147483647, 2147483647, 'US', 'United States'), +('216.131.107.96', '216.131.107.127', 2147483647, 2147483647, 'GI', 'Gibraltar'), +('216.131.107.128', '216.131.107.207', 2147483647, 2147483647, 'US', 'United States'), +('216.131.107.208', '216.131.107.223', 2147483647, 2147483647, 'TH', 'Thailand'), +('216.131.107.224', '216.131.107.239', 2147483647, 2147483647, 'ZA', 'South Africa'), +('216.131.107.240', '216.131.108.119', 2147483647, 2147483647, 'US', 'United States'), +('216.131.108.120', '216.131.108.127', 2147483647, 2147483647, 'CA', 'Canada'), +('216.131.108.128', '216.131.109.31', 2147483647, 2147483647, 'US', 'United States'), +('216.131.109.32', '216.131.109.47', 2147483647, 2147483647, 'TW', 'Taiwan'), +('216.131.109.48', '216.131.109.191', 2147483647, 2147483647, 'US', 'United States'), +('216.131.109.192', '216.131.109.223', 2147483647, 2147483647, 'SR', 'Suriname'), +('216.131.109.224', '216.131.109.231', 2147483647, 2147483647, 'US', 'United States'), +('216.131.109.232', '216.131.109.239', 2147483647, 2147483647, 'IO', 'British Indian Ocean Territory'), +('216.131.109.240', '216.131.109.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.131.110.0', '216.131.110.55', 2147483647, 2147483647, 'US', 'United States'), +('216.131.110.56', '216.131.110.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.131.110.64', '216.131.110.223', 2147483647, 2147483647, 'US', 'United States'), +('216.131.110.224', '216.131.110.231', 2147483647, 2147483647, 'CH', 'Switzerland'), +('216.131.110.232', '216.131.110.239', 2147483647, 2147483647, 'US', 'United States'), +('216.131.110.240', '216.131.110.247', 2147483647, 2147483647, 'CA', 'Canada'), +('216.131.110.248', '216.131.111.31', 2147483647, 2147483647, 'US', 'United States'), +('216.131.111.32', '216.131.111.39', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.131.111.40', '216.131.111.183', 2147483647, 2147483647, 'US', 'United States'), +('216.131.111.184', '216.131.111.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.131.111.192', '216.131.111.255', 2147483647, 2147483647, 'US', 'United States'), +('216.131.112.0', '216.131.112.7', 2147483647, 2147483647, 'FR', 'France'), +('216.131.112.8', '216.131.112.15', 2147483647, 2147483647, 'US', 'United States'), +('216.131.112.16', '216.131.112.31', 2147483647, 2147483647, 'CA', 'Canada'), +('216.131.112.32', '216.131.112.231', 2147483647, 2147483647, 'US', 'United States'), +('216.131.112.232', '216.131.112.247', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.131.112.248', '216.131.113.39', 2147483647, 2147483647, 'US', 'United States'), +('216.131.113.40', '216.131.113.47', 2147483647, 2147483647, 'CA', 'Canada'), +('216.131.113.48', '216.131.113.79', 2147483647, 2147483647, 'US', 'United States'), +('216.131.113.80', '216.131.113.87', 2147483647, 2147483647, 'TH', 'Thailand'), +('216.131.113.88', '216.131.113.103', 2147483647, 2147483647, 'US', 'United States'), +('216.131.113.104', '216.131.113.111', 2147483647, 2147483647, 'TH', 'Thailand'), +('216.131.113.112', '216.131.113.215', 2147483647, 2147483647, 'US', 'United States'), +('216.131.113.216', '216.131.113.223', 2147483647, 2147483647, 'GI', 'Gibraltar'), +('216.131.113.224', '216.131.113.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.131.114.0', '216.131.114.15', 2147483647, 2147483647, 'US', 'United States'), +('216.131.114.16', '216.131.114.23', 2147483647, 2147483647, 'CH', 'Switzerland'), +('216.131.114.24', '216.131.114.31', 2147483647, 2147483647, 'US', 'United States'), +('216.131.114.32', '216.131.114.63', 2147483647, 2147483647, 'IO', 'British Indian Ocean Territory'), +('216.131.114.64', '216.131.114.135', 2147483647, 2147483647, 'US', 'United States'), +('216.131.114.136', '216.131.114.143', 2147483647, 2147483647, 'CA', 'Canada'), +('216.131.114.144', '216.131.114.159', 2147483647, 2147483647, 'US', 'United States'), +('216.131.114.160', '216.131.114.167', 2147483647, 2147483647, 'DE', 'Germany'), +('216.131.114.168', '216.131.114.183', 2147483647, 2147483647, 'US', 'United States'), +('216.131.114.184', '216.131.114.191', 2147483647, 2147483647, 'TW', 'Taiwan'), +('216.131.114.192', '216.131.114.199', 2147483647, 2147483647, 'US', 'United States'), +('216.131.114.200', '216.131.114.207', 2147483647, 2147483647, 'DE', 'Germany'), +('216.131.114.208', '216.131.114.215', 2147483647, 2147483647, 'US', 'United States'), +('216.131.114.216', '216.131.114.223', 2147483647, 2147483647, 'SK', 'Slovakia'), +('216.131.114.224', '216.131.114.231', 2147483647, 2147483647, 'AU', 'Australia'), +('216.131.114.232', '216.131.114.239', 2147483647, 2147483647, 'IN', 'India'), +('216.131.114.240', '216.131.115.255', 2147483647, 2147483647, 'US', 'United States'), +('216.131.116.0', '216.131.116.7', 2147483647, 2147483647, 'TH', 'Thailand'), +('216.131.116.8', '216.131.116.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.131.116.16', '216.131.116.23', 2147483647, 2147483647, 'CA', 'Canada'), +('216.131.116.24', '216.131.116.39', 2147483647, 2147483647, 'US', 'United States'), +('216.131.116.40', '216.131.116.47', 2147483647, 2147483647, 'SK', 'Slovakia'), +('216.131.116.48', '216.131.116.71', 2147483647, 2147483647, 'US', 'United States'), +('216.131.116.72', '216.131.116.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.131.116.80', '216.131.116.95', 2147483647, 2147483647, 'NL', 'Netherlands'), +('216.131.116.96', '216.131.116.127', 2147483647, 2147483647, 'US', 'United States'), +('216.131.116.128', '216.131.116.135', 2147483647, 2147483647, 'NL', 'Netherlands'), +('216.131.116.136', '216.131.116.143', 2147483647, 2147483647, 'US', 'United States'), +('216.131.116.144', '216.131.116.159', 2147483647, 2147483647, 'CA', 'Canada'), +('216.131.116.160', '216.131.117.23', 2147483647, 2147483647, 'US', 'United States'), +('216.131.117.24', '216.131.117.31', 2147483647, 2147483647, 'CA', 'Canada'), +('216.131.117.32', '216.131.117.63', 2147483647, 2147483647, 'US', 'United States'), +('216.131.117.64', '216.131.117.71', 2147483647, 2147483647, 'CA', 'Canada'), +('216.131.117.72', '216.131.117.79', 2147483647, 2147483647, 'US', 'United States'), +('216.131.117.80', '216.131.117.87', 2147483647, 2147483647, 'CA', 'Canada'), +('216.131.117.88', '216.131.117.199', 2147483647, 2147483647, 'US', 'United States'), +('216.131.117.200', '216.131.117.207', 2147483647, 2147483647, 'CA', 'Canada'), +('216.131.117.208', '216.131.117.215', 2147483647, 2147483647, 'SK', 'Slovakia'), +('216.131.117.216', '216.131.119.63', 2147483647, 2147483647, 'US', 'United States'), +('216.131.119.64', '216.131.119.79', 2147483647, 2147483647, 'IO', 'British Indian Ocean Territory'), +('216.131.119.80', '216.131.119.95', 2147483647, 2147483647, 'US', 'United States'), +('216.131.119.96', '216.131.119.103', 2147483647, 2147483647, 'CA', 'Canada'), +('216.131.119.104', '216.131.119.111', 2147483647, 2147483647, 'US', 'United States'), +('216.131.119.112', '216.131.119.119', 2147483647, 2147483647, 'TH', 'Thailand'), +('216.131.119.120', '216.131.119.207', 2147483647, 2147483647, 'US', 'United States'), +('216.131.119.208', '216.131.119.231', 2147483647, 2147483647, 'TH', 'Thailand'), +('216.131.119.232', '216.131.119.255', 2147483647, 2147483647, 'US', 'United States'), +('216.131.120.0', '216.131.120.127', 2147483647, 2147483647, 'CA', 'Canada'), +('216.131.120.128', '216.131.121.127', 2147483647, 2147483647, 'US', 'United States'), +('216.131.121.128', '216.131.121.159', 2147483647, 2147483647, 'FR', 'France'), +('216.131.121.160', '216.131.121.255', 2147483647, 2147483647, 'US', 'United States'), +('216.131.122.0', '216.131.122.7', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.131.122.8', '216.131.122.15', 2147483647, 2147483647, 'US', 'United States'), +('216.131.122.16', '216.131.122.31', 2147483647, 2147483647, 'IL', 'Israel'), +('216.131.122.32', '216.131.122.127', 2147483647, 2147483647, 'US', 'United States'), +('216.131.122.128', '216.131.122.135', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.131.122.136', '216.131.122.143', 2147483647, 2147483647, 'US', 'United States'), +('216.131.122.144', '216.131.122.151', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.131.122.152', '216.131.122.159', 2147483647, 2147483647, 'US', 'United States'), +('216.131.122.160', '216.131.122.191', 2147483647, 2147483647, 'CA', 'Canada'), +('216.131.122.192', '216.131.122.207', 2147483647, 2147483647, 'US', 'United States'), +('216.131.122.208', '216.131.122.215', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.131.122.216', '216.131.122.223', 2147483647, 2147483647, 'CA', 'Canada'), +('216.131.122.224', '216.131.122.247', 2147483647, 2147483647, 'US', 'United States'), +('216.131.122.248', '216.131.122.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('216.131.123.0', '216.131.123.127', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('216.131.123.128', '216.131.125.127', 2147483647, 2147483647, 'US', 'United States'), +('216.131.125.128', '216.131.125.159', 2147483647, 2147483647, 'GI', 'Gibraltar'), +('216.131.125.160', '216.131.125.183', 2147483647, 2147483647, 'US', 'United States'), +('216.131.125.184', '216.131.125.191', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('216.131.125.192', '216.131.125.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.131.126.0', '216.131.126.7', 2147483647, 2147483647, 'US', 'United States'), +('216.131.126.8', '216.131.126.15', 2147483647, 2147483647, 'NL', 'Netherlands'), +('216.131.126.16', '216.131.126.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.131.126.32', '216.131.126.63', 2147483647, 2147483647, 'US', 'United States'), +('216.131.126.64', '216.131.126.111', 2147483647, 2147483647, 'CA', 'Canada'), +('216.131.126.112', '216.133.225.15', 2147483647, 2147483647, 'US', 'United States'), +('216.133.225.16', '216.133.225.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.133.225.32', '216.134.229.199', 2147483647, 2147483647, 'US', 'United States'), +('216.134.229.200', '216.134.229.207', 2147483647, 2147483647, 'SG', 'Singapore'), +('216.134.229.208', '216.136.136.127', 2147483647, 2147483647, 'US', 'United States'), +('216.136.136.128', '216.136.136.143', 2147483647, 2147483647, 'CN', 'China'), +('216.136.136.144', '216.136.162.207', 2147483647, 2147483647, 'US', 'United States'), +('216.136.162.208', '216.136.162.223', 2147483647, 2147483647, 'CN', 'China'), +('216.136.162.224', '216.136.178.15', 2147483647, 2147483647, 'US', 'United States'), +('216.136.178.16', '216.136.178.31', 2147483647, 2147483647, 'IN', 'India'), +('216.136.178.32', '216.136.182.255', 2147483647, 2147483647, 'US', 'United States'), +('216.136.183.0', '216.136.183.31', 2147483647, 2147483647, 'TW', 'Taiwan'), +('216.136.183.32', '216.136.183.183', 2147483647, 2147483647, 'US', 'United States'), +('216.136.183.184', '216.136.183.191', 2147483647, 2147483647, 'CN', 'China'), +('216.136.183.192', '216.136.217.175', 2147483647, 2147483647, 'US', 'United States'), +('216.136.217.176', '216.136.217.191', 2147483647, 2147483647, 'CN', 'China'), +('216.136.217.192', '216.136.255.255', 2147483647, 2147483647, 'US', 'United States'), +('216.137.0.0', '216.137.15.255', 2147483647, 2147483647, 'BS', 'Bahamas'), +('216.137.16.0', '216.137.95.255', 2147483647, 2147483647, 'US', 'United States'), +('216.137.96.0', '216.137.127.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.137.128.0', '216.137.159.255', 2147483647, 2147483647, 'US', 'United States'), +('216.137.160.0', '216.137.161.31', 2147483647, 2147483647, 'CA', 'Canada'), +('216.137.161.32', '216.137.161.47', 2147483647, 2147483647, 'US', 'United States'), +('216.137.161.48', '216.137.175.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.137.176.0', '216.138.191.255', 2147483647, 2147483647, 'US', 'United States'), +('216.138.192.0', '216.138.192.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.138.193.0', '216.138.193.31', 2147483647, 2147483647, 'US', 'United States'), +('216.138.193.32', '216.138.197.31', 2147483647, 2147483647, 'CA', 'Canada'), +('216.138.197.32', '216.138.197.63', 2147483647, 2147483647, 'US', 'United States'), +('216.138.197.64', '216.138.209.159', 2147483647, 2147483647, 'CA', 'Canada'), +('216.138.209.160', '216.138.209.175', 2147483647, 2147483647, 'US', 'United States'), +('216.138.209.176', '216.138.225.31', 2147483647, 2147483647, 'CA', 'Canada'), +('216.138.225.32', '216.138.225.39', 2147483647, 2147483647, 'US', 'United States'), +('216.138.225.40', '216.138.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.139.0.0', '216.139.159.255', 2147483647, 2147483647, 'US', 'United States'), +('216.139.160.0', '216.139.161.255', 2147483647, 2147483647, 'PY', 'Paraguay'), +('216.139.162.0', '216.139.163.255', 2147483647, 2147483647, 'NI', 'Nicaragua'), +('216.139.164.0', '216.139.164.71', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.139.164.72', '216.139.164.79', 2147483647, 2147483647, 'NG', 'Nigeria'), +('216.139.164.80', '216.139.165.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.139.166.0', '216.139.166.255', 2147483647, 2147483647, 'SN', 'Senegal'), +('216.139.167.0', '216.139.167.255', 2147483647, 2147483647, 'US', 'United States'), +('216.139.168.0', '216.139.169.95', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.139.169.96', '216.139.169.111', 2147483647, 2147483647, 'US', 'United States'), +('216.139.169.112', '216.139.169.223', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.139.169.224', '216.139.169.231', 2147483647, 2147483647, 'NG', 'Nigeria'), +('216.139.169.232', '216.139.170.7', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.139.170.8', '216.139.170.15', 2147483647, 2147483647, 'NG', 'Nigeria'), +('216.139.170.16', '216.139.170.23', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.139.170.24', '216.139.170.31', 2147483647, 2147483647, 'US', 'United States'), +('216.139.170.32', '216.139.170.39', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.139.170.40', '216.139.170.63', 2147483647, 2147483647, 'US', 'United States'), +('216.139.170.64', '216.139.170.191', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.139.170.192', '216.139.170.207', 2147483647, 2147483647, 'US', 'United States'), +('216.139.170.208', '216.139.171.23', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.139.171.24', '216.139.171.31', 2147483647, 2147483647, 'NL', 'Netherlands'), +('216.139.171.32', '216.139.171.47', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.139.171.48', '216.139.171.55', 2147483647, 2147483647, 'PG', 'Papua New Guinea'), +('216.139.171.56', '216.139.171.151', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.139.171.152', '216.139.171.159', 2147483647, 2147483647, 'NL', 'Netherlands'), +('216.139.171.160', '216.139.171.231', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.139.171.232', '216.139.171.239', 2147483647, 2147483647, 'NL', 'Netherlands'), +('216.139.171.240', '216.139.172.31', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.139.172.32', '216.139.172.39', 2147483647, 2147483647, 'NG', 'Nigeria'), +('216.139.172.40', '216.139.172.95', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.139.172.96', '216.139.172.127', 2147483647, 2147483647, 'GQ', 'Equatorial Guinea'), +('216.139.172.128', '216.139.172.223', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.139.172.224', '216.139.172.239', 2147483647, 2147483647, 'NG', 'Nigeria'), +('216.139.172.240', '216.139.173.95', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.139.173.96', '216.139.173.119', 2147483647, 2147483647, 'NG', 'Nigeria'), +('216.139.173.120', '216.139.176.71', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.139.176.72', '216.139.176.79', 2147483647, 2147483647, 'GH', 'Ghana'), +('216.139.176.80', '216.139.176.87', 2147483647, 2147483647, 'NG', 'Nigeria'), +('216.139.176.88', '216.139.176.103', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.139.176.104', '216.139.176.111', 2147483647, 2147483647, 'NG', 'Nigeria'), +('216.139.176.112', '216.139.176.143', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.139.176.144', '216.139.176.151', 2147483647, 2147483647, 'NG', 'Nigeria'), +('216.139.176.152', '216.139.176.159', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.139.176.160', '216.139.176.175', 2147483647, 2147483647, 'NG', 'Nigeria'), +('216.139.176.176', '216.139.177.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.139.178.0', '216.139.178.191', 2147483647, 2147483647, 'US', 'United States'), +('216.139.178.192', '216.139.179.127', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.139.179.128', '216.139.179.255', 2147483647, 2147483647, 'US', 'United States'), +('216.139.180.0', '216.139.181.23', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.139.181.24', '216.139.181.31', 2147483647, 2147483647, 'NG', 'Nigeria'), +('216.139.181.32', '216.139.181.63', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.139.181.64', '216.139.181.255', 2147483647, 2147483647, 'NG', 'Nigeria'), +('216.139.182.0', '216.139.183.7', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.139.183.8', '216.139.183.15', 2147483647, 2147483647, 'NL', 'Netherlands'), +('216.139.183.16', '216.139.183.63', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.139.183.64', '216.139.183.79', 2147483647, 2147483647, 'NR', 'Nauru'), +('216.139.183.80', '216.139.183.87', 2147483647, 2147483647, 'CN', 'China'), +('216.139.183.88', '216.139.183.127', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.139.183.128', '216.139.183.143', 2147483647, 2147483647, 'NR', 'Nauru'), +('216.139.183.144', '216.139.183.191', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.139.183.192', '216.139.183.199', 2147483647, 2147483647, 'ID', 'Indonesia'), +('216.139.183.200', '216.139.184.47', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.139.184.48', '216.139.184.55', 2147483647, 2147483647, 'ID', 'Indonesia'), +('216.139.184.56', '216.139.184.175', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.139.184.176', '216.139.184.183', 2147483647, 2147483647, 'ID', 'Indonesia'), +('216.139.184.184', '216.139.184.191', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.139.184.192', '216.139.184.223', 2147483647, 2147483647, 'ID', 'Indonesia'), +('216.139.184.224', '216.139.185.7', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.139.185.8', '216.139.185.15', 2147483647, 2147483647, 'NG', 'Nigeria'), +('216.139.185.16', '216.139.186.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.139.187.0', '216.139.187.255', 2147483647, 2147483647, 'HT', 'Haiti'), +('216.139.188.0', '216.139.188.191', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.139.188.192', '216.139.188.223', 2147483647, 2147483647, 'TT', 'Trinidad and Tobago'), +('216.139.188.224', '216.139.189.47', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.139.189.48', '216.139.189.55', 2147483647, 2147483647, 'US', 'United States'), +('216.139.189.56', '216.139.190.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.139.191.0', '216.141.182.255', 2147483647, 2147483647, 'US', 'United States'), +('216.141.183.0', '216.141.183.127', 2147483647, 2147483647, 'MX', 'Mexico'), +('216.141.183.128', '216.144.79.255', 2147483647, 2147483647, 'US', 'United States'), +('216.144.80.0', '216.144.95.255', 2147483647, 2147483647, 'KY', 'Cayman Islands'), +('216.144.96.0', '216.144.111.255', 2147483647, 2147483647, 'US', 'United States'), +('216.144.112.0', '216.144.127.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.144.128.0', '216.144.225.95', 2147483647, 2147483647, 'US', 'United States'), +('216.144.225.96', '216.144.225.127', 2147483647, 2147483647, 'BA', 'Bosnia and Herzegovina'), +('216.144.225.128', '216.144.230.79', 2147483647, 2147483647, 'US', 'United States'), +('216.144.230.80', '216.144.230.95', 2147483647, 2147483647, 'CA', 'Canada'), +('216.144.230.96', '216.144.238.191', 2147483647, 2147483647, 'US', 'United States'), +('216.144.238.192', '216.144.238.223', 2147483647, 2147483647, 'CA', 'Canada'), +('216.144.238.224', '216.144.239.63', 2147483647, 2147483647, 'US', 'United States'), +('216.144.239.64', '216.144.239.95', 2147483647, 2147483647, 'IN', 'India'), +('216.144.239.96', '216.144.247.255', 2147483647, 2147483647, 'US', 'United States'), +('216.145.0.0', '216.145.95.255', 2147483647, 2147483647, 'US', 'United States'), +('216.145.96.0', '216.145.111.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.145.112.0', '216.146.127.255', 2147483647, 2147483647, 'US', 'United States'), +('216.146.128.0', '216.146.143.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.146.144.0', '216.147.6.0', 2147483647, 2147483647, 'US', 'United States'), +('216.147.6.1', '216.147.6.254', 2147483647, 2147483647, 'ES', 'Spain'), +('216.147.6.255', '216.147.127.255', 2147483647, 2147483647, 'US', 'United States'), +('216.147.128.0', '216.147.129.255', 2147483647, 2147483647, 'GA', 'Gabon'), +('216.147.130.0', '216.147.132.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.147.133.0', '216.147.133.255', 2147483647, 2147483647, 'GA', 'Gabon'), +('216.147.134.0', '216.147.135.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.147.136.0', '216.147.139.255', 2147483647, 2147483647, 'GA', 'Gabon'), +('216.147.140.0', '216.147.140.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.147.141.0', '216.147.141.255', 2147483647, 2147483647, 'GA', 'Gabon'), +('216.147.142.0', '216.147.142.127', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.147.142.128', '216.147.142.255', 2147483647, 2147483647, 'GA', 'Gabon'), +('216.147.143.0', '216.147.147.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.147.148.0', '216.147.148.63', 2147483647, 2147483647, 'US', 'United States'), +('216.147.148.64', '216.147.158.15', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.147.158.16', '216.147.158.31', 2147483647, 2147483647, 'GA', 'Gabon'), +('216.147.158.32', '216.147.158.55', 2147483647, 2147483647, 'US', 'United States'), +('216.147.158.56', '216.147.158.63', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.147.158.64', '216.147.158.71', 2147483647, 2147483647, 'US', 'United States'), +('216.147.158.72', '216.147.158.135', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.147.158.136', '216.147.158.143', 2147483647, 2147483647, 'US', 'United States'), +('216.147.158.144', '216.147.158.231', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.147.158.232', '216.147.158.239', 2147483647, 2147483647, 'US', 'United States'), +('216.147.158.240', '216.147.158.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.147.159.0', '216.147.159.127', 2147483647, 2147483647, 'GW', 'Guinea-Bissau'), +('216.147.159.128', '216.147.159.143', 2147483647, 2147483647, 'US', 'United States'), +('216.147.159.144', '216.147.159.199', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.147.159.200', '216.147.159.215', 2147483647, 2147483647, 'US', 'United States'), +('216.147.159.216', '216.147.159.247', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.147.159.248', '216.151.159.255', 2147483647, 2147483647, 'US', 'United States'), +('216.151.160.0', '216.151.162.55', 2147483647, 2147483647, 'CA', 'Canada'), +('216.151.162.56', '216.151.162.63', 2147483647, 2147483647, 'IN', 'India'), +('216.151.162.64', '216.151.162.111', 2147483647, 2147483647, 'CA', 'Canada'), +('216.151.162.112', '216.151.162.127', 2147483647, 2147483647, 'US', 'United States'), +('216.151.162.128', '216.151.162.159', 2147483647, 2147483647, 'CA', 'Canada'), +('216.151.162.160', '216.151.162.167', 2147483647, 2147483647, 'IN', 'India'), +('216.151.162.168', '216.151.162.183', 2147483647, 2147483647, 'CA', 'Canada'), +('216.151.162.184', '216.151.162.191', 2147483647, 2147483647, 'IN', 'India'), +('216.151.162.192', '216.151.162.215', 2147483647, 2147483647, 'CA', 'Canada'), +('216.151.162.216', '216.151.162.223', 2147483647, 2147483647, 'US', 'United States'), +('216.151.162.224', '216.151.163.31', 2147483647, 2147483647, 'CA', 'Canada'), +('216.151.163.32', '216.151.163.63', 2147483647, 2147483647, 'IN', 'India'), +('216.151.163.64', '216.151.163.71', 2147483647, 2147483647, 'NG', 'Nigeria'), +('216.151.163.72', '216.151.163.79', 2147483647, 2147483647, 'US', 'United States'), +('216.151.163.80', '216.151.163.87', 2147483647, 2147483647, 'CA', 'Canada'), +('216.151.163.88', '216.151.163.103', 2147483647, 2147483647, 'US', 'United States'), +('216.151.163.104', '216.151.163.111', 2147483647, 2147483647, 'CA', 'Canada'), +('216.151.163.112', '216.151.163.143', 2147483647, 2147483647, 'US', 'United States'), +('216.151.163.144', '216.151.175.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.151.176.0', '216.152.159.255', 2147483647, 2147483647, 'US', 'United States'), +('216.152.160.0', '216.152.175.255', 2147483647, 2147483647, 'AN', 'Netherlands Antilles'), +('216.152.176.0', '216.152.191.255', 2147483647, 2147483647, 'US', 'United States'), +('216.152.192.0', '216.152.207.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.152.208.0', '216.153.38.255', 2147483647, 2147483647, 'US', 'United States'), +('216.153.39.0', '216.153.39.255', 2147483647, 2147483647, 'IT', 'Italy'), +('216.153.40.0', '216.153.64.255', 2147483647, 2147483647, 'US', 'United States'), +('216.153.65.0', '216.153.65.63', 2147483647, 2147483647, 'TN', 'Tunisia'), +('216.153.65.64', '216.153.255.255', 2147483647, 2147483647, 'US', 'United States'), +('216.154.0.0', '216.154.191.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.154.192.0', '216.155.63.255', 2147483647, 2147483647, 'US', 'United States'), +('216.155.64.0', '216.155.95.255', 2147483647, 2147483647, 'CL', 'Chile'), +('216.155.96.0', '216.155.111.159', 2147483647, 2147483647, 'US', 'United States'), +('216.155.111.160', '216.155.111.191', 2147483647, 2147483647, 'SV', 'El Salvador'), +('216.155.111.192', '216.156.92.7', 2147483647, 2147483647, 'US', 'United States'), +('216.156.92.8', '216.156.92.15', 2147483647, 2147483647, 'CA', 'Canada'), +('216.156.92.16', '216.156.92.31', 2147483647, 2147483647, 'JP', 'Japan'), +('216.156.92.32', '216.156.92.63', 2147483647, 2147483647, 'US', 'United States'), +('216.156.92.64', '216.156.92.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.156.92.80', '216.156.92.127', 2147483647, 2147483647, 'US', 'United States'), +('216.156.92.128', '216.156.92.143', 2147483647, 2147483647, 'CA', 'Canada'), +('216.156.92.144', '216.156.129.127', 2147483647, 2147483647, 'US', 'United States'), +('216.156.129.128', '216.156.129.191', 2147483647, 2147483647, 'CA', 'Canada'), +('216.156.129.192', '216.156.131.127', 2147483647, 2147483647, 'US', 'United States'), +('216.156.131.128', '216.156.131.254', 2147483647, 2147483647, 'CA', 'Canada'), +('216.156.131.255', '216.156.132.39', 2147483647, 2147483647, 'US', 'United States'), +('216.156.132.40', '216.156.132.47', 2147483647, 2147483647, 'CA', 'Canada'), +('216.156.132.48', '216.156.140.15', 2147483647, 2147483647, 'US', 'United States'), +('216.156.140.16', '216.156.140.31', 2147483647, 2147483647, 'CA', 'Canada'), +('216.156.140.32', '216.157.142.95', 2147483647, 2147483647, 'US', 'United States'), +('216.157.142.96', '216.157.142.103', 2147483647, 2147483647, 'AT', 'Austria'), +('216.157.142.104', '216.157.143.175', 2147483647, 2147483647, 'US', 'United States'), +('216.157.143.176', '216.157.143.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.157.143.192', '216.158.134.1', 2147483647, 2147483647, 'US', 'United States'), +('216.158.134.2', '216.158.134.33', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.158.134.34', '216.158.141.229', 2147483647, 2147483647, 'US', 'United States'), +('216.158.141.230', '216.158.141.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.158.141.240', '216.158.142.105', 2147483647, 2147483647, 'US', 'United States'), +('216.158.142.106', '216.158.142.119', 2147483647, 2147483647, 'CA', 'Canada'), +('216.158.142.120', '216.158.143.64', 2147483647, 2147483647, 'US', 'United States'), +('216.158.143.65', '216.158.143.128', 2147483647, 2147483647, 'CN', 'China'), +('216.158.143.129', '216.158.147.0', 2147483647, 2147483647, 'US', 'United States'), +('216.158.147.1', '216.158.147.255', 2147483647, 2147483647, 'CN', 'China'), +('216.158.148.0', '216.158.148.0', 2147483647, 2147483647, 'US', 'United States'), +('216.158.148.1', '216.158.148.96', 2147483647, 2147483647, 'CA', 'Canada'), +('216.158.148.97', '216.160.10.47', 2147483647, 2147483647, 'US', 'United States'), +('216.160.10.48', '216.160.10.55', 2147483647, 2147483647, 'CA', 'Canada'), +('216.160.10.56', '216.162.63.255', 2147483647, 2147483647, 'US', 'United States'), +('216.162.64.0', '216.162.79.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.162.80.0', '216.162.111.255', 2147483647, 2147483647, 'US', 'United States'), +('216.162.128.0', '216.162.223.255', 2147483647, 2147483647, 'US', 'United States'), +('216.162.224.0', '216.162.239.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.162.240.0', '216.167.223.255', 2147483647, 2147483647, 'US', 'United States'), +('216.167.224.0', '216.167.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.168.0.0', '216.168.95.255', 2147483647, 2147483647, 'US', 'United States'), +('216.168.96.0', '216.168.105.79', 2147483647, 2147483647, 'CA', 'Canada'), +('216.168.105.80', '216.168.105.95', 2147483647, 2147483647, 'US', 'United States'), +('216.168.105.96', '216.168.127.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.168.128.0', '216.168.143.255', 2147483647, 2147483647, 'US', 'United States'), +('216.168.144.0', '216.168.159.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.168.160.0', '216.171.95.255', 2147483647, 2147483647, 'US', 'United States'), +('216.171.96.0', '216.171.111.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.171.112.0', '216.171.223.255', 2147483647, 2147483647, 'US', 'United States'), +('216.171.224.0', '216.171.239.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.171.240.0', '216.174.127.255', 2147483647, 2147483647, 'US', 'United States'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('216.174.128.0', '216.174.159.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.174.160.0', '216.175.255.255', 2147483647, 2147483647, 'US', 'United States'), +('216.176.48.0', '216.176.63.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.176.64.0', '216.176.177.223', 2147483647, 2147483647, 'US', 'United States'), +('216.176.177.224', '216.176.177.239', 2147483647, 2147483647, 'CH', 'Switzerland'), +('216.176.177.240', '216.176.183.191', 2147483647, 2147483647, 'US', 'United States'), +('216.176.183.192', '216.176.183.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('216.176.184.0', '216.176.185.191', 2147483647, 2147483647, 'US', 'United States'), +('216.176.185.192', '216.176.185.223', 2147483647, 2147483647, 'CH', 'Switzerland'), +('216.176.185.224', '216.176.186.191', 2147483647, 2147483647, 'US', 'United States'), +('216.176.186.192', '216.176.186.223', 2147483647, 2147483647, 'CH', 'Switzerland'), +('216.176.186.224', '216.176.199.95', 2147483647, 2147483647, 'US', 'United States'), +('216.176.199.96', '216.176.199.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.176.199.128', '216.176.199.191', 2147483647, 2147483647, 'US', 'United States'), +('216.176.199.192', '216.176.199.199', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.176.199.200', '216.176.200.31', 2147483647, 2147483647, 'US', 'United States'), +('216.176.200.32', '216.176.200.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.176.200.48', '216.176.207.255', 2147483647, 2147483647, 'US', 'United States'), +('216.176.208.0', '216.176.223.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.176.224.0', '216.177.209.255', 2147483647, 2147483647, 'US', 'United States'), +('216.177.210.0', '216.177.210.7', 2147483647, 2147483647, 'ES', 'Spain'), +('216.177.210.8', '216.177.212.199', 2147483647, 2147483647, 'US', 'United States'), +('216.177.212.200', '216.177.212.207', 2147483647, 2147483647, 'NO', 'Norway'), +('216.177.212.208', '216.179.191.255', 2147483647, 2147483647, 'US', 'United States'), +('216.179.192.0', '216.179.199.255', 2147483647, 2147483647, 'CN', 'China'), +('216.179.200.0', '216.182.91.127', 2147483647, 2147483647, 'US', 'United States'), +('216.182.91.128', '216.182.91.159', 2147483647, 2147483647, 'CA', 'Canada'), +('216.182.91.160', '216.182.255.255', 2147483647, 2147483647, 'US', 'United States'), +('216.183.0.0', '216.183.31.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.183.32.0', '216.183.79.255', 2147483647, 2147483647, 'US', 'United States'), +('216.183.80.0', '216.183.95.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.183.96.0', '216.183.127.255', 2147483647, 2147483647, 'US', 'United States'), +('216.183.128.0', '216.183.159.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.183.160.0', '216.184.95.255', 2147483647, 2147483647, 'US', 'United States'), +('216.184.96.0', '216.184.103.255', 2147483647, 2147483647, 'SV', 'El Salvador'), +('216.184.104.0', '216.184.104.255', 2147483647, 2147483647, 'US', 'United States'), +('216.184.105.0', '216.184.105.255', 2147483647, 2147483647, 'BO', 'Bolivia'), +('216.184.106.0', '216.184.111.255', 2147483647, 2147483647, 'SV', 'El Salvador'), +('216.184.112.0', '216.184.115.255', 2147483647, 2147483647, 'BO', 'Bolivia'), +('216.184.116.0', '216.184.119.255', 2147483647, 2147483647, 'PY', 'Paraguay'), +('216.184.120.0', '216.184.127.255', 2147483647, 2147483647, 'SV', 'El Salvador'), +('216.184.128.0', '216.185.63.255', 2147483647, 2147483647, 'US', 'United States'), +('216.185.64.0', '216.185.74.15', 2147483647, 2147483647, 'CA', 'Canada'), +('216.185.74.16', '216.185.74.31', 2147483647, 2147483647, 'US', 'United States'), +('216.185.74.32', '216.185.95.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.185.96.0', '216.185.239.255', 2147483647, 2147483647, 'US', 'United States'), +('216.185.240.0', '216.185.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.186.0.0', '216.187.64.223', 2147483647, 2147483647, 'US', 'United States'), +('216.187.64.224', '216.187.64.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.187.65.0', '216.187.66.15', 2147483647, 2147483647, 'US', 'United States'), +('216.187.66.16', '216.187.66.47', 2147483647, 2147483647, 'CA', 'Canada'), +('216.187.66.48', '216.187.66.127', 2147483647, 2147483647, 'US', 'United States'), +('216.187.66.128', '216.187.66.223', 2147483647, 2147483647, 'CA', 'Canada'), +('216.187.66.224', '216.187.66.239', 2147483647, 2147483647, 'BS', 'Bahamas'), +('216.187.66.240', '216.187.66.247', 2147483647, 2147483647, 'CA', 'Canada'), +('216.187.66.248', '216.187.67.63', 2147483647, 2147483647, 'US', 'United States'), +('216.187.67.64', '216.187.67.127', 2147483647, 2147483647, 'CA', 'Canada'), +('216.187.67.128', '216.187.67.159', 2147483647, 2147483647, 'US', 'United States'), +('216.187.67.160', '216.187.68.159', 2147483647, 2147483647, 'CA', 'Canada'), +('216.187.68.160', '216.187.68.183', 2147483647, 2147483647, 'US', 'United States'), +('216.187.68.184', '216.187.68.192', 2147483647, 2147483647, 'CA', 'Canada'), +('216.187.68.193', '216.187.68.239', 2147483647, 2147483647, 'US', 'United States'), +('216.187.68.240', '216.187.69.31', 2147483647, 2147483647, 'CA', 'Canada'), +('216.187.69.32', '216.187.69.39', 2147483647, 2147483647, 'US', 'United States'), +('216.187.69.40', '216.187.69.207', 2147483647, 2147483647, 'CA', 'Canada'), +('216.187.69.208', '216.187.69.223', 2147483647, 2147483647, 'US', 'United States'), +('216.187.69.224', '216.187.72.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.187.73.0', '216.187.73.15', 2147483647, 2147483647, 'US', 'United States'), +('216.187.73.16', '216.187.73.63', 2147483647, 2147483647, 'CA', 'Canada'), +('216.187.73.64', '216.187.73.127', 2147483647, 2147483647, 'US', 'United States'), +('216.187.73.128', '216.187.73.191', 2147483647, 2147483647, 'CA', 'Canada'), +('216.187.73.192', '216.187.73.255', 2147483647, 2147483647, 'US', 'United States'), +('216.187.74.0', '216.187.74.31', 2147483647, 2147483647, 'CA', 'Canada'), +('216.187.74.32', '216.187.74.63', 2147483647, 2147483647, 'US', 'United States'), +('216.187.74.64', '216.187.74.191', 2147483647, 2147483647, 'CA', 'Canada'), +('216.187.74.192', '216.187.74.223', 2147483647, 2147483647, 'KN', 'Saint Kitts and Nevis'), +('216.187.74.224', '216.187.74.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.187.75.0', '216.187.75.127', 2147483647, 2147483647, 'US', 'United States'), +('216.187.75.128', '216.187.75.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.187.76.0', '216.187.76.31', 2147483647, 2147483647, 'US', 'United States'), +('216.187.76.32', '216.187.77.223', 2147483647, 2147483647, 'CA', 'Canada'), +('216.187.77.224', '216.187.77.239', 2147483647, 2147483647, 'US', 'United States'), +('216.187.77.240', '216.187.77.247', 2147483647, 2147483647, 'CA', 'Canada'), +('216.187.77.248', '216.187.78.255', 2147483647, 2147483647, 'US', 'United States'), +('216.187.79.0', '216.187.82.15', 2147483647, 2147483647, 'CA', 'Canada'), +('216.187.82.16', '216.187.82.47', 2147483647, 2147483647, 'US', 'United States'), +('216.187.82.48', '216.187.82.95', 2147483647, 2147483647, 'CA', 'Canada'), +('216.187.82.96', '216.187.82.99', 2147483647, 2147483647, 'US', 'United States'), +('216.187.82.100', '216.187.82.110', 2147483647, 2147483647, 'CA', 'Canada'), +('216.187.82.111', '216.187.82.111', 2147483647, 2147483647, 'US', 'United States'), +('216.187.82.112', '216.187.82.127', 2147483647, 2147483647, 'CA', 'Canada'), +('216.187.82.128', '216.187.82.191', 2147483647, 2147483647, 'US', 'United States'), +('216.187.82.192', '216.187.82.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.187.83.0', '216.187.84.127', 2147483647, 2147483647, 'US', 'United States'), +('216.187.84.128', '216.187.85.127', 2147483647, 2147483647, 'CA', 'Canada'), +('216.187.85.128', '216.187.85.191', 2147483647, 2147483647, 'US', 'United States'), +('216.187.85.192', '216.187.86.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.187.87.0', '216.187.87.31', 2147483647, 2147483647, 'US', 'United States'), +('216.187.87.32', '216.187.87.95', 2147483647, 2147483647, 'CA', 'Canada'), +('216.187.87.96', '216.187.87.96', 2147483647, 2147483647, 'US', 'United States'), +('216.187.87.97', '216.187.87.111', 2147483647, 2147483647, 'CA', 'Canada'), +('216.187.87.112', '216.187.87.119', 2147483647, 2147483647, 'US', 'United States'), +('216.187.87.120', '216.187.87.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.187.88.0', '216.187.89.255', 2147483647, 2147483647, 'US', 'United States'), +('216.187.90.0', '216.187.90.135', 2147483647, 2147483647, 'CA', 'Canada'), +('216.187.90.136', '216.187.90.239', 2147483647, 2147483647, 'US', 'United States'), +('216.187.90.240', '216.187.90.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.187.91.0', '216.187.91.255', 2147483647, 2147483647, 'US', 'United States'), +('216.187.92.0', '216.187.94.63', 2147483647, 2147483647, 'CA', 'Canada'), +('216.187.94.64', '216.187.94.79', 2147483647, 2147483647, 'US', 'United States'), +('216.187.94.80', '216.187.94.111', 2147483647, 2147483647, 'CA', 'Canada'), +('216.187.94.112', '216.187.94.127', 2147483647, 2147483647, 'US', 'United States'), +('216.187.94.128', '216.187.94.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.187.95.0', '216.187.95.15', 2147483647, 2147483647, 'US', 'United States'), +('216.187.95.16', '216.187.95.127', 2147483647, 2147483647, 'CA', 'Canada'), +('216.187.95.128', '216.187.95.143', 2147483647, 2147483647, 'US', 'United States'), +('216.187.95.144', '216.187.95.159', 2147483647, 2147483647, 'CA', 'Canada'), +('216.187.95.160', '216.187.95.191', 2147483647, 2147483647, 'US', 'United States'), +('216.187.95.192', '216.187.95.223', 2147483647, 2147483647, 'CA', 'Canada'), +('216.187.95.224', '216.187.95.255', 2147483647, 2147483647, 'US', 'United States'), +('216.187.96.0', '216.187.96.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.187.97.0', '216.187.97.63', 2147483647, 2147483647, 'US', 'United States'), +('216.187.97.64', '216.187.97.95', 2147483647, 2147483647, 'CA', 'Canada'), +('216.187.97.96', '216.187.97.111', 2147483647, 2147483647, 'US', 'United States'), +('216.187.97.112', '216.187.97.127', 2147483647, 2147483647, 'CA', 'Canada'), +('216.187.97.128', '216.187.97.255', 2147483647, 2147483647, 'US', 'United States'), +('216.187.98.0', '216.187.100.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.187.101.0', '216.187.101.31', 2147483647, 2147483647, 'US', 'United States'), +('216.187.101.32', '216.187.101.63', 2147483647, 2147483647, 'CA', 'Canada'), +('216.187.101.64', '216.187.101.95', 2147483647, 2147483647, 'US', 'United States'), +('216.187.101.96', '216.187.101.127', 2147483647, 2147483647, 'CA', 'Canada'), +('216.187.101.128', '216.187.101.255', 2147483647, 2147483647, 'IN', 'India'), +('216.187.102.0', '216.187.102.255', 2147483647, 2147483647, 'US', 'United States'), +('216.187.103.0', '216.187.103.159', 2147483647, 2147483647, 'CA', 'Canada'), +('216.187.103.160', '216.187.103.175', 2147483647, 2147483647, 'US', 'United States'), +('216.187.103.176', '216.187.105.63', 2147483647, 2147483647, 'CA', 'Canada'), +('216.187.105.64', '216.187.105.127', 2147483647, 2147483647, 'US', 'United States'), +('216.187.105.128', '216.187.105.159', 2147483647, 2147483647, 'CA', 'Canada'), +('216.187.105.160', '216.187.105.207', 2147483647, 2147483647, 'US', 'United States'), +('216.187.105.208', '216.187.106.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.187.107.0', '216.187.107.63', 2147483647, 2147483647, 'US', 'United States'), +('216.187.107.64', '216.187.107.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.187.108.0', '216.187.108.255', 2147483647, 2147483647, 'US', 'United States'), +('216.187.109.0', '216.187.109.79', 2147483647, 2147483647, 'CA', 'Canada'), +('216.187.109.80', '216.187.109.93', 2147483647, 2147483647, 'US', 'United States'), +('216.187.109.94', '216.187.109.151', 2147483647, 2147483647, 'CA', 'Canada'), +('216.187.109.152', '216.187.109.159', 2147483647, 2147483647, 'US', 'United States'), +('216.187.109.160', '216.187.111.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.187.112.0', '216.187.115.255', 2147483647, 2147483647, 'US', 'United States'), +('216.187.116.0', '216.187.117.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.187.118.0', '216.187.118.15', 2147483647, 2147483647, 'BV', 'Bouvet Island'), +('216.187.118.16', '216.187.118.223', 2147483647, 2147483647, 'CA', 'Canada'), +('216.187.118.224', '216.187.118.231', 2147483647, 2147483647, 'US', 'United States'), +('216.187.118.232', '216.187.118.239', 2147483647, 2147483647, 'CA', 'Canada'), +('216.187.118.240', '216.187.118.255', 2147483647, 2147483647, 'US', 'United States'), +('216.187.119.0', '216.187.119.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.187.120.0', '216.187.121.255', 2147483647, 2147483647, 'US', 'United States'), +('216.187.122.0', '216.187.122.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.187.123.0', '216.187.123.95', 2147483647, 2147483647, 'US', 'United States'), +('216.187.123.96', '216.187.123.127', 2147483647, 2147483647, 'CA', 'Canada'), +('216.187.123.128', '216.187.125.255', 2147483647, 2147483647, 'US', 'United States'), +('216.187.126.0', '216.187.127.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.187.128.0', '216.188.25.255', 2147483647, 2147483647, 'US', 'United States'), +('216.188.26.0', '216.188.26.255', 2147483647, 2147483647, 'AU', 'Australia'), +('216.188.27.0', '216.190.255.255', 2147483647, 2147483647, 'US', 'United States'), +('216.191.0.0', '216.191.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.192.0.0', '216.193.197.111', 2147483647, 2147483647, 'US', 'United States'), +('216.193.197.112', '216.193.197.127', 2147483647, 2147483647, 'CA', 'Canada'), +('216.193.197.128', '216.194.63.255', 2147483647, 2147483647, 'US', 'United States'), +('216.194.64.0', '216.194.69.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.194.70.0', '216.194.70.255', 2147483647, 2147483647, 'US', 'United States'), +('216.194.71.0', '216.194.111.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.194.112.0', '216.194.127.255', 2147483647, 2147483647, 'US', 'United States'), +('216.194.128.0', '216.194.131.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('216.194.132.0', '216.194.133.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('216.194.134.0', '216.194.134.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('216.194.135.0', '216.194.135.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('216.194.136.0', '216.194.139.255', 2147483647, 2147483647, 'MX', 'Mexico'), +('216.194.140.0', '216.194.141.255', 2147483647, 2147483647, 'PE', 'Peru'), +('216.194.142.0', '216.194.164.255', 2147483647, 2147483647, 'US', 'United States'), +('216.194.165.0', '216.194.165.127', 2147483647, 2147483647, 'CR', 'Costa Rica'), +('216.194.165.128', '216.195.37.255', 2147483647, 2147483647, 'US', 'United States'), +('216.195.38.0', '216.195.38.255', 2147483647, 2147483647, 'SC', 'Seychelles'), +('216.195.39.0', '216.195.39.255', 2147483647, 2147483647, 'US', 'United States'), +('216.195.40.0', '216.195.40.255', 2147483647, 2147483647, 'GI', 'Gibraltar'), +('216.195.41.0', '216.195.41.255', 2147483647, 2147483647, 'US', 'United States'), +('216.195.42.0', '216.195.42.255', 2147483647, 2147483647, 'BZ', 'Belize'), +('216.195.43.0', '216.195.43.255', 2147483647, 2147483647, 'CY', 'Cyprus'), +('216.195.44.0', '216.195.44.255', 2147483647, 2147483647, 'US', 'United States'), +('216.195.45.0', '216.195.45.255', 2147483647, 2147483647, 'SC', 'Seychelles'), +('216.195.46.0', '216.195.46.255', 2147483647, 2147483647, 'DE', 'Germany'), +('216.195.47.0', '216.195.47.106', 2147483647, 2147483647, 'US', 'United States'), +('216.195.47.107', '216.195.47.122', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('216.195.47.123', '216.195.48.220', 2147483647, 2147483647, 'US', 'United States'), +('216.195.48.221', '216.195.48.236', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('216.195.48.237', '216.195.49.63', 2147483647, 2147483647, 'US', 'United States'), +('216.195.49.64', '216.195.49.79', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('216.195.49.80', '216.195.50.9', 2147483647, 2147483647, 'US', 'United States'), +('216.195.50.10', '216.195.50.17', 2147483647, 2147483647, 'VG', 'Virgin Islands, British'), +('216.195.50.18', '216.195.50.233', 2147483647, 2147483647, 'US', 'United States'), +('216.195.50.234', '216.195.50.249', 2147483647, 2147483647, 'IT', 'Italy'), +('216.195.50.250', '216.195.50.255', 2147483647, 2147483647, 'US', 'United States'), +('216.195.51.0', '216.195.51.255', 2147483647, 2147483647, 'SC', 'Seychelles'), +('216.195.52.0', '216.195.52.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.195.53.0', '216.197.127.255', 2147483647, 2147483647, 'US', 'United States'), +('216.197.128.0', '216.197.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.198.0.0', '216.198.127.255', 2147483647, 2147483647, 'US', 'United States'), +('216.198.128.0', '216.198.159.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.198.160.0', '216.198.193.159', 2147483647, 2147483647, 'US', 'United States'), +('216.198.193.160', '216.198.193.191', 2147483647, 2147483647, 'MY', 'Malaysia'), +('216.198.193.192', '216.198.194.63', 2147483647, 2147483647, 'US', 'United States'), +('216.198.194.64', '216.198.194.95', 2147483647, 2147483647, 'CA', 'Canada'), +('216.198.194.96', '216.198.194.127', 2147483647, 2147483647, 'IN', 'India'), +('216.198.194.128', '216.198.194.159', 2147483647, 2147483647, 'US', 'United States'), +('216.198.194.160', '216.198.194.191', 2147483647, 2147483647, 'IN', 'India'), +('216.198.194.192', '216.198.194.255', 2147483647, 2147483647, 'US', 'United States'), +('216.198.195.0', '216.198.195.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('216.198.196.0', '216.198.196.127', 2147483647, 2147483647, 'US', 'United States'), +('216.198.196.128', '216.198.196.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('216.198.197.0', '216.198.197.255', 2147483647, 2147483647, 'US', 'United States'), +('216.198.198.0', '216.198.198.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.198.199.0', '216.198.199.31', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('216.198.199.32', '216.198.199.63', 2147483647, 2147483647, 'US', 'United States'), +('216.198.199.64', '216.198.199.95', 2147483647, 2147483647, 'IN', 'India'), +('216.198.199.96', '216.198.199.159', 2147483647, 2147483647, 'US', 'United States'), +('216.198.199.160', '216.198.199.223', 2147483647, 2147483647, 'CA', 'Canada'), +('216.198.199.224', '216.198.200.95', 2147483647, 2147483647, 'US', 'United States'), +('216.198.200.96', '216.198.200.127', 2147483647, 2147483647, 'BE', 'Belgium'), +('216.198.200.128', '216.198.200.159', 2147483647, 2147483647, 'US', 'United States'), +('216.198.200.160', '216.198.200.191', 2147483647, 2147483647, 'BE', 'Belgium'), +('216.198.200.192', '216.198.201.127', 2147483647, 2147483647, 'US', 'United States'), +('216.198.201.128', '216.198.201.225', 2147483647, 2147483647, 'IN', 'India'), +('216.198.201.226', '216.198.202.127', 2147483647, 2147483647, 'US', 'United States'), +('216.198.202.128', '216.198.202.255', 2147483647, 2147483647, 'IN', 'India'), +('216.198.203.0', '216.198.203.127', 2147483647, 2147483647, 'US', 'United States'), +('216.198.203.128', '216.198.203.255', 2147483647, 2147483647, 'IN', 'India'), +('216.198.204.0', '216.198.204.95', 2147483647, 2147483647, 'US', 'United States'), +('216.198.204.96', '216.198.204.127', 2147483647, 2147483647, 'IN', 'India'), +('216.198.204.128', '216.198.204.191', 2147483647, 2147483647, 'CA', 'Canada'), +('216.198.204.192', '216.198.204.223', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('216.198.204.224', '216.198.206.255', 2147483647, 2147483647, 'US', 'United States'), +('216.198.207.0', '216.198.207.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.198.208.0', '216.198.209.255', 2147483647, 2147483647, 'US', 'United States'), +('216.198.210.0', '216.198.210.255', 2147483647, 2147483647, 'IN', 'India'), +('216.198.211.0', '216.198.211.255', 2147483647, 2147483647, 'US', 'United States'), +('216.198.212.0', '216.198.213.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.198.214.0', '216.198.214.95', 2147483647, 2147483647, 'US', 'United States'), +('216.198.214.96', '216.198.214.127', 2147483647, 2147483647, 'IT', 'Italy'), +('216.198.214.128', '216.198.214.223', 2147483647, 2147483647, 'CA', 'Canada'), +('216.198.214.224', '216.198.215.31', 2147483647, 2147483647, 'US', 'United States'), +('216.198.215.32', '216.198.215.63', 2147483647, 2147483647, 'CN', 'China'), +('216.198.215.64', '216.198.215.127', 2147483647, 2147483647, 'IT', 'Italy'), +('216.198.215.128', '216.198.215.255', 2147483647, 2147483647, 'US', 'United States'), +('216.198.216.0', '216.198.216.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.198.217.0', '216.198.217.63', 2147483647, 2147483647, 'IN', 'India'), +('216.198.217.64', '216.198.217.159', 2147483647, 2147483647, 'US', 'United States'), +('216.198.217.160', '216.198.217.191', 2147483647, 2147483647, 'BE', 'Belgium'), +('216.198.217.192', '216.198.217.255', 2147483647, 2147483647, 'US', 'United States'), +('216.198.218.0', '216.198.218.127', 2147483647, 2147483647, 'CA', 'Canada'), +('216.198.218.128', '216.198.218.255', 2147483647, 2147483647, 'US', 'United States'), +('216.198.219.0', '216.198.219.255', 2147483647, 2147483647, 'AU', 'Australia'), +('216.198.220.0', '216.198.220.191', 2147483647, 2147483647, 'US', 'United States'), +('216.198.220.192', '216.198.220.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.198.221.0', '216.198.221.63', 2147483647, 2147483647, 'US', 'United States'), +('216.198.221.64', '216.198.221.95', 2147483647, 2147483647, 'BE', 'Belgium'), +('216.198.221.96', '216.198.221.255', 2147483647, 2147483647, 'US', 'United States'), +('216.198.222.0', '216.198.222.127', 2147483647, 2147483647, 'TW', 'Taiwan'), +('216.198.222.128', '216.198.222.255', 2147483647, 2147483647, 'IN', 'India'), +('216.198.223.0', '216.198.224.255', 2147483647, 2147483647, 'US', 'United States'), +('216.198.225.0', '216.198.225.63', 2147483647, 2147483647, 'JP', 'Japan'), +('216.198.225.64', '216.198.227.63', 2147483647, 2147483647, 'US', 'United States'), +('216.198.227.64', '216.198.227.95', 2147483647, 2147483647, 'BE', 'Belgium'), +('216.198.227.96', '216.198.230.255', 2147483647, 2147483647, 'US', 'United States'), +('216.198.231.0', '216.198.231.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.198.232.0', '216.198.232.255', 2147483647, 2147483647, 'US', 'United States'), +('216.198.233.0', '216.198.233.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.198.234.0', '216.198.234.127', 2147483647, 2147483647, 'US', 'United States'), +('216.198.234.128', '216.198.234.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.198.235.0', '216.198.235.159', 2147483647, 2147483647, 'US', 'United States'), +('216.198.235.160', '216.198.235.191', 2147483647, 2147483647, 'IN', 'India'), +('216.198.235.192', '216.198.235.255', 2147483647, 2147483647, 'US', 'United States'), +('216.198.236.0', '216.198.236.127', 2147483647, 2147483647, 'IN', 'India'), +('216.198.236.128', '216.198.236.255', 2147483647, 2147483647, 'US', 'United States'), +('216.198.237.0', '216.198.237.127', 2147483647, 2147483647, 'IN', 'India'), +('216.198.237.128', '216.198.239.255', 2147483647, 2147483647, 'US', 'United States'), +('216.198.240.0', '216.198.240.127', 2147483647, 2147483647, 'CA', 'Canada'), +('216.198.240.128', '216.198.240.255', 2147483647, 2147483647, 'US', 'United States'), +('216.198.241.0', '216.198.241.127', 2147483647, 2147483647, 'CA', 'Canada'), +('216.198.241.128', '216.198.241.255', 2147483647, 2147483647, 'IN', 'India'), +('216.198.242.0', '216.198.242.255', 2147483647, 2147483647, 'US', 'United States'), +('216.198.243.0', '216.198.243.128', 2147483647, 2147483647, 'CA', 'Canada'), +('216.198.243.129', '216.198.244.7', 2147483647, 2147483647, 'US', 'United States'), +('216.198.244.8', '216.198.244.15', 2147483647, 2147483647, 'IN', 'India'), +('216.198.244.16', '216.198.244.23', 2147483647, 2147483647, 'CA', 'Canada'), +('216.198.244.24', '216.198.244.47', 2147483647, 2147483647, 'US', 'United States'), +('216.198.244.48', '216.198.244.55', 2147483647, 2147483647, 'IN', 'India'), +('216.198.244.56', '216.198.244.199', 2147483647, 2147483647, 'US', 'United States'), +('216.198.244.200', '216.198.244.207', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('216.198.244.208', '216.198.245.127', 2147483647, 2147483647, 'US', 'United States'), +('216.198.245.128', '216.198.250.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.198.251.0', '216.198.251.31', 2147483647, 2147483647, 'IN', 'India'), +('216.198.251.32', '216.198.251.63', 2147483647, 2147483647, 'US', 'United States'), +('216.198.251.64', '216.198.251.95', 2147483647, 2147483647, 'CA', 'Canada'), +('216.198.251.96', '216.198.251.127', 2147483647, 2147483647, 'IN', 'India'), +('216.198.251.128', '216.198.251.159', 2147483647, 2147483647, 'CA', 'Canada'), +('216.198.251.160', '216.198.251.191', 2147483647, 2147483647, 'IN', 'India'), +('216.198.251.192', '216.198.251.255', 2147483647, 2147483647, 'US', 'United States'), +('216.198.252.0', '216.198.252.63', 2147483647, 2147483647, 'CA', 'Canada'), +('216.198.252.64', '216.198.253.159', 2147483647, 2147483647, 'US', 'United States'), +('216.198.253.160', '216.198.253.191', 2147483647, 2147483647, 'BE', 'Belgium'), +('216.198.253.192', '216.198.253.255', 2147483647, 2147483647, 'US', 'United States'), +('216.198.254.0', '216.198.254.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.198.254.64', '216.201.80.79', 2147483647, 2147483647, 'US', 'United States'), +('216.201.80.80', '216.201.80.95', 2147483647, 2147483647, 'CY', 'Cyprus'), +('216.201.80.96', '216.201.80.223', 2147483647, 2147483647, 'US', 'United States'), +('216.201.80.224', '216.201.80.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.201.81.0', '216.201.81.15', 2147483647, 2147483647, 'US', 'United States'), +('216.201.81.16', '216.201.81.31', 2147483647, 2147483647, 'CY', 'Cyprus'), +('216.201.81.32', '216.201.83.255', 2147483647, 2147483647, 'US', 'United States'), +('216.201.84.0', '216.201.84.255', 2147483647, 2147483647, 'CY', 'Cyprus'), +('216.201.85.0', '216.201.85.63', 2147483647, 2147483647, 'US', 'United States'), +('216.201.85.64', '216.201.85.79', 2147483647, 2147483647, 'CY', 'Cyprus'), +('216.201.85.80', '216.201.89.63', 2147483647, 2147483647, 'US', 'United States'), +('216.201.89.64', '216.201.89.127', 2147483647, 2147483647, 'PA', 'Panama'), +('216.201.89.128', '216.201.90.255', 2147483647, 2147483647, 'US', 'United States'), +('216.201.91.0', '216.201.91.15', 2147483647, 2147483647, 'CA', 'Canada'), +('216.201.91.16', '216.201.91.63', 2147483647, 2147483647, 'US', 'United States'), +('216.201.91.64', '216.201.91.127', 2147483647, 2147483647, 'PA', 'Panama'), +('216.201.91.128', '216.201.91.255', 2147483647, 2147483647, 'US', 'United States'), +('216.201.92.0', '216.201.92.15', 2147483647, 2147483647, 'CA', 'Canada'), +('216.201.92.16', '216.201.92.31', 2147483647, 2147483647, 'US', 'United States'), +('216.201.92.32', '216.201.92.63', 2147483647, 2147483647, 'PA', 'Panama'), +('216.201.92.64', '216.201.93.31', 2147483647, 2147483647, 'US', 'United States'), +('216.201.93.32', '216.201.93.63', 2147483647, 2147483647, 'PA', 'Panama'), +('216.201.93.64', '216.201.94.31', 2147483647, 2147483647, 'US', 'United States'), +('216.201.94.32', '216.201.94.63', 2147483647, 2147483647, 'PA', 'Panama'), +('216.201.94.64', '216.201.95.31', 2147483647, 2147483647, 'US', 'United States'), +('216.201.95.32', '216.201.95.63', 2147483647, 2147483647, 'PA', 'Panama'), +('216.201.95.64', '216.201.95.255', 2147483647, 2147483647, 'US', 'United States'), +('216.201.96.0', '216.201.111.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.201.112.0', '216.206.40.23', 2147483647, 2147483647, 'US', 'United States'), +('216.206.40.24', '216.206.40.31', 2147483647, 2147483647, 'CA', 'Canada'), +('216.206.40.32', '216.206.189.255', 2147483647, 2147483647, 'US', 'United States'), +('216.206.190.0', '216.206.190.31', 2147483647, 2147483647, 'CA', 'Canada'), +('216.206.190.32', '216.206.250.31', 2147483647, 2147483647, 'US', 'United States'), +('216.206.250.32', '216.206.250.63', 2147483647, 2147483647, 'JP', 'Japan'), +('216.206.250.64', '216.207.255.255', 2147483647, 2147483647, 'US', 'United States'), +('216.208.0.0', '216.208.38.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.208.39.0', '216.208.39.63', 2147483647, 2147483647, 'US', 'United States'), +('216.208.39.64', '216.209.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.210.0.0', '216.210.79.255', 2147483647, 2147483647, 'US', 'United States'), +('216.210.96.0', '216.210.102.111', 2147483647, 2147483647, 'CA', 'Canada'), +('216.210.102.112', '216.210.102.190', 2147483647, 2147483647, 'US', 'United States'), +('216.210.102.191', '216.210.111.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.210.112.0', '216.210.255.255', 2147483647, 2147483647, 'US', 'United States'), +('216.211.0.0', '216.211.127.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.211.128.0', '216.217.255.255', 2147483647, 2147483647, 'US', 'United States'), +('216.218.0.0', '216.218.63.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.218.64.0', '216.218.130.167', 2147483647, 2147483647, 'US', 'United States'), +('216.218.130.168', '216.218.130.175', 2147483647, 2147483647, 'BM', 'Bermuda'), +('216.218.130.176', '216.218.130.199', 2147483647, 2147483647, 'US', 'United States'), +('216.218.130.200', '216.218.130.207', 2147483647, 2147483647, 'ES', 'Spain'), +('216.218.130.208', '216.218.133.159', 2147483647, 2147483647, 'US', 'United States'), +('216.218.133.160', '216.218.133.191', 2147483647, 2147483647, 'DE', 'Germany'), +('216.218.133.192', '216.218.134.199', 2147483647, 2147483647, 'US', 'United States'), +('216.218.134.200', '216.218.134.207', 2147483647, 2147483647, 'JP', 'Japan'), +('216.218.134.208', '216.218.139.79', 2147483647, 2147483647, 'US', 'United States'), +('216.218.139.80', '216.218.139.95', 2147483647, 2147483647, 'IT', 'Italy'), +('216.218.139.96', '216.218.159.199', 2147483647, 2147483647, 'US', 'United States'), +('216.218.159.200', '216.218.159.207', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('216.218.159.208', '216.218.168.15', 2147483647, 2147483647, 'US', 'United States'), +('216.218.168.16', '216.218.168.31', 2147483647, 2147483647, 'CN', 'China'), +('216.218.168.32', '216.218.190.23', 2147483647, 2147483647, 'US', 'United States'), +('216.218.190.24', '216.218.190.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.218.190.32', '216.218.190.255', 2147483647, 2147483647, 'US', 'United States'), +('216.218.191.0', '216.218.191.255', 2147483647, 2147483647, 'GR', 'Greece'), +('216.218.192.0', '216.218.192.127', 2147483647, 2147483647, 'IT', 'Italy'), +('216.218.192.128', '216.218.192.215', 2147483647, 2147483647, 'US', 'United States'), +('216.218.192.216', '216.218.192.223', 2147483647, 2147483647, 'CK', 'Cook Islands'), +('216.218.192.224', '216.218.195.239', 2147483647, 2147483647, 'US', 'United States'), +('216.218.195.240', '216.218.195.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.218.196.0', '216.218.196.151', 2147483647, 2147483647, 'US', 'United States'), +('216.218.196.152', '216.218.196.159', 2147483647, 2147483647, 'JP', 'Japan'), +('216.218.196.160', '216.218.196.175', 2147483647, 2147483647, 'US', 'United States'), +('216.218.196.176', '216.218.196.183', 2147483647, 2147483647, 'AU', 'Australia'), +('216.218.196.184', '216.218.200.31', 2147483647, 2147483647, 'US', 'United States'), +('216.218.200.32', '216.218.200.39', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('216.218.200.40', '216.218.209.79', 2147483647, 2147483647, 'US', 'United States'), +('216.218.209.80', '216.218.209.95', 2147483647, 2147483647, 'IT', 'Italy'), +('216.218.209.96', '216.218.210.191', 2147483647, 2147483647, 'US', 'United States'), +('216.218.210.192', '216.218.210.255', 2147483647, 2147483647, 'AU', 'Australia'), +('216.218.211.0', '216.218.211.255', 2147483647, 2147483647, 'US', 'United States'), +('216.218.212.0', '216.218.212.255', 2147483647, 2147483647, 'IT', 'Italy'), +('216.218.213.0', '216.218.213.135', 2147483647, 2147483647, 'US', 'United States'), +('216.218.213.136', '216.218.213.143', 2147483647, 2147483647, 'JP', 'Japan'), +('216.218.213.144', '216.218.213.159', 2147483647, 2147483647, 'US', 'United States'), +('216.218.213.160', '216.218.213.191', 2147483647, 2147483647, 'QA', 'Qatar'), +('216.218.213.192', '216.218.214.223', 2147483647, 2147483647, 'US', 'United States'), +('216.218.214.224', '216.218.214.231', 2147483647, 2147483647, 'CN', 'China'), +('216.218.214.232', '216.218.222.127', 2147483647, 2147483647, 'US', 'United States'), +('216.218.222.128', '216.218.222.255', 2147483647, 2147483647, 'AU', 'Australia'), +('216.218.223.0', '216.218.224.63', 2147483647, 2147483647, 'US', 'United States'), +('216.218.224.64', '216.218.224.71', 2147483647, 2147483647, 'IT', 'Italy'), +('216.218.224.72', '216.218.226.199', 2147483647, 2147483647, 'US', 'United States'), +('216.218.226.200', '216.218.226.207', 2147483647, 2147483647, 'PA', 'Panama'), +('216.218.226.208', '216.218.229.127', 2147483647, 2147483647, 'US', 'United States'), +('216.218.229.128', '216.218.229.143', 2147483647, 2147483647, 'IT', 'Italy'), +('216.218.229.144', '216.218.229.191', 2147483647, 2147483647, 'US', 'United States'), +('216.218.229.192', '216.218.229.223', 2147483647, 2147483647, 'BM', 'Bermuda'), +('216.218.229.224', '216.218.230.255', 2147483647, 2147483647, 'US', 'United States'), +('216.218.231.0', '216.218.231.255', 2147483647, 2147483647, 'GR', 'Greece'), +('216.218.232.0', '216.218.236.63', 2147483647, 2147483647, 'US', 'United States'), +('216.218.236.64', '216.218.236.95', 2147483647, 2147483647, 'IN', 'India'), +('216.218.236.96', '216.218.238.255', 2147483647, 2147483647, 'US', 'United States'), +('216.218.239.0', '216.218.239.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('216.218.240.0', '216.218.244.55', 2147483647, 2147483647, 'US', 'United States'), +('216.218.244.56', '216.218.244.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.218.244.64', '216.218.249.31', 2147483647, 2147483647, 'US', 'United States'), +('216.218.249.32', '216.218.249.63', 2147483647, 2147483647, 'IT', 'Italy'), +('216.218.249.64', '216.218.254.143', 2147483647, 2147483647, 'US', 'United States'), +('216.218.254.144', '216.218.254.151', 2147483647, 2147483647, 'AU', 'Australia'), +('216.218.254.152', '216.218.255.31', 2147483647, 2147483647, 'US', 'United States'), +('216.218.255.32', '216.218.255.63', 2147483647, 2147483647, 'ES', 'Spain'), +('216.218.255.64', '216.218.255.143', 2147483647, 2147483647, 'US', 'United States'), +('216.218.255.144', '216.218.255.151', 2147483647, 2147483647, 'CA', 'Canada'), +('216.218.255.152', '216.218.255.247', 2147483647, 2147483647, 'US', 'United States'), +('216.218.255.248', '216.218.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.219.64.0', '216.219.64.15', 2147483647, 2147483647, 'US', 'United States'), +('216.219.64.16', '216.219.64.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.219.64.32', '216.219.64.127', 2147483647, 2147483647, 'US', 'United States'), +('216.219.64.128', '216.219.64.255', 2147483647, 2147483647, 'DE', 'Germany'), +('216.219.65.0', '216.219.65.175', 2147483647, 2147483647, 'US', 'United States'), +('216.219.65.176', '216.219.65.191', 2147483647, 2147483647, 'DE', 'Germany'), +('216.219.65.192', '216.219.65.223', 2147483647, 2147483647, 'US', 'United States'), +('216.219.65.224', '216.219.65.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.219.66.0', '216.219.73.31', 2147483647, 2147483647, 'US', 'United States'), +('216.219.73.32', '216.219.73.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.219.73.64', '216.219.76.39', 2147483647, 2147483647, 'US', 'United States'), +('216.219.76.40', '216.219.76.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.219.76.48', '216.219.76.63', 2147483647, 2147483647, 'US', 'United States'), +('216.219.76.64', '216.219.76.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.219.76.128', '216.219.76.255', 2147483647, 2147483647, 'US', 'United States'), +('216.219.77.0', '216.219.77.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.219.77.64', '216.219.77.79', 2147483647, 2147483647, 'US', 'United States'), +('216.219.77.80', '216.219.77.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.219.77.96', '216.219.77.111', 2147483647, 2147483647, 'US', 'United States'), +('216.219.77.112', '216.219.77.119', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.219.77.120', '216.219.77.143', 2147483647, 2147483647, 'US', 'United States'), +('216.219.77.144', '216.219.77.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.219.77.160', '216.219.77.167', 2147483647, 2147483647, 'CH', 'Switzerland'), +('216.219.77.168', '216.219.77.231', 2147483647, 2147483647, 'US', 'United States'), +('216.219.77.232', '216.219.77.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.219.77.240', '216.220.31.255', 2147483647, 2147483647, 'US', 'United States'), +('216.220.32.0', '216.220.63.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.220.64.0', '216.221.31.255', 2147483647, 2147483647, 'US', 'United States'), +('216.221.32.0', '216.221.95.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.221.96.0', '216.223.3.223', 2147483647, 2147483647, 'US', 'United States'), +('216.223.3.224', '216.223.3.231', 2147483647, 2147483647, 'CA', 'Canada'), +('216.223.3.232', '216.223.62.239', 2147483647, 2147483647, 'US', 'United States'), +('216.223.62.240', '216.223.62.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.223.63.0', '216.223.63.255', 2147483647, 2147483647, 'US', 'United States'), +('216.223.64.0', '216.223.138.239', 2147483647, 2147483647, 'CA', 'Canada'), +('216.223.138.240', '216.223.138.247', 2147483647, 2147483647, 'US', 'United States'), +('216.223.138.248', '216.223.144.191', 2147483647, 2147483647, 'CA', 'Canada'), +('216.223.144.192', '216.223.144.207', 2147483647, 2147483647, 'US', 'United States'), +('216.223.144.208', '216.223.159.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.223.160.0', '216.226.31.255', 2147483647, 2147483647, 'US', 'United States'), +('216.226.32.0', '216.226.63.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.226.64.0', '216.228.207.255', 2147483647, 2147483647, 'US', 'United States'), +('216.228.208.0', '216.228.223.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.228.224.0', '216.230.32.255', 2147483647, 2147483647, 'US', 'United States'), +('216.230.33.0', '216.230.33.255', 2147483647, 2147483647, 'BR', 'Brazil'), +('216.230.34.0', '216.230.127.255', 2147483647, 2147483647, 'US', 'United States'), +('216.230.128.0', '216.230.159.255', 2147483647, 2147483647, 'GT', 'Guatemala'), +('216.230.160.0', '216.231.255.255', 2147483647, 2147483647, 'US', 'United States'), +('216.232.0.0', '216.232.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.233.0.0', '216.234.31.255', 2147483647, 2147483647, 'US', 'United States'), +('216.234.32.0', '216.234.63.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.234.64.0', '216.234.159.255', 2147483647, 2147483647, 'US', 'United States'), +('216.234.160.0', '216.234.174.53', 2147483647, 2147483647, 'CA', 'Canada'), +('216.234.174.54', '216.234.174.54', 2147483647, 2147483647, 'IL', 'Israel'), +('216.234.174.55', '216.234.191.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.234.192.0', '216.234.255.255', 2147483647, 2147483647, 'US', 'United States'), +('216.235.0.0', '216.235.15.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.235.16.0', '216.235.167.143', 2147483647, 2147483647, 'US', 'United States'), +('216.235.167.144', '216.235.167.151', 2147483647, 2147483647, 'JP', 'Japan'), +('216.235.167.152', '216.235.167.167', 2147483647, 2147483647, 'US', 'United States'), +('216.235.167.168', '216.235.167.175', 2147483647, 2147483647, 'JP', 'Japan'), +('216.235.167.176', '216.235.246.111', 2147483647, 2147483647, 'US', 'United States'), +('216.235.246.112', '216.235.246.119', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.235.246.120', '216.235.248.31', 2147483647, 2147483647, 'US', 'United States'), +('216.235.248.32', '216.235.248.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.235.248.64', '216.235.248.127', 2147483647, 2147483647, 'US', 'United States'), +('216.235.248.128', '216.235.248.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.235.248.160', '216.235.253.63', 2147483647, 2147483647, 'US', 'United States'), +('216.235.253.64', '216.235.253.79', 2147483647, 2147483647, 'MA', 'Morocco'), +('216.235.253.80', '216.235.253.159', 2147483647, 2147483647, 'US', 'United States'), +('216.235.253.160', '216.235.253.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.235.253.192', '216.235.253.207', 2147483647, 2147483647, 'PL', 'Poland'), +('216.235.253.208', '216.236.95.255', 2147483647, 2147483647, 'US', 'United States'), +('216.236.96.0', '216.236.121.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.236.122.0', '216.236.125.255', 2147483647, 2147483647, 'GU', 'Guam'), +('216.236.126.0', '216.236.126.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.236.127.0', '216.236.175.255', 2147483647, 2147483647, 'US', 'United States'), +('216.236.176.0', '216.236.191.255', 2147483647, 2147483647, 'ZA', 'South Africa'), +('216.236.192.0', '216.236.198.255', 2147483647, 2147483647, 'US', 'United States'), +('216.236.199.0', '216.236.199.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.236.200.0', '216.236.200.31', 2147483647, 2147483647, 'NE', 'Niger'), +('216.236.200.32', '216.236.200.63', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.236.200.64', '216.236.200.79', 2147483647, 2147483647, 'PK', 'Pakistan'), +('216.236.200.80', '216.236.200.95', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.236.200.96', '216.236.200.111', 2147483647, 2147483647, 'NG', 'Nigeria'), +('216.236.200.112', '216.236.200.119', 2147483647, 2147483647, 'TZ', 'Tanzania, United Republic of'), +('216.236.200.120', '216.236.200.135', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.236.200.136', '216.236.200.167', 2147483647, 2147483647, 'IN', 'India'), +('216.236.200.168', '216.236.200.191', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.236.200.192', '216.236.200.199', 2147483647, 2147483647, 'TZ', 'Tanzania, United Republic of'), +('216.236.200.200', '216.236.201.63', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.236.201.64', '216.236.201.127', 2147483647, 2147483647, 'NE', 'Niger'), +('216.236.201.128', '216.236.201.135', 2147483647, 2147483647, 'IN', 'India'), +('216.236.201.136', '216.236.201.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.236.202.0', '216.236.202.15', 2147483647, 2147483647, 'NE', 'Niger'), +('216.236.202.16', '216.236.202.63', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.236.202.64', '216.236.202.95', 2147483647, 2147483647, 'FR', 'France'), +('216.236.202.96', '216.236.202.111', 2147483647, 2147483647, 'NG', 'Nigeria'), +('216.236.202.112', '216.236.202.127', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.236.202.128', '216.236.202.159', 2147483647, 2147483647, 'CD', 'Congo, The Democratic Republic of the'), +('216.236.202.160', '216.236.202.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.236.203.0', '216.236.203.255', 2147483647, 2147483647, 'IN', 'India'), +('216.236.204.0', '216.236.204.255', 2147483647, 2147483647, 'US', 'United States'), +('216.236.205.0', '216.236.205.255', 2147483647, 2147483647, 'NG', 'Nigeria'), +('216.236.206.0', '216.236.207.255', 2147483647, 2147483647, 'US', 'United States'), +('216.236.208.0', '216.236.208.23', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.236.208.24', '216.236.208.31', 2147483647, 2147483647, 'LB', 'Lebanon'), +('216.236.208.32', '216.236.208.39', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.236.208.40', '216.236.208.47', 2147483647, 2147483647, 'LB', 'Lebanon'), +('216.236.208.48', '216.236.208.63', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.236.208.64', '216.236.208.95', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('216.236.208.96', '216.236.208.127', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.236.208.128', '216.236.208.191', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('216.236.208.192', '216.236.208.199', 2147483647, 2147483647, 'LB', 'Lebanon'), +('216.236.208.200', '216.236.208.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.236.209.0', '216.236.209.7', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('216.236.209.8', '216.236.209.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.236.210.0', '216.236.213.255', 2147483647, 2147483647, 'US', 'United States'), +('216.236.214.0', '216.236.215.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.236.216.0', '216.236.219.255', 2147483647, 2147483647, 'RS', 'Serbia'), +('216.236.220.0', '216.236.220.23', 2147483647, 2147483647, 'PK', 'Pakistan'), +('216.236.220.24', '216.236.220.39', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.236.220.40', '216.236.220.47', 2147483647, 2147483647, 'ID', 'Indonesia'), +('216.236.220.48', '216.236.220.63', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.236.220.64', '216.236.220.79', 2147483647, 2147483647, 'TZ', 'Tanzania, United Republic of'), +('216.236.220.80', '216.236.220.87', 2147483647, 2147483647, 'LK', 'Sri Lanka'), +('216.236.220.88', '216.236.220.119', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.236.220.120', '216.236.220.127', 2147483647, 2147483647, 'US', 'United States'), +('216.236.220.128', '216.236.220.151', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.236.220.152', '216.236.220.159', 2147483647, 2147483647, 'TZ', 'Tanzania, United Republic of'), +('216.236.220.160', '216.236.220.175', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.236.220.176', '216.236.220.183', 2147483647, 2147483647, 'PK', 'Pakistan'), +('216.236.220.184', '216.236.220.215', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.236.220.216', '216.236.220.255', 2147483647, 2147483647, 'PK', 'Pakistan'), +('216.236.221.0', '216.236.222.31', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.236.222.32', '216.236.222.47', 2147483647, 2147483647, 'PK', 'Pakistan'), +('216.236.222.48', '216.236.222.63', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.236.222.64', '216.236.222.71', 2147483647, 2147483647, 'US', 'United States'), +('216.236.222.72', '216.236.222.87', 2147483647, 2147483647, 'PK', 'Pakistan'), +('216.236.222.88', '216.236.222.95', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.236.222.96', '216.236.222.111', 2147483647, 2147483647, 'PK', 'Pakistan'), +('216.236.222.112', '216.236.222.127', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.236.222.128', '216.236.222.191', 2147483647, 2147483647, 'NG', 'Nigeria'), +('216.236.222.192', '216.236.222.207', 2147483647, 2147483647, 'PK', 'Pakistan'), +('216.236.222.208', '216.236.222.215', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.236.222.216', '216.236.222.223', 2147483647, 2147483647, 'PK', 'Pakistan'), +('216.236.222.224', '216.236.222.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.236.223.0', '216.236.223.255', 2147483647, 2147483647, 'GH', 'Ghana'), +('216.236.224.0', '216.237.113.15', 2147483647, 2147483647, 'US', 'United States'), +('216.237.113.16', '216.237.113.23', 2147483647, 2147483647, 'RO', 'Romania'), +('216.237.113.24', '216.237.117.127', 2147483647, 2147483647, 'US', 'United States'), +('216.237.117.128', '216.237.117.255', 2147483647, 2147483647, 'IN', 'India'), +('216.237.118.0', '216.239.63.255', 2147483647, 2147483647, 'US', 'United States'), +('216.239.64.0', '216.239.95.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.239.96.0', '216.239.255.255', 2147483647, 2147483647, 'US', 'United States'), +('216.240.0.0', '216.240.15.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.240.16.0', '216.240.191.255', 2147483647, 2147483647, 'US', 'United States'), +('216.240.192.0', '216.240.207.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.240.208.0', '216.240.223.255', 2147483647, 2147483647, 'US', 'United States'), +('216.240.224.0', '216.240.239.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.241.0.0', '216.241.2.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('216.241.3.0', '216.241.9.255', 2147483647, 2147483647, 'CL', 'Chile'), +('216.241.10.0', '216.241.12.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('216.241.13.0', '216.241.13.255', 2147483647, 2147483647, 'CL', 'Chile'), +('216.241.14.0', '216.241.14.127', 2147483647, 2147483647, 'CO', 'Colombia'), +('216.241.14.128', '216.241.14.159', 2147483647, 2147483647, 'CL', 'Chile'), +('216.241.14.160', '216.241.14.223', 2147483647, 2147483647, 'CO', 'Colombia'), +('216.241.14.224', '216.241.14.239', 2147483647, 2147483647, 'CL', 'Chile'), +('216.241.14.240', '216.241.15.23', 2147483647, 2147483647, 'CO', 'Colombia'), +('216.241.15.24', '216.241.15.31', 2147483647, 2147483647, 'CL', 'Chile'), +('216.241.15.32', '216.241.16.31', 2147483647, 2147483647, 'CO', 'Colombia'), +('216.241.16.32', '216.241.16.39', 2147483647, 2147483647, 'CL', 'Chile'), +('216.241.16.40', '216.241.16.55', 2147483647, 2147483647, 'CO', 'Colombia'), +('216.241.16.56', '216.241.16.71', 2147483647, 2147483647, 'CL', 'Chile'), +('216.241.16.72', '216.241.16.135', 2147483647, 2147483647, 'CO', 'Colombia'), +('216.241.16.136', '216.241.16.143', 2147483647, 2147483647, 'CL', 'Chile'), +('216.241.16.144', '216.241.16.183', 2147483647, 2147483647, 'CO', 'Colombia'), +('216.241.16.184', '216.241.16.191', 2147483647, 2147483647, 'CL', 'Chile'), +('216.241.16.192', '216.241.17.39', 2147483647, 2147483647, 'CO', 'Colombia'), +('216.241.17.40', '216.241.17.47', 2147483647, 2147483647, 'CL', 'Chile'), +('216.241.17.48', '216.241.17.151', 2147483647, 2147483647, 'CO', 'Colombia'), +('216.241.17.152', '216.241.17.159', 2147483647, 2147483647, 'CL', 'Chile'), +('216.241.17.160', '216.241.17.191', 2147483647, 2147483647, 'CO', 'Colombia'), +('216.241.17.192', '216.241.17.199', 2147483647, 2147483647, 'CL', 'Chile'), +('216.241.17.200', '216.241.17.247', 2147483647, 2147483647, 'CO', 'Colombia'), +('216.241.17.248', '216.241.17.255', 2147483647, 2147483647, 'CL', 'Chile'), +('216.241.18.0', '216.241.18.63', 2147483647, 2147483647, 'CO', 'Colombia'), +('216.241.18.64', '216.241.18.79', 2147483647, 2147483647, 'CL', 'Chile'), +('216.241.18.80', '216.241.18.119', 2147483647, 2147483647, 'CO', 'Colombia'), +('216.241.18.120', '216.241.18.127', 2147483647, 2147483647, 'CL', 'Chile'), +('216.241.18.128', '216.241.18.135', 2147483647, 2147483647, 'CO', 'Colombia'), +('216.241.18.136', '216.241.18.143', 2147483647, 2147483647, 'CL', 'Chile'), +('216.241.18.144', '216.241.18.191', 2147483647, 2147483647, 'CO', 'Colombia'), +('216.241.18.192', '216.241.18.255', 2147483647, 2147483647, 'CL', 'Chile'), +('216.241.19.0', '216.241.19.55', 2147483647, 2147483647, 'CO', 'Colombia'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('216.241.19.56', '216.241.19.71', 2147483647, 2147483647, 'CL', 'Chile'), +('216.241.19.72', '216.241.19.127', 2147483647, 2147483647, 'CO', 'Colombia'), +('216.241.19.128', '216.241.19.135', 2147483647, 2147483647, 'CL', 'Chile'), +('216.241.19.136', '216.241.19.143', 2147483647, 2147483647, 'CO', 'Colombia'), +('216.241.19.144', '216.241.19.151', 2147483647, 2147483647, 'CL', 'Chile'), +('216.241.19.152', '216.241.19.231', 2147483647, 2147483647, 'CO', 'Colombia'), +('216.241.19.232', '216.241.19.255', 2147483647, 2147483647, 'CL', 'Chile'), +('216.241.20.0', '216.241.20.23', 2147483647, 2147483647, 'CO', 'Colombia'), +('216.241.20.24', '216.241.20.31', 2147483647, 2147483647, 'CL', 'Chile'), +('216.241.20.32', '216.241.20.47', 2147483647, 2147483647, 'CO', 'Colombia'), +('216.241.20.48', '216.241.20.55', 2147483647, 2147483647, 'CL', 'Chile'), +('216.241.20.56', '216.241.20.79', 2147483647, 2147483647, 'CO', 'Colombia'), +('216.241.20.80', '216.241.20.87', 2147483647, 2147483647, 'CL', 'Chile'), +('216.241.20.88', '216.241.20.223', 2147483647, 2147483647, 'CO', 'Colombia'), +('216.241.20.224', '216.241.20.239', 2147483647, 2147483647, 'CL', 'Chile'), +('216.241.20.240', '216.241.20.247', 2147483647, 2147483647, 'CO', 'Colombia'), +('216.241.20.248', '216.241.21.255', 2147483647, 2147483647, 'CL', 'Chile'), +('216.241.22.0', '216.241.22.23', 2147483647, 2147483647, 'CO', 'Colombia'), +('216.241.22.24', '216.241.22.31', 2147483647, 2147483647, 'CL', 'Chile'), +('216.241.22.32', '216.241.22.183', 2147483647, 2147483647, 'CO', 'Colombia'), +('216.241.22.184', '216.241.22.191', 2147483647, 2147483647, 'CL', 'Chile'), +('216.241.22.192', '216.241.22.207', 2147483647, 2147483647, 'CO', 'Colombia'), +('216.241.22.208', '216.241.22.223', 2147483647, 2147483647, 'CL', 'Chile'), +('216.241.22.224', '216.241.23.15', 2147483647, 2147483647, 'CO', 'Colombia'), +('216.241.23.16', '216.241.23.31', 2147483647, 2147483647, 'CL', 'Chile'), +('216.241.23.32', '216.241.23.175', 2147483647, 2147483647, 'CO', 'Colombia'), +('216.241.23.176', '216.241.23.191', 2147483647, 2147483647, 'CL', 'Chile'), +('216.241.23.192', '216.241.23.207', 2147483647, 2147483647, 'CO', 'Colombia'), +('216.241.23.208', '216.241.23.215', 2147483647, 2147483647, 'CL', 'Chile'), +('216.241.23.216', '216.241.25.127', 2147483647, 2147483647, 'CO', 'Colombia'), +('216.241.25.128', '216.241.25.151', 2147483647, 2147483647, 'CL', 'Chile'), +('216.241.25.152', '216.241.25.223', 2147483647, 2147483647, 'CO', 'Colombia'), +('216.241.25.224', '216.241.25.231', 2147483647, 2147483647, 'CL', 'Chile'), +('216.241.25.232', '216.241.25.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('216.241.26.0', '216.241.26.255', 2147483647, 2147483647, 'CL', 'Chile'), +('216.241.27.0', '216.241.28.255', 2147483647, 2147483647, 'CO', 'Colombia'), +('216.241.29.0', '216.241.29.15', 2147483647, 2147483647, 'CL', 'Chile'), +('216.241.29.16', '216.241.29.87', 2147483647, 2147483647, 'CO', 'Colombia'), +('216.241.29.88', '216.241.29.95', 2147483647, 2147483647, 'CL', 'Chile'), +('216.241.29.96', '216.241.29.103', 2147483647, 2147483647, 'CO', 'Colombia'), +('216.241.29.104', '216.241.29.111', 2147483647, 2147483647, 'CL', 'Chile'), +('216.241.29.112', '216.241.29.191', 2147483647, 2147483647, 'CO', 'Colombia'), +('216.241.29.192', '216.241.29.223', 2147483647, 2147483647, 'CL', 'Chile'), +('216.241.29.224', '216.241.31.79', 2147483647, 2147483647, 'CO', 'Colombia'), +('216.241.31.80', '216.241.31.95', 2147483647, 2147483647, 'CL', 'Chile'), +('216.241.31.96', '216.241.31.127', 2147483647, 2147483647, 'CO', 'Colombia'), +('216.241.31.128', '216.241.31.159', 2147483647, 2147483647, 'CL', 'Chile'), +('216.241.31.160', '216.241.31.223', 2147483647, 2147483647, 'CO', 'Colombia'), +('216.241.31.224', '216.241.31.255', 2147483647, 2147483647, 'CL', 'Chile'), +('216.241.32.0', '216.241.223.255', 2147483647, 2147483647, 'US', 'United States'), +('216.241.224.0', '216.241.239.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.241.240.0', '216.244.65.15', 2147483647, 2147483647, 'US', 'United States'), +('216.244.65.16', '216.244.65.23', 2147483647, 2147483647, 'CN', 'China'), +('216.244.65.24', '216.244.76.31', 2147483647, 2147483647, 'US', 'United States'), +('216.244.76.32', '216.244.76.63', 2147483647, 2147483647, 'NO', 'Norway'), +('216.244.76.64', '216.244.127.255', 2147483647, 2147483647, 'US', 'United States'), +('216.244.128.0', '216.244.191.255', 2147483647, 2147483647, 'PE', 'Peru'), +('216.244.192.0', '216.244.255.255', 2147483647, 2147483647, 'AR', 'Argentina'), +('216.245.0.0', '216.246.10.167', 2147483647, 2147483647, 'US', 'United States'), +('216.246.10.168', '216.246.10.175', 2147483647, 2147483647, 'TR', 'Turkey'), +('216.246.10.176', '216.246.26.143', 2147483647, 2147483647, 'US', 'United States'), +('216.246.26.144', '216.246.26.151', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('216.246.26.152', '216.246.26.191', 2147483647, 2147483647, 'US', 'United States'), +('216.246.26.192', '216.246.26.199', 2147483647, 2147483647, 'SO', 'Somalia'), +('216.246.26.200', '216.246.51.199', 2147483647, 2147483647, 'US', 'United States'), +('216.246.51.200', '216.246.51.207', 2147483647, 2147483647, 'GI', 'Gibraltar'), +('216.246.51.208', '216.246.88.39', 2147483647, 2147483647, 'US', 'United States'), +('216.246.88.40', '216.246.88.47', 2147483647, 2147483647, 'EG', 'Egypt'), +('216.246.88.48', '216.246.88.191', 2147483647, 2147483647, 'US', 'United States'), +('216.246.88.192', '216.246.88.207', 2147483647, 2147483647, 'GI', 'Gibraltar'), +('216.246.88.208', '216.246.88.231', 2147483647, 2147483647, 'US', 'United States'), +('216.246.88.232', '216.246.88.239', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('216.246.88.240', '216.246.223.255', 2147483647, 2147483647, 'US', 'United States'), +('216.246.224.0', '216.246.255.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.247.0.0', '216.247.36.127', 2147483647, 2147483647, 'US', 'United States'), +('216.247.36.128', '216.247.36.143', 2147483647, 2147483647, 'NL', 'Netherlands'), +('216.247.36.144', '216.247.37.239', 2147483647, 2147483647, 'US', 'United States'), +('216.247.37.240', '216.247.37.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.247.38.0', '216.247.179.191', 2147483647, 2147483647, 'US', 'United States'), +('216.247.179.192', '216.247.179.207', 2147483647, 2147483647, 'NL', 'Netherlands'), +('216.247.179.208', '216.247.181.191', 2147483647, 2147483647, 'US', 'United States'), +('216.247.181.192', '216.247.181.207', 2147483647, 2147483647, 'NL', 'Netherlands'), +('216.247.181.208', '216.248.255.255', 2147483647, 2147483647, 'US', 'United States'), +('216.249.0.0', '216.249.15.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.249.16.0', '216.249.31.255', 2147483647, 2147483647, 'US', 'United States'), +('216.249.32.0', '216.249.47.255', 2147483647, 2147483647, 'BM', 'Bermuda'), +('216.249.48.0', '216.249.63.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.249.64.0', '216.250.95.255', 2147483647, 2147483647, 'US', 'United States'), +('216.250.96.0', '216.250.111.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.250.112.0', '216.250.192.255', 2147483647, 2147483647, 'US', 'United States'), +('216.250.193.0', '216.250.193.15', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.250.193.16', '216.250.193.31', 2147483647, 2147483647, 'ID', 'Indonesia'), +('216.250.193.32', '216.250.193.39', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('216.250.193.40', '216.250.193.95', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.250.193.96', '216.250.193.127', 2147483647, 2147483647, 'ID', 'Indonesia'), +('216.250.193.128', '216.250.193.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.250.194.0', '216.250.194.255', 2147483647, 2147483647, 'NI', 'Nicaragua'), +('216.250.195.0', '216.250.195.31', 2147483647, 2147483647, 'NG', 'Nigeria'), +('216.250.195.32', '216.250.195.63', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.250.195.64', '216.250.195.127', 2147483647, 2147483647, 'US', 'United States'), +('216.250.195.128', '216.250.205.127', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.250.205.128', '216.250.205.191', 2147483647, 2147483647, 'US', 'United States'), +('216.250.205.192', '216.250.205.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.250.206.0', '216.250.206.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('216.250.207.0', '216.250.209.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.250.210.0', '216.250.210.255', 2147483647, 2147483647, 'US', 'United States'), +('216.250.211.0', '216.250.211.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.250.212.0', '216.250.212.255', 2147483647, 2147483647, 'US', 'United States'), +('216.250.213.0', '216.250.214.63', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.250.214.64', '216.250.214.95', 2147483647, 2147483647, 'ID', 'Indonesia'), +('216.250.214.96', '216.250.214.119', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.250.214.120', '216.250.214.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('216.250.214.128', '216.250.214.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.250.215.0', '216.250.215.127', 2147483647, 2147483647, 'US', 'United States'), +('216.250.215.128', '216.250.216.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.250.217.0', '216.250.219.255', 2147483647, 2147483647, 'NC', 'New Caledonia'), +('216.250.220.0', '216.250.220.127', 2147483647, 2147483647, 'GQ', 'Equatorial Guinea'), +('216.250.220.128', '216.250.220.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.250.221.0', '216.250.221.255', 2147483647, 2147483647, 'NG', 'Nigeria'), +('216.250.222.0', '216.250.223.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('216.250.224.0', '216.251.65.127', 2147483647, 2147483647, 'US', 'United States'), +('216.251.65.128', '216.251.65.175', 2147483647, 2147483647, 'MX', 'Mexico'), +('216.251.65.176', '216.251.65.191', 2147483647, 2147483647, 'US', 'United States'), +('216.251.65.192', '216.251.65.254', 2147483647, 2147483647, 'MX', 'Mexico'), +('216.251.65.255', '216.251.65.255', 2147483647, 2147483647, 'US', 'United States'), +('216.251.66.0', '216.251.66.254', 2147483647, 2147483647, 'MX', 'Mexico'), +('216.251.66.255', '216.251.67.47', 2147483647, 2147483647, 'US', 'United States'), +('216.251.67.48', '216.251.67.63', 2147483647, 2147483647, 'MX', 'Mexico'), +('216.251.67.64', '216.251.67.79', 2147483647, 2147483647, 'US', 'United States'), +('216.251.67.80', '216.251.67.87', 2147483647, 2147483647, 'MX', 'Mexico'), +('216.251.67.88', '216.251.67.111', 2147483647, 2147483647, 'US', 'United States'), +('216.251.67.112', '216.251.67.159', 2147483647, 2147483647, 'MX', 'Mexico'), +('216.251.67.160', '216.251.68.63', 2147483647, 2147483647, 'US', 'United States'), +('216.251.68.64', '216.251.68.111', 2147483647, 2147483647, 'MX', 'Mexico'), +('216.251.68.112', '216.251.68.143', 2147483647, 2147483647, 'US', 'United States'), +('216.251.68.144', '216.251.68.254', 2147483647, 2147483647, 'MX', 'Mexico'), +('216.251.68.255', '216.251.72.191', 2147483647, 2147483647, 'US', 'United States'), +('216.251.72.192', '216.251.72.223', 2147483647, 2147483647, 'MX', 'Mexico'), +('216.251.72.224', '216.251.72.255', 2147483647, 2147483647, 'US', 'United States'), +('216.251.73.0', '216.251.73.254', 2147483647, 2147483647, 'MX', 'Mexico'), +('216.251.73.255', '216.251.74.255', 2147483647, 2147483647, 'US', 'United States'), +('216.251.75.0', '216.251.75.63', 2147483647, 2147483647, 'MX', 'Mexico'), +('216.251.75.64', '216.251.75.79', 2147483647, 2147483647, 'US', 'United States'), +('216.251.75.80', '216.251.75.95', 2147483647, 2147483647, 'MX', 'Mexico'), +('216.251.75.96', '216.251.75.111', 2147483647, 2147483647, 'US', 'United States'), +('216.251.75.112', '216.251.75.127', 2147483647, 2147483647, 'MX', 'Mexico'), +('216.251.75.128', '216.251.75.143', 2147483647, 2147483647, 'US', 'United States'), +('216.251.75.144', '216.251.75.159', 2147483647, 2147483647, 'MX', 'Mexico'), +('216.251.75.160', '216.251.75.175', 2147483647, 2147483647, 'US', 'United States'), +('216.251.75.176', '216.251.75.207', 2147483647, 2147483647, 'MX', 'Mexico'), +('216.251.75.208', '216.251.75.223', 2147483647, 2147483647, 'US', 'United States'), +('216.251.75.224', '216.251.75.239', 2147483647, 2147483647, 'MX', 'Mexico'), +('216.251.75.240', '216.251.75.255', 2147483647, 2147483647, 'US', 'United States'), +('216.251.76.0', '216.251.76.63', 2147483647, 2147483647, 'MX', 'Mexico'), +('216.251.76.64', '216.251.76.191', 2147483647, 2147483647, 'US', 'United States'), +('216.251.76.192', '216.251.76.254', 2147483647, 2147483647, 'MX', 'Mexico'), +('216.251.76.255', '216.251.127.255', 2147483647, 2147483647, 'US', 'United States'), +('216.251.128.0', '216.251.159.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.251.160.0', '216.252.63.255', 2147483647, 2147483647, 'US', 'United States'), +('216.252.64.0', '216.252.95.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.252.96.0', '216.254.127.255', 2147483647, 2147483647, 'US', 'United States'), +('216.254.128.0', '216.254.223.255', 2147483647, 2147483647, 'CA', 'Canada'), +('216.254.224.0', '216.255.223.255', 2147483647, 2147483647, 'US', 'United States'), +('216.255.224.0', '216.255.239.255', 2147483647, 2147483647, 'JP', 'Japan'), +('216.255.240.0', '216.255.255.255', 2147483647, 2147483647, 'US', 'United States'), +('217.0.0.0', '217.6.28.63', 2147483647, 2147483647, 'DE', 'Germany'), +('217.6.28.64', '217.6.28.71', 2147483647, 2147483647, 'HU', 'Hungary'), +('217.6.28.72', '217.6.28.103', 2147483647, 2147483647, 'DE', 'Germany'), +('217.6.28.104', '217.6.28.111', 2147483647, 2147483647, 'AT', 'Austria'), +('217.6.28.112', '217.6.28.119', 2147483647, 2147483647, 'PL', 'Poland'), +('217.6.28.120', '217.6.33.119', 2147483647, 2147483647, 'DE', 'Germany'), +('217.6.33.120', '217.6.33.127', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('217.6.33.128', '217.6.115.31', 2147483647, 2147483647, 'DE', 'Germany'), +('217.6.115.32', '217.6.115.39', 2147483647, 2147483647, 'BE', 'Belgium'), +('217.6.115.40', '217.6.142.247', 2147483647, 2147483647, 'DE', 'Germany'), +('217.6.142.248', '217.6.142.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('217.6.143.0', '217.6.150.207', 2147483647, 2147483647, 'DE', 'Germany'), +('217.6.150.208', '217.6.150.215', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.6.150.216', '217.6.191.207', 2147483647, 2147483647, 'DE', 'Germany'), +('217.6.191.208', '217.6.191.223', 2147483647, 2147483647, 'ES', 'Spain'), +('217.6.191.224', '217.6.209.15', 2147483647, 2147483647, 'DE', 'Germany'), +('217.6.209.16', '217.6.209.23', 2147483647, 2147483647, 'FR', 'France'), +('217.6.209.24', '217.6.213.103', 2147483647, 2147483647, 'DE', 'Germany'), +('217.6.213.104', '217.6.213.111', 2147483647, 2147483647, 'HU', 'Hungary'), +('217.6.213.112', '217.6.226.7', 2147483647, 2147483647, 'DE', 'Germany'), +('217.6.226.8', '217.6.226.15', 2147483647, 2147483647, 'CH', 'Switzerland'), +('217.6.226.16', '217.6.253.175', 2147483647, 2147483647, 'DE', 'Germany'), +('217.6.253.176', '217.6.253.183', 2147483647, 2147483647, 'SK', 'Slovakia'), +('217.6.253.184', '217.7.77.31', 2147483647, 2147483647, 'DE', 'Germany'), +('217.7.77.32', '217.7.77.39', 2147483647, 2147483647, 'BE', 'Belgium'), +('217.7.77.40', '217.7.101.191', 2147483647, 2147483647, 'DE', 'Germany'), +('217.7.101.192', '217.7.101.199', 2147483647, 2147483647, 'US', 'United States'), +('217.7.101.200', '217.7.128.127', 2147483647, 2147483647, 'DE', 'Germany'), +('217.7.128.128', '217.7.128.135', 2147483647, 2147483647, 'AT', 'Austria'), +('217.7.128.136', '217.7.139.95', 2147483647, 2147483647, 'DE', 'Germany'), +('217.7.139.96', '217.7.139.103', 2147483647, 2147483647, 'US', 'United States'), +('217.7.139.104', '217.7.169.63', 2147483647, 2147483647, 'DE', 'Germany'), +('217.7.169.64', '217.7.169.71', 2147483647, 2147483647, 'AT', 'Austria'), +('217.7.169.72', '217.7.169.143', 2147483647, 2147483647, 'DE', 'Germany'), +('217.7.169.144', '217.7.169.167', 2147483647, 2147483647, 'FR', 'France'), +('217.7.169.168', '217.7.169.215', 2147483647, 2147483647, 'DE', 'Germany'), +('217.7.169.216', '217.7.169.223', 2147483647, 2147483647, 'FR', 'France'), +('217.7.169.224', '217.7.169.239', 2147483647, 2147483647, 'DE', 'Germany'), +('217.7.169.240', '217.7.169.247', 2147483647, 2147483647, 'ES', 'Spain'), +('217.7.169.248', '217.7.170.55', 2147483647, 2147483647, 'DE', 'Germany'), +('217.7.170.56', '217.7.170.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.7.170.64', '217.7.170.191', 2147483647, 2147483647, 'DE', 'Germany'), +('217.7.170.192', '217.7.170.199', 2147483647, 2147483647, 'ES', 'Spain'), +('217.7.170.200', '217.7.171.23', 2147483647, 2147483647, 'DE', 'Germany'), +('217.7.171.24', '217.7.171.31', 2147483647, 2147483647, 'IT', 'Italy'), +('217.7.171.32', '217.7.171.119', 2147483647, 2147483647, 'DE', 'Germany'), +('217.7.171.120', '217.7.171.127', 2147483647, 2147483647, 'ES', 'Spain'), +('217.7.171.128', '217.7.175.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.7.176.0', '217.7.176.7', 2147483647, 2147483647, 'ES', 'Spain'), +('217.7.176.8', '217.7.176.47', 2147483647, 2147483647, 'DE', 'Germany'), +('217.7.176.48', '217.7.176.63', 2147483647, 2147483647, 'ES', 'Spain'), +('217.7.176.64', '217.7.176.87', 2147483647, 2147483647, 'DE', 'Germany'), +('217.7.176.88', '217.7.176.95', 2147483647, 2147483647, 'ES', 'Spain'), +('217.7.176.96', '217.7.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.8.0.0', '217.8.31.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.8.32.0', '217.8.47.255', 2147483647, 2147483647, 'TJ', 'Tajikistan'), +('217.8.48.0', '217.8.63.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.8.64.0', '217.8.79.255', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('217.8.80.0', '217.8.95.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.8.96.0', '217.8.100.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.8.101.0', '217.8.101.255', 2147483647, 2147483647, 'CN', 'China'), +('217.8.102.0', '217.8.111.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.8.112.0', '217.8.127.255', 2147483647, 2147483647, 'JO', 'Jordan'), +('217.8.128.0', '217.8.159.255', 2147483647, 2147483647, 'NO', 'Norway'), +('217.8.160.0', '217.8.191.255', 2147483647, 2147483647, 'PL', 'Poland'), +('217.8.192.0', '217.8.223.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('217.8.224.0', '217.8.239.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.8.240.0', '217.8.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.9.0.0', '217.9.15.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('217.9.16.0', '217.9.63.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.9.64.0', '217.9.79.255', 2147483647, 2147483647, 'IT', 'Italy'), +('217.9.80.0', '217.9.95.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.9.96.0', '217.9.127.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.9.128.0', '217.9.143.255', 2147483647, 2147483647, 'IS', 'Iceland'), +('217.9.144.0', '217.9.159.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.9.160.0', '217.9.191.255', 2147483647, 2147483647, 'PL', 'Poland'), +('217.9.192.0', '217.9.207.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.9.208.0', '217.9.223.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('217.9.224.0', '217.9.239.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('217.9.240.0', '217.9.255.255', 2147483647, 2147483647, 'LT', 'Lithuania'), +('217.10.0.0', '217.10.15.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.10.16.0', '217.10.31.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('217.10.32.0', '217.10.47.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.10.48.0', '217.10.48.255', 2147483647, 2147483647, 'US', 'United States'), +('217.10.49.0', '217.10.79.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.10.80.0', '217.10.95.255', 2147483647, 2147483647, 'ES', 'Spain'), +('217.10.96.0', '217.10.127.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('217.10.128.0', '217.10.132.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.10.132.176', '217.10.132.191', 2147483647, 2147483647, 'IE', 'Ireland'), +('217.10.132.192', '217.10.149.7', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.10.149.8', '217.10.149.15', 2147483647, 2147483647, 'DE', 'Germany'), +('217.10.149.16', '217.10.149.23', 2147483647, 2147483647, 'FR', 'France'), +('217.10.149.24', '217.10.149.31', 2147483647, 2147483647, 'CH', 'Switzerland'), +('217.10.149.32', '217.10.149.39', 2147483647, 2147483647, 'DK', 'Denmark'), +('217.10.149.40', '217.10.149.47', 2147483647, 2147483647, 'NO', 'Norway'), +('217.10.149.48', '217.10.149.55', 2147483647, 2147483647, 'SE', 'Sweden'), +('217.10.149.56', '217.10.149.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.10.149.64', '217.10.149.135', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.10.149.136', '217.10.149.143', 2147483647, 2147483647, 'DE', 'Germany'), +('217.10.149.144', '217.10.149.151', 2147483647, 2147483647, 'IT', 'Italy'), +('217.10.149.152', '217.10.163.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.10.163.192', '217.10.163.223', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('217.10.163.224', '217.10.163.255', 2147483647, 2147483647, 'NG', 'Nigeria'), +('217.10.164.0', '217.10.164.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.10.164.16', '217.10.164.31', 2147483647, 2147483647, 'IQ', 'Iraq'), +('217.10.164.32', '217.10.164.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.10.164.128', '217.10.165.255', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('217.10.166.0', '217.10.166.31', 2147483647, 2147483647, 'NG', 'Nigeria'), +('217.10.166.32', '217.10.166.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.10.166.48', '217.10.166.79', 2147483647, 2147483647, 'NG', 'Nigeria'), +('217.10.166.80', '217.10.166.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.10.167.0', '217.10.167.255', 2147483647, 2147483647, 'AF', 'Afghanistan'), +('217.10.168.0', '217.10.168.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.10.168.144', '217.10.168.239', 2147483647, 2147483647, 'IT', 'Italy'), +('217.10.168.240', '217.10.169.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.10.170.0', '217.10.171.255', 2147483647, 2147483647, 'NG', 'Nigeria'), +('217.10.172.0', '217.10.172.255', 2147483647, 2147483647, 'AO', 'Angola'), +('217.10.173.0', '217.10.173.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.10.174.0', '217.10.174.255', 2147483647, 2147483647, 'LB', 'Lebanon'), +('217.10.175.0', '217.10.175.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.10.175.80', '217.10.175.87', 2147483647, 2147483647, 'NG', 'Nigeria'), +('217.10.175.88', '217.10.175.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.10.175.160', '217.10.175.175', 2147483647, 2147483647, 'NG', 'Nigeria'), +('217.10.175.176', '217.10.187.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.10.188.0', '217.10.188.255', 2147483647, 2147483647, 'IQ', 'Iraq'), +('217.10.189.0', '217.10.191.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.10.192.0', '217.10.223.255', 2147483647, 2147483647, 'RO', 'Romania'), +('217.10.224.0', '217.10.239.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.10.240.0', '217.10.255.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('217.11.0.0', '217.11.15.255', 2147483647, 2147483647, 'IT', 'Italy'), +('217.11.16.0', '217.11.31.255', 2147483647, 2147483647, 'IR', 'Iran, Islamic Republic of'), +('217.11.32.0', '217.11.47.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('217.11.48.0', '217.11.58.191', 2147483647, 2147483647, 'DE', 'Germany'), +('217.11.58.192', '217.11.58.207', 2147483647, 2147483647, 'AT', 'Austria'), +('217.11.58.208', '217.11.63.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.11.64.0', '217.11.79.255', 2147483647, 2147483647, 'KZ', 'Kazakstan'), +('217.11.80.0', '217.11.95.255', 2147483647, 2147483647, 'IT', 'Italy'), +('217.11.96.0', '217.11.127.255', 2147483647, 2147483647, 'ES', 'Spain'), +('217.11.128.0', '217.11.159.255', 2147483647, 2147483647, 'PL', 'Poland'), +('217.11.160.0', '217.11.175.255', 2147483647, 2147483647, 'GE', 'Georgia'), +('217.11.176.0', '217.11.191.255', 2147483647, 2147483647, 'TJ', 'Tajikistan'), +('217.11.192.0', '217.11.207.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.11.208.0', '217.11.223.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('217.11.224.0', '217.11.255.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('217.12.0.0', '217.12.15.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.12.16.0', '217.12.31.255', 2147483647, 2147483647, 'ES', 'Spain'), +('217.12.32.0', '217.12.47.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.12.48.0', '217.12.63.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('217.12.64.0', '217.12.79.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.12.80.0', '217.12.95.255', 2147483647, 2147483647, 'UZ', 'Uzbekistan'), +('217.12.96.0', '217.12.111.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.12.112.0', '217.12.127.255', 2147483647, 2147483647, 'MD', 'Moldova, Republic of'), +('217.12.128.0', '217.12.143.255', 2147483647, 2147483647, 'IT', 'Italy'), +('217.12.144.0', '217.12.159.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.12.160.0', '217.12.191.255', 2147483647, 2147483647, 'IT', 'Italy'), +('217.12.192.0', '217.12.199.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('217.12.200.0', '217.12.201.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.12.202.0', '217.12.207.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('217.12.208.0', '217.12.209.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.12.210.0', '217.12.223.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('217.12.224.0', '217.12.239.255', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('217.12.240.0', '217.12.255.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.13.0.0', '217.13.31.255', 2147483647, 2147483647, 'NO', 'Norway'), +('217.13.32.0', '217.13.47.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('217.13.48.0', '217.13.63.255', 2147483647, 2147483647, 'FR', 'France'), +('217.13.64.0', '217.13.79.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.13.80.0', '217.13.95.255', 2147483647, 2147483647, 'ES', 'Spain'), +('217.13.96.0', '217.13.111.255', 2147483647, 2147483647, 'RO', 'Romania'), +('217.13.112.0', '217.13.127.255', 2147483647, 2147483647, 'ES', 'Spain'), +('217.13.128.0', '217.13.159.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.13.160.0', '217.13.175.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.13.176.0', '217.13.191.255', 2147483647, 2147483647, 'AT', 'Austria'), +('217.13.192.0', '217.13.200.63', 2147483647, 2147483647, 'DE', 'Germany'), +('217.13.200.64', '217.13.200.95', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.13.200.96', '217.13.207.127', 2147483647, 2147483647, 'DE', 'Germany'), +('217.13.207.128', '217.13.207.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.13.208.0', '217.13.223.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.13.224.0', '217.13.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('217.14.0.0', '217.14.15.255', 2147483647, 2147483647, 'NO', 'Norway'), +('217.14.16.0', '217.14.31.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.14.32.0', '217.14.47.255', 2147483647, 2147483647, 'ES', 'Spain'), +('217.14.48.0', '217.14.63.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.14.64.0', '217.14.79.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('217.14.80.0', '217.14.95.255', 2147483647, 2147483647, 'NG', 'Nigeria'), +('217.14.96.0', '217.14.111.255', 2147483647, 2147483647, 'AZ', 'Azerbaijan'), +('217.14.112.0', '217.14.127.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.14.128.0', '217.14.134.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.14.134.16', '217.14.134.31', 2147483647, 2147483647, 'FR', 'France'), +('217.14.134.32', '217.14.143.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.14.144.0', '217.14.175.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.14.176.0', '217.14.191.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.14.192.0', '217.14.207.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.14.208.0', '217.14.223.255', 2147483647, 2147483647, 'HR', 'Croatia'), +('217.14.224.0', '217.14.239.255', 2147483647, 2147483647, 'AT', 'Austria'), +('217.14.240.0', '217.14.255.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.15.0.0', '217.15.15.255', 2147483647, 2147483647, 'AT', 'Austria'), +('217.15.16.0', '217.15.31.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.15.32.0', '217.15.47.255', 2147483647, 2147483647, 'ES', 'Spain'), +('217.15.48.0', '217.15.63.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.15.64.0', '217.15.79.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.15.80.0', '217.15.95.255', 2147483647, 2147483647, 'FR', 'France'), +('217.15.96.0', '217.15.111.255', 2147483647, 2147483647, 'MT', 'Malta'), +('217.15.112.0', '217.15.116.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.15.117.0', '217.15.123.255', 2147483647, 2147483647, 'ZW', 'Zimbabwe'), +('217.15.124.0', '217.15.124.127', 2147483647, 2147483647, 'SO', 'Somalia'), +('217.15.124.128', '217.15.124.135', 2147483647, 2147483647, 'NG', 'Nigeria'), +('217.15.124.136', '217.15.124.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.15.125.0', '217.15.127.255', 2147483647, 2147483647, 'LS', 'Lesotho'), +('217.15.128.0', '217.15.159.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.15.160.0', '217.15.175.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.15.176.0', '217.15.191.255', 2147483647, 2147483647, 'KZ', 'Kazakstan'), +('217.15.192.0', '217.15.207.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.15.208.0', '217.15.223.255', 2147483647, 2147483647, 'IT', 'Italy'), +('217.15.224.0', '217.15.239.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.15.240.0', '217.15.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('217.16.0.0', '217.16.15.255', 2147483647, 2147483647, 'FR', 'France'), +('217.16.16.0', '217.16.31.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.16.32.0', '217.16.47.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.16.48.0', '217.16.63.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.16.64.0', '217.16.95.255', 2147483647, 2147483647, 'MK', 'Macedonia'), +('217.16.96.0', '217.16.111.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('217.16.112.0', '217.16.127.255', 2147483647, 2147483647, 'AT', 'Austria'), +('217.16.128.0', '217.16.143.255', 2147483647, 2147483647, 'RS', 'Serbia'), +('217.16.144.0', '217.16.159.255', 2147483647, 2147483647, 'ES', 'Spain'), +('217.16.160.0', '217.16.175.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.16.176.0', '217.16.191.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.16.192.0', '217.16.207.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('217.16.208.0', '217.16.223.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.16.224.0', '217.16.224.3', 2147483647, 2147483647, 'CY', 'Cyprus'), +('217.16.224.4', '217.16.224.11', 2147483647, 2147483647, 'GR', 'Greece'), +('217.16.224.12', '217.16.224.15', 2147483647, 2147483647, 'CY', 'Cyprus'), +('217.16.224.16', '217.16.224.59', 2147483647, 2147483647, 'GR', 'Greece'), +('217.16.224.60', '217.16.224.63', 2147483647, 2147483647, 'CY', 'Cyprus'), +('217.16.224.64', '217.16.224.71', 2147483647, 2147483647, 'GR', 'Greece'), +('217.16.224.72', '217.16.224.75', 2147483647, 2147483647, 'CY', 'Cyprus'), +('217.16.224.76', '217.16.224.103', 2147483647, 2147483647, 'GR', 'Greece'), +('217.16.224.104', '217.16.224.107', 2147483647, 2147483647, 'CY', 'Cyprus'), +('217.16.224.108', '217.16.224.131', 2147483647, 2147483647, 'GR', 'Greece'), +('217.16.224.132', '217.16.224.135', 2147483647, 2147483647, 'CY', 'Cyprus'), +('217.16.224.136', '217.16.224.143', 2147483647, 2147483647, 'GR', 'Greece'), +('217.16.224.144', '217.16.224.147', 2147483647, 2147483647, 'CY', 'Cyprus'), +('217.16.224.148', '217.16.224.175', 2147483647, 2147483647, 'GR', 'Greece'), +('217.16.224.176', '217.16.224.179', 2147483647, 2147483647, 'CY', 'Cyprus'), +('217.16.224.180', '217.16.224.215', 2147483647, 2147483647, 'GR', 'Greece'), +('217.16.224.216', '217.16.224.219', 2147483647, 2147483647, 'CY', 'Cyprus'), +('217.16.224.220', '217.16.224.255', 2147483647, 2147483647, 'GR', 'Greece'), +('217.16.225.0', '217.16.227.11', 2147483647, 2147483647, 'CY', 'Cyprus'), +('217.16.227.12', '217.16.227.15', 2147483647, 2147483647, 'GR', 'Greece'), +('217.16.227.16', '217.16.227.31', 2147483647, 2147483647, 'CY', 'Cyprus'), +('217.16.227.32', '217.16.227.35', 2147483647, 2147483647, 'GR', 'Greece'), +('217.16.227.36', '217.16.227.47', 2147483647, 2147483647, 'CY', 'Cyprus'), +('217.16.227.48', '217.16.227.51', 2147483647, 2147483647, 'GR', 'Greece'), +('217.16.227.52', '217.16.227.87', 2147483647, 2147483647, 'CY', 'Cyprus'), +('217.16.227.88', '217.16.227.95', 2147483647, 2147483647, 'GR', 'Greece'), +('217.16.227.96', '217.16.227.143', 2147483647, 2147483647, 'CY', 'Cyprus'), +('217.16.227.144', '217.16.227.151', 2147483647, 2147483647, 'GR', 'Greece'), +('217.16.227.152', '217.16.227.195', 2147483647, 2147483647, 'CY', 'Cyprus'), +('217.16.227.196', '217.16.227.199', 2147483647, 2147483647, 'GR', 'Greece'), +('217.16.227.200', '217.16.228.91', 2147483647, 2147483647, 'CY', 'Cyprus'), +('217.16.228.92', '217.16.228.131', 2147483647, 2147483647, 'GR', 'Greece'), +('217.16.228.132', '217.16.228.135', 2147483647, 2147483647, 'CY', 'Cyprus'), +('217.16.228.136', '217.16.228.183', 2147483647, 2147483647, 'GR', 'Greece'), +('217.16.228.184', '217.16.228.187', 2147483647, 2147483647, 'CY', 'Cyprus'), +('217.16.228.188', '217.16.228.207', 2147483647, 2147483647, 'GR', 'Greece'), +('217.16.228.208', '217.16.228.219', 2147483647, 2147483647, 'CY', 'Cyprus'), +('217.16.228.220', '217.16.228.247', 2147483647, 2147483647, 'GR', 'Greece'), +('217.16.228.248', '217.16.230.7', 2147483647, 2147483647, 'CY', 'Cyprus'), +('217.16.230.8', '217.16.230.11', 2147483647, 2147483647, 'GR', 'Greece'), +('217.16.230.12', '217.16.230.99', 2147483647, 2147483647, 'CY', 'Cyprus'), +('217.16.230.100', '217.16.230.103', 2147483647, 2147483647, 'GR', 'Greece'), +('217.16.230.104', '217.16.230.111', 2147483647, 2147483647, 'CY', 'Cyprus'), +('217.16.230.112', '217.16.230.115', 2147483647, 2147483647, 'GR', 'Greece'), +('217.16.230.116', '217.16.230.123', 2147483647, 2147483647, 'CY', 'Cyprus'), +('217.16.230.124', '217.16.230.127', 2147483647, 2147483647, 'GR', 'Greece'), +('217.16.230.128', '217.16.230.147', 2147483647, 2147483647, 'CY', 'Cyprus'), +('217.16.230.148', '217.16.230.151', 2147483647, 2147483647, 'GR', 'Greece'), +('217.16.230.152', '217.16.230.183', 2147483647, 2147483647, 'CY', 'Cyprus'), +('217.16.230.184', '217.16.230.191', 2147483647, 2147483647, 'GR', 'Greece'), +('217.16.230.192', '217.16.230.254', 2147483647, 2147483647, 'CY', 'Cyprus'), +('217.16.230.255', '217.16.230.255', 2147483647, 2147483647, 'GR', 'Greece'), +('217.16.231.0', '217.16.233.135', 2147483647, 2147483647, 'CY', 'Cyprus'), +('217.16.233.136', '217.16.233.143', 2147483647, 2147483647, 'GR', 'Greece'), +('217.16.233.144', '217.16.233.183', 2147483647, 2147483647, 'CY', 'Cyprus'), +('217.16.233.184', '217.16.233.187', 2147483647, 2147483647, 'GR', 'Greece'), +('217.16.233.188', '217.16.233.191', 2147483647, 2147483647, 'CY', 'Cyprus'), +('217.16.233.192', '217.16.233.195', 2147483647, 2147483647, 'GR', 'Greece'), +('217.16.233.196', '217.16.233.207', 2147483647, 2147483647, 'CY', 'Cyprus'), +('217.16.233.208', '217.16.233.211', 2147483647, 2147483647, 'GR', 'Greece'), +('217.16.233.212', '217.16.233.223', 2147483647, 2147483647, 'CY', 'Cyprus'), +('217.16.233.224', '217.16.233.231', 2147483647, 2147483647, 'GR', 'Greece'), +('217.16.233.232', '217.16.234.255', 2147483647, 2147483647, 'CY', 'Cyprus'), +('217.16.235.0', '217.16.235.23', 2147483647, 2147483647, 'GR', 'Greece'), +('217.16.235.24', '217.16.235.27', 2147483647, 2147483647, 'CY', 'Cyprus'), +('217.16.235.28', '217.16.235.39', 2147483647, 2147483647, 'GR', 'Greece'), +('217.16.235.40', '217.16.235.43', 2147483647, 2147483647, 'CY', 'Cyprus'), +('217.16.235.44', '217.16.235.71', 2147483647, 2147483647, 'GR', 'Greece'), +('217.16.235.72', '217.16.235.75', 2147483647, 2147483647, 'CY', 'Cyprus'), +('217.16.235.76', '217.16.235.91', 2147483647, 2147483647, 'GR', 'Greece'), +('217.16.235.92', '217.16.235.95', 2147483647, 2147483647, 'CY', 'Cyprus'), +('217.16.235.96', '217.16.235.103', 2147483647, 2147483647, 'GR', 'Greece'), +('217.16.235.104', '217.16.235.107', 2147483647, 2147483647, 'CY', 'Cyprus'), +('217.16.235.108', '217.16.235.167', 2147483647, 2147483647, 'GR', 'Greece'), +('217.16.235.168', '217.16.235.175', 2147483647, 2147483647, 'CY', 'Cyprus'), +('217.16.235.176', '217.16.235.239', 2147483647, 2147483647, 'GR', 'Greece'), +('217.16.235.240', '217.16.235.248', 2147483647, 2147483647, 'CY', 'Cyprus'), +('217.16.235.249', '217.16.235.255', 2147483647, 2147483647, 'GR', 'Greece'), +('217.16.236.0', '217.16.236.11', 2147483647, 2147483647, 'CY', 'Cyprus'), +('217.16.236.12', '217.16.236.35', 2147483647, 2147483647, 'GR', 'Greece'), +('217.16.236.36', '217.16.236.39', 2147483647, 2147483647, 'CY', 'Cyprus'), +('217.16.236.40', '217.16.236.63', 2147483647, 2147483647, 'GR', 'Greece'), +('217.16.236.64', '217.16.236.67', 2147483647, 2147483647, 'CY', 'Cyprus'), +('217.16.236.68', '217.16.236.79', 2147483647, 2147483647, 'GR', 'Greece'), +('217.16.236.80', '217.16.236.87', 2147483647, 2147483647, 'CY', 'Cyprus'), +('217.16.236.88', '217.16.236.99', 2147483647, 2147483647, 'GR', 'Greece'), +('217.16.236.100', '217.16.236.103', 2147483647, 2147483647, 'CY', 'Cyprus'), +('217.16.236.104', '217.16.236.111', 2147483647, 2147483647, 'GR', 'Greece'), +('217.16.236.112', '217.16.236.115', 2147483647, 2147483647, 'CY', 'Cyprus'), +('217.16.236.116', '217.16.236.159', 2147483647, 2147483647, 'GR', 'Greece'), +('217.16.236.160', '217.16.236.167', 2147483647, 2147483647, 'CY', 'Cyprus'), +('217.16.236.168', '217.16.236.219', 2147483647, 2147483647, 'GR', 'Greece'), +('217.16.236.220', '217.16.236.227', 2147483647, 2147483647, 'CY', 'Cyprus'), +('217.16.236.228', '217.16.236.255', 2147483647, 2147483647, 'GR', 'Greece'), +('217.16.237.0', '217.16.238.255', 2147483647, 2147483647, 'CY', 'Cyprus'), +('217.16.239.0', '217.16.239.255', 2147483647, 2147483647, 'GR', 'Greece'), +('217.16.240.0', '217.16.255.255', 2147483647, 2147483647, 'ES', 'Spain'), +('217.17.0.0', '217.17.15.255', 2147483647, 2147483647, 'NO', 'Norway'), +('217.17.16.0', '217.17.31.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.17.32.0', '217.17.47.255', 2147483647, 2147483647, 'PL', 'Poland'), +('217.17.48.0', '217.17.55.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.17.55.16', '217.17.63.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('217.17.64.0', '217.17.79.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('217.17.80.0', '217.17.95.255', 2147483647, 2147483647, 'LT', 'Lithuania'), +('217.17.96.0', '217.17.111.255', 2147483647, 2147483647, 'RS', 'Serbia'), +('217.17.128.0', '217.17.143.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.17.144.0', '217.17.147.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('217.17.148.0', '217.17.151.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.17.152.0', '217.17.154.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('217.17.155.0', '217.17.155.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.17.156.0', '217.17.157.139', 2147483647, 2147483647, 'TR', 'Turkey'), +('217.17.157.140', '217.17.157.255', 2147483647, 2147483647, 'CY', 'Cyprus'), +('217.17.158.0', '217.17.158.7', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.17.158.8', '217.17.158.15', 2147483647, 2147483647, 'US', 'United States'), +('217.17.158.16', '217.17.158.31', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.17.158.32', '217.17.158.47', 2147483647, 2147483647, 'US', 'United States'), +('217.17.158.48', '217.17.158.127', 2147483647, 2147483647, 'TR', 'Turkey'), +('217.17.158.128', '217.17.158.191', 2147483647, 2147483647, 'US', 'United States'), +('217.17.158.192', '217.17.158.199', 2147483647, 2147483647, 'TR', 'Turkey'), +('217.17.158.200', '217.17.158.210', 2147483647, 2147483647, 'US', 'United States'), +('217.17.158.211', '217.17.158.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('217.17.159.0', '217.17.159.255', 2147483647, 2147483647, 'CY', 'Cyprus'), +('217.17.160.0', '217.17.191.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.17.192.0', '217.17.207.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.17.208.0', '217.17.223.255', 2147483647, 2147483647, 'NO', 'Norway'), +('217.17.224.0', '217.17.255.255', 2147483647, 2147483647, 'BH', 'Bahrain'), +('217.18.0.0', '217.18.15.255', 2147483647, 2147483647, 'IT', 'Italy'), +('217.18.16.0', '217.18.31.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.18.32.0', '217.18.47.255', 2147483647, 2147483647, 'ES', 'Spain'), +('217.18.48.0', '217.18.63.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.18.64.0', '217.18.79.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.18.80.0', '217.18.95.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.18.96.0', '217.18.127.255', 2147483647, 2147483647, 'IT', 'Italy'), +('217.18.128.0', '217.18.159.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.18.160.0', '217.18.175.255', 2147483647, 2147483647, 'ES', 'Spain'), +('217.18.176.0', '217.18.178.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.18.179.0', '217.18.179.15', 2147483647, 2147483647, 'US', 'United States'), +('217.18.179.16', '217.18.179.47', 2147483647, 2147483647, 'DE', 'Germany'), +('217.18.179.48', '217.18.179.51', 2147483647, 2147483647, 'CH', 'Switzerland'), +('217.18.179.52', '217.18.179.55', 2147483647, 2147483647, 'DE', 'Germany'), +('217.18.179.56', '217.18.179.63', 2147483647, 2147483647, 'CH', 'Switzerland'), +('217.18.179.64', '217.18.179.79', 2147483647, 2147483647, 'DE', 'Germany'), +('217.18.179.80', '217.18.179.95', 2147483647, 2147483647, 'US', 'United States'), +('217.18.179.96', '217.18.179.103', 2147483647, 2147483647, 'DE', 'Germany'), +('217.18.179.104', '217.18.179.111', 2147483647, 2147483647, 'CH', 'Switzerland'), +('217.18.179.112', '217.18.179.223', 2147483647, 2147483647, 'DE', 'Germany'), +('217.18.179.224', '217.18.179.239', 2147483647, 2147483647, 'CH', 'Switzerland'), +('217.18.179.240', '217.18.184.103', 2147483647, 2147483647, 'DE', 'Germany'), +('217.18.184.104', '217.18.184.111', 2147483647, 2147483647, 'CH', 'Switzerland'), +('217.18.184.112', '217.18.191.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.18.192.0', '217.18.207.255', 2147483647, 2147483647, 'NO', 'Norway'), +('217.18.208.0', '217.18.223.255', 2147483647, 2147483647, 'IT', 'Italy'), +('217.18.224.0', '217.18.239.255', 2147483647, 2147483647, 'ES', 'Spain'), +('217.18.240.0', '217.18.255.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('217.19.0.0', '217.19.15.255', 2147483647, 2147483647, 'RO', 'Romania'), +('217.19.16.0', '217.19.31.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.19.32.0', '217.19.47.255', 2147483647, 2147483647, 'AT', 'Austria'), +('217.19.48.0', '217.19.63.255', 2147483647, 2147483647, 'FR', 'France'), +('217.19.64.0', '217.19.95.255', 2147483647, 2147483647, 'GR', 'Greece'), +('217.19.96.0', '217.19.127.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.19.128.0', '217.19.143.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.19.144.0', '217.19.159.255', 2147483647, 2147483647, 'IT', 'Italy'), +('217.19.160.0', '217.19.191.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.19.192.0', '217.19.207.255', 2147483647, 2147483647, 'FR', 'France'), +('217.19.208.0', '217.19.221.255', 2147483647, 2147483647, 'MD', 'Moldova, Republic of'), +('217.19.222.0', '217.19.222.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.19.222.64', '217.19.222.255', 2147483647, 2147483647, 'MD', 'Moldova, Republic of'), +('217.19.223.0', '217.19.223.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.19.223.64', '217.19.223.255', 2147483647, 2147483647, 'MD', 'Moldova, Republic of'), +('217.19.224.0', '217.19.232.251', 2147483647, 2147483647, 'BE', 'Belgium'), +('217.19.232.252', '217.19.232.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.19.233.0', '217.19.236.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('217.19.237.0', '217.19.237.15', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.19.237.16', '217.19.237.63', 2147483647, 2147483647, 'BE', 'Belgium'), +('217.19.237.64', '217.19.237.71', 2147483647, 2147483647, 'US', 'United States'), +('217.19.237.72', '217.19.239.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('217.19.240.0', '217.19.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.20.0.0', '217.20.15.255', 2147483647, 2147483647, 'IT', 'Italy'), +('217.20.16.0', '217.20.47.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.20.48.0', '217.20.63.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('217.20.64.0', '217.20.95.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.20.96.0', '217.20.111.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('217.20.112.0', '217.20.127.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.20.128.0', '217.20.143.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('217.20.144.0', '217.20.159.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.20.160.0', '217.20.191.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('217.20.192.0', '217.20.207.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('217.20.208.0', '217.20.223.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.20.224.0', '217.20.239.255', 2147483647, 2147483647, 'EG', 'Egypt'), +('217.20.240.0', '217.20.240.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('217.20.241.0', '217.20.241.255', 2147483647, 2147483647, 'NG', 'Nigeria'), +('217.20.242.0', '217.20.242.0', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('217.20.242.1', '217.20.242.255', 2147483647, 2147483647, 'NG', 'Nigeria'), +('217.20.243.0', '217.20.243.0', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('217.20.243.1', '217.20.243.63', 2147483647, 2147483647, 'SO', 'Somalia'), +('217.20.243.64', '217.20.243.128', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('217.20.243.129', '217.20.243.255', 2147483647, 2147483647, 'NG', 'Nigeria'), +('217.20.244.0', '217.20.244.0', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('217.20.244.1', '217.20.244.255', 2147483647, 2147483647, 'NG', 'Nigeria'), +('217.20.245.0', '217.20.245.0', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('217.20.245.1', '217.20.245.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.20.246.0', '217.20.252.255', 2147483647, 2147483647, 'NG', 'Nigeria'), +('217.20.253.0', '217.20.253.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.20.254.0', '217.20.254.0', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('217.20.254.1', '217.20.254.255', 2147483647, 2147483647, 'NG', 'Nigeria'), +('217.20.255.0', '217.20.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.21.0.0', '217.21.15.255', 2147483647, 2147483647, 'PS', 'Palestinian Territory, Occupied'), +('217.21.16.0', '217.21.31.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.21.32.0', '217.21.63.255', 2147483647, 2147483647, 'BY', 'Belarus'), +('217.21.64.0', '217.21.83.63', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('217.21.83.64', '217.21.83.255', 2147483647, 2147483647, 'TZ', 'Tanzania, United Republic of'), +('217.21.84.0', '217.21.92.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('217.21.93.0', '217.21.95.255', 2147483647, 2147483647, 'KE', 'Kenya'), +('217.21.96.0', '217.21.111.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.21.112.0', '217.21.127.255', 2147483647, 2147483647, 'KE', 'Kenya'), +('217.21.128.0', '217.21.143.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('217.21.144.0', '217.21.159.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.21.160.0', '217.21.175.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('217.21.176.0', '217.21.177.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('217.21.178.0', '217.21.187.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.21.188.0', '217.21.191.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('217.21.192.0', '217.21.207.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.21.208.0', '217.21.223.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.21.224.0', '217.21.239.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('217.21.240.0', '217.21.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.22.0.0', '217.22.15.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.22.16.0', '217.22.47.255', 2147483647, 2147483647, 'NO', 'Norway'), +('217.22.48.0', '217.22.50.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('217.22.51.0', '217.22.52.15', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.22.52.16', '217.22.52.47', 2147483647, 2147483647, 'BE', 'Belgium'), +('217.22.52.48', '217.22.53.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.22.53.128', '217.22.53.254', 2147483647, 2147483647, 'BE', 'Belgium'), +('217.22.53.255', '217.22.55.47', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.22.55.48', '217.22.55.95', 2147483647, 2147483647, 'BE', 'Belgium'), +('217.22.55.96', '217.22.55.143', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.22.55.144', '217.22.55.159', 2147483647, 2147483647, 'BE', 'Belgium'), +('217.22.55.160', '217.22.55.175', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.22.55.176', '217.22.55.191', 2147483647, 2147483647, 'BE', 'Belgium'), +('217.22.55.192', '217.22.55.207', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.22.55.208', '217.22.55.239', 2147483647, 2147483647, 'BE', 'Belgium'), +('217.22.55.240', '217.22.55.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.22.56.0', '217.22.56.31', 2147483647, 2147483647, 'BE', 'Belgium'), +('217.22.56.32', '217.22.56.47', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.22.56.48', '217.22.56.63', 2147483647, 2147483647, 'BE', 'Belgium'), +('217.22.56.64', '217.22.56.143', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.22.56.144', '217.22.56.159', 2147483647, 2147483647, 'BE', 'Belgium'), +('217.22.56.160', '217.22.56.207', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.22.56.208', '217.22.56.239', 2147483647, 2147483647, 'BE', 'Belgium'), +('217.22.56.240', '217.22.57.95', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.22.57.96', '217.22.57.127', 2147483647, 2147483647, 'BE', 'Belgium'), +('217.22.57.128', '217.22.57.159', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.22.57.160', '217.22.57.191', 2147483647, 2147483647, 'BE', 'Belgium'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('217.22.57.192', '217.22.58.15', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.22.58.16', '217.22.58.31', 2147483647, 2147483647, 'BE', 'Belgium'), +('217.22.58.32', '217.22.58.47', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.22.58.48', '217.22.58.63', 2147483647, 2147483647, 'BE', 'Belgium'), +('217.22.58.64', '217.22.58.79', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.22.58.80', '217.22.58.95', 2147483647, 2147483647, 'BE', 'Belgium'), +('217.22.58.96', '217.22.58.111', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.22.58.112', '217.22.58.143', 2147483647, 2147483647, 'BE', 'Belgium'), +('217.22.58.144', '217.22.58.159', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.22.58.160', '217.22.58.175', 2147483647, 2147483647, 'BE', 'Belgium'), +('217.22.58.176', '217.22.58.207', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.22.58.208', '217.22.58.239', 2147483647, 2147483647, 'BE', 'Belgium'), +('217.22.58.240', '217.22.58.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.22.59.0', '217.22.59.63', 2147483647, 2147483647, 'BE', 'Belgium'), +('217.22.59.64', '217.22.59.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.22.60.0', '217.22.60.191', 2147483647, 2147483647, 'BE', 'Belgium'), +('217.22.60.192', '217.22.60.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.22.61.0', '217.22.61.31', 2147483647, 2147483647, 'BE', 'Belgium'), +('217.22.61.32', '217.22.62.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.22.63.0', '217.22.63.31', 2147483647, 2147483647, 'BE', 'Belgium'), +('217.22.63.32', '217.22.63.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.22.63.64', '217.22.63.127', 2147483647, 2147483647, 'BE', 'Belgium'), +('217.22.63.128', '217.22.79.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.22.80.0', '217.22.95.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.22.96.0', '217.22.111.255', 2147483647, 2147483647, 'ES', 'Spain'), +('217.22.112.0', '217.22.127.255', 2147483647, 2147483647, 'IL', 'Israel'), +('217.22.128.0', '217.22.143.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.22.144.0', '217.22.159.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.22.160.0', '217.22.175.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.22.176.0', '217.22.191.255', 2147483647, 2147483647, 'MT', 'Malta'), +('217.22.192.0', '217.22.207.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.22.208.0', '217.22.255.255', 2147483647, 2147483647, 'IT', 'Italy'), +('217.23.0.0', '217.23.15.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.23.16.0', '217.23.31.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.23.32.0', '217.23.47.255', 2147483647, 2147483647, 'JO', 'Jordan'), +('217.23.48.0', '217.23.63.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.23.64.0', '217.23.95.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.23.96.0', '217.23.106.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('217.23.107.0', '217.23.107.31', 2147483647, 2147483647, 'NO', 'Norway'), +('217.23.107.32', '217.23.110.63', 2147483647, 2147483647, 'DK', 'Denmark'), +('217.23.110.64', '217.23.110.95', 2147483647, 2147483647, 'ES', 'Spain'), +('217.23.110.96', '217.23.110.127', 2147483647, 2147483647, 'TR', 'Turkey'), +('217.23.110.128', '217.23.110.159', 2147483647, 2147483647, 'CH', 'Switzerland'), +('217.23.110.160', '217.23.110.191', 2147483647, 2147483647, 'CY', 'Cyprus'), +('217.23.110.192', '217.23.110.223', 2147483647, 2147483647, 'ES', 'Spain'), +('217.23.110.224', '217.23.110.255', 2147483647, 2147483647, 'US', 'United States'), +('217.23.111.0', '217.23.111.31', 2147483647, 2147483647, 'ZA', 'South Africa'), +('217.23.111.32', '217.23.111.63', 2147483647, 2147483647, 'AU', 'Australia'), +('217.23.111.64', '217.23.111.95', 2147483647, 2147483647, 'TH', 'Thailand'), +('217.23.111.96', '217.23.111.127', 2147483647, 2147483647, 'BR', 'Brazil'), +('217.23.111.128', '217.23.111.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('217.23.112.0', '217.23.127.255', 2147483647, 2147483647, 'BY', 'Belarus'), +('217.23.128.0', '217.23.159.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.23.160.0', '217.23.175.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.23.176.0', '217.23.191.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.23.192.0', '217.23.207.255', 2147483647, 2147483647, 'BA', 'Bosnia and Herzegovina'), +('217.23.208.0', '217.23.223.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('217.23.224.0', '217.23.239.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.23.240.0', '217.23.255.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('217.24.0.0', '217.24.15.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.24.16.0', '217.24.31.255', 2147483647, 2147483647, 'RS', 'Serbia'), +('217.24.32.0', '217.24.47.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('217.24.48.0', '217.24.63.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.24.64.0', '217.24.79.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('217.24.80.0', '217.24.95.255', 2147483647, 2147483647, 'FR', 'France'), +('217.24.96.0', '217.24.111.255', 2147483647, 2147483647, 'FI', 'Finland'), +('217.24.112.0', '217.24.127.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.24.128.0', '217.24.143.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.24.144.0', '217.24.144.255', 2147483647, 2147483647, 'IR', 'Iran, Islamic Republic of'), +('217.24.145.0', '217.24.145.255', 2147483647, 2147483647, 'AE', 'United Arab Emirates'), +('217.24.146.0', '217.24.159.255', 2147483647, 2147483647, 'IR', 'Iran, Islamic Republic of'), +('217.24.160.0', '217.24.175.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('217.24.176.0', '217.24.191.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.24.192.0', '217.24.239.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.24.240.0', '217.24.255.255', 2147483647, 2147483647, 'AL', 'Albania'), +('217.25.0.0', '217.25.15.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.25.16.0', '217.25.31.255', 2147483647, 2147483647, 'AZ', 'Azerbaijan'), +('217.25.32.0', '217.25.47.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('217.25.48.0', '217.25.63.255', 2147483647, 2147483647, 'IR', 'Iran, Islamic Republic of'), +('217.25.64.0', '217.25.79.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.25.80.0', '217.25.95.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.25.96.0', '217.25.111.255', 2147483647, 2147483647, 'FI', 'Finland'), +('217.25.112.0', '217.25.127.255', 2147483647, 2147483647, 'AT', 'Austria'), +('217.25.128.0', '217.25.143.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.25.144.0', '217.25.159.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.25.176.0', '217.25.191.255', 2147483647, 2147483647, 'FR', 'France'), +('217.25.192.0', '217.25.207.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('217.25.208.0', '217.25.239.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.25.240.0', '217.25.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('217.26.0.0', '217.26.31.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.26.32.0', '217.26.63.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('217.26.64.0', '217.26.79.255', 2147483647, 2147483647, 'RS', 'Serbia'), +('217.26.80.0', '217.26.95.255', 2147483647, 2147483647, 'IT', 'Italy'), +('217.26.96.0', '217.26.111.255', 2147483647, 2147483647, 'NO', 'Norway'), +('217.26.112.0', '217.26.127.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.26.128.0', '217.26.143.255', 2147483647, 2147483647, 'AM', 'Armenia'), +('217.26.144.0', '217.26.175.255', 2147483647, 2147483647, 'MD', 'Moldova, Republic of'), +('217.26.176.0', '217.26.191.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.26.192.0', '217.26.207.255', 2147483647, 2147483647, 'FR', 'France'), +('217.26.208.0', '217.26.213.255', 2147483647, 2147483647, 'RS', 'Serbia'), +('217.26.214.0', '217.26.218.11', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.26.218.12', '217.26.218.19', 2147483647, 2147483647, 'MT', 'Malta'), +('217.26.218.20', '217.26.218.35', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.26.218.36', '217.26.218.39', 2147483647, 2147483647, 'MT', 'Malta'), +('217.26.218.40', '217.26.223.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.26.224.0', '217.26.239.255', 2147483647, 2147483647, 'IT', 'Italy'), +('217.26.240.0', '217.27.15.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.27.16.0', '217.27.31.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.27.32.0', '217.27.39.255', 2147483647, 2147483647, 'CY', 'Cyprus'), +('217.27.40.0', '217.27.43.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.27.44.0', '217.27.45.255', 2147483647, 2147483647, 'GR', 'Greece'), +('217.27.46.0', '217.27.47.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.27.48.0', '217.27.54.255', 2147483647, 2147483647, 'CY', 'Cyprus'), +('217.27.55.0', '217.27.55.35', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.27.55.36', '217.27.55.39', 2147483647, 2147483647, 'CY', 'Cyprus'), +('217.27.55.40', '217.27.55.47', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.27.55.48', '217.27.55.59', 2147483647, 2147483647, 'CY', 'Cyprus'), +('217.27.55.60', '217.27.55.71', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.27.55.72', '217.27.55.127', 2147483647, 2147483647, 'CY', 'Cyprus'), +('217.27.55.128', '217.27.55.143', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.27.55.144', '217.27.63.255', 2147483647, 2147483647, 'CY', 'Cyprus'), +('217.27.64.0', '217.27.95.255', 2147483647, 2147483647, 'IT', 'Italy'), +('217.27.96.0', '217.27.111.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('217.27.112.0', '217.27.127.255', 2147483647, 2147483647, 'IT', 'Italy'), +('217.27.128.0', '217.27.143.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.27.144.0', '217.27.159.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('217.27.160.0', '217.27.191.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('217.27.192.0', '217.27.207.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.27.208.0', '217.27.223.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('217.27.224.0', '217.27.239.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.27.240.0', '217.27.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.28.0.0', '217.28.15.255', 2147483647, 2147483647, 'IM', 'Isle of Man'), +('217.28.16.0', '217.28.31.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.28.32.0', '217.28.47.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('217.28.48.0', '217.28.63.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('217.28.64.0', '217.28.79.255', 2147483647, 2147483647, 'FR', 'France'), +('217.28.80.0', '217.28.95.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.28.96.0', '217.28.111.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.28.112.0', '217.28.127.255', 2147483647, 2147483647, 'IT', 'Italy'), +('217.28.128.0', '217.28.143.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.28.144.0', '217.28.159.255', 2147483647, 2147483647, 'PL', 'Poland'), +('217.28.160.0', '217.28.161.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('217.28.162.0', '217.28.162.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.28.163.0', '217.28.163.255', 2147483647, 2147483647, 'US', 'United States'), +('217.28.164.0', '217.28.175.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('217.28.176.0', '217.28.191.255', 2147483647, 2147483647, 'IS', 'Iceland'), +('217.28.192.0', '217.28.207.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('217.28.208.0', '217.28.239.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.28.240.0', '217.28.241.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.28.241.64', '217.28.241.79', 2147483647, 2147483647, 'EE', 'Estonia'), +('217.28.241.80', '217.28.241.87', 2147483647, 2147483647, 'HU', 'Hungary'), +('217.28.241.88', '217.28.241.95', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.28.241.96', '217.28.241.111', 2147483647, 2147483647, 'SE', 'Sweden'), +('217.28.241.112', '217.28.243.15', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.28.243.16', '217.28.243.31', 2147483647, 2147483647, 'LV', 'Latvia'), +('217.28.243.32', '217.28.243.71', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.28.243.72', '217.28.243.238', 2147483647, 2147483647, 'LV', 'Latvia'), +('217.28.243.239', '217.28.243.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.28.244.0', '217.28.244.19', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.28.244.20', '217.28.244.31', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.28.244.32', '217.28.244.33', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.28.244.34', '217.28.244.35', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.28.244.36', '217.28.244.39', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.28.244.40', '217.28.244.43', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.28.244.44', '217.28.244.67', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.28.244.68', '217.28.244.71', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.28.244.72', '217.28.244.83', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.28.244.84', '217.28.244.87', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.28.244.88', '217.28.244.111', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.28.244.112', '217.28.244.123', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.28.244.124', '217.28.244.175', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.28.244.176', '217.28.244.179', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.28.244.180', '217.28.244.191', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.28.244.192', '217.28.244.199', 2147483647, 2147483647, 'DE', 'Germany'), +('217.28.244.200', '217.28.244.243', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.28.244.244', '217.28.246.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.28.247.0', '217.28.247.39', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.28.247.40', '217.28.247.63', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.28.247.64', '217.28.247.85', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.28.247.86', '217.28.247.87', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.28.247.88', '217.28.247.91', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.28.247.92', '217.28.247.93', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.28.247.94', '217.28.247.111', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.28.247.112', '217.28.247.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.28.247.128', '217.28.247.159', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.28.247.160', '217.28.247.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.28.248.0', '217.28.248.255', 2147483647, 2147483647, 'LT', 'Lithuania'), +('217.28.249.0', '217.28.249.7', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.28.249.8', '217.28.249.51', 2147483647, 2147483647, 'LV', 'Latvia'), +('217.28.249.52', '217.28.249.55', 2147483647, 2147483647, 'EE', 'Estonia'), +('217.28.249.56', '217.28.249.159', 2147483647, 2147483647, 'LV', 'Latvia'), +('217.28.249.160', '217.28.249.175', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.28.249.176', '217.28.249.183', 2147483647, 2147483647, 'EE', 'Estonia'), +('217.28.249.184', '217.28.249.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('217.28.250.0', '217.28.250.31', 2147483647, 2147483647, 'DE', 'Germany'), +('217.28.250.32', '217.28.250.39', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.28.250.40', '217.28.250.51', 2147483647, 2147483647, 'DE', 'Germany'), +('217.28.250.52', '217.28.250.71', 2147483647, 2147483647, 'UA', 'Ukraine'), +('217.28.250.72', '217.28.250.75', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.28.250.76', '217.28.250.79', 2147483647, 2147483647, 'GE', 'Georgia'), +('217.28.250.80', '217.28.250.83', 2147483647, 2147483647, 'DE', 'Germany'), +('217.28.250.84', '217.28.250.87', 2147483647, 2147483647, 'UA', 'Ukraine'), +('217.28.250.88', '217.28.250.91', 2147483647, 2147483647, 'LV', 'Latvia'), +('217.28.250.92', '217.28.250.95', 2147483647, 2147483647, 'DE', 'Germany'), +('217.28.250.96', '217.28.250.97', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('217.28.250.98', '217.28.250.99', 2147483647, 2147483647, 'FR', 'France'), +('217.28.250.100', '217.28.250.103', 2147483647, 2147483647, 'BE', 'Belgium'), +('217.28.250.104', '217.28.250.107', 2147483647, 2147483647, 'DE', 'Germany'), +('217.28.250.108', '217.28.250.109', 2147483647, 2147483647, 'FR', 'France'), +('217.28.250.110', '217.28.250.111', 2147483647, 2147483647, 'UA', 'Ukraine'), +('217.28.250.112', '217.28.250.131', 2147483647, 2147483647, 'DE', 'Germany'), +('217.28.250.132', '217.28.250.137', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.28.250.138', '217.28.250.143', 2147483647, 2147483647, 'DE', 'Germany'), +('217.28.250.144', '217.28.250.159', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.28.250.160', '217.28.250.165', 2147483647, 2147483647, 'DE', 'Germany'), +('217.28.250.166', '217.28.250.167', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.28.250.168', '217.28.250.171', 2147483647, 2147483647, 'DE', 'Germany'), +('217.28.250.172', '217.28.250.175', 2147483647, 2147483647, 'UA', 'Ukraine'), +('217.28.250.176', '217.28.250.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.28.251.0', '217.28.251.87', 2147483647, 2147483647, 'LT', 'Lithuania'), +('217.28.251.88', '217.28.251.91', 2147483647, 2147483647, 'LV', 'Latvia'), +('217.28.251.92', '217.28.251.255', 2147483647, 2147483647, 'LT', 'Lithuania'), +('217.28.252.0', '217.28.252.87', 2147483647, 2147483647, 'PL', 'Poland'), +('217.28.252.88', '217.28.252.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.28.253.0', '217.28.253.35', 2147483647, 2147483647, 'SE', 'Sweden'), +('217.28.253.36', '217.28.253.39', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.28.253.40', '217.28.253.47', 2147483647, 2147483647, 'SE', 'Sweden'), +('217.28.253.48', '217.28.253.55', 2147483647, 2147483647, 'LV', 'Latvia'), +('217.28.253.56', '217.28.253.59', 2147483647, 2147483647, 'FI', 'Finland'), +('217.28.253.60', '217.28.253.63', 2147483647, 2147483647, 'SE', 'Sweden'), +('217.28.253.64', '217.28.253.79', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.28.253.80', '217.28.253.87', 2147483647, 2147483647, 'SE', 'Sweden'), +('217.28.253.88', '217.28.253.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.28.253.96', '217.28.253.111', 2147483647, 2147483647, 'SE', 'Sweden'), +('217.28.253.112', '217.28.253.123', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.28.253.124', '217.28.253.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.28.253.128', '217.28.253.135', 2147483647, 2147483647, 'SE', 'Sweden'), +('217.28.253.136', '217.28.254.31', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.28.254.32', '217.28.254.79', 2147483647, 2147483647, 'UA', 'Ukraine'), +('217.28.254.80', '217.28.254.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.28.255.0', '217.28.255.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('217.29.0.0', '217.29.15.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('217.29.16.0', '217.29.31.255', 2147483647, 2147483647, 'KG', 'Kyrgyzstan'), +('217.29.32.0', '217.29.47.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.29.48.0', '217.29.63.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.29.64.0', '217.29.79.255', 2147483647, 2147483647, 'IT', 'Italy'), +('217.29.80.0', '217.29.95.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.29.96.0', '217.29.111.255', 2147483647, 2147483647, 'ES', 'Spain'), +('217.29.112.0', '217.29.114.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.29.115.0', '217.29.115.255', 2147483647, 2147483647, 'US', 'United States'), +('217.29.116.0', '217.29.127.255', 2147483647, 2147483647, 'UZ', 'Uzbekistan'), +('217.29.128.0', '217.29.143.255', 2147483647, 2147483647, 'EG', 'Egypt'), +('217.29.144.0', '217.29.159.255', 2147483647, 2147483647, 'AT', 'Austria'), +('217.29.160.0', '217.29.175.255', 2147483647, 2147483647, 'IT', 'Italy'), +('217.29.176.0', '217.29.191.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.29.192.0', '217.29.207.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.29.208.0', '217.29.223.255', 2147483647, 2147483647, 'DZ', 'Algeria'), +('217.29.224.0', '217.29.226.255', 2147483647, 2147483647, 'AX', 'Aland Islands'), +('217.29.227.0', '217.29.227.255', 2147483647, 2147483647, 'FI', 'Finland'), +('217.29.228.0', '217.29.229.255', 2147483647, 2147483647, 'AX', 'Aland Islands'), +('217.29.230.0', '217.29.230.255', 2147483647, 2147483647, 'FI', 'Finland'), +('217.29.231.0', '217.29.231.15', 2147483647, 2147483647, 'AX', 'Aland Islands'), +('217.29.231.16', '217.29.231.31', 2147483647, 2147483647, 'FI', 'Finland'), +('217.29.231.32', '217.29.231.63', 2147483647, 2147483647, 'AX', 'Aland Islands'), +('217.29.231.64', '217.29.231.255', 2147483647, 2147483647, 'FI', 'Finland'), +('217.29.232.0', '217.29.233.255', 2147483647, 2147483647, 'AX', 'Aland Islands'), +('217.29.234.0', '217.29.239.255', 2147483647, 2147483647, 'FI', 'Finland'), +('217.29.240.0', '217.29.255.255', 2147483647, 2147483647, 'JO', 'Jordan'), +('217.30.0.0', '217.30.15.255', 2147483647, 2147483647, 'IT', 'Italy'), +('217.30.16.0', '217.30.31.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('217.30.32.0', '217.30.47.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('217.30.48.0', '217.30.63.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.30.64.0', '217.30.79.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('217.30.80.0', '217.30.95.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('217.30.96.0', '217.30.111.255', 2147483647, 2147483647, 'MT', 'Malta'), +('217.30.112.0', '217.30.127.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.30.128.0', '217.30.159.255', 2147483647, 2147483647, 'PL', 'Poland'), +('217.30.160.0', '217.30.175.255', 2147483647, 2147483647, 'GR', 'Greece'), +('217.30.176.0', '217.30.191.255', 2147483647, 2147483647, 'FI', 'Finland'), +('217.30.192.0', '217.30.207.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('217.30.208.0', '217.30.223.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('217.30.224.0', '217.30.239.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.30.240.0', '217.30.255.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.31.0.0', '217.31.15.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.31.16.0', '217.31.31.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.31.32.0', '217.31.47.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('217.31.48.0', '217.31.63.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('217.31.64.0', '217.31.79.255', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('217.31.80.0', '217.31.95.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.31.96.0', '217.31.111.255', 2147483647, 2147483647, 'NO', 'Norway'), +('217.31.112.0', '217.31.127.255', 2147483647, 2147483647, 'IT', 'Italy'), +('217.31.128.0', '217.31.159.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.31.160.0', '217.31.191.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('217.31.192.0', '217.31.207.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('217.31.208.0', '217.31.223.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.31.224.0', '217.31.255.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('217.32.0.0', '217.33.47.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.33.47.80', '217.33.47.95', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('217.33.47.96', '217.47.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.48.0.0', '217.51.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.52.0.0', '217.55.255.255', 2147483647, 2147483647, 'EG', 'Egypt'), +('217.56.0.0', '217.59.255.255', 2147483647, 2147483647, 'IT', 'Italy'), +('217.60.0.0', '217.61.255.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('217.62.0.0', '217.63.95.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.63.96.0', '217.63.127.255', 2147483647, 2147483647, 'AM', 'Armenia'), +('217.63.128.0', '217.63.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.64.0.0', '217.64.15.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('217.64.16.0', '217.64.31.255', 2147483647, 2147483647, 'AZ', 'Azerbaijan'), +('217.64.32.0', '217.64.47.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.64.48.0', '217.64.63.255', 2147483647, 2147483647, 'FR', 'France'), +('217.64.64.0', '217.64.81.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.64.82.0', '217.64.82.255', 2147483647, 2147483647, 'AT', 'Austria'), +('217.64.83.0', '217.64.95.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.64.96.0', '217.64.111.255', 2147483647, 2147483647, 'ML', 'Mali'), +('217.64.112.0', '217.64.127.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.64.128.0', '217.64.143.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.64.144.0', '217.64.159.255', 2147483647, 2147483647, 'IR', 'Iran, Islamic Republic of'), +('217.64.160.0', '217.64.175.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.64.176.0', '217.64.190.231', 2147483647, 2147483647, 'FI', 'Finland'), +('217.64.190.232', '217.64.190.239', 2147483647, 2147483647, 'AX', 'Aland Islands'), +('217.64.190.240', '217.64.191.255', 2147483647, 2147483647, 'FI', 'Finland'), +('217.64.192.0', '217.64.207.255', 2147483647, 2147483647, 'IT', 'Italy'), +('217.64.208.0', '217.64.223.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('217.64.224.0', '217.64.229.183', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.64.229.184', '217.64.229.191', 2147483647, 2147483647, 'IT', 'Italy'), +('217.64.229.192', '217.64.233.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.64.233.32', '217.64.233.35', 2147483647, 2147483647, 'IS', 'Iceland'), +('217.64.233.36', '217.64.239.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.64.240.0', '217.64.255.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('217.65.0.0', '217.65.15.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.65.16.0', '217.65.31.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.65.32.0', '217.65.35.255', 2147483647, 2147483647, 'IL', 'Israel'), +('217.65.36.0', '217.65.36.127', 2147483647, 2147483647, 'US', 'United States'), +('217.65.36.128', '217.65.36.191', 2147483647, 2147483647, 'CI', 'Cote D''Ivoire'), +('217.65.36.192', '217.65.40.255', 2147483647, 2147483647, 'US', 'United States'), +('217.65.41.0', '217.65.41.15', 2147483647, 2147483647, 'IL', 'Israel'), +('217.65.41.16', '217.65.41.255', 2147483647, 2147483647, 'US', 'United States'), +('217.65.42.0', '217.65.42.255', 2147483647, 2147483647, 'VG', 'Virgin Islands, British'), +('217.65.43.0', '217.65.43.255', 2147483647, 2147483647, 'IL', 'Israel'), +('217.65.44.0', '217.65.47.255', 2147483647, 2147483647, 'US', 'United States'), +('217.65.48.0', '217.65.63.255', 2147483647, 2147483647, 'GI', 'Gibraltar'), +('217.65.64.0', '217.65.79.255', 2147483647, 2147483647, 'IT', 'Italy'), +('217.65.80.0', '217.65.95.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.65.96.0', '217.65.127.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('217.65.128.0', '217.65.143.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.65.144.0', '217.65.175.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.65.176.0', '217.65.178.31', 2147483647, 2147483647, 'DE', 'Germany'), +('217.65.178.32', '217.65.178.63', 2147483647, 2147483647, 'TR', 'Turkey'), +('217.65.178.64', '217.65.179.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.65.180.0', '217.65.189.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('217.65.190.0', '217.65.190.31', 2147483647, 2147483647, 'DE', 'Germany'), +('217.65.190.32', '217.65.191.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('217.65.192.0', '217.65.207.255', 2147483647, 2147483647, 'RS', 'Serbia'), +('217.65.208.0', '217.65.223.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.65.224.0', '217.65.239.255', 2147483647, 2147483647, 'NO', 'Norway'), +('217.65.240.0', '217.65.255.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('217.66.0.0', '217.66.15.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('217.66.16.0', '217.66.31.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.66.32.0', '217.66.63.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.66.64.0', '217.66.95.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.66.96.0', '217.66.111.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('217.66.112.0', '217.66.127.255', 2147483647, 2147483647, 'FR', 'France'), +('217.66.128.0', '217.66.143.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.66.144.0', '217.66.159.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.66.160.0', '217.66.190.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('217.66.191.0', '217.66.191.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('217.66.192.0', '217.66.223.255', 2147483647, 2147483647, 'IR', 'Iran, Islamic Republic of'), +('217.66.224.0', '217.66.255.255', 2147483647, 2147483647, 'PS', 'Palestinian Territory, Occupied'), +('217.67.0.0', '217.67.15.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.67.16.0', '217.67.16.179', 2147483647, 2147483647, 'SK', 'Slovakia'), +('217.67.16.180', '217.67.16.183', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('217.67.16.184', '217.67.16.251', 2147483647, 2147483647, 'SK', 'Slovakia'), +('217.67.16.252', '217.67.16.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('217.67.17.0', '217.67.17.87', 2147483647, 2147483647, 'SK', 'Slovakia'), +('217.67.17.88', '217.67.17.111', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('217.67.17.112', '217.67.17.119', 2147483647, 2147483647, 'SK', 'Slovakia'), +('217.67.17.120', '217.67.17.143', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('217.67.17.144', '217.67.17.243', 2147483647, 2147483647, 'SK', 'Slovakia'), +('217.67.17.244', '217.67.17.247', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('217.67.17.248', '217.67.18.47', 2147483647, 2147483647, 'SK', 'Slovakia'), +('217.67.18.48', '217.67.18.63', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('217.67.18.64', '217.67.18.163', 2147483647, 2147483647, 'SK', 'Slovakia'), +('217.67.18.164', '217.67.18.167', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('217.67.18.168', '217.67.18.175', 2147483647, 2147483647, 'SK', 'Slovakia'), +('217.67.18.176', '217.67.18.191', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('217.67.18.192', '217.67.18.207', 2147483647, 2147483647, 'SK', 'Slovakia'), +('217.67.18.208', '217.67.18.223', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('217.67.18.224', '217.67.18.247', 2147483647, 2147483647, 'SK', 'Slovakia'), +('217.67.18.248', '217.67.18.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('217.67.19.0', '217.67.19.23', 2147483647, 2147483647, 'SK', 'Slovakia'), +('217.67.19.24', '217.67.19.63', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('217.67.19.64', '217.67.19.71', 2147483647, 2147483647, 'SK', 'Slovakia'), +('217.67.19.72', '217.67.19.79', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('217.67.19.80', '217.67.19.127', 2147483647, 2147483647, 'SK', 'Slovakia'), +('217.67.19.128', '217.67.19.143', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('217.67.19.144', '217.67.19.167', 2147483647, 2147483647, 'SK', 'Slovakia'), +('217.67.19.168', '217.67.19.175', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('217.67.19.176', '217.67.19.239', 2147483647, 2147483647, 'SK', 'Slovakia'), +('217.67.19.240', '217.67.19.251', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('217.67.19.252', '217.67.20.39', 2147483647, 2147483647, 'SK', 'Slovakia'), +('217.67.20.40', '217.67.20.47', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('217.67.20.48', '217.67.20.63', 2147483647, 2147483647, 'SK', 'Slovakia'), +('217.67.20.64', '217.67.20.71', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('217.67.20.72', '217.67.20.75', 2147483647, 2147483647, 'SK', 'Slovakia'), +('217.67.20.76', '217.67.20.95', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('217.67.20.96', '217.67.20.111', 2147483647, 2147483647, 'SK', 'Slovakia'), +('217.67.20.112', '217.67.20.127', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('217.67.20.128', '217.67.20.191', 2147483647, 2147483647, 'SK', 'Slovakia'), +('217.67.20.192', '217.67.20.199', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('217.67.20.200', '217.67.20.223', 2147483647, 2147483647, 'SK', 'Slovakia'), +('217.67.20.224', '217.67.20.239', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('217.67.20.240', '217.67.21.23', 2147483647, 2147483647, 'SK', 'Slovakia'), +('217.67.21.24', '217.67.21.31', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('217.67.21.32', '217.67.21.103', 2147483647, 2147483647, 'SK', 'Slovakia'), +('217.67.21.104', '217.67.21.127', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('217.67.21.128', '217.67.21.191', 2147483647, 2147483647, 'SK', 'Slovakia'), +('217.67.21.192', '217.67.21.207', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('217.67.21.208', '217.67.21.247', 2147483647, 2147483647, 'SK', 'Slovakia'), +('217.67.21.248', '217.67.21.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('217.67.22.0', '217.67.22.7', 2147483647, 2147483647, 'SK', 'Slovakia'), +('217.67.22.8', '217.67.22.15', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('217.67.22.16', '217.67.22.31', 2147483647, 2147483647, 'SK', 'Slovakia'), +('217.67.22.32', '217.67.22.39', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('217.67.22.40', '217.67.22.175', 2147483647, 2147483647, 'SK', 'Slovakia'), +('217.67.22.176', '217.67.22.183', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('217.67.22.184', '217.67.22.191', 2147483647, 2147483647, 'SK', 'Slovakia'), +('217.67.22.192', '217.67.22.215', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('217.67.22.216', '217.67.22.239', 2147483647, 2147483647, 'SK', 'Slovakia'), +('217.67.22.240', '217.67.22.247', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('217.67.22.248', '217.67.24.15', 2147483647, 2147483647, 'SK', 'Slovakia'), +('217.67.24.16', '217.67.24.23', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('217.67.24.24', '217.67.24.55', 2147483647, 2147483647, 'SK', 'Slovakia'), +('217.67.24.56', '217.67.24.63', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('217.67.24.64', '217.67.24.71', 2147483647, 2147483647, 'SK', 'Slovakia'), +('217.67.24.72', '217.67.24.79', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('217.67.24.80', '217.67.24.87', 2147483647, 2147483647, 'SK', 'Slovakia'), +('217.67.24.88', '217.67.24.95', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('217.67.24.96', '217.67.24.151', 2147483647, 2147483647, 'SK', 'Slovakia'), +('217.67.24.152', '217.67.24.159', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('217.67.24.160', '217.67.24.167', 2147483647, 2147483647, 'SK', 'Slovakia'), +('217.67.24.168', '217.67.24.171', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('217.67.24.172', '217.67.24.195', 2147483647, 2147483647, 'SK', 'Slovakia'), +('217.67.24.196', '217.67.24.203', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('217.67.24.204', '217.67.24.207', 2147483647, 2147483647, 'SK', 'Slovakia'), +('217.67.24.208', '217.67.24.211', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('217.67.24.212', '217.67.24.215', 2147483647, 2147483647, 'SK', 'Slovakia'), +('217.67.24.216', '217.67.24.239', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('217.67.24.240', '217.67.24.251', 2147483647, 2147483647, 'SK', 'Slovakia'), +('217.67.24.252', '217.67.24.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('217.67.25.0', '217.67.25.79', 2147483647, 2147483647, 'SK', 'Slovakia'), +('217.67.25.80', '217.67.25.87', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('217.67.25.88', '217.67.25.103', 2147483647, 2147483647, 'SK', 'Slovakia'), +('217.67.25.104', '217.67.25.111', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('217.67.25.112', '217.67.25.127', 2147483647, 2147483647, 'SK', 'Slovakia'), +('217.67.25.128', '217.67.25.135', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('217.67.25.136', '217.67.25.159', 2147483647, 2147483647, 'SK', 'Slovakia'), +('217.67.25.160', '217.67.25.167', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('217.67.25.168', '217.67.26.207', 2147483647, 2147483647, 'SK', 'Slovakia'), +('217.67.26.208', '217.67.26.223', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('217.67.26.224', '217.67.27.31', 2147483647, 2147483647, 'SK', 'Slovakia'), +('217.67.27.32', '217.67.27.39', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('217.67.27.40', '217.67.27.47', 2147483647, 2147483647, 'SK', 'Slovakia'), +('217.67.27.48', '217.67.27.55', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('217.67.27.56', '217.67.27.215', 2147483647, 2147483647, 'SK', 'Slovakia'), +('217.67.27.216', '217.67.27.223', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('217.67.27.224', '217.67.27.227', 2147483647, 2147483647, 'SK', 'Slovakia'), +('217.67.27.228', '217.67.27.231', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('217.67.27.232', '217.67.27.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('217.67.28.0', '217.67.28.7', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('217.67.28.8', '217.67.28.11', 2147483647, 2147483647, 'SK', 'Slovakia'), +('217.67.28.12', '217.67.28.15', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('217.67.28.16', '217.67.28.47', 2147483647, 2147483647, 'SK', 'Slovakia'), +('217.67.28.48', '217.67.28.55', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('217.67.28.56', '217.67.29.47', 2147483647, 2147483647, 'SK', 'Slovakia'), +('217.67.29.48', '217.67.29.55', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('217.67.29.56', '217.67.29.95', 2147483647, 2147483647, 'SK', 'Slovakia'), +('217.67.29.96', '217.67.29.103', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('217.67.29.104', '217.67.29.107', 2147483647, 2147483647, 'SK', 'Slovakia'), +('217.67.29.108', '217.67.29.111', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('217.67.29.112', '217.67.29.143', 2147483647, 2147483647, 'SK', 'Slovakia'), +('217.67.29.144', '217.67.29.151', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('217.67.29.152', '217.67.29.175', 2147483647, 2147483647, 'SK', 'Slovakia'), +('217.67.29.176', '217.67.29.191', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('217.67.29.192', '217.67.31.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('217.67.32.0', '217.67.47.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.67.48.0', '217.67.63.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.67.64.0', '217.67.79.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('217.67.80.0', '217.67.95.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('217.67.96.0', '217.67.111.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.67.112.0', '217.67.127.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.67.128.0', '217.67.143.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('217.67.144.0', '217.67.159.255', 2147483647, 2147483647, 'FR', 'France'), +('217.67.160.0', '217.67.175.255', 2147483647, 2147483647, 'ES', 'Spain'), +('217.67.176.0', '217.67.191.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.67.192.0', '217.67.223.255', 2147483647, 2147483647, 'PL', 'Poland'), +('217.67.224.0', '217.67.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.68.0.0', '217.68.15.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.68.16.0', '217.68.31.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.68.32.0', '217.68.47.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('217.68.48.0', '217.68.63.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.68.64.0', '217.68.79.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.68.80.0', '217.68.95.255', 2147483647, 2147483647, 'HR', 'Croatia'), +('217.68.96.0', '217.68.127.255', 2147483647, 2147483647, 'NO', 'Norway'), +('217.68.128.0', '217.68.143.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.68.144.0', '217.68.146.191', 2147483647, 2147483647, 'DE', 'Germany'), +('217.68.146.192', '217.68.146.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('217.68.147.0', '217.68.149.95', 2147483647, 2147483647, 'DE', 'Germany'), +('217.68.149.96', '217.68.149.127', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('217.68.149.128', '217.68.149.151', 2147483647, 2147483647, 'DE', 'Germany'), +('217.68.149.152', '217.68.149.159', 2147483647, 2147483647, 'US', 'United States'), +('217.68.149.160', '217.68.150.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.68.151.0', '217.68.151.255', 2147483647, 2147483647, 'US', 'United States'), +('217.68.152.0', '217.68.152.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.68.153.0', '217.68.153.127', 2147483647, 2147483647, 'MT', 'Malta'), +('217.68.153.128', '217.68.157.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.68.158.0', '217.68.158.31', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('217.68.158.32', '217.68.191.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.68.192.0', '217.68.207.255', 2147483647, 2147483647, 'AT', 'Austria'), +('217.68.208.0', '217.68.223.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('217.68.224.0', '217.68.239.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('217.68.240.0', '217.68.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.69.0.0', '217.69.15.255', 2147483647, 2147483647, 'GR', 'Greece'), +('217.69.16.0', '217.69.21.95', 2147483647, 2147483647, 'FR', 'France'), +('217.69.21.96', '217.69.21.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.69.21.128', '217.69.22.127', 2147483647, 2147483647, 'FR', 'France'), +('217.69.22.128', '217.69.22.191', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('217.69.22.192', '217.69.22.255', 2147483647, 2147483647, 'FR', 'France'), +('217.69.23.0', '217.69.23.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.69.23.128', '217.69.23.255', 2147483647, 2147483647, 'FR', 'France'), +('217.69.24.0', '217.69.24.255', 2147483647, 2147483647, 'US', 'United States'), +('217.69.25.0', '217.69.25.0', 2147483647, 2147483647, 'FR', 'France'), +('217.69.25.1', '217.69.25.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.69.25.128', '217.69.31.255', 2147483647, 2147483647, 'FR', 'France'), +('217.69.32.0', '217.69.47.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.69.48.0', '217.69.63.255', 2147483647, 2147483647, 'FI', 'Finland'), +('217.69.64.0', '217.69.95.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.69.96.0', '217.69.111.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('217.69.112.0', '217.69.127.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('217.69.128.0', '217.69.143.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.69.144.0', '217.69.159.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.69.160.0', '217.69.175.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.69.176.0', '217.69.191.255', 2147483647, 2147483647, 'KW', 'Kuwait'), +('217.69.192.0', '217.69.223.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.69.224.0', '217.69.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.70.0.0', '217.70.15.255', 2147483647, 2147483647, 'ES', 'Spain'), +('217.70.16.0', '217.70.31.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.70.32.0', '217.70.47.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('217.70.48.0', '217.70.63.255', 2147483647, 2147483647, 'PL', 'Poland'), +('217.70.64.0', '217.70.79.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('217.70.80.0', '217.70.95.255', 2147483647, 2147483647, 'FR', 'France'), +('217.70.96.0', '217.70.127.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.70.128.0', '217.70.143.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.70.144.0', '217.70.147.255', 2147483647, 2147483647, 'IT', 'Italy'), +('217.70.148.0', '217.70.148.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.70.149.0', '217.70.149.255', 2147483647, 2147483647, 'IT', 'Italy'), +('217.70.150.0', '217.70.150.127', 2147483647, 2147483647, 'HU', 'Hungary'), +('217.70.150.128', '217.70.159.255', 2147483647, 2147483647, 'IT', 'Italy'), +('217.70.160.0', '217.70.175.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.70.176.0', '217.70.191.255', 2147483647, 2147483647, 'FR', 'France'), +('217.70.192.0', '217.70.201.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.70.202.0', '217.70.202.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.70.203.0', '217.70.207.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.70.208.0', '217.70.223.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.70.224.0', '217.70.239.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('217.70.240.0', '217.70.255.255', 2147483647, 2147483647, 'ES', 'Spain'), +('217.71.0.0', '217.71.15.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('217.71.16.0', '217.71.31.255', 2147483647, 2147483647, 'ES', 'Spain'), +('217.71.32.0', '217.71.47.255', 2147483647, 2147483647, 'EE', 'Estonia'), +('217.71.48.0', '217.71.63.255', 2147483647, 2147483647, 'BA', 'Bosnia and Herzegovina'), +('217.71.64.0', '217.71.79.255', 2147483647, 2147483647, 'IT', 'Italy'), +('217.71.80.0', '217.71.95.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('217.71.96.0', '217.71.98.15', 2147483647, 2147483647, 'DE', 'Germany'), +('217.71.98.16', '217.71.98.255', 2147483647, 2147483647, 'EU', 'Europe'), +('217.71.99.0', '217.71.109.95', 2147483647, 2147483647, 'DE', 'Germany'), +('217.71.109.96', '217.71.109.103', 2147483647, 2147483647, 'EU', 'Europe'), +('217.71.109.104', '217.71.109.159', 2147483647, 2147483647, 'DE', 'Germany'), +('217.71.109.160', '217.71.109.175', 2147483647, 2147483647, 'EU', 'Europe'), +('217.71.109.176', '217.71.109.191', 2147483647, 2147483647, 'DE', 'Germany'), +('217.71.109.192', '217.71.109.255', 2147483647, 2147483647, 'EU', 'Europe'), +('217.71.110.0', '217.71.111.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.71.112.0', '217.71.112.31', 2147483647, 2147483647, 'FR', 'France'), +('217.71.112.32', '217.71.112.63', 2147483647, 2147483647, 'BE', 'Belgium'), +('217.71.112.64', '217.71.115.31', 2147483647, 2147483647, 'FR', 'France'), +('217.71.115.32', '217.71.115.63', 2147483647, 2147483647, 'BE', 'Belgium'), +('217.71.115.64', '217.71.118.159', 2147483647, 2147483647, 'FR', 'France'), +('217.71.118.160', '217.71.118.223', 2147483647, 2147483647, 'BE', 'Belgium'), +('217.71.118.224', '217.71.118.255', 2147483647, 2147483647, 'FR', 'France'), +('217.71.119.0', '217.71.119.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.71.120.0', '217.71.120.255', 2147483647, 2147483647, 'FR', 'France'), +('217.71.121.0', '217.71.121.63', 2147483647, 2147483647, 'BE', 'Belgium'), +('217.71.121.64', '217.71.122.255', 2147483647, 2147483647, 'FR', 'France'), +('217.71.123.0', '217.71.123.31', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.71.123.32', '217.71.123.127', 2147483647, 2147483647, 'FR', 'France'), +('217.71.123.128', '217.71.124.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('217.71.125.0', '217.71.125.255', 2147483647, 2147483647, 'FR', 'France'), +('217.71.126.0', '217.71.126.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('217.71.127.0', '217.71.127.255', 2147483647, 2147483647, 'FR', 'France'), +('217.71.128.0', '217.71.143.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.71.144.0', '217.71.159.255', 2147483647, 2147483647, 'FI', 'Finland'), +('217.71.160.0', '217.71.175.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.71.176.0', '217.71.191.255', 2147483647, 2147483647, 'MT', 'Malta'), +('217.71.192.0', '217.71.207.255', 2147483647, 2147483647, 'ES', 'Spain'), +('217.71.208.0', '217.71.223.255', 2147483647, 2147483647, 'FR', 'France'), +('217.71.224.0', '217.71.239.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.71.240.0', '217.71.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('217.72.0.0', '217.72.15.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.72.16.0', '217.72.31.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('217.72.32.0', '217.72.47.255', 2147483647, 2147483647, 'IT', 'Italy'), +('217.72.48.0', '217.72.63.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('217.72.64.0', '217.72.95.255', 2147483647, 2147483647, 'SI', 'Slovenia'), +('217.72.96.0', '217.72.111.255', 2147483647, 2147483647, 'IT', 'Italy'), +('217.72.128.0', '217.72.131.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.72.132.0', '217.72.132.63', 2147483647, 2147483647, 'CH', 'Switzerland'), +('217.72.132.64', '217.72.143.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.72.144.0', '217.72.159.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.72.160.0', '217.72.191.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.72.192.0', '217.72.223.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.72.224.0', '217.72.239.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('217.72.240.0', '217.72.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.73.0.0', '217.73.15.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('217.73.16.0', '217.73.31.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('217.73.32.0', '217.73.63.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.73.64.0', '217.73.64.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.73.65.0', '217.73.65.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.73.66.0', '217.73.67.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.73.68.0', '217.73.79.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.73.80.0', '217.73.95.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('217.73.96.0', '217.73.111.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('217.73.112.0', '217.73.127.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.73.128.0', '217.73.142.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('217.73.143.0', '217.73.143.255', 2147483647, 2147483647, 'US', 'United States'), +('217.73.144.0', '217.73.159.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.73.160.0', '217.73.175.255', 2147483647, 2147483647, 'RO', 'Romania'), +('217.73.176.0', '217.73.191.255', 2147483647, 2147483647, 'MT', 'Malta'), +('217.73.192.0', '217.73.207.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.73.208.0', '217.73.239.255', 2147483647, 2147483647, 'IT', 'Italy'), +('217.74.0.0', '217.74.3.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.74.4.0', '217.74.4.255', 2147483647, 2147483647, 'AT', 'Austria'), +('217.74.5.0', '217.74.7.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.74.8.0', '217.74.8.3', 2147483647, 2147483647, 'AT', 'Austria'), +('217.74.8.4', '217.74.8.7', 2147483647, 2147483647, 'DE', 'Germany'), +('217.74.8.8', '217.74.8.11', 2147483647, 2147483647, 'AT', 'Austria'), +('217.74.8.12', '217.74.8.15', 2147483647, 2147483647, 'DE', 'Germany'), +('217.74.8.16', '217.74.8.23', 2147483647, 2147483647, 'AT', 'Austria'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('217.74.8.24', '217.74.15.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.74.16.0', '217.74.31.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.74.32.0', '217.74.47.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.74.48.0', '217.74.63.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('217.74.64.0', '217.74.79.255', 2147483647, 2147483647, 'PL', 'Poland'), +('217.74.80.0', '217.74.95.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('217.74.96.0', '217.74.111.255', 2147483647, 2147483647, 'FR', 'France'), +('217.74.112.0', '217.74.153.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.74.154.0', '217.74.154.31', 2147483647, 2147483647, 'KZ', 'Kazakstan'), +('217.74.154.32', '217.74.154.127', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.74.154.128', '217.74.154.255', 2147483647, 2147483647, 'TJ', 'Tajikistan'), +('217.74.155.0', '217.74.175.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.74.176.0', '217.74.207.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.74.208.0', '217.74.223.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('217.74.224.0', '217.74.224.255', 2147483647, 2147483647, 'BW', 'Botswana'), +('217.74.225.0', '217.74.230.255', 2147483647, 2147483647, 'LS', 'Lesotho'), +('217.74.231.0', '217.74.231.255', 2147483647, 2147483647, 'PK', 'Pakistan'), +('217.74.232.0', '217.74.232.127', 2147483647, 2147483647, 'SO', 'Somalia'), +('217.74.232.128', '217.74.234.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.74.235.0', '217.74.239.255', 2147483647, 2147483647, 'ZW', 'Zimbabwe'), +('217.74.240.0', '217.74.255.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.75.0.0', '217.75.15.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('217.75.16.0', '217.75.31.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('217.75.32.0', '217.75.47.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.75.48.0', '217.75.63.255', 2147483647, 2147483647, 'PL', 'Poland'), +('217.75.64.0', '217.75.95.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('217.75.96.0', '217.75.104.55', 2147483647, 2147483647, 'SE', 'Sweden'), +('217.75.104.56', '217.75.104.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.75.104.64', '217.75.118.191', 2147483647, 2147483647, 'SE', 'Sweden'), +('217.75.118.192', '217.75.118.207', 2147483647, 2147483647, 'NO', 'Norway'), +('217.75.118.208', '217.75.119.223', 2147483647, 2147483647, 'SE', 'Sweden'), +('217.75.119.224', '217.75.119.239', 2147483647, 2147483647, 'FR', 'France'), +('217.75.119.240', '217.75.127.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('217.75.128.0', '217.75.159.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('217.75.160.0', '217.75.175.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.75.176.0', '217.75.191.255', 2147483647, 2147483647, 'AT', 'Austria'), +('217.75.192.0', '217.75.207.255', 2147483647, 2147483647, 'BA', 'Bosnia and Herzegovina'), +('217.75.208.0', '217.75.223.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('217.75.224.0', '217.75.255.255', 2147483647, 2147483647, 'ES', 'Spain'), +('217.76.0.0', '217.76.15.255', 2147483647, 2147483647, 'AM', 'Armenia'), +('217.76.16.0', '217.76.31.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.76.32.0', '217.76.47.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.76.48.0', '217.76.63.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('217.76.64.0', '217.76.79.255', 2147483647, 2147483647, 'KZ', 'Kazakstan'), +('217.76.80.0', '217.76.95.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('217.76.96.0', '217.76.111.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.76.112.0', '217.76.127.255', 2147483647, 2147483647, 'PL', 'Poland'), +('217.76.128.0', '217.76.128.255', 2147483647, 2147483647, 'ES', 'Spain'), +('217.76.129.0', '217.76.129.223', 2147483647, 2147483647, 'FR', 'France'), +('217.76.129.224', '217.76.131.255', 2147483647, 2147483647, 'ES', 'Spain'), +('217.76.132.0', '217.76.133.255', 2147483647, 2147483647, 'FR', 'France'), +('217.76.134.0', '217.76.143.255', 2147483647, 2147483647, 'ES', 'Spain'), +('217.76.144.0', '217.76.144.63', 2147483647, 2147483647, 'FR', 'France'), +('217.76.144.64', '217.76.150.255', 2147483647, 2147483647, 'ES', 'Spain'), +('217.76.151.0', '217.76.151.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('217.76.152.0', '217.76.152.239', 2147483647, 2147483647, 'ES', 'Spain'), +('217.76.152.240', '217.76.152.255', 2147483647, 2147483647, 'FR', 'France'), +('217.76.153.0', '217.76.153.239', 2147483647, 2147483647, 'ES', 'Spain'), +('217.76.153.240', '217.76.153.255', 2147483647, 2147483647, 'FR', 'France'), +('217.76.154.0', '217.76.159.255', 2147483647, 2147483647, 'ES', 'Spain'), +('217.76.160.0', '217.76.175.255', 2147483647, 2147483647, 'AT', 'Austria'), +('217.76.176.0', '217.76.191.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.76.192.0', '217.76.207.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('217.76.208.0', '217.76.223.255', 2147483647, 2147483647, 'IT', 'Italy'), +('217.76.224.0', '217.76.239.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('217.76.240.0', '217.76.255.255', 2147483647, 2147483647, 'ES', 'Spain'), +('217.77.0.0', '217.77.15.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.77.16.0', '217.77.31.255', 2147483647, 2147483647, 'LT', 'Lithuania'), +('217.77.32.0', '217.77.47.255', 2147483647, 2147483647, 'NO', 'Norway'), +('217.77.48.0', '217.77.63.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.77.64.0', '217.77.79.255', 2147483647, 2147483647, 'GA', 'Gabon'), +('217.77.80.0', '217.77.95.255', 2147483647, 2147483647, 'IT', 'Italy'), +('217.77.96.0', '217.77.127.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.77.128.0', '217.77.159.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.160.0', '217.77.175.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('217.77.176.0', '217.77.191.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.77.192.0', '217.77.207.255', 2147483647, 2147483647, 'FI', 'Finland'), +('217.77.208.0', '217.77.223.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('217.77.224.0', '217.77.239.255', 2147483647, 2147483647, 'FR', 'France'), +('217.77.240.0', '217.77.240.1', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.240.2', '217.77.240.3', 2147483647, 2147483647, 'IT', 'Italy'), +('217.77.240.4', '217.77.240.4', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.240.5', '217.77.240.5', 2147483647, 2147483647, 'IE', 'Ireland'), +('217.77.240.6', '217.77.240.6', 2147483647, 2147483647, 'ES', 'Spain'), +('217.77.240.7', '217.77.240.7', 2147483647, 2147483647, 'IT', 'Italy'), +('217.77.240.8', '217.77.240.9', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.240.10', '217.77.240.10', 2147483647, 2147483647, 'CH', 'Switzerland'), +('217.77.240.11', '217.77.240.11', 2147483647, 2147483647, 'IT', 'Italy'), +('217.77.240.12', '217.77.240.13', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.240.14', '217.77.240.14', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.240.15', '217.77.240.16', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.240.17', '217.77.240.17', 2147483647, 2147483647, 'GR', 'Greece'), +('217.77.240.18', '217.77.240.19', 2147483647, 2147483647, 'FR', 'France'), +('217.77.240.20', '217.77.240.25', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.240.26', '217.77.240.26', 2147483647, 2147483647, 'PL', 'Poland'), +('217.77.240.27', '217.77.240.28', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.240.29', '217.77.240.29', 2147483647, 2147483647, 'HU', 'Hungary'), +('217.77.240.30', '217.77.240.30', 2147483647, 2147483647, 'CH', 'Switzerland'), +('217.77.240.31', '217.77.240.31', 2147483647, 2147483647, 'ES', 'Spain'), +('217.77.240.32', '217.77.240.32', 2147483647, 2147483647, 'FR', 'France'), +('217.77.240.33', '217.77.240.33', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.240.34', '217.77.240.34', 2147483647, 2147483647, 'ES', 'Spain'), +('217.77.240.35', '217.77.240.35', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.240.36', '217.77.240.36', 2147483647, 2147483647, 'FR', 'France'), +('217.77.240.37', '217.77.240.37', 2147483647, 2147483647, 'CH', 'Switzerland'), +('217.77.240.38', '217.77.240.38', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.77.240.39', '217.77.240.39', 2147483647, 2147483647, 'FR', 'France'), +('217.77.240.40', '217.77.240.40', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.240.41', '217.77.240.41', 2147483647, 2147483647, 'FR', 'France'), +('217.77.240.42', '217.77.240.42', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.240.43', '217.77.240.43', 2147483647, 2147483647, 'AT', 'Austria'), +('217.77.240.44', '217.77.240.45', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.240.46', '217.77.240.47', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.240.48', '217.77.240.49', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.77.240.50', '217.77.240.50', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.240.51', '217.77.240.51', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.240.52', '217.77.240.52', 2147483647, 2147483647, 'AT', 'Austria'), +('217.77.240.53', '217.77.240.53', 2147483647, 2147483647, 'FR', 'France'), +('217.77.240.54', '217.77.240.54', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.240.55', '217.77.240.55', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.240.56', '217.77.240.56', 2147483647, 2147483647, 'HU', 'Hungary'), +('217.77.240.57', '217.77.240.57', 2147483647, 2147483647, 'IT', 'Italy'), +('217.77.240.58', '217.77.240.58', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.77.240.59', '217.77.240.60', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.240.61', '217.77.240.61', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.240.62', '217.77.240.63', 2147483647, 2147483647, 'ES', 'Spain'), +('217.77.240.64', '217.77.240.64', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.240.65', '217.77.240.65', 2147483647, 2147483647, 'IL', 'Israel'), +('217.77.240.66', '217.77.240.66', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.240.67', '217.77.240.67', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.240.68', '217.77.240.69', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.240.70', '217.77.240.70', 2147483647, 2147483647, 'ES', 'Spain'), +('217.77.240.71', '217.77.240.76', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.240.77', '217.77.240.78', 2147483647, 2147483647, 'FR', 'France'), +('217.77.240.79', '217.77.240.79', 2147483647, 2147483647, 'HU', 'Hungary'), +('217.77.240.80', '217.77.240.81', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.240.82', '217.77.240.82', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.240.83', '217.77.240.83', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.240.84', '217.77.240.84', 2147483647, 2147483647, 'IT', 'Italy'), +('217.77.240.85', '217.77.240.85', 2147483647, 2147483647, 'DK', 'Denmark'), +('217.77.240.86', '217.77.240.86', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.240.87', '217.77.240.87', 2147483647, 2147483647, 'FR', 'France'), +('217.77.240.88', '217.77.240.88', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.240.89', '217.77.240.89', 2147483647, 2147483647, 'BE', 'Belgium'), +('217.77.240.90', '217.77.240.90', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.240.91', '217.77.240.91', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.240.92', '217.77.240.92', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.240.93', '217.77.240.94', 2147483647, 2147483647, 'HU', 'Hungary'), +('217.77.240.95', '217.77.240.95', 2147483647, 2147483647, 'IT', 'Italy'), +('217.77.240.96', '217.77.240.96', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.240.97', '217.77.240.97', 2147483647, 2147483647, 'CH', 'Switzerland'), +('217.77.240.98', '217.77.240.98', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.240.99', '217.77.240.99', 2147483647, 2147483647, 'NO', 'Norway'), +('217.77.240.100', '217.77.240.100', 2147483647, 2147483647, 'CH', 'Switzerland'), +('217.77.240.101', '217.77.240.101', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.240.102', '217.77.240.102', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.240.103', '217.77.240.103', 2147483647, 2147483647, 'ES', 'Spain'), +('217.77.240.104', '217.77.240.106', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.240.107', '217.77.240.107', 2147483647, 2147483647, 'CH', 'Switzerland'), +('217.77.240.108', '217.77.240.108', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.240.109', '217.77.240.109', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.240.110', '217.77.240.110', 2147483647, 2147483647, 'IE', 'Ireland'), +('217.77.240.111', '217.77.240.112', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.240.113', '217.77.240.113', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.240.114', '217.77.240.114', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('217.77.240.115', '217.77.240.115', 2147483647, 2147483647, 'BE', 'Belgium'), +('217.77.240.116', '217.77.240.116', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.240.117', '217.77.240.117', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.240.118', '217.77.240.118', 2147483647, 2147483647, 'IT', 'Italy'), +('217.77.240.119', '217.77.240.119', 2147483647, 2147483647, 'CH', 'Switzerland'), +('217.77.240.120', '217.77.240.121', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.240.122', '217.77.240.122', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.77.240.123', '217.77.240.123', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.240.124', '217.77.240.124', 2147483647, 2147483647, 'GR', 'Greece'), +('217.77.240.125', '217.77.240.125', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.240.126', '217.77.240.126', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.77.240.127', '217.77.240.131', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.240.132', '217.77.240.132', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.240.133', '217.77.240.133', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.240.134', '217.77.240.134', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.240.135', '217.77.240.135', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.240.136', '217.77.240.136', 2147483647, 2147483647, 'IT', 'Italy'), +('217.77.240.137', '217.77.240.137', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.240.138', '217.77.240.138', 2147483647, 2147483647, 'GR', 'Greece'), +('217.77.240.139', '217.77.240.139', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.240.140', '217.77.240.142', 2147483647, 2147483647, 'IT', 'Italy'), +('217.77.240.143', '217.77.240.143', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.240.144', '217.77.240.144', 2147483647, 2147483647, 'GR', 'Greece'), +('217.77.240.145', '217.77.240.146', 2147483647, 2147483647, 'IT', 'Italy'), +('217.77.240.147', '217.77.240.148', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.240.149', '217.77.240.149', 2147483647, 2147483647, 'FR', 'France'), +('217.77.240.150', '217.77.240.150', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.240.151', '217.77.240.151', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.77.240.152', '217.77.240.152', 2147483647, 2147483647, 'FR', 'France'), +('217.77.240.153', '217.77.240.153', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.240.154', '217.77.240.154', 2147483647, 2147483647, 'CH', 'Switzerland'), +('217.77.240.155', '217.77.240.157', 2147483647, 2147483647, 'ES', 'Spain'), +('217.77.240.158', '217.77.240.158', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.240.159', '217.77.240.159', 2147483647, 2147483647, 'IT', 'Italy'), +('217.77.240.160', '217.77.240.160', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.240.161', '217.77.240.161', 2147483647, 2147483647, 'FR', 'France'), +('217.77.240.162', '217.77.240.162', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.240.163', '217.77.240.168', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.240.169', '217.77.240.169', 2147483647, 2147483647, 'ES', 'Spain'), +('217.77.240.170', '217.77.240.171', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.240.172', '217.77.240.172', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.240.173', '217.77.240.173', 2147483647, 2147483647, 'BE', 'Belgium'), +('217.77.240.174', '217.77.240.174', 2147483647, 2147483647, 'FR', 'France'), +('217.77.240.175', '217.77.240.176', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.240.177', '217.77.240.177', 2147483647, 2147483647, 'SE', 'Sweden'), +('217.77.240.178', '217.77.240.178', 2147483647, 2147483647, 'ES', 'Spain'), +('217.77.240.179', '217.77.240.180', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.240.181', '217.77.240.181', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.240.182', '217.77.240.182', 2147483647, 2147483647, 'IL', 'Israel'), +('217.77.240.183', '217.77.240.184', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.240.185', '217.77.240.185', 2147483647, 2147483647, 'FR', 'France'), +('217.77.240.186', '217.77.240.186', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.240.187', '217.77.240.187', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.77.240.188', '217.77.240.188', 2147483647, 2147483647, 'CH', 'Switzerland'), +('217.77.240.189', '217.77.240.189', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.240.190', '217.77.240.190', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.240.191', '217.77.240.191', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.240.192', '217.77.240.192', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.240.193', '217.77.240.193', 2147483647, 2147483647, 'BE', 'Belgium'), +('217.77.240.194', '217.77.240.195', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.240.196', '217.77.240.196', 2147483647, 2147483647, 'CH', 'Switzerland'), +('217.77.240.197', '217.77.240.197', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.240.198', '217.77.240.198', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.240.199', '217.77.240.199', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.240.200', '217.77.240.200', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.240.201', '217.77.240.201', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.240.202', '217.77.240.202', 2147483647, 2147483647, 'CH', 'Switzerland'), +('217.77.240.203', '217.77.240.203', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.240.204', '217.77.240.204', 2147483647, 2147483647, 'IE', 'Ireland'), +('217.77.240.205', '217.77.240.205', 2147483647, 2147483647, 'AT', 'Austria'), +('217.77.240.206', '217.77.240.206', 2147483647, 2147483647, 'ES', 'Spain'), +('217.77.240.207', '217.77.240.207', 2147483647, 2147483647, 'IT', 'Italy'), +('217.77.240.208', '217.77.240.208', 2147483647, 2147483647, 'FR', 'France'), +('217.77.240.209', '217.77.240.209', 2147483647, 2147483647, 'ES', 'Spain'), +('217.77.240.210', '217.77.240.210', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.240.211', '217.77.240.211', 2147483647, 2147483647, 'IT', 'Italy'), +('217.77.240.212', '217.77.240.212', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.77.240.213', '217.77.240.213', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.240.214', '217.77.240.214', 2147483647, 2147483647, 'FR', 'France'), +('217.77.240.215', '217.77.240.217', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.240.218', '217.77.240.218', 2147483647, 2147483647, 'ES', 'Spain'), +('217.77.240.219', '217.77.240.219', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.240.220', '217.77.240.222', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.240.223', '217.77.240.223', 2147483647, 2147483647, 'IT', 'Italy'), +('217.77.240.224', '217.77.240.224', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.240.225', '217.77.240.225', 2147483647, 2147483647, 'IT', 'Italy'), +('217.77.240.226', '217.77.240.226', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.240.227', '217.77.240.229', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.240.230', '217.77.240.230', 2147483647, 2147483647, 'IT', 'Italy'), +('217.77.240.231', '217.77.240.232', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.240.233', '217.77.240.233', 2147483647, 2147483647, 'GR', 'Greece'), +('217.77.240.234', '217.77.240.234', 2147483647, 2147483647, 'ES', 'Spain'), +('217.77.240.235', '217.77.240.238', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.240.239', '217.77.240.239', 2147483647, 2147483647, 'ES', 'Spain'), +('217.77.240.240', '217.77.240.241', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.240.242', '217.77.240.242', 2147483647, 2147483647, 'IT', 'Italy'), +('217.77.240.243', '217.77.240.243', 2147483647, 2147483647, 'ZA', 'South Africa'), +('217.77.240.244', '217.77.241.1', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.241.2', '217.77.241.2', 2147483647, 2147483647, 'CH', 'Switzerland'), +('217.77.241.3', '217.77.241.5', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.241.6', '217.77.241.6', 2147483647, 2147483647, 'FR', 'France'), +('217.77.241.7', '217.77.241.7', 2147483647, 2147483647, 'IT', 'Italy'), +('217.77.241.8', '217.77.241.9', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.241.10', '217.77.241.10', 2147483647, 2147483647, 'IT', 'Italy'), +('217.77.241.11', '217.77.241.11', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.77.241.12', '217.77.241.12', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.241.13', '217.77.241.13', 2147483647, 2147483647, 'CH', 'Switzerland'), +('217.77.241.14', '217.77.241.15', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.241.16', '217.77.241.18', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.241.19', '217.77.241.19', 2147483647, 2147483647, 'DK', 'Denmark'), +('217.77.241.20', '217.77.241.20', 2147483647, 2147483647, 'IT', 'Italy'), +('217.77.241.21', '217.77.241.21', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.241.22', '217.77.241.22', 2147483647, 2147483647, 'FR', 'France'), +('217.77.241.23', '217.77.241.24', 2147483647, 2147483647, 'ES', 'Spain'), +('217.77.241.25', '217.77.241.25', 2147483647, 2147483647, 'CH', 'Switzerland'), +('217.77.241.26', '217.77.241.26', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.241.27', '217.77.241.28', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.77.241.29', '217.77.241.29', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.241.30', '217.77.241.30', 2147483647, 2147483647, 'HU', 'Hungary'), +('217.77.241.31', '217.77.241.34', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.241.35', '217.77.241.35', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.77.241.36', '217.77.241.36', 2147483647, 2147483647, 'PL', 'Poland'), +('217.77.241.37', '217.77.241.37', 2147483647, 2147483647, 'FR', 'France'), +('217.77.241.38', '217.77.241.39', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.241.40', '217.77.241.41', 2147483647, 2147483647, 'FR', 'France'), +('217.77.241.42', '217.77.241.42', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.241.43', '217.77.241.43', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.241.44', '217.77.241.44', 2147483647, 2147483647, 'IT', 'Italy'), +('217.77.241.45', '217.77.241.46', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.241.47', '217.77.241.47', 2147483647, 2147483647, 'FR', 'France'), +('217.77.241.48', '217.77.241.48', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.241.49', '217.77.241.49', 2147483647, 2147483647, 'GR', 'Greece'), +('217.77.241.50', '217.77.241.50', 2147483647, 2147483647, 'ES', 'Spain'), +('217.77.241.51', '217.77.241.54', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.241.55', '217.77.241.55', 2147483647, 2147483647, 'ES', 'Spain'), +('217.77.241.56', '217.77.241.56', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.241.57', '217.77.241.57', 2147483647, 2147483647, 'BE', 'Belgium'), +('217.77.241.58', '217.77.241.58', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.241.59', '217.77.241.59', 2147483647, 2147483647, 'ES', 'Spain'), +('217.77.241.60', '217.77.241.60', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.241.61', '217.77.241.62', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('217.77.241.63', '217.77.241.63', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.241.64', '217.77.241.64', 2147483647, 2147483647, 'BE', 'Belgium'), +('217.77.241.65', '217.77.241.65', 2147483647, 2147483647, 'RS', 'Serbia'), +('217.77.241.66', '217.77.241.66', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.241.67', '217.77.241.68', 2147483647, 2147483647, 'IT', 'Italy'), +('217.77.241.69', '217.77.241.69', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.241.70', '217.77.241.70', 2147483647, 2147483647, 'ES', 'Spain'), +('217.77.241.71', '217.77.241.71', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.241.72', '217.77.241.72', 2147483647, 2147483647, 'IE', 'Ireland'), +('217.77.241.73', '217.77.241.73', 2147483647, 2147483647, 'PT', 'Portugal'), +('217.77.241.74', '217.77.241.74', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.241.75', '217.77.241.75', 2147483647, 2147483647, 'IL', 'Israel'), +('217.77.241.76', '217.77.241.76', 2147483647, 2147483647, 'BE', 'Belgium'), +('217.77.241.77', '217.77.241.78', 2147483647, 2147483647, 'IT', 'Italy'), +('217.77.241.79', '217.77.241.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.77.241.80', '217.77.241.80', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.241.81', '217.77.241.81', 2147483647, 2147483647, 'CH', 'Switzerland'), +('217.77.241.82', '217.77.241.82', 2147483647, 2147483647, 'ES', 'Spain'), +('217.77.241.83', '217.77.241.83', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.77.241.84', '217.77.241.84', 2147483647, 2147483647, 'PL', 'Poland'), +('217.77.241.85', '217.77.241.86', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.241.87', '217.77.241.87', 2147483647, 2147483647, 'HU', 'Hungary'), +('217.77.241.88', '217.77.241.88', 2147483647, 2147483647, 'FR', 'France'), +('217.77.241.89', '217.77.241.89', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.241.90', '217.77.241.90', 2147483647, 2147483647, 'ES', 'Spain'), +('217.77.241.91', '217.77.241.91', 2147483647, 2147483647, 'FR', 'France'), +('217.77.241.92', '217.77.241.92', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.241.93', '217.77.241.93', 2147483647, 2147483647, 'FR', 'France'), +('217.77.241.94', '217.77.241.94', 2147483647, 2147483647, 'IT', 'Italy'), +('217.77.241.95', '217.77.241.95', 2147483647, 2147483647, 'FR', 'France'), +('217.77.241.96', '217.77.241.96', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.241.97', '217.77.241.97', 2147483647, 2147483647, 'FR', 'France'), +('217.77.241.98', '217.77.241.98', 2147483647, 2147483647, 'ES', 'Spain'), +('217.77.241.99', '217.77.241.99', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.241.100', '217.77.241.101', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.241.102', '217.77.241.102', 2147483647, 2147483647, 'CH', 'Switzerland'), +('217.77.241.103', '217.77.241.103', 2147483647, 2147483647, 'ES', 'Spain'), +('217.77.241.104', '217.77.241.104', 2147483647, 2147483647, 'CH', 'Switzerland'), +('217.77.241.105', '217.77.241.105', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.241.106', '217.77.241.107', 2147483647, 2147483647, 'HU', 'Hungary'), +('217.77.241.108', '217.77.241.109', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.241.110', '217.77.241.110', 2147483647, 2147483647, 'ES', 'Spain'), +('217.77.241.111', '217.77.241.111', 2147483647, 2147483647, 'CH', 'Switzerland'), +('217.77.241.112', '217.77.241.112', 2147483647, 2147483647, 'IT', 'Italy'), +('217.77.241.113', '217.77.241.113', 2147483647, 2147483647, 'TR', 'Turkey'), +('217.77.241.114', '217.77.241.114', 2147483647, 2147483647, 'IT', 'Italy'), +('217.77.241.115', '217.77.241.115', 2147483647, 2147483647, 'FR', 'France'), +('217.77.241.116', '217.77.241.116', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.241.117', '217.77.241.117', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.77.241.118', '217.77.241.118', 2147483647, 2147483647, 'AT', 'Austria'), +('217.77.241.119', '217.77.241.119', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.241.120', '217.77.241.120', 2147483647, 2147483647, 'IT', 'Italy'), +('217.77.241.121', '217.77.241.121', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.241.122', '217.77.241.122', 2147483647, 2147483647, 'ES', 'Spain'), +('217.77.241.123', '217.77.241.124', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.241.125', '217.77.241.125', 2147483647, 2147483647, 'AT', 'Austria'), +('217.77.241.126', '217.77.241.126', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.241.127', '217.77.241.127', 2147483647, 2147483647, 'IT', 'Italy'), +('217.77.241.128', '217.77.241.128', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.241.129', '217.77.241.129', 2147483647, 2147483647, 'ES', 'Spain'), +('217.77.241.130', '217.77.241.130', 2147483647, 2147483647, 'IT', 'Italy'), +('217.77.241.131', '217.77.241.131', 2147483647, 2147483647, 'ES', 'Spain'), +('217.77.241.132', '217.77.241.132', 2147483647, 2147483647, 'IT', 'Italy'), +('217.77.241.133', '217.77.241.133', 2147483647, 2147483647, 'BE', 'Belgium'), +('217.77.241.134', '217.77.241.134', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.77.241.135', '217.77.241.135', 2147483647, 2147483647, 'AT', 'Austria'), +('217.77.241.136', '217.77.241.136', 2147483647, 2147483647, 'IT', 'Italy'), +('217.77.241.137', '217.77.241.137', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.241.138', '217.77.241.138', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.241.139', '217.77.241.139', 2147483647, 2147483647, 'IT', 'Italy'), +('217.77.241.140', '217.77.241.141', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.241.142', '217.77.241.142', 2147483647, 2147483647, 'IT', 'Italy'), +('217.77.241.143', '217.77.241.144', 2147483647, 2147483647, 'FR', 'France'), +('217.77.241.145', '217.77.241.145', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.241.146', '217.77.241.146', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.241.147', '217.77.241.147', 2147483647, 2147483647, 'PL', 'Poland'), +('217.77.241.148', '217.77.241.148', 2147483647, 2147483647, 'CH', 'Switzerland'), +('217.77.241.149', '217.77.241.149', 2147483647, 2147483647, 'FR', 'France'), +('217.77.241.150', '217.77.241.151', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.241.152', '217.77.241.152', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.241.153', '217.77.241.153', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.241.154', '217.77.241.154', 2147483647, 2147483647, 'IT', 'Italy'), +('217.77.241.155', '217.77.241.155', 2147483647, 2147483647, 'ES', 'Spain'), +('217.77.241.156', '217.77.241.160', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.241.161', '217.77.241.161', 2147483647, 2147483647, 'IT', 'Italy'), +('217.77.241.162', '217.77.241.167', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.241.168', '217.77.241.168', 2147483647, 2147483647, 'PL', 'Poland'), +('217.77.241.169', '217.77.241.170', 2147483647, 2147483647, 'FR', 'France'), +('217.77.241.171', '217.77.241.172', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.241.173', '217.77.241.173', 2147483647, 2147483647, 'HU', 'Hungary'), +('217.77.241.174', '217.77.241.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.77.241.176', '217.77.241.176', 2147483647, 2147483647, 'IT', 'Italy'), +('217.77.241.177', '217.77.241.177', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.77.241.178', '217.77.241.178', 2147483647, 2147483647, 'ES', 'Spain'), +('217.77.241.179', '217.77.241.179', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.241.180', '217.77.241.180', 2147483647, 2147483647, 'IT', 'Italy'), +('217.77.241.181', '217.77.241.181', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.241.182', '217.77.241.182', 2147483647, 2147483647, 'ES', 'Spain'), +('217.77.241.183', '217.77.241.183', 2147483647, 2147483647, 'FR', 'France'), +('217.77.241.184', '217.77.241.186', 2147483647, 2147483647, 'ES', 'Spain'), +('217.77.241.187', '217.77.241.187', 2147483647, 2147483647, 'HU', 'Hungary'), +('217.77.241.188', '217.77.241.188', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.241.189', '217.77.241.189', 2147483647, 2147483647, 'ES', 'Spain'), +('217.77.241.190', '217.77.241.190', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.241.191', '217.77.241.191', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.241.192', '217.77.241.192', 2147483647, 2147483647, 'FR', 'France'), +('217.77.241.193', '217.77.241.193', 2147483647, 2147483647, 'ES', 'Spain'), +('217.77.241.194', '217.77.241.194', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.241.195', '217.77.241.195', 2147483647, 2147483647, 'IT', 'Italy'), +('217.77.241.196', '217.77.241.197', 2147483647, 2147483647, 'ES', 'Spain'), +('217.77.241.198', '217.77.241.198', 2147483647, 2147483647, 'IT', 'Italy'), +('217.77.241.199', '217.77.241.199', 2147483647, 2147483647, 'HU', 'Hungary'), +('217.77.241.200', '217.77.241.200', 2147483647, 2147483647, 'ES', 'Spain'), +('217.77.241.201', '217.77.241.201', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.241.202', '217.77.241.202', 2147483647, 2147483647, 'CH', 'Switzerland'), +('217.77.241.203', '217.77.241.203', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.241.204', '217.77.241.204', 2147483647, 2147483647, 'ES', 'Spain'), +('217.77.241.205', '217.77.241.205', 2147483647, 2147483647, 'AE', 'United Arab Emirates'), +('217.77.241.206', '217.77.241.206', 2147483647, 2147483647, 'ES', 'Spain'), +('217.77.241.207', '217.77.241.207', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.241.208', '217.77.241.208', 2147483647, 2147483647, 'BE', 'Belgium'), +('217.77.241.209', '217.77.241.209', 2147483647, 2147483647, 'ES', 'Spain'), +('217.77.241.210', '217.77.241.211', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.241.212', '217.77.241.212', 2147483647, 2147483647, 'FR', 'France'), +('217.77.241.213', '217.77.241.215', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.241.216', '217.77.241.216', 2147483647, 2147483647, 'BE', 'Belgium'), +('217.77.241.217', '217.77.241.217', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.241.218', '217.77.241.218', 2147483647, 2147483647, 'TR', 'Turkey'), +('217.77.241.219', '217.77.241.219', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.241.220', '217.77.241.220', 2147483647, 2147483647, 'FR', 'France'), +('217.77.241.221', '217.77.241.221', 2147483647, 2147483647, 'IT', 'Italy'), +('217.77.241.222', '217.77.241.222', 2147483647, 2147483647, 'SE', 'Sweden'), +('217.77.241.223', '217.77.241.223', 2147483647, 2147483647, 'AT', 'Austria'), +('217.77.241.224', '217.77.241.224', 2147483647, 2147483647, 'SI', 'Slovenia'), +('217.77.241.225', '217.77.241.225', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.241.226', '217.77.241.226', 2147483647, 2147483647, 'IT', 'Italy'), +('217.77.241.227', '217.77.241.227', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.241.228', '217.77.241.228', 2147483647, 2147483647, 'IT', 'Italy'), +('217.77.241.229', '217.77.241.229', 2147483647, 2147483647, 'CH', 'Switzerland'), +('217.77.241.230', '217.77.241.230', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.77.241.231', '217.77.241.234', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.241.235', '217.77.241.235', 2147483647, 2147483647, 'SE', 'Sweden'), +('217.77.241.236', '217.77.241.236', 2147483647, 2147483647, 'GR', 'Greece'), +('217.77.241.237', '217.77.241.238', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.241.239', '217.77.241.239', 2147483647, 2147483647, 'ES', 'Spain'), +('217.77.241.240', '217.77.241.240', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.241.241', '217.77.241.241', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.77.241.242', '217.77.241.244', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.241.245', '217.77.241.245', 2147483647, 2147483647, 'IE', 'Ireland'), +('217.77.241.246', '217.77.241.246', 2147483647, 2147483647, 'IT', 'Italy'), +('217.77.241.247', '217.77.241.247', 2147483647, 2147483647, 'CH', 'Switzerland'), +('217.77.241.248', '217.77.241.253', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.241.254', '217.77.241.254', 2147483647, 2147483647, 'IT', 'Italy'), +('217.77.241.255', '217.77.242.1', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.242.2', '217.77.242.2', 2147483647, 2147483647, 'IT', 'Italy'), +('217.77.242.3', '217.77.242.3', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.242.4', '217.77.242.4', 2147483647, 2147483647, 'BE', 'Belgium'), +('217.77.242.5', '217.77.242.6', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.242.7', '217.77.242.7', 2147483647, 2147483647, 'SK', 'Slovakia'), +('217.77.242.8', '217.77.242.9', 2147483647, 2147483647, 'IT', 'Italy'), +('217.77.242.10', '217.77.242.10', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.242.11', '217.77.242.11', 2147483647, 2147483647, 'GR', 'Greece'), +('217.77.242.12', '217.77.242.12', 2147483647, 2147483647, 'PL', 'Poland'), +('217.77.242.13', '217.77.242.13', 2147483647, 2147483647, 'CH', 'Switzerland'), +('217.77.242.14', '217.77.242.14', 2147483647, 2147483647, 'DK', 'Denmark'), +('217.77.242.15', '217.77.242.15', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.242.16', '217.77.242.16', 2147483647, 2147483647, 'IT', 'Italy'), +('217.77.242.17', '217.77.242.18', 2147483647, 2147483647, 'ES', 'Spain'), +('217.77.242.19', '217.77.242.19', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.77.242.20', '217.77.242.20', 2147483647, 2147483647, 'GR', 'Greece'), +('217.77.242.21', '217.77.242.21', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.242.22', '217.77.242.22', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.77.242.23', '217.77.242.23', 2147483647, 2147483647, 'CH', 'Switzerland'), +('217.77.242.24', '217.77.242.24', 2147483647, 2147483647, 'FR', 'France'), +('217.77.242.25', '217.77.242.25', 2147483647, 2147483647, 'IT', 'Italy'), +('217.77.242.26', '217.77.242.26', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.242.27', '217.77.242.27', 2147483647, 2147483647, 'PL', 'Poland'), +('217.77.242.28', '217.77.242.28', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.242.29', '217.77.242.29', 2147483647, 2147483647, 'NO', 'Norway'), +('217.77.242.30', '217.77.242.30', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('217.77.242.31', '217.77.242.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.77.242.32', '217.77.242.32', 2147483647, 2147483647, 'GR', 'Greece'), +('217.77.242.33', '217.77.242.33', 2147483647, 2147483647, 'HR', 'Croatia'), +('217.77.242.34', '217.77.242.34', 2147483647, 2147483647, 'FR', 'France'), +('217.77.242.35', '217.77.242.35', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.242.36', '217.77.242.36', 2147483647, 2147483647, 'ES', 'Spain'), +('217.77.242.37', '217.77.242.37', 2147483647, 2147483647, 'CY', 'Cyprus'), +('217.77.242.38', '217.77.242.38', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.242.39', '217.77.242.39', 2147483647, 2147483647, 'IT', 'Italy'), +('217.77.242.40', '217.77.242.40', 2147483647, 2147483647, 'BE', 'Belgium'), +('217.77.242.41', '217.77.242.41', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.242.42', '217.77.242.42', 2147483647, 2147483647, 'CH', 'Switzerland'), +('217.77.242.43', '217.77.242.43', 2147483647, 2147483647, 'PL', 'Poland'), +('217.77.242.44', '217.77.242.44', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.242.45', '217.77.242.45', 2147483647, 2147483647, 'ES', 'Spain'), +('217.77.242.46', '217.77.242.46', 2147483647, 2147483647, 'HU', 'Hungary'), +('217.77.242.47', '217.77.242.49', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.242.50', '217.77.242.51', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.242.52', '217.77.242.52', 2147483647, 2147483647, 'DK', 'Denmark'), +('217.77.242.53', '217.77.242.53', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.242.54', '217.77.242.54', 2147483647, 2147483647, 'ES', 'Spain'), +('217.77.242.55', '217.77.242.58', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.242.59', '217.77.242.59', 2147483647, 2147483647, 'ES', 'Spain'), +('217.77.242.60', '217.77.242.60', 2147483647, 2147483647, 'AT', 'Austria'), +('217.77.242.61', '217.77.242.62', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.242.63', '217.77.242.63', 2147483647, 2147483647, 'IT', 'Italy'), +('217.77.242.64', '217.77.242.64', 2147483647, 2147483647, 'BE', 'Belgium'), +('217.77.242.65', '217.77.242.65', 2147483647, 2147483647, 'ES', 'Spain'), +('217.77.242.66', '217.77.242.66', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.242.67', '217.77.242.67', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.242.68', '217.77.242.68', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.242.69', '217.77.242.69', 2147483647, 2147483647, 'CH', 'Switzerland'), +('217.77.242.70', '217.77.242.70', 2147483647, 2147483647, 'HU', 'Hungary'), +('217.77.242.71', '217.77.242.71', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.242.72', '217.77.242.72', 2147483647, 2147483647, 'ES', 'Spain'), +('217.77.242.73', '217.77.242.73', 2147483647, 2147483647, 'GR', 'Greece'), +('217.77.242.74', '217.77.242.74', 2147483647, 2147483647, 'IT', 'Italy'), +('217.77.242.75', '217.77.242.76', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.242.77', '217.77.242.77', 2147483647, 2147483647, 'IT', 'Italy'), +('217.77.242.78', '217.77.242.78', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.242.79', '217.77.242.79', 2147483647, 2147483647, 'PL', 'Poland'), +('217.77.242.80', '217.77.242.80', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.242.81', '217.77.242.81', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.77.242.82', '217.77.242.82', 2147483647, 2147483647, 'ES', 'Spain'), +('217.77.242.83', '217.77.242.83', 2147483647, 2147483647, 'GR', 'Greece'), +('217.77.242.84', '217.77.242.85', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.242.86', '217.77.242.86', 2147483647, 2147483647, 'FR', 'France'), +('217.77.242.87', '217.77.242.88', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.242.89', '217.77.242.89', 2147483647, 2147483647, 'IT', 'Italy'), +('217.77.242.90', '217.77.242.90', 2147483647, 2147483647, 'FR', 'France'), +('217.77.242.91', '217.77.242.91', 2147483647, 2147483647, 'BE', 'Belgium'), +('217.77.242.92', '217.77.242.92', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.77.242.93', '217.77.242.93', 2147483647, 2147483647, 'FR', 'France'), +('217.77.242.94', '217.77.242.94', 2147483647, 2147483647, 'IT', 'Italy'), +('217.77.242.95', '217.77.242.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.77.242.96', '217.77.242.96', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.242.97', '217.77.242.98', 2147483647, 2147483647, 'ES', 'Spain'), +('217.77.242.99', '217.77.242.99', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.242.100', '217.77.242.100', 2147483647, 2147483647, 'IT', 'Italy'), +('217.77.242.101', '217.77.242.101', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.242.102', '217.77.242.102', 2147483647, 2147483647, 'GR', 'Greece'), +('217.77.242.103', '217.77.242.103', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.242.104', '217.77.242.104', 2147483647, 2147483647, 'IT', 'Italy'), +('217.77.242.105', '217.77.242.105', 2147483647, 2147483647, 'BE', 'Belgium'), +('217.77.242.106', '217.77.242.106', 2147483647, 2147483647, 'IT', 'Italy'), +('217.77.242.107', '217.77.242.107', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.242.108', '217.77.242.108', 2147483647, 2147483647, 'ES', 'Spain'), +('217.77.242.109', '217.77.242.109', 2147483647, 2147483647, 'FR', 'France'), +('217.77.242.110', '217.77.242.110', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.242.111', '217.77.242.111', 2147483647, 2147483647, 'IT', 'Italy'), +('217.77.242.112', '217.77.242.112', 2147483647, 2147483647, 'NO', 'Norway'), +('217.77.242.113', '217.77.242.114', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.242.115', '217.77.242.115', 2147483647, 2147483647, 'FR', 'France'), +('217.77.242.116', '217.77.242.116', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.242.117', '217.77.242.117', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.77.242.118', '217.77.242.118', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.242.119', '217.77.242.120', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.242.121', '217.77.242.121', 2147483647, 2147483647, 'IT', 'Italy'), +('217.77.242.122', '217.77.242.122', 2147483647, 2147483647, 'CH', 'Switzerland'), +('217.77.242.123', '217.77.242.123', 2147483647, 2147483647, 'FR', 'France'), +('217.77.242.124', '217.77.242.124', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.242.125', '217.77.242.125', 2147483647, 2147483647, 'IT', 'Italy'), +('217.77.242.126', '217.77.242.126', 2147483647, 2147483647, 'BE', 'Belgium'), +('217.77.242.127', '217.77.242.128', 2147483647, 2147483647, 'ES', 'Spain'), +('217.77.242.129', '217.77.242.130', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.77.242.131', '217.77.242.131', 2147483647, 2147483647, 'CH', 'Switzerland'), +('217.77.242.132', '217.77.242.132', 2147483647, 2147483647, 'FR', 'France'), +('217.77.242.133', '217.77.242.133', 2147483647, 2147483647, 'PL', 'Poland'), +('217.77.242.134', '217.77.242.134', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.242.135', '217.77.242.135', 2147483647, 2147483647, 'CH', 'Switzerland'), +('217.77.242.136', '217.77.242.136', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.242.137', '217.77.242.137', 2147483647, 2147483647, 'IT', 'Italy'), +('217.77.242.138', '217.77.242.138', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.242.139', '217.77.242.139', 2147483647, 2147483647, 'FR', 'France'), +('217.77.242.140', '217.77.242.140', 2147483647, 2147483647, 'IT', 'Italy'), +('217.77.242.141', '217.77.242.142', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.242.143', '217.77.242.144', 2147483647, 2147483647, 'ES', 'Spain'), +('217.77.242.145', '217.77.242.145', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.242.146', '217.77.242.146', 2147483647, 2147483647, 'AT', 'Austria'), +('217.77.242.147', '217.77.242.147', 2147483647, 2147483647, 'GR', 'Greece'), +('217.77.242.148', '217.77.242.148', 2147483647, 2147483647, 'FR', 'France'), +('217.77.242.149', '217.77.242.150', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.242.151', '217.77.242.151', 2147483647, 2147483647, 'IT', 'Italy'), +('217.77.242.152', '217.77.242.153', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.242.154', '217.77.242.154', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.77.242.155', '217.77.242.155', 2147483647, 2147483647, 'FR', 'France'), +('217.77.242.156', '217.77.242.157', 2147483647, 2147483647, 'ES', 'Spain'), +('217.77.242.158', '217.77.242.158', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.242.159', '217.77.242.159', 2147483647, 2147483647, 'CH', 'Switzerland'), +('217.77.242.160', '217.77.242.161', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.242.162', '217.77.242.162', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.242.163', '217.77.242.163', 2147483647, 2147483647, 'IT', 'Italy'), +('217.77.242.164', '217.77.242.164', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.242.165', '217.77.242.165', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.77.242.166', '217.77.242.166', 2147483647, 2147483647, 'BE', 'Belgium'), +('217.77.242.167', '217.77.242.168', 2147483647, 2147483647, 'IT', 'Italy'), +('217.77.242.169', '217.77.242.169', 2147483647, 2147483647, 'TR', 'Turkey'), +('217.77.242.170', '217.77.242.170', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.242.171', '217.77.242.172', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.242.173', '217.77.242.174', 2147483647, 2147483647, 'ES', 'Spain'), +('217.77.242.175', '217.77.242.175', 2147483647, 2147483647, 'IT', 'Italy'), +('217.77.242.176', '217.77.242.176', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.242.177', '217.77.242.177', 2147483647, 2147483647, 'IT', 'Italy'), +('217.77.242.178', '217.77.242.178', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.242.179', '217.77.242.179', 2147483647, 2147483647, 'FR', 'France'), +('217.77.242.180', '217.77.242.181', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.242.182', '217.77.242.182', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.242.183', '217.77.242.183', 2147483647, 2147483647, 'ES', 'Spain'), +('217.77.242.184', '217.77.242.184', 2147483647, 2147483647, 'IT', 'Italy'), +('217.77.242.185', '217.77.242.185', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.242.186', '217.77.242.186', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.242.187', '217.77.242.188', 2147483647, 2147483647, 'FR', 'France'), +('217.77.242.189', '217.77.242.189', 2147483647, 2147483647, 'IT', 'Italy'), +('217.77.242.190', '217.77.242.190', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.242.191', '217.77.242.191', 2147483647, 2147483647, 'BE', 'Belgium'), +('217.77.242.192', '217.77.242.192', 2147483647, 2147483647, 'FR', 'France'), +('217.77.242.193', '217.77.242.193', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.242.194', '217.77.242.194', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.242.195', '217.77.242.195', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.242.196', '217.77.242.196', 2147483647, 2147483647, 'FR', 'France'), +('217.77.242.197', '217.77.242.198', 2147483647, 2147483647, 'IT', 'Italy'), +('217.77.242.199', '217.77.242.199', 2147483647, 2147483647, 'ES', 'Spain'), +('217.77.242.200', '217.77.242.201', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.242.202', '217.77.242.202', 2147483647, 2147483647, 'GR', 'Greece'), +('217.77.242.203', '217.77.242.203', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.242.204', '217.77.242.204', 2147483647, 2147483647, 'PL', 'Poland'), +('217.77.242.205', '217.77.242.205', 2147483647, 2147483647, 'GR', 'Greece'), +('217.77.242.206', '217.77.242.206', 2147483647, 2147483647, 'IT', 'Italy'), +('217.77.242.207', '217.77.242.207', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.242.208', '217.77.242.208', 2147483647, 2147483647, 'ES', 'Spain'), +('217.77.242.209', '217.77.242.209', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.77.242.210', '217.77.242.210', 2147483647, 2147483647, 'BM', 'Bermuda'), +('217.77.242.211', '217.77.242.211', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.242.212', '217.77.242.212', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.242.213', '217.77.242.213', 2147483647, 2147483647, 'CH', 'Switzerland'), +('217.77.242.214', '217.77.242.214', 2147483647, 2147483647, 'ZA', 'South Africa'), +('217.77.242.215', '217.77.242.217', 2147483647, 2147483647, 'ES', 'Spain'), +('217.77.242.218', '217.77.242.219', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.242.220', '217.77.242.220', 2147483647, 2147483647, 'IT', 'Italy'), +('217.77.242.221', '217.77.242.221', 2147483647, 2147483647, 'ES', 'Spain'), +('217.77.242.222', '217.77.242.222', 2147483647, 2147483647, 'HU', 'Hungary'), +('217.77.242.223', '217.77.242.223', 2147483647, 2147483647, 'FR', 'France'), +('217.77.242.224', '217.77.242.224', 2147483647, 2147483647, 'IT', 'Italy'), +('217.77.242.225', '217.77.242.225', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.242.226', '217.77.242.226', 2147483647, 2147483647, 'CH', 'Switzerland'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('217.77.242.227', '217.77.242.227', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.242.228', '217.77.242.228', 2147483647, 2147483647, 'FR', 'France'), +('217.77.242.229', '217.77.242.229', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.242.230', '217.77.242.230', 2147483647, 2147483647, 'ES', 'Spain'), +('217.77.242.231', '217.77.242.231', 2147483647, 2147483647, 'DK', 'Denmark'), +('217.77.242.232', '217.77.242.232', 2147483647, 2147483647, 'CH', 'Switzerland'), +('217.77.242.233', '217.77.242.233', 2147483647, 2147483647, 'ES', 'Spain'), +('217.77.242.234', '217.77.242.234', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.242.235', '217.77.242.235', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.77.242.236', '217.77.242.236', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.242.237', '217.77.242.237', 2147483647, 2147483647, 'GR', 'Greece'), +('217.77.242.238', '217.77.242.238', 2147483647, 2147483647, 'ES', 'Spain'), +('217.77.242.239', '217.77.242.239', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.242.240', '217.77.242.240', 2147483647, 2147483647, 'MY', 'Malaysia'), +('217.77.242.241', '217.77.242.241', 2147483647, 2147483647, 'HU', 'Hungary'), +('217.77.242.242', '217.77.242.242', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.242.243', '217.77.242.244', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.242.245', '217.77.242.245', 2147483647, 2147483647, 'IE', 'Ireland'), +('217.77.242.246', '217.77.242.246', 2147483647, 2147483647, 'IT', 'Italy'), +('217.77.242.247', '217.77.242.247', 2147483647, 2147483647, 'ES', 'Spain'), +('217.77.242.248', '217.77.242.249', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.242.250', '217.77.242.250', 2147483647, 2147483647, 'IT', 'Italy'), +('217.77.242.251', '217.77.242.251', 2147483647, 2147483647, 'IE', 'Ireland'), +('217.77.242.252', '217.77.242.252', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.242.253', '217.77.242.253', 2147483647, 2147483647, 'BE', 'Belgium'), +('217.77.242.254', '217.77.242.254', 2147483647, 2147483647, 'IT', 'Italy'), +('217.77.242.255', '217.77.243.4', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.243.5', '217.77.243.5', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.77.243.6', '217.77.243.6', 2147483647, 2147483647, 'FR', 'France'), +('217.77.243.7', '217.77.243.7', 2147483647, 2147483647, 'IT', 'Italy'), +('217.77.243.8', '217.77.243.8', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.243.9', '217.77.243.9', 2147483647, 2147483647, 'CH', 'Switzerland'), +('217.77.243.10', '217.77.243.10', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.77.243.11', '217.77.243.12', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.243.13', '217.77.243.13', 2147483647, 2147483647, 'BE', 'Belgium'), +('217.77.243.14', '217.77.243.15', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.243.16', '217.77.243.16', 2147483647, 2147483647, 'IT', 'Italy'), +('217.77.243.17', '217.77.243.17', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.243.18', '217.77.243.18', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.77.243.19', '217.77.243.19', 2147483647, 2147483647, 'ES', 'Spain'), +('217.77.243.20', '217.77.243.21', 2147483647, 2147483647, 'FR', 'France'), +('217.77.243.22', '217.77.243.23', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.243.24', '217.77.243.25', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.243.26', '217.77.243.26', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.243.27', '217.77.243.28', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.77.243.29', '217.77.243.29', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.243.30', '217.77.243.30', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.243.31', '217.77.243.31', 2147483647, 2147483647, 'FR', 'France'), +('217.77.243.32', '217.77.243.32', 2147483647, 2147483647, 'AT', 'Austria'), +('217.77.243.33', '217.77.243.36', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.243.37', '217.77.243.37', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.243.38', '217.77.243.38', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.243.39', '217.77.243.39', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.243.40', '217.77.243.40', 2147483647, 2147483647, 'GR', 'Greece'), +('217.77.243.41', '217.77.243.41', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.243.42', '217.77.243.42', 2147483647, 2147483647, 'FR', 'France'), +('217.77.243.43', '217.77.243.44', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.243.45', '217.77.243.45', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.243.46', '217.77.243.46', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.243.47', '217.77.243.47', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.243.48', '217.77.243.49', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.243.50', '217.77.243.51', 2147483647, 2147483647, 'FR', 'France'), +('217.77.243.52', '217.77.243.54', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.243.55', '217.77.243.56', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.243.57', '217.77.243.57', 2147483647, 2147483647, 'FR', 'France'), +('217.77.243.58', '217.77.243.58', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.243.59', '217.77.243.59', 2147483647, 2147483647, 'FR', 'France'), +('217.77.243.60', '217.77.243.60', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.243.61', '217.77.243.61', 2147483647, 2147483647, 'FR', 'France'), +('217.77.243.62', '217.77.243.65', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.243.66', '217.77.243.66', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.243.67', '217.77.243.67', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.243.68', '217.77.243.68', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.77.243.69', '217.77.243.69', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.243.70', '217.77.243.70', 2147483647, 2147483647, 'IT', 'Italy'), +('217.77.243.71', '217.77.243.71', 2147483647, 2147483647, 'HU', 'Hungary'), +('217.77.243.72', '217.77.243.72', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.243.73', '217.77.243.73', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.77.243.74', '217.77.243.81', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.243.82', '217.77.243.82', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.243.83', '217.77.243.83', 2147483647, 2147483647, 'AT', 'Austria'), +('217.77.243.84', '217.77.243.84', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.243.85', '217.77.243.85', 2147483647, 2147483647, 'FR', 'France'), +('217.77.243.86', '217.77.243.87', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.243.88', '217.77.243.88', 2147483647, 2147483647, 'CH', 'Switzerland'), +('217.77.243.89', '217.77.243.89', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.243.90', '217.77.243.90', 2147483647, 2147483647, 'IT', 'Italy'), +('217.77.243.91', '217.77.243.92', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.243.93', '217.77.243.93', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.77.243.94', '217.77.243.94', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.243.95', '217.77.243.104', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.243.105', '217.77.243.105', 2147483647, 2147483647, 'IT', 'Italy'), +('217.77.243.106', '217.77.243.106', 2147483647, 2147483647, 'AT', 'Austria'), +('217.77.243.107', '217.77.243.107', 2147483647, 2147483647, 'IT', 'Italy'), +('217.77.243.108', '217.77.243.110', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.243.111', '217.77.243.111', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.243.112', '217.77.243.112', 2147483647, 2147483647, 'BE', 'Belgium'), +('217.77.243.113', '217.77.243.113', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.243.114', '217.77.243.114', 2147483647, 2147483647, 'GR', 'Greece'), +('217.77.243.115', '217.77.243.115', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.243.116', '217.77.243.116', 2147483647, 2147483647, 'IT', 'Italy'), +('217.77.243.117', '217.77.243.118', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.243.119', '217.77.243.119', 2147483647, 2147483647, 'IT', 'Italy'), +('217.77.243.120', '217.77.243.120', 2147483647, 2147483647, 'GR', 'Greece'), +('217.77.243.121', '217.77.243.121', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.243.122', '217.77.243.122', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.243.123', '217.77.243.123', 2147483647, 2147483647, 'GR', 'Greece'), +('217.77.243.124', '217.77.243.124', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.243.125', '217.77.243.125', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.243.126', '217.77.243.126', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.77.243.127', '217.77.243.127', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.243.128', '217.77.243.129', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.243.130', '217.77.243.130', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.243.131', '217.77.243.131', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.243.132', '217.77.243.132', 2147483647, 2147483647, 'FR', 'France'), +('217.77.243.133', '217.77.243.133', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.243.134', '217.77.243.134', 2147483647, 2147483647, 'IE', 'Ireland'), +('217.77.243.135', '217.77.243.135', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.243.136', '217.77.243.138', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.243.139', '217.77.243.139', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.243.140', '217.77.243.140', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.243.141', '217.77.243.141', 2147483647, 2147483647, 'ES', 'Spain'), +('217.77.243.142', '217.77.243.142', 2147483647, 2147483647, 'FR', 'France'), +('217.77.243.143', '217.77.243.143', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.243.144', '217.77.243.144', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.243.145', '217.77.243.145', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.243.146', '217.77.243.146', 2147483647, 2147483647, 'FR', 'France'), +('217.77.243.147', '217.77.243.148', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.243.149', '217.77.243.149', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.243.150', '217.77.243.153', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.243.154', '217.77.243.154', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.243.155', '217.77.243.155', 2147483647, 2147483647, 'ES', 'Spain'), +('217.77.243.156', '217.77.243.156', 2147483647, 2147483647, 'IT', 'Italy'), +('217.77.243.157', '217.77.243.159', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.243.160', '217.77.243.160', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.243.161', '217.77.243.161', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.243.162', '217.77.243.162', 2147483647, 2147483647, 'ES', 'Spain'), +('217.77.243.163', '217.77.243.163', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.243.164', '217.77.243.164', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.243.165', '217.77.243.166', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.243.167', '217.77.243.170', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.243.171', '217.77.243.171', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.243.172', '217.77.243.179', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.243.180', '217.77.243.180', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.243.181', '217.77.243.183', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.243.184', '217.77.243.184', 2147483647, 2147483647, 'IT', 'Italy'), +('217.77.243.185', '217.77.243.187', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.243.188', '217.77.243.188', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.243.189', '217.77.243.189', 2147483647, 2147483647, 'IT', 'Italy'), +('217.77.243.190', '217.77.243.197', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.243.198', '217.77.243.198', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.243.199', '217.77.243.199', 2147483647, 2147483647, 'GR', 'Greece'), +('217.77.243.200', '217.77.243.201', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.243.202', '217.77.243.202', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.243.203', '217.77.243.203', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.243.204', '217.77.243.204', 2147483647, 2147483647, 'CH', 'Switzerland'), +('217.77.243.205', '217.77.243.205', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.243.206', '217.77.243.209', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.243.210', '217.77.243.210', 2147483647, 2147483647, 'FR', 'France'), +('217.77.243.211', '217.77.243.211', 2147483647, 2147483647, 'ES', 'Spain'), +('217.77.243.212', '217.77.243.213', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.243.214', '217.77.243.214', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.243.215', '217.77.243.216', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.243.217', '217.77.243.217', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.243.218', '217.77.243.218', 2147483647, 2147483647, 'MA', 'Morocco'), +('217.77.243.219', '217.77.246.7', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.246.8', '217.77.246.11', 2147483647, 2147483647, 'GR', 'Greece'), +('217.77.246.12', '217.77.246.15', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.246.16', '217.77.246.19', 2147483647, 2147483647, 'BE', 'Belgium'), +('217.77.246.20', '217.77.246.23', 2147483647, 2147483647, 'IT', 'Italy'), +('217.77.246.24', '217.77.246.27', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.246.28', '217.77.246.31', 2147483647, 2147483647, 'IT', 'Italy'), +('217.77.246.32', '217.77.246.35', 2147483647, 2147483647, 'BE', 'Belgium'), +('217.77.246.36', '217.77.246.51', 2147483647, 2147483647, 'IT', 'Italy'), +('217.77.246.52', '217.77.246.55', 2147483647, 2147483647, 'NO', 'Norway'), +('217.77.246.56', '217.77.246.59', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.246.60', '217.77.246.63', 2147483647, 2147483647, 'FR', 'France'), +('217.77.246.64', '217.77.246.67', 2147483647, 2147483647, 'GR', 'Greece'), +('217.77.246.68', '217.77.246.75', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.246.76', '217.77.246.79', 2147483647, 2147483647, 'CH', 'Switzerland'), +('217.77.246.80', '217.77.246.87', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.77.246.88', '217.77.246.91', 2147483647, 2147483647, 'FR', 'France'), +('217.77.246.92', '217.77.246.99', 2147483647, 2147483647, 'ES', 'Spain'), +('217.77.246.100', '217.77.246.103', 2147483647, 2147483647, 'PL', 'Poland'), +('217.77.246.104', '217.77.246.107', 2147483647, 2147483647, 'BE', 'Belgium'), +('217.77.246.108', '217.77.246.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.77.246.112', '217.77.246.115', 2147483647, 2147483647, 'IT', 'Italy'), +('217.77.246.116', '217.77.246.119', 2147483647, 2147483647, 'FR', 'France'), +('217.77.246.120', '217.77.246.123', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.77.246.124', '217.77.246.127', 2147483647, 2147483647, 'IT', 'Italy'), +('217.77.246.128', '217.77.246.131', 2147483647, 2147483647, 'ES', 'Spain'), +('217.77.246.132', '217.77.246.135', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.246.136', '217.77.246.139', 2147483647, 2147483647, 'GR', 'Greece'), +('217.77.246.140', '217.77.246.143', 2147483647, 2147483647, 'PL', 'Poland'), +('217.77.246.144', '217.77.246.147', 2147483647, 2147483647, 'IT', 'Italy'), +('217.77.246.148', '217.77.246.151', 2147483647, 2147483647, 'PL', 'Poland'), +('217.77.246.152', '217.77.246.155', 2147483647, 2147483647, 'IT', 'Italy'), +('217.77.246.156', '217.77.246.159', 2147483647, 2147483647, 'FR', 'France'), +('217.77.246.160', '217.77.246.163', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.77.246.164', '217.77.246.167', 2147483647, 2147483647, 'ES', 'Spain'), +('217.77.246.168', '217.77.246.171', 2147483647, 2147483647, 'IT', 'Italy'), +('217.77.246.172', '217.77.246.175', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.246.176', '217.77.246.179', 2147483647, 2147483647, 'ES', 'Spain'), +('217.77.246.180', '217.77.246.183', 2147483647, 2147483647, 'FR', 'France'), +('217.77.246.184', '217.77.246.191', 2147483647, 2147483647, 'IT', 'Italy'), +('217.77.246.192', '217.77.246.195', 2147483647, 2147483647, 'TR', 'Turkey'), +('217.77.246.196', '217.77.246.199', 2147483647, 2147483647, 'IT', 'Italy'), +('217.77.246.200', '217.77.246.203', 2147483647, 2147483647, 'FR', 'France'), +('217.77.246.204', '217.77.246.211', 2147483647, 2147483647, 'ES', 'Spain'), +('217.77.246.212', '217.77.246.215', 2147483647, 2147483647, 'FR', 'France'), +('217.77.246.216', '217.77.246.219', 2147483647, 2147483647, 'IT', 'Italy'), +('217.77.246.220', '217.77.246.223', 2147483647, 2147483647, 'FR', 'France'), +('217.77.246.224', '217.77.246.227', 2147483647, 2147483647, 'PL', 'Poland'), +('217.77.246.228', '217.77.246.231', 2147483647, 2147483647, 'GR', 'Greece'), +('217.77.246.232', '217.77.246.235', 2147483647, 2147483647, 'IT', 'Italy'), +('217.77.246.236', '217.77.246.239', 2147483647, 2147483647, 'ES', 'Spain'), +('217.77.246.240', '217.77.246.243', 2147483647, 2147483647, 'FR', 'France'), +('217.77.246.244', '217.77.246.247', 2147483647, 2147483647, 'ES', 'Spain'), +('217.77.246.248', '217.77.246.251', 2147483647, 2147483647, 'IT', 'Italy'), +('217.77.246.252', '217.77.246.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('217.77.247.0', '217.77.247.3', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.247.4', '217.77.247.7', 2147483647, 2147483647, 'BM', 'Bermuda'), +('217.77.247.8', '217.77.247.11', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.247.12', '217.77.247.15', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.247.16', '217.77.247.27', 2147483647, 2147483647, 'ES', 'Spain'), +('217.77.247.28', '217.77.247.31', 2147483647, 2147483647, 'GR', 'Greece'), +('217.77.247.32', '217.77.247.35', 2147483647, 2147483647, 'DK', 'Denmark'), +('217.77.247.36', '217.77.247.39', 2147483647, 2147483647, 'IT', 'Italy'), +('217.77.247.40', '217.77.247.43', 2147483647, 2147483647, 'FR', 'France'), +('217.77.247.44', '217.77.247.47', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.247.48', '217.77.247.51', 2147483647, 2147483647, 'IT', 'Italy'), +('217.77.247.52', '217.77.247.67', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.247.68', '217.77.247.71', 2147483647, 2147483647, 'FR', 'France'), +('217.77.247.72', '217.77.247.75', 2147483647, 2147483647, 'ES', 'Spain'), +('217.77.247.76', '217.77.247.79', 2147483647, 2147483647, 'FR', 'France'), +('217.77.247.80', '217.77.247.83', 2147483647, 2147483647, 'AT', 'Austria'), +('217.77.247.84', '217.77.247.87', 2147483647, 2147483647, 'FR', 'France'), +('217.77.247.88', '217.77.247.91', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.77.247.92', '217.77.247.95', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.247.96', '217.77.247.99', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.247.100', '217.77.247.111', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.247.112', '217.77.247.115', 2147483647, 2147483647, 'HU', 'Hungary'), +('217.77.247.116', '217.77.247.119', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.247.120', '217.77.247.123', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.77.247.124', '217.77.247.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.247.128', '217.77.247.131', 2147483647, 2147483647, 'CH', 'Switzerland'), +('217.77.247.132', '217.77.247.135', 2147483647, 2147483647, 'IT', 'Italy'), +('217.77.247.136', '217.77.247.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.77.247.144', '217.77.247.147', 2147483647, 2147483647, 'FR', 'France'), +('217.77.247.148', '217.77.247.151', 2147483647, 2147483647, 'IT', 'Italy'), +('217.77.247.152', '217.77.247.159', 2147483647, 2147483647, 'FR', 'France'), +('217.77.247.160', '217.77.247.163', 2147483647, 2147483647, 'SE', 'Sweden'), +('217.77.247.164', '217.77.247.167', 2147483647, 2147483647, 'IL', 'Israel'), +('217.77.247.168', '217.77.247.171', 2147483647, 2147483647, 'BE', 'Belgium'), +('217.77.247.172', '217.77.247.179', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.247.180', '217.77.247.183', 2147483647, 2147483647, 'IT', 'Italy'), +('217.77.247.184', '217.77.247.187', 2147483647, 2147483647, 'IE', 'Ireland'), +('217.77.247.188', '217.77.247.191', 2147483647, 2147483647, 'ES', 'Spain'), +('217.77.247.192', '217.77.247.195', 2147483647, 2147483647, 'FR', 'France'), +('217.77.247.196', '217.77.247.199', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.247.200', '217.77.247.203', 2147483647, 2147483647, 'IT', 'Italy'), +('217.77.247.204', '217.77.247.207', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.77.247.208', '217.77.247.215', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.247.216', '217.77.247.219', 2147483647, 2147483647, 'IE', 'Ireland'), +('217.77.247.220', '217.77.247.235', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.247.236', '217.77.247.239', 2147483647, 2147483647, 'IT', 'Italy'), +('217.77.247.240', '217.77.247.243', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.77.247.244', '217.77.247.247', 2147483647, 2147483647, 'CH', 'Switzerland'), +('217.77.247.248', '217.77.247.251', 2147483647, 2147483647, 'FR', 'France'), +('217.77.247.252', '217.77.248.7', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.248.8', '217.77.248.11', 2147483647, 2147483647, 'DK', 'Denmark'), +('217.77.248.12', '217.77.248.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.77.248.16', '217.77.248.19', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.248.20', '217.77.248.35', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.248.36', '217.77.248.43', 2147483647, 2147483647, 'FR', 'France'), +('217.77.248.44', '217.77.248.47', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.248.48', '217.77.248.51', 2147483647, 2147483647, 'FR', 'France'), +('217.77.248.52', '217.77.248.55', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.77.248.56', '217.77.248.59', 2147483647, 2147483647, 'FR', 'France'), +('217.77.248.60', '217.77.248.63', 2147483647, 2147483647, 'CH', 'Switzerland'), +('217.77.248.64', '217.77.248.71', 2147483647, 2147483647, 'IT', 'Italy'), +('217.77.248.72', '217.77.248.75', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.248.76', '217.77.248.79', 2147483647, 2147483647, 'FR', 'France'), +('217.77.248.80', '217.77.248.83', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.248.84', '217.77.248.87', 2147483647, 2147483647, 'FR', 'France'), +('217.77.248.88', '217.77.251.1', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.251.2', '217.77.251.7', 2147483647, 2147483647, 'US', 'United States'), +('217.77.251.8', '217.77.254.19', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.254.20', '217.77.254.20', 2147483647, 2147483647, 'US', 'United States'), +('217.77.254.21', '217.77.254.25', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.254.26', '217.77.254.26', 2147483647, 2147483647, 'US', 'United States'), +('217.77.254.27', '217.77.254.27', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.254.28', '217.77.254.28', 2147483647, 2147483647, 'US', 'United States'), +('217.77.254.29', '217.77.254.29', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.254.30', '217.77.254.30', 2147483647, 2147483647, 'US', 'United States'), +('217.77.254.31', '217.77.254.40', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.254.41', '217.77.254.41', 2147483647, 2147483647, 'US', 'United States'), +('217.77.254.42', '217.77.254.54', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.254.55', '217.77.254.55', 2147483647, 2147483647, 'US', 'United States'), +('217.77.254.56', '217.77.254.72', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.254.73', '217.77.254.73', 2147483647, 2147483647, 'US', 'United States'), +('217.77.254.74', '217.77.255.2', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.255.3', '217.77.255.3', 2147483647, 2147483647, 'US', 'United States'), +('217.77.255.4', '217.77.255.4', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.255.5', '217.77.255.5', 2147483647, 2147483647, 'US', 'United States'), +('217.77.255.6', '217.77.255.7', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.255.8', '217.77.255.9', 2147483647, 2147483647, 'US', 'United States'), +('217.77.255.10', '217.77.255.10', 2147483647, 2147483647, 'CA', 'Canada'), +('217.77.255.11', '217.77.255.24', 2147483647, 2147483647, 'US', 'United States'), +('217.77.255.25', '217.77.255.25', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.255.26', '217.77.255.31', 2147483647, 2147483647, 'US', 'United States'), +('217.77.255.32', '217.77.255.78', 2147483647, 2147483647, 'DE', 'Germany'), +('217.77.255.79', '217.77.255.79', 2147483647, 2147483647, 'US', 'United States'), +('217.77.255.80', '217.77.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.78.0.0', '217.78.15.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('217.78.16.0', '217.78.47.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('217.78.48.0', '217.78.63.255', 2147483647, 2147483647, 'PS', 'Palestinian Territory, Occupied'), +('217.78.64.0', '217.78.79.255', 2147483647, 2147483647, 'NG', 'Nigeria'), +('217.78.80.0', '217.78.95.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.78.96.0', '217.78.111.255', 2147483647, 2147483647, 'NO', 'Norway'), +('217.78.112.0', '217.78.127.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('217.78.128.0', '217.78.143.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.78.144.0', '217.78.159.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.78.160.0', '217.78.175.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.78.176.0', '217.78.191.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.78.192.0', '217.78.223.255', 2147483647, 2147483647, 'FI', 'Finland'), +('217.78.224.0', '217.78.239.255', 2147483647, 2147483647, 'GR', 'Greece'), +('217.78.240.0', '217.78.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.79.0.0', '217.79.31.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.79.32.0', '217.79.47.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('217.79.48.0', '217.79.63.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.79.64.0', '217.79.95.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('217.79.96.0', '217.79.127.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.79.128.0', '217.79.143.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('217.79.144.0', '217.79.159.255', 2147483647, 2147483647, 'PL', 'Poland'), +('217.79.160.0', '217.79.175.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.79.176.0', '217.79.191.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.79.192.0', '217.79.207.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('217.79.208.0', '217.79.210.15', 2147483647, 2147483647, 'DE', 'Germany'), +('217.79.210.16', '217.79.210.19', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.79.210.20', '217.79.214.127', 2147483647, 2147483647, 'DE', 'Germany'), +('217.79.214.128', '217.79.214.143', 2147483647, 2147483647, 'AT', 'Austria'), +('217.79.214.144', '217.79.214.159', 2147483647, 2147483647, 'DE', 'Germany'), +('217.79.214.160', '217.79.214.191', 2147483647, 2147483647, 'AT', 'Austria'), +('217.79.214.192', '217.79.223.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.79.224.0', '217.79.239.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.79.240.0', '217.79.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.80.0.0', '217.89.51.79', 2147483647, 2147483647, 'DE', 'Germany'), +('217.89.51.80', '217.89.51.87', 2147483647, 2147483647, 'US', 'United States'), +('217.89.51.88', '217.89.95.207', 2147483647, 2147483647, 'DE', 'Germany'), +('217.89.95.208', '217.89.95.215', 2147483647, 2147483647, 'CA', 'Canada'), +('217.89.95.216', '217.95.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.96.0.0', '217.99.255.255', 2147483647, 2147483647, 'PL', 'Poland'), +('217.100.0.0', '217.105.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.106.0.0', '217.106.218.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.106.219.0', '217.106.219.255', 2147483647, 2147483647, 'GE', 'Georgia'), +('217.106.220.0', '217.106.243.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.106.244.0', '217.106.244.255', 2147483647, 2147483647, 'GE', 'Georgia'), +('217.106.245.0', '217.107.212.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.107.213.0', '217.107.213.127', 2147483647, 2147483647, 'BY', 'Belarus'), +('217.107.213.128', '217.107.255.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.108.0.0', '217.109.255.255', 2147483647, 2147483647, 'FR', 'France'), +('217.110.0.0', '217.110.0.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.0.32', '217.110.0.47', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.0.48', '217.110.0.55', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.0.56', '217.110.0.103', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.0.104', '217.110.0.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.0.112', '217.110.0.239', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.0.240', '217.110.0.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.1.0', '217.110.1.39', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.1.40', '217.110.1.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.1.48', '217.110.1.55', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.1.56', '217.110.1.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.1.80', '217.110.1.87', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.1.88', '217.110.1.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.1.96', '217.110.1.103', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.1.104', '217.110.1.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.1.112', '217.110.1.135', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.1.136', '217.110.1.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.1.144', '217.110.1.183', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.1.184', '217.110.1.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.1.192', '217.110.1.207', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.1.208', '217.110.1.215', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.1.216', '217.110.1.223', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.1.224', '217.110.1.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.2.0', '217.110.2.7', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.2.8', '217.110.2.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.2.16', '217.110.2.47', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.2.48', '217.110.2.55', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.2.56', '217.110.2.207', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.2.208', '217.110.2.215', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.2.216', '217.110.2.223', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.2.224', '217.110.2.231', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.2.232', '217.110.3.31', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.3.32', '217.110.3.39', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.3.40', '217.110.3.87', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.3.88', '217.110.3.103', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.3.104', '217.110.3.135', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.3.136', '217.110.3.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.3.144', '217.110.3.183', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.3.184', '217.110.3.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.3.192', '217.110.4.39', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.4.40', '217.110.4.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.4.48', '217.110.4.79', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.4.80', '217.110.4.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.4.96', '217.110.4.103', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.4.104', '217.110.4.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.4.112', '217.110.4.183', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.4.184', '217.110.4.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.4.192', '217.110.4.223', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.4.224', '217.110.4.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.5.0', '217.110.5.39', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.5.40', '217.110.5.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.5.48', '217.110.5.63', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.5.64', '217.110.5.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.5.80', '217.110.5.167', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.5.168', '217.110.5.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.5.176', '217.110.5.199', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.5.200', '217.110.5.207', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.5.208', '217.110.5.215', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.5.216', '217.110.5.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.6.0', '217.110.6.23', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.6.24', '217.110.6.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.6.32', '217.110.6.95', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.6.96', '217.110.6.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.6.112', '217.110.6.167', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.6.168', '217.110.6.183', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.6.184', '217.110.6.191', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.6.192', '217.110.6.199', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.6.200', '217.110.6.223', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.6.224', '217.110.6.231', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.6.232', '217.110.7.39', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.7.40', '217.110.7.55', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.7.56', '217.110.7.103', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.7.104', '217.110.7.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.7.112', '217.110.7.119', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.7.120', '217.110.7.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.7.128', '217.110.7.135', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.7.136', '217.110.7.151', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.7.152', '217.110.7.191', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.7.192', '217.110.7.199', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.7.200', '217.110.7.239', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.7.240', '217.110.7.247', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.7.248', '217.110.8.95', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.8.96', '217.110.8.103', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.8.104', '217.110.8.247', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.8.248', '217.110.8.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.9.0', '217.110.9.31', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.9.32', '217.110.9.39', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.9.40', '217.110.9.63', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.9.64', '217.110.9.71', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.9.72', '217.110.9.119', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.9.120', '217.110.9.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.9.128', '217.110.9.207', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.9.208', '217.110.9.215', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.9.216', '217.110.9.247', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.9.248', '217.110.10.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.10.32', '217.110.10.71', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.10.72', '217.110.10.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.10.80', '217.110.10.207', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.10.208', '217.110.10.215', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.10.216', '217.110.11.31', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.11.32', '217.110.11.39', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.11.40', '217.110.11.47', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.11.48', '217.110.11.55', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.11.56', '217.110.11.79', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.11.80', '217.110.11.87', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.11.88', '217.110.12.159', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.12.160', '217.110.12.167', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.12.168', '217.110.12.231', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.12.232', '217.110.12.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.13.0', '217.110.13.71', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.13.72', '217.110.13.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.13.80', '217.110.13.103', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.13.104', '217.110.13.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.13.112', '217.110.13.127', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.13.128', '217.110.13.135', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.13.136', '217.110.13.207', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.13.208', '217.110.13.215', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.13.216', '217.110.13.223', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.13.224', '217.110.13.231', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.13.232', '217.110.13.239', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.13.240', '217.110.13.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.14.0', '217.110.14.15', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.14.16', '217.110.14.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.14.32', '217.110.14.63', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.14.64', '217.110.14.71', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.14.72', '217.110.14.223', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.14.224', '217.110.14.231', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.14.232', '217.110.14.247', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.14.248', '217.110.15.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.15.32', '217.110.15.39', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.15.40', '217.110.15.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.15.48', '217.110.15.55', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.15.56', '217.110.15.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.15.64', '217.110.15.159', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.15.160', '217.110.15.167', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.15.168', '217.110.15.215', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.15.216', '217.110.15.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.15.224', '217.110.16.31', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.16.32', '217.110.16.39', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.16.40', '217.110.16.143', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.16.144', '217.110.16.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.16.160', '217.110.17.95', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.17.96', '217.110.17.103', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.17.104', '217.110.17.191', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.17.192', '217.110.17.199', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.17.200', '217.110.17.223', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.17.224', '217.110.17.231', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.17.232', '217.110.17.239', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.17.240', '217.110.17.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.18.0', '217.110.18.15', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.18.16', '217.110.18.23', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.18.24', '217.110.18.127', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.18.128', '217.110.18.135', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.18.136', '217.110.18.143', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.18.144', '217.110.18.151', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.18.152', '217.110.19.79', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.19.80', '217.110.19.87', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.19.88', '217.110.19.95', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.19.96', '217.110.19.103', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.19.104', '217.110.19.167', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.19.168', '217.110.19.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.19.176', '217.110.20.39', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.20.40', '217.110.20.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.20.48', '217.110.20.175', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.20.176', '217.110.20.183', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.20.184', '217.110.20.239', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.20.240', '217.110.20.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.21.0', '217.110.21.239', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.21.240', '217.110.21.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.22.0', '217.110.22.39', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.22.40', '217.110.22.55', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.22.56', '217.110.22.71', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.22.72', '217.110.22.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.22.80', '217.110.22.119', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.22.120', '217.110.22.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.22.128', '217.110.22.175', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.22.176', '217.110.22.183', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.22.184', '217.110.22.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.23.0', '217.110.23.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.23.32', '217.110.23.95', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.23.96', '217.110.23.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.23.112', '217.110.24.63', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.24.64', '217.110.24.71', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.24.72', '217.110.24.79', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.24.80', '217.110.24.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.24.96', '217.110.24.127', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.24.128', '217.110.24.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.24.144', '217.110.24.151', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.24.152', '217.110.24.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.24.160', '217.110.24.175', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.24.176', '217.110.24.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.24.192', '217.110.24.215', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.24.216', '217.110.24.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.24.224', '217.110.24.239', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.24.240', '217.110.24.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.25.0', '217.110.25.55', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.25.56', '217.110.25.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.25.64', '217.110.25.71', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.25.72', '217.110.25.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.25.80', '217.110.25.119', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.25.120', '217.110.25.135', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.25.136', '217.110.25.175', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.25.176', '217.110.25.199', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.25.200', '217.110.25.215', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.25.216', '217.110.25.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.25.224', '217.110.25.239', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.25.240', '217.110.25.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.26.0', '217.110.26.143', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.26.144', '217.110.27.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.28.0', '217.110.28.239', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.28.240', '217.110.28.247', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.28.248', '217.110.29.55', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.29.56', '217.110.29.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.29.80', '217.110.29.103', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.29.104', '217.110.29.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.29.112', '217.110.29.151', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.29.152', '217.110.29.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.29.160', '217.110.29.215', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.29.216', '217.110.29.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.29.224', '217.110.29.239', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.29.240', '217.110.29.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.30.0', '217.110.30.167', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.30.168', '217.110.30.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.30.176', '217.110.30.247', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.30.248', '217.110.30.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.31.0', '217.110.31.15', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.31.16', '217.110.31.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.31.160', '217.110.31.191', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.31.192', '217.110.31.199', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.31.200', '217.110.31.207', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.31.208', '217.110.31.215', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.31.216', '217.110.32.47', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.32.48', '217.110.32.55', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.32.56', '217.110.32.63', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.32.64', '217.110.32.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.32.80', '217.110.32.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.33.0', '217.110.33.39', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.33.40', '217.110.33.95', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.33.96', '217.110.33.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.33.128', '217.110.33.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.34.0', '217.110.34.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.34.32', '217.110.34.63', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.34.64', '217.110.34.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.34.112', '217.110.39.142', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.39.143', '217.110.39.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.39.144', '217.110.39.223', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.39.224', '217.110.39.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.39.240', '217.110.40.23', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.40.24', '217.110.40.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.40.32', '217.110.40.39', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.40.40', '217.110.40.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.40.48', '217.110.40.55', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.40.56', '217.110.40.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.40.80', '217.110.40.103', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.40.104', '217.110.40.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.40.160', '217.110.40.167', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.40.168', '217.110.40.183', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.40.184', '217.110.40.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.41.0', '217.110.41.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.41.16', '217.110.41.39', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.41.40', '217.110.41.55', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.41.56', '217.110.41.127', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.41.128', '217.110.41.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.41.160', '217.110.41.199', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.41.200', '217.110.42.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.43.0', '217.110.43.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.44.0', '217.110.45.7', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.45.8', '217.110.45.23', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.45.24', '217.110.45.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.45.32', '217.110.45.63', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.45.64', '217.110.45.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.45.80', '217.110.45.87', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.45.88', '217.110.45.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.45.96', '217.110.45.103', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.45.104', '217.110.45.119', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.45.120', '217.110.46.31', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.46.32', '217.110.46.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.46.48', '217.110.46.55', 2147483647, 2147483647, 'DE', 'Germany'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('217.110.46.56', '217.110.46.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.46.64', '217.110.46.95', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.46.96', '217.110.46.103', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.46.104', '217.110.46.151', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.46.152', '217.110.46.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.46.176', '217.110.46.231', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.46.232', '217.110.46.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.47.0', '217.110.49.71', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.49.72', '217.110.49.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.49.80', '217.110.49.119', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.49.120', '217.110.49.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.49.128', '217.110.49.191', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.49.192', '217.110.49.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.49.224', '217.110.49.239', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.49.240', '217.110.49.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.50.0', '217.110.50.3', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.50.4', '217.110.50.7', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.50.8', '217.110.50.11', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.50.12', '217.110.50.39', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.50.40', '217.110.50.43', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.50.44', '217.110.50.139', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.50.140', '217.110.50.143', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.50.144', '217.110.50.243', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.50.244', '217.110.50.247', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.50.248', '217.110.51.7', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.51.8', '217.110.51.39', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.51.40', '217.110.51.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.51.64', '217.110.51.215', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.51.216', '217.110.51.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.51.224', '217.110.53.47', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.53.48', '217.110.53.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.53.80', '217.110.53.87', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.53.88', '217.110.53.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.53.96', '217.110.53.103', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.53.104', '217.110.53.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.53.128', '217.110.53.191', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.53.192', '217.110.53.207', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.53.208', '217.110.56.63', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.56.64', '217.110.56.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.56.96', '217.110.58.15', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.58.16', '217.110.58.23', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.58.24', '217.110.58.55', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.58.56', '217.110.58.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.58.64', '217.110.58.95', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.58.96', '217.110.58.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.58.128', '217.110.58.159', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.58.160', '217.110.58.187', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.58.188', '217.110.58.199', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.58.200', '217.110.58.207', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.58.208', '217.110.58.215', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.58.216', '217.110.58.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.58.224', '217.110.58.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.59.0', '217.110.59.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.59.64', '217.110.59.111', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.59.112', '217.110.59.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.59.192', '217.110.59.247', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.59.248', '217.110.60.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.61.0', '217.110.62.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.63.0', '217.110.63.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.63.32', '217.110.63.55', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.63.56', '217.110.63.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.63.64', '217.110.63.175', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.63.176', '217.110.63.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.63.224', '217.110.63.239', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.63.240', '217.110.63.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.64.0', '217.110.64.15', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.64.16', '217.110.64.23', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.64.24', '217.110.64.55', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.64.56', '217.110.64.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.64.64', '217.110.64.159', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.64.160', '217.110.64.167', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.64.168', '217.110.64.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.65.0', '217.110.65.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.66.0', '217.110.67.7', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.67.8', '217.110.67.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.67.16', '217.110.68.103', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.68.104', '217.110.68.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.68.112', '217.110.68.119', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.68.120', '217.110.68.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.68.128', '217.110.68.175', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.68.176', '217.110.68.183', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.68.184', '217.110.68.191', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.68.192', '217.110.69.7', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.69.8', '217.110.69.15', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.69.16', '217.110.69.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.69.80', '217.110.69.127', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.69.128', '217.110.69.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.69.192', '217.110.71.63', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.71.64', '217.110.71.87', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.71.88', '217.110.71.199', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.71.200', '217.110.71.207', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.71.208', '217.110.71.223', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.71.224', '217.110.71.231', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.71.232', '217.110.73.31', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.73.32', '217.110.73.39', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.73.40', '217.110.73.55', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.73.56', '217.110.73.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.73.64', '217.110.75.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.76.0', '217.110.76.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.76.64', '217.110.76.79', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.76.80', '217.110.76.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.76.96', '217.110.76.127', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.76.128', '217.110.76.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.77.0', '217.110.78.55', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.78.56', '217.110.78.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.78.64', '217.110.78.115', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.78.116', '217.110.78.119', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.78.120', '217.110.79.143', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.79.144', '217.110.79.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.79.160', '217.110.79.191', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.79.192', '217.110.79.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.80.0', '217.110.80.7', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.80.8', '217.110.80.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.81.0', '217.110.81.7', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.81.8', '217.110.81.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.81.16', '217.110.81.31', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.81.32', '217.110.81.39', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.81.40', '217.110.81.191', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.81.192', '217.110.82.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.83.0', '217.110.83.31', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.83.32', '217.110.83.39', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.83.40', '217.110.83.95', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.83.96', '217.110.83.103', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.83.104', '217.110.83.107', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.83.108', '217.110.83.119', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.83.120', '217.110.83.191', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.83.192', '217.110.83.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.83.224', '217.110.83.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.84.0', '217.110.84.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.85.0', '217.110.85.135', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.85.136', '217.110.85.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.86.0', '217.110.88.67', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.88.68', '217.110.88.87', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.88.88', '217.110.88.111', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.88.112', '217.110.88.123', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.88.124', '217.110.88.127', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.88.128', '217.110.88.167', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.88.168', '217.110.88.239', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.88.240', '217.110.88.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.89.0', '217.110.89.63', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.89.64', '217.110.89.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.89.128', '217.110.89.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.90.0', '217.110.90.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.90.32', '217.110.90.39', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.90.40', '217.110.90.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.90.80', '217.110.90.87', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.90.88', '217.110.90.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.90.96', '217.110.91.7', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.91.8', '217.110.91.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.91.16', '217.110.91.71', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.91.72', '217.110.91.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.91.80', '217.110.91.87', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.91.88', '217.110.91.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.91.96', '217.110.91.127', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.91.128', '217.110.91.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.92.0', '217.110.93.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.94.0', '217.110.94.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.94.64', '217.110.94.127', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.94.128', '217.110.94.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.94.160', '217.110.95.63', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.95.64', '217.110.95.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.95.80', '217.110.95.223', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.95.224', '217.110.95.231', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.95.232', '217.110.95.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.96.0', '217.110.96.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.96.64', '217.110.96.127', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.96.128', '217.110.97.7', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.97.8', '217.110.97.23', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.97.24', '217.110.97.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.97.32', '217.110.97.63', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.97.64', '217.110.97.71', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.97.72', '217.110.98.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.99.0', '217.110.99.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.99.64', '217.110.99.71', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.99.72', '217.110.99.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.99.80', '217.110.99.103', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.99.104', '217.110.99.119', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.99.120', '217.110.99.199', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.99.200', '217.110.100.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.100.16', '217.110.100.39', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.100.40', '217.110.100.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.100.48', '217.110.100.55', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.100.56', '217.110.100.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.100.96', '217.110.100.127', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.100.128', '217.110.101.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.101.160', '217.110.101.191', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.101.192', '217.110.101.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.101.224', '217.110.101.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.102.0', '217.110.102.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.103.0', '217.110.104.7', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.104.8', '217.110.104.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.104.16', '217.110.104.31', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.104.32', '217.110.104.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.104.48', '217.110.105.79', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.105.80', '217.110.105.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.105.96', '217.110.107.15', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.107.16', '217.110.107.23', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.107.24', '217.110.109.63', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.109.64', '217.110.109.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.109.80', '217.110.109.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.110.0', '217.110.110.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.110.144', '217.110.110.191', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.110.192', '217.110.110.207', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.110.208', '217.110.111.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.112.0', '217.110.112.7', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.112.8', '217.110.112.15', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.112.16', '217.110.112.23', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.112.24', '217.110.112.31', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.112.32', '217.110.112.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.112.48', '217.110.115.63', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.115.64', '217.110.115.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.115.80', '217.110.116.191', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.116.192', '217.110.116.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.117.0', '217.110.117.127', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.117.128', '217.110.117.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.117.192', '217.110.117.207', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.117.208', '217.110.117.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.117.224', '217.110.117.239', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.117.240', '217.110.117.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.118.0', '217.110.119.15', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.119.16', '217.110.119.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.119.32', '217.110.119.63', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.119.64', '217.110.119.103', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.119.104', '217.110.120.135', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.120.136', '217.110.120.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.120.160', '217.110.120.247', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.120.248', '217.110.120.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.121.0', '217.110.122.31', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.122.32', '217.110.122.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.122.64', '217.110.122.95', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.122.96', '217.110.122.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.122.128', '217.110.122.227', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.122.228', '217.110.122.231', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.122.232', '217.110.122.239', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.122.240', '217.110.122.247', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.122.248', '217.110.123.143', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.123.144', '217.110.123.151', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.123.152', '217.110.123.191', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.123.192', '217.110.123.199', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.123.200', '217.110.123.207', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.123.208', '217.110.123.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.123.240', '217.110.123.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.124.0', '217.110.124.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.124.32', '217.110.124.47', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.124.48', '217.110.124.55', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.124.56', '217.110.124.95', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.124.96', '217.110.124.103', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.124.104', '217.110.124.111', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.124.112', '217.110.124.119', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.124.120', '217.110.125.215', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.125.216', '217.110.125.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.125.224', '217.110.125.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.126.0', '217.110.126.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.126.16', '217.110.126.23', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.126.24', '217.110.126.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.126.48', '217.110.126.207', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.126.208', '217.110.126.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.127.0', '217.110.127.15', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.127.16', '217.110.127.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.127.32', '217.110.127.71', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.127.72', '217.110.127.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.127.80', '217.110.142.63', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.142.64', '217.110.142.71', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.142.72', '217.110.142.75', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.142.76', '217.110.142.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.142.80', '217.110.142.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.143.0', '217.110.143.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.143.80', '217.110.143.95', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.143.96', '217.110.143.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.143.128', '217.110.143.143', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.143.144', '217.110.143.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.144.0', '217.110.144.39', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.144.40', '217.110.144.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.144.48', '217.110.144.55', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.144.56', '217.110.144.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.144.64', '217.110.144.167', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.144.168', '217.110.144.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.144.176', '217.110.144.199', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.144.200', '217.110.144.215', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.144.216', '217.110.144.239', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.144.240', '217.110.144.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.145.0', '217.110.145.111', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.145.112', '217.110.145.119', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.145.120', '217.110.145.127', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.145.128', '217.110.145.135', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.145.136', '217.110.145.143', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.145.144', '217.110.145.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.145.160', '217.110.145.207', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.145.208', '217.110.145.215', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.145.216', '217.110.145.231', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.145.232', '217.110.145.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.146.0', '217.110.146.55', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.146.56', '217.110.146.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.147.0', '217.110.147.31', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.147.32', '217.110.147.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.147.48', '217.110.147.95', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.147.96', '217.110.147.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.148.0', '217.110.148.87', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.148.88', '217.110.149.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.149.32', '217.110.149.63', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.149.64', '217.110.149.71', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.149.72', '217.110.149.79', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.149.80', '217.110.149.87', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.149.88', '217.110.149.143', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.149.144', '217.110.151.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.152.0', '217.110.152.175', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.152.176', '217.110.152.183', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.152.184', '217.110.152.191', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.152.192', '217.110.152.199', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.152.200', '217.110.152.223', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.152.224', '217.110.152.231', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.152.232', '217.110.153.23', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.153.24', '217.110.153.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.153.32', '217.110.153.103', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.153.104', '217.110.153.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.153.112', '217.110.153.119', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.153.120', '217.110.153.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.153.128', '217.110.153.207', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.153.208', '217.110.153.215', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.153.216', '217.110.154.135', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.154.136', '217.110.154.142', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.154.143', '217.110.154.143', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.154.144', '217.110.154.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.154.192', '217.110.155.223', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.155.224', '217.110.155.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.155.240', '217.110.156.31', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.156.32', '217.110.156.39', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.156.40', '217.110.156.199', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.156.200', '217.110.156.231', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.156.232', '217.110.156.239', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.156.240', '217.110.156.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.157.0', '217.110.157.31', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.157.32', '217.110.157.39', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.157.40', '217.110.157.47', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.157.48', '217.110.157.55', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.157.56', '217.110.157.167', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.157.168', '217.110.157.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.158.0', '217.110.158.31', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.158.32', '217.110.158.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.159.0', '217.110.159.31', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.159.32', '217.110.159.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.160.0', '217.110.160.47', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.160.48', '217.110.160.55', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.160.56', '217.110.160.71', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.160.72', '217.110.160.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.161.0', '217.110.161.31', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.161.32', '217.110.161.39', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.161.40', '217.110.161.47', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.161.48', '217.110.161.55', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.161.56', '217.110.161.71', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.161.72', '217.110.161.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.161.80', '217.110.161.103', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.161.104', '217.110.161.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.161.112', '217.110.161.127', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.161.128', '217.110.161.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.162.0', '217.110.162.31', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.162.32', '217.110.162.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.163.0', '217.110.163.31', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.163.32', '217.110.167.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.168.0', '217.110.168.39', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.168.40', '217.110.168.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.168.48', '217.110.168.127', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.168.128', '217.110.168.135', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.168.136', '217.110.168.167', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.168.168', '217.110.168.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.168.176', '217.110.168.231', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.168.232', '217.110.168.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.168.240', '217.110.169.31', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.169.32', '217.110.169.39', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.169.40', '217.110.169.55', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.169.56', '217.110.169.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.169.64', '217.110.169.111', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.169.112', '217.110.169.119', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.169.120', '217.110.169.159', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.169.160', '217.110.169.167', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.169.168', '217.110.169.175', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.169.176', '217.110.169.183', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.169.184', '217.110.169.247', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.169.248', '217.110.169.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.170.0', '217.110.170.127', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.170.128', '217.110.170.135', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.170.136', '217.110.170.143', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.170.144', '217.110.170.151', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.170.152', '217.110.171.79', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.171.80', '217.110.171.87', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.171.88', '217.110.171.127', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.171.128', '217.110.171.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.171.144', '217.110.171.167', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.171.168', '217.110.171.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.171.176', '217.110.171.207', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.171.208', '217.110.171.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.171.224', '217.110.171.239', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.171.240', '217.110.171.247', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.171.248', '217.110.172.103', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.172.104', '217.110.172.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.172.112', '217.110.172.231', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.172.232', '217.110.172.247', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.172.248', '217.110.172.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.173.0', '217.110.173.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.173.32', '217.110.173.39', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.173.40', '217.110.173.55', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.173.56', '217.110.173.87', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.173.88', '217.110.173.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.173.96', '217.110.173.183', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.173.184', '217.110.173.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.173.192', '217.110.173.207', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.173.208', '217.110.173.215', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.173.216', '217.110.174.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.175.0', '217.110.175.39', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.175.40', '217.110.175.63', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.175.64', '217.110.175.71', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.175.72', '217.110.175.79', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.175.80', '217.110.175.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.175.96', '217.110.175.103', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.175.104', '217.110.175.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.175.112', '217.110.175.143', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.175.144', '217.110.175.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.175.160', '217.110.175.183', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.175.184', '217.110.175.207', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.175.208', '217.110.175.247', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.175.248', '217.110.181.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.182.0', '217.110.182.15', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.182.16', '217.110.182.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.182.32', '217.110.182.95', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.182.96', '217.110.182.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.182.112', '217.110.182.127', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.182.128', '217.110.182.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.182.160', '217.110.182.207', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.182.208', '217.110.182.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.182.224', '217.110.186.167', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.186.168', '217.110.186.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.186.176', '217.110.186.223', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.186.224', '217.110.186.231', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.186.232', '217.110.186.239', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.186.240', '217.110.186.247', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.186.248', '217.110.187.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.188.0', '217.110.189.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.190.0', '217.110.190.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.191.0', '217.110.191.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.192.0', '217.110.192.55', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.192.56', '217.110.192.71', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.192.72', '217.110.192.239', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.192.240', '217.110.192.247', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.192.248', '217.110.192.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.193.0', '217.110.193.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.193.32', '217.110.193.79', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.193.80', '217.110.193.87', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.193.88', '217.110.193.159', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.193.160', '217.110.193.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.193.176', '217.110.193.223', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.193.224', '217.110.193.231', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.193.232', '217.110.193.247', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.193.248', '217.110.194.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.195.0', '217.110.196.47', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.196.48', '217.110.196.55', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.196.56', '217.110.196.103', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.196.104', '217.110.196.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.196.128', '217.110.196.167', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.196.168', '217.110.196.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.196.176', '217.110.196.215', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.196.216', '217.110.196.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.196.224', '217.110.197.31', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.197.32', '217.110.197.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.197.48', '217.110.197.63', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.197.64', '217.110.197.71', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.197.72', '217.110.197.95', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.197.96', '217.110.197.103', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.197.104', '217.110.197.231', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.197.232', '217.110.197.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.198.0', '217.110.198.7', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.198.8', '217.110.198.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.198.16', '217.110.198.63', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.198.64', '217.110.198.71', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.198.72', '217.110.198.151', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.198.152', '217.110.198.167', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.198.168', '217.110.198.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.199.0', '217.110.199.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.199.32', '217.110.199.47', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.199.48', '217.110.199.55', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.199.56', '217.110.199.79', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.199.80', '217.110.199.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.199.96', '217.110.199.135', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.199.136', '217.110.199.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.199.144', '217.110.199.151', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.199.152', '217.110.199.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.199.160', '217.110.199.167', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.199.168', '217.110.199.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.199.176', '217.110.199.191', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.199.192', '217.110.199.199', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.199.200', '217.110.199.247', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.199.248', '217.110.200.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.200.64', '217.110.200.191', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.200.192', '217.110.201.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.201.16', '217.110.201.63', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.201.64', '217.110.201.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.201.80', '217.110.201.127', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.201.128', '217.110.201.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.202.0', '217.110.202.31', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.202.32', '217.110.202.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.202.64', '217.110.202.79', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.202.80', '217.110.202.119', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.202.120', '217.110.202.223', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.202.224', '217.110.202.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.202.240', '217.110.202.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.203.0', '217.110.203.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('217.110.204.0', '217.110.206.31', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.206.32', '217.110.206.47', 2147483647, 2147483647, 'US', 'United States'), +('217.110.206.48', '217.110.206.79', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.206.80', '217.110.206.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.206.96', '217.110.206.223', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.206.224', '217.110.206.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.207.0', '217.110.207.15', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.207.16', '217.110.207.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.207.48', '217.110.208.71', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.208.72', '217.110.208.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.208.80', '217.110.209.31', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.209.32', '217.110.209.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.209.48', '217.110.209.87', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.209.88', '217.110.209.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.209.96', '217.110.209.127', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.209.128', '217.110.209.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.209.144', '217.110.209.151', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.209.152', '217.110.209.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.209.160', '217.110.209.167', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.209.168', '217.110.209.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.209.192', '217.110.209.207', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.209.208', '217.110.209.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.209.224', '217.110.210.23', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.210.24', '217.110.210.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.210.32', '217.110.210.79', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.210.80', '217.110.210.87', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.210.88', '217.110.210.111', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.210.112', '217.110.210.119', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.210.120', '217.110.210.159', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.210.160', '217.110.210.167', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.210.168', '217.110.211.79', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.211.80', '217.110.211.87', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.211.88', '217.110.211.111', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.211.112', '217.110.211.119', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.211.120', '217.110.211.167', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.211.168', '217.110.211.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.211.176', '217.110.211.183', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.211.184', '217.110.211.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.211.192', '217.110.211.207', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.211.208', '217.110.211.215', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.211.216', '217.110.211.231', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.211.232', '217.110.212.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.212.32', '217.110.212.71', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.212.72', '217.110.213.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.213.32', '217.110.213.71', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.213.72', '217.110.213.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.213.80', '217.110.213.87', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.213.88', '217.110.216.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.216.32', '217.110.216.95', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.216.96', '217.110.217.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.217.32', '217.110.217.55', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.217.56', '217.110.217.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.217.96', '217.110.217.111', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.217.112', '217.110.217.119', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.217.120', '217.110.217.135', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.217.136', '217.110.217.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.217.144', '217.110.217.151', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.217.152', '217.110.218.39', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.218.40', '217.110.218.55', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.218.56', '217.110.219.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.220.0', '217.110.220.239', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.220.240', '217.110.220.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.221.0', '217.110.221.151', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.221.152', '217.110.221.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.221.160', '217.110.221.207', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.221.208', '217.110.221.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.221.224', '217.110.221.239', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.221.240', '217.110.221.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.222.0', '217.110.222.247', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.222.248', '217.110.222.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.223.0', '217.110.223.47', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.223.48', '217.110.223.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.223.64', '217.110.223.175', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.223.176', '217.110.223.183', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.223.184', '217.110.223.247', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.223.248', '217.110.224.39', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.224.40', '217.110.224.43', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.224.44', '217.110.224.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.224.48', '217.110.224.63', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.224.64', '217.110.224.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.224.96', '217.110.224.167', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.224.168', '217.110.224.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.224.176', '217.110.224.239', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.224.240', '217.110.224.247', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.224.248', '217.110.225.23', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.225.24', '217.110.225.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.225.32', '217.110.225.215', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.225.216', '217.110.225.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.225.224', '217.110.225.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.226.0', '217.110.226.123', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.226.124', '217.110.226.127', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.226.128', '217.110.226.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.226.144', '217.110.226.147', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.226.148', '217.110.226.155', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.226.156', '217.110.226.159', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.226.160', '217.110.227.7', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.227.8', '217.110.227.15', 2147483647, 2147483647, 'FR', 'France'), +('217.110.227.16', '217.110.227.23', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.227.24', '217.110.227.39', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.227.40', '217.110.228.127', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.228.128', '217.110.228.131', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.228.132', '217.110.228.191', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.228.192', '217.110.228.207', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.228.208', '217.110.228.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.229.0', '217.110.229.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.230.0', '217.110.230.63', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.230.64', '217.110.230.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.231.0', '217.110.231.215', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.231.216', '217.110.231.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.231.224', '217.110.231.231', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.231.232', '217.110.231.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.231.240', '217.110.232.63', 2147483647, 2147483647, 'DE', 'Germany'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('217.110.232.64', '217.110.232.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.232.160', '217.110.232.175', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.232.176', '217.110.232.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.232.192', '217.110.232.223', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.232.224', '217.110.232.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.232.240', '217.110.232.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.233.0', '217.110.235.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.236.0', '217.110.236.7', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.236.8', '217.110.236.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.236.16', '217.110.236.87', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.236.88', '217.110.236.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.236.96', '217.110.237.39', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.237.40', '217.110.237.55', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.237.56', '217.110.237.71', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.237.72', '217.110.237.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.237.80', '217.110.237.87', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.237.88', '217.110.237.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.237.96', '217.110.237.135', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.237.136', '217.110.237.151', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.237.152', '217.110.237.167', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.237.168', '217.110.237.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.237.176', '217.110.237.247', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.237.248', '217.110.237.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.238.0', '217.110.238.151', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.238.152', '217.110.238.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.238.160', '217.110.239.39', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.239.40', '217.110.239.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.239.48', '217.110.239.79', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.239.80', '217.110.239.87', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.239.88', '217.110.239.143', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.239.144', '217.110.239.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.239.160', '217.110.239.167', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.239.168', '217.110.239.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.239.176', '217.110.239.207', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.239.208', '217.110.239.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.239.224', '217.110.239.239', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.239.240', '217.110.239.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.240.0', '217.110.240.79', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.240.80', '217.110.240.103', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.240.104', '217.110.240.135', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.240.136', '217.110.240.151', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.240.152', '217.110.240.191', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.240.192', '217.110.240.199', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.240.200', '217.110.241.55', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.241.56', '217.110.241.87', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.241.88', '217.110.241.95', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.241.96', '217.110.241.103', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.241.104', '217.110.241.127', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.241.128', '217.110.241.135', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.241.136', '217.110.241.151', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.241.152', '217.110.241.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.241.160', '217.110.241.167', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.241.168', '217.110.241.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.241.176', '217.110.241.183', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.241.184', '217.110.241.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.241.192', '217.110.241.231', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.241.232', '217.110.241.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.241.240', '217.110.241.247', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.241.248', '217.110.242.7', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.242.8', '217.110.242.23', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.242.24', '217.110.242.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.242.32', '217.110.242.39', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.242.40', '217.110.242.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.242.48', '217.110.242.55', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.242.56', '217.110.242.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.242.64', '217.110.242.79', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.242.80', '217.110.242.87', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.242.88', '217.110.242.95', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.242.96', '217.110.242.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.242.112', '217.110.242.119', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.242.120', '217.110.243.7', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.243.8', '217.110.243.15', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.243.16', '217.110.243.39', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.243.40', '217.110.243.47', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.243.48', '217.110.243.55', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.243.56', '217.110.243.79', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.243.80', '217.110.243.87', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.243.88', '217.110.243.95', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.243.96', '217.110.243.119', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.243.120', '217.110.243.127', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.243.128', '217.110.243.135', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.243.136', '217.110.243.151', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.243.152', '217.110.243.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.243.176', '217.110.243.199', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.243.200', '217.110.243.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.243.240', '217.110.243.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.244.0', '217.110.244.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.245.0', '217.110.245.39', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.245.40', '217.110.245.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.245.48', '217.110.245.63', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.245.64', '217.110.245.71', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.245.72', '217.110.245.95', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.245.96', '217.110.245.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.245.144', '217.110.245.151', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.245.152', '217.110.245.183', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.245.184', '217.110.245.207', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.245.208', '217.110.245.231', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.245.232', '217.110.245.239', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.245.240', '217.110.246.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.247.0', '217.110.247.55', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.247.56', '217.110.247.87', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.247.88', '217.110.247.111', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.247.112', '217.110.247.119', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.247.120', '217.110.247.135', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.247.136', '217.110.247.151', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.247.152', '217.110.247.159', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.247.160', '217.110.247.167', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.247.168', '217.110.247.183', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.247.184', '217.110.247.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.248.0', '217.110.249.63', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.249.64', '217.110.249.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.249.80', '217.110.249.95', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.249.96', '217.110.251.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.252.0', '217.110.252.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.253.0', '217.110.253.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.253.128', '217.110.253.191', 2147483647, 2147483647, 'DE', 'Germany'), +('217.110.253.192', '217.110.253.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.110.254.0', '217.111.0.103', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.0.104', '217.111.0.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.0.112', '217.111.0.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.1.0', '217.111.1.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.2.0', '217.111.3.23', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.3.24', '217.111.3.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.3.64', '217.111.3.143', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.3.144', '217.111.3.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.3.160', '217.111.3.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.4.0', '217.111.4.219', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.4.220', '217.111.4.223', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.4.224', '217.111.4.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.5.0', '217.111.5.127', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.5.128', '217.111.5.135', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.5.136', '217.111.5.139', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.5.140', '217.111.5.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.5.144', '217.111.5.151', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.5.152', '217.111.5.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.5.160', '217.111.5.207', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.5.208', '217.111.5.215', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.5.216', '217.111.5.223', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.5.224', '217.111.5.231', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.5.232', '217.111.7.39', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.7.40', '217.111.7.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.7.64', '217.111.7.127', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.7.128', '217.111.7.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.7.192', '217.111.7.223', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.7.224', '217.111.8.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.9.0', '217.111.10.47', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.10.48', '217.111.10.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.10.64', '217.111.10.135', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.10.136', '217.111.10.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.10.144', '217.111.10.175', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.10.176', '217.111.10.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.10.192', '217.111.11.191', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.11.192', '217.111.12.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.13.0', '217.111.13.95', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.13.96', '217.111.13.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.14.0', '217.111.15.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.16.0', '217.111.16.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.17.0', '217.111.17.63', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.17.64', '217.111.17.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.17.96', '217.111.17.127', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.17.128', '217.111.18.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.18.128', '217.111.18.223', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.18.224', '217.111.19.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.19.128', '217.111.19.191', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.19.192', '217.111.19.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.20.0', '217.111.20.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.21.0', '217.111.23.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.24.0', '217.111.24.27', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.24.28', '217.111.24.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.24.32', '217.111.24.43', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.24.44', '217.111.24.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.24.48', '217.111.24.51', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.24.52', '217.111.24.55', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.24.56', '217.111.24.63', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.24.64', '217.111.24.67', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.24.68', '217.111.24.91', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.24.92', '217.111.24.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.24.96', '217.111.24.111', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.24.112', '217.111.24.123', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.24.124', '217.111.24.127', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.24.128', '217.111.24.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.24.144', '217.111.24.147', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.24.148', '217.111.24.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.25.0', '217.111.25.7', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.25.8', '217.111.25.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.25.16', '217.111.25.55', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.25.56', '217.111.25.71', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.25.72', '217.111.27.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.28.0', '217.111.28.59', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.28.60', '217.111.28.63', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.28.64', '217.111.28.75', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.28.76', '217.111.28.79', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.28.80', '217.111.29.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.30.0', '217.111.30.159', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.30.160', '217.111.30.167', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.30.168', '217.111.30.183', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.30.184', '217.111.30.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.30.192', '217.111.30.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.31.0', '217.111.31.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.31.160', '217.111.31.167', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.31.168', '217.111.31.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.31.176', '217.111.31.191', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.31.192', '217.111.32.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.32.16', '217.111.32.23', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.32.24', '217.111.32.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.32.32', '217.111.32.79', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.32.80', '217.111.32.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.32.96', '217.111.32.111', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.32.112', '217.111.32.167', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.32.168', '217.111.32.207', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.32.208', '217.111.32.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.32.224', '217.111.32.247', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.32.248', '217.111.33.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.33.96', '217.111.33.111', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.33.112', '217.111.33.119', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.33.120', '217.111.33.127', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.33.128', '217.111.33.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.33.160', '217.111.33.167', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.33.168', '217.111.33.183', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.33.184', '217.111.33.191', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.33.192', '217.111.33.215', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.33.216', '217.111.33.231', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.33.232', '217.111.34.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.34.32', '217.111.34.71', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.34.72', '217.111.34.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.34.80', '217.111.34.95', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.34.96', '217.111.34.103', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.34.104', '217.111.34.167', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.34.168', '217.111.34.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.34.176', '217.111.35.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.36.0', '217.111.36.7', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.36.8', '217.111.36.31', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.36.32', '217.111.36.39', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.36.40', '217.111.36.55', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.36.56', '217.111.36.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.36.64', '217.111.36.119', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.36.120', '217.111.36.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.36.128', '217.111.36.167', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.36.168', '217.111.36.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.36.176', '217.111.36.223', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.36.224', '217.111.36.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.37.0', '217.111.37.87', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.37.88', '217.111.37.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.37.96', '217.111.37.207', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.37.208', '217.111.37.215', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.37.216', '217.111.39.95', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.39.96', '217.111.39.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.40.0', '217.111.41.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.42.0', '217.111.42.7', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.42.8', '217.111.42.15', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.42.16', '217.111.42.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.42.32', '217.111.42.95', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.42.96', '217.111.42.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.43.0', '217.111.43.183', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.43.184', '217.111.43.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.43.192', '217.111.43.199', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.43.200', '217.111.43.207', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.43.208', '217.111.44.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.45.0', '217.111.45.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.45.48', '217.111.45.51', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.45.52', '217.111.45.55', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.45.56', '217.111.45.67', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.45.68', '217.111.45.71', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.45.72', '217.111.45.79', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.45.80', '217.111.45.83', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.45.84', '217.111.45.95', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.45.96', '217.111.45.99', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.45.100', '217.111.45.103', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.45.104', '217.111.45.111', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.45.112', '217.111.45.119', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.45.120', '217.111.45.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.45.128', '217.111.45.135', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.45.136', '217.111.45.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.45.144', '217.111.45.159', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.45.160', '217.111.46.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.47.0', '217.111.48.127', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.48.128', '217.111.48.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.48.160', '217.111.48.183', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.48.184', '217.111.48.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.48.192', '217.111.50.39', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.50.40', '217.111.50.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.50.64', '217.111.50.127', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.50.128', '217.111.50.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.50.160', '217.111.50.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.51.0', '217.111.51.7', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.51.8', '217.111.51.11', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.51.12', '217.111.51.75', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.51.76', '217.111.51.79', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.51.80', '217.111.51.103', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.51.104', '217.111.51.119', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.51.120', '217.111.51.123', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.51.124', '217.111.51.135', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.51.136', '217.111.52.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.53.0', '217.111.53.151', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.53.152', '217.111.53.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.53.160', '217.111.55.127', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.55.128', '217.111.55.135', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.55.136', '217.111.55.143', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.55.144', '217.111.55.167', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.55.168', '217.111.55.175', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.55.176', '217.111.55.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.55.224', '217.111.55.239', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.55.240', '217.111.55.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.56.0', '217.111.57.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.58.0', '217.111.58.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.59.0', '217.111.59.3', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.59.4', '217.111.59.59', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.59.60', '217.111.59.63', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.59.64', '217.111.59.163', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.59.164', '217.111.59.171', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.59.172', '217.111.59.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.60.0', '217.111.60.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.61.0', '217.111.61.79', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.61.80', '217.111.61.95', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.61.96', '217.111.61.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.61.128', '217.111.61.143', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.61.144', '217.111.61.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.61.160', '217.111.61.191', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.61.192', '217.111.62.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.63.0', '217.111.63.3', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.63.4', '217.111.63.7', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.63.8', '217.111.63.191', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.63.192', '217.111.63.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.63.224', '217.111.66.127', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.66.128', '217.111.66.135', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.66.136', '217.111.66.143', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.66.144', '217.111.66.151', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.66.152', '217.111.66.159', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.66.160', '217.111.66.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.66.176', '217.111.66.183', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.66.184', '217.111.66.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.66.192', '217.111.66.223', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.66.224', '217.111.66.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.67.0', '217.111.67.127', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.67.128', '217.111.67.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.67.192', '217.111.67.215', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.67.216', '217.111.67.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.68.0', '217.111.68.143', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.68.144', '217.111.68.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.68.160', '217.111.69.159', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.69.160', '217.111.69.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.70.0', '217.111.70.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.71.0', '217.111.72.7', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.72.8', '217.111.72.15', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.72.16', '217.111.73.7', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.73.8', '217.111.73.23', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.73.24', '217.111.73.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.73.32', '217.111.73.39', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.73.40', '217.111.73.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.73.64', '217.111.74.127', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.74.128', '217.111.74.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.75.0', '217.111.76.63', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.76.64', '217.111.76.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.76.128', '217.111.76.223', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.76.224', '217.111.79.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.80.0', '217.111.88.127', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.88.128', '217.111.88.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.88.144', '217.111.88.159', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.88.160', '217.111.88.183', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.88.184', '217.111.89.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.90.0', '217.111.90.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.90.96', '217.111.90.103', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.90.104', '217.111.90.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.91.0', '217.111.91.127', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.91.128', '217.111.91.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.91.160', '217.111.91.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.92.0', '217.111.92.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.93.0', '217.111.93.31', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.93.32', '217.111.93.39', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.93.40', '217.111.93.55', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.93.56', '217.111.93.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.93.64', '217.111.95.31', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.95.32', '217.111.95.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.95.128', '217.111.95.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.96.0', '217.111.96.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.97.0', '217.111.97.7', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.97.8', '217.111.97.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.97.16', '217.111.97.87', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.97.88', '217.111.97.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.97.96', '217.111.97.111', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.97.112', '217.111.97.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.97.128', '217.111.97.183', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.97.184', '217.111.97.199', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.97.200', '217.111.97.215', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.97.216', '217.111.97.231', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.97.232', '217.111.101.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.102.0', '217.111.102.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.102.128', '217.111.102.135', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.102.136', '217.111.102.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.102.192', '217.111.103.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.104.0', '217.111.105.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.106.0', '217.111.106.39', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.106.40', '217.111.106.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.106.48', '217.111.106.55', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.106.56', '217.111.106.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.106.96', '217.111.106.119', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.106.120', '217.111.106.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.106.224', '217.111.106.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.107.0', '217.111.107.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.107.64', '217.111.107.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.108.0', '217.111.108.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.109.0', '217.111.110.127', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.110.128', '217.111.110.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.110.160', '217.111.111.127', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.111.128', '217.111.114.7', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.114.8', '217.111.114.15', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.114.16', '217.111.114.23', 2147483647, 2147483647, 'ES', 'Spain'), +('217.111.114.24', '217.111.114.55', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.114.56', '217.111.114.63', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.114.64', '217.111.114.103', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.114.104', '217.111.114.119', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.114.120', '217.111.114.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.114.128', '217.111.114.135', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.114.136', '217.111.114.151', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.114.152', '217.111.114.223', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.114.224', '217.111.118.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.119.0', '217.111.119.7', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.119.8', '217.111.119.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.119.16', '217.111.119.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.120.0', '217.111.120.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.120.32', '217.111.120.39', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.120.40', '217.111.120.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.120.64', '217.111.120.127', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.120.128', '217.111.120.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.120.192', '217.111.120.223', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.120.224', '217.111.120.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.121.0', '217.111.121.127', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.121.128', '217.111.123.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.124.0', '217.111.124.39', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.124.40', '217.111.124.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.124.48', '217.111.124.79', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.124.80', '217.111.124.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.124.96', '217.111.124.127', 2147483647, 2147483647, 'DE', 'Germany'), +('217.111.124.128', '217.111.128.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.128.32', '217.111.128.47', 2147483647, 2147483647, 'BE', 'Belgium'), +('217.111.128.48', '217.111.128.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.128.96', '217.111.128.127', 2147483647, 2147483647, 'BE', 'Belgium'), +('217.111.128.128', '217.111.129.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.111.130.0', '217.111.130.63', 2147483647, 2147483647, 'BE', 'Belgium'), +('217.111.130.64', '217.111.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.112.0.0', '217.112.31.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.112.32.0', '217.112.33.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.112.34.0', '217.112.34.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.112.35.0', '217.112.35.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.112.36.0', '217.112.40.127', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.112.40.128', '217.112.40.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.112.41.0', '217.112.43.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.112.44.0', '217.112.47.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.112.48.0', '217.112.79.255', 2147483647, 2147483647, 'FR', 'France'), +('217.112.80.0', '217.112.95.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.112.96.0', '217.112.111.255', 2147483647, 2147483647, 'IT', 'Italy'), +('217.112.112.0', '217.112.127.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.112.128.0', '217.112.143.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('217.112.144.0', '217.112.144.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('217.112.145.0', '217.112.145.15', 2147483647, 2147483647, 'DE', 'Germany'), +('217.112.145.16', '217.112.145.63', 2147483647, 2147483647, 'IE', 'Ireland'), +('217.112.145.64', '217.112.145.79', 2147483647, 2147483647, 'DE', 'Germany'), +('217.112.145.80', '217.112.145.95', 2147483647, 2147483647, 'IE', 'Ireland'), +('217.112.145.96', '217.112.146.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.112.147.0', '217.112.147.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('217.112.148.0', '217.112.149.15', 2147483647, 2147483647, 'DE', 'Germany'), +('217.112.149.16', '217.112.149.31', 2147483647, 2147483647, 'IE', 'Ireland'), +('217.112.149.32', '217.112.159.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.112.160.0', '217.112.175.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('217.112.176.0', '217.112.176.60', 2147483647, 2147483647, 'BE', 'Belgium'), +('217.112.176.61', '217.112.176.61', 2147483647, 2147483647, 'FR', 'France'), +('217.112.176.62', '217.112.191.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('217.112.192.0', '217.112.207.255', 2147483647, 2147483647, 'FI', 'Finland'), +('217.112.208.0', '217.112.223.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('217.112.224.0', '217.112.239.255', 2147483647, 2147483647, 'FR', 'France'), +('217.112.240.0', '217.112.255.255', 2147483647, 2147483647, 'FI', 'Finland'), +('217.113.0.0', '217.113.31.255', 2147483647, 2147483647, 'AM', 'Armenia'), +('217.113.32.0', '217.113.47.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.113.48.0', '217.113.63.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('217.113.64.0', '217.113.64.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('217.113.65.0', '217.113.65.255', 2147483647, 2147483647, 'CG', 'Congo'), +('217.113.66.0', '217.113.66.127', 2147483647, 2147483647, 'BE', 'Belgium'), +('217.113.66.128', '217.113.66.159', 2147483647, 2147483647, 'BF', 'Burkina Faso'), +('217.113.66.160', '217.113.66.191', 2147483647, 2147483647, 'BE', 'Belgium'), +('217.113.66.192', '217.113.66.255', 2147483647, 2147483647, 'BF', 'Burkina Faso'), +('217.113.67.0', '217.113.67.255', 2147483647, 2147483647, 'CG', 'Congo'), +('217.113.68.0', '217.113.68.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('217.113.69.0', '217.113.73.255', 2147483647, 2147483647, 'UG', 'Uganda'), +('217.113.74.0', '217.113.74.127', 2147483647, 2147483647, 'TZ', 'Tanzania, United Republic of'), +('217.113.74.128', '217.113.74.159', 2147483647, 2147483647, 'BF', 'Burkina Faso'), +('217.113.74.160', '217.113.74.255', 2147483647, 2147483647, 'TZ', 'Tanzania, United Republic of'), +('217.113.75.0', '217.113.75.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('217.113.76.0', '217.113.76.7', 2147483647, 2147483647, 'NE', 'Niger'), +('217.113.76.8', '217.113.76.23', 2147483647, 2147483647, 'CD', 'Congo, The Democratic Republic of the'), +('217.113.76.24', '217.113.76.31', 2147483647, 2147483647, 'GA', 'Gabon'), +('217.113.76.32', '217.113.76.63', 2147483647, 2147483647, 'CD', 'Congo, The Democratic Republic of the'), +('217.113.76.64', '217.113.76.95', 2147483647, 2147483647, 'TD', 'Chad'), +('217.113.76.96', '217.113.76.111', 2147483647, 2147483647, 'SL', 'Sierra Leone'), +('217.113.76.112', '217.113.76.127', 2147483647, 2147483647, 'BE', 'Belgium'), +('217.113.76.128', '217.113.76.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.113.76.160', '217.113.77.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('217.113.78.0', '217.113.80.255', 2147483647, 2147483647, 'MW', 'Malawi'), +('217.113.81.0', '217.113.81.63', 2147483647, 2147483647, 'BE', 'Belgium'), +('217.113.81.64', '217.113.82.255', 2147483647, 2147483647, 'LR', 'Liberia'), +('217.113.83.0', '217.113.94.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('217.113.95.0', '217.113.95.255', 2147483647, 2147483647, 'LR', 'Liberia'), +('217.113.96.0', '217.113.111.255', 2147483647, 2147483647, 'AT', 'Austria'), +('217.113.112.0', '217.113.127.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.113.128.0', '217.113.159.255', 2147483647, 2147483647, 'PL', 'Poland'), +('217.113.160.0', '217.113.175.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.113.176.0', '217.113.191.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.113.192.0', '217.113.207.255', 2147483647, 2147483647, 'FR', 'France'), +('217.113.208.0', '217.113.223.255', 2147483647, 2147483647, 'IT', 'Italy'), +('217.113.224.0', '217.113.239.255', 2147483647, 2147483647, 'PL', 'Poland'), +('217.113.240.0', '217.113.255.255', 2147483647, 2147483647, 'ES', 'Spain'), +('217.114.0.0', '217.114.47.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.114.48.0', '217.114.63.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.114.64.0', '217.114.79.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.114.80.0', '217.114.87.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('217.114.88.0', '217.114.89.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.114.90.0', '217.114.90.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('217.114.91.0', '217.114.91.255', 2147483647, 2147483647, 'FI', 'Finland'), +('217.114.92.0', '217.114.92.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('217.114.93.0', '217.114.93.255', 2147483647, 2147483647, 'NO', 'Norway'), +('217.114.94.0', '217.114.95.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('217.114.96.0', '217.114.111.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.114.112.0', '217.114.127.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('217.114.128.0', '217.114.143.255', 2147483647, 2147483647, 'ES', 'Spain'), +('217.114.144.0', '217.114.159.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.114.160.0', '217.114.175.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('217.114.176.0', '217.114.191.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.114.192.0', '217.114.207.255', 2147483647, 2147483647, 'FR', 'France'), +('217.114.208.0', '217.114.210.31', 2147483647, 2147483647, 'DE', 'Germany'), +('217.114.210.32', '217.114.210.63', 2147483647, 2147483647, 'AT', 'Austria'), +('217.114.210.64', '217.114.210.127', 2147483647, 2147483647, 'DE', 'Germany'), +('217.114.210.128', '217.114.210.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('217.114.211.0', '217.114.211.31', 2147483647, 2147483647, 'DE', 'Germany'), +('217.114.211.32', '217.114.211.63', 2147483647, 2147483647, 'AT', 'Austria'), +('217.114.211.64', '217.114.211.127', 2147483647, 2147483647, 'DE', 'Germany'), +('217.114.211.128', '217.114.211.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('217.114.212.0', '217.114.212.63', 2147483647, 2147483647, 'DE', 'Germany'), +('217.114.212.64', '217.114.212.95', 2147483647, 2147483647, 'AT', 'Austria'), +('217.114.212.96', '217.114.213.127', 2147483647, 2147483647, 'DE', 'Germany'), +('217.114.213.128', '217.114.213.143', 2147483647, 2147483647, 'AT', 'Austria'), +('217.114.213.144', '217.114.214.127', 2147483647, 2147483647, 'DE', 'Germany'), +('217.114.214.128', '217.114.214.143', 2147483647, 2147483647, 'AT', 'Austria'), +('217.114.214.144', '217.114.215.127', 2147483647, 2147483647, 'DE', 'Germany'), +('217.114.215.128', '217.114.215.143', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.114.215.144', '217.114.215.159', 2147483647, 2147483647, 'DE', 'Germany'), +('217.114.215.160', '217.114.215.191', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.114.215.192', '217.114.215.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.114.216.0', '217.114.217.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.114.218.0', '217.114.218.15', 2147483647, 2147483647, 'IT', 'Italy'), +('217.114.218.16', '217.114.218.31', 2147483647, 2147483647, 'AT', 'Austria'), +('217.114.218.32', '217.114.218.39', 2147483647, 2147483647, 'DE', 'Germany'), +('217.114.218.40', '217.114.218.47', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.114.218.48', '217.114.218.63', 2147483647, 2147483647, 'DE', 'Germany'), +('217.114.218.64', '217.114.218.127', 2147483647, 2147483647, 'IT', 'Italy'), +('217.114.218.128', '217.114.222.63', 2147483647, 2147483647, 'DE', 'Germany'), +('217.114.222.64', '217.114.222.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.114.222.128', '217.114.223.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.114.224.0', '217.114.255.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.115.16.0', '217.115.31.255', 2147483647, 2147483647, 'IT', 'Italy'), +('217.115.32.0', '217.115.63.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('217.115.64.0', '217.115.79.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.115.80.0', '217.115.95.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.115.96.0', '217.115.111.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.115.112.0', '217.115.127.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('217.115.128.0', '217.115.151.95', 2147483647, 2147483647, 'DE', 'Germany'), +('217.115.151.96', '217.115.151.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.115.151.128', '217.115.159.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.115.160.0', '217.115.175.255', 2147483647, 2147483647, 'FR', 'France'), +('217.115.176.0', '217.115.191.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.115.192.0', '217.115.207.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.115.208.0', '217.115.223.255', 2147483647, 2147483647, 'RO', 'Romania'), +('217.115.224.0', '217.115.239.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.115.240.0', '217.115.255.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('217.116.0.0', '217.116.31.255', 2147483647, 2147483647, 'ES', 'Spain'), +('217.116.32.0', '217.116.47.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('217.116.48.0', '217.116.63.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.116.64.0', '217.116.79.255', 2147483647, 2147483647, 'AT', 'Austria'), +('217.116.80.0', '217.116.95.255', 2147483647, 2147483647, 'NO', 'Norway'), +('217.116.96.0', '217.116.111.255', 2147483647, 2147483647, 'PL', 'Poland'), +('217.116.112.0', '217.116.127.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.116.128.0', '217.116.159.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.116.160.0', '217.116.175.255', 2147483647, 2147483647, 'FI', 'Finland'), +('217.116.176.0', '217.116.191.255', 2147483647, 2147483647, 'AT', 'Austria'), +('217.116.192.0', '217.116.207.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.116.208.0', '217.116.224.223', 2147483647, 2147483647, 'DK', 'Denmark'), +('217.116.224.224', '217.116.224.239', 2147483647, 2147483647, 'CA', 'Canada'), +('217.116.224.240', '217.116.226.175', 2147483647, 2147483647, 'DK', 'Denmark'), +('217.116.226.176', '217.116.226.183', 2147483647, 2147483647, 'SE', 'Sweden'), +('217.116.226.184', '217.116.226.223', 2147483647, 2147483647, 'DK', 'Denmark'), +('217.116.226.224', '217.116.226.239', 2147483647, 2147483647, 'CA', 'Canada'), +('217.116.226.240', '217.116.227.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('217.116.228.0', '217.116.228.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.116.229.0', '217.116.229.255', 2147483647, 2147483647, 'AT', 'Austria'), +('217.116.230.0', '217.116.231.63', 2147483647, 2147483647, 'DK', 'Denmark'), +('217.116.231.64', '217.116.231.79', 2147483647, 2147483647, 'CA', 'Canada'), +('217.116.231.80', '217.116.240.39', 2147483647, 2147483647, 'DK', 'Denmark'), +('217.116.240.40', '217.116.240.47', 2147483647, 2147483647, 'CH', 'Switzerland'), +('217.116.240.48', '217.116.248.95', 2147483647, 2147483647, 'DK', 'Denmark'), +('217.116.248.96', '217.116.248.103', 2147483647, 2147483647, 'CA', 'Canada'), +('217.116.248.104', '217.116.249.31', 2147483647, 2147483647, 'DK', 'Denmark'), +('217.116.249.32', '217.116.249.47', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.116.249.48', '217.116.255.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('217.117.0.0', '217.117.15.255', 2147483647, 2147483647, 'NG', 'Nigeria'), +('217.117.16.0', '217.117.31.255', 2147483647, 2147483647, 'LT', 'Lithuania'), +('217.117.32.0', '217.117.63.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('217.117.64.0', '217.117.79.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('217.117.80.0', '217.117.95.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.117.96.0', '217.117.111.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.117.112.0', '217.117.127.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.117.128.0', '217.117.143.255', 2147483647, 2147483647, 'PL', 'Poland'), +('217.117.144.0', '217.117.159.255', 2147483647, 2147483647, 'FR', 'France'), +('217.117.160.0', '217.117.175.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('217.117.176.0', '217.117.191.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.117.192.0', '217.117.207.255', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('217.117.208.0', '217.117.223.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('217.117.224.0', '217.117.239.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.118.0.0', '217.118.15.255', 2147483647, 2147483647, 'IT', 'Italy'), +('217.118.16.0', '217.118.31.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.118.32.0', '217.118.63.255', 2147483647, 2147483647, 'NO', 'Norway'), +('217.118.64.0', '217.118.95.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.118.96.0', '217.118.111.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('217.118.112.0', '217.118.112.15', 2147483647, 2147483647, 'AT', 'Austria'), +('217.118.112.16', '217.118.112.23', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.118.112.24', '217.118.112.87', 2147483647, 2147483647, 'AT', 'Austria'), +('217.118.112.88', '217.118.112.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.118.112.128', '217.118.112.255', 2147483647, 2147483647, 'AT', 'Austria'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('217.118.113.0', '217.118.113.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.118.113.32', '217.118.113.87', 2147483647, 2147483647, 'ES', 'Spain'), +('217.118.113.88', '217.118.113.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.118.113.96', '217.118.113.199', 2147483647, 2147483647, 'ES', 'Spain'), +('217.118.113.200', '217.118.113.207', 2147483647, 2147483647, 'CH', 'Switzerland'), +('217.118.113.208', '217.118.113.255', 2147483647, 2147483647, 'ES', 'Spain'), +('217.118.114.0', '217.118.117.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.118.118.0', '217.118.118.127', 2147483647, 2147483647, 'FR', 'France'), +('217.118.118.128', '217.118.118.191', 2147483647, 2147483647, 'IT', 'Italy'), +('217.118.118.192', '217.118.118.255', 2147483647, 2147483647, 'ES', 'Spain'), +('217.118.119.0', '217.118.120.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.118.121.0', '217.118.121.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.118.122.0', '217.118.123.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.118.124.0', '217.118.124.255', 2147483647, 2147483647, 'US', 'United States'), +('217.118.125.0', '217.118.125.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.118.126.0', '217.118.126.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.118.127.0', '217.118.127.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('217.118.128.0', '217.118.143.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.118.144.0', '217.118.159.255', 2147483647, 2147483647, 'IT', 'Italy'), +('217.118.160.0', '217.118.175.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.118.176.0', '217.118.191.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.118.192.0', '217.118.207.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('217.118.208.0', '217.118.213.95', 2147483647, 2147483647, 'SE', 'Sweden'), +('217.118.213.96', '217.118.213.111', 2147483647, 2147483647, 'PA', 'Panama'), +('217.118.213.112', '217.118.223.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('217.118.224.0', '217.118.226.79', 2147483647, 2147483647, 'FR', 'France'), +('217.118.226.80', '217.118.226.87', 2147483647, 2147483647, 'ES', 'Spain'), +('217.118.226.88', '217.118.234.95', 2147483647, 2147483647, 'FR', 'France'), +('217.118.234.96', '217.118.234.111', 2147483647, 2147483647, 'ES', 'Spain'), +('217.118.234.112', '217.118.239.255', 2147483647, 2147483647, 'FR', 'France'), +('217.118.240.0', '217.118.255.255', 2147483647, 2147483647, 'IT', 'Italy'), +('217.119.0.0', '217.119.15.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.119.16.0', '217.119.31.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.119.32.0', '217.119.47.255', 2147483647, 2147483647, 'FI', 'Finland'), +('217.119.48.0', '217.119.57.15', 2147483647, 2147483647, 'DE', 'Germany'), +('217.119.57.16', '217.119.57.23', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.119.57.24', '217.119.57.47', 2147483647, 2147483647, 'DE', 'Germany'), +('217.119.57.48', '217.119.57.63', 2147483647, 2147483647, 'AT', 'Austria'), +('217.119.57.64', '217.119.63.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.119.64.0', '217.119.79.255', 2147483647, 2147483647, 'PL', 'Poland'), +('217.119.80.0', '217.119.95.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.119.96.0', '217.119.111.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('217.119.112.0', '217.119.127.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('217.119.128.0', '217.119.143.255', 2147483647, 2147483647, 'FR', 'France'), +('217.119.144.0', '217.119.159.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('217.119.160.0', '217.119.175.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('217.119.176.0', '217.119.191.255', 2147483647, 2147483647, 'FR', 'France'), +('217.119.192.0', '217.119.223.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.119.224.0', '217.119.239.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.119.240.0', '217.119.255.255', 2147483647, 2147483647, 'RS', 'Serbia'), +('217.120.0.0', '217.123.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.124.0.0', '217.127.255.255', 2147483647, 2147483647, 'ES', 'Spain'), +('217.128.0.0', '217.128.255.255', 2147483647, 2147483647, 'FR', 'France'), +('217.129.0.0', '217.129.255.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('217.130.0.0', '217.130.255.255', 2147483647, 2147483647, 'ES', 'Spain'), +('217.131.0.0', '217.131.255.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('217.132.0.0', '217.132.255.255', 2147483647, 2147483647, 'IL', 'Israel'), +('217.133.0.0', '217.133.169.15', 2147483647, 2147483647, 'IT', 'Italy'), +('217.133.169.16', '217.133.169.31', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('217.133.169.32', '217.133.176.63', 2147483647, 2147483647, 'IT', 'Italy'), +('217.133.176.64', '217.133.176.71', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('217.133.176.72', '217.133.255.255', 2147483647, 2147483647, 'IT', 'Italy'), +('217.134.0.0', '217.135.34.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.135.35.0', '217.135.35.255', 2147483647, 2147483647, 'FR', 'France'), +('217.135.36.0', '217.135.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.136.0.0', '217.136.255.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('217.137.0.0', '217.137.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.138.0.0', '217.138.0.255', 2147483647, 2147483647, 'US', 'United States'), +('217.138.1.0', '217.138.1.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.138.1.64', '217.138.1.151', 2147483647, 2147483647, 'US', 'United States'), +('217.138.1.152', '217.138.1.155', 2147483647, 2147483647, 'BB', 'Barbados'), +('217.138.1.156', '217.138.1.191', 2147483647, 2147483647, 'US', 'United States'), +('217.138.1.192', '217.138.3.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.138.4.0', '217.138.4.255', 2147483647, 2147483647, 'US', 'United States'), +('217.138.5.0', '217.138.34.247', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.138.34.248', '217.138.35.255', 2147483647, 2147483647, 'GD', 'Grenada'), +('217.138.36.0', '217.138.36.231', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.138.36.232', '217.138.36.239', 2147483647, 2147483647, 'BB', 'Barbados'), +('217.138.36.240', '217.138.36.255', 2147483647, 2147483647, 'AG', 'Antigua and Barbuda'), +('217.138.37.0', '217.138.38.247', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.138.38.248', '217.138.38.255', 2147483647, 2147483647, 'TT', 'Trinidad and Tobago'), +('217.138.39.0', '217.138.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.139.0.0', '217.139.255.255', 2147483647, 2147483647, 'EG', 'Egypt'), +('217.140.0.0', '217.140.15.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.140.16.0', '217.140.31.255', 2147483647, 2147483647, 'ES', 'Spain'), +('217.140.32.0', '217.140.63.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.140.64.0', '217.140.95.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.140.96.0', '217.140.99.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.140.100.0', '217.140.101.255', 2147483647, 2147483647, 'US', 'United States'), +('217.140.102.0', '217.140.103.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.140.104.0', '217.140.105.255', 2147483647, 2147483647, 'JP', 'Japan'), +('217.140.106.0', '217.140.109.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.140.110.0', '217.140.111.255', 2147483647, 2147483647, 'US', 'United States'), +('217.140.112.0', '217.140.127.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('217.140.128.0', '217.140.255.255', 2147483647, 2147483647, 'FI', 'Finland'), +('217.141.0.0', '217.141.255.255', 2147483647, 2147483647, 'IT', 'Italy'), +('217.142.0.0', '217.143.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('217.144.0.0', '217.144.15.255', 2147483647, 2147483647, 'JO', 'Jordan'), +('217.144.16.0', '217.144.31.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('217.144.32.0', '217.144.47.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.144.48.0', '217.144.63.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('217.144.64.0', '217.144.79.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('217.144.80.0', '217.144.95.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.144.96.0', '217.144.111.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.144.112.0', '217.144.127.255', 2147483647, 2147483647, 'FR', 'France'), +('217.144.128.0', '217.144.143.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.144.144.0', '217.144.159.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.144.160.0', '217.144.191.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.144.192.0', '217.144.223.255', 2147483647, 2147483647, 'PL', 'Poland'), +('217.144.224.0', '217.144.255.255', 2147483647, 2147483647, 'NO', 'Norway'), +('217.145.0.0', '217.145.2.31', 2147483647, 2147483647, 'MT', 'Malta'), +('217.145.2.32', '217.145.2.47', 2147483647, 2147483647, 'SC', 'Seychelles'), +('217.145.2.48', '217.145.15.255', 2147483647, 2147483647, 'MT', 'Malta'), +('217.145.16.0', '217.145.31.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.145.32.0', '217.145.35.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('217.145.36.0', '217.145.36.255', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('217.145.37.0', '217.145.47.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('217.145.48.0', '217.145.63.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('217.145.64.0', '217.145.79.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.145.80.0', '217.145.95.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('217.145.96.0', '217.145.111.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.145.112.0', '217.145.143.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.145.144.0', '217.145.159.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.145.160.0', '217.145.175.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('217.145.176.0', '217.145.191.255', 2147483647, 2147483647, 'ES', 'Spain'), +('217.145.192.0', '217.145.207.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('217.145.208.0', '217.145.223.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('217.145.224.0', '217.145.239.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.145.240.0', '217.145.255.255', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('217.146.0.0', '217.146.15.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('217.146.16.0', '217.146.17.255', 2147483647, 2147483647, 'US', 'United States'), +('217.146.18.0', '217.146.18.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('217.146.19.0', '217.146.31.255', 2147483647, 2147483647, 'US', 'United States'), +('217.146.32.0', '217.146.47.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.146.48.0', '217.146.48.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.146.49.0', '217.146.49.20', 2147483647, 2147483647, 'CH', 'Switzerland'), +('217.146.49.21', '217.146.49.35', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.146.49.36', '217.146.49.46', 2147483647, 2147483647, 'CH', 'Switzerland'), +('217.146.49.47', '217.146.49.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.146.49.240', '217.146.49.254', 2147483647, 2147483647, 'CH', 'Switzerland'), +('217.146.49.255', '217.146.54.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.146.55.0', '217.146.55.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('217.146.56.0', '217.146.63.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.146.64.0', '217.146.79.255', 2147483647, 2147483647, 'EE', 'Estonia'), +('217.146.80.0', '217.146.127.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.146.128.0', '217.146.159.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.146.160.0', '217.146.175.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('217.146.176.0', '217.146.191.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.146.192.0', '217.146.207.255', 2147483647, 2147483647, 'IT', 'Italy'), +('217.146.208.0', '217.146.223.255', 2147483647, 2147483647, 'IR', 'Iran, Islamic Republic of'), +('217.146.224.0', '217.146.239.255', 2147483647, 2147483647, 'FR', 'France'), +('217.146.240.0', '217.146.255.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('217.147.0.0', '217.147.31.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.147.32.0', '217.147.47.255', 2147483647, 2147483647, 'LT', 'Lithuania'), +('217.147.64.0', '217.147.66.63', 2147483647, 2147483647, 'DE', 'Germany'), +('217.147.66.64', '217.147.66.79', 2147483647, 2147483647, 'GE', 'Georgia'), +('217.147.66.80', '217.147.66.215', 2147483647, 2147483647, 'DE', 'Germany'), +('217.147.66.216', '217.147.66.219', 2147483647, 2147483647, 'GE', 'Georgia'), +('217.147.66.220', '217.147.66.223', 2147483647, 2147483647, 'DE', 'Germany'), +('217.147.66.224', '217.147.66.231', 2147483647, 2147483647, 'AT', 'Austria'), +('217.147.66.232', '217.147.66.239', 2147483647, 2147483647, 'DE', 'Germany'), +('217.147.66.240', '217.147.66.247', 2147483647, 2147483647, 'AT', 'Austria'), +('217.147.66.248', '217.147.67.127', 2147483647, 2147483647, 'DE', 'Germany'), +('217.147.67.128', '217.147.67.143', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.147.67.144', '217.147.67.191', 2147483647, 2147483647, 'DE', 'Germany'), +('217.147.67.192', '217.147.67.194', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.147.67.195', '217.147.79.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.147.80.0', '217.147.95.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.147.96.0', '217.147.100.7', 2147483647, 2147483647, 'DE', 'Germany'), +('217.147.100.8', '217.147.100.8', 2147483647, 2147483647, 'BE', 'Belgium'), +('217.147.100.9', '217.147.105.167', 2147483647, 2147483647, 'DE', 'Germany'), +('217.147.105.168', '217.147.105.171', 2147483647, 2147483647, 'FR', 'France'), +('217.147.105.172', '217.147.111.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.147.112.0', '217.147.127.255', 2147483647, 2147483647, 'GI', 'Gibraltar'), +('217.147.128.0', '217.147.159.255', 2147483647, 2147483647, 'IT', 'Italy'), +('217.147.160.0', '217.147.175.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('217.147.176.0', '217.147.191.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.147.192.0', '217.147.207.255', 2147483647, 2147483647, 'FR', 'France'), +('217.147.208.0', '217.147.215.175', 2147483647, 2147483647, 'CH', 'Switzerland'), +('217.147.215.176', '217.147.215.207', 2147483647, 2147483647, 'PT', 'Portugal'), +('217.147.215.208', '217.147.219.151', 2147483647, 2147483647, 'CH', 'Switzerland'), +('217.147.219.152', '217.147.219.159', 2147483647, 2147483647, 'IM', 'Isle of Man'), +('217.147.219.160', '217.147.219.175', 2147483647, 2147483647, 'AT', 'Austria'), +('217.147.219.176', '217.147.219.207', 2147483647, 2147483647, 'CH', 'Switzerland'), +('217.147.219.208', '217.147.219.223', 2147483647, 2147483647, 'PT', 'Portugal'), +('217.147.219.224', '217.147.220.223', 2147483647, 2147483647, 'CH', 'Switzerland'), +('217.147.220.224', '217.147.220.255', 2147483647, 2147483647, 'IM', 'Isle of Man'), +('217.147.221.0', '217.147.223.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('217.147.224.0', '217.147.239.255', 2147483647, 2147483647, 'GE', 'Georgia'), +('217.147.240.0', '217.147.242.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.147.243.0', '217.147.243.7', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.147.243.8', '217.147.243.15', 2147483647, 2147483647, 'IT', 'Italy'), +('217.147.243.16', '217.147.243.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.147.243.32', '217.147.243.39', 2147483647, 2147483647, 'FR', 'France'), +('217.147.243.40', '217.147.243.47', 2147483647, 2147483647, 'SE', 'Sweden'), +('217.147.243.48', '217.147.243.55', 2147483647, 2147483647, 'DK', 'Denmark'), +('217.147.243.56', '217.147.243.63', 2147483647, 2147483647, 'DE', 'Germany'), +('217.147.243.64', '217.147.243.71', 2147483647, 2147483647, 'PL', 'Poland'), +('217.147.243.72', '217.147.243.79', 2147483647, 2147483647, 'ES', 'Spain'), +('217.147.243.80', '217.147.243.87', 2147483647, 2147483647, 'BE', 'Belgium'), +('217.147.243.88', '217.147.243.95', 2147483647, 2147483647, 'ZA', 'South Africa'), +('217.147.243.96', '217.147.243.103', 2147483647, 2147483647, 'PT', 'Portugal'), +('217.147.243.104', '217.147.243.111', 2147483647, 2147483647, 'FI', 'Finland'), +('217.147.243.112', '217.147.243.119', 2147483647, 2147483647, 'NO', 'Norway'), +('217.147.243.120', '217.147.243.135', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.147.243.136', '217.147.243.143', 2147483647, 2147483647, 'IE', 'Ireland'), +('217.147.243.144', '217.147.243.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.147.244.0', '217.147.246.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.147.247.0', '217.147.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.148.0.0', '217.148.15.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('217.148.16.0', '217.148.31.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.148.32.0', '217.148.47.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.148.48.0', '217.148.63.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.148.64.0', '217.148.79.255', 2147483647, 2147483647, 'ES', 'Spain'), +('217.148.80.0', '217.148.95.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.148.96.0', '217.148.127.255', 2147483647, 2147483647, 'IT', 'Italy'), +('217.148.128.0', '217.148.143.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.148.144.0', '217.148.159.255', 2147483647, 2147483647, 'NO', 'Norway'), +('217.148.160.0', '217.148.191.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.148.192.0', '217.148.223.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.148.224.0', '217.148.239.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.148.240.0', '217.148.255.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('217.149.0.0', '217.149.15.255', 2147483647, 2147483647, 'ES', 'Spain'), +('217.149.16.0', '217.149.31.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.149.32.0', '217.149.47.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.149.48.0', '217.149.63.255', 2147483647, 2147483647, 'FI', 'Finland'), +('217.149.64.0', '217.149.79.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.149.80.0', '217.149.95.255', 2147483647, 2147483647, 'IT', 'Italy'), +('217.149.96.0', '217.149.111.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.149.112.0', '217.149.127.255', 2147483647, 2147483647, 'NO', 'Norway'), +('217.149.144.0', '217.149.159.255', 2147483647, 2147483647, 'ES', 'Spain'), +('217.149.160.0', '217.149.175.255', 2147483647, 2147483647, 'AT', 'Austria'), +('217.149.176.0', '217.149.191.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.149.192.0', '217.149.223.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.149.224.0', '217.149.239.255', 2147483647, 2147483647, 'AT', 'Austria'), +('217.149.240.0', '217.149.255.255', 2147483647, 2147483647, 'PL', 'Poland'), +('217.150.0.0', '217.150.63.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.150.64.0', '217.150.95.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('217.150.96.0', '217.150.127.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.150.128.0', '217.150.143.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('217.150.144.0', '217.150.159.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.150.160.0', '217.150.191.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('217.150.192.0', '217.150.207.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.150.208.0', '217.150.223.255', 2147483647, 2147483647, 'ES', 'Spain'), +('217.150.224.0', '217.150.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('217.151.0.0', '217.151.15.255', 2147483647, 2147483647, 'FR', 'France'), +('217.151.16.0', '217.151.31.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.151.32.0', '217.151.47.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.151.48.0', '217.151.63.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('217.151.64.0', '217.151.79.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.151.80.0', '217.151.95.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.151.96.0', '217.151.111.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.151.112.0', '217.151.127.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('217.151.128.0', '217.151.143.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.151.144.0', '217.151.159.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.151.160.0', '217.151.191.255', 2147483647, 2147483647, 'IS', 'Iceland'), +('217.151.192.0', '217.151.207.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('217.151.208.0', '217.151.224.127', 2147483647, 2147483647, 'DE', 'Germany'), +('217.151.224.128', '217.151.224.159', 2147483647, 2147483647, 'CY', 'Cyprus'), +('217.151.224.160', '217.151.224.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.151.225.0', '217.151.225.31', 2147483647, 2147483647, 'IQ', 'Iraq'), +('217.151.225.32', '217.151.225.39', 2147483647, 2147483647, 'KZ', 'Kazakstan'), +('217.151.225.40', '217.151.225.47', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.151.225.48', '217.151.225.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.151.226.0', '217.151.226.255', 2147483647, 2147483647, 'KZ', 'Kazakstan'), +('217.151.227.0', '217.151.227.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.151.228.0', '217.151.229.255', 2147483647, 2147483647, 'KZ', 'Kazakstan'), +('217.151.230.0', '217.151.230.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.151.231.0', '217.151.233.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.151.234.0', '217.151.237.255', 2147483647, 2147483647, 'KZ', 'Kazakstan'), +('217.151.238.0', '217.151.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.152.0.0', '217.152.7.139', 2147483647, 2147483647, 'FI', 'Finland'), +('217.152.7.140', '217.152.7.143', 2147483647, 2147483647, 'AX', 'Aland Islands'), +('217.152.7.144', '217.152.14.95', 2147483647, 2147483647, 'FI', 'Finland'), +('217.152.14.96', '217.152.14.99', 2147483647, 2147483647, 'AX', 'Aland Islands'), +('217.152.14.100', '217.152.255.255', 2147483647, 2147483647, 'FI', 'Finland'), +('217.153.0.0', '217.153.255.255', 2147483647, 2147483647, 'PL', 'Poland'), +('217.154.0.0', '217.154.159.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.154.160.0', '217.154.162.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.154.163.0', '217.155.51.87', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.155.51.88', '217.155.51.95', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('217.155.51.96', '217.155.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.156.0.0', '217.156.127.255', 2147483647, 2147483647, 'RO', 'Romania'), +('217.156.128.0', '217.156.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.157.0.0', '217.157.255.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('217.158.0.0', '217.158.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.159.0.0', '217.159.4.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.159.5.0', '217.159.6.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.159.7.0', '217.159.7.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('217.159.8.0', '217.159.8.255', 2147483647, 2147483647, 'ES', 'Spain'), +('217.159.9.0', '217.159.9.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('217.159.10.0', '217.159.10.127', 2147483647, 2147483647, 'ES', 'Spain'), +('217.159.10.128', '217.159.10.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.159.11.0', '217.159.14.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.159.14.128', '217.159.14.255', 2147483647, 2147483647, 'ES', 'Spain'), +('217.159.15.0', '217.159.15.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.159.16.0', '217.159.18.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.159.18.128', '217.159.19.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.159.20.0', '217.159.21.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.159.22.0', '217.159.22.255', 2147483647, 2147483647, 'AT', 'Austria'), +('217.159.23.0', '217.159.25.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.159.26.0', '217.159.26.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('217.159.27.0', '217.159.28.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.159.29.0', '217.159.29.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.159.30.0', '217.159.30.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('217.159.31.0', '217.159.32.255', 2147483647, 2147483647, 'FR', 'France'), +('217.159.33.0', '217.159.33.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('217.159.34.0', '217.159.35.255', 2147483647, 2147483647, 'ES', 'Spain'), +('217.159.36.0', '217.159.36.255', 2147483647, 2147483647, 'FR', 'France'), +('217.159.37.0', '217.159.38.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.159.39.0', '217.159.39.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('217.159.40.0', '217.159.40.127', 2147483647, 2147483647, 'DE', 'Germany'), +('217.159.40.128', '217.159.40.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('217.159.41.0', '217.159.41.127', 2147483647, 2147483647, 'GR', 'Greece'), +('217.159.41.128', '217.159.41.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.159.42.0', '217.159.42.255', 2147483647, 2147483647, 'FR', 'France'), +('217.159.43.0', '217.159.44.255', 2147483647, 2147483647, 'ES', 'Spain'), +('217.159.45.0', '217.159.45.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.159.46.0', '217.159.46.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.159.47.0', '217.159.47.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('217.159.48.0', '217.159.48.255', 2147483647, 2147483647, 'GR', 'Greece'), +('217.159.49.0', '217.159.49.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('217.159.50.0', '217.159.85.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.159.86.0', '217.159.86.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('217.159.87.0', '217.159.87.255', 2147483647, 2147483647, 'FR', 'France'), +('217.159.88.0', '217.159.98.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.159.99.0', '217.159.99.255', 2147483647, 2147483647, 'FR', 'France'), +('217.159.100.0', '217.159.100.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('217.159.101.0', '217.159.101.255', 2147483647, 2147483647, 'FR', 'France'), +('217.159.102.0', '217.159.103.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.159.104.0', '217.159.104.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.159.105.0', '217.159.105.255', 2147483647, 2147483647, 'SL', 'Sierra Leone'), +('217.159.106.0', '217.159.106.255', 2147483647, 2147483647, 'IT', 'Italy'), +('217.159.107.0', '217.159.107.255', 2147483647, 2147483647, 'FR', 'France'), +('217.159.108.0', '217.159.108.255', 2147483647, 2147483647, 'IT', 'Italy'), +('217.159.109.0', '217.159.110.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.159.111.0', '217.159.111.255', 2147483647, 2147483647, 'PL', 'Poland'), +('217.159.112.0', '217.159.114.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.159.115.0', '217.159.115.255', 2147483647, 2147483647, 'IT', 'Italy'), +('217.159.116.0', '217.159.116.255', 2147483647, 2147483647, 'ES', 'Spain'), +('217.159.117.0', '217.159.118.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.159.119.0', '217.159.119.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('217.159.120.0', '217.159.121.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.159.122.0', '217.159.122.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.159.123.0', '217.159.123.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.159.124.0', '217.159.124.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.159.124.128', '217.159.125.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('217.159.126.0', '217.159.126.127', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.159.126.128', '217.159.126.191', 2147483647, 2147483647, 'ES', 'Spain'), +('217.159.126.192', '217.159.127.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.159.128.0', '217.159.255.255', 2147483647, 2147483647, 'EE', 'Estonia'), +('217.160.0.0', '217.160.238.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.160.239.0', '217.160.239.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.160.240.0', '217.160.255.255', 2147483647, 2147483647, 'US', 'United States'), +('217.161.0.0', '217.161.0.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.161.0.32', '217.161.0.55', 2147483647, 2147483647, 'EU', 'Europe'), +('217.161.0.56', '217.161.0.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.161.0.128', '217.161.0.255', 2147483647, 2147483647, 'EU', 'Europe'), +('217.161.1.0', '217.161.1.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.161.1.192', '217.161.1.223', 2147483647, 2147483647, 'EU', 'Europe'), +('217.161.1.224', '217.161.6.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.161.7.0', '217.161.7.255', 2147483647, 2147483647, 'EU', 'Europe'), +('217.161.8.0', '217.161.8.15', 2147483647, 2147483647, 'US', 'United States'), +('217.161.8.16', '217.161.8.23', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.161.8.24', '217.161.8.27', 2147483647, 2147483647, 'DE', 'Germany'), +('217.161.8.28', '217.161.8.255', 2147483647, 2147483647, 'EU', 'Europe'), +('217.161.9.0', '217.161.13.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.161.14.0', '217.161.15.255', 2147483647, 2147483647, 'EU', 'Europe'), +('217.161.16.0', '217.161.17.255', 2147483647, 2147483647, 'IR', 'Iran, Islamic Republic of'), +('217.161.18.0', '217.161.25.255', 2147483647, 2147483647, 'EU', 'Europe'), +('217.161.26.0', '217.161.27.127', 2147483647, 2147483647, 'US', 'United States'), +('217.161.27.128', '217.161.31.255', 2147483647, 2147483647, 'EU', 'Europe'), +('217.161.32.0', '217.161.32.35', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.161.32.36', '217.161.32.255', 2147483647, 2147483647, 'EU', 'Europe'), +('217.161.33.0', '217.161.33.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.161.34.0', '217.161.39.255', 2147483647, 2147483647, 'EU', 'Europe'), +('217.161.40.0', '217.161.40.127', 2147483647, 2147483647, 'GI', 'Gibraltar'), +('217.161.40.128', '217.161.47.255', 2147483647, 2147483647, 'EU', 'Europe'), +('217.161.48.0', '217.161.49.255', 2147483647, 2147483647, 'US', 'United States'), +('217.161.50.0', '217.161.51.159', 2147483647, 2147483647, 'EU', 'Europe'), +('217.161.51.160', '217.161.51.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.161.52.0', '217.161.55.255', 2147483647, 2147483647, 'EU', 'Europe'), +('217.161.56.0', '217.161.56.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.161.56.192', '217.161.63.255', 2147483647, 2147483647, 'EU', 'Europe'), +('217.161.64.0', '217.161.64.15', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.161.64.16', '217.161.64.31', 2147483647, 2147483647, 'EU', 'Europe'), +('217.161.64.32', '217.161.64.55', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.161.64.56', '217.161.64.95', 2147483647, 2147483647, 'EU', 'Europe'), +('217.161.64.96', '217.161.64.111', 2147483647, 2147483647, 'ES', 'Spain'), +('217.161.64.112', '217.161.77.255', 2147483647, 2147483647, 'EU', 'Europe'), +('217.161.78.0', '217.161.78.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.161.79.0', '217.161.91.255', 2147483647, 2147483647, 'EU', 'Europe'), +('217.161.92.0', '217.161.95.255', 2147483647, 2147483647, 'MU', 'Mauritius'), +('217.161.96.0', '217.161.97.255', 2147483647, 2147483647, 'EU', 'Europe'), +('217.161.98.0', '217.161.98.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.161.98.32', '217.161.98.63', 2147483647, 2147483647, 'EU', 'Europe'), +('217.161.98.64', '217.161.98.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.161.98.128', '217.161.98.191', 2147483647, 2147483647, 'EU', 'Europe'), +('217.161.98.192', '217.161.98.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.161.99.0', '217.161.103.255', 2147483647, 2147483647, 'EU', 'Europe'), +('217.161.104.0', '217.161.104.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.161.104.64', '217.161.112.191', 2147483647, 2147483647, 'EU', 'Europe'), +('217.161.112.192', '217.161.112.223', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.161.112.224', '217.161.115.255', 2147483647, 2147483647, 'EU', 'Europe'), +('217.161.116.0', '217.161.118.255', 2147483647, 2147483647, 'SC', 'Seychelles'), +('217.161.119.0', '217.161.119.255', 2147483647, 2147483647, 'EU', 'Europe'), +('217.161.120.0', '217.161.121.255', 2147483647, 2147483647, 'SC', 'Seychelles'), +('217.161.122.0', '217.161.127.255', 2147483647, 2147483647, 'EU', 'Europe'), +('217.161.128.0', '217.161.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.162.0.0', '217.162.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('217.163.0.0', '217.163.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.164.0.0', '217.165.255.255', 2147483647, 2147483647, 'AE', 'United Arab Emirates'), +('217.166.0.0', '217.166.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.167.0.0', '217.167.141.216', 2147483647, 2147483647, 'FR', 'France'), +('217.167.141.217', '217.167.141.217', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.167.141.218', '217.167.255.255', 2147483647, 2147483647, 'FR', 'France'), +('217.168.0.0', '217.168.15.255', 2147483647, 2147483647, 'ES', 'Spain'), +('217.168.16.0', '217.168.31.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.168.32.0', '217.168.63.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('217.168.64.0', '217.168.79.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.168.80.0', '217.168.95.255', 2147483647, 2147483647, 'NO', 'Norway'), +('217.168.96.0', '217.168.111.255', 2147483647, 2147483647, 'FR', 'France'), +('217.168.112.0', '217.168.112.127', 2147483647, 2147483647, 'GH', 'Ghana'), +('217.168.112.128', '217.168.112.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('217.168.113.0', '217.168.113.127', 2147483647, 2147483647, 'NG', 'Nigeria'), +('217.168.113.128', '217.168.113.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('217.168.114.0', '217.168.114.255', 2147483647, 2147483647, 'CV', 'Cape Verde'), +('217.168.115.0', '217.168.115.255', 2147483647, 2147483647, 'AO', 'Angola'), +('217.168.116.0', '217.168.119.255', 2147483647, 2147483647, 'PT', 'Portugal'), +('217.168.120.0', '217.168.127.255', 2147483647, 2147483647, 'AO', 'Angola'), +('217.168.128.0', '217.168.143.255', 2147483647, 2147483647, 'PL', 'Poland'), +('217.168.144.0', '217.168.159.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.168.160.0', '217.168.175.255', 2147483647, 2147483647, 'MT', 'Malta'), +('217.168.176.0', '217.168.191.255', 2147483647, 2147483647, 'AZ', 'Azerbaijan'), +('217.168.192.0', '217.168.207.255', 2147483647, 2147483647, 'PL', 'Poland'), +('217.168.208.0', '217.168.223.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('217.168.224.0', '217.168.239.255', 2147483647, 2147483647, 'IT', 'Italy'), +('217.168.240.0', '217.168.255.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.169.0.0', '217.169.63.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.169.64.0', '217.169.79.255', 2147483647, 2147483647, 'FI', 'Finland'), +('217.169.80.0', '217.169.95.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.169.96.0', '217.169.127.255', 2147483647, 2147483647, 'IT', 'Italy'), +('217.169.128.0', '217.169.159.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('217.169.160.0', '217.169.175.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.169.176.0', '217.169.191.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('217.169.192.0', '217.169.207.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('217.169.208.0', '217.169.223.255', 2147483647, 2147483647, 'RS', 'Serbia'), +('217.169.224.0', '217.169.239.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.169.240.0', '217.169.255.255', 2147483647, 2147483647, 'FR', 'France'), +('217.170.0.0', '217.170.63.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.170.64.0', '217.170.95.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.170.96.0', '217.170.111.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('217.170.112.0', '217.170.127.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.170.128.0', '217.170.143.255', 2147483647, 2147483647, 'NO', 'Norway'), +('217.170.144.0', '217.170.159.255', 2147483647, 2147483647, 'ML', 'Mali'), +('217.170.160.0', '217.170.175.255', 2147483647, 2147483647, 'PL', 'Poland'), +('217.170.176.0', '217.170.191.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.170.192.0', '217.170.207.255', 2147483647, 2147483647, 'NO', 'Norway'), +('217.170.208.0', '217.170.223.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.170.224.0', '217.170.239.255', 2147483647, 2147483647, 'IT', 'Italy'), +('217.170.240.0', '217.170.240.255', 2147483647, 2147483647, 'RS', 'Serbia'), +('217.170.241.0', '217.170.241.255', 2147483647, 2147483647, 'SC', 'Seychelles'), +('217.170.242.0', '217.170.255.255', 2147483647, 2147483647, 'RS', 'Serbia'), +('217.171.0.0', '217.171.15.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.171.16.0', '217.171.31.255', 2147483647, 2147483647, 'FR', 'France'), +('217.171.32.0', '217.171.47.255', 2147483647, 2147483647, 'IT', 'Italy'), +('217.171.48.0', '217.171.63.255', 2147483647, 2147483647, 'PL', 'Poland'), +('217.171.64.0', '217.171.79.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.171.80.0', '217.171.95.255', 2147483647, 2147483647, 'BE', 'Belgium'), +('217.171.96.0', '217.171.111.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.171.112.0', '217.171.127.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.171.128.0', '217.171.143.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.171.144.0', '217.171.159.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.171.160.0', '217.171.175.255', 2147483647, 2147483647, 'IT', 'Italy'), +('217.171.176.0', '217.171.181.127', 2147483647, 2147483647, 'IQ', 'Iraq'), +('217.171.181.128', '217.171.182.191', 2147483647, 2147483647, 'DE', 'Germany'), +('217.171.182.192', '217.171.182.255', 2147483647, 2147483647, 'IQ', 'Iraq'), +('217.171.183.0', '217.171.183.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.171.184.0', '217.171.187.255', 2147483647, 2147483647, 'IQ', 'Iraq'), +('217.171.188.0', '217.171.188.127', 2147483647, 2147483647, 'DE', 'Germany'), +('217.171.188.128', '217.171.189.255', 2147483647, 2147483647, 'IQ', 'Iraq'), +('217.171.190.0', '217.171.191.199', 2147483647, 2147483647, 'DE', 'Germany'), +('217.171.191.200', '217.171.191.207', 2147483647, 2147483647, 'IQ', 'Iraq'), +('217.171.191.208', '217.171.191.219', 2147483647, 2147483647, 'DE', 'Germany'), +('217.171.191.220', '217.171.191.223', 2147483647, 2147483647, 'IR', 'Iran, Islamic Republic of'), +('217.171.191.224', '217.171.207.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.171.208.0', '217.171.223.255', 2147483647, 2147483647, 'IS', 'Iceland'), +('217.171.224.0', '217.171.239.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.171.240.0', '217.171.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.172.0.0', '217.172.15.255', 2147483647, 2147483647, 'IT', 'Italy'), +('217.172.16.0', '217.172.31.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.172.32.0', '217.172.39.127', 2147483647, 2147483647, 'DE', 'Germany'), +('217.172.39.128', '217.172.39.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.172.39.160', '217.172.39.207', 2147483647, 2147483647, 'DE', 'Germany'), +('217.172.39.208', '217.172.39.223', 2147483647, 2147483647, 'PL', 'Poland'), +('217.172.39.224', '217.172.42.127', 2147483647, 2147483647, 'DE', 'Germany'), +('217.172.42.128', '217.172.42.143', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.172.42.144', '217.172.42.159', 2147483647, 2147483647, 'DE', 'Germany'), +('217.172.42.160', '217.172.42.191', 2147483647, 2147483647, 'TR', 'Turkey'), +('217.172.42.192', '217.172.42.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.172.43.0', '217.172.43.15', 2147483647, 2147483647, 'SE', 'Sweden'), +('217.172.43.16', '217.172.43.63', 2147483647, 2147483647, 'DE', 'Germany'), +('217.172.43.64', '217.172.43.79', 2147483647, 2147483647, 'PL', 'Poland'), +('217.172.43.80', '217.172.43.95', 2147483647, 2147483647, 'DE', 'Germany'), +('217.172.43.96', '217.172.43.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.172.43.160', '217.172.43.191', 2147483647, 2147483647, 'DE', 'Germany'), +('217.172.43.192', '217.172.43.223', 2147483647, 2147483647, 'IT', 'Italy'), +('217.172.43.224', '217.172.43.255', 2147483647, 2147483647, 'PL', 'Poland'), +('217.172.44.0', '217.172.44.63', 2147483647, 2147483647, 'IT', 'Italy'), +('217.172.44.64', '217.172.44.175', 2147483647, 2147483647, 'DE', 'Germany'), +('217.172.44.176', '217.172.44.183', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.172.44.184', '217.172.44.191', 2147483647, 2147483647, 'DE', 'Germany'), +('217.172.44.192', '217.172.44.199', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.172.44.200', '217.172.44.255', 2147483647, 2147483647, 'PL', 'Poland'), +('217.172.45.0', '217.172.45.63', 2147483647, 2147483647, 'DE', 'Germany'), +('217.172.45.64', '217.172.45.127', 2147483647, 2147483647, 'ES', 'Spain'), +('217.172.45.128', '217.172.45.143', 2147483647, 2147483647, 'DE', 'Germany'), +('217.172.45.144', '217.172.45.159', 2147483647, 2147483647, 'PL', 'Poland'), +('217.172.45.160', '217.172.45.207', 2147483647, 2147483647, 'DE', 'Germany'), +('217.172.45.208', '217.172.45.215', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.172.45.216', '217.172.47.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.172.48.0', '217.172.48.31', 2147483647, 2147483647, 'TR', 'Turkey'), +('217.172.48.32', '217.172.48.63', 2147483647, 2147483647, 'US', 'United States'), +('217.172.48.64', '217.172.48.127', 2147483647, 2147483647, 'IT', 'Italy'), +('217.172.48.128', '217.172.48.191', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.172.48.192', '217.172.49.31', 2147483647, 2147483647, 'DE', 'Germany'), +('217.172.49.32', '217.172.49.63', 2147483647, 2147483647, 'BS', 'Bahamas'), +('217.172.49.64', '217.172.49.127', 2147483647, 2147483647, 'DE', 'Germany'), +('217.172.49.128', '217.172.49.135', 2147483647, 2147483647, 'AU', 'Australia'), +('217.172.49.136', '217.172.49.143', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.172.49.144', '217.172.49.191', 2147483647, 2147483647, 'DE', 'Germany'), +('217.172.49.192', '217.172.49.255', 2147483647, 2147483647, 'ES', 'Spain'), +('217.172.50.0', '217.172.50.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.172.50.64', '217.172.50.127', 2147483647, 2147483647, 'IT', 'Italy'), +('217.172.50.128', '217.172.50.163', 2147483647, 2147483647, 'DE', 'Germany'), +('217.172.50.164', '217.172.50.191', 2147483647, 2147483647, 'TR', 'Turkey'), +('217.172.50.192', '217.172.50.223', 2147483647, 2147483647, 'DE', 'Germany'), +('217.172.50.224', '217.172.50.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.172.51.0', '217.172.51.63', 2147483647, 2147483647, 'DE', 'Germany'), +('217.172.51.64', '217.172.51.95', 2147483647, 2147483647, 'IT', 'Italy'), +('217.172.51.96', '217.172.51.129', 2147483647, 2147483647, 'TR', 'Turkey'), +('217.172.51.130', '217.172.53.63', 2147483647, 2147483647, 'DE', 'Germany'), +('217.172.53.64', '217.172.53.127', 2147483647, 2147483647, 'IT', 'Italy'), +('217.172.53.128', '217.172.56.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.172.57.0', '217.172.57.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.172.57.64', '217.172.57.79', 2147483647, 2147483647, 'SE', 'Sweden'), +('217.172.57.80', '217.172.57.95', 2147483647, 2147483647, 'US', 'United States'), +('217.172.57.96', '217.172.57.127', 2147483647, 2147483647, 'DE', 'Germany'), +('217.172.57.128', '217.172.57.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.172.57.160', '217.172.63.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.172.64.0', '217.172.79.255', 2147483647, 2147483647, 'ES', 'Spain'), +('217.172.80.0', '217.172.95.255', 2147483647, 2147483647, 'FO', 'Faroe Islands'), +('217.172.96.0', '217.172.101.255', 2147483647, 2147483647, 'IR', 'Iran, Islamic Republic of'), +('217.172.102.0', '217.172.102.255', 2147483647, 2147483647, 'AE', 'United Arab Emirates'), +('217.172.103.0', '217.172.117.255', 2147483647, 2147483647, 'IR', 'Iran, Islamic Republic of'), +('217.172.118.0', '217.172.119.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('217.172.120.0', '217.172.127.255', 2147483647, 2147483647, 'IR', 'Iran, Islamic Republic of'), +('217.172.128.0', '217.172.143.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.172.144.0', '217.172.159.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('217.172.160.0', '217.172.191.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.172.192.0', '217.172.223.255', 2147483647, 2147483647, 'IT', 'Italy'), +('217.172.224.0', '217.172.255.255', 2147483647, 2147483647, 'PL', 'Poland'), +('217.173.0.0', '217.173.31.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.173.32.0', '217.173.47.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('217.173.48.0', '217.173.63.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.173.64.0', '217.173.69.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.173.70.0', '217.173.70.255', 2147483647, 2147483647, 'IT', 'Italy'), +('217.173.71.0', '217.173.79.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.173.80.0', '217.173.95.255', 2147483647, 2147483647, 'SA', 'Saudi Arabia'), +('217.173.96.0', '217.173.96.63', 2147483647, 2147483647, 'IE', 'Ireland'), +('217.173.96.64', '217.173.98.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.173.99.0', '217.173.99.223', 2147483647, 2147483647, 'IE', 'Ireland'), +('217.173.99.224', '217.173.99.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.173.100.0', '217.173.100.223', 2147483647, 2147483647, 'IE', 'Ireland'), +('217.173.100.224', '217.173.101.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.173.101.128', '217.173.101.143', 2147483647, 2147483647, 'IE', 'Ireland'), +('217.173.101.144', '217.173.101.159', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.173.101.160', '217.173.101.207', 2147483647, 2147483647, 'IE', 'Ireland'), +('217.173.101.208', '217.173.102.63', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.173.102.64', '217.173.102.79', 2147483647, 2147483647, 'IE', 'Ireland'), +('217.173.102.80', '217.173.102.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.173.102.96', '217.173.102.103', 2147483647, 2147483647, 'IE', 'Ireland'), +('217.173.102.104', '217.173.102.175', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.173.102.176', '217.173.102.223', 2147483647, 2147483647, 'IE', 'Ireland'), +('217.173.102.224', '217.173.102.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.173.102.240', '217.173.102.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('217.173.103.0', '217.173.104.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.173.105.0', '217.173.105.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('217.173.106.0', '217.173.106.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.173.106.32', '217.173.106.63', 2147483647, 2147483647, 'IE', 'Ireland'), +('217.173.106.64', '217.173.106.127', 2147483647, 2147483647, 'DE', 'Germany'), +('217.173.106.128', '217.173.106.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('217.173.107.0', '217.173.110.31', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.173.110.32', '217.173.110.127', 2147483647, 2147483647, 'IE', 'Ireland'), +('217.173.110.128', '217.173.111.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.173.112.0', '217.173.127.255', 2147483647, 2147483647, 'ES', 'Spain'), +('217.173.128.0', '217.173.134.127', 2147483647, 2147483647, 'DE', 'Germany'), +('217.173.134.128', '217.173.134.159', 2147483647, 2147483647, 'US', 'United States'), +('217.173.134.160', '217.173.134.191', 2147483647, 2147483647, 'CH', 'Switzerland'), +('217.173.134.192', '217.173.135.63', 2147483647, 2147483647, 'DE', 'Germany'), +('217.173.135.64', '217.173.135.95', 2147483647, 2147483647, 'ES', 'Spain'), +('217.173.135.96', '217.173.148.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.173.149.0', '217.173.149.255', 2147483647, 2147483647, 'US', 'United States'), +('217.173.150.0', '217.173.152.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.173.153.0', '217.173.156.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.173.157.0', '217.173.157.63', 2147483647, 2147483647, 'GD', 'Grenada'), +('217.173.157.64', '217.173.157.95', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.173.157.96', '217.173.157.127', 2147483647, 2147483647, 'VG', 'Virgin Islands, British'), +('217.173.157.128', '217.173.157.143', 2147483647, 2147483647, 'TR', 'Turkey'), +('217.173.157.144', '217.173.157.159', 2147483647, 2147483647, 'DE', 'Germany'), +('217.173.157.160', '217.173.157.175', 2147483647, 2147483647, 'CH', 'Switzerland'), +('217.173.157.176', '217.173.157.191', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.173.157.192', '217.173.157.223', 2147483647, 2147483647, 'TR', 'Turkey'), +('217.173.157.224', '217.173.157.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.173.158.0', '217.173.158.63', 2147483647, 2147483647, 'GD', 'Grenada'), +('217.173.158.64', '217.173.158.95', 2147483647, 2147483647, 'TR', 'Turkey'), +('217.173.158.96', '217.173.158.127', 2147483647, 2147483647, 'CH', 'Switzerland'), +('217.173.158.128', '217.173.158.159', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.173.158.160', '217.173.158.191', 2147483647, 2147483647, 'ES', 'Spain'), +('217.173.158.192', '217.173.158.223', 2147483647, 2147483647, 'VG', 'Virgin Islands, British'), +('217.173.158.224', '217.173.159.63', 2147483647, 2147483647, 'GD', 'Grenada'), +('217.173.159.64', '217.173.159.79', 2147483647, 2147483647, 'ES', 'Spain'), +('217.173.159.80', '217.173.159.95', 2147483647, 2147483647, 'VG', 'Virgin Islands, British'), +('217.173.159.96', '217.173.159.255', 2147483647, 2147483647, 'GD', 'Grenada'), +('217.173.160.0', '217.173.207.255', 2147483647, 2147483647, 'PL', 'Poland'), +('217.173.208.0', '217.173.222.67', 2147483647, 2147483647, 'IE', 'Ireland'), +('217.173.222.68', '217.173.222.71', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.173.222.72', '217.173.222.95', 2147483647, 2147483647, 'IE', 'Ireland'), +('217.173.222.96', '217.173.222.103', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.173.222.104', '217.173.222.135', 2147483647, 2147483647, 'IE', 'Ireland'), +('217.173.222.136', '217.173.222.183', 2147483647, 2147483647, 'GB', 'United Kingdom'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('217.173.222.184', '217.173.222.187', 2147483647, 2147483647, 'IE', 'Ireland'), +('217.173.222.188', '217.173.222.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.173.222.240', '217.173.222.247', 2147483647, 2147483647, 'IE', 'Ireland'), +('217.173.222.248', '217.173.222.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.173.223.0', '217.173.223.99', 2147483647, 2147483647, 'IE', 'Ireland'), +('217.173.223.100', '217.173.223.103', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.173.223.104', '217.173.223.255', 2147483647, 2147483647, 'IE', 'Ireland'), +('217.173.224.0', '217.173.239.255', 2147483647, 2147483647, 'LI', 'Liechtenstein'), +('217.173.240.0', '217.173.255.255', 2147483647, 2147483647, 'NO', 'Norway'), +('217.174.0.0', '217.174.15.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.174.16.0', '217.174.31.255', 2147483647, 2147483647, 'IR', 'Iran, Islamic Republic of'), +('217.174.32.0', '217.174.47.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('217.174.48.0', '217.174.63.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('217.174.64.0', '217.174.95.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('217.174.96.0', '217.174.111.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.174.112.0', '217.174.143.255', 2147483647, 2147483647, 'IT', 'Italy'), +('217.174.144.0', '217.174.159.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('217.174.160.0', '217.174.180.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.174.181.0', '217.174.181.63', 2147483647, 2147483647, 'US', 'United States'), +('217.174.181.64', '217.174.191.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.174.192.0', '217.174.223.255', 2147483647, 2147483647, 'FR', 'France'), +('217.174.224.0', '217.174.239.255', 2147483647, 2147483647, 'TM', 'Turkmenistan'), +('217.174.240.0', '217.174.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.175.0.0', '217.175.15.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('217.175.16.0', '217.175.47.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.175.48.0', '217.175.63.255', 2147483647, 2147483647, 'IT', 'Italy'), +('217.175.64.0', '217.175.79.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.175.80.0', '217.175.95.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('217.175.96.0', '217.175.111.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.175.112.0', '217.175.127.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('217.175.128.0', '217.175.159.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.175.160.0', '217.175.191.255', 2147483647, 2147483647, 'FR', 'France'), +('217.175.192.0', '217.175.207.255', 2147483647, 2147483647, 'AT', 'Austria'), +('217.175.208.0', '217.175.223.255', 2147483647, 2147483647, 'CY', 'Cyprus'), +('217.175.224.0', '217.175.225.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.175.226.0', '217.175.226.255', 2147483647, 2147483647, 'AT', 'Austria'), +('217.175.227.0', '217.175.241.223', 2147483647, 2147483647, 'DE', 'Germany'), +('217.175.241.224', '217.175.241.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('217.175.242.0', '217.175.242.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.175.243.0', '217.175.243.127', 2147483647, 2147483647, 'AT', 'Austria'), +('217.175.243.128', '217.175.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.176.0.0', '217.183.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.184.0.0', '217.188.32.95', 2147483647, 2147483647, 'DE', 'Germany'), +('217.188.32.96', '217.188.32.103', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.188.32.104', '217.188.32.207', 2147483647, 2147483647, 'DE', 'Germany'), +('217.188.32.208', '217.188.32.211', 2147483647, 2147483647, 'FR', 'France'), +('217.188.32.212', '217.188.243.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.188.244.0', '217.188.244.255', 2147483647, 2147483647, 'IT', 'Italy'), +('217.188.245.0', '217.191.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.192.0.0', '217.193.255.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('217.194.0.0', '217.194.15.255', 2147483647, 2147483647, 'IT', 'Italy'), +('217.194.16.0', '217.194.31.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.194.32.0', '217.194.47.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.194.48.0', '217.194.63.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('217.194.64.0', '217.194.79.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.194.80.0', '217.194.95.255', 2147483647, 2147483647, 'FR', 'France'), +('217.194.96.0', '217.194.127.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.194.128.0', '217.194.129.255', 2147483647, 2147483647, 'AT', 'Austria'), +('217.194.130.0', '217.194.131.255', 2147483647, 2147483647, 'CD', 'Congo, The Democratic Republic of the'), +('217.194.132.0', '217.194.132.255', 2147483647, 2147483647, 'ZW', 'Zimbabwe'), +('217.194.133.0', '217.194.133.7', 2147483647, 2147483647, 'UA', 'Ukraine'), +('217.194.133.8', '217.194.133.15', 2147483647, 2147483647, 'IQ', 'Iraq'), +('217.194.133.16', '217.194.133.27', 2147483647, 2147483647, 'UA', 'Ukraine'), +('217.194.133.28', '217.194.133.31', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('217.194.133.32', '217.194.133.39', 2147483647, 2147483647, 'IQ', 'Iraq'), +('217.194.133.40', '217.194.133.47', 2147483647, 2147483647, 'LB', 'Lebanon'), +('217.194.133.48', '217.194.133.55', 2147483647, 2147483647, 'IQ', 'Iraq'), +('217.194.133.56', '217.194.133.63', 2147483647, 2147483647, 'MW', 'Malawi'), +('217.194.133.64', '217.194.133.79', 2147483647, 2147483647, 'NG', 'Nigeria'), +('217.194.133.80', '217.194.133.95', 2147483647, 2147483647, 'UA', 'Ukraine'), +('217.194.133.96', '217.194.133.104', 2147483647, 2147483647, 'LB', 'Lebanon'), +('217.194.133.105', '217.194.133.111', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('217.194.133.112', '217.194.133.119', 2147483647, 2147483647, 'LB', 'Lebanon'), +('217.194.133.120', '217.194.133.127', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('217.194.133.128', '217.194.133.135', 2147483647, 2147483647, 'NA', 'Namibia'), +('217.194.133.136', '217.194.133.151', 2147483647, 2147483647, 'IQ', 'Iraq'), +('217.194.133.152', '217.194.133.159', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('217.194.133.160', '217.194.133.167', 2147483647, 2147483647, 'LB', 'Lebanon'), +('217.194.133.168', '217.194.133.175', 2147483647, 2147483647, 'AO', 'Angola'), +('217.194.133.176', '217.194.133.183', 2147483647, 2147483647, 'UA', 'Ukraine'), +('217.194.133.184', '217.194.133.191', 2147483647, 2147483647, 'LB', 'Lebanon'), +('217.194.133.192', '217.194.133.199', 2147483647, 2147483647, 'IQ', 'Iraq'), +('217.194.133.200', '217.194.133.207', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('217.194.133.208', '217.194.133.215', 2147483647, 2147483647, 'MD', 'Moldova, Republic of'), +('217.194.133.216', '217.194.133.223', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('217.194.133.224', '217.194.133.231', 2147483647, 2147483647, 'RS', 'Serbia'), +('217.194.133.232', '217.194.133.239', 2147483647, 2147483647, 'LY', 'Libyan Arab Jamahiriya'), +('217.194.133.240', '217.194.133.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('217.194.134.0', '217.194.134.255', 2147483647, 2147483647, 'AT', 'Austria'), +('217.194.135.0', '217.194.135.127', 2147483647, 2147483647, 'IQ', 'Iraq'), +('217.194.135.128', '217.194.135.143', 2147483647, 2147483647, 'NG', 'Nigeria'), +('217.194.135.144', '217.194.135.151', 2147483647, 2147483647, 'IQ', 'Iraq'), +('217.194.135.152', '217.194.135.159', 2147483647, 2147483647, 'LY', 'Libyan Arab Jamahiriya'), +('217.194.135.160', '217.194.135.175', 2147483647, 2147483647, 'TR', 'Turkey'), +('217.194.135.176', '217.194.135.183', 2147483647, 2147483647, 'GH', 'Ghana'), +('217.194.135.184', '217.194.135.191', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('217.194.135.192', '217.194.135.239', 2147483647, 2147483647, 'UA', 'Ukraine'), +('217.194.135.240', '217.194.135.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('217.194.136.0', '217.194.136.7', 2147483647, 2147483647, 'TR', 'Turkey'), +('217.194.136.8', '217.194.136.15', 2147483647, 2147483647, 'IQ', 'Iraq'), +('217.194.136.16', '217.194.136.35', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('217.194.136.36', '217.194.136.41', 2147483647, 2147483647, 'IQ', 'Iraq'), +('217.194.136.42', '217.194.136.47', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('217.194.136.48', '217.194.136.63', 2147483647, 2147483647, 'LB', 'Lebanon'), +('217.194.136.64', '217.194.136.79', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('217.194.136.80', '217.194.136.87', 2147483647, 2147483647, 'AM', 'Armenia'), +('217.194.136.88', '217.194.136.111', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('217.194.136.112', '217.194.136.119', 2147483647, 2147483647, 'IQ', 'Iraq'), +('217.194.136.120', '217.194.136.127', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('217.194.136.128', '217.194.136.135', 2147483647, 2147483647, 'IQ', 'Iraq'), +('217.194.136.136', '217.194.136.143', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('217.194.136.144', '217.194.136.159', 2147483647, 2147483647, 'LB', 'Lebanon'), +('217.194.136.160', '217.194.136.175', 2147483647, 2147483647, 'NG', 'Nigeria'), +('217.194.136.176', '217.194.136.183', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('217.194.136.184', '217.194.136.191', 2147483647, 2147483647, 'SL', 'Sierra Leone'), +('217.194.136.192', '217.194.136.199', 2147483647, 2147483647, 'LY', 'Libyan Arab Jamahiriya'), +('217.194.136.200', '217.194.136.207', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('217.194.136.208', '217.194.136.215', 2147483647, 2147483647, 'UA', 'Ukraine'), +('217.194.136.216', '217.194.136.231', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('217.194.136.232', '217.194.136.239', 2147483647, 2147483647, 'IQ', 'Iraq'), +('217.194.136.240', '217.194.136.247', 2147483647, 2147483647, 'LY', 'Libyan Arab Jamahiriya'), +('217.194.136.248', '217.194.137.23', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('217.194.137.24', '217.194.137.31', 2147483647, 2147483647, 'IQ', 'Iraq'), +('217.194.137.32', '217.194.137.47', 2147483647, 2147483647, 'UA', 'Ukraine'), +('217.194.137.48', '217.194.137.55', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('217.194.137.56', '217.194.137.63', 2147483647, 2147483647, 'AM', 'Armenia'), +('217.194.137.64', '217.194.137.79', 2147483647, 2147483647, 'IQ', 'Iraq'), +('217.194.137.80', '217.194.137.103', 2147483647, 2147483647, 'LB', 'Lebanon'), +('217.194.137.104', '217.194.137.111', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('217.194.137.112', '217.194.137.119', 2147483647, 2147483647, 'LB', 'Lebanon'), +('217.194.137.120', '217.194.137.143', 2147483647, 2147483647, 'IQ', 'Iraq'), +('217.194.137.144', '217.194.137.159', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('217.194.137.160', '217.194.137.167', 2147483647, 2147483647, 'LY', 'Libyan Arab Jamahiriya'), +('217.194.137.168', '217.194.137.175', 2147483647, 2147483647, 'NG', 'Nigeria'), +('217.194.137.176', '217.194.137.191', 2147483647, 2147483647, 'CY', 'Cyprus'), +('217.194.137.192', '217.194.137.207', 2147483647, 2147483647, 'AM', 'Armenia'), +('217.194.137.208', '217.194.137.223', 2147483647, 2147483647, 'UA', 'Ukraine'), +('217.194.137.224', '217.194.137.239', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('217.194.137.240', '217.194.137.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('217.194.138.0', '217.194.138.255', 2147483647, 2147483647, 'AT', 'Austria'), +('217.194.139.0', '217.194.139.255', 2147483647, 2147483647, 'IQ', 'Iraq'), +('217.194.140.0', '217.194.145.31', 2147483647, 2147483647, 'NG', 'Nigeria'), +('217.194.145.32', '217.194.145.39', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('217.194.145.40', '217.194.145.47', 2147483647, 2147483647, 'UG', 'Uganda'), +('217.194.145.48', '217.194.145.55', 2147483647, 2147483647, 'KE', 'Kenya'), +('217.194.145.56', '217.194.145.63', 2147483647, 2147483647, 'ZW', 'Zimbabwe'), +('217.194.145.64', '217.194.145.95', 2147483647, 2147483647, 'NG', 'Nigeria'), +('217.194.145.96', '217.194.145.111', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('217.194.145.112', '217.194.145.119', 2147483647, 2147483647, 'NG', 'Nigeria'), +('217.194.145.120', '217.194.145.127', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('217.194.145.128', '217.194.145.135', 2147483647, 2147483647, 'UG', 'Uganda'), +('217.194.145.136', '217.194.145.143', 2147483647, 2147483647, 'ZM', 'Zambia'), +('217.194.145.144', '217.194.145.151', 2147483647, 2147483647, 'ZW', 'Zimbabwe'), +('217.194.145.152', '217.194.145.175', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('217.194.145.176', '217.194.145.183', 2147483647, 2147483647, 'KE', 'Kenya'), +('217.194.145.184', '217.194.145.191', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('217.194.145.192', '217.194.145.255', 2147483647, 2147483647, 'NG', 'Nigeria'), +('217.194.146.0', '217.194.146.127', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('217.194.146.128', '217.194.146.143', 2147483647, 2147483647, 'NG', 'Nigeria'), +('217.194.146.144', '217.194.146.151', 2147483647, 2147483647, 'UG', 'Uganda'), +('217.194.146.152', '217.194.146.159', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('217.194.146.160', '217.194.146.167', 2147483647, 2147483647, 'NG', 'Nigeria'), +('217.194.146.168', '217.194.146.191', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('217.194.146.192', '217.194.146.255', 2147483647, 2147483647, 'ZW', 'Zimbabwe'), +('217.194.147.0', '217.194.147.127', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('217.194.147.128', '217.194.147.151', 2147483647, 2147483647, 'NG', 'Nigeria'), +('217.194.147.152', '217.194.147.159', 2147483647, 2147483647, 'ZM', 'Zambia'), +('217.194.147.160', '217.194.147.191', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('217.194.147.192', '217.194.147.207', 2147483647, 2147483647, 'UG', 'Uganda'), +('217.194.147.208', '217.194.147.215', 2147483647, 2147483647, 'CD', 'Congo, The Democratic Republic of the'), +('217.194.147.216', '217.194.147.223', 2147483647, 2147483647, 'NG', 'Nigeria'), +('217.194.147.224', '217.194.147.239', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('217.194.147.240', '217.194.147.255', 2147483647, 2147483647, 'ZW', 'Zimbabwe'), +('217.194.148.0', '217.194.148.255', 2147483647, 2147483647, 'AT', 'Austria'), +('217.194.149.0', '217.194.149.23', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('217.194.149.24', '217.194.149.31', 2147483647, 2147483647, 'UG', 'Uganda'), +('217.194.149.32', '217.194.149.47', 2147483647, 2147483647, 'ZW', 'Zimbabwe'), +('217.194.149.48', '217.194.149.55', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('217.194.149.56', '217.194.149.63', 2147483647, 2147483647, 'TZ', 'Tanzania, United Republic of'), +('217.194.149.64', '217.194.149.71', 2147483647, 2147483647, 'ZM', 'Zambia'), +('217.194.149.72', '217.194.149.79', 2147483647, 2147483647, 'NG', 'Nigeria'), +('217.194.149.80', '217.194.149.87', 2147483647, 2147483647, 'MW', 'Malawi'), +('217.194.149.88', '217.194.149.143', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('217.194.149.144', '217.194.149.151', 2147483647, 2147483647, 'NG', 'Nigeria'), +('217.194.149.152', '217.194.149.159', 2147483647, 2147483647, 'ZM', 'Zambia'), +('217.194.149.160', '217.194.149.167', 2147483647, 2147483647, 'NG', 'Nigeria'), +('217.194.149.168', '217.194.149.175', 2147483647, 2147483647, 'ZW', 'Zimbabwe'), +('217.194.149.176', '217.194.149.183', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('217.194.149.184', '217.194.149.191', 2147483647, 2147483647, 'MW', 'Malawi'), +('217.194.149.192', '217.194.149.215', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('217.194.149.216', '217.194.149.223', 2147483647, 2147483647, 'MW', 'Malawi'), +('217.194.149.224', '217.194.149.231', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('217.194.149.232', '217.194.149.239', 2147483647, 2147483647, 'KE', 'Kenya'), +('217.194.149.240', '217.194.149.247', 2147483647, 2147483647, 'ZM', 'Zambia'), +('217.194.149.248', '217.194.151.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('217.194.152.0', '217.194.152.255', 2147483647, 2147483647, 'CD', 'Congo, The Democratic Republic of the'), +('217.194.153.0', '217.194.153.255', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('217.194.154.0', '217.194.154.255', 2147483647, 2147483647, 'TZ', 'Tanzania, United Republic of'), +('217.194.155.0', '217.194.155.23', 2147483647, 2147483647, 'UA', 'Ukraine'), +('217.194.155.24', '217.194.155.31', 2147483647, 2147483647, 'CM', 'Cameroon'), +('217.194.155.32', '217.194.155.39', 2147483647, 2147483647, 'UA', 'Ukraine'), +('217.194.155.40', '217.194.155.79', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('217.194.155.80', '217.194.155.87', 2147483647, 2147483647, 'IQ', 'Iraq'), +('217.194.155.88', '217.194.155.103', 2147483647, 2147483647, 'NG', 'Nigeria'), +('217.194.155.104', '217.194.155.111', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('217.194.155.112', '217.194.155.127', 2147483647, 2147483647, 'NG', 'Nigeria'), +('217.194.155.128', '217.194.155.255', 2147483647, 2147483647, 'CM', 'Cameroon'), +('217.194.156.0', '217.194.156.63', 2147483647, 2147483647, 'ZW', 'Zimbabwe'), +('217.194.156.64', '217.194.156.127', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('217.194.156.128', '217.194.156.255', 2147483647, 2147483647, 'NG', 'Nigeria'), +('217.194.157.0', '217.194.157.15', 2147483647, 2147483647, 'YT', 'Mayotte'), +('217.194.157.16', '217.194.157.31', 2147483647, 2147483647, 'UG', 'Uganda'), +('217.194.157.32', '217.194.157.39', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('217.194.157.40', '217.194.157.47', 2147483647, 2147483647, 'NG', 'Nigeria'), +('217.194.157.48', '217.194.157.63', 2147483647, 2147483647, 'ZW', 'Zimbabwe'), +('217.194.157.64', '217.194.157.71', 2147483647, 2147483647, 'KE', 'Kenya'), +('217.194.157.72', '217.194.157.79', 2147483647, 2147483647, 'NG', 'Nigeria'), +('217.194.157.80', '217.194.157.95', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('217.194.157.96', '217.194.157.103', 2147483647, 2147483647, 'ET', 'Ethiopia'), +('217.194.157.104', '217.194.157.111', 2147483647, 2147483647, 'KE', 'Kenya'), +('217.194.157.112', '217.194.157.127', 2147483647, 2147483647, 'NG', 'Nigeria'), +('217.194.157.128', '217.194.157.135', 2147483647, 2147483647, 'KE', 'Kenya'), +('217.194.157.136', '217.194.157.143', 2147483647, 2147483647, 'MZ', 'Mozambique'), +('217.194.157.144', '217.194.157.151', 2147483647, 2147483647, 'ZW', 'Zimbabwe'), +('217.194.157.152', '217.194.157.167', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('217.194.157.168', '217.194.157.175', 2147483647, 2147483647, 'ZW', 'Zimbabwe'), +('217.194.157.176', '217.194.157.191', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('217.194.157.192', '217.194.157.199', 2147483647, 2147483647, 'SO', 'Somalia'), +('217.194.157.200', '217.194.157.207', 2147483647, 2147483647, 'ZM', 'Zambia'), +('217.194.157.208', '217.194.157.215', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('217.194.157.216', '217.194.157.223', 2147483647, 2147483647, 'NG', 'Nigeria'), +('217.194.157.224', '217.194.157.231', 2147483647, 2147483647, 'KE', 'Kenya'), +('217.194.157.232', '217.194.157.247', 2147483647, 2147483647, 'A2', 'Satellite Provider'), +('217.194.157.248', '217.194.157.255', 2147483647, 2147483647, 'MW', 'Malawi'), +('217.194.158.0', '217.194.159.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.194.160.0', '217.194.175.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('217.194.176.0', '217.194.191.255', 2147483647, 2147483647, 'IT', 'Italy'), +('217.194.192.0', '217.194.207.255', 2147483647, 2147483647, 'IL', 'Israel'), +('217.194.208.0', '217.194.223.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.194.224.0', '217.194.239.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.194.240.0', '217.194.255.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.195.0.0', '217.195.15.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.195.16.0', '217.195.31.255', 2147483647, 2147483647, 'FR', 'France'), +('217.195.32.0', '217.195.34.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.195.35.0', '217.195.35.31', 2147483647, 2147483647, 'IT', 'Italy'), +('217.195.35.32', '217.195.47.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.195.48.0', '217.195.63.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('217.195.64.0', '217.195.111.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.195.112.0', '217.195.127.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.195.128.0', '217.195.143.255', 2147483647, 2147483647, 'GR', 'Greece'), +('217.195.144.0', '217.195.144.23', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.195.144.24', '217.195.144.35', 2147483647, 2147483647, 'AF', 'Afghanistan'), +('217.195.144.36', '217.195.151.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.195.152.0', '217.195.152.63', 2147483647, 2147483647, 'US', 'United States'), +('217.195.152.64', '217.195.159.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.195.160.0', '217.195.175.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('217.195.176.0', '217.195.191.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('217.195.192.0', '217.195.207.255', 2147483647, 2147483647, 'TR', 'Turkey'), +('217.195.208.0', '217.195.223.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.195.224.0', '217.195.255.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.196.0.0', '217.196.15.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.196.16.0', '217.196.31.255', 2147483647, 2147483647, 'KZ', 'Kazakstan'), +('217.196.32.0', '217.196.47.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.196.48.0', '217.196.63.255', 2147483647, 2147483647, 'NO', 'Norway'), +('217.196.64.0', '217.196.68.31', 2147483647, 2147483647, 'AT', 'Austria'), +('217.196.68.32', '217.196.68.63', 2147483647, 2147483647, 'SK', 'Slovakia'), +('217.196.68.64', '217.196.68.143', 2147483647, 2147483647, 'AT', 'Austria'), +('217.196.68.144', '217.196.68.159', 2147483647, 2147483647, 'SK', 'Slovakia'), +('217.196.68.160', '217.196.73.199', 2147483647, 2147483647, 'AT', 'Austria'), +('217.196.73.200', '217.196.73.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('217.196.74.0', '217.196.75.63', 2147483647, 2147483647, 'AT', 'Austria'), +('217.196.75.64', '217.196.75.127', 2147483647, 2147483647, 'SK', 'Slovakia'), +('217.196.75.128', '217.196.86.31', 2147483647, 2147483647, 'AT', 'Austria'), +('217.196.86.32', '217.196.86.47', 2147483647, 2147483647, 'SK', 'Slovakia'), +('217.196.86.48', '217.196.86.255', 2147483647, 2147483647, 'AT', 'Austria'), +('217.196.87.0', '217.196.87.255', 2147483647, 2147483647, 'SK', 'Slovakia'), +('217.196.88.0', '217.196.88.159', 2147483647, 2147483647, 'AT', 'Austria'), +('217.196.88.160', '217.196.88.191', 2147483647, 2147483647, 'SK', 'Slovakia'), +('217.196.88.192', '217.196.92.71', 2147483647, 2147483647, 'AT', 'Austria'), +('217.196.92.72', '217.196.92.79', 2147483647, 2147483647, 'GR', 'Greece'), +('217.196.92.80', '217.196.92.255', 2147483647, 2147483647, 'AT', 'Austria'), +('217.196.93.0', '217.196.93.127', 2147483647, 2147483647, 'SK', 'Slovakia'), +('217.196.93.128', '217.196.93.223', 2147483647, 2147483647, 'AT', 'Austria'), +('217.196.93.224', '217.196.94.159', 2147483647, 2147483647, 'SK', 'Slovakia'), +('217.196.94.160', '217.196.94.191', 2147483647, 2147483647, 'AT', 'Austria'), +('217.196.94.192', '217.196.94.223', 2147483647, 2147483647, 'SK', 'Slovakia'), +('217.196.94.224', '217.196.95.255', 2147483647, 2147483647, 'AT', 'Austria'), +('217.196.96.0', '217.196.127.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.196.128.0', '217.196.143.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('217.196.144.0', '217.196.159.255', 2147483647, 2147483647, 'AT', 'Austria'), +('217.196.160.0', '217.196.171.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('217.196.172.0', '217.196.172.255', 2147483647, 2147483647, 'AT', 'Austria'), +('217.196.173.0', '217.196.173.127', 2147483647, 2147483647, 'UA', 'Ukraine'), +('217.196.173.128', '217.196.173.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('217.196.174.0', '217.196.174.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('217.196.175.0', '217.196.175.63', 2147483647, 2147483647, 'SE', 'Sweden'), +('217.196.175.64', '217.196.175.127', 2147483647, 2147483647, 'UA', 'Ukraine'), +('217.196.175.128', '217.196.175.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('217.196.176.0', '217.196.191.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('217.196.192.0', '217.196.207.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.196.208.0', '217.196.223.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('217.196.224.0', '217.196.229.119', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.196.229.120', '217.196.229.127', 2147483647, 2147483647, 'US', 'United States'), +('217.196.229.128', '217.196.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.197.0.0', '217.197.15.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.197.16.0', '217.197.31.255', 2147483647, 2147483647, 'NO', 'Norway'), +('217.197.32.0', '217.197.47.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('217.197.48.0', '217.197.63.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('217.197.64.0', '217.197.79.255', 2147483647, 2147483647, 'PL', 'Poland'), +('217.197.80.0', '217.197.95.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.197.96.0', '217.197.111.255', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('217.197.112.0', '217.197.127.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.197.128.0', '217.197.143.255', 2147483647, 2147483647, 'BG', 'Bulgaria'), +('217.197.144.0', '217.197.159.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('217.197.160.0', '217.197.175.255', 2147483647, 2147483647, 'PL', 'Poland'), +('217.197.176.0', '217.197.191.255', 2147483647, 2147483647, 'HU', 'Hungary'), +('217.197.192.0', '217.197.207.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.197.208.0', '217.197.221.255', 2147483647, 2147483647, 'CH', 'Switzerland'), +('217.197.222.0', '217.197.222.255', 2147483647, 2147483647, 'JP', 'Japan'), +('217.197.223.0', '217.197.223.255', 2147483647, 2147483647, 'US', 'United States'), +('217.197.224.0', '217.198.15.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.198.16.0', '217.198.31.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.198.32.0', '217.198.46.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.198.47.0', '217.198.47.15', 2147483647, 2147483647, 'BE', 'Belgium'), +('217.198.47.16', '217.198.47.239', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.198.47.240', '217.198.47.243', 2147483647, 2147483647, 'BE', 'Belgium'), +('217.198.47.244', '217.198.63.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.198.64.0', '217.198.79.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('217.198.80.0', '217.198.95.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.198.96.0', '217.198.111.255', 2147483647, 2147483647, 'HR', 'Croatia'), +('217.198.112.0', '217.198.127.255', 2147483647, 2147483647, 'CZ', 'Czech Republic'), +('217.198.128.0', '217.198.143.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('217.198.144.0', '217.198.159.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('217.198.160.0', '217.198.191.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.198.192.0', '217.198.207.255', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.198.208.0', '217.198.223.255', 2147483647, 2147483647, 'DK', 'Denmark'), +('217.198.224.0', '217.198.239.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('217.198.240.0', '217.198.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.199.0.0', '217.199.31.255', 2147483647, 2147483647, 'IT', 'Italy'), +('217.199.32.0', '217.199.32.7', 2147483647, 2147483647, 'SE', 'Sweden'), +('217.199.32.8', '217.199.32.135', 2147483647, 2147483647, 'NO', 'Norway'), +('217.199.32.136', '217.199.32.143', 2147483647, 2147483647, 'SE', 'Sweden'), +('217.199.32.144', '217.199.32.167', 2147483647, 2147483647, 'NO', 'Norway'), +('217.199.32.168', '217.199.32.175', 2147483647, 2147483647, 'BS', 'Bahamas'), +('217.199.32.176', '217.199.33.191', 2147483647, 2147483647, 'NO', 'Norway'), +('217.199.33.192', '217.199.33.207', 2147483647, 2147483647, 'SE', 'Sweden'), +('217.199.33.208', '217.199.34.31', 2147483647, 2147483647, 'NO', 'Norway'), +('217.199.34.32', '217.199.34.63', 2147483647, 2147483647, 'SE', 'Sweden'), +('217.199.34.64', '217.199.34.255', 2147483647, 2147483647, 'NO', 'Norway'), +('217.199.35.0', '217.199.35.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('217.199.36.0', '217.199.51.255', 2147483647, 2147483647, 'NO', 'Norway'), +('217.199.52.0', '217.199.52.63', 2147483647, 2147483647, 'SE', 'Sweden'), +('217.199.52.64', '217.199.63.255', 2147483647, 2147483647, 'NO', 'Norway'), +('217.199.64.0', '217.199.79.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.199.80.0', '217.199.95.255', 2147483647, 2147483647, 'AT', 'Austria'), +('217.199.96.0', '217.199.127.255', 2147483647, 2147483647, 'LV', 'Latvia'), +('217.199.128.0', '217.199.143.255', 2147483647, 2147483647, 'BA', 'Bosnia and Herzegovina'), +('217.199.144.0', '217.199.159.255', 2147483647, 2147483647, 'KE', 'Kenya'), +('217.199.160.0', '217.199.167.7', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.199.167.8', '217.199.167.15', 2147483647, 2147483647, 'US', 'United States'), +('217.199.167.16', '217.199.184.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.199.185.0', '217.199.185.63', 2147483647, 2147483647, 'AE', 'United Arab Emirates'), +('217.199.185.64', '217.199.191.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.199.192.0', '217.199.207.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.199.208.0', '217.199.223.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.199.224.0', '217.199.239.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('217.199.240.0', '217.199.255.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.200.0.0', '217.203.255.255', 2147483647, 2147483647, 'IT', 'Italy'), +('217.204.0.0', '217.204.37.95', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.204.37.96', '217.204.37.111', 2147483647, 2147483647, 'LU', 'Luxembourg'), +('217.204.37.112', '217.204.40.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.204.40.128', '217.204.40.135', 2147483647, 2147483647, 'US', 'United States'), +('217.204.40.136', '217.204.40.151', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.204.40.152', '217.204.40.159', 2147483647, 2147483647, 'SE', 'Sweden'), +('217.204.40.160', '217.204.80.183', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.204.80.184', '217.204.80.191', 2147483647, 2147483647, 'IT', 'Italy'), +('217.204.80.192', '217.204.139.235', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.204.139.236', '217.204.139.239', 2147483647, 2147483647, 'US', 'United States'), +('217.204.139.240', '217.204.143.127', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.204.143.128', '217.204.143.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.204.144.0', '217.204.159.107', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.204.159.108', '217.204.159.111', 2147483647, 2147483647, 'MC', 'Monaco'), +('217.204.159.112', '217.207.255.255', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.208.0.0', '217.212.227.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('217.212.228.0', '217.212.228.255', 2147483647, 2147483647, 'NO', 'Norway'), +('217.212.229.0', '217.212.231.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('217.212.232.0', '217.212.235.255', 2147483647, 2147483647, 'NO', 'Norway'), +('217.212.236.0', '217.212.236.7', 2147483647, 2147483647, 'DK', 'Denmark'), +('217.212.236.8', '217.212.247.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('217.212.248.0', '217.212.248.7', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.212.248.8', '217.212.248.15', 2147483647, 2147483647, 'SE', 'Sweden'), +('217.212.248.16', '217.212.248.23', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.212.248.24', '217.212.248.63', 2147483647, 2147483647, 'SE', 'Sweden'), +('217.212.248.64', '217.212.248.79', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.212.248.80', '217.212.248.95', 2147483647, 2147483647, 'SE', 'Sweden'), +('217.212.248.96', '217.212.248.159', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.212.248.160', '217.212.248.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('217.212.249.0', '217.212.251.255', 2147483647, 2147483647, 'NO', 'Norway'), +('217.212.252.0', '217.212.252.15', 2147483647, 2147483647, 'SE', 'Sweden'), +('217.212.252.16', '217.212.252.31', 2147483647, 2147483647, 'US', 'United States'), +('217.212.252.32', '217.212.252.63', 2147483647, 2147483647, 'SE', 'Sweden'), +('217.212.252.64', '217.212.252.127', 2147483647, 2147483647, 'FI', 'Finland'), +('217.212.252.128', '217.212.253.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('217.212.254.0', '217.212.254.255', 2147483647, 2147483647, 'RU', 'Russian Federation'), +('217.212.255.0', '217.212.255.255', 2147483647, 2147483647, 'NO', 'Norway'), +('217.213.0.0', '217.215.255.255', 2147483647, 2147483647, 'SE', 'Sweden'), +('217.216.0.0', '217.217.255.255', 2147483647, 2147483647, 'ES', 'Spain'), +('217.218.0.0', '217.219.255.255', 2147483647, 2147483647, 'IR', 'Iran, Islamic Republic of'), +('217.220.0.0', '217.223.255.255', 2147483647, 2147483647, 'IT', 'Italy'), +('217.224.0.0', '217.237.163.71', 2147483647, 2147483647, 'DE', 'Germany'), +('217.237.163.72', '217.237.163.79', 2147483647, 2147483647, 'ES', 'Spain'), +('217.237.163.80', '217.237.180.15', 2147483647, 2147483647, 'DE', 'Germany'), +('217.237.180.16', '217.237.180.23', 2147483647, 2147483647, 'NL', 'Netherlands'), +('217.237.180.24', '217.237.181.23', 2147483647, 2147483647, 'DE', 'Germany'), +('217.237.181.24', '217.237.181.31', 2147483647, 2147483647, 'US', 'United States'), +('217.237.181.32', '217.237.189.239', 2147483647, 2147483647, 'DE', 'Germany'), +('217.237.189.240', '217.237.189.247', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.237.189.248', '217.237.189.255', 2147483647, 2147483647, 'US', 'United States'), +('217.237.190.0', '217.243.204.143', 2147483647, 2147483647, 'DE', 'Germany'), +('217.243.204.144', '217.243.204.151', 2147483647, 2147483647, 'GB', 'United Kingdom'), +('217.243.204.152', '217.243.204.159', 2147483647, 2147483647, 'US', 'United States'), +('217.243.204.160', '217.244.15.87', 2147483647, 2147483647, 'DE', 'Germany'), +('217.244.15.88', '217.244.15.95', 2147483647, 2147483647, 'US', 'United States'), +('217.244.15.96', '217.244.56.191', 2147483647, 2147483647, 'DE', 'Germany'), +('217.244.56.192', '217.244.56.207', 2147483647, 2147483647, 'AT', 'Austria'), +('217.244.56.208', '217.244.58.79', 2147483647, 2147483647, 'DE', 'Germany'), +('217.244.58.80', '217.244.58.95', 2147483647, 2147483647, 'AT', 'Austria'), +('217.244.58.96', '217.244.58.143', 2147483647, 2147483647, 'DE', 'Germany'), +('217.244.58.144', '217.244.58.175', 2147483647, 2147483647, 'AT', 'Austria'), +('217.244.58.176', '217.244.60.255', 2147483647, 2147483647, 'DE', 'Germany'), +('217.244.61.0', '217.244.61.95', 2147483647, 2147483647, 'AT', 'Austria'), +('217.244.61.96', '217.244.61.159', 2147483647, 2147483647, 'DE', 'Germany'), +('217.244.61.160', '217.244.61.191', 2147483647, 2147483647, 'AT', 'Austria'), +('217.244.61.192', '217.255.255.255', 2147483647, 2147483647, 'DE', 'Germany'), +('218.0.0.0', '218.31.255.255', 2147483647, 2147483647, 'CN', 'China'), +('218.32.0.0', '218.32.255.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('218.33.0.0', '218.33.127.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('218.33.128.0', '218.33.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('218.34.0.0', '218.35.255.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('218.36.0.0', '218.39.255.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('218.40.0.0', '218.47.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('218.48.0.0', '218.55.255.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('218.56.0.0', '218.99.255.255', 2147483647, 2147483647, 'CN', 'China'), +('218.100.0.0', '218.100.3.255', 2147483647, 2147483647, 'AU', 'Australia'), +('218.100.4.0', '218.100.4.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('218.100.5.0', '218.100.9.255', 2147483647, 2147483647, 'JP', 'Japan'), +('218.100.10.0', '218.100.10.255', 2147483647, 2147483647, 'VN', 'Vietnam'), +('218.100.11.0', '218.100.11.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('218.100.12.0', '218.100.13.255', 2147483647, 2147483647, 'AU', 'Australia'), +('218.100.14.0', '218.100.14.255', 2147483647, 2147483647, 'VN', 'Vietnam'), +('218.100.15.0', '218.100.15.255', 2147483647, 2147483647, 'JP', 'Japan'), +('218.100.16.0', '218.100.17.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('218.100.18.0', '218.100.18.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('218.100.19.0', '218.100.19.255', 2147483647, 2147483647, 'AU', 'Australia'), +('218.100.20.0', '218.100.20.255', 2147483647, 2147483647, 'JP', 'Japan'), +('218.100.21.0', '218.100.21.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('218.100.22.0', '218.100.22.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('218.100.23.0', '218.100.26.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('218.100.27.0', '218.100.36.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('218.100.37.0', '218.100.37.255', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('218.100.38.0', '218.100.38.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('218.100.39.0', '218.100.40.255', 2147483647, 2147483647, 'AU', 'Australia'), +('218.100.41.0', '218.100.41.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('218.100.42.0', '218.100.42.255', 2147483647, 2147483647, 'JP', 'Japan'), +('218.100.43.0', '218.100.43.255', 2147483647, 2147483647, 'AU', 'Australia'), +('218.100.44.0', '218.100.44.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('218.100.45.0', '218.100.45.255', 2147483647, 2147483647, 'JP', 'Japan'), +('218.100.46.0', '218.100.47.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('218.100.48.0', '218.100.49.255', 2147483647, 2147483647, 'IN', 'India'), +('218.100.50.0', '218.100.50.255', 2147483647, 2147483647, 'AU', 'Australia'), +('218.100.51.0', '218.100.51.255', 2147483647, 2147483647, 'KH', 'Cambodia'), +('218.100.52.0', '218.100.54.255', 2147483647, 2147483647, 'AU', 'Australia'), +('218.100.55.0', '218.100.55.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('218.100.56.0', '218.100.56.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('218.100.57.0', '218.100.57.255', 2147483647, 2147483647, 'LK', 'Sri Lanka'), +('218.100.58.0', '218.100.58.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('218.100.59.0', '218.100.59.255', 2147483647, 2147483647, 'AU', 'Australia'), +('218.100.60.0', '218.100.60.255', 2147483647, 2147483647, 'VN', 'Vietnam'), +('218.100.61.0', '218.100.61.255', 2147483647, 2147483647, 'LK', 'Sri Lanka'), +('218.100.62.0', '218.100.64.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('218.100.65.0', '218.100.65.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('218.100.66.0', '218.100.66.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('218.101.0.0', '218.101.127.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('218.101.128.0', '218.101.255.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('218.102.0.0', '218.103.255.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('218.104.0.0', '218.109.255.255', 2147483647, 2147483647, 'CN', 'China'), +('218.110.0.0', '218.110.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('218.111.0.0', '218.111.255.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('218.112.0.0', '218.143.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('218.144.0.0', '218.159.255.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('218.160.0.0', '218.175.255.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('218.176.0.0', '218.183.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('218.184.0.0', '218.184.255.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('218.185.0.0', '218.185.127.255', 2147483647, 2147483647, 'AU', 'Australia'), +('218.185.128.0', '218.185.191.255', 2147483647, 2147483647, 'JP', 'Japan'), +('218.185.192.0', '218.185.223.255', 2147483647, 2147483647, 'CN', 'China'), +('218.185.224.0', '218.185.231.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('218.185.232.0', '218.185.239.255', 2147483647, 2147483647, 'AU', 'Australia'), +('218.185.240.0', '218.185.247.255', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('218.185.248.0', '218.185.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('218.186.0.0', '218.186.255.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('218.187.0.0', '218.187.255.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('218.188.0.0', '218.189.12.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('218.189.13.0', '218.189.13.15', 2147483647, 2147483647, 'US', 'United States'), +('218.189.13.16', '218.191.255.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('218.192.0.0', '218.207.255.255', 2147483647, 2147483647, 'CN', 'China'), +('218.208.0.0', '218.208.255.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('218.209.0.0', '218.209.255.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('218.210.0.0', '218.211.255.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('218.212.0.0', '218.212.255.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('218.213.0.0', '218.213.255.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('218.214.0.0', '218.215.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('218.216.0.0', '218.231.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('218.232.0.0', '218.239.255.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('218.240.0.0', '218.247.255.255', 2147483647, 2147483647, 'CN', 'China'), +('218.248.0.0', '218.248.255.255', 2147483647, 2147483647, 'IN', 'India'), +('218.249.0.0', '218.249.255.255', 2147483647, 2147483647, 'CN', 'China'), +('218.250.0.0', '218.250.255.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('218.251.0.0', '218.251.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('218.252.0.0', '218.255.255.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('219.0.0.0', '219.3.96.255', 2147483647, 2147483647, 'JP', 'Japan'), +('219.3.97.0', '219.3.97.255', 2147483647, 2147483647, 'UA', 'Ukraine'), +('219.3.98.0', '219.63.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('219.64.0.0', '219.65.255.255', 2147483647, 2147483647, 'IN', 'India'), +('219.66.0.0', '219.67.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('219.68.0.0', '219.71.255.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('219.72.0.0', '219.72.255.255', 2147483647, 2147483647, 'CN', 'China'), +('219.73.0.0', '219.73.127.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('219.73.128.0', '219.73.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('219.74.0.0', '219.75.127.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('219.75.128.0', '219.75.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('219.76.0.0', '219.79.255.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('219.80.0.0', '219.81.255.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('219.82.0.0', '219.82.255.255', 2147483647, 2147483647, 'CN', 'China'), +('219.83.0.0', '219.83.127.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('219.83.128.0', '219.83.255.255', 2147483647, 2147483647, 'IN', 'India'), +('219.84.0.0', '219.87.255.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('219.88.0.0', '219.89.255.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('219.90.0.0', '219.90.63.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('219.90.64.0', '219.90.95.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('219.90.96.0', '219.90.111.255', 2147483647, 2147483647, 'IN', 'India'), +('219.90.112.0', '219.90.127.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('219.90.128.0', '219.90.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('219.91.0.0', '219.91.127.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('219.91.128.0', '219.91.255.255', 2147483647, 2147483647, 'IN', 'India'), +('219.92.0.0', '219.94.127.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('219.94.128.0', '219.94.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('219.95.0.0', '219.95.255.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('219.96.0.0', '219.127.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('219.128.0.0', '219.159.255.255', 2147483647, 2147483647, 'CN', 'China'), +('219.160.0.0', '219.215.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('219.216.0.0', '219.239.255.255', 2147483647, 2147483647, 'CN', 'China'), +('219.240.0.0', '219.241.255.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('219.242.0.0', '219.247.255.255', 2147483647, 2147483647, 'CN', 'China'), +('219.248.0.0', '219.255.255.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('220.0.0.0', '220.63.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('220.64.0.0', '220.95.255.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('220.96.0.0', '220.100.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('220.101.0.0', '220.101.191.255', 2147483647, 2147483647, 'AU', 'Australia'), +('220.101.192.0', '220.101.255.255', 2147483647, 2147483647, 'CN', 'China'), +('220.102.0.0', '220.102.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('220.103.0.0', '220.103.255.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('220.104.0.0', '220.111.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('220.112.0.0', '220.115.255.255', 2147483647, 2147483647, 'CN', 'China'), +('220.116.0.0', '220.127.255.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('220.128.0.0', '220.143.255.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('220.144.0.0', '220.148.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('220.149.0.0', '220.149.255.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('220.150.0.0', '220.152.111.255', 2147483647, 2147483647, 'JP', 'Japan'), +('220.152.112.0', '220.152.119.255', 2147483647, 2147483647, 'AU', 'Australia'), +('220.152.120.0', '220.152.127.255', 2147483647, 2147483647, 'JP', 'Japan'), +('220.152.128.0', '220.152.255.255', 2147483647, 2147483647, 'CN', 'China'), +('220.153.0.0', '220.153.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('220.154.0.0', '220.155.255.255', 2147483647, 2147483647, 'CN', 'China'), +('220.156.0.0', '220.156.159.255', 2147483647, 2147483647, 'JP', 'Japan'), +('220.156.176.0', '220.156.183.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('220.156.184.0', '220.156.191.255', 2147483647, 2147483647, 'IN', 'India'), +('220.156.192.0', '220.157.63.255', 2147483647, 2147483647, 'JP', 'Japan'), +('220.157.64.0', '220.157.95.255', 2147483647, 2147483647, 'AU', 'Australia'), +('220.157.96.0', '220.157.111.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('220.157.112.0', '220.157.127.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('220.157.128.0', '220.159.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('220.160.0.0', '220.207.255.255', 2147483647, 2147483647, 'CN', 'China'), +('220.208.0.0', '220.223.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('220.224.0.0', '220.227.255.255', 2147483647, 2147483647, 'IN', 'India'), +('220.228.0.0', '220.229.255.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('220.230.0.0', '220.230.255.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('220.231.0.0', '220.231.63.255', 2147483647, 2147483647, 'CN', 'China'), +('220.231.64.0', '220.231.127.255', 2147483647, 2147483647, 'VN', 'Vietnam'), +('220.231.128.0', '220.231.255.255', 2147483647, 2147483647, 'CN', 'China'), +('220.232.0.0', '220.232.63.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('220.232.64.0', '220.232.127.255', 2147483647, 2147483647, 'CN', 'China'), +('220.232.128.0', '220.232.255.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('220.233.0.0', '220.233.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('220.234.0.0', '220.234.255.255', 2147483647, 2147483647, 'CN', 'China'), +('220.235.0.0', '220.240.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('220.241.0.0', '220.241.255.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('220.242.0.0', '220.243.255.255', 2147483647, 2147483647, 'CN', 'China'), +('220.244.0.0', '220.245.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('220.246.0.0', '220.246.255.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('220.247.0.0', '220.247.127.255', 2147483647, 2147483647, 'JP', 'Japan'), +('220.247.128.0', '220.247.159.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('220.247.160.0', '220.247.167.255', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('220.247.168.0', '220.247.175.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('220.247.176.0', '220.247.183.255', 2147483647, 2147483647, 'AU', 'Australia'), +('220.247.184.0', '220.247.191.255', 2147483647, 2147483647, 'JP', 'Japan'), +('220.247.192.0', '220.247.255.255', 2147483647, 2147483647, 'LK', 'Sri Lanka'), +('220.248.0.0', '220.252.255.255', 2147483647, 2147483647, 'CN', 'China'), +('220.253.0.0', '220.253.255.255', 2147483647, 2147483647, 'AU', 'Australia'), +('220.254.0.0', '220.254.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('220.255.0.0', '220.255.255.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('221.0.0.0', '221.12.191.255', 2147483647, 2147483647, 'CN', 'China'), +('221.12.192.0', '221.12.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('221.13.0.0', '221.15.255.255', 2147483647, 2147483647, 'CN', 'China'), +('221.16.0.0', '221.119.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('221.120.0.0', '221.120.95.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('221.120.96.0', '221.120.103.255', 2147483647, 2147483647, 'BD', 'Bangladesh'), +('221.120.104.0', '221.120.111.255', 2147483647, 2147483647, 'IN', 'India'), +('221.120.112.0', '221.120.127.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('221.120.128.0', '221.120.167.255', 2147483647, 2147483647, 'AU', 'Australia'), +('221.120.176.0', '221.120.191.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('221.120.192.0', '221.120.255.255', 2147483647, 2147483647, 'PK', 'Pakistan'), +('221.121.0.0', '221.121.63.255', 2147483647, 2147483647, 'VN', 'Vietnam'), +('221.121.64.0', '221.121.95.255', 2147483647, 2147483647, 'AU', 'Australia'), +('221.121.96.0', '221.121.127.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('221.121.160.0', '221.121.183.255', 2147483647, 2147483647, 'JP', 'Japan'), +('221.121.184.0', '221.121.191.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('221.121.192.0', '221.121.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('221.122.0.0', '221.123.255.255', 2147483647, 2147483647, 'CN', 'China'), +('221.124.0.0', '221.127.255.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('221.128.0.0', '221.128.63.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('221.128.64.0', '221.128.127.255', 2147483647, 2147483647, 'TH', 'Thailand'); +INSERT INTO `d3geoip` (`D3STARTIP`, `D3ENDIP`, `D3STARTIPNUM`, `D3ENDIPNUM`, `D3ISO`, `D3COUNTRYNAME`) VALUES +('221.128.128.0', '221.128.255.255', 2147483647, 2147483647, 'IN', 'India'), +('221.129.0.0', '221.131.255.255', 2147483647, 2147483647, 'CN', 'China'), +('221.132.0.0', '221.132.63.255', 2147483647, 2147483647, 'VN', 'Vietnam'), +('221.132.64.0', '221.132.95.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('221.132.96.0', '221.132.111.255', 2147483647, 2147483647, 'JP', 'Japan'), +('221.132.112.0', '221.132.119.255', 2147483647, 2147483647, 'PK', 'Pakistan'), +('221.132.128.0', '221.132.191.255', 2147483647, 2147483647, 'JP', 'Japan'), +('221.132.192.0', '221.132.255.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('221.133.0.0', '221.133.31.255', 2147483647, 2147483647, 'VN', 'Vietnam'), +('221.133.32.0', '221.133.47.255', 2147483647, 2147483647, 'MY', 'Malaysia'), +('221.133.48.0', '221.133.63.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('221.133.64.0', '221.133.127.255', 2147483647, 2147483647, 'JP', 'Japan'), +('221.133.128.0', '221.133.191.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('221.133.192.0', '221.133.216.52', 2147483647, 2147483647, 'AU', 'Australia'), +('221.133.216.53', '221.133.216.53', 2147483647, 2147483647, 'AS', 'American Samoa'), +('221.133.216.54', '221.133.219.23', 2147483647, 2147483647, 'AU', 'Australia'), +('221.133.219.24', '221.133.219.31', 2147483647, 2147483647, 'AS', 'American Samoa'), +('221.133.219.32', '221.133.219.63', 2147483647, 2147483647, 'AU', 'Australia'), +('221.133.219.64', '221.133.219.95', 2147483647, 2147483647, 'AS', 'American Samoa'), +('221.133.219.96', '221.133.219.111', 2147483647, 2147483647, 'AU', 'Australia'), +('221.133.219.112', '221.133.219.127', 2147483647, 2147483647, 'AS', 'American Samoa'), +('221.133.219.128', '221.133.219.191', 2147483647, 2147483647, 'AU', 'Australia'), +('221.133.219.192', '221.133.219.255', 2147483647, 2147483647, 'AS', 'American Samoa'), +('221.133.220.0', '221.133.220.63', 2147483647, 2147483647, 'AU', 'Australia'), +('221.133.220.64', '221.133.220.127', 2147483647, 2147483647, 'AS', 'American Samoa'), +('221.133.220.128', '221.133.220.191', 2147483647, 2147483647, 'AU', 'Australia'), +('221.133.220.192', '221.133.220.223', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('221.133.220.224', '221.133.220.255', 2147483647, 2147483647, 'JP', 'Japan'), +('221.133.221.0', '221.133.223.255', 2147483647, 2147483647, 'AU', 'Australia'), +('221.133.224.0', '221.133.255.255', 2147483647, 2147483647, 'CN', 'China'), +('221.134.0.0', '221.135.255.255', 2147483647, 2147483647, 'IN', 'India'), +('221.136.0.0', '221.137.255.255', 2147483647, 2147483647, 'CN', 'China'), +('221.138.0.0', '221.168.255.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('221.169.0.0', '221.169.255.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('221.170.0.0', '221.171.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('221.172.0.0', '221.183.255.255', 2147483647, 2147483647, 'CN', 'China'), +('221.184.0.0', '221.191.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('221.192.0.0', '221.199.207.255', 2147483647, 2147483647, 'CN', 'China'), +('221.199.208.0', '221.199.223.255', 2147483647, 2147483647, 'AU', 'Australia'), +('221.199.224.0', '221.239.255.255', 2147483647, 2147483647, 'CN', 'China'), +('221.240.0.0', '222.15.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('222.16.0.0', '222.95.255.255', 2147483647, 2147483647, 'CN', 'China'), +('222.96.0.0', '222.122.255.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('222.123.0.0', '222.123.255.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('222.124.0.0', '222.124.255.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('222.125.0.0', '222.125.255.255', 2147483647, 2147483647, 'CN', 'China'), +('222.126.0.0', '222.126.127.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('222.126.128.0', '222.126.255.255', 2147483647, 2147483647, 'CN', 'China'), +('222.127.0.0', '222.127.255.255', 2147483647, 2147483647, 'PH', 'Philippines'), +('222.128.0.0', '222.143.255.255', 2147483647, 2147483647, 'CN', 'China'), +('222.144.0.0', '222.151.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('222.152.0.0', '222.155.255.255', 2147483647, 2147483647, 'NZ', 'New Zealand'), +('222.156.0.0', '222.157.255.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('222.158.0.0', '222.159.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('222.160.0.0', '222.163.255.255', 2147483647, 2147483647, 'CN', 'China'), +('222.164.0.0', '222.165.127.255', 2147483647, 2147483647, 'SG', 'Singapore'), +('222.165.128.0', '222.165.191.255', 2147483647, 2147483647, 'LK', 'Sri Lanka'), +('222.165.192.0', '222.165.255.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('222.166.0.0', '222.167.255.255', 2147483647, 2147483647, 'HK', 'Hong Kong'), +('222.168.0.0', '222.223.255.255', 2147483647, 2147483647, 'CN', 'China'), +('222.224.0.0', '222.229.79.255', 2147483647, 2147483647, 'JP', 'Japan'), +('222.229.80.0', '222.229.87.255', 2147483647, 2147483647, 'ID', 'Indonesia'), +('222.229.88.0', '222.229.95.255', 2147483647, 2147483647, 'TH', 'Thailand'), +('222.229.96.0', '222.230.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('222.231.0.0', '222.231.63.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('222.231.64.0', '222.231.255.255', 2147483647, 2147483647, 'JP', 'Japan'), +('222.232.0.0', '222.239.255.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('222.240.0.0', '222.249.255.255', 2147483647, 2147483647, 'CN', 'China'), +('222.250.0.0', '222.251.127.255', 2147483647, 2147483647, 'TW', 'Taiwan'), +('222.251.128.0', '222.251.255.255', 2147483647, 2147483647, 'KR', 'Korea, Republic of'), +('222.252.0.0', '222.255.255.255', 2147483647, 2147483647, 'VN', 'Vietnam'); diff --git a/setup+doku/install.txt b/setup+doku/install.txt new file mode 100644 index 0000000..138b05b --- /dev/null +++ b/setup+doku/install.txt @@ -0,0 +1,17 @@ +oxcmp_cur => d3_geoip/views/d3_oxcmp_cur_geoip +oxcmp_lang => d3_geoip/views/d3_oxcmp_lang_geoip + + +config.inc.php: + + // Key ist ISO-Alpha2-Code in Großbuchstaben (analog Datenbank) // Value ist ID der Sprache (beginnend bei 0) + $this->aCountryLangs = array(); + $this->aCountryLangs['DE'] = 0; + $this->aCountryLangs['EN'] = 1; + $this->aCountryLangs['MR'] = 1; + + // Key ist ISO-Alpha2-Code in Großbuchstaben (analog Datenbank) // Value ist ID der Währung (beginnend bei 0) + $this->aCountryCurrs = array(); + $this->aCountryCurrs['DE'] = 0; + $this->aCountryCurrs['EN'] = 1; + $this->aCountryCurrs['MR'] = 1; \ No newline at end of file diff --git a/setup+doku/licence.txt b/setup+doku/licence.txt new file mode 100644 index 0000000..affb803 --- /dev/null +++ b/setup+doku/licence.txt @@ -0,0 +1,6 @@ +GeoIP Country light + +GeoIp-Data based on GeoIp Country Light by Maxmind (July 2009). +These database will be published under GPL3 by Maxmind. Please see www.maxmind.com for updates. + +Maxmind offers more accuracy data for cash. More informations about this you'll find on www.maxmind.com. \ No newline at end of file